This component is deprecated and moved to arc-models
.
An element that saves requests history in a datastore.
History data is different that request history. It keeps a HAR-like object with history details.
The element handles api-response
event and transforms response into a data object and stores in history-data
datastore.
Originally it was designed to support API assistant, however this was removed in ARC 10 and currently it has no practical use in ARC. It may change in the future.
npm install --save @advanced-rest-client/response-history-saver
import { LitElement, html } from 'lit-element';
import '@advanced-rest-client/response-history-saver/response-history-saver.js';
class SampleElement extends LitElement {
render() {
return html`
<response-history-saver></response-history-saver>
`;
}
}
customElements.define('sample-element', SampleElement);
git clone https://github.com/advanced-rest-client/response-history-saver
cd response-history-saver
npm install
npm test
This components is a part of API components ecosystem