@scalar/oas-utils
Version:
Open API spec and Yaml handling utilities
18 lines (16 loc) • 453 B
JavaScript
/**
* Ensure we update this every migration
*
* previous data versions:
* - undefined
* - 0.0.0
* - 2.1.0 - refactor
* - 2.2.0 - auth compliancy
* - 2.3.0 - environments
* - 2.4.0 - draft collection servers
* - 2.5.0 - accept header
*/
const DATA_VERSION = '2.5.0';
/** The localStorage key under which the data version is stored */
const DATA_VERSION_LS_LEY = 'scalar_api_client_data_version';
export { DATA_VERSION, DATA_VERSION_LS_LEY };