diff --git a/.eslintrc.js b/.eslintrc.js
index f6a61a11..3c97ec47 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,8 +1,7 @@
module.exports = {
- // "env": {
- // "browser": true,
- // "amd": true
- // },
+ env: {
+ "es2020": true
+ },
extends: 'standard',
// "globals": {
// "Atomics": "readonly",
@@ -15,6 +14,7 @@ module.exports = {
// "ecmaVersion": 2015,
// "sourceType": "module"
// },
+ parser: "@babel/eslint-parser", // Use Babel parser to handle modern JS syntax
plugins: [
'standard',
'promise'
diff --git a/.github/workflows/lint-check.yml b/.github/workflows/lint-check.yml
new file mode 100644
index 00000000..08a58777
--- /dev/null
+++ b/.github/workflows/lint-check.yml
@@ -0,0 +1,25 @@
+name: Lint Check on PR
+
+on:
+ pull_request:
+ types: [opened, synchronize, reopened]
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout the repository
+ uses: actions/checkout@v4
+
+ - name: Set up Node.js
+ uses: actions/setup-node@v2
+ with:
+ node-version: '22.x'
+ registry-url: 'https://registry.npmjs.org'
+
+ - name: Install dependencies
+ run: npm install
+
+ - name: Run ESLint
+ run: npm run lint
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97aa0f12..08500cf7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## [v1.19.5](https://github.com/contentstack/contentstack-management-javascript/tree/v1.19.5) (2025-03-17)
+ - Fix
+ - Added AuditLog in the stack class
+ - Fixed the Unit Test cases and added sanity test case for audit log
+
## [v1.19.4](https://github.com/contentstack/contentstack-management-javascript/tree/v1.19.4) (2025-03-10)
- Fix
- added fix for variants import
diff --git a/README.md b/README.md
index 9ae2fe35..921f2a1b 100644
--- a/README.md
+++ b/README.md
@@ -105,7 +105,7 @@ contentstackClient.stack({ api_key: 'API_KEY' }).asset().create({ asset })
- [Content Management API Docs](https://www.contentstack.com/docs/developers/apis/content-management-api)
### The MIT License (MIT)
-Copyright © 2012-2024 [Contentstack](https://www.contentstack.com/). All Rights Reserved
+Copyright © 2012-2025 [Contentstack](https://www.contentstack.com/). All Rights Reserved
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
diff --git a/lib/app/installation/index.js b/lib/app/installation/index.js
index 20798310..b84453cf 100644
--- a/lib/app/installation/index.js
+++ b/lib/app/installation/index.js
@@ -250,4 +250,4 @@ export function InstallationCollection (http, data) {
return obj.map((installationData) => {
return new Installation(http, { data: installationData })
})
-}
\ No newline at end of file
+}
diff --git a/lib/contentstackCollection.js b/lib/contentstackCollection.js
index b03fd7be..f61a8645 100644
--- a/lib/contentstackCollection.js
+++ b/lib/contentstackCollection.js
@@ -10,8 +10,8 @@ export default class ContentstackCollection {
if (http?.httpClientParams?.headers?.includeResHeaders === true) {
data.stackHeaders = {
...data.stackHeaders,
- responseHeaders: response.headers,
- };
+ responseHeaders: response.headers
+ }
}
if (wrapperCollection) {
this.items = wrapperCollection(http, data)
diff --git a/lib/core/concurrency-queue.js b/lib/core/concurrency-queue.js
index e27c5fd1..be36c2b7 100644
--- a/lib/core/concurrency-queue.js
+++ b/lib/core/concurrency-queue.js
@@ -156,7 +156,7 @@ export function ConcurrencyQueue ({ axios, config }) {
message: 'Unable to refresh token',
name: 'Token Error',
config: queueItem.request,
- stack: (error instanceof Error) ? error.stack : null,
+ stack: (error instanceof Error) ? error.stack : null
})
})
this.queue = []
diff --git a/lib/entity.js b/lib/entity.js
index 47d1a81b..bece8aba 100644
--- a/lib/entity.js
+++ b/lib/entity.js
@@ -46,13 +46,13 @@ export const publishUnpublish = async (http, url, httpBody, headers, locale = nu
if (response.data) {
const data = response.data || {}
if (headers) {
- data.stackHeaders = headers;
+ data.stackHeaders = headers
}
if (http?.httpClientParams?.headers?.includeResHeaders === true) {
data.stackHeaders = {
...data.stackHeaders,
- responseHeaders: response.headers,
- };
+ responseHeaders: response.headers
+ }
}
return data
} else {
@@ -81,10 +81,10 @@ export const upload = async ({ http, urlPath, stackHeaders, formData, params, me
export const create = ({ http, params }) => {
return async function (data, param) {
- this.stackHeaders = {
- ...this.stackHeaders,
+ this.stackHeaders = {
+ ...this.stackHeaders,
...(http.httpClientParams.headers?.api_version && { api_version: http.httpClientParams.headers.api_version })
- };
+ }
const headers = {
headers: {
...cloneDeep(params),
@@ -152,8 +152,8 @@ export const update = (http, type, params = {}) => {
delete json.updated_by
delete json.updated_at
if (type) {
- updateData[type] = json;
- if (type === "entry") updateData[type] = cleanAssets(updateData[type]);
+ updateData[type] = json
+ if (type === 'entry') updateData[type] = cleanAssets(updateData[type])
} else {
updateData = json
}
@@ -257,7 +257,7 @@ export const fetchAll = (http, wrapperCollection, params = {}) => {
}
}
-export function parseData (response, stackHeaders, contentTypeUID, taxonomy_uid, http) {
+export function parseData (response, stackHeaders, contentTypeUID, taxonomyUid, http) {
const data = response.data || {}
if (stackHeaders) {
data.stackHeaders = stackHeaders
@@ -265,14 +265,14 @@ export function parseData (response, stackHeaders, contentTypeUID, taxonomy_uid,
if (contentTypeUID) {
data.content_type_uid = contentTypeUID
}
- if (taxonomy_uid) {
- data.taxonomy_uid = taxonomy_uid
+ if (taxonomyUid) {
+ data.taxonomy_uid = taxonomyUid
}
if (http?.httpClientParams?.headers?.includeResHeaders === true) {
data.stackHeaders = {
...data.stackHeaders,
- responseHeaders: response.headers,
- };
+ responseHeaders: response.headers
+ }
}
return data
}
@@ -332,22 +332,22 @@ export const move = (http, type, force = false, params = {}) => {
}
function isAsset (data) {
- const element = (Array.isArray(data) && data.length > 0) ? data[0] : data;
- return (!!element.file_size || !!element.content_type) && !!element.uid;
+ const element = (Array.isArray(data) && data.length > 0) ? data[0] : data
+ return (!!element.file_size || !!element.content_type) && !!element.uid
}
export function cleanAssets (data) {
- if (data && typeof data === "object") {
- const keys = Object.keys(data);
+ if (data && typeof data === 'object') {
+ const keys = Object.keys(data)
for (const key of keys) {
- if (data[key] !== null && data[key] !== undefined && typeof data[key] === "object") {
+ if (data[key] !== null && data[key] !== undefined && typeof data[key] === 'object') {
if (isAsset(data[key])) {
- data[key] = (Array.isArray(data[key])) ? data[key].map(element => element.uid) : data[key].uid;
+ data[key] = (Array.isArray(data[key])) ? data[key].map(element => element.uid) : data[key].uid
} else {
- cleanAssets(data[key]);
+ cleanAssets(data[key])
}
}
}
}
- return data;
+ return data
}
diff --git a/lib/stack/auditlog/index.js b/lib/stack/auditlog/index.js
index 7e625af6..ed27a020 100644
--- a/lib/stack/auditlog/index.js
+++ b/lib/stack/auditlog/index.js
@@ -1,6 +1,6 @@
import cloneDeep from 'lodash/cloneDeep'
import error from '../../core/contentstackError'
-import { fetchAll, parseData } from '../../entity'
+import { fetchAll } from '../../entity'
/**
*
@@ -36,7 +36,7 @@ export function AuditLog (http, data = {}) {
} || {}
const response = await http.get(this.urlPath, headers)
if (response.data) {
- return new AuditLog(http, parseData(response, this.stackHeaders))
+ return response.data
} else {
throw error(response)
}
diff --git a/lib/stack/bulkOperation/index.js b/lib/stack/bulkOperation/index.js
index 615b22e3..89bdcca9 100644
--- a/lib/stack/bulkOperation/index.js
+++ b/lib/stack/bulkOperation/index.js
@@ -28,23 +28,25 @@ export function BulkOperation (http, data = {}) {
* client.stack({ api_key: 'api_key'}).bulkOperation().addItems({ data: itemsData })
* .then((response) => { console.log(response) })
*/
- this.addItems = async ({ data, bulk_version = "" }) => {
- this.urlPath = `/bulk/release/items`;
+ // eslint-disable-next-line camelcase
+ this.addItems = async ({ data, bulk_version = '' }) => {
+ this.urlPath = `/bulk/release/items`
const headers = {
headers: {
- ...cloneDeep(this.stackHeaders),
- },
- };
- if (bulk_version) headers.headers.bulk_version = bulk_version;
+ ...cloneDeep(this.stackHeaders)
+ }
+ }
+ // eslint-disable-next-line camelcase
+ if (bulk_version) headers.headers.bulk_version = bulk_version
try {
- const response = await http.post(this.urlPath, data, headers);
+ const response = await http.post(this.urlPath, data, headers)
if (response.data) {
- return response.data;
+ return response.data
}
} catch (error) {
- console.error(error);
+ console.error(error)
}
- };
+ }
/**
* The updateItems request allows you to update multiple items in a release in bulk.
@@ -65,23 +67,25 @@ export function BulkOperation (http, data = {}) {
* client.stack({ api_key: 'api_key'}).bulkOperation().updateItems({ data: itemsData })
* .then((response) => { console.log(response) })
*/
- this.updateItems = async ({ data, bulk_version = "" }) => {
- this.urlPath = `/bulk/release/update_items`;
+ // eslint-disable-next-line camelcase
+ this.updateItems = async ({ data, bulk_version = '' }) => {
+ this.urlPath = `/bulk/release/update_items`
const headers = {
headers: {
- ...cloneDeep(this.stackHeaders),
- },
- };
- if (bulk_version) headers.headers.bulk_version = bulk_version;
+ ...cloneDeep(this.stackHeaders)
+ }
+ }
+ // eslint-disable-next-line camelcase
+ if (bulk_version) headers.headers.bulk_version = bulk_version
try {
- const response = await http.put(this.urlPath, data, headers);
+ const response = await http.put(this.urlPath, data, headers)
if (response.data) {
- return response.data;
+ return response.data
}
} catch (error) {
- console.error(error);
+ console.error(error)
}
- };
+ }
/**
* The jobStatus request allows you to check the status of a bulk job.
@@ -94,23 +98,26 @@ export function BulkOperation (http, data = {}) {
* client.stack({ api_key: 'api_key'}).bulkOperation().jobStatus({ job_id: 'job_id' })
* .then((response) => { console.log(response) })
*/
- this.jobStatus = async ({ job_id, bulk_version = "" }) => {
- this.urlPath = `/bulk/jobs/${job_id}`;
+ // eslint-disable-next-line camelcase
+ this.jobStatus = async ({ job_id, bulk_version = '' }) => {
+ // eslint-disable-next-line camelcase
+ this.urlPath = `/bulk/jobs/${job_id}`
const headers = {
headers: {
- ...cloneDeep(this.stackHeaders),
- },
- };
- if (bulk_version) headers.headers.bulk_version = bulk_version;
+ ...cloneDeep(this.stackHeaders)
+ }
+ }
+ // eslint-disable-next-line camelcase
+ if (bulk_version) headers.headers.bulk_version = bulk_version
try {
- const response = await http.get(this.urlPath, headers);
+ const response = await http.get(this.urlPath, headers)
if (response.data) {
- return response.data;
+ return response.data
}
} catch (error) {
- console.error(error);
+ console.error(error)
}
- };
+ }
/**
* The Publish entries and assets in bulk request allows you to publish multiple entries and assets at the same time.
@@ -172,6 +179,7 @@ export function BulkOperation (http, data = {}) {
* .then((response) => { console.log(response.notice) })
*
*/
+ // eslint-disable-next-line camelcase
this.publish = async ({ details, skip_workflow_stage = false, approvals = false, is_nested = false, api_version = '' }) => {
var httpBody = {}
if (details) {
@@ -182,19 +190,23 @@ export function BulkOperation (http, data = {}) {
...cloneDeep(this.stackHeaders)
}
}
+ // eslint-disable-next-line camelcase
if (is_nested) {
headers.params = {
nested: true,
event_type: 'bulk'
}
}
+ // eslint-disable-next-line camelcase
if (skip_workflow_stage) {
+ // eslint-disable-next-line camelcase
headers.headers.skip_workflow_stage_check = skip_workflow_stage
}
if (approvals) {
headers.headers.approvals = approvals
}
+ // eslint-disable-next-line camelcase
if (api_version) headers.headers.api_version = api_version
return publishUnpublish(http, '/bulk/publish', httpBody, headers)
@@ -259,7 +271,8 @@ export function BulkOperation (http, data = {}) {
* client.stack({ api_key: 'api_key'}).bulkOperation().unpublish({ details: publishDetails, is_nested: true })
* .then((response) => { console.log(response.notice) })
*/
- this.unpublish = async ({ details, skip_workflow_stage = false, approvals = false, is_nested = false, api_version = ''}) => {
+ // eslint-disable-next-line camelcase
+ this.unpublish = async ({ details, skip_workflow_stage = false, approvals = false, is_nested = false, api_version = '' }) => {
var httpBody = {}
if (details) {
httpBody = cloneDeep(details)
@@ -269,18 +282,22 @@ export function BulkOperation (http, data = {}) {
...cloneDeep(this.stackHeaders)
}
}
+ // eslint-disable-next-line camelcase
if (is_nested) {
headers.params = {
nested: true,
event_type: 'bulk'
}
}
+ // eslint-disable-next-line camelcase
if (skip_workflow_stage) {
+ // eslint-disable-next-line camelcase
headers.headers.skip_workflow_stage_check = skip_workflow_stage
}
if (approvals) {
headers.headers.approvals = approvals
}
+ // eslint-disable-next-line camelcase
if (api_version) headers.headers.api_version = api_version
return publishUnpublish(http, '/bulk/unpublish', httpBody, headers)
}
diff --git a/lib/stack/contentType/entry/index.js b/lib/stack/contentType/entry/index.js
index c1c41b85..4beec04a 100644
--- a/lib/stack/contentType/entry/index.js
+++ b/lib/stack/contentType/entry/index.js
@@ -25,11 +25,11 @@ export function Entry (http, data) {
this.urlPath = `/content_types/${this.content_type_uid}/entries`
if (data && data.entry) {
- this.apiVersion = data.api_version || undefined;
+ this.apiVersion = data.api_version || undefined
if (this.apiVersion && !this.stackHeaders.api_version) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
- const { stackHeaders, ...entryData } = data.entry;
+ const { stackHeaders, ...entryData } = data.entry
Object.assign(this, cloneDeep(entryData))
this.urlPath = `/content_types/${this.content_type_uid}/entries/${this.uid}`
@@ -197,8 +197,10 @@ export function Entry (http, data) {
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').publishRequest({ publishing_rule, locale: 'en-us'})
* .then((response) => console.log(response.notice))
*/
- this.publishRequest = async ({publishing_rule, locale}) => {
+ // eslint-disable-next-line camelcase
+ this.publishRequest = async ({ publishing_rule, locale }) => {
const publishDetails = {
+ // eslint-disable-next-line camelcase
workflow: { publishing_rule }
}
const headers = {}
@@ -249,9 +251,10 @@ export function Entry (http, data) {
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').setWorkflowStage({ workflow_stage, locale: 'en-us'})
* .then((response) => console.log(response.notice));
*/
-
+ // eslint-disable-next-line camelcase
this.setWorkflowStage = async ({ workflow_stage, locale }) => {
const publishDetails = {
+ // eslint-disable-next-line camelcase
workflow: { workflow_stage }
}
const headers = {}
@@ -307,32 +310,34 @@ export function Entry (http, data) {
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').includeVariants('true','variants_uid')
* .then((response) => console.log(response))
*/
-
+ // eslint-disable-next-line camelcase
this.includeVariants = async (include_variant, variants_uid) => {
try {
const headers = {
...cloneDeep(this.stackHeaders) // Clone existing headers
- };
-
+ }
+
// Add custom header
- headers['x-cs-variant-uid'] = variants_uid; // add variant UID
- let params = {};
+ // eslint-disable-next-line camelcase
+ headers['x-cs-variant-uid'] = variants_uid // add variant UID
+ const params = {}
+ // eslint-disable-next-line camelcase
if (include_variant) {
- params.include_variant = include_variant; // if include_variant present
+ // eslint-disable-next-line camelcase
+ params.include_variant = include_variant // if include_variant present
}
- const response = await http.get(this.urlPath, { headers, params });
+ const response = await http.get(this.urlPath, { headers, params })
if (response.data) {
- return response.data;
+ return response.data
} else {
- throw error(response);
+ throw error(response)
}
} catch (err) {
- error(err);
+ error(err)
}
- };
-
+ }
- /**
+ /**
* @description The get locales request allows to get the languages of an entry.
* @memberof Entry
* @func locales
@@ -375,7 +380,7 @@ export function Entry (http, data) {
headers.headers = this.stackHeaders
}
try {
- const response = await http.get(`${this.urlPath}/references`, {...headers, params: param,})
+ const response = await http.get(`${this.urlPath}/references`, { ...headers, params: param })
if (response.data) {
return response.data
} else {
@@ -385,7 +390,6 @@ export function Entry (http, data) {
throw error(err)
}
}
-
} else {
/**
* @description The Create an entry call creates a new entry for the selected content type.
diff --git a/lib/stack/contentType/entry/variants/index.js b/lib/stack/contentType/entry/variants/index.js
index 097f2fa8..ae6eb29a 100644
--- a/lib/stack/contentType/entry/variants/index.js
+++ b/lib/stack/contentType/entry/variants/index.js
@@ -1,28 +1,21 @@
import cloneDeep from 'lodash/cloneDeep'
import {
- update,
- deleteEntity,
- fetch,
- upload,
- query,
- parseData
+ deleteEntity,
+ fetch,
+ query
}
-from '../../../../entity'
-import FormData from 'form-data'
-import {
- createReadStream
-} from 'fs'
+ from '../../../../entity'
import error from '../../../../core/contentstackError'
/**
* An variants is the actual piece of content created using one of the defined content types. Read more about Entries.
* @namespace Variants
*/
-export function Variants(http, data) {
- Object.assign(this, cloneDeep(data))
- this.urlPath = `/content_types/${this.content_type_uid}/entries/${this.entry_uid}/variants`
- if (data && data.variants_uid) {
- this.urlPath += `/${this.variants_uid}`
- /**
+export function Variants (http, data) {
+ Object.assign(this, cloneDeep(data))
+ this.urlPath = `/content_types/${this.content_type_uid}/entries/${this.entry_uid}/variants`
+ if (data && data.variants_uid) {
+ this.urlPath += `/${this.variants_uid}`
+ /**
* @description The Create an variants call creates a new variants for the selected content type.
* @memberof Variants
* @func update
@@ -45,26 +38,26 @@ export function Variants(http, data) {
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('entry_uid').variants('uid').update(data)
* .then((variants) => console.log(variants))
*/
- this.update = async (data) => {
- try {
- const response = await http.put(this.urlPath,
- data,
- {
- headers: {
- ...cloneDeep(this.stackHeaders)
- }
- })
- if (response.data) {
- return response.data
- } else {
- return error(response)
- }
- } catch (err) {
- return error(err)
+ this.update = async (data) => {
+ try {
+ const response = await http.put(this.urlPath,
+ data,
+ {
+ headers: {
+ ...cloneDeep(this.stackHeaders)
}
- }
+ })
+ if (response.data) {
+ return response.data
+ } else {
+ return error(response)
+ }
+ } catch (err) {
+ return error(err)
+ }
+ }
- /**
+ /**
* @description The Delete an variants call is used to delete a specific variants from a content type.
* @memberof Variants
* @func delete
@@ -76,9 +69,9 @@ export function Variants(http, data) {
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('entry_uid').variants('uid').delete()
* .then((response) => console.log(response.notice))
*/
- this.delete = deleteEntity(http)
+ this.delete = deleteEntity(http)
- /**
+ /**
* @description The fetch Variants call fetches Variants details.
* @memberof Variants
* @func fetch
@@ -91,9 +84,9 @@ export function Variants(http, data) {
* .then((variants) => console.log(variants))
*
*/
- this.fetch = fetch(http, 'variants')
+ this.fetch = fetch(http, 'variants')
- /**
+ /**
* @description The version Variants call fetches Variants version details.
* @memberof Variants
* @func versions
@@ -106,25 +99,24 @@ export function Variants(http, data) {
* .then((variants) => console.log(variants))
*
*/
- this.versions = async () => {
- try {
- const response = await http.get(`${this.urlPath}/versions`, {
- headers: {
- ...cloneDeep(this.stackHeaders)
- }
- })
- if (response.data) {
- return response.data
- } else {
- return error(response)
- }
- } catch (err) {
- return error(err)
- }
+ this.versions = async () => {
+ try {
+ const response = await http.get(`${this.urlPath}/versions`, {
+ headers: {
+ ...cloneDeep(this.stackHeaders)
}
-
- } else {
- /**
+ })
+ if (response.data) {
+ return response.data
+ } else {
+ return error(response)
+ }
+ } catch (err) {
+ return error(err)
+ }
+ }
+ } else {
+ /**
* @description The Query on Variants will allow to fetch details of all or specific Variants
* @memberof Variants
* @func query
@@ -139,19 +131,19 @@ export function Variants(http, data) {
* client.stack().contentType('content_type_uid').entry('entry_uid').variants().query({ query: { title: 'Variants title' } }).find()
* .then((entries) => console.log(entries))
*/
- this.query = query({ http: http, wrapperCollection: VariantsCollection })
- }
+ this.query = query({ http: http, wrapperCollection: VariantsCollection })
+ }
}
-export function VariantsCollection(http, data) {
- const obj = cloneDeep(data.entries) || []
- const variantCollection = obj.map((variant) => {
- return new Variants(http, {
- content_type_uid: data.content_type_uid,
- entry_uid: variant.uid,
- variants_uid: variant._variant._uid,
- stackHeaders: data.stackHeaders,
- variants: variant
- })
+export function VariantsCollection (http, data) {
+ const obj = cloneDeep(data.entries) || []
+ const variantCollection = obj.map((variant) => {
+ return new Variants(http, {
+ content_type_uid: data.content_type_uid,
+ entry_uid: variant.uid,
+ variants_uid: variant._variant._uid,
+ stackHeaders: data.stackHeaders,
+ variants: variant
})
- return variantCollection
+ })
+ return variantCollection
}
diff --git a/lib/stack/contentType/index.js b/lib/stack/contentType/index.js
index db101705..3f9e9c1c 100644
--- a/lib/stack/contentType/index.js
+++ b/lib/stack/contentType/index.js
@@ -26,7 +26,7 @@ export function ContentType (http, data = {}) {
Object.assign(this, cloneDeep(data.content_type))
this.urlPath = `/content_types/${this.uid}`
/**
- * @description The Update ContentType call lets you update the name and description of an existing ContentType.
+ * @description The Update ContentType call lets you update the name and description of an existing ContentType.
* You can also update the JSON schema of a content type, including fields and different features associated with the content type.
* @memberof ContentType
* @func update
@@ -47,7 +47,7 @@ export function ContentType (http, data = {}) {
this.update = update(http, 'content_type')
/**
- * @description The Update ContentType call lets you update the name and description of an existing ContentType.
+ * @description The Update ContentType call lets you update the name and description of an existing ContentType.
* You can also update the JSON schema of a content type, including fields and different features associated with the content type.
* @memberof ContentType
* @func update
@@ -153,9 +153,9 @@ export function ContentType (http, data = {}) {
if (uid) {
data.entry = { uid: uid }
}
- options = options || {}; // Ensure `options` is always an object
+ options = options || {} // Ensure `options` is always an object
if (options && typeof options === 'object' && options.api_version) {
- data.api_version = options.api_version;
+ data.api_version = options.api_version
}
return new Entry(http, data)
}
diff --git a/lib/stack/globalField/index.js b/lib/stack/globalField/index.js
index 12d00ac1..682902ff 100644
--- a/lib/stack/globalField/index.js
+++ b/lib/stack/globalField/index.js
@@ -1,5 +1,5 @@
import cloneDeep from 'lodash/cloneDeep'
-import { create, update, deleteEntity, fetch, query, upload, parseData } from '../../entity'
+import { query, upload, parseData } from '../../entity'
import error from '../../core/contentstackError'
import FormData from 'form-data'
import { createReadStream } from 'fs'
@@ -11,10 +11,10 @@ import { createReadStream } from 'fs'
export function GlobalField (http, data = {}) {
this.stackHeaders = data.stackHeaders
- this.apiVersion = data.api_version || undefined;
+ this.apiVersion = data.api_version || undefined
if (this.apiVersion) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
this.urlPath = `/global_fields`
@@ -43,28 +43,27 @@ export function GlobalField (http, data = {}) {
try {
// Add `api_version` to headers if `this.apiVersion` is defined
if (this.apiVersion) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
const headers = {
- headers: {
+ headers: {
...cloneDeep(this.stackHeaders)
}
}
- const response = await http.put(`${this.urlPath}`, config, headers);
+ const response = await http.put(`${this.urlPath}`, config, headers)
// Remove `api_version` from headers after fetching data
if (this.apiVersion) {
- delete this.stackHeaders.api_version;
+ delete this.stackHeaders.api_version
}
if (response.data) {
- return response.data;
+ return response.data
} else {
- throw error(response);
+ throw error(response)
}
} catch (err) {
- throw error(err);
+ throw error(err)
}
}
-
/**
* @description The Update GlobalField call lets you update the name and description of an existing GlobalField.
@@ -98,9 +97,9 @@ export function GlobalField (http, data = {}) {
console.log(globalField)
* })
*/
- this.updateNestedGlobalField = async (config, headers={}) => {
- const apiVersion = {api_version: '3.2' }
- this.stackHeaders = {...this.stackHeaders, ...apiVersion, ...headers}
+ this.updateNestedGlobalField = async (config, headers = {}) => {
+ const apiVersion = { api_version: '3.2' }
+ this.stackHeaders = { ...this.stackHeaders, ...apiVersion, ...headers }
try {
const headers = {
headers: { ...cloneDeep(this.stackHeaders) }
@@ -129,34 +128,33 @@ export function GlobalField (http, data = {}) {
* .then((response) => console.log(response.notice))
*/
this.delete = async () => {
- let param = {};
+ const param = {}
try {
// Add `api_version` to headers if `this.apiVersion` is defined
if (this.apiVersion) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
const headers = {
- headers: {
- ...cloneDeep(this.stackHeaders)
+ headers: {
+ ...cloneDeep(this.stackHeaders)
},
params: {
...cloneDeep(param)
}
- };
- const response = await http.delete(this.urlPath, headers);
+ }
+ const response = await http.delete(this.urlPath, headers)
if (this.apiVersion) {
- delete this.stackHeaders.api_version;
+ delete this.stackHeaders.api_version
}
if (response.data) {
- return response.data;
+ return response.data
} else {
- throw error(response);
+ throw error(response)
}
} catch (err) {
- throw error(err);
+ throw error(err)
}
- };
-
+ }
/**
* @description The fetch GlobalField call fetches GlobalField details.
@@ -174,27 +172,26 @@ export function GlobalField (http, data = {}) {
this.fetch = async function (param = {}) {
try {
if (this.apiVersion) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
const headers = {
- headers: {
- ...cloneDeep(this.stackHeaders)
+ headers: {
+ ...cloneDeep(this.stackHeaders)
},
params: {
...cloneDeep(param)
}
- };
- const response = await http.get(this.urlPath, headers);
+ }
+ const response = await http.get(this.urlPath, headers)
if (response.data) {
- return response.data;
+ return response.data
} else {
- throw error(response);
+ throw error(response)
}
} catch (err) {
- throw error(err);
+ throw error(err)
}
- };
-
+ }
} else {
/**
* @description The Create a GlobalField call creates a new globalField in a particular stack of your Contentstack account.
@@ -220,24 +217,23 @@ export function GlobalField (http, data = {}) {
this.create = async (data) => {
try {
if (this.apiVersion) {
- this.stackHeaders.api_version = this.apiVersion;
+ this.stackHeaders.api_version = this.apiVersion
}
const headers = {
headers: {
...cloneDeep(this.stackHeaders)
}
- };
- const response = await http.post(`${this.urlPath}`, data, headers);
+ }
+ const response = await http.post(`${this.urlPath}`, data, headers)
if (response.data) {
- return response.data;
+ return response.data
} else {
- return error(response);
+ return error(response)
}
} catch (err) {
- return error(err);
+ return error(err)
}
- };
-
+ }
/**
* @description The Query on GlobalField will allow to fetch details of all or specific GlobalField
@@ -272,7 +268,7 @@ export function GlobalField (http, data = {}) {
*/
this.import = async function (data, params = {}, headers = {}) {
try {
- this.stackHeaders = { ...this.stackHeaders, ...headers };
+ this.stackHeaders = { ...this.stackHeaders, ...headers }
const response = await upload({
http: http,
urlPath: `${this.urlPath}/import`,
diff --git a/lib/stack/index.js b/lib/stack/index.js
index b8e1f5ca..74416687 100644
--- a/lib/stack/index.js
+++ b/lib/stack/index.js
@@ -159,30 +159,30 @@ export function Stack (http, data) {
*
* client.stack({ api_key: 'api_key'}).globalField('globalField_uid').fetch()
* .then((globalField) => console.log(globalField))
- *
+ *
* client.stack({ api_key: 'api_key'}).globalField('globalField_uid', { api_version: '3.2' }).fetch()
* .then((globalField) => console.log(globalField))
- *
+ *
*/
this.globalField = (globalFieldUidOrOptions = null, options = {}) => {
- let data = {
- stackHeaders: this.stackHeaders,
- };
+ const data = {
+ stackHeaders: this.stackHeaders
+ }
if (typeof globalFieldUidOrOptions === 'object' && globalFieldUidOrOptions !== null) {
- options = globalFieldUidOrOptions;
+ options = globalFieldUidOrOptions
} else if (globalFieldUidOrOptions) {
- data.global_field = { uid: globalFieldUidOrOptions };
+ data.global_field = { uid: globalFieldUidOrOptions }
}
// Safely handle `options` and check for `api_version`
- options = options || {}; // Ensure `options` is always an object
+ options = options || {} // Ensure `options` is always an object
if (options && typeof options === 'object' && options.api_version) {
- data.api_version = options.api_version;
+ data.api_version = options.api_version
if (options.api_version === '3.2') {
- data.nested_global_fields = true;
+ data.nested_global_fields = true
}
}
-
+
return new GlobalField(http, data)
}
@@ -410,7 +410,6 @@ export function Stack (http, data) {
return new Variants(http, data)
}
-
/**
* @description You can pin a set of entries and assets (along with the deploy action, i.e., publish/unpublish) to a ‘release’, and then deploy this release to an environment.
* @param {String} releaseUid The UID of the Releases you want to get details.
@@ -810,6 +809,30 @@ export function Stack (http, data) {
*
*/
this.delete = deleteEntity(http)
+
+ /**
+ * @description Audit log displays a record of all the activities performed in a stack and helps you keep a track of all published items, updates, deletes, and current status of the existing content.
+ * @param {String}
+ * @returns {AuditLog}
+ *
+ * @example
+ * import * as contentstack from '@contentstack/management'
+ * const client = contentstack.client()
+ *
+ * client.stack({ api_key: 'api_key'}).auditLog().fetchAll()
+ * .then((logs) => console.log(logs))
+ *
+ * client.stack({ api_key: 'api_key' }).auditLog('log_item_uid').fetch()
+ * .then((log) => console.log(log))
+ *
+ */
+ this.auditLog = (logItemUid = null) => {
+ const data = { stackHeaders: this.stackHeaders }
+ if (logItemUid) {
+ data.logs = { uid: logItemUid }
+ }
+ return new AuditLog(http, data)
+ }
} else {
/**
* @description The Create stack call creates a new stack in your Contentstack account.
@@ -845,30 +868,6 @@ export function Stack (http, data) {
* .then((stack) => console.log(stack))
*/
this.query = query({ http: http, wrapperCollection: StackCollection })
-
- /**
- * @description Audit log displays a record of all the activities performed in a stack and helps you keep a track of all published items, updates, deletes, and current status of the existing content.
- * @param {String}
- * @returns {AuditLog}
- *
- * @example
- * import * as contentstack from '@contentstack/management'
- * const client = contentstack.client()
- *
- * client.stack({ api_key: 'api_key'}).auditLog().fetchAll()
- * .then((logs) => console.log(logs))
- *
- * client.stack({ api_key: 'api_key' }).auditLog('log_item_uid').fetch()
- * .then((log) => console.log(log))
- *
- */
- this.auditLog = (logItemUid = null) => {
- const data = { stackHeaders: this.stackHeaders }
- if (logItemUid) {
- data.logs = { uid: logItemUid }
- }
- return new AuditLog(http, data)
- }
}
return this
}
diff --git a/lib/stack/release/index.js b/lib/stack/release/index.js
index 19abb9d7..7bac8ac6 100644
--- a/lib/stack/release/index.js
+++ b/lib/stack/release/index.js
@@ -109,7 +109,7 @@ export function Release (http, data = {}) {
* .then((items) => console.log(items))
*/
this.item = () => {
- return new ReleaseItem(http, { releaseUid: this.uid , stackHeaders: this.stackHeaders })
+ return new ReleaseItem(http, { releaseUid: this.uid, stackHeaders: this.stackHeaders })
}
/**
* @description The Deploy a Release request deploys a specific Release to specific environment(s) and locale(s).
diff --git a/lib/stack/release/items/index.js b/lib/stack/release/items/index.js
index dca8e75e..f9e0d26e 100644
--- a/lib/stack/release/items/index.js
+++ b/lib/stack/release/items/index.js
@@ -27,12 +27,12 @@ export function ReleaseItem (http, data = {}) {
* // To delete all the items from release
* client.stack({ api_key: 'api_key'}).release('release_uid').delete()
* .then((response) => console.log(response.notice))
- *
+ *
* @example
* // Delete specific items from delete
* import * as contentstack from '@contentstack/management'
- * const client = contentstack.client()
- *
+ * const client = contentstack.client()
+ *
* const items = [
* {
* uid: "entry_or_asset_uid1",
@@ -55,7 +55,7 @@ export function ReleaseItem (http, data = {}) {
this.delete = async (params) => {
let param = {}
if (params.items === undefined && params.item === undefined) {
- param = {all: true}
+ param = { all: true }
params.items = []
}
try {
@@ -68,16 +68,15 @@ export function ReleaseItem (http, data = {}) {
...cloneDeep(param)
}
} || {}
-
+
if (params.release_version) {
- headers.headers['release_version'] = params.release_version;
+ headers.headers['release_version'] = params.release_version
}
-
+
if (params.item) {
this.urlPath = `releases/${data.releaseUid}/item`
headers.data['item'] = params.item
- } else
- headers.data['items'] = params.items
+ } else { headers.data['items'] = params.items }
const response = await http.delete(this.urlPath, headers)
if (response.data) {
@@ -140,15 +139,19 @@ export function ReleaseItem (http, data = {}) {
...cloneDeep(this.stackHeaders)
}
} || {}
-
- if (param.release_version) {
- headers.headers['release_version'] = param.release_version;
+
+ if (param.release_version) {
+ headers.headers['release_version'] = param.release_version
}
if (param.item) {
this.urlPath = `releases/${data.releaseUid}/item`
+ // NOTE - Breaking sanity check that's why disabling it
+ // eslint-disable-next-line no-self-assign
param['item'] = param.item
- } else
+ } else {
+ // eslint-disable-next-line no-self-assign
param['items'] = param.items
+ }
try {
const response = await http.post(this.urlPath, param, headers)
@@ -187,8 +190,8 @@ export function ReleaseItem (http, data = {}) {
}
} || {}
if (param.release_version) {
- headers.headers['release_version'] = param.release_version;
- delete headers.params.release_version;
+ headers.headers['release_version'] = param.release_version
+ delete headers.params.release_version
}
const response = await http.get(this.urlPath, headers)
if (response.data) {
@@ -197,7 +200,7 @@ export function ReleaseItem (http, data = {}) {
throw error(response)
}
} catch (err) {
- error(err)
+ error(err)
}
}
@@ -220,14 +223,17 @@ export function ReleaseItem (http, data = {}) {
* client.stack({ api_key: 'api_key'}).release('release_uid').item().move({ param: moveData, release_version: '1.0' })
* .then((response) => { console.log(response) })
*/
+ // eslint-disable-next-line camelcase
this.move = async ({ param, release_version = '' }) => {
const headers = {
headers: {
...cloneDeep(this.stackHeaders)
}
} || {}
+ // eslint-disable-next-line camelcase
if (release_version) {
- headers.headers['release_version'] = release_version;
+ // eslint-disable-next-line camelcase
+ headers.headers['release_version'] = release_version
}
try {
const response = await http.put(`${this.urlPath}/move`, param, headers)
diff --git a/lib/stack/variantGroup/index.js b/lib/stack/variantGroup/index.js
index 8f3b535b..36e0f5be 100644
--- a/lib/stack/variantGroup/index.js
+++ b/lib/stack/variantGroup/index.js
@@ -1,6 +1,7 @@
import cloneDeep from 'lodash/cloneDeep'
-import { create, update, deleteEntity, fetch, query } from '../../entity'
+import { deleteEntity, query } from '../../entity'
import { Variants } from './variants/index'
+import error from '../../core/contentstackError'
/**
* Contentstack has a sophisticated multilingual capability. It allows you to create and publish entries in any language. This feature allows you to set up multilingual websites and cater to a wide variety of audience by serving content in their local language(s). Read more about VariantGroups.
@@ -30,7 +31,7 @@ export function VariantGroup (http, data = {}) {
this.update = async (data) => {
try {
const response = await http.put(this.urlPath,
- data,
+ data,
{
headers: {
...cloneDeep(this.stackHeaders)
@@ -78,7 +79,6 @@ export function VariantGroup (http, data = {}) {
}
return new Variants(http, data)
}
-
} else {
/**
* @description The Create a variant group call creates a new variant group in a particular stack of your Contentstack account.
@@ -102,7 +102,7 @@ export function VariantGroup (http, data = {}) {
this.create = async (data) => {
try {
const response = await http.post(`${this.urlPath}`,
- data ,
+ data,
{
headers: {
...cloneDeep(this.stackHeaders)
@@ -139,8 +139,8 @@ export function VariantGroup (http, data = {}) {
export function VariantGroupCollection (http, data) {
const obj = cloneDeep(data.variant_groups) || []
- const variant_groupCollection = obj.map((userdata) => {
+ const variantGroupCollection = obj.map((userdata) => {
return new VariantGroup(http, { variant_group: userdata, stackHeaders: data.stackHeaders })
})
- return variant_groupCollection
+ return variantGroupCollection
}
diff --git a/lib/stack/variantGroup/variants/index.js b/lib/stack/variantGroup/variants/index.js
index cfbb2a74..31cd2871 100644
--- a/lib/stack/variantGroup/variants/index.js
+++ b/lib/stack/variantGroup/variants/index.js
@@ -1,12 +1,13 @@
import cloneDeep from 'lodash/cloneDeep'
-import { create, fetch, query, deleteEntity } from '../../../entity'
+import { query, deleteEntity } from '../../../entity'
+import error from '../../../core/contentstackError'
/**
* Contentstack has a sophisticated multilingual capability. It allows you to create and publish entries in any language. This feature allows you to set up multilingual websites and cater to a wide variety of audience by serving content in their local language(s). Read more about VariantGroups.
* @namespace Variants
*/
-export function Variants(http, data = {}) {
+export function Variants (http, data = {}) {
Object.assign(this, cloneDeep(data.variants))
this.stackHeaders = data.stackHeaders
this.variant_group_uid = data.variant_group_uid
@@ -76,7 +77,7 @@ export function Variants(http, data = {}) {
throw error(response)
}
} catch (err) {
- error(err)
+ error(err)
}
}
@@ -119,7 +120,7 @@ export function Variants(http, data = {}) {
this.create = async (data) => {
try {
const response = await http.post(`${this.urlPath}`,
- data ,
+ data,
{
headers: {
...cloneDeep(this.stackHeaders)
@@ -145,7 +146,7 @@ export function Variants(http, data = {}) {
* @example
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client()
-
+
* client.stack(api_key).VariantGroup('variant_group_uid').variants().query({ query: { name: 'white' } }).find()
* .then((variant_groups) => console.log(variant_groups))
*/
@@ -154,7 +155,7 @@ export function Variants(http, data = {}) {
return this
}
-export function VariantsCollection(http, data) {
+export function VariantsCollection (http, data) {
const obj = cloneDeep(data.variants) || []
const variantsCollection = obj.map((userdata) => {
return new Variants(http, { variants: userdata, variant_group_uid: data.uid, stackHeaders: data.stackHeaders })
diff --git a/lib/stack/variants/index.js b/lib/stack/variants/index.js
index 7df5e02a..f0171724 100644
--- a/lib/stack/variants/index.js
+++ b/lib/stack/variants/index.js
@@ -1,10 +1,9 @@
import cloneDeep from 'lodash/cloneDeep'
import {
deleteEntity,
- fetch,
- query,
- create
+ query
} from '../../entity'
+import error from '../../core/contentstackError'
/**
* Variantss allow you to group a collection of content within a stack. Using variants you can group content types that need to work together. Read more about Variantss.
* @namespace Variants
@@ -60,7 +59,7 @@ export function Variants (http, data) {
throw error(response)
}
} catch (err) {
- error(err)
+ error(err)
}
}
} else {
@@ -89,7 +88,7 @@ export function Variants (http, data) {
this.create = async (data) => {
try {
const response = await http.post(`${this.urlPath}`,
- data ,
+ data,
{
headers: {
...cloneDeep(this.stackHeaders)
@@ -138,7 +137,6 @@ export function Variants (http, data) {
* .then((variants) => console.log(variants))
*/
this.fetchByUIDs = async (variantUids) => {
-
try {
const response = await http.get(this.urlPath, {
params: {
diff --git a/lib/stack/workflow/publishRules/index.js b/lib/stack/workflow/publishRules/index.js
index f0000cea..4bc2341e 100644
--- a/lib/stack/workflow/publishRules/index.js
+++ b/lib/stack/workflow/publishRules/index.js
@@ -79,17 +79,16 @@ export function PublishRules (http, data = {}) {
* import * as contentstack from '@contentstack/management'
* const client = contentstack.client()
* const publishing_rule = {
- * "publish rules": "publish rules_uid",
+ * "publish rules": "publish rules_uid",
* "actions": [],
* "content_types": ["$all"],
* "locales": ["en-us"],
* "environment": "environment_uid",
- * "approvers": {
- * "users": ["user_uid"],
- * "roles": ["role_uid"]
- * },
+ * "approvers": {
+ * "users": ["user_uid"],
+ * "roles": ["role_uid"]
* "publish rules_stage": "publish rules_stage_uid",
- * "disable_approver_publishing": false
+ * "disable_approver_publishing": false
* }
* client.stack().publishRules().create({ publishing_rule })
* .then((publishRules) => console.log(publishRules))
diff --git a/package-lock.json b/package-lock.json
index 30fa2dea..4f66bd64 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@contentstack/management",
- "version": "1.19.4",
+ "version": "1.19.5",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@contentstack/management",
- "version": "1.19.4",
+ "version": "1.19.5",
"license": "MIT",
"dependencies": {
"axios": "^1.8.2",
@@ -17,6 +17,7 @@
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
+ "@babel/eslint-parser": "^7.26.8",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
@@ -66,8 +67,6 @@
},
"node_modules/@ampproject/remapping": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
- "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -80,8 +79,6 @@
},
"node_modules/@babel/cli": {
"version": "7.26.4",
- "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.26.4.tgz",
- "integrity": "sha512-+mORf3ezU3p3qr+82WvJSnQNE1GAYeoCfEv4fik6B5/2cvKZ75AX8oawWQdXtM9MmndooQj15Jr9kelRFWsuRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -110,8 +107,6 @@
},
"node_modules/@babel/code-frame": {
"version": "7.26.2",
- "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz",
- "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -125,8 +120,6 @@
},
"node_modules/@babel/compat-data": {
"version": "7.26.8",
- "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz",
- "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -135,8 +128,6 @@
},
"node_modules/@babel/core": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.9.tgz",
- "integrity": "sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -164,10 +155,35 @@
"url": "https://opencollective.com/babel"
}
},
+ "node_modules/@babel/eslint-parser": {
+ "version": "7.26.8",
+ "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.26.8.tgz",
+ "integrity": "sha512-3tBctaHRW6xSub26z7n8uyOTwwUsCdvIug/oxBH9n6yCO5hMj2vwDJAo7RbBMKrM7P+W2j61zLKviJQFGOYKMg==",
+ "dev": true,
+ "dependencies": {
+ "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
+ "eslint-visitor-keys": "^2.1.0",
+ "semver": "^6.3.1"
+ },
+ "engines": {
+ "node": "^10.13.0 || ^12.13.0 || >=14.0.0"
+ },
+ "peerDependencies": {
+ "@babel/core": "^7.11.0",
+ "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0"
+ }
+ },
+ "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": {
+ "version": "2.1.0",
+ "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz",
+ "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==",
+ "dev": true,
+ "engines": {
+ "node": ">=10"
+ }
+ },
"node_modules/@babel/generator": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.9.tgz",
- "integrity": "sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -183,8 +199,6 @@
},
"node_modules/@babel/helper-annotate-as-pure": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz",
- "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -196,8 +210,6 @@
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz",
- "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -213,8 +225,6 @@
},
"node_modules/@babel/helper-create-class-features-plugin": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.26.9.tgz",
- "integrity": "sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -235,8 +245,6 @@
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
"version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz",
- "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -253,8 +261,6 @@
},
"node_modules/@babel/helper-define-polyfill-provider": {
"version": "0.6.3",
- "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz",
- "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -270,8 +276,6 @@
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz",
- "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -284,8 +288,6 @@
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz",
- "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -298,8 +300,6 @@
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz",
- "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -316,8 +316,6 @@
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz",
- "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -329,8 +327,6 @@
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz",
- "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -339,8 +335,6 @@
},
"node_modules/@babel/helper-remap-async-to-generator": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz",
- "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -357,8 +351,6 @@
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz",
- "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -375,8 +367,6 @@
},
"node_modules/@babel/helper-skip-transparent-expression-wrappers": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz",
- "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -389,8 +379,6 @@
},
"node_modules/@babel/helper-string-parser": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz",
- "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -399,8 +387,6 @@
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz",
- "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -409,8 +395,6 @@
},
"node_modules/@babel/helper-validator-option": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz",
- "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -419,8 +403,6 @@
},
"node_modules/@babel/helper-wrap-function": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz",
- "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -434,8 +416,6 @@
},
"node_modules/@babel/helpers": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.9.tgz",
- "integrity": "sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -448,8 +428,6 @@
},
"node_modules/@babel/parser": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.9.tgz",
- "integrity": "sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -464,8 +442,6 @@
},
"node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz",
- "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -481,8 +457,6 @@
},
"node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz",
- "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -497,8 +471,6 @@
},
"node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz",
- "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -513,8 +485,6 @@
},
"node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz",
- "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -531,8 +501,6 @@
},
"node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz",
- "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -548,8 +516,6 @@
},
"node_modules/@babel/plugin-proposal-private-property-in-object": {
"version": "7.21.0-placeholder-for-preset-env.2",
- "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz",
- "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -561,8 +527,6 @@
},
"node_modules/@babel/plugin-syntax-async-generators": {
"version": "7.8.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz",
- "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -574,8 +538,6 @@
},
"node_modules/@babel/plugin-syntax-bigint": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz",
- "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -587,8 +549,6 @@
},
"node_modules/@babel/plugin-syntax-class-properties": {
"version": "7.12.13",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz",
- "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -600,8 +560,6 @@
},
"node_modules/@babel/plugin-syntax-class-static-block": {
"version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz",
- "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -616,8 +574,6 @@
},
"node_modules/@babel/plugin-syntax-import-assertions": {
"version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz",
- "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -632,8 +588,6 @@
},
"node_modules/@babel/plugin-syntax-import-attributes": {
"version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz",
- "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -648,8 +602,6 @@
},
"node_modules/@babel/plugin-syntax-import-meta": {
"version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz",
- "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -661,8 +613,6 @@
},
"node_modules/@babel/plugin-syntax-json-strings": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz",
- "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -674,8 +624,6 @@
},
"node_modules/@babel/plugin-syntax-logical-assignment-operators": {
"version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz",
- "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -687,8 +635,6 @@
},
"node_modules/@babel/plugin-syntax-nullish-coalescing-operator": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz",
- "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -700,8 +646,6 @@
},
"node_modules/@babel/plugin-syntax-numeric-separator": {
"version": "7.10.4",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz",
- "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -713,8 +657,6 @@
},
"node_modules/@babel/plugin-syntax-object-rest-spread": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz",
- "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -726,8 +668,6 @@
},
"node_modules/@babel/plugin-syntax-optional-catch-binding": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz",
- "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -739,8 +679,6 @@
},
"node_modules/@babel/plugin-syntax-optional-chaining": {
"version": "7.8.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz",
- "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -752,8 +690,6 @@
},
"node_modules/@babel/plugin-syntax-private-property-in-object": {
"version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz",
- "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -768,8 +704,6 @@
},
"node_modules/@babel/plugin-syntax-top-level-await": {
"version": "7.14.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz",
- "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -784,8 +718,6 @@
},
"node_modules/@babel/plugin-syntax-typescript": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz",
- "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -800,8 +732,6 @@
},
"node_modules/@babel/plugin-syntax-unicode-sets-regex": {
"version": "7.18.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz",
- "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -817,8 +747,6 @@
},
"node_modules/@babel/plugin-transform-arrow-functions": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz",
- "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -833,8 +761,6 @@
},
"node_modules/@babel/plugin-transform-async-generator-functions": {
"version": "7.26.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz",
- "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -851,8 +777,6 @@
},
"node_modules/@babel/plugin-transform-async-to-generator": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz",
- "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -869,8 +793,6 @@
},
"node_modules/@babel/plugin-transform-block-scoped-functions": {
"version": "7.26.5",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz",
- "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -885,8 +807,6 @@
},
"node_modules/@babel/plugin-transform-block-scoping": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz",
- "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -901,8 +821,6 @@
},
"node_modules/@babel/plugin-transform-class-properties": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz",
- "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -918,8 +836,6 @@
},
"node_modules/@babel/plugin-transform-class-static-block": {
"version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz",
- "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -935,8 +851,6 @@
},
"node_modules/@babel/plugin-transform-classes": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz",
- "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -956,8 +870,6 @@
},
"node_modules/@babel/plugin-transform-computed-properties": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz",
- "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -973,8 +885,6 @@
},
"node_modules/@babel/plugin-transform-destructuring": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz",
- "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -989,8 +899,6 @@
},
"node_modules/@babel/plugin-transform-dotall-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz",
- "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1006,8 +914,6 @@
},
"node_modules/@babel/plugin-transform-duplicate-keys": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz",
- "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1022,8 +928,6 @@
},
"node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz",
- "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1039,8 +943,6 @@
},
"node_modules/@babel/plugin-transform-dynamic-import": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz",
- "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1055,8 +957,6 @@
},
"node_modules/@babel/plugin-transform-exponentiation-operator": {
"version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz",
- "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1071,8 +971,6 @@
},
"node_modules/@babel/plugin-transform-export-namespace-from": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz",
- "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1087,8 +985,6 @@
},
"node_modules/@babel/plugin-transform-for-of": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz",
- "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1104,8 +1000,6 @@
},
"node_modules/@babel/plugin-transform-function-name": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz",
- "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1122,8 +1016,6 @@
},
"node_modules/@babel/plugin-transform-json-strings": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz",
- "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1138,8 +1030,6 @@
},
"node_modules/@babel/plugin-transform-literals": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz",
- "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1154,8 +1044,6 @@
},
"node_modules/@babel/plugin-transform-logical-assignment-operators": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz",
- "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1170,8 +1058,6 @@
},
"node_modules/@babel/plugin-transform-member-expression-literals": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz",
- "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1186,8 +1072,6 @@
},
"node_modules/@babel/plugin-transform-modules-amd": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz",
- "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1203,8 +1087,6 @@
},
"node_modules/@babel/plugin-transform-modules-commonjs": {
"version": "7.26.3",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz",
- "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1220,8 +1102,6 @@
},
"node_modules/@babel/plugin-transform-modules-systemjs": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz",
- "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1239,8 +1119,6 @@
},
"node_modules/@babel/plugin-transform-modules-umd": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz",
- "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1256,8 +1134,6 @@
},
"node_modules/@babel/plugin-transform-named-capturing-groups-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz",
- "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1273,8 +1149,6 @@
},
"node_modules/@babel/plugin-transform-new-target": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz",
- "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1289,8 +1163,6 @@
},
"node_modules/@babel/plugin-transform-nullish-coalescing-operator": {
"version": "7.26.6",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz",
- "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1305,8 +1177,6 @@
},
"node_modules/@babel/plugin-transform-numeric-separator": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz",
- "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1321,8 +1191,6 @@
},
"node_modules/@babel/plugin-transform-object-rest-spread": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz",
- "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1339,8 +1207,6 @@
},
"node_modules/@babel/plugin-transform-object-super": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz",
- "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1356,8 +1222,6 @@
},
"node_modules/@babel/plugin-transform-optional-catch-binding": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz",
- "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1372,8 +1236,6 @@
},
"node_modules/@babel/plugin-transform-optional-chaining": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz",
- "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1389,8 +1251,6 @@
},
"node_modules/@babel/plugin-transform-parameters": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz",
- "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1405,8 +1265,6 @@
},
"node_modules/@babel/plugin-transform-private-methods": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz",
- "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1422,8 +1280,6 @@
},
"node_modules/@babel/plugin-transform-private-property-in-object": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz",
- "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1440,8 +1296,6 @@
},
"node_modules/@babel/plugin-transform-property-literals": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz",
- "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1456,8 +1310,6 @@
},
"node_modules/@babel/plugin-transform-regenerator": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz",
- "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1473,8 +1325,6 @@
},
"node_modules/@babel/plugin-transform-regexp-modifiers": {
"version": "7.26.0",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz",
- "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1490,8 +1340,6 @@
},
"node_modules/@babel/plugin-transform-reserved-words": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz",
- "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1506,8 +1354,6 @@
},
"node_modules/@babel/plugin-transform-runtime": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.26.9.tgz",
- "integrity": "sha512-Jf+8y9wXQbbxvVYTM8gO5oEF2POdNji0NMltEkG7FtmzD9PVz7/lxpqSdTvwsjTMU5HIHuDVNf2SOxLkWi+wPQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1527,8 +1373,6 @@
},
"node_modules/@babel/plugin-transform-shorthand-properties": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz",
- "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1543,8 +1387,6 @@
},
"node_modules/@babel/plugin-transform-spread": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz",
- "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1560,8 +1402,6 @@
},
"node_modules/@babel/plugin-transform-sticky-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz",
- "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1576,8 +1416,6 @@
},
"node_modules/@babel/plugin-transform-template-literals": {
"version": "7.26.8",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz",
- "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1592,8 +1430,6 @@
},
"node_modules/@babel/plugin-transform-typeof-symbol": {
"version": "7.26.7",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.26.7.tgz",
- "integrity": "sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1608,8 +1444,6 @@
},
"node_modules/@babel/plugin-transform-unicode-escapes": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz",
- "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1624,8 +1458,6 @@
},
"node_modules/@babel/plugin-transform-unicode-property-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz",
- "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1641,8 +1473,6 @@
},
"node_modules/@babel/plugin-transform-unicode-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz",
- "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1658,8 +1488,6 @@
},
"node_modules/@babel/plugin-transform-unicode-sets-regex": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz",
- "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1675,8 +1503,6 @@
},
"node_modules/@babel/preset-env": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz",
- "integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1759,8 +1585,6 @@
},
"node_modules/@babel/preset-env/node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.11.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz",
- "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1773,8 +1597,6 @@
},
"node_modules/@babel/preset-modules": {
"version": "0.1.6-no-external-plugins",
- "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz",
- "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1788,8 +1610,6 @@
},
"node_modules/@babel/register": {
"version": "7.25.9",
- "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.25.9.tgz",
- "integrity": "sha512-8D43jXtGsYmEeDvm4MWHYUpWf8iiXgWYx3fW7E7Wb7Oe6FWqJPl5K6TuFW0dOwNZzEE5rjlaSJYH9JjrUKJszA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1808,8 +1628,6 @@
},
"node_modules/@babel/runtime": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.9.tgz",
- "integrity": "sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1821,8 +1639,6 @@
},
"node_modules/@babel/template": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz",
- "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1836,8 +1652,6 @@
},
"node_modules/@babel/traverse": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.9.tgz",
- "integrity": "sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1855,8 +1669,6 @@
},
"node_modules/@babel/types": {
"version": "7.26.9",
- "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.9.tgz",
- "integrity": "sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1869,15 +1681,11 @@
},
"node_modules/@bcoe/v8-coverage": {
"version": "0.2.3",
- "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz",
- "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==",
"dev": true,
"license": "MIT"
},
"node_modules/@discoveryjs/json-ext": {
"version": "0.6.3",
- "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.6.3.tgz",
- "integrity": "sha512-4B4OijXeVNOPZlYA2oEwWOTkzyltLao+xbotHQeqN++Rv27Y6s818+n2Qkp8q+Fxhn0t/5lA5X1Mxktud8eayQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1886,8 +1694,6 @@
},
"node_modules/@eslint-community/eslint-utils": {
"version": "4.4.1",
- "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
- "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1905,8 +1711,6 @@
},
"node_modules/@eslint-community/regexpp": {
"version": "4.12.1",
- "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
- "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1915,8 +1719,6 @@
},
"node_modules/@eslint/eslintrc": {
"version": "2.1.4",
- "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz",
- "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1939,8 +1741,6 @@
},
"node_modules/@eslint/eslintrc/node_modules/globals": {
"version": "13.24.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
- "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -1955,8 +1755,6 @@
},
"node_modules/@eslint/eslintrc/node_modules/type-fest": {
"version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -1968,8 +1766,6 @@
},
"node_modules/@eslint/js": {
"version": "8.57.1",
- "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz",
- "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -1978,9 +1774,6 @@
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.13.0",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz",
- "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==",
- "deprecated": "Use @eslint/config-array instead",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -1994,8 +1787,6 @@
},
"node_modules/@humanwhocodes/module-importer": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
- "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -2008,16 +1799,11 @@
},
"node_modules/@humanwhocodes/object-schema": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz",
- "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==",
- "deprecated": "Use @eslint/object-schema instead",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@isaacs/cliui": {
"version": "8.0.2",
- "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
- "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -2034,8 +1820,6 @@
},
"node_modules/@isaacs/cliui/node_modules/ansi-regex": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz",
- "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2047,8 +1831,6 @@
},
"node_modules/@isaacs/cliui/node_modules/ansi-styles": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz",
- "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2060,15 +1842,11 @@
},
"node_modules/@isaacs/cliui/node_modules/emoji-regex": {
"version": "9.2.2",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
- "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==",
"dev": true,
"license": "MIT"
},
"node_modules/@isaacs/cliui/node_modules/string-width": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz",
- "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2085,8 +1863,6 @@
},
"node_modules/@isaacs/cliui/node_modules/strip-ansi": {
"version": "7.1.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz",
- "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2101,8 +1877,6 @@
},
"node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
"version": "8.1.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz",
- "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2119,8 +1893,6 @@
},
"node_modules/@istanbuljs/load-nyc-config": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz",
- "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -2136,8 +1908,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": {
"version": "1.0.10",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
- "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2146,8 +1916,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2160,8 +1928,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": {
"version": "3.14.1",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
- "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2174,8 +1940,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2187,8 +1951,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2203,8 +1965,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2216,8 +1976,6 @@
},
"node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2226,8 +1984,6 @@
},
"node_modules/@istanbuljs/schema": {
"version": "0.1.3",
- "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz",
- "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2236,8 +1992,6 @@
},
"node_modules/@jest/console": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz",
- "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2254,8 +2008,6 @@
},
"node_modules/@jest/console/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2270,8 +2022,6 @@
},
"node_modules/@jest/console/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2287,8 +2037,6 @@
},
"node_modules/@jest/console/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2297,8 +2045,6 @@
},
"node_modules/@jest/console/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2310,8 +2056,6 @@
},
"node_modules/@jest/core": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz",
- "integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2359,8 +2103,6 @@
},
"node_modules/@jest/core/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2369,8 +2111,6 @@
},
"node_modules/@jest/core/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2385,8 +2125,6 @@
},
"node_modules/@jest/core/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2402,9 +2140,6 @@
},
"node_modules/@jest/core/node_modules/rimraf": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -2419,8 +2154,6 @@
},
"node_modules/@jest/core/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2429,8 +2162,6 @@
},
"node_modules/@jest/core/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2442,8 +2173,6 @@
},
"node_modules/@jest/core/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2455,8 +2184,6 @@
},
"node_modules/@jest/environment": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz",
- "integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2471,8 +2198,6 @@
},
"node_modules/@jest/expect": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz",
- "integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2485,8 +2210,6 @@
},
"node_modules/@jest/expect-utils": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz",
- "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2498,8 +2221,6 @@
},
"node_modules/@jest/fake-timers": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz",
- "integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2516,8 +2237,6 @@
},
"node_modules/@jest/globals": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz",
- "integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2531,8 +2250,6 @@
},
"node_modules/@jest/reporters": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz",
- "integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2576,8 +2293,6 @@
},
"node_modules/@jest/reporters/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2586,8 +2301,6 @@
},
"node_modules/@jest/reporters/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2602,8 +2315,6 @@
},
"node_modules/@jest/reporters/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2619,8 +2330,6 @@
},
"node_modules/@jest/reporters/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2629,8 +2338,6 @@
},
"node_modules/@jest/reporters/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2642,8 +2349,6 @@
},
"node_modules/@jest/reporters/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2655,8 +2360,6 @@
},
"node_modules/@jest/schemas": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz",
- "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2668,8 +2371,6 @@
},
"node_modules/@jest/source-map": {
"version": "28.1.2",
- "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz",
- "integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2683,8 +2384,6 @@
},
"node_modules/@jest/test-result": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz",
- "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2699,8 +2398,6 @@
},
"node_modules/@jest/test-sequencer": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz",
- "integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2715,8 +2412,6 @@
},
"node_modules/@jest/test-sequencer/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2725,8 +2420,6 @@
},
"node_modules/@jest/transform": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz",
- "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2752,8 +2445,6 @@
},
"node_modules/@jest/transform/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2768,8 +2459,6 @@
},
"node_modules/@jest/transform/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2785,15 +2474,11 @@
},
"node_modules/@jest/transform/node_modules/convert-source-map": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true,
"license": "MIT"
},
"node_modules/@jest/transform/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2802,8 +2487,6 @@
},
"node_modules/@jest/transform/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2815,8 +2498,6 @@
},
"node_modules/@jest/types": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz",
- "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2833,8 +2514,6 @@
},
"node_modules/@jest/types/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2849,8 +2528,6 @@
},
"node_modules/@jest/types/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2866,8 +2543,6 @@
},
"node_modules/@jest/types/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2879,8 +2554,6 @@
},
"node_modules/@jridgewell/gen-mapping": {
"version": "0.3.8",
- "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz",
- "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2894,8 +2567,6 @@
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
- "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2904,8 +2575,6 @@
},
"node_modules/@jridgewell/set-array": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz",
- "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2914,8 +2583,6 @@
},
"node_modules/@jridgewell/source-map": {
"version": "0.3.6",
- "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz",
- "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2925,15 +2592,11 @@
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
- "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.25",
- "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz",
- "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2943,8 +2606,6 @@
},
"node_modules/@jsdoc/salty": {
"version": "0.2.9",
- "resolved": "https://registry.npmjs.org/@jsdoc/salty/-/salty-0.2.9.tgz",
- "integrity": "sha512-yYxMVH7Dqw6nO0d5NIV8OQWnitU8k6vXH8NtgqAfIa/IUqRMxRv/NUJJ08VEKbAakwxlgBl5PJdrU0dMPStsnw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -2956,16 +2617,43 @@
},
"node_modules/@nicolo-ribaudo/chokidar-2": {
"version": "2.1.8-no-fsevents.3",
- "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz",
- "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==",
"dev": true,
"license": "MIT",
"optional": true
},
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": {
+ "version": "5.1.1-v1",
+ "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz",
+ "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==",
+ "dev": true,
+ "dependencies": {
+ "eslint-scope": "5.1.1"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/eslint-scope": {
+ "version": "5.1.1",
+ "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
+ "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
+ "dev": true,
+ "dependencies": {
+ "esrecurse": "^4.3.0",
+ "estraverse": "^4.1.1"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ }
+ },
+ "node_modules/@nicolo-ribaudo/eslint-scope-5-internals/node_modules/estraverse": {
+ "version": "4.3.0",
+ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
+ "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
+ "dev": true,
+ "engines": {
+ "node": ">=4.0"
+ }
+ },
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
- "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -2978,8 +2666,6 @@
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
- "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -2988,8 +2674,6 @@
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
- "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3002,8 +2686,6 @@
},
"node_modules/@pkgjs/parseargs": {
"version": "0.11.0",
- "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
- "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==",
"dev": true,
"license": "MIT",
"optional": true,
@@ -3013,22 +2695,16 @@
},
"node_modules/@rtsao/scc": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
- "integrity": "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==",
"dev": true,
"license": "MIT"
},
"node_modules/@sinclair/typebox": {
"version": "0.24.51",
- "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz",
- "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==",
"dev": true,
"license": "MIT"
},
"node_modules/@sinonjs/commons": {
"version": "1.8.6",
- "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz",
- "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3037,8 +2713,6 @@
},
"node_modules/@sinonjs/commons/node_modules/type-detect": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
- "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3047,8 +2721,6 @@
},
"node_modules/@sinonjs/fake-timers": {
"version": "9.1.2",
- "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz",
- "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3057,8 +2729,6 @@
},
"node_modules/@sinonjs/formatio": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.2.tgz",
- "integrity": "sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3068,8 +2738,6 @@
},
"node_modules/@sinonjs/samsam": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.3.tgz",
- "integrity": "sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -3080,15 +2748,11 @@
},
"node_modules/@sinonjs/text-encoding": {
"version": "0.7.3",
- "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.3.tgz",
- "integrity": "sha512-DE427ROAphMQzU4ENbliGYrBSYPXF+TtLg9S8vzeA+OF4ZKzoDdzfL8sxuMUGS/lgRhM6j1URSk9ghf7Xo1tyA==",
"dev": true,
"license": "(Unlicense OR Apache-2.0)"
},
"node_modules/@slack/bolt": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/@slack/bolt/-/bolt-4.2.1.tgz",
- "integrity": "sha512-O+c7i5iZKlxt6ltJAu2BclEoyWuAVkcpir1F3HWCHTez8Pjz0GxwdBzNHR5HDXvOdBT7En1BU0T2L6Ldv++GSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3113,8 +2777,6 @@
},
"node_modules/@slack/logger": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/@slack/logger/-/logger-4.0.0.tgz",
- "integrity": "sha512-Wz7QYfPAlG/DR+DfABddUZeNgoeY7d1J39OCR2jR+v7VBsB8ezulDK5szTnDDPDwLH5IWhLvXIHlCFZV7MSKgA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3127,8 +2789,6 @@
},
"node_modules/@slack/oauth": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/@slack/oauth/-/oauth-3.0.2.tgz",
- "integrity": "sha512-MdPS8AP9n3u/hBeqRFu+waArJLD/q+wOSZ48ktMTwxQLc6HJyaWPf8soqAyS/b0D6IlvI5TxAdyRyyv3wQ5IVw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3146,8 +2806,6 @@
},
"node_modules/@slack/socket-mode": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@slack/socket-mode/-/socket-mode-2.0.3.tgz",
- "integrity": "sha512-aY1AhQd3HAgxLYC2Mz47dXtW6asjyYp8bJ24MWalg+qFWPaXj8VBYi+5w3rfGqBW5IxlIhs3vJTEQtIBrqQf5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3165,8 +2823,6 @@
},
"node_modules/@slack/types": {
"version": "2.14.0",
- "resolved": "https://registry.npmjs.org/@slack/types/-/types-2.14.0.tgz",
- "integrity": "sha512-n0EGm7ENQRxlXbgKSrQZL69grzg1gHLAVd+GlRVQJ1NSORo0FrApR7wql/gaKdu2n4TO83Sq/AmeUOqD60aXUA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3176,8 +2832,6 @@
},
"node_modules/@slack/web-api": {
"version": "7.8.0",
- "resolved": "https://registry.npmjs.org/@slack/web-api/-/web-api-7.8.0.tgz",
- "integrity": "sha512-d4SdG+6UmGdzWw38a4sN3lF/nTEzsDxhzU13wm10ejOpPehtmRoqBKnPztQUfFiWbNvSb4czkWYJD4kt+5+Fuw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3201,8 +2855,6 @@
},
"node_modules/@types/babel__core": {
"version": "7.20.5",
- "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
- "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3215,8 +2867,6 @@
},
"node_modules/@types/babel__generator": {
"version": "7.6.8",
- "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz",
- "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3225,8 +2875,6 @@
},
"node_modules/@types/babel__template": {
"version": "7.4.4",
- "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
- "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3236,8 +2884,6 @@
},
"node_modules/@types/babel__traverse": {
"version": "7.20.6",
- "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz",
- "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3246,8 +2892,6 @@
},
"node_modules/@types/body-parser": {
"version": "1.19.5",
- "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz",
- "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3258,15 +2902,11 @@
},
"node_modules/@types/chai": {
"version": "4.3.20",
- "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.20.tgz",
- "integrity": "sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/connect": {
"version": "3.4.38",
- "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz",
- "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3276,8 +2916,6 @@
},
"node_modules/@types/eslint": {
"version": "9.6.1",
- "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz",
- "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3287,8 +2925,6 @@
},
"node_modules/@types/eslint-scope": {
"version": "3.7.7",
- "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz",
- "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3298,15 +2934,11 @@
},
"node_modules/@types/estree": {
"version": "1.0.6",
- "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
- "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/express": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.0.tgz",
- "integrity": "sha512-DvZriSMehGHL1ZNLzi6MidnsDhUZM/x2pRdDIKdwbUNqqwHxMlRdkxtn6/EPKyqKpHqTl/4nRZsRNLpZxZRpPQ==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3319,8 +2951,6 @@
},
"node_modules/@types/express-serve-static-core": {
"version": "5.0.6",
- "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.6.tgz",
- "integrity": "sha512-3xhRnjJPkULekpSzgtoNYYcTWgEZkp4myc+Saevii5JPnHNvHMRlBSHDbs7Bh1iPPoVTERHEZXyhyLbMEsExsA==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3333,8 +2963,6 @@
},
"node_modules/@types/glob": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz",
- "integrity": "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3344,8 +2972,6 @@
},
"node_modules/@types/graceful-fs": {
"version": "4.1.9",
- "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz",
- "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3354,23 +2980,17 @@
},
"node_modules/@types/http-errors": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz",
- "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==",
"dev": true,
"license": "MIT",
"peer": true
},
"node_modules/@types/istanbul-lib-coverage": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz",
- "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/istanbul-lib-report": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz",
- "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3379,8 +2999,6 @@
},
"node_modules/@types/istanbul-reports": {
"version": "3.0.4",
- "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz",
- "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3389,8 +3007,6 @@
},
"node_modules/@types/jest": {
"version": "28.1.8",
- "resolved": "https://registry.npmjs.org/@types/jest/-/jest-28.1.8.tgz",
- "integrity": "sha512-8TJkV++s7B6XqnDrzR1m/TT0A0h948Pnl/097veySPN67VRAgQ4gZ7n2KfJo2rVq6njQjdxU3GCCyDvAeuHoiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3400,22 +3016,16 @@
},
"node_modules/@types/json-schema": {
"version": "7.0.15",
- "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
- "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/json5": {
"version": "0.0.29",
- "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
- "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/jsonwebtoken": {
"version": "9.0.9",
- "resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-9.0.9.tgz",
- "integrity": "sha512-uoe+GxEuHbvy12OUQct2X9JenKM3qAscquYymuQN4fMWG9DBQtykrQEFcAbVACF7qaLw9BePSodUL0kquqBJpQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3425,22 +3035,16 @@
},
"node_modules/@types/linkify-it": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz",
- "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/lodash": {
"version": "4.17.16",
- "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.16.tgz",
- "integrity": "sha512-HX7Em5NYQAXKW+1T+FiuG27NGwzJfCX3s1GjOa7ujxZa52kjJLOr4FUxT+giF6Tgxv1e+/czV/iTtBw27WTU9g==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/markdown-it": {
"version": "14.1.2",
- "resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz",
- "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3450,44 +3054,32 @@
},
"node_modules/@types/mdurl": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz",
- "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/mime": {
"version": "1.3.5",
- "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz",
- "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==",
"dev": true,
"license": "MIT",
"peer": true
},
"node_modules/@types/minimatch": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz",
- "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/mocha": {
"version": "7.0.2",
- "resolved": "https://registry.npmjs.org/@types/mocha/-/mocha-7.0.2.tgz",
- "integrity": "sha512-ZvO2tAcjmMi8V/5Z3JsyofMe3hasRcaw88cto5etSVMwVQfeivGAlEYmaQgceUSVYFofVjT+ioHsATjdWcFt1w==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/ms": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
- "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/node": {
"version": "22.13.10",
- "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.10.tgz",
- "integrity": "sha512-I6LPUvlRH+O6VRUqYOcMudhaIdUVWfsjnZavnsraHvpBwaEyMN29ry+0UVJhImYL16xsscu0aske3yA+uPOWfw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3496,38 +3088,28 @@
},
"node_modules/@types/prettier": {
"version": "2.7.3",
- "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz",
- "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/qs": {
"version": "6.9.18",
- "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz",
- "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==",
"dev": true,
"license": "MIT",
"peer": true
},
"node_modules/@types/range-parser": {
"version": "1.2.7",
- "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz",
- "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==",
"dev": true,
"license": "MIT",
"peer": true
},
"node_modules/@types/retry": {
"version": "0.12.0",
- "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz",
- "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/send": {
"version": "0.17.4",
- "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz",
- "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3538,8 +3120,6 @@
},
"node_modules/@types/serve-static": {
"version": "1.15.7",
- "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz",
- "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==",
"dev": true,
"license": "MIT",
"peer": true,
@@ -3551,15 +3131,11 @@
},
"node_modules/@types/stack-utils": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz",
- "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/ws": {
"version": "8.18.0",
- "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.0.tgz",
- "integrity": "sha512-8svvI3hMyvN0kKCJMvTJP/x6Y/EoQbepff882wL+Sn5QsXb3etnamgrJq4isrBxSJj5L2AuXcI0+bgkoAXGUJw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3568,8 +3144,6 @@
},
"node_modules/@types/yargs": {
"version": "17.0.33",
- "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.33.tgz",
- "integrity": "sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3578,22 +3152,16 @@
},
"node_modules/@types/yargs-parser": {
"version": "21.0.3",
- "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz",
- "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@ungap/structured-clone": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
- "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
"dev": true,
"license": "ISC"
},
"node_modules/@webassemblyjs/ast": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz",
- "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3603,29 +3171,21 @@
},
"node_modules/@webassemblyjs/floating-point-hex-parser": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz",
- "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-api-error": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz",
- "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-buffer": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz",
- "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-numbers": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz",
- "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3636,15 +3196,11 @@
},
"node_modules/@webassemblyjs/helper-wasm-bytecode": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz",
- "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/helper-wasm-section": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz",
- "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3656,8 +3212,6 @@
},
"node_modules/@webassemblyjs/ieee754": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz",
- "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3666,8 +3220,6 @@
},
"node_modules/@webassemblyjs/leb128": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz",
- "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -3676,15 +3228,11 @@
},
"node_modules/@webassemblyjs/utf8": {
"version": "1.13.2",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz",
- "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==",
"dev": true,
"license": "MIT"
},
"node_modules/@webassemblyjs/wasm-edit": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz",
- "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3700,8 +3248,6 @@
},
"node_modules/@webassemblyjs/wasm-gen": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz",
- "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3714,8 +3260,6 @@
},
"node_modules/@webassemblyjs/wasm-opt": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz",
- "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3727,8 +3271,6 @@
},
"node_modules/@webassemblyjs/wasm-parser": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz",
- "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3742,8 +3284,6 @@
},
"node_modules/@webassemblyjs/wast-printer": {
"version": "1.14.1",
- "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz",
- "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3753,8 +3293,6 @@
},
"node_modules/@webpack-cli/configtest": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-3.0.1.tgz",
- "integrity": "sha512-u8d0pJ5YFgneF/GuvEiDA61Tf1VDomHHYMjv/wc9XzYj7nopltpG96nXN5dJRstxZhcNpV1g+nT6CydO7pHbjA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3767,8 +3305,6 @@
},
"node_modules/@webpack-cli/info": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-3.0.1.tgz",
- "integrity": "sha512-coEmDzc2u/ffMvuW9aCjoRzNSPDl/XLuhPdlFRpT9tZHmJ/039az33CE7uH+8s0uL1j5ZNtfdv0HkfaKRBGJsQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3781,8 +3317,6 @@
},
"node_modules/@webpack-cli/serve": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-3.0.1.tgz",
- "integrity": "sha512-sbgw03xQaCLiT6gcY/6u3qBDn01CWw/nbaXl3gTdTFuJJ75Gffv3E3DBpgvY2fkkrdS1fpjaXNOmJlnbtKauKg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3800,22 +3334,16 @@
},
"node_modules/@xtuc/ieee754": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz",
- "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/@xtuc/long": {
"version": "4.2.2",
- "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz",
- "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/accepts": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/accepts/-/accepts-2.0.0.tgz",
- "integrity": "sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3828,8 +3356,6 @@
},
"node_modules/acorn": {
"version": "8.14.1",
- "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz",
- "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -3841,8 +3367,6 @@
},
"node_modules/acorn-jsx": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
- "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -3851,8 +3375,6 @@
},
"node_modules/aggregate-error": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz",
- "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3865,8 +3387,6 @@
},
"node_modules/ajv": {
"version": "6.12.6",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
- "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3882,8 +3402,6 @@
},
"node_modules/ajv-formats": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz",
- "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3900,8 +3418,6 @@
},
"node_modules/ajv-formats/node_modules/ajv": {
"version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3917,15 +3433,11 @@
},
"node_modules/ajv-formats/node_modules/json-schema-traverse": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"license": "MIT"
},
"node_modules/ajv-keywords": {
"version": "3.5.2",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz",
- "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -3934,8 +3446,6 @@
},
"node_modules/ansi-colors": {
"version": "4.1.3",
- "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz",
- "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3944,8 +3454,6 @@
},
"node_modules/ansi-escapes": {
"version": "4.3.2",
- "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz",
- "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -3960,8 +3468,6 @@
},
"node_modules/ansi-regex": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
- "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3970,8 +3476,6 @@
},
"node_modules/ansi-styles": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
- "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -3980,8 +3484,6 @@
},
"node_modules/anymatch": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
- "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -3994,8 +3496,6 @@
},
"node_modules/append-transform": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz",
- "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4007,22 +3507,16 @@
},
"node_modules/archy": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
- "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==",
"dev": true,
"license": "MIT"
},
"node_modules/argparse": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
"dev": true,
"license": "Python-2.0"
},
"node_modules/array-buffer-byte-length": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
- "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4038,15 +3532,11 @@
},
"node_modules/array-from": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz",
- "integrity": "sha512-GQTc6Uupx1FCavi5mPzBvVT7nEOeWMmUA9P95wpfpW1XwMSKs+KaymD5C2Up7KAUKg/mYwbsUYzdZWcoajlNZg==",
"dev": true,
"license": "MIT"
},
"node_modules/array-includes": {
"version": "3.1.8",
- "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
- "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4066,8 +3556,6 @@
},
"node_modules/array-union": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
- "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4079,8 +3567,6 @@
},
"node_modules/array-uniq": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
- "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4089,8 +3575,6 @@
},
"node_modules/array.prototype.findlastindex": {
"version": "1.2.5",
- "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz",
- "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4110,8 +3594,6 @@
},
"node_modules/array.prototype.flat": {
"version": "1.3.3",
- "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
- "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4129,8 +3611,6 @@
},
"node_modules/array.prototype.flatmap": {
"version": "1.3.3",
- "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
- "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4148,8 +3628,6 @@
},
"node_modules/arraybuffer.prototype.slice": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
- "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4170,8 +3648,6 @@
},
"node_modules/assertion-error": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
- "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4180,8 +3656,6 @@
},
"node_modules/async-function": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz",
- "integrity": "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4190,14 +3664,10 @@
},
"node_modules/asynckit": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
- "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
"license": "MIT"
},
"node_modules/available-typed-arrays": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
- "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4212,8 +3682,6 @@
},
"node_modules/axios": {
"version": "1.8.2",
- "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
- "integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.6",
@@ -4223,8 +3691,6 @@
},
"node_modules/axios-mock-adapter": {
"version": "1.22.0",
- "resolved": "https://registry.npmjs.org/axios-mock-adapter/-/axios-mock-adapter-1.22.0.tgz",
- "integrity": "sha512-dmI0KbkyAhntUR05YY96qg2H6gg0XMl2+qTW0xmYg6Up+BFBAJYRLROMXRdDEL06/Wqwa0TJThAYvFtSFdRCZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4237,8 +3703,6 @@
},
"node_modules/babel-code-frame": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
- "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4249,15 +3713,11 @@
},
"node_modules/babel-code-frame/node_modules/js-tokens": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz",
- "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==",
"dev": true,
"license": "MIT"
},
"node_modules/babel-jest": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz",
- "integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4278,8 +3738,6 @@
},
"node_modules/babel-jest/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4294,8 +3752,6 @@
},
"node_modules/babel-jest/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4311,8 +3767,6 @@
},
"node_modules/babel-jest/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4321,8 +3775,6 @@
},
"node_modules/babel-jest/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4334,8 +3786,6 @@
},
"node_modules/babel-loader": {
"version": "8.4.1",
- "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.4.1.tgz",
- "integrity": "sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4354,8 +3804,6 @@
},
"node_modules/babel-loader/node_modules/find-cache-dir": {
"version": "3.3.2",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
- "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4372,8 +3820,6 @@
},
"node_modules/babel-loader/node_modules/find-up": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4386,8 +3832,6 @@
},
"node_modules/babel-loader/node_modules/locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4399,8 +3843,6 @@
},
"node_modules/babel-loader/node_modules/make-dir": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4415,8 +3857,6 @@
},
"node_modules/babel-loader/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4431,8 +3871,6 @@
},
"node_modules/babel-loader/node_modules/p-locate": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4444,8 +3882,6 @@
},
"node_modules/babel-loader/node_modules/pkg-dir": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4457,8 +3893,6 @@
},
"node_modules/babel-messages": {
"version": "6.23.0",
- "resolved": "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz",
- "integrity": "sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4467,15 +3901,11 @@
},
"node_modules/babel-plugin-add-module-exports": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/babel-plugin-add-module-exports/-/babel-plugin-add-module-exports-1.0.4.tgz",
- "integrity": "sha512-g+8yxHUZ60RcyaUpfNzy56OtWW+x9cyEe9j+CranqLiqbju2yf/Cy6ZtYK40EZxtrdHllzlVZgLmcOUCTlJ7Jg==",
"dev": true,
"license": "MIT"
},
"node_modules/babel-plugin-istanbul": {
"version": "6.1.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz",
- "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -4491,8 +3921,6 @@
},
"node_modules/babel-plugin-jest-hoist": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz",
- "integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4507,8 +3935,6 @@
},
"node_modules/babel-plugin-polyfill-corejs2": {
"version": "0.4.12",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz",
- "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4522,8 +3948,6 @@
},
"node_modules/babel-plugin-polyfill-corejs3": {
"version": "0.10.6",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz",
- "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4536,8 +3960,6 @@
},
"node_modules/babel-plugin-polyfill-regenerator": {
"version": "0.6.3",
- "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz",
- "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4549,15 +3971,11 @@
},
"node_modules/babel-plugin-rewire": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/babel-plugin-rewire/-/babel-plugin-rewire-1.2.0.tgz",
- "integrity": "sha512-JBZxczHw3tScS+djy6JPLMjblchGhLI89ep15H3SyjujIzlxo5nr6Yjo7AXotdeVczeBmWs0tF8PgJWDdgzAkQ==",
"dev": true,
"license": "ISC"
},
"node_modules/babel-plugin-transform-es2015-modules-commonjs": {
"version": "6.26.2",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz",
- "integrity": "sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4569,8 +3987,6 @@
},
"node_modules/babel-plugin-transform-strict-mode": {
"version": "6.24.1",
- "resolved": "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz",
- "integrity": "sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4580,8 +3996,6 @@
},
"node_modules/babel-polyfill": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
- "integrity": "sha512-F2rZGQnAdaHWQ8YAoeRbukc7HS9QgdgeyJ0rQDd485v9opwuPvjpPFcOOT/WmkKTdgy9ESgSPXDcTNpzrGr6iQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4592,15 +4006,11 @@
},
"node_modules/babel-polyfill/node_modules/regenerator-runtime": {
"version": "0.10.5",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
- "integrity": "sha512-02YopEIhAgiBHWeoTiA8aitHDt8z6w+rQqNuIftlM+ZtvSl/brTouaU7DW6GO/cHtvxJvS4Hwv2ibKdxIRi24w==",
"dev": true,
"license": "MIT"
},
"node_modules/babel-preset-current-node-syntax": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.1.0.tgz",
- "integrity": "sha512-ldYss8SbBlWva1bs28q78Ju5Zq1F+8BrqBZZ0VFhLBvhh6lCpC2o3gDJi/5DRLs9FgYZCnmPYIVFU4lRXCkyUw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4626,8 +4036,6 @@
},
"node_modules/babel-preset-jest": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz",
- "integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4643,8 +4051,6 @@
},
"node_modules/babel-runtime": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
- "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4654,15 +4060,11 @@
},
"node_modules/babel-runtime/node_modules/regenerator-runtime": {
"version": "0.11.1",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz",
- "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==",
"dev": true,
"license": "MIT"
},
"node_modules/babel-template": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz",
- "integrity": "sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4675,8 +4077,6 @@
},
"node_modules/babel-traverse": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz",
- "integrity": "sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4693,8 +4093,6 @@
},
"node_modules/babel-traverse/node_modules/debug": {
"version": "2.6.9",
- "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
- "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4703,8 +4101,6 @@
},
"node_modules/babel-traverse/node_modules/globals": {
"version": "9.18.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
- "integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4713,15 +4109,11 @@
},
"node_modules/babel-traverse/node_modules/ms": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
- "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
"dev": true,
"license": "MIT"
},
"node_modules/babel-types": {
"version": "6.26.0",
- "resolved": "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz",
- "integrity": "sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4733,8 +4125,6 @@
},
"node_modules/babylon": {
"version": "6.18.0",
- "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
- "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==",
"dev": true,
"license": "MIT",
"bin": {
@@ -4743,15 +4133,11 @@
},
"node_modules/balanced-match": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
- "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true,
"license": "MIT"
},
"node_modules/big.js": {
"version": "5.2.2",
- "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz",
- "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4760,8 +4146,6 @@
},
"node_modules/binary-extensions": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
- "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4773,15 +4157,11 @@
},
"node_modules/bluebird": {
"version": "3.7.2",
- "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz",
- "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==",
"dev": true,
"license": "MIT"
},
"node_modules/body-parser": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.1.0.tgz",
- "integrity": "sha512-/hPxh61E+ll0Ujp24Ilm64cykicul1ypfwjVttduAiEdtnJFvLePSrIPk+HMImtNv5270wOGCb1Tns2rybMkoQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4801,8 +4181,6 @@
},
"node_modules/brace-expansion": {
"version": "1.1.11",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
- "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4812,8 +4190,6 @@
},
"node_modules/braces": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
- "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4825,15 +4201,11 @@
},
"node_modules/browser-stdout": {
"version": "1.3.1",
- "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
- "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==",
"dev": true,
"license": "ISC"
},
"node_modules/browserslist": {
"version": "4.24.4",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz",
- "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==",
"dev": true,
"funding": [
{
@@ -4865,8 +4237,6 @@
},
"node_modules/bs-logger": {
"version": "0.2.6",
- "resolved": "https://registry.npmjs.org/bs-logger/-/bs-logger-0.2.6.tgz",
- "integrity": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4878,8 +4248,6 @@
},
"node_modules/bser": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz",
- "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -4888,22 +4256,16 @@
},
"node_modules/buffer-equal-constant-time": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
- "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/buffer-from": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
- "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
"dev": true,
"license": "MIT"
},
"node_modules/bytes": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
- "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -4912,8 +4274,6 @@
},
"node_modules/caching-transform": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz",
- "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4928,8 +4288,6 @@
},
"node_modules/caching-transform/node_modules/make-dir": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4944,8 +4302,6 @@
},
"node_modules/caching-transform/node_modules/write-file-atomic": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz",
- "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -4957,8 +4313,6 @@
},
"node_modules/call-bind": {
"version": "1.0.8",
- "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
- "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -4976,8 +4330,6 @@
},
"node_modules/call-bind-apply-helpers": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
- "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -4989,8 +4341,6 @@
},
"node_modules/call-bound": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
- "integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.2",
@@ -5005,8 +4355,6 @@
},
"node_modules/callsites": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
- "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5015,8 +4363,6 @@
},
"node_modules/camelcase": {
"version": "5.3.1",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz",
- "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5025,8 +4371,6 @@
},
"node_modules/caniuse-lite": {
"version": "1.0.30001703",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001703.tgz",
- "integrity": "sha512-kRlAGTRWgPsOj7oARC9m1okJEXdL/8fekFVcxA8Hl7GH4r/sN4OJn/i6Flde373T50KS7Y37oFbMwlE8+F42kQ==",
"dev": true,
"funding": [
{
@@ -5046,8 +4390,6 @@
},
"node_modules/catharsis": {
"version": "0.9.0",
- "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.9.0.tgz",
- "integrity": "sha512-prMTQVpcns/tzFgFVkVp6ak6RykZyWb3gu8ckUpd6YkTlacOd3DXGJjIpD4Q6zJirizvaiAjSSHlOsA+6sNh2A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5059,8 +4401,6 @@
},
"node_modules/chai": {
"version": "4.5.0",
- "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz",
- "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5078,8 +4418,6 @@
},
"node_modules/chalk": {
"version": "1.1.3",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
- "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5095,8 +4433,6 @@
},
"node_modules/char-regex": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz",
- "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5105,8 +4441,6 @@
},
"node_modules/check-error": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz",
- "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5118,8 +4452,6 @@
},
"node_modules/chokidar": {
"version": "3.6.0",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
- "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5143,8 +4475,6 @@
},
"node_modules/chrome-trace-event": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz",
- "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5153,8 +4483,6 @@
},
"node_modules/ci-info": {
"version": "3.9.0",
- "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz",
- "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==",
"dev": true,
"funding": [
{
@@ -5169,15 +4497,11 @@
},
"node_modules/cjs-module-lexer": {
"version": "1.4.3",
- "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz",
- "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==",
"dev": true,
"license": "MIT"
},
"node_modules/clean-stack": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz",
- "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5186,8 +4510,6 @@
},
"node_modules/clean-webpack-plugin": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-4.0.0.tgz",
- "integrity": "sha512-WuWE1nyTNAyW5T7oNyys2EN0cfP2fdRxhxnIQWiAp0bMabPdHhoGxM8A6YL2GhqwgrPnnaemVE7nv5XJ2Fhh2w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5202,8 +4524,6 @@
},
"node_modules/cliui": {
"version": "8.0.1",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
- "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5217,8 +4537,6 @@
},
"node_modules/cliui/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5227,8 +4545,6 @@
},
"node_modules/cliui/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5240,8 +4556,6 @@
},
"node_modules/clone-deep": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz",
- "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5255,8 +4569,6 @@
},
"node_modules/co": {
"version": "4.6.0",
- "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
- "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5266,15 +4578,11 @@
},
"node_modules/collect-v8-coverage": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz",
- "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==",
"dev": true,
"license": "MIT"
},
"node_modules/color-convert": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
- "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5286,22 +4594,16 @@
},
"node_modules/color-name": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"license": "MIT"
},
"node_modules/colorette": {
"version": "2.0.20",
- "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz",
- "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==",
"dev": true,
"license": "MIT"
},
"node_modules/combined-stream": {
"version": "1.0.8",
- "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
- "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"license": "MIT",
"dependencies": {
"delayed-stream": "~1.0.0"
@@ -5312,8 +4614,6 @@
},
"node_modules/commander": {
"version": "6.2.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz",
- "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5322,22 +4622,16 @@
},
"node_modules/commondir": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz",
- "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==",
"dev": true,
"license": "MIT"
},
"node_modules/concat-map": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
- "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true,
"license": "MIT"
},
"node_modules/content-disposition": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-1.0.0.tgz",
- "integrity": "sha512-Au9nRL8VNUut/XSzbQA38+M78dzP4D+eqg3gfJHMIHHYa3bg067xj1KxMUWj+VULbiZMowKngFFbKczUrNJ1mg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5349,8 +4643,6 @@
},
"node_modules/content-type": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
- "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5359,15 +4651,11 @@
},
"node_modules/convert-source-map": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
- "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"dev": true,
"license": "MIT"
},
"node_modules/cookie": {
"version": "0.7.1",
- "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz",
- "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5376,8 +4664,6 @@
},
"node_modules/cookie-signature": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.2.2.tgz",
- "integrity": "sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5386,17 +4672,12 @@
},
"node_modules/core-js": {
"version": "2.6.12",
- "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
- "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==",
- "deprecated": "core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.",
"dev": true,
"hasInstallScript": true,
"license": "MIT"
},
"node_modules/core-js-compat": {
"version": "3.41.0",
- "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz",
- "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5409,8 +4690,6 @@
},
"node_modules/cross-spawn": {
"version": "7.0.6",
- "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
- "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5424,8 +4703,6 @@
},
"node_modules/data-view-buffer": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
- "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5442,8 +4719,6 @@
},
"node_modules/data-view-byte-length": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
- "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5460,8 +4735,6 @@
},
"node_modules/data-view-byte-offset": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
- "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5478,8 +4751,6 @@
},
"node_modules/dateformat": {
"version": "4.6.3",
- "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz",
- "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5488,8 +4759,6 @@
},
"node_modules/debug": {
"version": "4.4.0",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
- "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5506,8 +4775,6 @@
},
"node_modules/decamelize": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
- "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5516,15 +4783,11 @@
},
"node_modules/dedent": {
"version": "0.7.0",
- "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz",
- "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==",
"dev": true,
"license": "MIT"
},
"node_modules/deep-eql": {
"version": "4.1.4",
- "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz",
- "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5536,8 +4799,6 @@
},
"node_modules/deep-equal": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz",
- "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5557,15 +4818,11 @@
},
"node_modules/deep-is": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
- "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
"dev": true,
"license": "MIT"
},
"node_modules/deepmerge": {
"version": "4.3.1",
- "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz",
- "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5574,8 +4831,6 @@
},
"node_modules/default-require-extensions": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.1.tgz",
- "integrity": "sha512-eXTJmRbm2TIt9MgWTsOH1wEuhew6XGZcMeGKCtLedIg/NCsg1iBePXkceTdK4Fii7pzmN9tGsZhKzZ4h7O/fxw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5590,8 +4845,6 @@
},
"node_modules/define-data-property": {
"version": "1.1.4",
- "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
- "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5608,8 +4861,6 @@
},
"node_modules/define-properties": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
- "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5626,8 +4877,6 @@
},
"node_modules/del": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz",
- "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5645,9 +4894,6 @@
},
"node_modules/del/node_modules/rimraf": {
"version": "2.7.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz",
- "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -5659,8 +4905,6 @@
},
"node_modules/delayed-stream": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
- "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
"license": "MIT",
"engines": {
"node": ">=0.4.0"
@@ -5668,8 +4912,6 @@
},
"node_modules/depd": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
- "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5678,8 +4920,6 @@
},
"node_modules/destroy": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
- "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5689,8 +4929,6 @@
},
"node_modules/detect-newline": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz",
- "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5699,8 +4937,6 @@
},
"node_modules/diff": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz",
- "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -5709,8 +4945,6 @@
},
"node_modules/diff-sequences": {
"version": "28.1.1",
- "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz",
- "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5719,15 +4953,11 @@
},
"node_modules/docdash": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/docdash/-/docdash-1.2.0.tgz",
- "integrity": "sha512-IYZbgYthPTspgqYeciRJNPhSwL51yer7HAwDXhF5p+H7mTDbPvY3PCk/QDjNxdPCpWkaJVFC4t7iCNB/t9E5Kw==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/doctrine": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
- "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5739,8 +4969,6 @@
},
"node_modules/dotenv": {
"version": "16.4.7",
- "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz",
- "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -5752,8 +4980,6 @@
},
"node_modules/dunder-proto": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
- "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.1",
@@ -5766,15 +4992,11 @@
},
"node_modules/eastasianwidth": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz",
- "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==",
"dev": true,
"license": "MIT"
},
"node_modules/ecdsa-sig-formatter": {
"version": "1.0.11",
- "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
- "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -5783,22 +5005,16 @@
},
"node_modules/ee-first": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
- "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
"dev": true,
"license": "MIT"
},
"node_modules/electron-to-chromium": {
"version": "1.5.113",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.113.tgz",
- "integrity": "sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==",
"dev": true,
"license": "ISC"
},
"node_modules/emittery": {
"version": "0.10.2",
- "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz",
- "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5810,15 +5026,11 @@
},
"node_modules/emoji-regex": {
"version": "8.0.0",
- "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
"dev": true,
"license": "MIT"
},
"node_modules/emojis-list": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz",
- "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5827,8 +5039,6 @@
},
"node_modules/encodeurl": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
- "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -5837,8 +5047,6 @@
},
"node_modules/enhanced-resolve": {
"version": "5.18.1",
- "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz",
- "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5851,8 +5059,6 @@
},
"node_modules/entities": {
"version": "4.5.0",
- "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
- "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -5864,8 +5070,6 @@
},
"node_modules/envinfo": {
"version": "7.14.0",
- "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz",
- "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -5877,8 +5081,6 @@
},
"node_modules/error-ex": {
"version": "1.3.2",
- "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
- "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5887,8 +5089,6 @@
},
"node_modules/es-abstract": {
"version": "1.23.9",
- "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz",
- "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -5953,8 +5153,6 @@
},
"node_modules/es-define-property": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
- "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -5962,8 +5160,6 @@
},
"node_modules/es-errors": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
- "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -5971,15 +5167,11 @@
},
"node_modules/es-module-lexer": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz",
- "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==",
"dev": true,
"license": "MIT"
},
"node_modules/es-object-atoms": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
- "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0"
@@ -5990,8 +5182,6 @@
},
"node_modules/es-set-tostringtag": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
- "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -6005,8 +5195,6 @@
},
"node_modules/es-shim-unscopables": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz",
- "integrity": "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6018,8 +5206,6 @@
},
"node_modules/es-to-primitive": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
- "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6036,15 +5222,11 @@
},
"node_modules/es6-error": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz",
- "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==",
"dev": true,
"license": "MIT"
},
"node_modules/escalade": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
- "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6053,15 +5235,11 @@
},
"node_modules/escape-html": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
- "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
"dev": true,
"license": "MIT"
},
"node_modules/escape-string-regexp": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
- "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6070,9 +5248,6 @@
},
"node_modules/eslint": {
"version": "8.57.1",
- "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz",
- "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==",
- "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6127,8 +5302,6 @@
},
"node_modules/eslint-config-standard": {
"version": "13.0.1",
- "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-13.0.1.tgz",
- "integrity": "sha512-zLKp4QOgq6JFgRm1dDCVv1Iu0P5uZ4v5Wa4DTOkg2RFMxdCX/9Qf7lz9ezRj2dBRa955cWQF/O/LWEiYWAHbTw==",
"dev": true,
"license": "MIT",
"peerDependencies": {
@@ -6141,8 +5314,6 @@
},
"node_modules/eslint-import-resolver-node": {
"version": "0.3.9",
- "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz",
- "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6153,8 +5324,6 @@
},
"node_modules/eslint-import-resolver-node/node_modules/debug": {
"version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6163,8 +5332,6 @@
},
"node_modules/eslint-module-utils": {
"version": "2.12.0",
- "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz",
- "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6181,8 +5348,6 @@
},
"node_modules/eslint-module-utils/node_modules/debug": {
"version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6191,8 +5356,6 @@
},
"node_modules/eslint-plugin-es": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz",
- "integrity": "sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6208,8 +5371,6 @@
},
"node_modules/eslint-plugin-import": {
"version": "2.31.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz",
- "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6242,8 +5403,6 @@
},
"node_modules/eslint-plugin-import/node_modules/debug": {
"version": "3.2.7",
- "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
- "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6252,8 +5411,6 @@
},
"node_modules/eslint-plugin-import/node_modules/doctrine": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
- "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -6265,8 +5422,6 @@
},
"node_modules/eslint-plugin-node": {
"version": "9.2.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-9.2.0.tgz",
- "integrity": "sha512-2abNmzAH/JpxI4gEOwd6K8wZIodK3BmHbTxz4s79OIYwwIt2gkpEXlAouJXu4H1c9ySTnRso0tsuthSOZbUMlA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6286,8 +5441,6 @@
},
"node_modules/eslint-plugin-promise": {
"version": "4.3.1",
- "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-4.3.1.tgz",
- "integrity": "sha512-bY2sGqyptzFBDLh/GMbAxfdJC+b0f23ME63FOE4+Jao0oZ3E1LEwFtWJX/1pGMJLiTtrSSern2CRM/g+dfc0eQ==",
"dev": true,
"license": "ISC",
"engines": {
@@ -6296,8 +5449,6 @@
},
"node_modules/eslint-plugin-standard": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.1.0.tgz",
- "integrity": "sha512-ZL7+QRixjTR6/528YNGyDotyffm5OQst/sGxKDwGb9Uqs4In5Egi4+jbobhqJoyoCM6/7v/1A5fhQ7ScMtDjaQ==",
"dev": true,
"funding": [
{
@@ -6320,8 +5471,6 @@
},
"node_modules/eslint-scope": {
"version": "7.2.2",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz",
- "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -6337,8 +5486,6 @@
},
"node_modules/eslint-utils": {
"version": "1.4.3",
- "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.3.tgz",
- "integrity": "sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6350,8 +5497,6 @@
},
"node_modules/eslint-utils/node_modules/eslint-visitor-keys": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz",
- "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -6360,8 +5505,6 @@
},
"node_modules/eslint-visitor-keys": {
"version": "3.4.3",
- "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
- "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -6373,8 +5516,6 @@
},
"node_modules/eslint/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6383,8 +5524,6 @@
},
"node_modules/eslint/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6399,8 +5538,6 @@
},
"node_modules/eslint/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6416,8 +5553,6 @@
},
"node_modules/eslint/node_modules/escape-string-regexp": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6429,8 +5564,6 @@
},
"node_modules/eslint/node_modules/glob-parent": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
- "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -6442,8 +5575,6 @@
},
"node_modules/eslint/node_modules/globals": {
"version": "13.24.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz",
- "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6458,8 +5589,6 @@
},
"node_modules/eslint/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6471,8 +5600,6 @@
},
"node_modules/eslint/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6484,8 +5611,6 @@
},
"node_modules/eslint/node_modules/type-fest": {
"version": "0.20.2",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
- "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -6497,8 +5622,6 @@
},
"node_modules/espree": {
"version": "9.6.1",
- "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
- "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -6515,8 +5638,6 @@
},
"node_modules/esprima": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
- "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
"dev": true,
"license": "BSD-2-Clause",
"bin": {
@@ -6529,8 +5650,6 @@
},
"node_modules/esquery": {
"version": "1.6.0",
- "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
- "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -6542,8 +5661,6 @@
},
"node_modules/esrecurse": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
- "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -6555,8 +5672,6 @@
},
"node_modules/estraverse": {
"version": "5.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
- "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -6565,8 +5680,6 @@
},
"node_modules/esutils": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
- "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -6575,8 +5688,6 @@
},
"node_modules/etag": {
"version": "1.8.1",
- "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
- "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6585,15 +5696,11 @@
},
"node_modules/eventemitter3": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz",
- "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==",
"dev": true,
"license": "MIT"
},
"node_modules/events": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz",
- "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6602,8 +5709,6 @@
},
"node_modules/execa": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
- "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6626,8 +5731,6 @@
},
"node_modules/exit": {
"version": "0.1.2",
- "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz",
- "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==",
"dev": true,
"engines": {
"node": ">= 0.8.0"
@@ -6635,8 +5738,6 @@
},
"node_modules/expect": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz",
- "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6652,8 +5753,6 @@
},
"node_modules/express": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/express/-/express-5.0.1.tgz",
- "integrity": "sha512-ORF7g6qGnD+YtUG9yx4DFoqCShNMmUKiXuT5oWMHiOvt/4WFbHC6yCwQMTSBMno7AqntNCAzzcnnjowRkTL9eQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6696,8 +5795,6 @@
},
"node_modules/express/node_modules/debug": {
"version": "4.3.6",
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz",
- "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6714,15 +5811,11 @@
},
"node_modules/express/node_modules/ms": {
"version": "2.1.2",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true,
"license": "MIT"
},
"node_modules/express/node_modules/qs": {
"version": "6.13.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz",
- "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -6737,29 +5830,21 @@
},
"node_modules/fast-deep-equal": {
"version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-json-stable-stringify": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
- "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-levenshtein": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
- "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
"dev": true,
"license": "MIT"
},
"node_modules/fast-uri": {
"version": "3.0.6",
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz",
- "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==",
"dev": true,
"funding": [
{
@@ -6775,8 +5860,6 @@
},
"node_modules/fastest-levenshtein": {
"version": "1.0.16",
- "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz",
- "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -6785,8 +5868,6 @@
},
"node_modules/fastq": {
"version": "1.19.1",
- "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz",
- "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -6795,8 +5876,6 @@
},
"node_modules/fb-watchman": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz",
- "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -6805,8 +5884,6 @@
},
"node_modules/file-entry-cache": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
- "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6818,8 +5895,6 @@
},
"node_modules/fill-range": {
"version": "7.1.1",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
- "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6831,8 +5906,6 @@
},
"node_modules/finalhandler": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-2.1.0.tgz",
- "integrity": "sha512-/t88Ty3d5JWQbWYgaOGCCYfXRwV1+be02WqYYlL6h0lEiUAMPM8o8qKGO01YIkOHzka2up08wvgYD0mDiI+q3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6849,8 +5922,6 @@
},
"node_modules/find-cache-dir": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz",
- "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6864,8 +5935,6 @@
},
"node_modules/find-up": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
- "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6881,8 +5950,6 @@
},
"node_modules/flat": {
"version": "5.0.2",
- "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
- "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
"dev": true,
"license": "BSD-3-Clause",
"bin": {
@@ -6891,8 +5958,6 @@
},
"node_modules/flat-cache": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz",
- "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6906,9 +5971,6 @@
},
"node_modules/flat-cache/node_modules/rimraf": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -6923,15 +5985,11 @@
},
"node_modules/flatted": {
"version": "3.3.3",
- "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
- "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
"dev": true,
"license": "ISC"
},
"node_modules/follow-redirects": {
"version": "1.15.9",
- "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz",
- "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==",
"funding": [
{
"type": "individual",
@@ -6950,8 +6008,6 @@
},
"node_modules/for-each": {
"version": "0.3.5",
- "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
- "integrity": "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -6966,8 +6022,6 @@
},
"node_modules/foreground-child": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz",
- "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -6980,8 +6034,6 @@
},
"node_modules/form-data": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz",
- "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==",
"license": "MIT",
"dependencies": {
"asynckit": "^0.4.0",
@@ -6995,8 +6047,6 @@
},
"node_modules/form-data/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"license": "MIT",
"engines": {
"node": ">= 0.6"
@@ -7004,8 +6054,6 @@
},
"node_modules/form-data/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"license": "MIT",
"dependencies": {
"mime-db": "1.52.0"
@@ -7016,8 +6064,6 @@
},
"node_modules/forwarded": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
- "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7026,8 +6072,6 @@
},
"node_modules/fresh": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz",
- "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7036,8 +6080,6 @@
},
"node_modules/fromentries": {
"version": "1.3.2",
- "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz",
- "integrity": "sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==",
"dev": true,
"funding": [
{
@@ -7057,8 +6099,6 @@
},
"node_modules/fs-extra": {
"version": "10.1.0",
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
- "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7072,44 +6112,21 @@
},
"node_modules/fs-readdir-recursive": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz",
- "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==",
"dev": true,
"license": "MIT"
},
"node_modules/fs.realpath": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
- "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==",
"dev": true,
"license": "ISC"
},
- "node_modules/fsevents": {
- "version": "2.3.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
- "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
- "dev": true,
- "hasInstallScript": true,
- "license": "MIT",
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
- }
- },
"node_modules/fsu": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/fsu/-/fsu-1.1.1.tgz",
- "integrity": "sha512-xQVsnjJ/5pQtcKh+KjUoZGzVWn4uNkchxTF6Lwjr4Gf7nQr8fmUfhKJ62zE77+xQg9xnxi5KUps7XGs+VC986A==",
"dev": true,
"license": "MIT"
},
"node_modules/function-bind": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
- "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/ljharb"
@@ -7117,8 +6134,6 @@
},
"node_modules/function.prototype.name": {
"version": "1.1.8",
- "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
- "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7138,8 +6153,6 @@
},
"node_modules/functions-have-names": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
- "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
"dev": true,
"license": "MIT",
"funding": {
@@ -7148,8 +6161,6 @@
},
"node_modules/gensync": {
"version": "1.0.0-beta.2",
- "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
- "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7158,8 +6169,6 @@
},
"node_modules/get-caller-file": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
- "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
"dev": true,
"license": "ISC",
"engines": {
@@ -7168,8 +6177,6 @@
},
"node_modules/get-func-name": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz",
- "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7178,8 +6185,6 @@
},
"node_modules/get-intrinsic": {
"version": "1.3.0",
- "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
- "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
"license": "MIT",
"dependencies": {
"call-bind-apply-helpers": "^1.0.2",
@@ -7202,8 +6207,6 @@
},
"node_modules/get-package-type": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz",
- "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7212,8 +6215,6 @@
},
"node_modules/get-proto": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
- "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
"license": "MIT",
"dependencies": {
"dunder-proto": "^1.0.1",
@@ -7225,8 +6226,6 @@
},
"node_modules/get-stream": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
- "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7238,8 +6237,6 @@
},
"node_modules/get-symbol-description": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
- "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7256,9 +6253,6 @@
},
"node_modules/glob": {
"version": "7.2.3",
- "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
- "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
- "deprecated": "Glob versions prior to v9 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7278,8 +6272,6 @@
},
"node_modules/glob-parent": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
- "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7291,15 +6283,11 @@
},
"node_modules/glob-to-regexp": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
- "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==",
"dev": true,
"license": "BSD-2-Clause"
},
"node_modules/globals": {
"version": "11.12.0",
- "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
- "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7308,8 +6296,6 @@
},
"node_modules/globalthis": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
- "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7325,8 +6311,6 @@
},
"node_modules/globby": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz",
- "integrity": "sha512-KVbFv2TQtbzCoxAnfD6JcHZTYCzyliEaaeM/gH8qQdkKr5s0OP9scEgvdcngyk7AVdY6YVW/TJHd+lQ/Df3Daw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7342,8 +6326,6 @@
},
"node_modules/globby/node_modules/pify": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
- "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7352,8 +6334,6 @@
},
"node_modules/gopd": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
- "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -7364,22 +6344,16 @@
},
"node_modules/graceful-fs": {
"version": "4.2.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"dev": true,
"license": "ISC"
},
"node_modules/graphemer": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
- "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
"dev": true,
"license": "MIT"
},
"node_modules/has-ansi": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
- "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7391,8 +6365,6 @@
},
"node_modules/has-bigints": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
- "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7404,8 +6376,6 @@
},
"node_modules/has-flag": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
- "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7414,8 +6384,6 @@
},
"node_modules/has-property-descriptors": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
- "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7427,8 +6395,6 @@
},
"node_modules/has-proto": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
- "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7443,8 +6409,6 @@
},
"node_modules/has-symbols": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
- "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -7455,8 +6419,6 @@
},
"node_modules/has-tostringtag": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
- "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
"license": "MIT",
"dependencies": {
"has-symbols": "^1.0.3"
@@ -7470,8 +6432,6 @@
},
"node_modules/hasha": {
"version": "5.2.2",
- "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz",
- "integrity": "sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7487,8 +6447,6 @@
},
"node_modules/hasha/node_modules/type-fest": {
"version": "0.8.1",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
- "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -7497,8 +6455,6 @@
},
"node_modules/hasown": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
- "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
"license": "MIT",
"dependencies": {
"function-bind": "^1.1.2"
@@ -7509,8 +6465,6 @@
},
"node_modules/he": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
- "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
"dev": true,
"license": "MIT",
"bin": {
@@ -7519,15 +6473,11 @@
},
"node_modules/html-escaper": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz",
- "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==",
"dev": true,
"license": "MIT"
},
"node_modules/http-errors": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
- "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7543,8 +6493,6 @@
},
"node_modules/human-signals": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
- "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
"dev": true,
"license": "Apache-2.0",
"engines": {
@@ -7553,8 +6501,6 @@
},
"node_modules/iconv-lite": {
"version": "0.5.2",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.5.2.tgz",
- "integrity": "sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7566,8 +6512,6 @@
},
"node_modules/ignore": {
"version": "5.3.2",
- "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
- "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7576,8 +6520,6 @@
},
"node_modules/import-fresh": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
- "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7593,8 +6535,6 @@
},
"node_modules/import-local": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz",
- "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7613,8 +6553,6 @@
},
"node_modules/import-local/node_modules/find-up": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7627,8 +6565,6 @@
},
"node_modules/import-local/node_modules/locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7640,8 +6576,6 @@
},
"node_modules/import-local/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7656,8 +6590,6 @@
},
"node_modules/import-local/node_modules/p-locate": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7669,8 +6601,6 @@
},
"node_modules/import-local/node_modules/pkg-dir": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7682,8 +6612,6 @@
},
"node_modules/imurmurhash": {
"version": "0.1.4",
- "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
- "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7692,8 +6620,6 @@
},
"node_modules/indent-string": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz",
- "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7702,9 +6628,6 @@
},
"node_modules/inflight": {
"version": "1.0.6",
- "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
- "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
- "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -7714,15 +6637,11 @@
},
"node_modules/inherits": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
- "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
"dev": true,
"license": "ISC"
},
"node_modules/internal-slot": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
- "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7736,8 +6655,6 @@
},
"node_modules/interpret": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz",
- "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7746,8 +6663,6 @@
},
"node_modules/invariant": {
"version": "2.2.4",
- "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
- "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7756,8 +6671,6 @@
},
"node_modules/ipaddr.js": {
"version": "1.9.1",
- "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
- "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7766,8 +6679,6 @@
},
"node_modules/is-arguments": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.2.0.tgz",
- "integrity": "sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7783,8 +6694,6 @@
},
"node_modules/is-array-buffer": {
"version": "3.0.5",
- "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
- "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7801,15 +6710,11 @@
},
"node_modules/is-arrayish": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz",
- "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==",
"dev": true,
"license": "MIT"
},
"node_modules/is-async-function": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz",
- "integrity": "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7828,8 +6733,6 @@
},
"node_modules/is-bigint": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
- "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7844,8 +6747,6 @@
},
"node_modules/is-binary-path": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
- "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7857,8 +6758,6 @@
},
"node_modules/is-boolean-object": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz",
- "integrity": "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7874,8 +6773,6 @@
},
"node_modules/is-buffer": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz",
- "integrity": "sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==",
"dev": true,
"funding": [
{
@@ -7898,8 +6795,6 @@
},
"node_modules/is-callable": {
"version": "1.2.7",
- "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
- "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7911,8 +6806,6 @@
},
"node_modules/is-core-module": {
"version": "2.16.1",
- "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
- "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7927,8 +6820,6 @@
},
"node_modules/is-data-view": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
- "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7945,8 +6836,6 @@
},
"node_modules/is-date-object": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
- "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7962,15 +6851,11 @@
},
"node_modules/is-electron": {
"version": "2.2.2",
- "resolved": "https://registry.npmjs.org/is-electron/-/is-electron-2.2.2.tgz",
- "integrity": "sha512-FO/Rhvz5tuw4MCWkpMzHFKWD2LsfHzIb7i6MdPYZ/KW7AlxawyLkqdy+jPZP1WubqEADE3O4FUENlJHDfQASRg==",
"dev": true,
"license": "MIT"
},
"node_modules/is-extglob": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
- "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -7979,8 +6864,6 @@
},
"node_modules/is-finalizationregistry": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
- "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -7995,8 +6878,6 @@
},
"node_modules/is-fullwidth-code-point": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
- "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8005,8 +6886,6 @@
},
"node_modules/is-generator-fn": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz",
- "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8015,8 +6894,6 @@
},
"node_modules/is-generator-function": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
- "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8034,8 +6911,6 @@
},
"node_modules/is-glob": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
- "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8047,8 +6922,6 @@
},
"node_modules/is-map": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
- "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8060,8 +6933,6 @@
},
"node_modules/is-number": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
- "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8070,8 +6941,6 @@
},
"node_modules/is-number-object": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
- "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8087,8 +6956,6 @@
},
"node_modules/is-path-cwd": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz",
- "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8097,8 +6964,6 @@
},
"node_modules/is-path-in-cwd": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz",
- "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8110,8 +6975,6 @@
},
"node_modules/is-path-in-cwd/node_modules/is-path-inside": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz",
- "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8123,8 +6986,6 @@
},
"node_modules/is-path-inside": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
- "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8133,8 +6994,6 @@
},
"node_modules/is-plain-obj": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
- "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8143,8 +7002,6 @@
},
"node_modules/is-plain-object": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
- "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8156,15 +7013,11 @@
},
"node_modules/is-promise": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz",
- "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==",
"dev": true,
"license": "MIT"
},
"node_modules/is-regex": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
- "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8182,8 +7035,6 @@
},
"node_modules/is-set": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
- "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8195,8 +7046,6 @@
},
"node_modules/is-shared-array-buffer": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
- "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8211,8 +7060,6 @@
},
"node_modules/is-stream": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
- "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8224,8 +7071,6 @@
},
"node_modules/is-string": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
- "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8241,8 +7086,6 @@
},
"node_modules/is-symbol": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
- "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8259,8 +7102,6 @@
},
"node_modules/is-typed-array": {
"version": "1.1.15",
- "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
- "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8275,15 +7116,11 @@
},
"node_modules/is-typedarray": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
- "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==",
"dev": true,
"license": "MIT"
},
"node_modules/is-unicode-supported": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
- "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8295,8 +7132,6 @@
},
"node_modules/is-weakmap": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
- "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8308,8 +7143,6 @@
},
"node_modules/is-weakref": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz",
- "integrity": "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8324,8 +7157,6 @@
},
"node_modules/is-weakset": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
- "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8341,8 +7172,6 @@
},
"node_modules/is-windows": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
- "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8351,22 +7180,16 @@
},
"node_modules/isarray": {
"version": "2.0.5",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
- "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
"dev": true,
"license": "MIT"
},
"node_modules/isexe": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
- "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
"dev": true,
"license": "ISC"
},
"node_modules/isobject": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
- "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8375,8 +7198,6 @@
},
"node_modules/istanbul-lib-coverage": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz",
- "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -8385,8 +7206,6 @@
},
"node_modules/istanbul-lib-hook": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz",
- "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -8398,8 +7217,6 @@
},
"node_modules/istanbul-lib-instrument": {
"version": "5.2.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz",
- "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -8415,8 +7232,6 @@
},
"node_modules/istanbul-lib-processinfo": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.3.tgz",
- "integrity": "sha512-NkwHbo3E00oybX6NGJi6ar0B29vxyvNwoC7eJ4G4Yq28UfY758Hgn/heV8VRFhevPED4LXfFz0DQ8z/0kw9zMg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -8433,8 +7248,6 @@
},
"node_modules/istanbul-lib-processinfo/node_modules/p-map": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
- "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8446,9 +7259,6 @@
},
"node_modules/istanbul-lib-processinfo/node_modules/rimraf": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -8463,8 +7273,6 @@
},
"node_modules/istanbul-lib-report": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz",
- "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -8478,8 +7286,6 @@
},
"node_modules/istanbul-lib-report/node_modules/make-dir": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz",
- "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8494,8 +7300,6 @@
},
"node_modules/istanbul-lib-report/node_modules/semver": {
"version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -8507,8 +7311,6 @@
},
"node_modules/istanbul-lib-report/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8520,8 +7322,6 @@
},
"node_modules/istanbul-lib-source-maps": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz",
- "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -8535,8 +7335,6 @@
},
"node_modules/istanbul-reports": {
"version": "3.1.7",
- "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz",
- "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -8549,8 +7347,6 @@
},
"node_modules/jackspeak": {
"version": "3.4.3",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz",
- "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -8565,8 +7361,6 @@
},
"node_modules/jest": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz",
- "integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8592,8 +7386,6 @@
},
"node_modules/jest-changed-files": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz",
- "integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8606,8 +7398,6 @@
},
"node_modules/jest-circus": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz",
- "integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8637,8 +7427,6 @@
},
"node_modules/jest-circus/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8653,8 +7441,6 @@
},
"node_modules/jest-circus/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8670,8 +7456,6 @@
},
"node_modules/jest-circus/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8680,8 +7464,6 @@
},
"node_modules/jest-circus/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8693,8 +7475,6 @@
},
"node_modules/jest-cli": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz",
- "integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8728,8 +7508,6 @@
},
"node_modules/jest-cli/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8744,8 +7522,6 @@
},
"node_modules/jest-cli/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8761,8 +7537,6 @@
},
"node_modules/jest-cli/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8774,8 +7548,6 @@
},
"node_modules/jest-config": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz",
- "integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8820,8 +7592,6 @@
},
"node_modules/jest-config/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8836,8 +7606,6 @@
},
"node_modules/jest-config/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8853,8 +7621,6 @@
},
"node_modules/jest-config/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -8863,8 +7629,6 @@
},
"node_modules/jest-config/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8876,8 +7640,6 @@
},
"node_modules/jest-diff": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz",
- "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8892,8 +7654,6 @@
},
"node_modules/jest-diff/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8908,8 +7668,6 @@
},
"node_modules/jest-diff/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8925,8 +7683,6 @@
},
"node_modules/jest-diff/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8938,8 +7694,6 @@
},
"node_modules/jest-docblock": {
"version": "28.1.1",
- "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz",
- "integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8951,8 +7705,6 @@
},
"node_modules/jest-each": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz",
- "integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8968,8 +7720,6 @@
},
"node_modules/jest-each/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -8984,8 +7734,6 @@
},
"node_modules/jest-each/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9001,8 +7749,6 @@
},
"node_modules/jest-each/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9014,8 +7760,6 @@
},
"node_modules/jest-environment-node": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz",
- "integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9032,8 +7776,6 @@
},
"node_modules/jest-get-type": {
"version": "28.0.2",
- "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz",
- "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9042,8 +7784,6 @@
},
"node_modules/jest-haste-map": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz",
- "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9068,8 +7808,6 @@
},
"node_modules/jest-leak-detector": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz",
- "integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9082,8 +7820,6 @@
},
"node_modules/jest-matcher-utils": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz",
- "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9098,8 +7834,6 @@
},
"node_modules/jest-matcher-utils/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9114,8 +7848,6 @@
},
"node_modules/jest-matcher-utils/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9131,8 +7863,6 @@
},
"node_modules/jest-matcher-utils/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9144,8 +7874,6 @@
},
"node_modules/jest-message-util": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz",
- "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9165,8 +7893,6 @@
},
"node_modules/jest-message-util/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9181,8 +7907,6 @@
},
"node_modules/jest-message-util/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9198,8 +7922,6 @@
},
"node_modules/jest-message-util/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9208,8 +7930,6 @@
},
"node_modules/jest-message-util/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9221,8 +7941,6 @@
},
"node_modules/jest-mock": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz",
- "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9235,8 +7953,6 @@
},
"node_modules/jest-pnp-resolver": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz",
- "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9253,8 +7969,6 @@
},
"node_modules/jest-regex-util": {
"version": "28.0.2",
- "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz",
- "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9263,8 +7977,6 @@
},
"node_modules/jest-resolve": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz",
- "integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9284,8 +7996,6 @@
},
"node_modules/jest-resolve-dependencies": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz",
- "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9298,8 +8008,6 @@
},
"node_modules/jest-resolve/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9314,8 +8022,6 @@
},
"node_modules/jest-resolve/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9331,8 +8037,6 @@
},
"node_modules/jest-resolve/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9341,8 +8045,6 @@
},
"node_modules/jest-resolve/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9354,8 +8056,6 @@
},
"node_modules/jest-runner": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz",
- "integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9387,8 +8087,6 @@
},
"node_modules/jest-runner/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9403,8 +8101,6 @@
},
"node_modules/jest-runner/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9420,8 +8116,6 @@
},
"node_modules/jest-runner/node_modules/source-map-support": {
"version": "0.5.13",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz",
- "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9431,8 +8125,6 @@
},
"node_modules/jest-runner/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9444,8 +8136,6 @@
},
"node_modules/jest-runtime": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz",
- "integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9478,8 +8168,6 @@
},
"node_modules/jest-runtime/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9494,8 +8182,6 @@
},
"node_modules/jest-runtime/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9511,8 +8197,6 @@
},
"node_modules/jest-runtime/node_modules/slash": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
- "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9521,8 +8205,6 @@
},
"node_modules/jest-runtime/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9534,8 +8216,6 @@
},
"node_modules/jest-snapshot": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz",
- "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9569,8 +8249,6 @@
},
"node_modules/jest-snapshot/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9585,8 +8263,6 @@
},
"node_modules/jest-snapshot/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9602,8 +8278,6 @@
},
"node_modules/jest-snapshot/node_modules/semver": {
"version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -9615,8 +8289,6 @@
},
"node_modules/jest-snapshot/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9628,8 +8300,6 @@
},
"node_modules/jest-util": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz",
- "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9646,8 +8316,6 @@
},
"node_modules/jest-util/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9662,8 +8330,6 @@
},
"node_modules/jest-util/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9679,8 +8345,6 @@
},
"node_modules/jest-util/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9692,8 +8356,6 @@
},
"node_modules/jest-validate": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz",
- "integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9710,8 +8372,6 @@
},
"node_modules/jest-validate/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9726,8 +8386,6 @@
},
"node_modules/jest-validate/node_modules/camelcase": {
"version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9739,8 +8397,6 @@
},
"node_modules/jest-validate/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9756,8 +8412,6 @@
},
"node_modules/jest-validate/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9769,8 +8423,6 @@
},
"node_modules/jest-watcher": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz",
- "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9789,8 +8441,6 @@
},
"node_modules/jest-watcher/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9805,8 +8455,6 @@
},
"node_modules/jest-watcher/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9822,8 +8470,6 @@
},
"node_modules/jest-watcher/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9835,8 +8481,6 @@
},
"node_modules/jest-worker": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz",
- "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9850,8 +8494,6 @@
},
"node_modules/jest-worker/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9866,15 +8508,11 @@
},
"node_modules/js-tokens": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
- "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"dev": true,
"license": "MIT"
},
"node_modules/js-yaml": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -9886,8 +8524,6 @@
},
"node_modules/js2xmlparser": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-4.0.2.tgz",
- "integrity": "sha512-6n4D8gLlLf1n5mNLQPRfViYzu9RATblzPEtm1SthMX1Pjao0r9YI9nw7ZIfRxQMERS87mcswrg+r/OYrPRX6jA==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -9896,8 +8532,6 @@
},
"node_modules/jsdoc": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/jsdoc/-/jsdoc-4.0.4.tgz",
- "integrity": "sha512-zeFezwyXeG4syyYHbvh1A967IAqq/67yXtXvuL5wnqCkFZe8I0vKfm+EO+YEvLguo6w9CDUbrAXVtJSHh2E8rw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -9926,8 +8560,6 @@
},
"node_modules/jsdoc/node_modules/escape-string-regexp": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -9936,8 +8568,6 @@
},
"node_modules/jsesc": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
- "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
"dev": true,
"license": "MIT",
"bin": {
@@ -9949,43 +8579,31 @@
},
"node_modules/json-buffer": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
- "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
"dev": true,
"license": "MIT"
},
"node_modules/json-parse-even-better-errors": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
- "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==",
"dev": true,
"license": "MIT"
},
"node_modules/json-schema-traverse": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
- "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
"dev": true,
"license": "MIT"
},
"node_modules/json-stable-stringify-without-jsonify": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
- "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
"dev": true,
"license": "MIT"
},
"node_modules/json-stringify-safe": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
- "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==",
"dev": true,
"license": "ISC"
},
"node_modules/json5": {
"version": "2.2.3",
- "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
- "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -9997,8 +8615,6 @@
},
"node_modules/jsonfile": {
"version": "6.1.0",
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10010,8 +8626,6 @@
},
"node_modules/jsonwebtoken": {
"version": "9.0.2",
- "resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.2.tgz",
- "integrity": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10033,8 +8647,6 @@
},
"node_modules/jsonwebtoken/node_modules/semver": {
"version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -10046,15 +8658,11 @@
},
"node_modules/just-extend": {
"version": "4.2.1",
- "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz",
- "integrity": "sha512-g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==",
"dev": true,
"license": "MIT"
},
"node_modules/jwa": {
"version": "1.4.1",
- "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz",
- "integrity": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10065,8 +8673,6 @@
},
"node_modules/jws": {
"version": "3.2.2",
- "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz",
- "integrity": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10076,8 +8682,6 @@
},
"node_modules/keyv": {
"version": "4.5.4",
- "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
- "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10086,8 +8690,6 @@
},
"node_modules/kind-of": {
"version": "6.0.3",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
- "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10096,8 +8698,6 @@
},
"node_modules/klaw": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/klaw/-/klaw-3.0.0.tgz",
- "integrity": "sha512-0Fo5oir+O9jnXu5EefYbVK+mHMBeEVEy2cmctR1O1NECcCkPRreJKrS6Qt/j3KC2C148Dfo9i3pCmCMsdqGr0g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10106,8 +8706,6 @@
},
"node_modules/kleur": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz",
- "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10116,8 +8714,6 @@
},
"node_modules/leven": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz",
- "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10126,8 +8722,6 @@
},
"node_modules/levn": {
"version": "0.4.1",
- "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
- "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10140,15 +8734,11 @@
},
"node_modules/lines-and-columns": {
"version": "1.2.4",
- "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
- "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==",
"dev": true,
"license": "MIT"
},
"node_modules/linkify-it": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
- "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10157,8 +8747,6 @@
},
"node_modules/loader-runner": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz",
- "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10167,8 +8755,6 @@
},
"node_modules/loader-utils": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz",
- "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10182,8 +8768,6 @@
},
"node_modules/locate-path": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
- "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10198,112 +8782,80 @@
},
"node_modules/lodash": {
"version": "4.17.21",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
- "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
"license": "MIT"
},
"node_modules/lodash.debounce": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
- "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.flattendeep": {
"version": "4.4.0",
- "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz",
- "integrity": "sha512-uHaJFihxmJcEX3kT4I23ABqKKalJ/zDrDg0lsFtc1h+3uw49SIJ5beyhx5ExVRti3AvKoOJngIj7xz3oylPdWQ==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.includes": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
- "integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isboolean": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
- "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isempty": {
"version": "4.4.0",
- "resolved": "https://registry.npmjs.org/lodash.isempty/-/lodash.isempty-4.4.0.tgz",
- "integrity": "sha512-oKMuF3xEeqDltrGMfDxAPGIVMSSRv8tbRSODbrs4KGsRRLEhrW8N8Rd4DRgB2+621hY8A8XwwrTVhXWpxFvMzg==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isfunction": {
"version": "3.0.9",
- "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz",
- "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isinteger": {
"version": "4.0.4",
- "resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
- "integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isnumber": {
"version": "3.0.3",
- "resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
- "integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isobject": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-3.0.2.tgz",
- "integrity": "sha512-3/Qptq2vr7WeJbB4KHUSKlq8Pl7ASXi3UG6CMbBm8WRtXi8+GHm7mKaU3urfpSEzWe2wCIChs6/sdocUsTKJiA==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isplainobject": {
"version": "4.0.6",
- "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
- "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.isstring": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
- "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.memoize": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz",
- "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.merge": {
"version": "4.6.2",
- "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
- "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
"dev": true,
"license": "MIT"
},
"node_modules/lodash.once": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
- "integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
"dev": true,
"license": "MIT"
},
"node_modules/log-symbols": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
- "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10319,8 +8871,6 @@
},
"node_modules/log-symbols/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10335,8 +8885,6 @@
},
"node_modules/log-symbols/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10352,8 +8900,6 @@
},
"node_modules/log-symbols/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10365,15 +8911,11 @@
},
"node_modules/lolex": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/lolex/-/lolex-4.2.0.tgz",
- "integrity": "sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/loose-envify": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
- "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10385,8 +8927,6 @@
},
"node_modules/loupe": {
"version": "2.3.7",
- "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz",
- "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10395,8 +8935,6 @@
},
"node_modules/lru-cache": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
- "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10405,8 +8943,6 @@
},
"node_modules/make-dir": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz",
- "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10419,8 +8955,6 @@
},
"node_modules/make-dir/node_modules/semver": {
"version": "5.7.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
- "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true,
"license": "ISC",
"bin": {
@@ -10429,15 +8963,11 @@
},
"node_modules/make-error": {
"version": "1.3.6",
- "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
- "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
"dev": true,
"license": "ISC"
},
"node_modules/makeerror": {
"version": "1.0.12",
- "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz",
- "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -10446,8 +8976,6 @@
},
"node_modules/markdown-it": {
"version": "14.1.0",
- "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz",
- "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10464,8 +8992,6 @@
},
"node_modules/markdown-it-anchor": {
"version": "8.6.7",
- "resolved": "https://registry.npmjs.org/markdown-it-anchor/-/markdown-it-anchor-8.6.7.tgz",
- "integrity": "sha512-FlCHFwNnutLgVTflOYHPW2pPcl2AACqVzExlkGQNsi4CJgqOHN7YTgDd4LuhgN1BFO3TS0vLAruV1Td6dwWPJA==",
"dev": true,
"license": "Unlicense",
"peerDependencies": {
@@ -10475,8 +9001,6 @@
},
"node_modules/marked": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
- "integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
"dev": true,
"license": "MIT",
"bin": {
@@ -10488,8 +9012,6 @@
},
"node_modules/math-intrinsics": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
- "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -10497,15 +9019,11 @@
},
"node_modules/mdurl": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
- "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
"dev": true,
"license": "MIT"
},
"node_modules/media-typer": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.0.tgz",
- "integrity": "sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10514,8 +9032,6 @@
},
"node_modules/merge-descriptors": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-2.0.0.tgz",
- "integrity": "sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10527,15 +9043,11 @@
},
"node_modules/merge-stream": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
- "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==",
"dev": true,
"license": "MIT"
},
"node_modules/methods": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
- "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10544,8 +9056,6 @@
},
"node_modules/micromatch": {
"version": "4.0.8",
- "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
- "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10558,8 +9068,6 @@
},
"node_modules/mime-db": {
"version": "1.53.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.53.0.tgz",
- "integrity": "sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10568,8 +9076,6 @@
},
"node_modules/mime-types": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.0.tgz",
- "integrity": "sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10581,8 +9087,6 @@
},
"node_modules/mimic-fn": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
- "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10591,8 +9095,6 @@
},
"node_modules/minimatch": {
"version": "3.1.2",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
- "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10604,8 +9106,6 @@
},
"node_modules/minimist": {
"version": "1.2.8",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
- "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
"dev": true,
"license": "MIT",
"funding": {
@@ -10614,8 +9114,6 @@
},
"node_modules/minipass": {
"version": "7.1.2",
- "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
- "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
"dev": true,
"license": "ISC",
"engines": {
@@ -10624,8 +9122,6 @@
},
"node_modules/mkdirp": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
- "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==",
"dev": true,
"license": "MIT",
"bin": {
@@ -10637,8 +9133,6 @@
},
"node_modules/mocha": {
"version": "11.1.0",
- "resolved": "https://registry.npmjs.org/mocha/-/mocha-11.1.0.tgz",
- "integrity": "sha512-8uJR5RTC2NgpY3GrYcgpZrsEd9zKbPDpob1RezyR2upGHRQtHWofmzTMzTMSV6dru3tj5Ukt0+Vnq1qhFEEwAg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10673,8 +9167,6 @@
},
"node_modules/mocha-html-reporter": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/mocha-html-reporter/-/mocha-html-reporter-0.0.1.tgz",
- "integrity": "sha512-AqkAOBOm5/V9arNsb69H+5NhFKM8w/M00882czB9S07dc/eWhodBuGUcp6ZbZBapKZ+OY8YVv7+aAIWUuSeEoQ==",
"dev": true,
"engines": {
"node": ">= 0.6.0"
@@ -10682,8 +9174,6 @@
},
"node_modules/mocha/node_modules/brace-expansion": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10692,8 +9182,6 @@
},
"node_modules/mocha/node_modules/escape-string-regexp": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
- "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10705,8 +9193,6 @@
},
"node_modules/mocha/node_modules/foreground-child": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
- "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10722,8 +9208,6 @@
},
"node_modules/mocha/node_modules/glob": {
"version": "10.4.5",
- "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz",
- "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10743,8 +9227,6 @@
},
"node_modules/mocha/node_modules/glob/node_modules/minimatch": {
"version": "9.0.5",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
- "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10759,8 +9241,6 @@
},
"node_modules/mocha/node_modules/minimatch": {
"version": "5.1.6",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz",
- "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -10772,8 +9252,6 @@
},
"node_modules/mocha/node_modules/signal-exit": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"dev": true,
"license": "ISC",
"engines": {
@@ -10785,8 +9263,6 @@
},
"node_modules/mocha/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10801,8 +9277,6 @@
},
"node_modules/mochawesome": {
"version": "7.1.3",
- "resolved": "https://registry.npmjs.org/mochawesome/-/mochawesome-7.1.3.tgz",
- "integrity": "sha512-Vkb3jR5GZ1cXohMQQ73H3cZz7RoxGjjUo0G5hu0jLaW+0FdUxUwg3Cj29bqQdh0rFcnyV06pWmqmi5eBPnEuNQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10823,8 +9297,6 @@
},
"node_modules/mochawesome-report-generator": {
"version": "6.2.0",
- "resolved": "https://registry.npmjs.org/mochawesome-report-generator/-/mochawesome-report-generator-6.2.0.tgz",
- "integrity": "sha512-Ghw8JhQFizF0Vjbtp9B0i//+BOkV5OWcQCPpbO0NGOoxV33o+gKDYU0Pr2pGxkIHnqZ+g5mYiXF7GMNgAcDpSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10847,8 +9319,6 @@
},
"node_modules/mochawesome-report-generator/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10863,8 +9333,6 @@
},
"node_modules/mochawesome-report-generator/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10880,8 +9348,6 @@
},
"node_modules/mochawesome-report-generator/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10893,8 +9359,6 @@
},
"node_modules/mochawesome/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10903,8 +9367,6 @@
},
"node_modules/mochawesome/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10919,8 +9381,6 @@
},
"node_modules/mochawesome/node_modules/chalk": {
"version": "4.1.2",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
- "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10936,8 +9396,6 @@
},
"node_modules/mochawesome/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10949,8 +9407,6 @@
},
"node_modules/mochawesome/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10962,15 +9418,11 @@
},
"node_modules/ms": {
"version": "2.1.3",
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
- "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
"dev": true,
"license": "MIT"
},
"node_modules/multiparty": {
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/multiparty/-/multiparty-4.2.3.tgz",
- "integrity": "sha512-Ak6EUJZuhGS8hJ3c2fY6UW5MbkGUPMBEGd13djUzoY/BHqV/gTuFWtC6IuVA7A2+v3yjBS6c4or50xhzTQZImQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -10984,8 +9436,6 @@
},
"node_modules/multiparty/node_modules/depd": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
- "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -10994,8 +9444,6 @@
},
"node_modules/multiparty/node_modules/http-errors": {
"version": "1.8.1",
- "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz",
- "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11011,8 +9459,6 @@
},
"node_modules/multiparty/node_modules/statuses": {
"version": "1.5.0",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
- "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11021,15 +9467,11 @@
},
"node_modules/natural-compare": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
- "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
"dev": true,
"license": "MIT"
},
"node_modules/negotiator": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz",
- "integrity": "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11038,15 +9480,11 @@
},
"node_modules/neo-async": {
"version": "2.6.2",
- "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz",
- "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==",
"dev": true,
"license": "MIT"
},
"node_modules/nise": {
"version": "1.5.3",
- "resolved": "https://registry.npmjs.org/nise/-/nise-1.5.3.tgz",
- "integrity": "sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -11059,15 +9497,11 @@
},
"node_modules/nise/node_modules/isarray": {
"version": "0.0.1",
- "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz",
- "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==",
"dev": true,
"license": "MIT"
},
"node_modules/nise/node_modules/lolex": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz",
- "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -11076,8 +9510,6 @@
},
"node_modules/nise/node_modules/path-to-regexp": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.9.0.tgz",
- "integrity": "sha512-xIp7/apCFJuUHdDLWe8O1HIkb0kQrOMb/0u6FXQjemHn/ii5LrIzU6bdECnsiTF/GjZkMEKg1xdiZwNqDYlZ6g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11086,8 +9518,6 @@
},
"node_modules/nock": {
"version": "10.0.6",
- "resolved": "https://registry.npmjs.org/nock/-/nock-10.0.6.tgz",
- "integrity": "sha512-b47OWj1qf/LqSQYnmokNWM8D88KvUl2y7jT0567NB3ZBAZFz2bWp2PC81Xn7u8F2/vJxzkzNZybnemeFa7AZ2w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11107,8 +9537,6 @@
},
"node_modules/nock/node_modules/mkdirp": {
"version": "0.5.6",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
- "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11120,8 +9548,6 @@
},
"node_modules/nock/node_modules/semver": {
"version": "5.7.2",
- "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz",
- "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"dev": true,
"license": "ISC",
"bin": {
@@ -11130,15 +9556,11 @@
},
"node_modules/node-int64": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz",
- "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==",
"dev": true,
"license": "MIT"
},
"node_modules/node-preload": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz",
- "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11150,15 +9572,11 @@
},
"node_modules/node-releases": {
"version": "2.0.19",
- "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
- "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
"dev": true,
"license": "MIT"
},
"node_modules/normalize-path": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
- "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11167,8 +9585,6 @@
},
"node_modules/npm-run-path": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
- "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11180,8 +9596,6 @@
},
"node_modules/nyc": {
"version": "15.1.0",
- "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz",
- "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11222,8 +9636,6 @@
},
"node_modules/nyc/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11232,8 +9644,6 @@
},
"node_modules/nyc/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11248,8 +9658,6 @@
},
"node_modules/nyc/node_modules/cliui": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz",
- "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11260,15 +9668,11 @@
},
"node_modules/nyc/node_modules/convert-source-map": {
"version": "1.9.0",
- "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz",
- "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==",
"dev": true,
"license": "MIT"
},
"node_modules/nyc/node_modules/find-cache-dir": {
"version": "3.3.2",
- "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz",
- "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11285,8 +9689,6 @@
},
"node_modules/nyc/node_modules/find-up": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz",
- "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11299,8 +9701,6 @@
},
"node_modules/nyc/node_modules/istanbul-lib-instrument": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz",
- "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -11315,8 +9715,6 @@
},
"node_modules/nyc/node_modules/locate-path": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz",
- "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11328,8 +9726,6 @@
},
"node_modules/nyc/node_modules/make-dir": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11344,8 +9740,6 @@
},
"node_modules/nyc/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11360,8 +9754,6 @@
},
"node_modules/nyc/node_modules/p-locate": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz",
- "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11373,8 +9765,6 @@
},
"node_modules/nyc/node_modules/p-map": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz",
- "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11386,8 +9776,6 @@
},
"node_modules/nyc/node_modules/pkg-dir": {
"version": "4.2.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz",
- "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11399,8 +9787,6 @@
},
"node_modules/nyc/node_modules/resolve-from": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11409,9 +9795,6 @@
},
"node_modules/nyc/node_modules/rimraf": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11426,8 +9809,6 @@
},
"node_modules/nyc/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11439,8 +9820,6 @@
},
"node_modules/nyc/node_modules/wrap-ansi": {
"version": "6.2.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz",
- "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11454,15 +9833,11 @@
},
"node_modules/nyc/node_modules/y18n": {
"version": "4.0.3",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz",
- "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==",
"dev": true,
"license": "ISC"
},
"node_modules/nyc/node_modules/yargs": {
"version": "15.4.1",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz",
- "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11484,8 +9859,6 @@
},
"node_modules/nyc/node_modules/yargs-parser": {
"version": "18.1.3",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz",
- "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11498,8 +9871,6 @@
},
"node_modules/object-assign": {
"version": "4.1.1",
- "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
- "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11508,8 +9879,6 @@
},
"node_modules/object-inspect": {
"version": "1.13.4",
- "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
- "integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
"license": "MIT",
"engines": {
"node": ">= 0.4"
@@ -11520,8 +9889,6 @@
},
"node_modules/object-is": {
"version": "1.1.6",
- "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz",
- "integrity": "sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11537,8 +9904,6 @@
},
"node_modules/object-keys": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
- "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11547,8 +9912,6 @@
},
"node_modules/object.assign": {
"version": "4.1.7",
- "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
- "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11568,8 +9931,6 @@
},
"node_modules/object.fromentries": {
"version": "2.0.8",
- "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
- "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11587,8 +9948,6 @@
},
"node_modules/object.groupby": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz",
- "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11602,8 +9961,6 @@
},
"node_modules/object.values": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
- "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11621,8 +9978,6 @@
},
"node_modules/on-finished": {
"version": "2.4.1",
- "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
- "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11634,8 +9989,6 @@
},
"node_modules/once": {
"version": "1.4.0",
- "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
- "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11644,8 +9997,6 @@
},
"node_modules/onetime": {
"version": "5.1.2",
- "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
- "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11660,8 +10011,6 @@
},
"node_modules/opener": {
"version": "1.5.2",
- "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz",
- "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==",
"dev": true,
"license": "(WTFPL OR MIT)",
"bin": {
@@ -11670,8 +10019,6 @@
},
"node_modules/optionator": {
"version": "0.9.4",
- "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
- "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11688,15 +10035,11 @@
},
"node_modules/os-browserify": {
"version": "0.3.0",
- "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz",
- "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==",
"dev": true,
"license": "MIT"
},
"node_modules/own-keys": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
- "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11713,8 +10056,6 @@
},
"node_modules/p-finally": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz",
- "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11723,8 +10064,6 @@
},
"node_modules/p-limit": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
- "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11739,8 +10078,6 @@
},
"node_modules/p-locate": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
- "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11755,8 +10092,6 @@
},
"node_modules/p-map": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz",
- "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11765,8 +10100,6 @@
},
"node_modules/p-queue": {
"version": "6.6.2",
- "resolved": "https://registry.npmjs.org/p-queue/-/p-queue-6.6.2.tgz",
- "integrity": "sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11782,15 +10115,11 @@
},
"node_modules/p-queue/node_modules/eventemitter3": {
"version": "4.0.7",
- "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz",
- "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==",
"dev": true,
"license": "MIT"
},
"node_modules/p-retry": {
"version": "4.6.2",
- "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz",
- "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11803,8 +10132,6 @@
},
"node_modules/p-timeout": {
"version": "3.2.0",
- "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz",
- "integrity": "sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11816,8 +10143,6 @@
},
"node_modules/p-try": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz",
- "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11826,8 +10151,6 @@
},
"node_modules/package-hash": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz",
- "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -11842,15 +10165,11 @@
},
"node_modules/package-json-from-dist": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz",
- "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==",
"dev": true,
"license": "BlueOak-1.0.0"
},
"node_modules/parent-module": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
- "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11862,8 +10181,6 @@
},
"node_modules/parse-json": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz",
- "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -11881,8 +10198,6 @@
},
"node_modules/parseurl": {
"version": "1.3.3",
- "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
- "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11891,8 +10206,6 @@
},
"node_modules/path-exists": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
- "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11901,8 +10214,6 @@
},
"node_modules/path-is-absolute": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
- "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11911,15 +10222,11 @@
},
"node_modules/path-is-inside": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz",
- "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==",
"dev": true,
"license": "(WTFPL OR MIT)"
},
"node_modules/path-key": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
- "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11928,15 +10235,11 @@
},
"node_modules/path-parse": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
- "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
"dev": true,
"license": "MIT"
},
"node_modules/path-scurry": {
"version": "1.11.1",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz",
- "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -11952,15 +10255,11 @@
},
"node_modules/path-scurry/node_modules/lru-cache": {
"version": "10.4.3",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
- "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
"dev": true,
"license": "ISC"
},
"node_modules/path-to-regexp": {
"version": "8.2.0",
- "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-8.2.0.tgz",
- "integrity": "sha512-TdrF7fW9Rphjq4RjrW0Kp2AW0Ahwu9sRGTkS6bvDi0SCwZlEZYmcfDbEsTz8RVk0EHIS/Vd1bv3JhG+1xZuAyQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11969,8 +10268,6 @@
},
"node_modules/pathval": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz",
- "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11979,15 +10276,11 @@
},
"node_modules/picocolors": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
- "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
"dev": true,
"license": "ISC"
},
"node_modules/picomatch": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
- "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -11999,8 +10292,6 @@
},
"node_modules/pify": {
"version": "4.0.1",
- "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz",
- "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12009,8 +10300,6 @@
},
"node_modules/pinkie": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
- "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12019,8 +10308,6 @@
},
"node_modules/pinkie-promise": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
- "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12032,8 +10319,6 @@
},
"node_modules/pirates": {
"version": "4.0.6",
- "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
- "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12042,8 +10327,6 @@
},
"node_modules/pkg-dir": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
- "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12055,8 +10338,6 @@
},
"node_modules/pkg-dir/node_modules/find-up": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz",
- "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12068,8 +10349,6 @@
},
"node_modules/pkg-dir/node_modules/locate-path": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz",
- "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12082,8 +10361,6 @@
},
"node_modules/pkg-dir/node_modules/p-limit": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz",
- "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12098,8 +10375,6 @@
},
"node_modules/pkg-dir/node_modules/p-locate": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz",
- "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12111,8 +10386,6 @@
},
"node_modules/pkg-dir/node_modules/path-exists": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz",
- "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12121,8 +10394,6 @@
},
"node_modules/possible-typed-array-names": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz",
- "integrity": "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12131,8 +10402,6 @@
},
"node_modules/prelude-ls": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
- "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12141,8 +10410,6 @@
},
"node_modules/pretty-format": {
"version": "28.1.3",
- "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz",
- "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12157,8 +10424,6 @@
},
"node_modules/pretty-format/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12167,8 +10432,6 @@
},
"node_modules/pretty-format/node_modules/ansi-styles": {
"version": "5.2.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz",
- "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12180,8 +10443,6 @@
},
"node_modules/process-on-spawn": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.1.0.tgz",
- "integrity": "sha512-JOnOPQ/8TZgjs1JIH/m9ni7FfimjNa/PRx7y/Wb5qdItsnhO0jE4AT7fC0HjC28DUQWDr50dwSYZLdRMlqDq3Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12193,8 +10454,6 @@
},
"node_modules/prompts": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz",
- "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12207,8 +10466,6 @@
},
"node_modules/prop-types": {
"version": "15.8.1",
- "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
- "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12219,15 +10476,11 @@
},
"node_modules/prop-types/node_modules/react-is": {
"version": "16.13.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
- "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
"dev": true,
"license": "MIT"
},
"node_modules/propagate": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz",
- "integrity": "sha512-T/rqCJJaIPYObiLSmaDsIf4PGA7y+pkgYFHmwoXQyOHiDDSO1YCxcztNiRBmV4EZha4QIbID3vQIHkqKu5k0Xg==",
"dev": true,
"engines": [
"node >= 0.8.1"
@@ -12236,8 +10489,6 @@
},
"node_modules/proxy-addr": {
"version": "2.0.7",
- "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
- "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12250,14 +10501,10 @@
},
"node_modules/proxy-from-env": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
- "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
"license": "MIT"
},
"node_modules/punycode": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
- "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12266,8 +10513,6 @@
},
"node_modules/punycode.js": {
"version": "2.3.1",
- "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
- "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12276,8 +10521,6 @@
},
"node_modules/qs": {
"version": "6.14.0",
- "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz",
- "integrity": "sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==",
"license": "BSD-3-Clause",
"dependencies": {
"side-channel": "^1.1.0"
@@ -12291,8 +10534,6 @@
},
"node_modules/queue-microtask": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
- "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
"dev": true,
"funding": [
{
@@ -12312,8 +10553,6 @@
},
"node_modules/random-bytes": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz",
- "integrity": "sha512-iv7LhNVO047HzYR3InF6pUcUsPQiHTM1Qal51DcGSuZFBil1aBBWG5eHPNek7bvILMaYJ/8RU1e8w1AMdHmLQQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12322,8 +10561,6 @@
},
"node_modules/randombytes": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
- "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12332,8 +10569,6 @@
},
"node_modules/range-parser": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
- "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12342,8 +10577,6 @@
},
"node_modules/raw-body": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz",
- "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12358,8 +10591,6 @@
},
"node_modules/raw-body/node_modules/iconv-lite": {
"version": "0.6.3",
- "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
- "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12371,15 +10602,11 @@
},
"node_modules/react-is": {
"version": "18.3.1",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz",
- "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==",
"dev": true,
"license": "MIT"
},
"node_modules/readdirp": {
"version": "3.6.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
- "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12391,8 +10618,6 @@
},
"node_modules/rechoir": {
"version": "0.8.0",
- "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz",
- "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12404,8 +10629,6 @@
},
"node_modules/reflect.getprototypeof": {
"version": "1.0.10",
- "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
- "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12427,15 +10650,11 @@
},
"node_modules/regenerate": {
"version": "1.4.2",
- "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz",
- "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==",
"dev": true,
"license": "MIT"
},
"node_modules/regenerate-unicode-properties": {
"version": "10.2.0",
- "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz",
- "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12447,15 +10666,11 @@
},
"node_modules/regenerator-runtime": {
"version": "0.14.1",
- "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz",
- "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==",
"dev": true,
"license": "MIT"
},
"node_modules/regenerator-transform": {
"version": "0.15.2",
- "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz",
- "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12464,8 +10679,6 @@
},
"node_modules/regexp.prototype.flags": {
"version": "1.5.4",
- "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
- "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12485,8 +10698,6 @@
},
"node_modules/regexpp": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz",
- "integrity": "sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12495,8 +10706,6 @@
},
"node_modules/regexpu-core": {
"version": "6.2.0",
- "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz",
- "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12513,15 +10722,11 @@
},
"node_modules/regjsgen": {
"version": "0.8.0",
- "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz",
- "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==",
"dev": true,
"license": "MIT"
},
"node_modules/regjsparser": {
"version": "0.12.0",
- "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz",
- "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -12533,8 +10738,6 @@
},
"node_modules/regjsparser/node_modules/jsesc": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz",
- "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
"dev": true,
"license": "MIT",
"bin": {
@@ -12546,8 +10749,6 @@
},
"node_modules/release-zalgo": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz",
- "integrity": "sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12559,8 +10760,6 @@
},
"node_modules/require-directory": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
- "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12569,8 +10768,6 @@
},
"node_modules/require-from-string": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12579,15 +10776,11 @@
},
"node_modules/require-main-filename": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz",
- "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==",
"dev": true,
"license": "ISC"
},
"node_modules/requizzle": {
"version": "0.2.4",
- "resolved": "https://registry.npmjs.org/requizzle/-/requizzle-0.2.4.tgz",
- "integrity": "sha512-JRrFk1D4OQ4SqovXOgdav+K8EAhSB/LJZqCz8tbX0KObcdeM15Ss59ozWMBWmmINMagCwmqn4ZNryUGpBsl6Jw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12596,8 +10789,6 @@
},
"node_modules/resolve": {
"version": "1.22.10",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz",
- "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12617,8 +10808,6 @@
},
"node_modules/resolve-cwd": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz",
- "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12630,8 +10819,6 @@
},
"node_modules/resolve-cwd/node_modules/resolve-from": {
"version": "5.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz",
- "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12640,8 +10827,6 @@
},
"node_modules/resolve-from": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
- "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12650,8 +10835,6 @@
},
"node_modules/resolve.exports": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz",
- "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12660,8 +10843,6 @@
},
"node_modules/retry": {
"version": "0.13.1",
- "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz",
- "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12670,8 +10851,6 @@
},
"node_modules/reusify": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz",
- "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -12681,8 +10860,6 @@
},
"node_modules/rimraf": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz",
- "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12701,8 +10878,6 @@
},
"node_modules/rimraf/node_modules/brace-expansion": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
- "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12711,8 +10886,6 @@
},
"node_modules/rimraf/node_modules/foreground-child": {
"version": "3.3.1",
- "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
- "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12728,8 +10901,6 @@
},
"node_modules/rimraf/node_modules/glob": {
"version": "11.0.1",
- "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.1.tgz",
- "integrity": "sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12752,8 +10923,6 @@
},
"node_modules/rimraf/node_modules/jackspeak": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz",
- "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -12768,8 +10937,6 @@
},
"node_modules/rimraf/node_modules/lru-cache": {
"version": "11.0.2",
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.0.2.tgz",
- "integrity": "sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==",
"dev": true,
"license": "ISC",
"engines": {
@@ -12778,8 +10945,6 @@
},
"node_modules/rimraf/node_modules/minimatch": {
"version": "10.0.1",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz",
- "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -12794,8 +10959,6 @@
},
"node_modules/rimraf/node_modules/path-scurry": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz",
- "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==",
"dev": true,
"license": "BlueOak-1.0.0",
"dependencies": {
@@ -12811,8 +10974,6 @@
},
"node_modules/rimraf/node_modules/signal-exit": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz",
- "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==",
"dev": true,
"license": "ISC",
"engines": {
@@ -12824,8 +10985,6 @@
},
"node_modules/router": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/router/-/router-2.1.0.tgz",
- "integrity": "sha512-/m/NSLxeYEgWNtyC+WtNHCF7jbGxOibVWKnn+1Psff4dJGOfoXP+MuC/f2CwSmyiHdOIzYnYFp4W6GxWfekaLA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12839,8 +10998,6 @@
},
"node_modules/run-parallel": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
- "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
"dev": true,
"funding": [
{
@@ -12863,8 +11020,6 @@
},
"node_modules/safe-array-concat": {
"version": "1.1.3",
- "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
- "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12883,8 +11038,6 @@
},
"node_modules/safe-buffer": {
"version": "5.2.1",
- "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
- "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
"dev": true,
"funding": [
{
@@ -12904,8 +11057,6 @@
},
"node_modules/safe-push-apply": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
- "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12921,8 +11072,6 @@
},
"node_modules/safe-regex-test": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
- "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12939,15 +11088,11 @@
},
"node_modules/safer-buffer": {
"version": "2.1.2",
- "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
- "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
"dev": true,
"license": "MIT"
},
"node_modules/schema-utils": {
"version": "2.7.1",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz",
- "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12965,8 +11110,6 @@
},
"node_modules/semver": {
"version": "6.3.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
- "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -12975,8 +11118,6 @@
},
"node_modules/send": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/send/-/send-1.1.0.tgz",
- "integrity": "sha512-v67WcEouB5GxbTWL/4NeToqcZiAWEq90N888fczVArY8A79J0L4FD7vj5hm3eUMua5EpoQ59wa/oovY6TLvRUA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -12999,8 +11140,6 @@
},
"node_modules/send/node_modules/fresh": {
"version": "0.5.2",
- "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
- "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13009,8 +11148,6 @@
},
"node_modules/send/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13019,8 +11156,6 @@
},
"node_modules/send/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13032,8 +11167,6 @@
},
"node_modules/serialize-javascript": {
"version": "6.0.2",
- "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz",
- "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -13042,8 +11175,6 @@
},
"node_modules/serve-static": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-2.1.0.tgz",
- "integrity": "sha512-A3We5UfEjG8Z7VkDv6uItWw6HY2bBSBJT1KtVESn6EOoOr2jAxNhxWCLY3jDE2WcuHXByWju74ck3ZgLwL8xmA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13058,15 +11189,11 @@
},
"node_modules/set-blocking": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz",
- "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==",
"dev": true,
"license": "ISC"
},
"node_modules/set-function-length": {
"version": "1.2.2",
- "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
- "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13083,8 +11210,6 @@
},
"node_modules/set-function-name": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
- "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13099,8 +11224,6 @@
},
"node_modules/set-proto": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
- "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13114,15 +11237,11 @@
},
"node_modules/setprototypeof": {
"version": "1.2.0",
- "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
- "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
"dev": true,
"license": "ISC"
},
"node_modules/shallow-clone": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz",
- "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13134,8 +11253,6 @@
},
"node_modules/shebang-command": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
- "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13147,8 +11264,6 @@
},
"node_modules/shebang-regex": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
- "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13157,8 +11272,6 @@
},
"node_modules/side-channel": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
- "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -13176,8 +11289,6 @@
},
"node_modules/side-channel-list": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
- "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
"license": "MIT",
"dependencies": {
"es-errors": "^1.3.0",
@@ -13192,8 +11303,6 @@
},
"node_modules/side-channel-map": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
- "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
"license": "MIT",
"dependencies": {
"call-bound": "^1.0.2",
@@ -13210,8 +11319,6 @@
},
"node_modules/side-channel-weakmap": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
- "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
"license": "MIT",
"dependencies": {
"call-bound": "^1.0.2",
@@ -13229,16 +11336,11 @@
},
"node_modules/signal-exit": {
"version": "3.0.7",
- "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
- "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==",
"dev": true,
"license": "ISC"
},
"node_modules/sinon": {
"version": "7.5.0",
- "resolved": "https://registry.npmjs.org/sinon/-/sinon-7.5.0.tgz",
- "integrity": "sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q==",
- "deprecated": "16.1.1",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
@@ -13253,8 +11355,6 @@
},
"node_modules/sinon/node_modules/diff": {
"version": "3.5.0",
- "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
- "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -13263,8 +11363,6 @@
},
"node_modules/sinon/node_modules/has-flag": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
- "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13273,8 +11371,6 @@
},
"node_modules/sinon/node_modules/supports-color": {
"version": "5.5.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
- "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13286,15 +11382,11 @@
},
"node_modules/sisteransi": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz",
- "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==",
"dev": true,
"license": "MIT"
},
"node_modules/slash": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz",
- "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13303,8 +11395,6 @@
},
"node_modules/source-map": {
"version": "0.6.1",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
- "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
"dev": true,
"license": "BSD-3-Clause",
"engines": {
@@ -13313,8 +11403,6 @@
},
"node_modules/source-map-support": {
"version": "0.5.21",
- "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz",
- "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13324,8 +11412,6 @@
},
"node_modules/spawn-wrap": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz",
- "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -13342,8 +11428,6 @@
},
"node_modules/spawn-wrap/node_modules/make-dir": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz",
- "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13358,9 +11442,6 @@
},
"node_modules/spawn-wrap/node_modules/rimraf": {
"version": "3.0.2",
- "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
- "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
- "deprecated": "Rimraf versions prior to v4 are no longer supported",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -13375,15 +11456,11 @@
},
"node_modules/sprintf-js": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
- "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/stack-utils": {
"version": "2.0.6",
- "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz",
- "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13395,8 +11472,6 @@
},
"node_modules/stack-utils/node_modules/escape-string-regexp": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz",
- "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13405,8 +11480,6 @@
},
"node_modules/statuses": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
- "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13415,8 +11488,6 @@
},
"node_modules/string-length": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz",
- "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13429,8 +11500,6 @@
},
"node_modules/string-length/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13439,8 +11508,6 @@
},
"node_modules/string-length/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13452,8 +11519,6 @@
},
"node_modules/string-replace-loader": {
"version": "3.1.0",
- "resolved": "https://registry.npmjs.org/string-replace-loader/-/string-replace-loader-3.1.0.tgz",
- "integrity": "sha512-5AOMUZeX5HE/ylKDnEa/KKBqvlnFmRZudSOjVJHxhoJg9QYTwl1rECx7SLR8BBH7tfxb4Rp7EM2XVfQFxIhsbQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13466,8 +11531,6 @@
},
"node_modules/string-replace-loader/node_modules/schema-utils": {
"version": "3.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz",
- "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13485,8 +11548,6 @@
},
"node_modules/string-width": {
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13501,8 +11562,6 @@
"node_modules/string-width-cjs": {
"name": "string-width",
"version": "4.2.3",
- "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
- "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13516,8 +11575,6 @@
},
"node_modules/string-width-cjs/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13526,8 +11583,6 @@
},
"node_modules/string-width-cjs/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13539,8 +11594,6 @@
},
"node_modules/string-width/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13549,8 +11602,6 @@
},
"node_modules/string-width/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13562,8 +11613,6 @@
},
"node_modules/string.prototype.trim": {
"version": "1.2.10",
- "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
- "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13584,8 +11633,6 @@
},
"node_modules/string.prototype.trimend": {
"version": "1.0.9",
- "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
- "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13603,8 +11650,6 @@
},
"node_modules/string.prototype.trimstart": {
"version": "1.0.8",
- "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
- "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13621,8 +11666,6 @@
},
"node_modules/strip-ansi": {
"version": "3.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
- "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13635,8 +11678,6 @@
"node_modules/strip-ansi-cjs": {
"name": "strip-ansi",
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13648,8 +11689,6 @@
},
"node_modules/strip-ansi-cjs/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13658,8 +11697,6 @@
},
"node_modules/strip-bom": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz",
- "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13668,8 +11705,6 @@
},
"node_modules/strip-final-newline": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
- "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13678,8 +11713,6 @@
},
"node_modules/strip-json-comments": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
- "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13691,8 +11724,6 @@
},
"node_modules/supports-color": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
- "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13701,8 +11732,6 @@
},
"node_modules/supports-hyperlinks": {
"version": "2.3.0",
- "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz",
- "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13715,8 +11744,6 @@
},
"node_modules/supports-hyperlinks/node_modules/supports-color": {
"version": "7.2.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
- "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13728,8 +11755,6 @@
},
"node_modules/supports-preserve-symlinks-flag": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
- "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13741,8 +11766,6 @@
},
"node_modules/tapable": {
"version": "2.2.1",
- "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
- "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13751,15 +11774,11 @@
},
"node_modules/tcomb": {
"version": "3.2.29",
- "resolved": "https://registry.npmjs.org/tcomb/-/tcomb-3.2.29.tgz",
- "integrity": "sha512-di2Hd1DB2Zfw6StGv861JoAF5h/uQVu/QJp2g8KVbtfKnoHdBQl5M32YWq6mnSYBQ1vFFrns5B1haWJL7rKaOQ==",
"dev": true,
"license": "MIT"
},
"node_modules/tcomb-validation": {
"version": "3.4.1",
- "resolved": "https://registry.npmjs.org/tcomb-validation/-/tcomb-validation-3.4.1.tgz",
- "integrity": "sha512-urVVMQOma4RXwiVCa2nM2eqrAomHROHvWPuj6UkDGz/eb5kcy0x6P0dVt6kzpUZtYMNoAqJLWmz1BPtxrtjtrA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13768,8 +11787,6 @@
},
"node_modules/terminal-link": {
"version": "2.1.1",
- "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz",
- "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13785,8 +11802,6 @@
},
"node_modules/terser": {
"version": "5.39.0",
- "resolved": "https://registry.npmjs.org/terser/-/terser-5.39.0.tgz",
- "integrity": "sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -13804,8 +11819,6 @@
},
"node_modules/terser-webpack-plugin": {
"version": "5.3.14",
- "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.14.tgz",
- "integrity": "sha512-vkZjpUjb6OMS7dhV+tILUW6BhpDR7P2L/aQSAv+Uwk+m8KATX9EccViHTJR2qDtACKPIYndLGCyl3FMo+r2LMw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13839,8 +11852,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/ajv": {
"version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13856,8 +11867,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/ajv-keywords": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13869,8 +11878,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/jest-worker": {
"version": "27.5.1",
- "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz",
- "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13884,15 +11891,11 @@
},
"node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"license": "MIT"
},
"node_modules/terser-webpack-plugin/node_modules/schema-utils": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
- "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13911,8 +11914,6 @@
},
"node_modules/terser-webpack-plugin/node_modules/supports-color": {
"version": "8.1.1",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
- "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13927,15 +11928,11 @@
},
"node_modules/terser/node_modules/commander": {
"version": "2.20.3",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz",
- "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==",
"dev": true,
"license": "MIT"
},
"node_modules/test-exclude": {
"version": "6.0.0",
- "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz",
- "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -13949,22 +11946,16 @@
},
"node_modules/text-table": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
- "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
"dev": true,
"license": "MIT"
},
"node_modules/tmpl": {
"version": "1.0.5",
- "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz",
- "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==",
"dev": true,
"license": "BSD-3-Clause"
},
"node_modules/to-fast-properties": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
- "integrity": "sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13973,8 +11964,6 @@
},
"node_modules/to-regex-range": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
- "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -13986,8 +11975,6 @@
},
"node_modules/toidentifier": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
- "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -13996,8 +11983,6 @@
},
"node_modules/ts-jest": {
"version": "28.0.8",
- "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-28.0.8.tgz",
- "integrity": "sha512-5FaG0lXmRPzApix8oFG8RKjAz4ehtm8yMKOTy5HX3fY6W8kmvOrmcY0hKDElW52FJov+clhUbrKAqofnj4mXTg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14040,8 +12025,6 @@
},
"node_modules/ts-jest/node_modules/semver": {
"version": "7.7.1",
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz",
- "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==",
"dev": true,
"license": "ISC",
"bin": {
@@ -14053,8 +12036,6 @@
},
"node_modules/tsconfig-paths": {
"version": "3.15.0",
- "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz",
- "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14066,8 +12047,6 @@
},
"node_modules/tsconfig-paths/node_modules/json5": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
- "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14079,8 +12058,6 @@
},
"node_modules/tsconfig-paths/node_modules/strip-bom": {
"version": "3.0.0",
- "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
- "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14089,8 +12066,6 @@
},
"node_modules/tsscmp": {
"version": "1.0.6",
- "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz",
- "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14099,8 +12074,6 @@
},
"node_modules/type-check": {
"version": "0.4.0",
- "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
- "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14112,8 +12085,6 @@
},
"node_modules/type-detect": {
"version": "4.1.0",
- "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz",
- "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14122,8 +12093,6 @@
},
"node_modules/type-fest": {
"version": "0.21.3",
- "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz",
- "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==",
"dev": true,
"license": "(MIT OR CC0-1.0)",
"engines": {
@@ -14135,8 +12104,6 @@
},
"node_modules/type-is": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/type-is/-/type-is-2.0.0.tgz",
- "integrity": "sha512-gd0sGezQYCbWSbkZr75mln4YBidWUN60+devscpLF5mtRDUpiaTvKpBNrdaCvel1NdR2k6vclXybU5fBd2i+nw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14150,8 +12117,6 @@
},
"node_modules/typed-array-buffer": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
- "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14165,8 +12130,6 @@
},
"node_modules/typed-array-byte-length": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
- "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14185,8 +12148,6 @@
},
"node_modules/typed-array-byte-offset": {
"version": "1.0.4",
- "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
- "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14207,8 +12168,6 @@
},
"node_modules/typed-array-length": {
"version": "1.0.7",
- "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
- "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14228,8 +12187,6 @@
},
"node_modules/typedarray-to-buffer": {
"version": "3.1.5",
- "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz",
- "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14238,8 +12195,6 @@
},
"node_modules/typescript": {
"version": "4.9.5",
- "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz",
- "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==",
"dev": true,
"license": "Apache-2.0",
"bin": {
@@ -14252,15 +12207,11 @@
},
"node_modules/uc.micro": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
- "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
"dev": true,
"license": "MIT"
},
"node_modules/uid-safe": {
"version": "2.1.5",
- "resolved": "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz",
- "integrity": "sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14272,8 +12223,6 @@
},
"node_modules/unbox-primitive": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
- "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14291,22 +12240,16 @@
},
"node_modules/underscore": {
"version": "1.13.7",
- "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.13.7.tgz",
- "integrity": "sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==",
"dev": true,
"license": "MIT"
},
"node_modules/undici-types": {
"version": "6.20.0",
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
- "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
"dev": true,
"license": "MIT"
},
"node_modules/unicode-canonical-property-names-ecmascript": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz",
- "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14315,8 +12258,6 @@
},
"node_modules/unicode-match-property-ecmascript": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz",
- "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14329,8 +12270,6 @@
},
"node_modules/unicode-match-property-value-ecmascript": {
"version": "2.2.0",
- "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz",
- "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14339,8 +12278,6 @@
},
"node_modules/unicode-property-aliases-ecmascript": {
"version": "2.1.0",
- "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz",
- "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14349,8 +12286,6 @@
},
"node_modules/universalify": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14359,8 +12294,6 @@
},
"node_modules/unpipe": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
- "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14369,8 +12302,6 @@
},
"node_modules/update-browserslist-db": {
"version": "1.1.3",
- "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
- "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
"dev": true,
"funding": [
{
@@ -14400,8 +12331,6 @@
},
"node_modules/uri-js": {
"version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -14410,8 +12339,6 @@
},
"node_modules/utils-merge": {
"version": "1.0.1",
- "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
- "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14420,8 +12347,6 @@
},
"node_modules/uuid": {
"version": "8.3.2",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
- "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"dev": true,
"license": "MIT",
"bin": {
@@ -14430,8 +12355,6 @@
},
"node_modules/v8-to-istanbul": {
"version": "9.3.0",
- "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz",
- "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -14445,8 +12368,6 @@
},
"node_modules/validator": {
"version": "13.12.0",
- "resolved": "https://registry.npmjs.org/validator/-/validator-13.12.0.tgz",
- "integrity": "sha512-c1Q0mCiPlgdTVVVIJIrBuxNicYE+t/7oKeI9MWLj3fh/uq2Pxh/3eeWbVZ4OcGW1TUf53At0njHw5SMdA3tmMg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14455,8 +12376,6 @@
},
"node_modules/vary": {
"version": "1.1.2",
- "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
- "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14465,8 +12384,6 @@
},
"node_modules/walker": {
"version": "1.0.8",
- "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz",
- "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
@@ -14475,8 +12392,6 @@
},
"node_modules/watchpack": {
"version": "2.4.2",
- "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz",
- "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14489,8 +12404,6 @@
},
"node_modules/webpack": {
"version": "5.98.0",
- "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.98.0.tgz",
- "integrity": "sha512-UFynvx+gM44Gv9qFgj0acCQK2VE1CtdfwFdimkapco3hlPCJ/zeq73n2yVKimVbtm+TnApIugGhLJnkU6gjYXA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14536,8 +12449,6 @@
},
"node_modules/webpack-cli": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-6.0.1.tgz",
- "integrity": "sha512-MfwFQ6SfwinsUVi0rNJm7rHZ31GyTcpVE5pgVA3hwFRb7COD4TzjUUwhGWKfO50+xdc2MQPuEBBJoqIMGt3JDw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14579,8 +12490,6 @@
},
"node_modules/webpack-cli/node_modules/commander": {
"version": "12.1.0",
- "resolved": "https://registry.npmjs.org/commander/-/commander-12.1.0.tgz",
- "integrity": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14589,8 +12498,6 @@
},
"node_modules/webpack-merge": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-6.0.1.tgz",
- "integrity": "sha512-hXXvrjtx2PLYx4qruKl+kyRSLc52V+cCvMxRjmKwoA+CBbbF5GfIBtR6kCvl0fYGqTUPKB+1ktVmTHqMOzgCBg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14604,8 +12511,6 @@
},
"node_modules/webpack-sources": {
"version": "3.2.3",
- "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz",
- "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14614,8 +12519,6 @@
},
"node_modules/webpack/node_modules/ajv": {
"version": "8.17.1",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz",
- "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14631,8 +12534,6 @@
},
"node_modules/webpack/node_modules/ajv-keywords": {
"version": "5.1.0",
- "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz",
- "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14644,8 +12545,6 @@
},
"node_modules/webpack/node_modules/eslint-scope": {
"version": "5.1.1",
- "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz",
- "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==",
"dev": true,
"license": "BSD-2-Clause",
"dependencies": {
@@ -14658,8 +12557,6 @@
},
"node_modules/webpack/node_modules/estraverse": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz",
- "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==",
"dev": true,
"license": "BSD-2-Clause",
"engines": {
@@ -14668,15 +12565,11 @@
},
"node_modules/webpack/node_modules/json-schema-traverse": {
"version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==",
"dev": true,
"license": "MIT"
},
"node_modules/webpack/node_modules/mime-db": {
"version": "1.52.0",
- "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
- "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14685,8 +12578,6 @@
},
"node_modules/webpack/node_modules/mime-types": {
"version": "2.1.35",
- "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
- "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14698,8 +12589,6 @@
},
"node_modules/webpack/node_modules/schema-utils": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz",
- "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14718,8 +12607,6 @@
},
"node_modules/which": {
"version": "2.0.2",
- "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
- "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -14734,8 +12621,6 @@
},
"node_modules/which-boxed-primitive": {
"version": "1.1.1",
- "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
- "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14754,8 +12639,6 @@
},
"node_modules/which-builtin-type": {
"version": "1.2.1",
- "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
- "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14782,8 +12665,6 @@
},
"node_modules/which-collection": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
- "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14801,15 +12682,11 @@
},
"node_modules/which-module": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.1.tgz",
- "integrity": "sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==",
"dev": true,
"license": "ISC"
},
"node_modules/which-typed-array": {
"version": "1.1.19",
- "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz",
- "integrity": "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14830,15 +12707,11 @@
},
"node_modules/wildcard": {
"version": "2.0.1",
- "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz",
- "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==",
"dev": true,
"license": "MIT"
},
"node_modules/word-wrap": {
"version": "1.2.5",
- "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
- "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14847,15 +12720,11 @@
},
"node_modules/workerpool": {
"version": "6.5.1",
- "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.5.1.tgz",
- "integrity": "sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/wrap-ansi": {
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14873,8 +12742,6 @@
"node_modules/wrap-ansi-cjs": {
"name": "wrap-ansi",
"version": "7.0.0",
- "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
- "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14891,8 +12758,6 @@
},
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14901,8 +12766,6 @@
},
"node_modules/wrap-ansi-cjs/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14917,8 +12780,6 @@
},
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14930,8 +12791,6 @@
},
"node_modules/wrap-ansi/node_modules/ansi-regex": {
"version": "5.0.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
- "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -14940,8 +12799,6 @@
},
"node_modules/wrap-ansi/node_modules/ansi-styles": {
"version": "4.3.0",
- "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
- "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14956,8 +12813,6 @@
},
"node_modules/wrap-ansi/node_modules/strip-ansi": {
"version": "6.0.1",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
- "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -14969,15 +12824,11 @@
},
"node_modules/wrappy": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
"dev": true,
"license": "ISC"
},
"node_modules/write-file-atomic": {
"version": "4.0.2",
- "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz",
- "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==",
"dev": true,
"license": "ISC",
"dependencies": {
@@ -14990,8 +12841,6 @@
},
"node_modules/ws": {
"version": "8.18.1",
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz",
- "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15012,15 +12861,11 @@
},
"node_modules/xmlcreate": {
"version": "2.0.4",
- "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz",
- "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/y18n": {
"version": "5.0.8",
- "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
- "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
"dev": true,
"license": "ISC",
"engines": {
@@ -15029,15 +12874,11 @@
},
"node_modules/yallist": {
"version": "3.1.1",
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
- "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true,
"license": "ISC"
},
"node_modules/yargs": {
"version": "17.7.2",
- "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
- "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15055,8 +12896,6 @@
},
"node_modules/yargs-parser": {
"version": "21.1.1",
- "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
- "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
"dev": true,
"license": "ISC",
"engines": {
@@ -15065,8 +12904,6 @@
},
"node_modules/yargs-unparser": {
"version": "2.0.0",
- "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
- "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
"dev": true,
"license": "MIT",
"dependencies": {
@@ -15081,8 +12918,6 @@
},
"node_modules/yargs-unparser/node_modules/camelcase": {
"version": "6.3.0",
- "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
- "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15094,8 +12929,6 @@
},
"node_modules/yargs-unparser/node_modules/decamelize": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
- "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
"dev": true,
"license": "MIT",
"engines": {
@@ -15107,8 +12940,6 @@
},
"node_modules/yocto-queue": {
"version": "0.1.0",
- "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
- "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
"dev": true,
"license": "MIT",
"engines": {
diff --git a/package.json b/package.json
index 484a9bb0..691d9447 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@contentstack/management",
- "version": "1.19.4",
+ "version": "1.19.5",
"description": "The Content Management API is used to manage the content of your Contentstack account",
"main": "./dist/node/contentstack-management.js",
"browser": "./dist/web/contentstack-management.js",
@@ -65,6 +65,7 @@
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.9",
+ "@babel/eslint-parser": "^7.26.8",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/register": "^7.25.9",
diff --git a/sanity-report-dev11.js b/sanity-report-dev11.js
index ee5ba94c..7ce4843e 100644
--- a/sanity-report-dev11.js
+++ b/sanity-report-dev11.js
@@ -1,41 +1,41 @@
-const dotenv = require("dotenv");
-const fs = require("fs");
+const dotenv = require('dotenv')
+const fs = require('fs')
-dotenv.config();
+dotenv.config()
-const user1 = process.env.USER1;
-const user2 = process.env.USER2;
-const user3 = process.env.USER3;
-const user4 = process.env.USER4;
+const user1 = process.env.USER1
+const user2 = process.env.USER2
+const user3 = process.env.USER3
+const user4 = process.env.USER4
const mochawesomeJsonOutput = fs.readFileSync(
- "./mochawesome-report/mochawesome.json",
- "utf-8"
-);
-const mochawesomeReport = JSON.parse(mochawesomeJsonOutput);
+ './mochawesome-report/mochawesome.json',
+ 'utf-8'
+)
+const mochawesomeReport = JSON.parse(mochawesomeJsonOutput)
-const totalTests = mochawesomeReport.stats.tests;
-const passedTests = mochawesomeReport.stats.passes;
-const failedTests = mochawesomeReport.stats.failures;
+const totalTests = mochawesomeReport.stats.tests
+const passedTests = mochawesomeReport.stats.passes
+const failedTests = mochawesomeReport.stats.failures
-let durationInSeconds = Math.floor(mochawesomeReport.stats.duration / 1000);
-const durationInMinutes = Math.floor(durationInSeconds / 60);
-durationInSeconds %= 60;
+let durationInSeconds = Math.floor(mochawesomeReport.stats.duration / 1000)
+const durationInMinutes = Math.floor(durationInSeconds / 60)
+durationInSeconds %= 60
const resultMessage =
passedTests === totalTests
? `:white_check_mark: Success (${passedTests} / ${totalTests} Passed)`
- : `:x: Failure (${passedTests} / ${totalTests} Passed)`;
+ : `:x: Failure (${passedTests} / ${totalTests} Passed)`
-const pipelineName = process.env.GO_PIPELINE_NAME;
-const pipelineCounter = process.env.GO_PIPELINE_COUNTER;
-const goCdServer = process.env.GOCD_SERVER;
+const pipelineName = process.env.GO_PIPELINE_NAME
+const pipelineCounter = process.env.GO_PIPELINE_COUNTER
+const goCdServer = process.env.GOCD_SERVER
-const reportUrl = `http://${goCdServer}/go/files/${pipelineName}/${pipelineCounter}/sanity/1/sanity/test-results/mochawesome-report/sanity-report.html`;
+const reportUrl = `http://${goCdServer}/go/files/${pipelineName}/${pipelineCounter}/sanity/1/sanity/test-results/mochawesome-report/sanity-report.html`
-let tagUsers = ``;
+let tagUsers = ``
if (failedTests > 0) {
- tagUsers = `<@${user1}> <@${user2}> <@${user3}> <@${user4}>`;
+ tagUsers = `<@${user1}> <@${user2}> <@${user3}> <@${user4}>`
}
const slackMessage = {
@@ -43,32 +43,32 @@ const slackMessage = {
*Result:* ${resultMessage}. ${durationInMinutes}m ${durationInSeconds}s
*Failed Tests:* ${failedTests}
<${reportUrl}|View Report>
-${tagUsers}`,
-};
+${tagUsers}`
+}
-const slackWebhookUrl = process.env.SLACK_WEBHOOK_URL;
+const slackWebhookUrl = process.env.SLACK_WEBHOOK_URL
const sendSlackMessage = async (message) => {
const payload = {
- text: message,
- };
+ text: message
+ }
try {
const response = await fetch(slackWebhookUrl, {
- method: "POST",
+ method: 'POST',
headers: {
- "Content-Type": "application/json",
+ 'Content-Type': 'application/json'
},
- body: JSON.stringify(payload),
- });
+ body: JSON.stringify(payload)
+ })
if (!response.ok) {
- throw new Error(`Error sending message to Slack: ${response.statusText}`);
+ throw new Error(`Error sending message to Slack: ${response.statusText}`)
}
- console.log("Message sent to Slack successfully");
+ console.log('Message sent to Slack successfully')
} catch (error) {
- console.error("Error:", error);
+ console.error('Error:', error)
}
-};
-sendSlackMessage(slackMessage.text);
+}
+sendSlackMessage(slackMessage.text)
diff --git a/test/api/app-test.js b/test/api/app-test.js
index 04081dee..b77c6885 100644
--- a/test/api/app-test.js
+++ b/test/api/app-test.js
@@ -6,7 +6,6 @@ import * as contentstack from '../../lib/contentstack.js'
dotenv.config()
-let stack = {}
const orgID = process.env.ORGANIZATION
let client = {}
let appUid = ''
@@ -22,7 +21,6 @@ describe('Apps api Test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
client = contentstack.client({ host: process.env.APP_HOST, defaultHostName: process.env.DEFAULTHOST, authtoken: user.authtoken })
- stack = jsonReader('stack.json')
})
it('Fetch all apps test', done => {
diff --git a/test/api/branch-test.js b/test/api/branch-test.js
index 3b2ea184..69237d6e 100644
--- a/test/api/branch-test.js
+++ b/test/api/branch-test.js
@@ -157,25 +157,25 @@ describe('Branch api Test', () => {
const params = {
base_branch: branch.uid,
compare_branch: devBranch.uid,
- default_merge_strategy: "ignore",
- merge_comment: "Merging dev into main",
+ default_merge_strategy: 'ignore',
+ merge_comment: 'Merging dev into main'
}
const mergeObj = {
item_merge_strategies: [
{
- "uid": "global_field_uid",
- "type": "global_field",
- "merge_strategy": "merge_prefer_base"
+ uid: 'global_field_uid',
+ type: 'global_field',
+ merge_strategy: 'merge_prefer_base'
},
{
- "uid": "ct5",
- "type": "content_type",
- "merge_strategy": "merge_prefer_compare"
+ uid: 'ct5',
+ type: 'content_type',
+ merge_strategy: 'merge_prefer_compare'
},
{
- "uid": "bot_all",
- "type": "content_type",
- "merge_strategy": "merge_prefer_base"
+ uid: 'bot_all',
+ type: 'content_type',
+ merge_strategy: 'merge_prefer_base'
}
]
}
diff --git a/test/api/branchAlias-test.js b/test/api/branchAlias-test.js
index 850a1d97..688058c9 100644
--- a/test/api/branchAlias-test.js
+++ b/test/api/branchAlias-test.js
@@ -1,4 +1,4 @@
-import { expect, use } from 'chai'
+import { expect } from 'chai'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../utility/fileOperations/readwrite'
import { contentstackClient } from '../utility/ContentstackClient.js'
@@ -67,8 +67,7 @@ describe('Branch Alias api Test', () => {
done()
})
.catch(done)
- }
- catch (e) {
+ } catch (e) {
done()
}
})
diff --git a/test/api/bulkOperation-test.js b/test/api/bulkOperation-test.js
index c334fe19..7fc2ff2d 100644
--- a/test/api/bulkOperation-test.js
+++ b/test/api/bulkOperation-test.js
@@ -17,21 +17,21 @@ describe('BulkOperation api test', () => {
const publishDetails = {
entries: [
{
- uid: "blte6542a9aac484405",
- content_type: "bye",
+ uid: 'blte6542a9aac484405',
+ content_type: 'bye',
version: 1,
- locale: "en-us"
+ locale: 'en-us'
}
],
locales: [
- "en-us"
+ 'en-us'
],
environments: [
- "dev"
+ 'dev'
]
}
doBulkOperation()
- .publish({details:publishDetails, api_version:'3.2'})
+ .publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
@@ -44,18 +44,18 @@ describe('BulkOperation api test', () => {
const publishDetails = {
assets: [
{
- uid: "blt9f8e5aa45ac36455"
+ uid: 'blt9f8e5aa45ac36455'
}
],
locales: [
- "en-us"
+ 'en-us'
],
environments: [
- "dev"
+ 'dev'
]
}
doBulkOperation()
- .publish({details:publishDetails, api_version:'3.2'})
+ .publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
@@ -68,33 +68,33 @@ describe('BulkOperation api test', () => {
const publishDetails = {
entries: [
{
- uid: "blt077157784a170bab",
- content_type: "bye",
+ uid: 'blt077157784a170bab',
+ content_type: 'bye',
version: 1,
- locale: "en-us"
+ locale: 'en-us'
}, {
- uid: "blta519039712ca2b8a",
- content_type: "bye",
+ uid: 'blta519039712ca2b8a',
+ content_type: 'bye',
version: 1,
- locale: "en-us"
+ locale: 'en-us'
}
],
assets: [
{
- uid: "blt9f8e5aa45ac36455"
+ uid: 'blt9f8e5aa45ac36455'
}, {
- uid: "blt3b097cc58475b0a3"
+ uid: 'blt3b097cc58475b0a3'
}
],
locales: [
- "en-us"
+ 'en-us'
],
environments: [
- "dev"
+ 'dev'
]
}
doBulkOperation()
- .publish({details:publishDetails, api_version:'3.2'})
+ .publish({ details: publishDetails, api_version: '3.2' })
.then((response) => {
expect(response.notice).to.not.equal(undefined)
expect(response.job_id).to.not.equal(undefined)
diff --git a/test/api/contentType-test.js b/test/api/contentType-test.js
index a8e49030..6f104234 100644
--- a/test/api/contentType-test.js
+++ b/test/api/contentType-test.js
@@ -96,7 +96,7 @@ describe('Content Type api Test', () => {
it('Update ContentType schema without fetch', done => {
makeContentType(multiPageCT.content_type.uid)
- .updateCT({content_type: {schema: schema}})
+ .updateCT({ content_type: { schema: schema } })
.then((contentType) => {
expect(contentType.schema.length).to.be.equal(6)
done()
diff --git a/test/api/entry-test.js b/test/api/entry-test.js
index 73ed20ae..af97ad76 100644
--- a/test/api/entry-test.js
+++ b/test/api/entry-test.js
@@ -193,16 +193,16 @@ describe('Entry api Test', () => {
it('Create and update an entry with asset', done => {
// get asset
- let asset;
+ let asset
makeAsset()
- .query()
- .find()
- .then((collection) => {
- asset = collection.items[0];
+ .query()
+ .find()
+ .then((collection) => {
+ asset = collection.items[0]
// create entry
- let entry = {
+ const entry = {
...entryFirst,
- title: "uniqueTitle45",
+ title: 'uniqueTitle45',
modular_blocks: [
{
block1: {
@@ -210,19 +210,19 @@ describe('Entry api Test', () => {
}
}
]
- };
+ }
makeEntry(multiPageCT.content_type.uid)
- .create({entry: entry})
- .then(entry => {
- const newTitle = "updated title";
- entry.title = newTitle;
- entry.update().then(updatedEntry => {
- expect(updatedEntry.title).to.be.equal(newTitle);
- done();
+ .create({ entry: entry })
+ .then(entry => {
+ const newTitle = 'updated title'
+ entry.title = newTitle
+ entry.update().then(updatedEntry => {
+ expect(updatedEntry.title).to.be.equal(newTitle)
+ done()
+ })
})
- })
})
- });
+ })
})
function makeEntry (contentType, uid = null) {
diff --git a/test/api/mock/managementToken.js b/test/api/mock/managementToken.js
index bd08d49e..bf399d6f 100644
--- a/test/api/mock/managementToken.js
+++ b/test/api/mock/managementToken.js
@@ -1,73 +1,72 @@
const createManagementToken = {
- "token":{
- "name":"Test Token",
- "description":"This is a sample management token.",
- "scope":[
- {
- "module":"content_type",
- "acl":{
- "read":true,
- "write":true
- }
- },
- {
- "module":"branch",
- "branches":[
- "main"
- ],
- "acl":{
- "read":true
- }
- },
- {
- "module":"branch_alias",
- "branch_aliases":[
- "tst"
- ],
- "acl":{
- "read":true
- }
- }
- ],
- "expires_on":"2024-12-10",
- "is_email_notification_enabled":true
+ token: {
+ name: 'Test Token',
+ description: 'This is a sample management token.',
+ scope: [
+ {
+ module: 'content_type',
+ acl: {
+ read: true,
+ write: true
+ }
+ },
+ {
+ module: 'branch',
+ branches: [
+ 'main'
+ ],
+ acl: {
+ read: true
+ }
+ },
+ {
+ module: 'branch_alias',
+ branch_aliases: [
+ 'tst'
+ ],
+ acl: {
+ read: true
+ }
+ }
+ ],
+ expires_on: '2024-12-10',
+ is_email_notification_enabled: true
}
}
const createManagementToken2 = {
- "token":{
- "name":"Test Token",
- "description":"This is a sample management token.",
- "scope":[
- {
- "module":"content_type",
- "acl":{
- "read":true,
- "write":true
- }
- },
- {
- "module":"branch",
- "branches":[
- "main"
- ],
- "acl":{
- "read":true
- }
- },
- {
- "module":"branch_alias",
- "branch_aliases":[
- "tst"
- ],
- "acl":{
- "read":true
- }
- }
- ],
- "expires_on":"2024-12-10",
- "is_email_notification_enabled":true
+ token: {
+ name: 'Test Token',
+ description: 'This is a sample management token.',
+ scope: [
+ {
+ module: 'content_type',
+ acl: {
+ read: true,
+ write: true
+ }
+ },
+ {
+ module: 'branch',
+ branches: [
+ 'main'
+ ],
+ acl: {
+ read: true
+ }
+ },
+ {
+ module: 'branch_alias',
+ branch_aliases: [
+ 'tst'
+ ],
+ acl: {
+ read: true
+ }
+ }
+ ],
+ expires_on: '2024-12-10',
+ is_email_notification_enabled: true
}
}
-
- export { createManagementToken, createManagementToken2 }
-
\ No newline at end of file
+
+export { createManagementToken, createManagementToken2 }
diff --git a/test/api/mock/role.js b/test/api/mock/role.js
index ce81f195..c0d299df 100644
--- a/test/api/mock/role.js
+++ b/test/api/mock/role.js
@@ -16,12 +16,12 @@ const role = {
acl: { read: true }
},
{
- module: "taxonomy",
- taxonomies: ["taxonomy_testing1"],
- terms: ["taxonomy_testing1.term_test1"],
+ module: 'taxonomy',
+ taxonomies: ['taxonomy_testing1'],
+ terms: ['taxonomy_testing1.term_test1'],
content_types: [
{
- uid: "$all",
+ uid: '$all',
acl: {
read: true,
sub_acl: {
diff --git a/test/api/mock/variantGroup.js b/test/api/mock/variantGroup.js
index 269d476a..8081e4a5 100644
--- a/test/api/mock/variantGroup.js
+++ b/test/api/mock/variantGroup.js
@@ -1,82 +1,82 @@
const createVariantGroup = {
- "name": "Colors",
- "content_types": [
- "iphone_product_page"
- ],
- "uid": "iphone_color_white",
- }
+ name: 'Colors',
+ content_types: [
+ 'iphone_product_page'
+ ],
+ uid: 'iphone_color_white'
+}
const createVariantGroup1 = {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "uid",
- "name": "iPhone Colors",
- "content_types": [
- "iphone_product_page"
- ],
- "source" : "Personalize"
- }
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'uid',
+ name: 'iPhone Colors',
+ content_types: [
+ 'iphone_product_page'
+ ],
+ source: 'Personalize'
+}
const createVariantGroup2 = {
- count: 2,
- variant_groups: [
- {
- "uid": "uid",
- "name": "iPhone Colors",
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "content_types": [
- "iphone_product_page"
- ],
- "variant_count": 1,
- "variants": [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White"
- }
- ]
- },
- {
- "uid": "uid",
- "name": "iPhone",
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "content_types": [
- "iphone_prod_desc"
- ],
- "variant_count": 1,
- "variants": [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White"
- }
- ]
- }
- ],
- ungrouped_variants: [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_red",
- "name": "Red"
- }
- ],
- ungrouped_variant_count: 1
- }
+ count: 2,
+ variant_groups: [
+ {
+ uid: 'uid',
+ name: 'iPhone Colors',
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ content_types: [
+ 'iphone_product_page'
+ ],
+ variant_count: 1,
+ variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+ }
+ ]
+ },
+ {
+ uid: 'uid',
+ name: 'iPhone',
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ content_types: [
+ 'iphone_prod_desc'
+ ],
+ variant_count: 1,
+ variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+ }
+ ]
+ }
+ ],
+ ungrouped_variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_red',
+ name: 'Red'
+ }
+ ],
+ ungrouped_variant_count: 1
+}
export { createVariantGroup, createVariantGroup1, createVariantGroup2 }
diff --git a/test/api/mock/variants.js b/test/api/mock/variants.js
index 9e590226..178c7cc3 100644
--- a/test/api/mock/variants.js
+++ b/test/api/mock/variants.js
@@ -1,50 +1,50 @@
const variant = {
- "uid": "iphone_color_white", // optional
- "name": "White",
- "personalize_metadata": { // optional sent from personalize while creating variant
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
+ uid: 'iphone_color_white', // optional
+ name: 'White',
+ personalize_metadata: { // optional sent from personalize while creating variant
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
}
+}
const variant1 = {
- "created_by": "blt6cdf4e0b02b1c446",
- "updated_by": "blt303b74fa96e1082a",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White",
- }
+ created_by: 'blt6cdf4e0b02b1c446',
+ updated_by: 'blt303b74fa96e1082a',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+}
const variant2 = {
- "uid": "variant_group_1",
- "name": "Variant Group 1",
- "content_types": [
- "CTSTAET123"
- ],
- "personalize_metadata": {
- "experience_uid": "variant_group_ex_uid",
- "experience_short_uid": "variant_group_short_uid",
- "project_uid": "variant_group_project_uid"
- },
- "variants": [ // variants inside the group
- {
- "uid": "variant1",
- "created_by": "user_id",
- "updated_by": "user_id",
- "name": "Variant 1",
- "personalize_metadata": {
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
- "created_at": "2024-04-16T05:53:50.547Z",
- "updated_at": "2024-04-16T05:53:50.547Z"
- }
- ],
- "count": 1
+ uid: 'variant_group_1',
+ name: 'Variant Group 1',
+ content_types: [
+ 'CTSTAET123'
+ ],
+ personalize_metadata: {
+ experience_uid: 'variant_group_ex_uid',
+ experience_short_uid: 'variant_group_short_uid',
+ project_uid: 'variant_group_project_uid'
+ },
+ variants: [ // variants inside the group
+ {
+ uid: 'variant1',
+ created_by: 'user_id',
+ updated_by: 'user_id',
+ name: 'Variant 1',
+ personalize_metadata: {
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
+ },
+ created_at: '2024-04-16T05:53:50.547Z',
+ updated_at: '2024-04-16T05:53:50.547Z'
+ }
+ ],
+ count: 1
}
export { variant, variant1, variant2 }
diff --git a/test/api/mock/workflow.js b/test/api/mock/workflow.js
index d0baf113..198cacbd 100644
--- a/test/api/mock/workflow.js
+++ b/test/api/mock/workflow.js
@@ -1,8 +1,8 @@
-const firstWorkflow = {"workflow_stages":[{"color":"#2196f3","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"next_available_stages":["$all"],"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"entry_lock":"$none","name":"First stage"},{"color":"#e53935","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"next_available_stages":["$all"],"entry_lock":"$none","name":"Second stage"}],"admin_users":{"users":[]},"name":"First Workflow","content_types":["multi_page_from_json"]}
-const secondWorkflow = {"workflow_stages":[{"color":"#2196f3","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"next_available_stages":["$all"],"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"entry_lock":"$none","name":"first stage"},{"isNew":true,"color":"#e53935","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"next_available_stages":["$all"],"entry_lock":"$none","name":"stage 2"}],"admin_users":{"users":[]},"name":"Second workflow","enabled":true,"content_types":["multi_page"]}
-const finalWorkflow = {"workflow_stages":[{"color":"#2196f3","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"next_available_stages":["$all"],"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"entry_lock":"$none","name":"Review"},{"color":"#74ba76","SYS_ACL":{"roles":{"uids":[]},"users":{"uids":["$all"]},"others":{}},"allStages":true,"allUsers":true,"specificStages":false,"specificUsers":false,"next_available_stages":["$all"],"entry_lock":"$none","name":"Complet"}],"admin_users":{"users":[]},"name":"Workflow","enabled":true,"content_types":["single_page"]}
+const firstWorkflow = { workflow_stages: [{ color: '#2196f3', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, next_available_stages: ['$all'], allStages: true, allUsers: true, specificStages: false, specificUsers: false, entry_lock: '$none', name: 'First stage' }, { color: '#e53935', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, allStages: true, allUsers: true, specificStages: false, specificUsers: false, next_available_stages: ['$all'], entry_lock: '$none', name: 'Second stage' }], admin_users: { users: [] }, name: 'First Workflow', content_types: ['multi_page_from_json'] }
+const secondWorkflow = { workflow_stages: [{ color: '#2196f3', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, next_available_stages: ['$all'], allStages: true, allUsers: true, specificStages: false, specificUsers: false, entry_lock: '$none', name: 'first stage' }, { isNew: true, color: '#e53935', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, allStages: true, allUsers: true, specificStages: false, specificUsers: false, next_available_stages: ['$all'], entry_lock: '$none', name: 'stage 2' }], admin_users: { users: [] }, name: 'Second workflow', enabled: true, content_types: ['multi_page'] }
+const finalWorkflow = { workflow_stages: [{ color: '#2196f3', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, next_available_stages: ['$all'], allStages: true, allUsers: true, specificStages: false, specificUsers: false, entry_lock: '$none', name: 'Review' }, { color: '#74ba76', SYS_ACL: { roles: { uids: [] }, users: { uids: ['$all'] }, others: {} }, allStages: true, allUsers: true, specificStages: false, specificUsers: false, next_available_stages: ['$all'], entry_lock: '$none', name: 'Complet' }], admin_users: { users: [] }, name: 'Workflow', enabled: true, content_types: ['single_page'] }
-const firstPublishRules = {"isNew":true,"actions":["publish"],"content_types":["multi_page_from_json"],"locales":["en-at"],"environment":"environment_name","workflow_stage":"","approvers":{"users":["user_id"],"roles":["role_uid"]}}
-const secondPublishRules = {"isNew":true,"actions":["publish"],"content_types":["multi_page"],"locales":["en-at"],"environment":"environment_name","workflow_stage":"","approvers":{"users":["user_id"],"roles":["role_uid"]}}
+const firstPublishRules = { isNew: true, actions: ['publish'], content_types: ['multi_page_from_json'], locales: ['en-at'], environment: 'environment_name', workflow_stage: '', approvers: { users: ['user_id'], roles: ['role_uid'] } }
+const secondPublishRules = { isNew: true, actions: ['publish'], content_types: ['multi_page'], locales: ['en-at'], environment: 'environment_name', workflow_stage: '', approvers: { users: ['user_id'], roles: ['role_uid'] } }
-export {firstWorkflow, secondWorkflow, finalWorkflow, firstPublishRules, secondPublishRules}
\ No newline at end of file
+export { firstWorkflow, secondWorkflow, finalWorkflow, firstPublishRules, secondPublishRules }
diff --git a/test/api/taxonomy-test.js b/test/api/taxonomy-test.js
index e31c715b..86bbe597 100644
--- a/test/api/taxonomy-test.js
+++ b/test/api/taxonomy-test.js
@@ -56,7 +56,6 @@ describe('taxonomy api Test', () => {
.catch(done)
})
-
it('Fetch taxonomy from uid', done => {
makeTaxonomy(taxonomyUID)
.fetch()
diff --git a/test/api/terms-test.js b/test/api/terms-test.js
index 7d10a9bd..79aab144 100644
--- a/test/api/terms-test.js
+++ b/test/api/terms-test.js
@@ -6,8 +6,8 @@ import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
var stack = {}
-const taxonomy_uid = ''
-const term_uid = ''
+const taxonomyUid = ''
+const termUid = ''
const term = {
term: {
uid: 'term_test',
@@ -25,7 +25,7 @@ describe('Terms API Test', () => {
it('Create term', async () => {
try {
- const response = await makeTerms(taxonomy_uid).create(term)
+ const response = await makeTerms(taxonomyUid).create(term)
expect(response.notice).to.be.equal('Term created successfully.')
expect(response.uid).to.be.equal(term.term.uid)
} catch (err) {
@@ -35,7 +35,7 @@ describe('Terms API Test', () => {
it('Query and get all terms', async () => {
try {
- const response = await makeTerms(taxonomy_uid).query().find()
+ const response = await makeTerms(taxonomyUid).query().find()
expect(response.items).to.be.an('array')
expect(response.items[0].uid).not.to.be.equal(null)
expect(response.items[0].name).not.to.be.equal(null)
@@ -46,8 +46,8 @@ describe('Terms API Test', () => {
it('Fetch term from UID', async () => {
try {
- const response = await makeTerms(taxonomy_uid, term_uid).fetch()
- expect(response.uid).to.be.equal(term_uid)
+ const response = await makeTerms(taxonomyUid, termUid).fetch()
+ expect(response.uid).to.be.equal(termUid)
expect(response.name).not.to.be.equal(null)
expect(response.created_by).not.to.be.equal(null)
expect(response.updated_by).not.to.be.equal(null)
@@ -58,13 +58,13 @@ describe('Terms API Test', () => {
it('Update term', async () => {
try {
- const response = await makeTerms(taxonomy_uid, term_uid).fetch()
+ const response = await makeTerms(taxonomyUid, termUid).fetch()
.then((term) => {
term.name = 'fashion'
return term.update()
})
expect(response.notice).to.be.equal('Term updated successfully.')
- expect(response.uid).to.be.equal(term_uid)
+ expect(response.uid).to.be.equal(termUid)
expect(response.name).to.be.equal('fashion')
expect(response.created_by).not.to.be.equal(null)
expect(response.updated_by).not.to.be.equal(null)
@@ -75,7 +75,7 @@ describe('Terms API Test', () => {
it('Delete term from UID', async () => {
try {
- const response = await makeTerms(term_uid).delete()
+ const response = await makeTerms(termUid).delete()
expect(response.notice).to.be.equal('')
} catch (err) {
console.log(err)
@@ -84,7 +84,7 @@ describe('Terms API Test', () => {
it('Ancestors of the term given', async () => {
try {
- const response = await makeTerms(taxonomy_uid, term_uid).ancestors()
+ const response = await makeTerms(taxonomyUid, termUid).ancestors()
expect(response.terms[0].uid).not.to.be.equal(null)
expect(response.terms[0].name).not.to.be.equal(null)
expect(response.terms[0].created_by).not.to.be.equal(null)
@@ -96,7 +96,7 @@ describe('Terms API Test', () => {
it('Descendants of the term given', async () => {
try {
- const response = await makeTerms(taxonomy_uid, term_uid).descendants()
+ const response = await makeTerms(taxonomyUid, termUid).descendants()
expect(response.terms.uid).not.to.be.equal(null)
expect(response.terms.name).not.to.be.equal(null)
expect(response.terms.created_by).not.to.be.equal(null)
@@ -106,9 +106,9 @@ describe('Terms API Test', () => {
}
})
it('search term', async () => {
- term_string = ''
+ const termString = ''
try {
- const response = await makeTerms(taxonomy_uid).search(term_string)
+ const response = await makeTerms(taxonomyUid).search(termString)
expect(response.terms).to.be.an('array')
} catch (err) {
console.log(err)
@@ -120,7 +120,7 @@ describe('Terms API Test', () => {
parent_uid: 'parent_uid',
order: 2
}
- await makeTerms(taxonomy_uid, term_uid).move({ term })
+ await makeTerms(taxonomyUid, termUid).move({ term })
.then((term) => {
term.parent_uid = 'parent_uid'
console.log(term.move())
@@ -132,6 +132,6 @@ describe('Terms API Test', () => {
})
})
-function makeTerms (taxonomy_uid, term_uid = null) {
- return client.stack({ api_key: stack.api_key }).taxonomy(taxonomy_uid).terms(term_uid)
+function makeTerms (taxonomyUid, termUid = null) {
+ return client.stack({ api_key: stack.api_key }).taxonomy(taxonomyUid).terms(termUid)
}
diff --git a/test/api/ungroupedVariants-test.js b/test/api/ungroupedVariants-test.js
index a42ab83a..94b46404 100644
--- a/test/api/ungroupedVariants-test.js
+++ b/test/api/ungroupedVariants-test.js
@@ -6,16 +6,16 @@ import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
var stack = {}
-const variants ={
- "uid": "iphone_color_white", // optional
- "name": "White",
- "personalize_metadata": {
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
+const variants = {
+ uid: 'iphone_color_white', // optional
+ name: 'White',
+ personalize_metadata: {
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
}
+}
var variantsUID = ''
var deleteVariantsUID = ''
@@ -90,7 +90,6 @@ describe('Variants api Test', () => {
.catch(done)
})
-
it('Delete variants from uid', done => {
makeVariants(deleteVariantsUID)
.delete()
diff --git a/test/api/variantGroup-test.js b/test/api/variantGroup-test.js
index 1c7fa13e..695953f9 100644
--- a/test/api/variantGroup-test.js
+++ b/test/api/variantGroup-test.js
@@ -133,4 +133,4 @@ describe('Variant Group api Test', () => {
function makeVariantGroup (uid = null) {
return client.stack({ api_key: stack.api_key }).variantGroup(uid)
-}
\ No newline at end of file
+}
diff --git a/test/api/variants-test.js b/test/api/variants-test.js
index b01968de..bebc332d 100644
--- a/test/api/variants-test.js
+++ b/test/api/variants-test.js
@@ -1,7 +1,7 @@
import { expect } from 'chai'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../utility/fileOperations/readwrite'
-import { variant, variant1, variant2 } from './mock/variants.js'
+import { variant, variant2 } from './mock/variants.js'
import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
@@ -109,4 +109,4 @@ describe('Variants api Test', () => {
function makeVariants (uid = null) {
return client.stack({ api_key: stack.api_key }).variantGroup('uid').variants(uid)
-}
\ No newline at end of file
+}
diff --git a/test/sanity-check/api/auditlog-test.js b/test/sanity-check/api/auditlog-test.js
new file mode 100644
index 00000000..2fe8eaea
--- /dev/null
+++ b/test/sanity-check/api/auditlog-test.js
@@ -0,0 +1,32 @@
+import { expect } from 'chai'
+import { describe, it, setup } from 'mocha'
+import { jsonReader } from '../utility/fileOperations/readwrite.js'
+
+import { contentstackClient } from '../utility/ContentstackClient.js'
+
+let client = {}
+let uid = ''
+describe('Audit Log api Test', () => {
+ setup(() => {
+ const user = jsonReader('loggedinuser.json')
+ client = contentstackClient(user.authtoken)
+ })
+
+ it('Should Fetch all the Audit Logs', async () => {
+ const response = await makeAuditLog().fetchAll()
+ uid = response.items[0].uid
+ // eslint-disable-next-line no-unused-expressions
+ expect(Array.isArray(response.items)).to.be.true
+ // eslint-disable-next-line no-unused-expressions
+ expect(response.items[0].uid).not.to.be.undefined
+ })
+
+ it('Should Fetch a single audit log', async () => {
+ const response = await makeAuditLog(uid).fetch()
+ expect(response.log.uid).to.be.equal(uid)
+ })
+})
+
+function makeAuditLog (uid = null) {
+ return client.stack({ api_key: process.env.API_KEY }).auditLog(uid)
+}
diff --git a/test/sanity-check/api/branch-test.js b/test/sanity-check/api/branch-test.js
index 147fcd0d..34723a9f 100644
--- a/test/sanity-check/api/branch-test.js
+++ b/test/sanity-check/api/branch-test.js
@@ -12,15 +12,15 @@ describe('Branch api Test', () => {
client = contentstackClient(user.authtoken)
})
- it('should create a dev branch from stage branch',async () => {
- const response = await makeBranch().create({ branch: devBranch });
- expect(response.uid).to.be.equal(devBranch.uid);
- expect(response.source).to.be.equal(devBranch.source);
- expect(response.alias).to.not.equal(undefined);
- expect(response.delete).to.not.equal(undefined);
- expect(response.fetch).to.not.equal(undefined);
- await new Promise(resolve => setTimeout(resolve, 15000));
- });
+ it('should create a dev branch from stage branch', async () => {
+ const response = await makeBranch().create({ branch: devBranch })
+ expect(response.uid).to.be.equal(devBranch.uid)
+ expect(response.source).to.be.equal(devBranch.source)
+ expect(response.alias).to.not.equal(undefined)
+ expect(response.delete).to.not.equal(undefined)
+ expect(response.fetch).to.not.equal(undefined)
+ await new Promise(resolve => setTimeout(resolve, 15000))
+ })
it('should return main branch when query is called', done => {
makeBranch()
@@ -132,7 +132,7 @@ describe('Branch api Test', () => {
.catch(done)
})
- it('should merge given two branches', done => {
+ it('should merge given two branches', async () => {
const params = {
base_branch: branch.uid,
compare_branch: stageBranch.uid,
@@ -158,15 +158,11 @@ describe('Branch api Test', () => {
}
]
}
- makeBranch()
- .merge(mergeObj, params)
- .then((response) => {
- mergeJobUid = response.uid
- expect(response.merge_details.base_branch).to.be.equal(branch.uid)
- expect(response.merge_details.compare_branch).to.be.equal(stageBranch.uid)
- done()
- })
- .catch(done)
+ const response = await makeBranch().merge(mergeObj, params)
+ mergeJobUid = response.uid
+ expect(response.merge_details.base_branch).to.be.equal(branch.uid)
+ expect(response.merge_details.compare_branch).to.be.equal(stageBranch.uid)
+ await new Promise(resolve => setTimeout(resolve, 15000))
})
it('should list all recent merge jobs', done => {
diff --git a/test/sanity-check/api/contentType-test.js b/test/sanity-check/api/contentType-test.js
index 2a743360..2ba90009 100644
--- a/test/sanity-check/api/contentType-test.js
+++ b/test/sanity-check/api/contentType-test.js
@@ -7,7 +7,6 @@ import { contentstackClient } from '../utility/ContentstackClient.js'
let client = {}
let multiPageCTUid = ''
-let multiPageUpdateCTUid = 'multi_page'
describe('Content Type api Test', () => {
setup(() => {
@@ -115,7 +114,6 @@ describe('Content Type api Test', () => {
.catch(done)
})
-
it('should import content type', done => {
makeContentType().import({
content_type: path.join(__dirname, '../mock/contentType.json')
diff --git a/test/sanity-check/api/entry-test.js b/test/sanity-check/api/entry-test.js
index 62e378fa..ca3428eb 100644
--- a/test/sanity-check/api/entry-test.js
+++ b/test/sanity-check/api/entry-test.js
@@ -223,6 +223,6 @@ describe('Entry api Test', () => {
})
})
-function makeEntry(contentType, uid = null) {
+function makeEntry (contentType, uid = null) {
return client.stack({ api_key: process.env.API_KEY }).contentType(contentType).entry(uid)
}
diff --git a/test/sanity-check/api/entryVariants-test.js b/test/sanity-check/api/entryVariants-test.js
index aa2a5267..719f5539 100644
--- a/test/sanity-check/api/entryVariants-test.js
+++ b/test/sanity-check/api/entryVariants-test.js
@@ -1,228 +1,226 @@
-import { expect } from "chai";
-import { describe, it, setup } from "mocha";
-import { jsonReader } from "../utility/fileOperations/readwrite";
-import { createVariantGroup } from "../mock/variantGroup.js";
-import { variant } from "../mock/variants.js";
+import { expect } from 'chai'
+import { describe, it, setup } from 'mocha'
+import { jsonReader } from '../utility/fileOperations/readwrite'
+import { createVariantGroup } from '../mock/variantGroup.js'
+import { variant } from '../mock/variants.js'
import {
variantEntryFirst,
publishVariantEntryFirst,
- unpublishVariantEntryFirst,
-} from "../mock/variantEntry.js";
-import { contentstackClient } from "../utility/ContentstackClient.js";
+ unpublishVariantEntryFirst
+} from '../mock/variantEntry.js'
+import { contentstackClient } from '../utility/ContentstackClient.js'
-var client = {};
+var client = {}
-var stack = {};
-var variantUid = "";
-var variantGroupUid = "";
-var contentTypeUid = "";
-var entryUid = "";
+var variantUid = ''
+var variantGroupUid = ''
+var contentTypeUid = ''
+var entryUid = ''
-describe("Entry Variants api Test", () => {
+describe('Entry Variants api Test', () => {
setup(() => {
- const user = jsonReader("loggedinuser.json");
- stack = jsonReader("stack.json");
- client = contentstackClient(user.authtoken);
- const entry = jsonReader("entry.json");
- entryUid = entry[2].uid;
- contentTypeUid = entry[2].content_type_uid;
- });
-
- it("should create a Variant Group", (done) => {
+ const user = jsonReader('loggedinuser.json')
+ client = contentstackClient(user.authtoken)
+ const entry = jsonReader('entry.json')
+ entryUid = entry[2].uid
+ contentTypeUid = entry[2].content_type_uid
+ })
+
+ it('should create a Variant Group', (done) => {
makeVariantGroup()
.create(createVariantGroup)
.then((variantGroup) => {
- variantGroupUid = variantGroup.uid;
- expect(variantGroup.name).to.be.equal(createVariantGroup.name);
- expect(variantGroup.uid).to.be.equal(createVariantGroup.uid);
- done();
+ variantGroupUid = variantGroup.uid
+ expect(variantGroup.name).to.be.equal(createVariantGroup.name)
+ expect(variantGroup.uid).to.be.equal(createVariantGroup.uid)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create a Variants", (done) => {
+ it('should create a Variants', (done) => {
makeVariants()
.create(variant)
.then((variants) => {
- variantUid = variants.uid;
- expect(variants.name).to.be.equal(variant.name);
- expect(variants.uid).to.be.not.equal(null);
- done();
+ variantUid = variants.uid
+ expect(variants.name).to.be.equal(variant.name)
+ expect(variants.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should update/create variant of an entry", (done) => {
+ it('should update/create variant of an entry', (done) => {
makeEntryVariants(variantUid)
.update(variantEntryFirst)
.then((variantEntry) => {
- expect(variantEntry.entry.title).to.be.equal("First page variant");
- expect(variantEntry.entry._variant._uid).to.be.not.equal(null);
+ expect(variantEntry.entry.title).to.be.equal('First page variant')
+ expect(variantEntry.entry._variant._uid).to.be.not.equal(null)
expect(variantEntry.notice).to.be.equal(
- "Entry variant created successfully."
- );
- done();
+ 'Entry variant created successfully.'
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should get an entry variant", (done) => {
+ it('should get an entry variant', (done) => {
makeEntryVariants(variantUid)
.fetch(variantUid)
.then((variantEntry) => {
- expect(variantEntry.entry.title).to.be.equal("First page variant");
- expect(variantEntry.entry._variant._uid).to.be.not.equal(null);
- done();
+ expect(variantEntry.entry.title).to.be.equal('First page variant')
+ expect(variantEntry.entry._variant._uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should publish entry variant", (done) => {
- publishVariantEntryFirst.entry.variants[0].uid = variantUid;
+ it('should publish entry variant', (done) => {
+ publishVariantEntryFirst.entry.variants[0].uid = variantUid
makeEntry()
.entry(entryUid)
.publish({
publishDetails: publishVariantEntryFirst.entry,
- locale: publishVariantEntryFirst.locale,
+ locale: publishVariantEntryFirst.locale
})
.then((data) => {
expect(data.notice).to.be.equal(
- "The requested action has been performed."
- );
- expect(data.job_id).to.be.not.equal(null);
- done();
+ 'The requested action has been performed.'
+ )
+ expect(data.job_id).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should unpublish entry variant", (done) => {
- unpublishVariantEntryFirst.entry.variants[0].uid = variantUid;
+ it('should unpublish entry variant', (done) => {
+ unpublishVariantEntryFirst.entry.variants[0].uid = variantUid
makeEntry()
.entry(entryUid)
.unpublish({
publishDetails: publishVariantEntryFirst.entry,
- locale: publishVariantEntryFirst.locale,
+ locale: publishVariantEntryFirst.locale
})
.then((data) => {
expect(data.notice).to.be.equal(
- "The requested action has been performed."
- );
- expect(data.job_id).to.be.not.equal(null);
- done();
+ 'The requested action has been performed.'
+ )
+ expect(data.job_id).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should publish entry variant using api_version", (done) => {
- publishVariantEntryFirst.entry.variants[0].uid = variantUid;
+ it('should publish entry variant using api_version', (done) => {
+ publishVariantEntryFirst.entry.variants[0].uid = variantUid
makeEntry()
- .entry(entryUid, { api_version: "3.2" })
+ .entry(entryUid, { api_version: '3.2' })
.publish({
publishDetails: publishVariantEntryFirst.entry,
- locale: publishVariantEntryFirst.locale,
+ locale: publishVariantEntryFirst.locale
})
.then((data) => {
expect(data.notice).to.be.equal(
- "The requested action has been performed."
- );
- expect(data.job_id).to.be.not.equal(null);
- done();
+ 'The requested action has been performed.'
+ )
+ expect(data.job_id).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should unpublish entry variant using api_version", (done) => {
- unpublishVariantEntryFirst.entry.variants[0].uid = variantUid;
+ it('should unpublish entry variant using api_version', (done) => {
+ unpublishVariantEntryFirst.entry.variants[0].uid = variantUid
makeEntry()
- .entry(entryUid, { api_version: "3.2" })
+ .entry(entryUid, { api_version: '3.2' })
.unpublish({
publishDetails: unpublishVariantEntryFirst.entry,
- locale: unpublishVariantEntryFirst.locale,
+ locale: unpublishVariantEntryFirst.locale
})
.then((data) => {
expect(data.notice).to.be.equal(
- "The requested action has been performed."
- );
- expect(data.job_id).to.be.not.equal(null);
- done();
- })
- .catch(done);
- });
- it("should get all entry variants", (done) => {
+ 'The requested action has been performed.'
+ )
+ expect(data.job_id).to.be.not.equal(null)
+ done()
+ })
+ .catch(done)
+ })
+ it('should get all entry variants', (done) => {
makeEntryVariants()
.query({})
.find()
.then((variantEntries) => {
- expect(variantEntries.items).to.be.an("array");
+ expect(variantEntries.items).to.be.an('array')
expect(variantEntries.items[0].variants.title).to.be.equal(
- "First page variant"
- );
+ 'First page variant'
+ )
expect(variantEntries.items[0].variants._variant._uid).to.be.not.equal(
null
- );
- done();
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete entry variant from uid", (done) => {
+ it('should delete entry variant from uid', (done) => {
makeEntryVariants(variantUid)
.delete(variantUid)
.then((variantEntry) => {
expect(variantEntry.notice).to.be.equal(
- "Entry variant deleted successfully."
- );
- done();
+ 'Entry variant deleted successfully.'
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Delete a Variant from uid", (done) => {
+ it('Delete a Variant from uid', (done) => {
makeVariantGroup(variantGroupUid)
.variants(variantUid)
.delete()
.then((data) => {
- expect(data.message).to.be.equal("Variant deleted successfully");
- done();
+ expect(data.message).to.be.equal('Variant deleted successfully')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Delete a Variant Group from uid", (done) => {
+ it('Delete a Variant Group from uid', (done) => {
makeVariantGroup(variantGroupUid)
.delete()
.then((data) => {
expect(data.message).to.be.equal(
- "Variant Group and Variants deleted successfully"
- );
- done();
+ 'Variant Group and Variants deleted successfully'
+ )
+ done()
})
- .catch(done);
- });
-});
+ .catch(done)
+ })
+})
-function makeVariants(uid = null) {
+function makeVariants (uid = null) {
return client
.stack({ api_key: process.env.API_KEY })
.variantGroup(variantGroupUid)
- .variants(uid);
+ .variants(uid)
}
-function makeVariantGroup(uid = null) {
- return client.stack({ api_key: process.env.API_KEY }).variantGroup(uid);
+function makeVariantGroup (uid = null) {
+ return client.stack({ api_key: process.env.API_KEY }).variantGroup(uid)
}
-function makeEntryVariants(uid = null) {
+function makeEntryVariants (uid = null) {
return client
.stack({ api_key: process.env.API_KEY })
.contentType(contentTypeUid)
.entry(entryUid)
- .variants(uid);
+ .variants(uid)
}
-function makeEntry() {
+function makeEntry () {
return client
.stack({ api_key: process.env.API_KEY })
- .contentType(contentTypeUid);
+ .contentType(contentTypeUid)
}
diff --git a/test/sanity-check/api/globalfield-test.js b/test/sanity-check/api/globalfield-test.js
index 9dd35c08..789224fc 100644
--- a/test/sanity-check/api/globalfield-test.js
+++ b/test/sanity-check/api/globalfield-test.js
@@ -1,134 +1,132 @@
import path from 'path'
import { expect } from 'chai'
-import { cloneDeep } from 'lodash'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../utility/fileOperations/readwrite'
-import { createGlobalField, createNestedGlobalField, createNestedGlobalFieldForReference } from '../mock/globalfield'
+import { createGlobalField } from '../mock/globalfield'
import { contentstackClient } from '../utility/ContentstackClient.js'
import dotenv from 'dotenv'
dotenv.config()
let client = {}
let createGlobalFieldUid = ''
-describe("Global Field api Test", () => {
+describe('Global Field api Test', () => {
setup(() => {
- const user = jsonReader("loggedinuser.json");
- client = contentstackClient(user.authtoken);
- });
+ const user = jsonReader('loggedinuser.json')
+ client = contentstackClient(user.authtoken)
+ })
- it("should create global field", (done) => {
+ it('should create global field', (done) => {
makeGlobalField()
.create(createGlobalField)
.then((globalField) => {
- globalField = globalField.global_field;
- expect(globalField.uid).to.be.equal(createGlobalField.global_field.uid);
+ globalField = globalField.global_field
+ expect(globalField.uid).to.be.equal(createGlobalField.global_field.uid)
expect(globalField.title).to.be.equal(
createGlobalField.global_field.title
- );
+ )
expect(globalField.schema[0].uid).to.be.equal(
createGlobalField.global_field.schema[0].uid
- );
+ )
expect(globalField.schema[0].data_type).to.be.equal(
createGlobalField.global_field.schema[0].data_type
- );
+ )
expect(globalField.schema[0].display_name).to.be.equal(
createGlobalField.global_field.schema[0].display_name
- );
- done();
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should fetch global Field", (done) => {
+ it('should fetch global Field', (done) => {
makeGlobalField(createGlobalField.global_field.uid)
.fetch()
.then((globalField) => {
- globalField = globalField.global_field;
- expect(globalField.uid).to.be.equal(createGlobalField.global_field.uid);
+ globalField = globalField.global_field
+ expect(globalField.uid).to.be.equal(createGlobalField.global_field.uid)
expect(globalField.title).to.be.equal(
createGlobalField.global_field.title
- );
+ )
expect(globalField.schema[0].uid).to.be.equal(
createGlobalField.global_field.schema[0].uid
- );
+ )
expect(globalField.schema[0].data_type).to.be.equal(
createGlobalField.global_field.schema[0].data_type
- );
+ )
expect(globalField.schema[0].display_name).to.be.equal(
createGlobalField.global_field.schema[0].display_name
- );
- done();
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should update global Field", (done) => {
+ it('should update global Field', (done) => {
makeGlobalField(createGlobalField.global_field.uid)
.update(createGlobalField)
.then((updateGlobal) => {
- updateGlobal = updateGlobal.global_field;
+ updateGlobal = updateGlobal.global_field
expect(updateGlobal.uid).to.be.equal(
createGlobalField.global_field.uid
- );
+ )
expect(updateGlobal.title).to.be.equal(
createGlobalField.global_field.title
- );
+ )
expect(updateGlobal.schema[0].uid).to.be.equal(
createGlobalField.global_field.schema[0].uid
- );
+ )
expect(updateGlobal.schema[0].data_type).to.be.equal(
createGlobalField.global_field.schema[0].data_type
- );
+ )
expect(updateGlobal.schema[0].display_name).to.be.equal(
createGlobalField.global_field.schema[0].display_name
- );
- done();
+ )
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should import global Field", (done) => {
+ it('should import global Field', (done) => {
makeGlobalField()
.import({
- global_field: path.join(__dirname, "../mock/globalfield.json"),
+ global_field: path.join(__dirname, '../mock/globalfield.json')
})
.then((response) => {
- createGlobalFieldUid = response.uid;
- expect(response.uid).to.be.not.equal(null);
- done();
+ createGlobalFieldUid = response.uid
+ expect(response.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should get all global field from Query", (done) => {
+ it('should get all global field from Query', (done) => {
makeGlobalField()
.query()
.find()
.then((collection) => {
collection.items.forEach((globalField) => {
- expect(globalField.uid).to.be.not.equal(null);
- expect(globalField.title).to.be.not.equal(null);
- expect(globalField.schema).to.be.not.equal(null);
- });
- done();
+ expect(globalField.uid).to.be.not.equal(null)
+ expect(globalField.title).to.be.not.equal(null)
+ expect(globalField.schema).to.be.not.equal(null)
+ })
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
-
- it("should get global field title matching Upload", (done) => {
+ it('should get global field title matching Upload', (done) => {
makeGlobalField()
- .query({ query: { title: "Upload" } })
+ .query({ query: { title: 'Upload' } })
.find()
.then((collection) => {
collection.items.forEach((globalField) => {
- expect(globalField.uid).to.be.not.equal(null);
- expect(globalField.title).to.be.equal("Upload");
- });
- done();
+ expect(globalField.uid).to.be.not.equal(null)
+ expect(globalField.title).to.be.equal('Upload')
+ })
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
// it("should get all nested global fields from Query", (done) => {
// makeGlobalField({ api_version: '3.2' })
@@ -144,11 +142,10 @@ describe("Global Field api Test", () => {
// .catch(done);
// });
-
// it('should create nested global field for reference', done => {
// makeGlobalField({ api_version: '3.2' }).create(createNestedGlobalFieldForReference)
// .then(globalField => {
- // expect(globalField.global_field.uid).to.be.equal(createNestedGlobalFieldForReference.global_field.uid);
+ // expect(globalField.global_field.uid).to.be.equal(createNestedGlobalFieldForReference.global_field.uid);
// done();
// })
// .catch(err => {
@@ -217,36 +214,36 @@ describe("Global Field api Test", () => {
// });
// });
- it("should delete global Field", (done) => {
+ it('should delete global Field', (done) => {
makeGlobalField(createGlobalField.global_field.uid)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Global Field deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Global Field deleted successfully.')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete imported global Field", (done) => {
+ it('should delete imported global Field', (done) => {
makeGlobalField(createGlobalFieldUid)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Global Field deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Global Field deleted successfully.')
+ done()
})
- .catch(done);
- });
-});
-
-function makeGlobalField(globalFieldUid = null, options = {}) {
- let uid = null;
- let finalOptions = options;
- if (typeof globalFieldUid === "object") {
- finalOptions = globalFieldUid;
+ .catch(done)
+ })
+})
+
+function makeGlobalField (globalFieldUid = null, options = {}) {
+ let uid = null
+ let finalOptions = options
+ if (typeof globalFieldUid === 'object') {
+ finalOptions = globalFieldUid
} else {
- uid = globalFieldUid;
+ uid = globalFieldUid
}
- finalOptions = finalOptions || {};
+ finalOptions = finalOptions || {}
return client
- .stack({ api_key: process.env.API_KEY }).globalField(uid, finalOptions);
+ .stack({ api_key: process.env.API_KEY }).globalField(uid, finalOptions)
}
diff --git a/test/sanity-check/api/organization-test.js b/test/sanity-check/api/organization-test.js
index 4bb75aba..eecb2034 100644
--- a/test/sanity-check/api/organization-test.js
+++ b/test/sanity-check/api/organization-test.js
@@ -5,8 +5,7 @@ import { contentstackClient } from '../utility/ContentstackClient'
var user = {}
var client = {}
-var organization = {}
-let organizationUID = process.env.ORGANIZATION
+const organizationUID = process.env.ORGANIZATION
describe('Organization api test', () => {
setup(() => {
@@ -32,7 +31,6 @@ describe('Organization api test', () => {
for (const index in user.organizations) {
const organizations = user.organizations[index]
if (organizations.org_roles && (organizations.org_roles.filter(function (role) { return role.admin === true }).length > 0)) {
- organization = organizations
break
}
}
diff --git a/test/sanity-check/api/release-test.js b/test/sanity-check/api/release-test.js
index 3fe3f266..1abea55f 100644
--- a/test/sanity-check/api/release-test.js
+++ b/test/sanity-check/api/release-test.js
@@ -1,483 +1,483 @@
-import { describe, it, setup } from "mocha";
-import { jsonReader } from "../utility/fileOperations/readwrite.js";
-import { releaseCreate, releaseCreate2 } from "../mock/release.js";
-import { expect } from "chai";
-import { cloneDeep } from "lodash";
-import { contentstackClient } from "../utility/ContentstackClient.js";
-import { multiPageCT } from "../mock/content-type.js";
-import dotenv from "dotenv";
+import { describe, it, setup } from 'mocha'
+import { jsonReader } from '../utility/fileOperations/readwrite.js'
+import { releaseCreate, releaseCreate2 } from '../mock/release.js'
+import { expect } from 'chai'
+import { cloneDeep } from 'lodash'
+import { contentstackClient } from '../utility/ContentstackClient.js'
+import { multiPageCT } from '../mock/content-type.js'
+import dotenv from 'dotenv'
-dotenv.config();
-let client = {};
-let releaseUID = "";
-let releaseUID2 = "";
-let releaseUID3 = "";
-let releaseUID4 = "";
-let entries = {};
-const itemToDelete = {};
-const jobId = "";
+dotenv.config()
+let client = {}
+let releaseUID = ''
+let releaseUID2 = ''
+let releaseUID3 = ''
+let releaseUID4 = ''
+let entries = {}
+const itemToDelete = {}
+let jobId = ''
-describe("Relases api Test", () => {
+describe('Relases api Test', () => {
setup(() => {
- const user = jsonReader("loggedinuser.json");
- entries = jsonReader("entry.json");
- client = contentstackClient(user.authtoken);
- });
+ const user = jsonReader('loggedinuser.json')
+ entries = jsonReader('entry.json')
+ client = contentstackClient(user.authtoken)
+ })
- it("should create a Release", (done) => {
+ it('should create a Release', (done) => {
makeRelease()
.create(releaseCreate)
.then((release) => {
- releaseUID = release.uid;
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ releaseUID = release.uid
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.not.equal(null);
- done();
+ )
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create a Release 2", (done) => {
+ it('should create a Release 2', (done) => {
makeRelease()
.create(releaseCreate2)
.then((release) => {
- releaseUID2 = release.uid;
- expect(release.name).to.be.equal(releaseCreate2.release.name);
+ releaseUID2 = release.uid
+ expect(release.name).to.be.equal(releaseCreate2.release.name)
expect(release.description).to.be.equal(
releaseCreate2.release.description
- );
- expect(release.uid).to.be.not.equal(null);
- done();
+ )
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should fetch a Release from Uid", (done) => {
+ it('should fetch a Release from Uid', (done) => {
makeRelease(releaseUID)
.fetch()
.then((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.equal(releaseUID);
- done();
+ )
+ expect(release.uid).to.be.equal(releaseUID)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create release item", (done) => {
+ it('should create release item', (done) => {
const item = {
version: entries[0]._version,
uid: entries[0].uid,
content_type_uid: multiPageCT.content_type.uid,
- action: "publish",
- locale: "en-us",
- };
+ action: 'publish',
+ locale: 'en-us'
+ }
makeRelease(releaseUID)
.item()
.create({ item })
.then((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.equal(releaseUID);
- expect(release.items.length).to.be.equal(1);
- done();
+ )
+ expect(release.uid).to.be.equal(releaseUID)
+ expect(release.items.length).to.be.equal(1)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create release items", (done) => {
+ it('should create release items', (done) => {
const items = [
{
version: entries[1]._version,
uid: entries[1].uid,
content_type_uid: multiPageCT.content_type.uid,
- action: "publish",
- locale: "en-us",
+ action: 'publish',
+ locale: 'en-us'
},
{
version: entries[2]._version,
uid: entries[2].uid,
content_type_uid: multiPageCT.content_type.uid,
- action: "publish",
- locale: "en-us",
- },
- ];
+ action: 'publish',
+ locale: 'en-us'
+ }
+ ]
makeRelease(releaseUID)
.item()
.create({ items })
.then((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.equal(releaseUID);
- expect(release.items.length).to.be.equal(3);
- done();
+ )
+ expect(release.uid).to.be.equal(releaseUID)
+ expect(release.items.length).to.be.equal(3)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should fetch a Release items from Uid", (done) => {
+ it('should fetch a Release items from Uid', (done) => {
makeRelease(releaseUID)
.item()
- .findAll({ release_version: "2.0" })
+ .findAll({ release_version: '2.0' })
.then((collection) => {
- const itemdelete = collection.items[0];
- itemToDelete["version"] = itemdelete.version;
- itemToDelete.action = itemdelete.action;
- itemToDelete.uid = itemdelete.uid;
- itemToDelete.locale = itemdelete.locale;
- itemToDelete.content_type_uid = itemdelete.content_type_uid;
- expect(collection.items.length).to.be.equal(3);
- done();
+ const itemdelete = collection.items[0]
+ itemToDelete['version'] = itemdelete.version
+ itemToDelete.action = itemdelete.action
+ itemToDelete.uid = itemdelete.uid
+ itemToDelete.locale = itemdelete.locale
+ itemToDelete.content_type_uid = itemdelete.content_type_uid
+ expect(collection.items.length).to.be.equal(3)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should move release items from release1 to release2", (done) => {
+ it('should move release items from release1 to release2', (done) => {
const data = {
release_uid: releaseUID2,
items: [
{
uid: entries[1].uid,
- locale: "en-us",
- },
- ],
- };
+ locale: 'en-us'
+ }
+ ]
+ }
makeRelease(releaseUID)
.item()
- .move({ param: data, release_version: "2.0" })
+ .move({ param: data, release_version: '2.0' })
.then((release) => {
- expect(release.notice).to.contain('successful');
- done();
+ expect(release.notice).to.contain('successful')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific item", (done) => {
+ it('should delete specific item', (done) => {
makeRelease(releaseUID)
.item()
.delete({ items: [itemToDelete] })
.then((release) => {
- expect(release.notice).to.be.equal('Item(s) send to remove from release successfully.');
- done();
+ expect(release.notice).to.be.equal('Item(s) send to remove from release successfully.')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete all items", (done) => {
+ it('should delete all items', (done) => {
makeRelease(releaseUID)
.item()
- .delete({ release_version: "2.0" })
+ .delete({ release_version: '2.0' })
.then((release) => {
- expect(release.notice).to.contain('successful');
- done();
+ expect(release.notice).to.contain('successful')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should fetch and Update a Release from Uid", (done) => {
+ it('should fetch and Update a Release from Uid', (done) => {
makeRelease(releaseUID)
.fetch()
.then((release) => {
- release.name = "Update release name";
- return release.update();
+ release.name = 'Update release name'
+ return release.update()
})
.then((release) => {
- expect(release.name).to.be.equal("Update release name");
+ expect(release.name).to.be.equal('Update release name')
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.not.equal(null);
- done();
+ )
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should update a Release from Uid", (done) => {
- const relaseObject = makeRelease(releaseUID);
- Object.assign(relaseObject, cloneDeep(releaseCreate.release));
+ it('should update a Release from Uid', (done) => {
+ const relaseObject = makeRelease(releaseUID)
+ Object.assign(relaseObject, cloneDeep(releaseCreate.release))
relaseObject
.update()
.then((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.not.equal(null);
- done();
+ )
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should get all Releases", (done) => {
+ it('should get all Releases', (done) => {
makeRelease()
.query()
.find()
.then((releaseCollection) => {
releaseCollection.items.forEach((release) => {
- expect(release.name).to.be.not.equal(null);
- expect(release.uid).to.be.not.equal(null);
- });
- done();
+ expect(release.name).to.be.not.equal(null)
+ expect(release.uid).to.be.not.equal(null)
+ })
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should get specific Releases with name ", (done) => {
+ it('should get specific Releases with name ', (done) => {
makeRelease()
.query({ query: { name: releaseCreate.release.name } })
.find()
.then((releaseCollection) => {
releaseCollection.items.forEach((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
- expect(release.uid).to.be.not.equal(null);
- });
- done();
+ expect(release.name).to.be.equal(releaseCreate.release.name)
+ expect(release.uid).to.be.not.equal(null)
+ })
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should clone specific Releases with Uid ", (done) => {
+ it('should clone specific Releases with Uid ', (done) => {
makeRelease(releaseUID)
- .clone({ name: "New Clone Name", description: "New Desc" })
+ .clone({ name: 'New Clone Name', description: 'New Desc' })
.then((release) => {
- releaseUID3 = release.uid;
- expect(release.name).to.be.equal("New Clone Name");
- expect(release.description).to.be.equal("New Desc");
- expect(release.uid).to.be.not.equal(null);
- done();
+ releaseUID3 = release.uid
+ expect(release.name).to.be.equal('New Clone Name')
+ expect(release.description).to.be.equal('New Desc')
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Bulk Operation: should add items to a release", (done) => {
+ it('Bulk Operation: should add items to a release', (done) => {
const items = {
release: releaseUID,
- action: "publish",
- locale: ["en-us"],
+ action: 'publish',
+ locale: ['en-us'],
reference: true,
items: [
{
version: entries[1]._version,
uid: entries[1].uid,
content_type_uid: multiPageCT.content_type.uid,
- locale: "en-us",
- title: entries[1].title,
+ locale: 'en-us',
+ title: entries[1].title
},
{
version: entries[2]._version,
uid: entries[2].uid,
content_type_uid: multiPageCT.content_type.uid,
- locale: "en-us",
- title: entries[2].title,
- },
- ],
- };
+ locale: 'en-us',
+ title: entries[2].title
+ }
+ ]
+ }
doBulkOperation()
- .addItems({ data: items, bulk_version: "2.0" })
+ .addItems({ data: items, bulk_version: '2.0' })
.then((response) => {
- jobId = response.job_id;
+ jobId = response.job_id
expect(response.notice).to.equal(
- "Your add to release request is in progress."
- );
- expect(response.job_id).to.not.equal(undefined);
- done();
+ 'Your add to release request is in progress.'
+ )
+ expect(response.job_id).to.not.equal(undefined)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Bulk Operation: should fetch job status details", (done) => {
+ it('Bulk Operation: should fetch job status details', (done) => {
doBulkOperation()
- .jobStatus({ job_id: jobId, bulk_version: "2.0" })
+ .jobStatus({ job_id: jobId, bulk_version: '2.0' })
.then((response) => {
- expect(response.job).to.not.equal(undefined);
- expect(response.job._id).to.equal(jobId);
- done();
+ expect(response.job).to.not.equal(undefined)
+ expect(response.job._id).to.equal(jobId)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Bulk Operation: should update items to a release", (done) => {
+ it('Bulk Operation: should update items to a release', (done) => {
const items = {
release: releaseUID,
- action: "publish",
- locale: ["en-us"],
+ action: 'publish',
+ locale: ['en-us'],
reference: true,
- items: ["$all"],
- };
+ items: ['$all']
+ }
doBulkOperation()
- .updateItems({ data: items, bulk_version: "2.0" })
+ .updateItems({ data: items, bulk_version: '2.0' })
.then((response) => {
expect(response.notice).to.equal(
- "Your update release items to latest version request is in progress."
- );
- expect(response.job_id).to.not.equal(undefined);
- done();
+ 'Your update release items to latest version request is in progress.'
+ )
+ expect(response.job_id).to.not.equal(undefined)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific Releases with Uid ", (done) => {
+ it('should delete specific Releases with Uid ', (done) => {
makeRelease(releaseUID)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Release deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Release deleted successfully.')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific Releases with Uid 2", (done) => {
+ it('should delete specific Releases with Uid 2', (done) => {
makeRelease(releaseUID2)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Release deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Release deleted successfully.')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete cloned Release with Uid", (done) => {
+ it('should delete cloned Release with Uid', (done) => {
makeRelease(releaseUID3)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Release deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Release deleted successfully.')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create a Release v2", (done) => {
+ it('should create a Release v2', (done) => {
makeRelease()
.create(releaseCreate)
.then((release) => {
- releaseUID4 = release.uid;
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ releaseUID4 = release.uid
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.not.equal(null);
- done();
+ )
+ expect(release.uid).to.be.not.equal(null)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should create release item fo v2", (done) => {
+ it('should create release item fo v2', (done) => {
const item = {
version: entries[0]._version,
uid: entries[0].uid,
content_type_uid: multiPageCT.content_type.uid,
- action: "publish",
- locale: "en-us",
- title: entries[0].title,
- };
+ action: 'publish',
+ locale: 'en-us',
+ title: entries[0].title
+ }
makeRelease(releaseUID4)
.item()
- .create({ item, release_version: "2.0" })
+ .create({ item, release_version: '2.0' })
.then((release) => {
- expect(release.name).to.be.equal(releaseCreate.release.name);
+ expect(release.name).to.be.equal(releaseCreate.release.name)
expect(release.description).to.be.equal(
releaseCreate.release.description
- );
- expect(release.uid).to.be.equal(releaseUID4);
- done();
+ )
+ expect(release.uid).to.be.equal(releaseUID4)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific item for v2", (done) => {
+ it('should delete specific item for v2', (done) => {
makeRelease(releaseUID4)
.item()
.delete({
- item: { uid: entries[0].uid, locale: "en-us" },
- release_version: "2.0",
+ item: { uid: entries[0].uid, locale: 'en-us' },
+ release_version: '2.0'
})
.then((release) => {
- expect(release.notice).to.contain('successful');
- done();
+ expect(release.notice).to.contain('successful')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Bulk Operation: should add items to a release 2", (done) => {
+ it('Bulk Operation: should add items to a release 2', (done) => {
const items = {
release: releaseUID4,
- action: "publish",
- locale: ["en-us"],
+ action: 'publish',
+ locale: ['en-us'],
reference: true,
items: [
{
version: entries[1]._version,
uid: entries[1].uid,
content_type_uid: multiPageCT.content_type.uid,
- locale: "en-us",
- title: entries[1].title,
+ locale: 'en-us',
+ title: entries[1].title
},
{
version: entries[2]._version,
uid: entries[2].uid,
content_type_uid: multiPageCT.content_type.uid,
- locale: "en-us",
- title: entries[2].title,
- },
- ],
- };
+ locale: 'en-us',
+ title: entries[2].title
+ }
+ ]
+ }
doBulkOperation()
- .addItems({ data: items, bulk_version: "2.0" })
+ .addItems({ data: items, bulk_version: '2.0' })
.then((response) => {
expect(response.notice).to.equal(
- "Your add to release request is in progress."
- );
- expect(response.job_id).to.not.equal(undefined);
- done();
+ 'Your add to release request is in progress.'
+ )
+ expect(response.job_id).to.not.equal(undefined)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific items for v2", (done) => {
+ it('should delete specific items for v2', (done) => {
makeRelease(releaseUID4)
.item()
.delete({
items: [
- { uid: entries[1].uid,
- locale: "en-us"
+ { uid: entries[1].uid,
+ locale: 'en-us'
},
{
uid: entries[2].uid,
- locale: "en-us",
- },
+ locale: 'en-us'
+ }
],
- release_version: "2.0",
+ release_version: '2.0'
})
.then((release) => {
- expect(release.notice).to.contain('successful');
- done();
+ expect(release.notice).to.contain('successful')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should delete specific Releases with Uid ", (done) => {
+ it('should delete specific Releases with Uid ', (done) => {
makeRelease(releaseUID4)
.delete()
.then((data) => {
- expect(data.notice).to.be.equal("Release deleted successfully.");
- done();
+ expect(data.notice).to.be.equal('Release deleted successfully.')
+ done()
})
- .catch(done);
- });
-});
+ .catch(done)
+ })
+})
-function makeRelease(uid = null) {
- return client.stack({ api_key: process.env.API_KEY }).release(uid);
+function makeRelease (uid = null) {
+ return client.stack({ api_key: process.env.API_KEY }).release(uid)
}
-function doBulkOperation(uid = null) {
- return client.stack({ api_key: process.env.API_KEY }).bulkOperation();
+function doBulkOperation (uid = null) {
+ return client.stack({ api_key: process.env.API_KEY }).bulkOperation()
}
diff --git a/test/sanity-check/api/role-test.js b/test/sanity-check/api/role-test.js
index 9f4f961f..fac992d6 100644
--- a/test/sanity-check/api/role-test.js
+++ b/test/sanity-check/api/role-test.js
@@ -9,19 +9,6 @@ dotenv.config()
let client = {}
let roleUID = ''
-const taxonomy = {
- uid: 'taxonomy_testing1',
- name: 'taxonomy testing1',
- description: 'Description for Taxonomy testing'
-}
-const term = {
- term: {
- uid: 'term_test1',
- name: 'Term test1',
- parent_uid: null
- }
-}
-
describe('Role api test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
@@ -180,15 +167,8 @@ describe('Role api test', () => {
// const taxonomyResponse = await client.stack({ api_key: process.env.API_KEY }).taxonomy(taxonomy.uid).delete({ force: true })
// expect(taxonomyResponse.status).to.be.equal(204)
// })
-
})
function getRole (uid = null) {
return client.stack({ api_key: process.env.API_KEY }).role(uid)
}
-
-
-function makeTerms (taxonomyUid, termUid = null) {
- return client.stack({ api_key: process.env.API_KEY }).taxonomy(taxonomyUid).terms(termUid)
-}
-
diff --git a/test/sanity-check/api/team-test.js b/test/sanity-check/api/team-test.js
index 2f9de0b9..2ba28293 100644
--- a/test/sanity-check/api/team-test.js
+++ b/test/sanity-check/api/team-test.js
@@ -12,7 +12,7 @@ const stackApiKey = process.env.API_KEY
let userId = ''
let teamUid1 = ''
let teamUid2 = ''
-const orgAdminRole = ''
+let orgAdminRole = ''
let adminRole = ''
let contentManagerRole = ''
let developerRole = ''
@@ -22,7 +22,7 @@ describe('Teams API Test', () => {
const user = jsonReader('loggedinuser.json')
client = contentstackClient(user.authtoken)
const orgRoles = jsonReader('orgRoles.json')
- orgAdminRole = orgRoles.find(role => role.name === 'admin').uid;
+ orgAdminRole = orgRoles.find(role => role.name === 'admin').uid
})
it('should create new team 1 when required object is passed', async () => {
@@ -98,9 +98,9 @@ describe('Teams Stack Role Mapping API Test', () => {
const user = jsonReader('loggedinuser.json')
client = contentstackClient(user.authtoken)
const stackRoles = jsonReader('roles.json')
- adminRole = stackRoles.find(role => role.name === 'Admin').uid;
- contentManagerRole = stackRoles.find(role => role.name === 'Content Manager').uid;
- developerRole = stackRoles.find(role => role.name === 'Developer').uid;
+ adminRole = stackRoles.find(role => role.name === 'Admin').uid
+ contentManagerRole = stackRoles.find(role => role.name === 'Content Manager').uid
+ developerRole = stackRoles.find(role => role.name === 'Developer').uid
})
it('should add roles', done => {
diff --git a/test/sanity-check/api/terms-test.js b/test/sanity-check/api/terms-test.js
index 097ab370..871f870e 100644
--- a/test/sanity-check/api/terms-test.js
+++ b/test/sanity-check/api/terms-test.js
@@ -47,19 +47,19 @@ describe('Terms API Test', () => {
it('should create term', async () => {
const response = await makeTerms(taxonomy.uid).create(term)
expect(response.uid).to.be.equal(term.term.uid)
- await new Promise(resolve => setTimeout(resolve, 15000));
+ await new Promise(resolve => setTimeout(resolve, 15000))
})
it('should create child term 1', async () => {
const response = await makeTerms(taxonomy.uid).create(childTerm1)
expect(response.uid).to.be.equal(childTerm1.term.uid)
- await new Promise(resolve => setTimeout(resolve, 15000));
+ await new Promise(resolve => setTimeout(resolve, 15000))
})
it('should create child term 2', async () => {
const response = await makeTerms(taxonomy.uid).create(childTerm2)
expect(response.uid).to.be.equal(childTerm2.term.uid)
- await new Promise(resolve => setTimeout(resolve, 15000));
+ await new Promise(resolve => setTimeout(resolve, 15000))
})
it('should query and get all terms', done => {
@@ -172,15 +172,15 @@ describe('Branch creation api Test', () => {
})
it('should create staging branch', async () => {
- const response = await makeBranch().create({ branch: stageBranch });
- expect(response.uid).to.be.equal(stageBranch.uid);
- expect(response.urlPath).to.be.equal(`/stacks/branches/${stageBranch.uid}`);
- expect(response.source).to.be.equal(stageBranch.source);
- expect(response.alias).to.not.equal(undefined);
- expect(response.fetch).to.not.equal(undefined);
- expect(response.delete).to.not.equal(undefined);
- await new Promise(resolve => setTimeout(resolve, 15000));
- });
+ const response = await makeBranch().create({ branch: stageBranch })
+ expect(response.uid).to.be.equal(stageBranch.uid)
+ expect(response.urlPath).to.be.equal(`/stacks/branches/${stageBranch.uid}`)
+ expect(response.source).to.be.equal(stageBranch.source)
+ expect(response.alias).to.not.equal(undefined)
+ expect(response.fetch).to.not.equal(undefined)
+ expect(response.delete).to.not.equal(undefined)
+ await new Promise(resolve => setTimeout(resolve, 15000))
+ })
})
function makeBranch (uid = null) {
diff --git a/test/sanity-check/api/ungroupedVariants-test.js b/test/sanity-check/api/ungroupedVariants-test.js
index 38eb19f4..ac2fbf11 100644
--- a/test/sanity-check/api/ungroupedVariants-test.js
+++ b/test/sanity-check/api/ungroupedVariants-test.js
@@ -4,23 +4,21 @@ import { jsonReader } from '../utility/fileOperations/readwrite'
import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
-var stack = {}
const variants = {
- "uid": "iphone_color_white", // optional
- "name": "White",
- "personalize_metadata": {
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
+ uid: 'iphone_color_white', // optional
+ name: 'White',
+ personalize_metadata: {
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
+ }
}
var variantsUID = ''
describe('Ungrouped Variants api Test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
- stack = jsonReader('stack.json')
client = contentstackClient(user.authtoken)
})
it('Should create ungrouped variants create', done => {
@@ -94,6 +92,6 @@ describe('Ungrouped Variants api Test', () => {
})
})
-function makeVariants(uid = null) {
+function makeVariants (uid = null) {
return client.stack({ api_key: process.env.API_KEY }).variants(uid)
}
diff --git a/test/sanity-check/api/variantGroup-test.js b/test/sanity-check/api/variantGroup-test.js
index c1f1f080..4ad64ebf 100644
--- a/test/sanity-check/api/variantGroup-test.js
+++ b/test/sanity-check/api/variantGroup-test.js
@@ -1,17 +1,14 @@
import { expect } from 'chai'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../utility/fileOperations/readwrite'
-import { createVariantGroup, createVariantGroup1, createVariantGroup2 } from '../mock/variantGroup.js'
+import { createVariantGroup } from '../mock/variantGroup.js'
import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
-var stack = {}
-var tokenUID = ''
describe('Variant Group api Test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
- stack = jsonReader('stack.json')
client = contentstackClient(user.authtoken)
})
@@ -80,6 +77,6 @@ describe('Variant Group api Test', () => {
})
})
-function makeVariantGroup(uid = null) {
+function makeVariantGroup (uid = null) {
return client.stack({ api_key: process.env.API_KEY }).variantGroup(uid)
-}
\ No newline at end of file
+}
diff --git a/test/sanity-check/api/variants-test.js b/test/sanity-check/api/variants-test.js
index 6f73976a..297de7ca 100644
--- a/test/sanity-check/api/variants-test.js
+++ b/test/sanity-check/api/variants-test.js
@@ -2,19 +2,17 @@ import { expect } from 'chai'
import { describe, it, setup } from 'mocha'
import { jsonReader } from '../utility/fileOperations/readwrite'
import { createVariantGroup } from '../mock/variantGroup.js'
-import { variant, variant1, variant2 } from '../mock/variants.js'
+import { variant } from '../mock/variants.js'
import { contentstackClient } from '../utility/ContentstackClient.js'
var client = {}
-var stack = {}
var variantUid = ''
-var variantName = ''
+let variantName = ''
var variantGroupUid = ''
describe('Variants api Test', () => {
setup(() => {
const user = jsonReader('loggedinuser.json')
- stack = jsonReader('stack.json')
client = contentstackClient(user.authtoken)
})
@@ -64,7 +62,7 @@ describe('Variants api Test', () => {
variants.items.forEach((variants) => {
variantUid = variants.uid
variantName = variants.name
- expect(variants.name).to.be.not.equal(null)
+ expect(variantName).to.be.not.equal(null)
expect(variants.uid).to.be.not.equal(null)
})
done()
@@ -129,10 +127,10 @@ describe('Variants api Test', () => {
})
})
-function makeVariants(uid = null) {
+function makeVariants (uid = null) {
return client.stack({ api_key: process.env.API_KEY }).variantGroup(variantGroupUid).variants(uid)
}
-function makeVariantGroup(uid = null) {
+function makeVariantGroup (uid = null) {
return client.stack({ api_key: process.env.API_KEY }).variantGroup(uid)
-}
\ No newline at end of file
+}
diff --git a/test/sanity-check/mock/globalfield.js b/test/sanity-check/mock/globalfield.js
index ef1d3ec0..46a529b3 100644
--- a/test/sanity-check/mock/globalfield.js
+++ b/test/sanity-check/mock/globalfield.js
@@ -1,71 +1,71 @@
const createGlobalField = {
global_field: {
- title: "First",
- uid: "first",
+ title: 'First',
+ uid: 'first',
schema: [
{
- display_name: "Name",
- uid: "name",
- data_type: "text",
+ display_name: 'Name',
+ uid: 'name',
+ data_type: 'text'
},
{
- data_type: "text",
- display_name: "Rich text editor",
- uid: "description",
+ data_type: 'text',
+ display_name: 'Rich text editor',
+ uid: 'description',
field_metadata: {
allow_rich_text: true,
- description: "",
+ description: '',
multiline: false,
- rich_text_type: "advanced",
+ rich_text_type: 'advanced',
options: [],
- version: 3,
+ version: 3
},
multiple: false,
mandatory: false,
- unique: false,
- },
- ],
- },
-};
+ unique: false
+ }
+ ]
+ }
+}
const createNestedGlobalField = {
- "global_field": {
- "title": "Nested Global Fields9",
- "uid": "nested_global_field9",
- "schema": [
- {
- "data_type": "text",
- "display_name": "Single Line Textbox",
- "uid": "single_line"
- },
- {
- "data_type": "global_field",
- "display_name": "Global",
- "uid": "global_field",
- "reference_to": "nested_global_field33"
- }
- ]
+ global_field: {
+ title: 'Nested Global Fields9',
+ uid: 'nested_global_field9',
+ schema: [
+ {
+ data_type: 'text',
+ display_name: 'Single Line Textbox',
+ uid: 'single_line'
+ },
+ {
+ data_type: 'global_field',
+ display_name: 'Global',
+ uid: 'global_field',
+ reference_to: 'nested_global_field33'
+ }
+ ]
}
}
const createNestedGlobalFieldForReference = {
- "global_field": {
- "title": "nested global field for reference",
- "uid": "nested_global_field33",
- "schema": [
- {
- "data_type": "text",
- "display_name": "Single Line Textbox",
- "uid": "single_line"
- },
- {
- "data_type": "global_field",
- "display_name": "Global",
- "uid": "global_field",
- "reference_to": "first"
- }
- ]
+ global_field: {
+ title: 'nested global field for reference',
+ uid: 'nested_global_field33',
+ schema: [
+ {
+ data_type: 'text',
+ display_name: 'Single Line Textbox',
+ uid: 'single_line'
+ },
+ {
+ data_type: 'global_field',
+ display_name: 'Global',
+ uid: 'global_field',
+ reference_to: 'first'
+ }
+ ]
}
}
-export { createGlobalField, createNestedGlobalField, createNestedGlobalFieldForReference };
+export { createGlobalField, createNestedGlobalField, createNestedGlobalFieldForReference }
diff --git a/test/sanity-check/mock/variantEntry.js b/test/sanity-check/mock/variantEntry.js
index ac8d9ef6..b73eede6 100644
--- a/test/sanity-check/mock/variantEntry.js
+++ b/test/sanity-check/mock/variantEntry.js
@@ -1,49 +1,49 @@
const variantEntryFirst = {
entry: {
- title: "First page variant",
- url: "/first-page-variant",
+ title: 'First page variant',
+ url: '/first-page-variant',
_variant: {
- _change_set: ["title", "url"],
- },
- },
-};
+ _change_set: ['title', 'url']
+ }
+ }
+}
var publishVariantEntryFirst = {
entry: {
- environments: ["development"],
- locales: ["en-us", "en-at"],
+ environments: ['development'],
+ locales: ['en-us', 'en-at'],
variants: [
{
- uid: "",
- version: 1,
- },
+ uid: '',
+ version: 1
+ }
],
variant_rules: {
publish_latest_base: false,
- publish_latest_base_conditionally: true,
- },
+ publish_latest_base_conditionally: true
+ }
},
- locale: "en-us",
- version: 1,
-};
+ locale: 'en-us',
+ version: 1
+}
const unpublishVariantEntryFirst = {
entry: {
- environments: ["development"],
- locales: ["en-at"],
+ environments: ['development'],
+ locales: ['en-at'],
variants: [
{
- uid: "",
- version: 1,
- },
+ uid: '',
+ version: 1
+ }
],
variant_rules: {
publish_latest_base: false,
- publish_latest_base_conditionally: true,
- },
+ publish_latest_base_conditionally: true
+ }
},
- locale: "en-us",
- version: 1,
-};
+ locale: 'en-us',
+ version: 1
+}
-export { variantEntryFirst, publishVariantEntryFirst, unpublishVariantEntryFirst };
+export { variantEntryFirst, publishVariantEntryFirst, unpublishVariantEntryFirst }
diff --git a/test/sanity-check/mock/variantGroup.js b/test/sanity-check/mock/variantGroup.js
index a4f24b1f..1187b6fd 100644
--- a/test/sanity-check/mock/variantGroup.js
+++ b/test/sanity-check/mock/variantGroup.js
@@ -1,82 +1,82 @@
const createVariantGroup = {
- "name": "Colors",
- "content_types": [
- "multi_page"
- ],
- "uid": "iphone_color_white",
- }
+ name: 'Colors',
+ content_types: [
+ 'multi_page'
+ ],
+ uid: 'iphone_color_white'
+}
const createVariantGroup1 = {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "uid11",
- "name": "iPhone Colors",
- "content_types": [
- "multi_page"
- ],
- "source" : "Personalize"
- }
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'uid11',
+ name: 'iPhone Colors',
+ content_types: [
+ 'multi_page'
+ ],
+ source: 'Personalize'
+}
const createVariantGroup2 = {
- count: 2,
- variant_groups: [
- {
- "uid": "uid21",
- "name": "iPhone Colors",
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "content_types": [
- "multi_page"
- ],
- "variant_count": 1,
- "variants": [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White"
- }
- ]
- },
- {
- "uid": "uid22",
- "name": "iPhone",
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "content_types": [
- "iphone_prod_desc"
- ],
- "variant_count": 1,
- "variants": [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White"
- }
- ]
- }
- ],
- ungrouped_variants: [
- {
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_red",
- "name": "Red"
- }
- ],
- ungrouped_variant_count: 1
- }
+ count: 2,
+ variant_groups: [
+ {
+ uid: 'uid21',
+ name: 'iPhone Colors',
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ content_types: [
+ 'multi_page'
+ ],
+ variant_count: 1,
+ variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+ }
+ ]
+ },
+ {
+ uid: 'uid22',
+ name: 'iPhone',
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ content_types: [
+ 'iphone_prod_desc'
+ ],
+ variant_count: 1,
+ variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+ }
+ ]
+ }
+ ],
+ ungrouped_variants: [
+ {
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_red',
+ name: 'Red'
+ }
+ ],
+ ungrouped_variant_count: 1
+}
export { createVariantGroup, createVariantGroup1, createVariantGroup2 }
diff --git a/test/sanity-check/mock/variants.js b/test/sanity-check/mock/variants.js
index d23636ba..6ec68040 100644
--- a/test/sanity-check/mock/variants.js
+++ b/test/sanity-check/mock/variants.js
@@ -1,50 +1,50 @@
const variant = {
- "uid": "white", // optional
- "name": "White",
- "personalize_metadata": { // optional sent from personalize while creating variant
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
+ uid: 'white', // optional
+ name: 'White',
+ personalize_metadata: { // optional sent from personalize while creating variant
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
}
+}
const variant1 = {
- "created_by": "blt6cdf4e0b02b1c446",
- "updated_by": "blt303b74fa96e1082a",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_white",
- "name": "White",
- }
+ created_by: 'blt6cdf4e0b02b1c446',
+ updated_by: 'blt303b74fa96e1082a',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_white',
+ name: 'White'
+}
const variant2 = {
- "uid": "variant_group_1",
- "name": "Variant Group 1",
- "content_types": [
- "CTSTAET123"
- ],
- "personalize_metadata": {
- "experience_uid": "variant_group_ex_uid",
- "experience_short_uid": "variant_group_short_uid",
- "project_uid": "variant_group_project_uid"
- },
- "variants": [ // variants inside the group
- {
- "uid": "variant1",
- "created_by": "user_id",
- "updated_by": "user_id",
- "name": "Variant 1",
- "personalize_metadata": {
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
- "created_at": "2024-04-16T05:53:50.547Z",
- "updated_at": "2024-04-16T05:53:50.547Z"
- }
- ],
- "count": 1
+ uid: 'variant_group_1',
+ name: 'Variant Group 1',
+ content_types: [
+ 'CTSTAET123'
+ ],
+ personalize_metadata: {
+ experience_uid: 'variant_group_ex_uid',
+ experience_short_uid: 'variant_group_short_uid',
+ project_uid: 'variant_group_project_uid'
+ },
+ variants: [ // variants inside the group
+ {
+ uid: 'variant1',
+ created_by: 'user_id',
+ updated_by: 'user_id',
+ name: 'Variant 1',
+ personalize_metadata: {
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
+ },
+ created_at: '2024-04-16T05:53:50.547Z',
+ updated_at: '2024-04-16T05:53:50.547Z'
+ }
+ ],
+ count: 1
}
export { variant, variant1, variant2 }
diff --git a/test/sanity-check/sanity.js b/test/sanity-check/sanity.js
index 447de175..bf309516 100644
--- a/test/sanity-check/sanity.js
+++ b/test/sanity-check/sanity.js
@@ -28,3 +28,4 @@ require('./api/label-test')
require('./api/contentType-delete-test')
require('./api/delete-test')
require('./api/team-test')
+require('./api/auditlog-test')
diff --git a/test/unit/asset-test.js b/test/unit/asset-test.js
index d0c3dfc7..24926889 100644
--- a/test/unit/asset-test.js
+++ b/test/unit/asset-test.js
@@ -316,7 +316,6 @@ describe('Contentstack Asset test', () => {
.catch(done)
})
-
it('Asset download test', done => {
var mock = new MockAdapter(Axios)
const downloadResponse = new Blob(['file content'], { type: 'text/plain' })
@@ -352,7 +351,7 @@ describe('Contentstack Asset test', () => {
})
.download({ responseType: 'blob' })
.then((response) => {
- console.log("🚀 ~ .then ~ response:", response)
+ console.log('🚀 ~ .then ~ response:', response)
expect(response.data).to.be.instanceOf(Blob)
expect(response.data.type).to.be.equal('text/plain')
done()
diff --git a/test/unit/auditLog-test.js b/test/unit/auditLog-test.js
index 25ecc0c8..9bea3c78 100644
--- a/test/unit/auditLog-test.js
+++ b/test/unit/auditLog-test.js
@@ -58,8 +58,8 @@ describe('Contentstack AuditLog test', () => {
makeAuditLog({ stackHeaders: stackHeadersMock, logs: { uid: 'UID' } })
.fetch()
.then((response) => {
- expect(response.created_at).to.be.equal('created_at_date')
- expect(response.uid).to.be.equal('UID')
+ expect(response.logs.created_at).to.be.equal('created_at_date')
+ expect(response.logs.uid).to.be.equal('UID')
done()
})
.catch(done)
diff --git a/test/unit/branchAlias-test.js b/test/unit/branchAlias-test.js
index 4fd8bd99..f8f0fa35 100644
--- a/test/unit/branchAlias-test.js
+++ b/test/unit/branchAlias-test.js
@@ -3,7 +3,7 @@ import { expect } from 'chai'
import { describe, it } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
import { branchAliasMock, checkSystemFields, noticeMock, stackHeadersMock, systemUidMock } from './mock/objects'
-import { BranchAlias, BranchAliasCollection } from '../../lib/stack/branchAlias'
+import { BranchAlias } from '../../lib/stack/branchAlias'
describe('Contentstack BranchAlias test', () => {
it('BranchAlias test without uid', done => {
diff --git a/test/unit/bulkOperation-test.js b/test/unit/bulkOperation-test.js
index e0324146..07e1d7fb 100644
--- a/test/unit/bulkOperation-test.js
+++ b/test/unit/bulkOperation-test.js
@@ -1,33 +1,33 @@
-import Axios from 'axios';
-import { expect } from 'chai';
-import MockAdapter from 'axios-mock-adapter';
-import { describe, it } from 'mocha';
-import { BulkOperation } from '../../lib/stack/bulkOperation';
-import { stackHeadersMock } from './mock/objects';
+import Axios from 'axios'
+import { expect } from 'chai'
+import MockAdapter from 'axios-mock-adapter'
+import { describe, it } from 'mocha'
+import { BulkOperation } from '../../lib/stack/bulkOperation'
+import { stackHeadersMock } from './mock/objects'
describe('Contentstack BulkOperation test', () => {
it('BulkOperation test without uid', done => {
- const bulkOperation = makeBulkOperation();
- expect(bulkOperation.urlPath).to.be.equal('/bulk');
- expect(bulkOperation.stackHeaders).to.be.equal(undefined);
- expect(bulkOperation.addItems).to.not.equal(undefined);
- expect(bulkOperation.publish).to.not.equal(undefined);
- expect(bulkOperation.unpublish).to.not.equal(undefined);
- expect(bulkOperation.delete).to.not.equal(undefined);
- done();
- });
+ const bulkOperation = makeBulkOperation()
+ expect(bulkOperation.urlPath).to.be.equal('/bulk')
+ expect(bulkOperation.stackHeaders).to.be.equal(undefined)
+ expect(bulkOperation.addItems).to.not.equal(undefined)
+ expect(bulkOperation.publish).to.not.equal(undefined)
+ expect(bulkOperation.unpublish).to.not.equal(undefined)
+ expect(bulkOperation.delete).to.not.equal(undefined)
+ done()
+ })
it('BulkOperation test with stackHeaders', done => {
- const bulkOperation = makeBulkOperation({ stackHeaders: { ...stackHeadersMock } });
- expect(bulkOperation.urlPath).to.be.equal('/bulk');
- expect(bulkOperation.stackHeaders).to.not.equal(undefined);
- expect(bulkOperation.stackHeaders.api_key).to.be.equal(stackHeadersMock.api_key);
- expect(bulkOperation.addItems).to.not.equal(undefined);
- expect(bulkOperation.publish).to.not.equal(undefined);
- expect(bulkOperation.unpublish).to.not.equal(undefined);
- expect(bulkOperation.delete).to.not.equal(undefined);
- done();
- });
+ const bulkOperation = makeBulkOperation({ stackHeaders: { ...stackHeadersMock } })
+ expect(bulkOperation.urlPath).to.be.equal('/bulk')
+ expect(bulkOperation.stackHeaders).to.not.equal(undefined)
+ expect(bulkOperation.stackHeaders.api_key).to.be.equal(stackHeadersMock.api_key)
+ expect(bulkOperation.addItems).to.not.equal(undefined)
+ expect(bulkOperation.publish).to.not.equal(undefined)
+ expect(bulkOperation.unpublish).to.not.equal(undefined)
+ expect(bulkOperation.delete).to.not.equal(undefined)
+ done()
+ })
it('should add items to a release', async () => {
const items = {
@@ -41,21 +41,21 @@ describe('Contentstack BulkOperation test', () => {
uid: 'entry_uid',
version: 2,
locale: 'en-us',
- title: 'validation test',
- },
- ],
- };
+ title: 'validation test'
+ }
+ ]
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onPost('/bulk/release/items').reply(200, {
notice: 'Your add to release request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().addItems({ data: items, bulk_version: '2.0' });
- expect(response.notice).to.equal('Your add to release request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().addItems({ data: items, bulk_version: '2.0' })
+ expect(response.notice).to.equal('Your add to release request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should update items to a release', async () => {
const items = {
@@ -65,19 +65,19 @@ describe('Contentstack BulkOperation test', () => {
reference: true,
items: [
'$all'
- ],
- };
+ ]
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onPut('/bulk/release/update_items').reply(200, {
notice: 'Your update release items to latest version request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().updateItems({ data: items, bulk_version: '2.0' });
- expect(response.notice).to.equal('Your update release items to latest version request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().updateItems({ data: items, bulk_version: '2.0' })
+ expect(response.notice).to.equal('Your update release items to latest version request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should publish items in bulk', async () => {
const publishDetails = {
@@ -86,24 +86,24 @@ describe('Contentstack BulkOperation test', () => {
uid: 'entry_uid',
content_type: 'content_type_uid',
version: 'version',
- locale: 'entry_locale',
- },
+ locale: 'entry_locale'
+ }
],
assets: [{ uid: 'uid' }],
locales: ['en'],
- environments: ['env_uid'],
- };
+ environments: ['env_uid']
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onPost('/bulk/publish').reply(200, {
notice: 'Your publish request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().publish({ details: publishDetails });
- expect(response.notice).to.equal('Your publish request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().publish({ details: publishDetails })
+ expect(response.notice).to.equal('Your publish request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should unpublish items in bulk', async () => {
const unpublishDetails = {
@@ -112,24 +112,24 @@ describe('Contentstack BulkOperation test', () => {
uid: 'entry_uid',
content_type: 'content_type_uid',
version: 'version',
- locale: 'entry_locale',
- },
+ locale: 'entry_locale'
+ }
],
assets: [{ uid: 'uid' }],
locales: ['en'],
- environments: ['env_uid'],
- };
+ environments: ['env_uid']
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onPost('/bulk/unpublish').reply(200, {
notice: 'Your unpublish request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().unpublish({ details: unpublishDetails });
- expect(response.notice).to.equal('Your unpublish request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().unpublish({ details: unpublishDetails })
+ expect(response.notice).to.equal('Your unpublish request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should delete items in bulk', async () => {
const deleteDetails = {
@@ -137,22 +137,22 @@ describe('Contentstack BulkOperation test', () => {
{
uid: 'entry_uid',
content_type: 'content_type_uid',
- locale: 'entry_locale',
- },
+ locale: 'entry_locale'
+ }
],
- assets: [{ uid: 'uid' }],
- };
+ assets: [{ uid: 'uid' }]
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onPost('/bulk/delete').reply(200, {
notice: 'Your delete request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().delete({ details: deleteDetails });
- expect(response.notice).to.equal('Your delete request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().delete({ details: deleteDetails })
+ expect(response.notice).to.equal('Your delete request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should update items in bulk', async () => {
const updateBody = {
@@ -160,13 +160,13 @@ describe('Contentstack BulkOperation test', () => {
{
content_type: 'content_type_uid1',
uid: 'entry_uid',
- locale: 'en-us',
+ locale: 'en-us'
},
{
content_type: 'content_type_uid2',
uid: 'entry_uid',
- locale: 'en-us',
- },
+ locale: 'en-us'
+ }
],
workflow: {
workflow_stage: {
@@ -178,48 +178,48 @@ describe('Contentstack BulkOperation test', () => {
{
uid: 'user_uid',
name: 'user_name',
- email: 'user_email_id',
- },
+ email: 'user_email_id'
+ }
],
assigned_by_roles: [
{
uid: 'role_uid',
- name: 'role_name',
- },
- ],
- },
- },
- };
-
- var mock = new MockAdapter(Axios);
+ name: 'role_name'
+ }
+ ]
+ }
+ }
+ }
+
+ var mock = new MockAdapter(Axios)
mock.onPost('/bulk/workflow').reply(200, {
notice: 'Your update request is in progress.',
- job_id: 'job_id',
- });
+ job_id: 'job_id'
+ })
- const response = await makeBulkOperation().update(updateBody);
- expect(response.notice).to.equal('Your update request is in progress.');
- expect(response.job_id).to.not.equal(undefined);
- });
+ const response = await makeBulkOperation().update(updateBody)
+ expect(response.notice).to.equal('Your update request is in progress.')
+ expect(response.job_id).to.not.equal(undefined)
+ })
it('should fetch job status', async () => {
- const jobId = 'job_id';
+ const jobId = 'job_id'
const jobStatusDetails = {
- job_id: jobId,
- };
+ job_id: jobId
+ }
- var mock = new MockAdapter(Axios);
+ var mock = new MockAdapter(Axios)
mock.onGet(`/bulk/jobs/${jobId}`).reply(200, {
notice: 'Your job status request is successful.',
- status: 'completed',
- });
-
- const response = await makeBulkOperation().jobStatus(jobStatusDetails);
- expect(response.notice).to.equal('Your job status request is successful.');
- expect(response.status).to.equal('completed');
- });
-});
-
-function makeBulkOperation(data) {
- return new BulkOperation(Axios, data);
-}
\ No newline at end of file
+ status: 'completed'
+ })
+
+ const response = await makeBulkOperation().jobStatus(jobStatusDetails)
+ expect(response.notice).to.equal('Your job status request is successful.')
+ expect(response.status).to.equal('completed')
+ })
+})
+
+function makeBulkOperation (data) {
+ return new BulkOperation(Axios, data)
+}
diff --git a/test/unit/concurrency-Queue-test.js b/test/unit/concurrency-Queue-test.js
index 04a6fb58..981ec556 100644
--- a/test/unit/concurrency-Queue-test.js
+++ b/test/unit/concurrency-Queue-test.js
@@ -2,7 +2,7 @@ import Axios from 'axios'
import sinon from 'sinon'
import { expect } from 'chai'
import http from 'http'
-import { describe, it } from 'mocha'
+import { describe, it, before, beforeEach, after } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
import { ConcurrencyQueue } from '../../lib/core/concurrency-queue'
import FormData from 'form-data'
@@ -185,6 +185,7 @@ describe('Concurrency queue test', () => {
it('Initialize with bad axios instance', done => {
try {
+ // eslint-disable-next-line no-new
new ConcurrencyQueue({ axios: undefined })
expect.fail('Undefined axios should fail')
} catch (error) {
@@ -302,18 +303,20 @@ describe('Concurrency queue test', () => {
const client = Axios.create({
baseURL: `${host}:${port}`
})
- const concurrency = new ConcurrencyQueue({ axios: client, config: { retryCondition: (error) => {
- if (error.response.status === 408) {
- return true
- }
- return false
- },
- logHandler: logHandlerStub,
- retryDelayOptions: {
- base: retryDelayOptionsStub()
- },
- retryLimit: 2,
- retryOnError: true, timeout: 250 } })
+ const concurrency = new ConcurrencyQueue({ axios: client,
+ config: { retryCondition: (error) => {
+ if (error.response.status === 408) {
+ return true
+ }
+ return false
+ },
+ logHandler: logHandlerStub,
+ retryDelayOptions: {
+ base: retryDelayOptionsStub()
+ },
+ retryLimit: 2,
+ retryOnError: true,
+ timeout: 250 } })
client.get('http://localhost:4444/timeout', {
timeout: 250
}).then(function (res) {
@@ -328,7 +331,7 @@ describe('Concurrency queue test', () => {
})
it('Concurrency with 100 failing requests retry on error with no retry condition tests', done => {
- reconfigureQueue({ retryCondition: (error) => false })
+ reconfigureQueue({ retryCondition: () => false })
Promise.all(sequence(100).map(() => wrapPromise(api.get('/fail'))))
.then((responses) => {
return responses.map(r => r.data)
diff --git a/test/unit/entry-test.js b/test/unit/entry-test.js
index a0d113d2..0df9c293 100644
--- a/test/unit/entry-test.js
+++ b/test/unit/entry-test.js
@@ -275,7 +275,7 @@ describe('Contentstack Entry test', () => {
...noticeMock
})
- const publishing_rule = {
+ const publishingRule = {
uid: 'uid',
action: 'publish', // (‘publish’, ‘unpublish’, or ’both’)
status: 1, // (this could be ‘0’ for Approval Requested, ‘1’ for ‘Approval Accepted’, and ‘-1’ for ‘Approval Rejected’),
@@ -283,7 +283,7 @@ describe('Contentstack Entry test', () => {
comment: 'Please review this.'
}
makeEntry({ entry: { ...systemUidMock } })
- .publishRequest({ publishing_rule, locale: 'en-us' })
+ .publishRequest({ publishing_rule: publishingRule, locale: 'en-us' })
.then((response) => {
expect(response.notice).to.be.equal(noticeMock.notice)
done()
@@ -298,7 +298,7 @@ describe('Contentstack Entry test', () => {
})
makeEntry({ entry: { ...systemUidMock },
stackHeaders: stackHeadersMock
- })
+ })
.includeVariants({ include_variant: 'True', variants_uid: 'test_uid' })
.then((response) => {
expect(response.api_key).to.be.equal('api_key')
@@ -315,7 +315,7 @@ describe('Contentstack Entry test', () => {
...noticeMock
})
- const workflow_stage = {
+ const workflowStage = {
uid: 'uid',
comment: 'Please review this.',
due_date: 'Thu Dec 01 2018',
@@ -332,7 +332,7 @@ describe('Contentstack Entry test', () => {
}
makeEntry({ entry: { ...systemUidMock } })
- .setWorkflowStage({ workflow_stage, locale: 'en-us' })
+ .setWorkflowStage({ workflow_stage: workflowStage, locale: 'en-us' })
.then((response) => {
expect(response.notice).to.be.equal(noticeMock.notice)
done()
@@ -347,7 +347,7 @@ describe('Contentstack Entry test', () => {
...noticeMock
})
- const workflow_stage = {
+ const workflowStage = {
uid: 'uid',
comment: 'Please review this.',
due_date: 'Thu Dec 01 2018',
@@ -364,7 +364,7 @@ describe('Contentstack Entry test', () => {
}
makeEntry({ entry: { ...systemUidMock }, stackHeaders: stackHeadersMock })
- .setWorkflowStage({ workflow_stage, locale: 'en-us' })
+ .setWorkflowStage({ workflow_stage: workflowStage, locale: 'en-us' })
.then((response) => {
expect(response.notice).to.be.equal(noticeMock.notice)
done()
@@ -378,7 +378,7 @@ describe('Contentstack Entry test', () => {
...noticeMock
})
- const publishing_rule = {
+ const publishingRule = {
uid: 'uid',
action: 'publish', // (‘publish’, ‘unpublish’, or ’both’)
status: 1, // (this could be ‘0’ for Approval Requested, ‘1’ for ‘Approval Accepted’, and ‘-1’ for ‘Approval Rejected’),
@@ -386,7 +386,7 @@ describe('Contentstack Entry test', () => {
comment: 'Please review this.'
}
makeEntry({ entry: { ...systemUidMock }, stackHeaders: stackHeadersMock })
- .publishRequest({ publishing_rule, locale: 'en-us' })
+ .publishRequest({ publishing_rule: publishingRule, locale: 'en-us' })
.then((response) => {
expect(response.notice).to.be.equal(noticeMock.notice)
done()
@@ -407,19 +407,19 @@ describe('Contentstack Entry test', () => {
array_file: [
{ file_size: 69420, uid: 'array_file_1' },
{ file_size: 69420, uid: 'array_file_2' },
- { file_size: 69420, uid: 'array_file_3' },
+ { file_size: 69420, uid: 'array_file_3' }
],
wrapper1: {
something: 'something',
something_else: 'something_else',
- file_inside_wrapper : {
- file_size: 69420,
- uid: 'single_file'
+ file_inside_wrapper: {
+ file_size: 69420,
+ uid: 'single_file'
},
- file_array_wrapper : [
+ file_array_wrapper: [
{ file_size: 69420, uid: 'array_file_wrap_1' },
{ file_size: 69420, uid: 'array_file_wrap_2' },
- { file_size: 69420, uid: 'array_file_wrap_3' },
+ { file_size: 69420, uid: 'array_file_wrap_3' }
],
array_wrapper: [
{
@@ -451,11 +451,11 @@ describe('Contentstack Entry test', () => {
array_of_array_wrapper: [
{
something: 'something',
- oneMoreWrapper : {
- file_array_wrapper : [
+ oneMoreWrapper: {
+ file_array_wrapper: [
{ file_size: 69420, uid: 'array_file_wrap_1' },
{ file_size: 69420, uid: 'array_file_wrap_2' },
- { file_size: 69420, uid: 'array_file_wrap_3' },
+ { file_size: 69420, uid: 'array_file_wrap_3' }
],
array_wrapper: [
{
@@ -482,25 +482,25 @@ describe('Contentstack Entry test', () => {
},
something_else: 'something_else'
}
- ],
+ ]
},
something_else: 'something_else'
},
{
something: 'something',
- file_array_wrapper : [
+ file_array_wrapper: [
{ file_size: 69420, uid: 'array_file_wrap_1' },
{ file_size: 69420, uid: 'array_file_wrap_2' },
- { file_size: 69420, uid: 'array_file_wrap_3' },
+ { file_size: 69420, uid: 'array_file_wrap_3' }
],
something_else: 'something_else'
},
{
something: 'something',
- file_array_wrapper : [
+ file_array_wrapper: [
{ file_size: 69420, uid: 'array_file_wrap_1' },
{ file_size: 69420, uid: 'array_file_wrap_2' },
- { file_size: 69420, uid: 'array_file_wrap_3' },
+ { file_size: 69420, uid: 'array_file_wrap_3' }
],
something_else: 'something_else'
}
@@ -508,7 +508,7 @@ describe('Contentstack Entry test', () => {
}
},
...systemUidMock
- };
+ }
const expectedResult = {
empty_array: [],
empty_object: {},
@@ -519,8 +519,8 @@ describe('Contentstack Entry test', () => {
wrapper1: {
something: 'something',
something_else: 'something_else',
- file_inside_wrapper : 'single_file',
- file_array_wrapper : ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
+ file_inside_wrapper: 'single_file',
+ file_array_wrapper: ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
array_wrapper: [
{
something: 'something',
@@ -542,8 +542,8 @@ describe('Contentstack Entry test', () => {
array_of_array_wrapper: [
{
something: 'something',
- oneMoreWrapper : {
- file_array_wrapper : ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
+ oneMoreWrapper: {
+ file_array_wrapper: ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
array_wrapper: [
{
something: 'something',
@@ -560,28 +560,28 @@ describe('Contentstack Entry test', () => {
single_file: 'single_file_3',
something_else: 'something_else'
}
- ],
+ ]
},
something_else: 'something_else'
},
{
something: 'something',
- file_array_wrapper : ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
+ file_array_wrapper: ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
something_else: 'something_else'
},
{
something: 'something',
- file_array_wrapper : ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
+ file_array_wrapper: ['array_file_wrap_1', 'array_file_wrap_2', 'array_file_wrap_3'],
something_else: 'something_else'
}
]
}
},
...systemUidMock
- };
- const result = cleanAssets(entry);
- expect(result).to.deep.equal(expectedResult);
- done();
+ }
+ const result = cleanAssets(entry)
+ expect(result).to.deep.equal(expectedResult)
+ done()
})
it('should get languages of the given Entry uid', done => {
@@ -619,11 +619,11 @@ describe('Contentstack Entry test', () => {
var mock = new MockAdapter(Axios)
const references = [
{
- entry_uid: "entry_uid",
- content_type_uid: "referred_content_type",
- locale: "en-us",
- title: "Jeff Goins",
- content_type_title: "Referred Content Type"
+ entry_uid: 'entry_uid',
+ content_type_uid: 'referred_content_type',
+ locale: 'en-us',
+ title: 'Jeff Goins',
+ content_type_title: 'Referred Content Type'
}
]
mock.onGet('/content_types/content_type_uid/entries/UID/references').reply(200, {
diff --git a/test/unit/globalField-test.js b/test/unit/globalField-test.js
index 0de87493..f9c2f912 100644
--- a/test/unit/globalField-test.js
+++ b/test/unit/globalField-test.js
@@ -6,479 +6,479 @@ import { GlobalField, GlobalFieldCollection, createFormData } from '../../lib/st
import { systemUidMock, checkSystemFields, globalFieldMock, stackHeadersMock, noticeMock, nestedGlobalFieldMock, nestedGlobalFieldPayload } from './mock/objects'
import MockAdapter from 'axios-mock-adapter'
-describe("Contentstack GlobalField test", () => {
- it("GlobalField test without uid", (done) => {
- const globalField = makeGlobalField();
- expect(globalField.urlPath).to.be.equal("/global_fields");
- expect(globalField.stackHeaders).to.be.equal(undefined);
- expect(globalField.update).to.be.equal(undefined);
- expect(globalField.delete).to.be.equal(undefined);
- expect(globalField.fetch).to.be.equal(undefined);
- expect(globalField.create).to.not.equal(undefined);
- expect(globalField.query).to.not.equal(undefined);
- done();
- });
-
- it("GlobalField test with uid", (done) => {
+describe('Contentstack GlobalField test', () => {
+ it('GlobalField test without uid', (done) => {
+ const globalField = makeGlobalField()
+ expect(globalField.urlPath).to.be.equal('/global_fields')
+ expect(globalField.stackHeaders).to.be.equal(undefined)
+ expect(globalField.update).to.be.equal(undefined)
+ expect(globalField.delete).to.be.equal(undefined)
+ expect(globalField.fetch).to.be.equal(undefined)
+ expect(globalField.create).to.not.equal(undefined)
+ expect(globalField.query).to.not.equal(undefined)
+ done()
+ })
+
+ it('GlobalField test with uid', (done) => {
const globalField = makeGlobalField({
global_field: {
- ...systemUidMock,
- },
- });
+ ...systemUidMock
+ }
+ })
expect(globalField.urlPath).to.be.equal(
`/global_fields/${systemUidMock.uid}`
- );
- expect(globalField.stackHeaders).to.be.equal(undefined);
- expect(globalField.update).to.not.equal(undefined);
- expect(globalField.delete).to.not.equal(undefined);
- expect(globalField.fetch).to.not.equal(undefined);
- expect(globalField.create).to.be.equal(undefined);
- expect(globalField.query).to.be.equal(undefined);
- done();
- });
-
- it("GlobalField test with Stack Headers", (done) => {
+ )
+ expect(globalField.stackHeaders).to.be.equal(undefined)
+ expect(globalField.update).to.not.equal(undefined)
+ expect(globalField.delete).to.not.equal(undefined)
+ expect(globalField.fetch).to.not.equal(undefined)
+ expect(globalField.create).to.be.equal(undefined)
+ expect(globalField.query).to.be.equal(undefined)
+ done()
+ })
+
+ it('GlobalField test with Stack Headers', (done) => {
const globalField = makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
- stackHeaders: stackHeadersMock,
- });
+ stackHeaders: stackHeadersMock
+ })
expect(globalField.urlPath).to.be.equal(
`/global_fields/${systemUidMock.uid}`
- );
- expect(globalField.stackHeaders).to.not.equal(undefined);
+ )
+ expect(globalField.stackHeaders).to.not.equal(undefined)
expect(globalField.stackHeaders.api_key).to.be.equal(
stackHeadersMock.api_key
- );
- expect(globalField.update).to.not.equal(undefined);
- expect(globalField.delete).to.not.equal(undefined);
- expect(globalField.fetch).to.not.equal(undefined);
- expect(globalField.create).to.be.equal(undefined);
- expect(globalField.query).to.be.equal(undefined);
- done();
- });
-
- it("GlobalField Collection test with blank data", (done) => {
- const globalFields = new GlobalFieldCollection(Axios, {});
- expect(globalFields.length).to.be.equal(0);
- done();
- });
-
- it("GlobalField Collection test with data", (done) => {
+ )
+ expect(globalField.update).to.not.equal(undefined)
+ expect(globalField.delete).to.not.equal(undefined)
+ expect(globalField.fetch).to.not.equal(undefined)
+ expect(globalField.create).to.be.equal(undefined)
+ expect(globalField.query).to.be.equal(undefined)
+ done()
+ })
+
+ it('GlobalField Collection test with blank data', (done) => {
+ const globalFields = new GlobalFieldCollection(Axios, {})
+ expect(globalFields.length).to.be.equal(0)
+ done()
+ })
+
+ it('GlobalField Collection test with data', (done) => {
const globalFields = new GlobalFieldCollection(Axios, {
- global_fields: [globalFieldMock],
- });
- expect(globalFields.length).to.be.equal(1);
- checkGlobalField(globalFields[0]);
- done();
- });
-
- it("GlobalField create test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields").reply(200, {
+ global_fields: [globalFieldMock]
+ })
+ expect(globalFields.length).to.be.equal(1)
+ checkGlobalField(globalFields[0])
+ done()
+ })
+
+ it('GlobalField create test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
makeGlobalField()
.create()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
-
- it("GlobalField Query test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onGet("/global_fields").reply(200, {
- global_fields: [globalFieldMock],
- });
+ .catch(done)
+ })
+
+ it('GlobalField Query test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onGet('/global_fields').reply(200, {
+ global_fields: [globalFieldMock]
+ })
makeGlobalField()
.query()
.find()
.then((globalField) => {
- checkGlobalField(globalField.items[0]);
- done();
+ checkGlobalField(globalField.items[0])
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField update test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPut("/global_fields/UID").reply(200, {
+ it('GlobalField update test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPut('/global_fields/UID').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
- stackHeaders: stackHeadersMock,
+ stackHeaders: stackHeadersMock
})
.update()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField fetch test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onGet("/global_fields/UID").reply(200, {
+ it('GlobalField fetch test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onGet('/global_fields/UID').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
- stackHeaders: stackHeadersMock,
+ stackHeaders: stackHeadersMock
})
.fetch()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
-
- it("GlobalField delete test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onDelete("/global_fields/UID").reply(200, {
- ...noticeMock,
- });
+ .catch(done)
+ })
+
+ it('GlobalField delete test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onDelete('/global_fields/UID').reply(200, {
+ ...noticeMock
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
- stackHeaders: stackHeadersMock,
+ stackHeaders: stackHeadersMock
})
.delete()
.then((response) => {
- expect(response.notice).to.be.equal(noticeMock.notice);
- done();
+ expect(response.notice).to.be.equal(noticeMock.notice)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Global Field import test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields/import").reply(200, {
+ it('Global Field import test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields/import').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
const gfUpload = {
- global_field: path.join(__dirname, "../api/mock/globalfield.json"),
- };
- const form = createFormData(gfUpload)();
- var boundary = form.getBoundary();
+ global_field: path.join(__dirname, '../api/mock/globalfield.json')
+ }
+ const form = createFormData(gfUpload)()
+ var boundary = form.getBoundary()
- expect(boundary).to.be.equal(form.getBoundary());
- expect(boundary.length).to.be.equal(50);
+ expect(boundary).to.be.equal(form.getBoundary())
+ expect(boundary.length).to.be.equal(50)
makeGlobalField()
.import()
.then((webhook) => {
- checkGlobalField(webhook);
- done();
+ checkGlobalField(webhook)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Global Field import test with overwrite flag", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields/import").reply(200, {
+ it('Global Field import test with overwrite flag', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields/import').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
const gfUpload = {
- global_field: path.join(__dirname, "../api/mock/globalfield.json"),
- };
- const form = createFormData(gfUpload)();
- var boundary = form.getBoundary();
+ global_field: path.join(__dirname, '../api/mock/globalfield.json')
+ }
+ const form = createFormData(gfUpload)()
+ var boundary = form.getBoundary()
- expect(boundary).to.be.equal(form.getBoundary());
- expect(boundary.length).to.be.equal(50);
+ expect(boundary).to.be.equal(form.getBoundary())
+ expect(boundary.length).to.be.equal(50)
makeGlobalField()
.import(gfUpload, { overwrite: true })
.then((webhook) => {
- checkGlobalField(webhook);
- done();
+ checkGlobalField(webhook)
+ done()
})
- .catch(done);
- });
-});
+ .catch(done)
+ })
+})
-describe("Contentstack GlobalField test (API Version 3.2)", () => {
- it("GlobalField test without uid", (done) => {
+describe('Contentstack GlobalField test (API Version 3.2)', () => {
+ it('GlobalField test without uid', (done) => {
const globalField = makeGlobalField({
stackHeaders: stackHeadersMock,
- api_version: "3.2"});
- expect(globalField.urlPath).to.be.equal("/global_fields");
- expect(globalField.apiVersion).to.be.equal("3.2");
- expect(globalField.stackHeaders).to.deep.equal({api_key: 'api_key', api_version: '3.2'});
- done();
- });
-
- it("GlobalField test with uid", (done) => {
+ api_version: '3.2' })
+ expect(globalField.urlPath).to.be.equal('/global_fields')
+ expect(globalField.apiVersion).to.be.equal('3.2')
+ expect(globalField.stackHeaders).to.deep.equal({ api_key: 'api_key', api_version: '3.2' })
+ done()
+ })
+
+ it('GlobalField test with uid', (done) => {
const globalField = makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
stackHeaders: stackHeadersMock,
- api_version: "3.2",
- });
+ api_version: '3.2'
+ })
expect(globalField.urlPath).to.be.equal(
`/global_fields/${systemUidMock.uid}`
- );
- expect(globalField.apiVersion).to.be.equal("3.2");
- expect(globalField.update).to.not.equal(undefined);
- expect(globalField.delete).to.not.equal(undefined);
- expect(globalField.fetch).to.not.equal(undefined);
- expect(globalField.create).to.be.equal(undefined);
- expect(globalField.query).to.be.equal(undefined);
- done();
- });
-
- it("GlobalField test with Stack Headers", (done) => {
+ )
+ expect(globalField.apiVersion).to.be.equal('3.2')
+ expect(globalField.update).to.not.equal(undefined)
+ expect(globalField.delete).to.not.equal(undefined)
+ expect(globalField.fetch).to.not.equal(undefined)
+ expect(globalField.create).to.be.equal(undefined)
+ expect(globalField.query).to.be.equal(undefined)
+ done()
+ })
+
+ it('GlobalField test with Stack Headers', (done) => {
const globalField = makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
stackHeaders: stackHeadersMock,
- api_version: "3.2",
- });
+ api_version: '3.2'
+ })
expect(globalField.urlPath).to.be.equal(
`/global_fields/${systemUidMock.uid}`
- );
- expect(globalField.apiVersion).to.be.equal("3.2");
- expect(globalField.stackHeaders).to.not.equal(undefined);
+ )
+ expect(globalField.apiVersion).to.be.equal('3.2')
+ expect(globalField.stackHeaders).to.not.equal(undefined)
expect(globalField.stackHeaders.api_key).to.be.equal(
stackHeadersMock.api_key
- );
- expect(globalField.update).to.not.equal(undefined);
- expect(globalField.delete).to.not.equal(undefined);
- expect(globalField.fetch).to.not.equal(undefined);
- expect(globalField.create).to.be.equal(undefined);
- expect(globalField.query).to.be.equal(undefined);
- done();
- });
-
- it("GlobalField Collection test with blank data", (done) => {
+ )
+ expect(globalField.update).to.not.equal(undefined)
+ expect(globalField.delete).to.not.equal(undefined)
+ expect(globalField.fetch).to.not.equal(undefined)
+ expect(globalField.create).to.be.equal(undefined)
+ expect(globalField.query).to.be.equal(undefined)
+ done()
+ })
+
+ it('GlobalField Collection test with blank data', (done) => {
const globalFields = new GlobalFieldCollection(Axios, {
- api_version: "3.2",
- });
- expect(globalFields.length).to.be.equal(0);
- done();
- });
+ api_version: '3.2'
+ })
+ expect(globalFields.length).to.be.equal(0)
+ done()
+ })
- it("GlobalField Collection test with data", (done) => {
+ it('GlobalField Collection test with data', (done) => {
const globalFields = new GlobalFieldCollection(Axios, {
global_fields: [nestedGlobalFieldMock],
- api_version: "3.2",
- });
- expect(globalFields.length).to.be.equal(1);
- checkGlobalField(globalFields[0]);
- done();
- });
-
- it("GlobalField create test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields").reply(200, {
+ api_version: '3.2'
+ })
+ expect(globalFields.length).to.be.equal(1)
+ checkGlobalField(globalFields[0])
+ done()
+ })
+
+ it('GlobalField create test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields').reply(200, {
global_field: {
- ...nestedGlobalFieldMock,
- },
- });
+ ...nestedGlobalFieldMock
+ }
+ })
makeGlobalField({
stackHeaders: stackHeadersMock,
- api_version: "3.2"})
+ api_version: '3.2' })
.create()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField Query test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onGet("/global_fields").reply(200, {
- global_fields: [nestedGlobalFieldMock],
- });
+ it('GlobalField Query test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onGet('/global_fields').reply(200, {
+ global_fields: [nestedGlobalFieldMock]
+ })
makeGlobalField({
stackHeaders: stackHeadersMock,
- api_version: "3.2"})
+ api_version: '3.2' })
.query()
.find()
.then((globalField) => {
- checkGlobalField(globalField.items[0]);
- done();
+ checkGlobalField(globalField.items[0])
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField update test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPut("/global_fields/UID").reply(200, {
+ it('GlobalField update test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPut('/global_fields/UID').reply(200, {
global_field: {
- ...nestedGlobalFieldMock,
- },
- });
+ ...nestedGlobalFieldMock
+ }
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
stackHeaders: stackHeadersMock,
- api_version: "3.2",
+ api_version: '3.2'
})
.update()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField fetch test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onGet("/global_fields/UID").reply(200, {
+ it('GlobalField fetch test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onGet('/global_fields/UID').reply(200, {
global_field: {
- ...nestedGlobalFieldMock,
- },
- });
+ ...nestedGlobalFieldMock
+ }
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
stackHeaders: stackHeadersMock,
- api_version: "3.2",
+ api_version: '3.2'
})
.fetch()
.then((globalField) => {
- checkGlobalField(globalField.global_field);
- done();
+ checkGlobalField(globalField.global_field)
+ done()
})
- .catch(done);
- });
-
- it("GlobalField delete test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onDelete("/global_fields/UID").reply(200, {
- ...noticeMock,
- });
+ .catch(done)
+ })
+
+ it('GlobalField delete test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onDelete('/global_fields/UID').reply(200, {
+ ...noticeMock
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
stackHeaders: stackHeadersMock,
- api_version: "3.2",
+ api_version: '3.2'
})
.delete()
.then((response) => {
- expect(response.notice).to.be.equal(noticeMock.notice);
- done();
+ expect(response.notice).to.be.equal(noticeMock.notice)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField import test", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields/import").reply(200, {
+ it('GlobalField import test', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields/import').reply(200, {
global_field: {
- ...globalFieldMock,
- },
- });
+ ...globalFieldMock
+ }
+ })
const gfUpload = {
- global_field: path.join(__dirname, "../api/mock/globalfield.json"),
- };
- const form = createFormData(gfUpload)();
- var boundary = form.getBoundary();
+ global_field: path.join(__dirname, '../api/mock/globalfield.json')
+ }
+ const form = createFormData(gfUpload)()
+ var boundary = form.getBoundary()
- expect(boundary).to.be.equal(form.getBoundary());
- expect(boundary.length).to.be.equal(50);
+ expect(boundary).to.be.equal(form.getBoundary())
+ expect(boundary.length).to.be.equal(50)
makeGlobalField({
stackHeaders: stackHeadersMock,
- api_version: "3.2"})
+ api_version: '3.2' })
.import()
.then((webhook) => {
- checkGlobalField(webhook);
- done();
+ checkGlobalField(webhook)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("GlobalField import test with overwrite flag", (done) => {
- var mock = new MockAdapter(Axios);
- mock.onPost("/global_fields/import").reply(200, {
+ it('GlobalField import test with overwrite flag', (done) => {
+ var mock = new MockAdapter(Axios)
+ mock.onPost('/global_fields/import').reply(200, {
global_field: {
- ...nestedGlobalFieldMock,
- },
- });
+ ...nestedGlobalFieldMock
+ }
+ })
const gfUpload = {
- global_field: path.join(__dirname, "../api/mock/globalfield.json"),
- };
- const form = createFormData(gfUpload)();
- var boundary = form.getBoundary();
+ global_field: path.join(__dirname, '../api/mock/globalfield.json')
+ }
+ const form = createFormData(gfUpload)()
+ var boundary = form.getBoundary()
- expect(boundary).to.be.equal(form.getBoundary());
- expect(boundary.length).to.be.equal(50);
+ expect(boundary).to.be.equal(form.getBoundary())
+ expect(boundary.length).to.be.equal(50)
makeGlobalField({
stackHeaders: stackHeadersMock,
- api_version: "3.2"})
+ api_version: '3.2' })
.import(gfUpload, { overwrite: true })
.then((webhook) => {
- checkGlobalField(webhook);
- done();
+ checkGlobalField(webhook)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("should update nested global field", (done) => {
- var mock = new MockAdapter(Axios);
+ it('should update nested global field', (done) => {
+ var mock = new MockAdapter(Axios)
const updatedData = {
global_field: {
- title: "Updated Nested Global Field Title",
- schema: nestedGlobalFieldPayload,
- },
- };
+ title: 'Updated Nested Global Field Title',
+ schema: nestedGlobalFieldPayload
+ }
+ }
mock
.onPut(`/global_fields/${systemUidMock.uid}`)
.reply(200, {
global_field: {
...nestedGlobalFieldMock,
- ...updatedData.global_field,
- },
- });
+ ...updatedData.global_field
+ }
+ })
makeGlobalField({
global_field: {
- ...systemUidMock,
+ ...systemUidMock
},
- stackHeaders: stackHeadersMock,
+ stackHeaders: stackHeadersMock
})
.updateNestedGlobalField(updatedData)
.then((response) => {
- expect(response.global_field.title).to.be.equal("Updated Nested Global Field Title");
- expect(response.global_field.schema).to.deep.equal(nestedGlobalFieldPayload);
- done();
+ expect(response.global_field.title).to.be.equal('Updated Nested Global Field Title')
+ expect(response.global_field.schema).to.deep.equal(nestedGlobalFieldPayload)
+ done()
})
- .catch(done);
- });
-});
+ .catch(done)
+ })
+})
function makeGlobalField (data) {
return new GlobalField(Axios, data)
}
-function checkGlobalField(globalField) {
- checkSystemFields(globalField);
- expect(globalField.title).to.be.equal("title");
- expect(globalField.schema.length).to.be.equal(2);
+function checkGlobalField (globalField) {
+ checkSystemFields(globalField)
+ expect(globalField.title).to.be.equal('title')
+ expect(globalField.schema.length).to.be.equal(2)
}
diff --git a/test/unit/mock/objects.js b/test/unit/mock/objects.js
index 11e0e291..5aea75b5 100644
--- a/test/unit/mock/objects.js
+++ b/test/unit/mock/objects.js
@@ -149,88 +149,88 @@ const roleMock = {
admin: false
}
const roleMockWithTaxonomy = {
- ...systemFieldsMock,
- ...systemFieldsUserMock,
- name: "Admin",
- description: "Admin Role",
- rules: [
- {
- module: "branch",
- branches: [
- "main"
- ],
- acl: {
- read: true
- }
- },
- {
- module: "environment",
- environments: ["env_uid1", "env_uid2"],
- acl: {
- read: true
- }
- },
- {
- module: "locale",
- locales: ["locales"],
- acl: {
- read: true
- }
- },
- {
- module: "taxonomy",
- taxonomies: ["taxonomy_1"],
- terms: ["taxonomy_1.term_1"],
- content_types: [
- {
- uid: "$all",
- acl: {
+ ...systemFieldsMock,
+ ...systemFieldsUserMock,
+ name: 'Admin',
+ description: 'Admin Role',
+ rules: [
+ {
+ module: 'branch',
+ branches: [
+ 'main'
+ ],
+ acl: {
+ read: true
+ }
+ },
+ {
+ module: 'environment',
+ environments: ['env_uid1', 'env_uid2'],
+ acl: {
+ read: true
+ }
+ },
+ {
+ module: 'locale',
+ locales: ['locales'],
+ acl: {
+ read: true
+ }
+ },
+ {
+ module: 'taxonomy',
+ taxonomies: ['taxonomy_1'],
+ terms: ['taxonomy_1.term_1'],
+ content_types: [
+ {
+ uid: '$all',
+ acl: {
+ read: true,
+ sub_acl: {
read: true,
- sub_acl: {
- read: true,
- create: true,
- update: true,
- delete: true,
- publish: true
- }
+ create: true,
+ update: true,
+ delete: true,
+ publish: true
}
}
- ],
- acl: {
+ }
+ ],
+ acl: {
+ read: true,
+ sub_acl: {
read: true,
- sub_acl: {
- read: true,
- create: true,
- update: true,
- delete: true,
- publish: true
- }
+ create: true,
+ update: true,
+ delete: true,
+ publish: true
}
- },
- {
- module: "content_type",
- content_types: ["ct_1"],
- acl: {
+ }
+ },
+ {
+ module: 'content_type',
+ content_types: ['ct_1'],
+ acl: {
+ read: true,
+ sub_acl: {
read: true,
- sub_acl: {
- read: true,
- create: true,
- update: true,
- delete: true,
- publish: true
- }
+ create: true,
+ update: true,
+ delete: true,
+ publish: true
}
}
- ],
- org_uid: "org_uid",
- api_key: "api_key",
- admin: false,
- default: true,
- users: [
- 'user_uid'
- ]
- }
-
+ }
+ ],
+ org_uid: 'org_uid',
+ api_key: 'api_key',
+ admin: false,
+ default: true,
+ users: [
+ 'user_uid'
+ ]
+}
+
const branchMock = {
...systemFieldsMock,
...systemFieldsUserMock,
@@ -473,30 +473,30 @@ const nestedGlobalFieldPayload = {
field_metadata: {
description: '',
default_value: '',
- version: 3,
+ version: 3
},
format: '',
error_messages: {
- format: '',
+ format: ''
},
mandatory: false,
multiple: false,
non_localizable: false,
- unique: false,
+ unique: false
},
{
data_type: 'global_field',
display_name: 'Global',
reference_to: 'nested_global_field1234',
field_metadata: {
- description: '',
+ description: ''
},
uid: 'global_field',
mandatory: false,
multiple: false,
non_localizable: false,
- unique: false,
- },
+ unique: false
+ }
],
global_field_refs: [
{
@@ -506,16 +506,16 @@ const nestedGlobalFieldPayload = {
paths: [
'schema.1',
'schema.3.schema.4',
- 'schema.4.blocks.0.schema.2',
- ],
+ 'schema.4.blocks.0.schema.2'
+ ]
},
{
uid: 'nested_global_field_123',
occurrence_count: 1,
- isChild: false,
- },
- ],
- },
+ isChild: false
+ }
+ ]
+ }
}
const entryMock = {
@@ -531,54 +531,54 @@ const entryMock = {
}
const variantsEntriesMock = {
- "title": "title",
- "url": "/url",
- "author": "Kurt Tank",
- "created_by": "created_by",
- "updated_by": "updated_by",
- "created_at": "created_at_date",
- "updated_at": "updated_at_date",
- "uid": "UID",
- "locale": "en-us",
- "_version": 1,
- "_in_progress": false,
- "_variant": {
- "uid": "_variant_uid",
- "variant_id": 'variant_id',
- "customized_fields": ["title", "author"],
- "base_entry_version": 1,
- }
+ title: 'title',
+ url: '/url',
+ author: 'Kurt Tank',
+ created_by: 'created_by',
+ updated_by: 'updated_by',
+ created_at: 'created_at_date',
+ updated_at: 'updated_at_date',
+ uid: 'UID',
+ locale: 'en-us',
+ _version: 1,
+ _in_progress: false,
+ _variant: {
+ uid: '_variant_uid',
+ variant_id: 'variant_id',
+ customized_fields: ['title', 'author'],
+ base_entry_version: 1
+ }
}
const variantsUpdateEntryMock = {
- "title": "title",
- "url": "/url",
- "uid": "UID",
- "locale": "en-us",
- "_version": 1,
- "_in_progress": false,
- "_variant": {
- "customized_fields": ["title", "url"],
+ title: 'title',
+ url: '/url',
+ uid: 'UID',
+ locale: 'en-us',
+ _version: 1,
+ _in_progress: false,
+ _variant: {
+ customized_fields: ['title', 'url']
},
- "created_at": "created_at_date",
- "updated_at": "updated_at_date",
+ created_at: 'created_at_date',
+ updated_at: 'updated_at_date'
}
const variantsEntryMock = {
- "title": "title",
- "url": "/url",
- "locale": "en-us",
- "uid": "UID",
- "_version": 1,
- "_in_progress": false,
- "created_by": "created_by_uid",
- "updated_by": "updated_by_uid",
- "created_at": "created_at_date",
- "updated_at": "updated_at_date",
- "_variant": {
- "uid": "_variant_uid",
- "variant_id": 'variant_id',
- "customized_fields": ["title"],
- "base_entry_version": 10,
- }
+ title: 'title',
+ url: '/url',
+ locale: 'en-us',
+ uid: 'UID',
+ _version: 1,
+ _in_progress: false,
+ created_by: 'created_by_uid',
+ updated_by: 'updated_by_uid',
+ created_at: 'created_at_date',
+ updated_at: 'updated_at_date',
+ _variant: {
+ uid: '_variant_uid',
+ variant_id: 'variant_id',
+ customized_fields: ['title'],
+ base_entry_version: 10
+ }
}
const labelMock = {
@@ -602,7 +602,6 @@ const variantsMock1 = {
name: 'name'
}
-
const environmentMock = {
...systemFieldsMock,
...systemFieldsUserMock,
@@ -974,10 +973,10 @@ const auditLogsMock = {
]
}
-const taxonomyImportMock = {
- "uid": "UID",
- "name": "name",
- "description": "test"
+const taxonomyImportMock = {
+ uid: 'UID',
+ name: 'name',
+ description: 'test'
}
const taxonomyMock = {
@@ -1050,8 +1049,8 @@ const variantGroupMock = {
name: 'Test',
source: 'Personalize',
content_types: [
- "iphone_product_page"
- ],
+ 'iphone_product_page'
+ ]
}
const variantMock = {
@@ -1061,33 +1060,33 @@ const variantMock = {
}
const variantsMock = {
- "uid": "variant_group_1",
- "name": "Variant Group 1",
- "content_types": [
- "CTSTAET123"
+ uid: 'variant_group_1',
+ name: 'Variant Group 1',
+ content_types: [
+ 'CTSTAET123'
],
- "personalize_metadata": {
- "experience_uid": "variant_group_ex_uid",
- "experience_short_uid": "variant_group_short_uid",
- "project_uid": "variant_group_project_uid"
+ personalize_metadata: {
+ experience_uid: 'variant_group_ex_uid',
+ experience_short_uid: 'variant_group_short_uid',
+ project_uid: 'variant_group_project_uid'
},
- "variants": [ // variants inside the group
- {
- "uid": "UID",
- "created_by": "user_id",
- "updated_by": "user_id",
- "name": "Test",
- "personalize_metadata": {
- "experience_uid": "exp1",
- "experience_short_uid": "expShortUid1",
- "project_uid": "project_uid1",
- "variant_short_uid": "variantShort_uid1"
- },
- "created_at": "created_at_date",
- "updated_at": "updated_at_date"
- }
+ variants: [ // variants inside the group
+ {
+ uid: 'UID',
+ created_by: 'user_id',
+ updated_by: 'user_id',
+ name: 'Test',
+ personalize_metadata: {
+ experience_uid: 'exp1',
+ experience_short_uid: 'expShortUid1',
+ project_uid: 'project_uid1',
+ variant_short_uid: 'variantShort_uid1'
+ },
+ created_at: 'created_at_date',
+ updated_at: 'updated_at_date'
+ }
],
- "count": 1
+ count: 1
}
const variantGroupsMock = {
@@ -1096,47 +1095,47 @@ const variantGroupsMock = {
{
...systemFieldsMock,
...systemFieldsUserMock,
- "name": "Test",
- "source": 'Personalize',
- "content_types": [
- "iphone_product_page"
+ name: 'Test',
+ source: 'Personalize',
+ content_types: [
+ 'iphone_product_page'
],
- "variant_count": 1,
- "variants": [
+ variant_count: 1,
+ variants: [
{
...systemFieldsMock,
...systemFieldsUserMock,
- "name": "Test"
+ name: 'Test'
}
]
},
{
- "name": "Test",
- "source": 'Personalize',
+ name: 'Test',
+ source: 'Personalize',
...systemFieldsMock,
...systemFieldsUserMock,
- "content_types": [
- "iphone_prod_desc"
+ content_types: [
+ 'iphone_prod_desc'
],
- "variant_count": 1,
- "variants": [
+ variant_count: 1,
+ variants: [
{
...systemFieldsMock,
...systemFieldsUserMock,
- "name": "Test"
+ name: 'Test'
}
]
}
],
ungrouped_variants: [
- {
- "created_by": "blt6cdf4e0b02b1c446",
- "updated_by": "blt303b74fa96e1082a",
- "created_at": "2022-10-26T06:52:20.073Z",
- "updated_at": "2023-09-25T04:55:56.549Z",
- "uid": "iphone_color_red",
- "name": "Red"
- }
+ {
+ created_by: 'blt6cdf4e0b02b1c446',
+ updated_by: 'blt303b74fa96e1082a',
+ created_at: '2022-10-26T06:52:20.073Z',
+ updated_at: '2023-09-25T04:55:56.549Z',
+ uid: 'iphone_color_red',
+ name: 'Red'
+ }
],
ungrouped_variant_count: 1
}
@@ -1165,27 +1164,27 @@ const varinatsEntryMock = {
_in_progress: false,
_rules: [],
_variant: {
- _uid: "variant uid",
- _instance_uid: "entry_variant uid",
- _change_set: [],
- _base_entry_version: 'version number of base entry',
- }
+ _uid: 'variant uid',
+ _instance_uid: 'entry_variant uid',
+ _change_set: [],
+ _base_entry_version: 'version number of base entry'
+ }
}
const variantEntryVersion = {
- "versions": [
- {
- "_version": 3,
- "locale": "en-us"
- },
- {
- "_version": 2,
- "locale": "en-us"
- },
- {
- "_version": 1,
- "locale": "en-us"
- }
+ versions: [
+ {
+ _version: 3,
+ locale: 'en-us'
+ },
+ {
+ _version: 2,
+ locale: 'en-us'
+ },
+ {
+ _version: 1,
+ locale: 'en-us'
+ }
]
}
diff --git a/test/unit/publishRules-test.js b/test/unit/publishRules-test.js
index 0f4ac2db..e1a26918 100644
--- a/test/unit/publishRules-test.js
+++ b/test/unit/publishRules-test.js
@@ -65,14 +65,14 @@ describe('Contentstack PublishRule test', () => {
it('PublishRule create test', done => {
var mock = new MockAdapter(Axios)
mock.onPost('/workflows/publishing_rules').reply(200, {
- publishing_rule: {
+ publishing_rule: {
...publishRulesMock
}
})
makePublishRule()
.create()
- .then((publish_rule) => {
- checkPublishRules(publish_rule)
+ .then((publishRule) => {
+ checkPublishRules(publishRule)
done()
})
.catch(done)
@@ -87,8 +87,8 @@ describe('Contentstack PublishRule test', () => {
})
makePublishRule()
.fetchAll()
- .then((publish_rule) => {
- checkPublishRules(publish_rule.items[0])
+ .then((publishRule) => {
+ checkPublishRules(publishRule.items[0])
done()
})
.catch(done)
@@ -103,8 +103,8 @@ describe('Contentstack PublishRule test', () => {
})
makePublishRule({ stackHeaders: stackHeadersMock })
.fetchAll({})
- .then((publish_rule) => {
- checkPublishRules(publish_rule.items[0])
+ .then((publishRule) => {
+ checkPublishRules(publishRule.items[0])
done()
})
.catch(done)
@@ -119,8 +119,8 @@ describe('Contentstack PublishRule test', () => {
})
makePublishRule({ stackHeaders: stackHeadersMock })
.fetchAll(null)
- .then((publish_rule) => {
- checkPublishRules(publish_rule.items[0])
+ .then((publishRule) => {
+ checkPublishRules(publishRule.items[0])
done()
})
.catch(done)
@@ -129,19 +129,19 @@ describe('Contentstack PublishRule test', () => {
it('PublishRule update test', done => {
var mock = new MockAdapter(Axios)
mock.onPut('/workflows/publishing_rules/UID').reply(200, {
- publishing_rule: {
+ publishing_rule: {
...publishRulesMock
}
})
makePublishRule({
- publishing_rule: {
+ publishing_rule: {
...systemUidMock
},
stackHeaders: stackHeadersMock
})
.update()
- .then((publish_rule) => {
- checkPublishRules(publish_rule)
+ .then((publishRule) => {
+ checkPublishRules(publishRule)
done()
})
.catch(done)
@@ -161,8 +161,8 @@ describe('Contentstack PublishRule test', () => {
stackHeaders: stackHeadersMock
})
.fetch()
- .then((publish_rule) => {
- checkPublishRules(publish_rule)
+ .then((publishRule) => {
+ checkPublishRules(publishRule)
done()
})
.catch(done)
@@ -180,25 +180,22 @@ describe('Contentstack PublishRule test', () => {
stackHeaders: stackHeadersMock
})
.delete()
- .then((publish_rule) => {
- expect(publish_rule.notice).to.be.equal(noticeMock.notice)
+ .then((publishRule) => {
+ expect(publishRule.notice).to.be.equal(noticeMock.notice)
done()
})
.catch(done)
})
-
})
-
-function makePublishRule(data) {
- return new PublishRules(Axios, data)
+function makePublishRule (data) {
+ return new PublishRules(Axios, data)
}
function checkPublishRules (publishRules) {
checkSystemFields(publishRules)
expect(publishRules.locale).to.be.equal('en-us')
expect(publishRules.action).to.be.equal('publish')
- expect(publishRules.environment).to.be.equal("env")
- expect(publishRules.workflow_stage).to.be.equal("stage")
+ expect(publishRules.environment).to.be.equal('env')
+ expect(publishRules.workflow_stage).to.be.equal('stage')
}
-
\ No newline at end of file
diff --git a/test/unit/release-test.js b/test/unit/release-test.js
index f20ad79a..829f22bf 100644
--- a/test/unit/release-test.js
+++ b/test/unit/release-test.js
@@ -233,7 +233,7 @@ describe('Contentstack Release test', () => {
},
stackHeaders: stackHeadersMock
})
- .item()
+ .item()
.move({ data: { release_uid: 'UID2', items: ['$all'] }, release_version: '2.0' })
.then((response) => {
expect(response.notice).to.be.equal(noticeMock.notice)
@@ -244,7 +244,7 @@ describe('Contentstack Release test', () => {
it('Release delete item test', done => {
var mock = new MockAdapter(Axios)
- mock.onDelete('/releases/UID/item').reply(200,
+ mock.onDelete('/releases/UID/item').reply(200,
{ ...noticeMock }
)
makeRelease({
@@ -262,7 +262,7 @@ describe('Contentstack Release test', () => {
.catch(done)
})
- it("should delete specific item for v2", (done) => {
+ it('should delete specific item for v2', (done) => {
var mock = new MockAdapter(Axios)
mock.onDelete('/releases/UID/item').reply(200, {
notice: 'Notice'
@@ -275,17 +275,17 @@ describe('Contentstack Release test', () => {
})
.item()
.delete({
- item: { uid: 'uid', locale: "en-us" },
- release_version: "2.0",
+ item: { uid: 'uid', locale: 'en-us' },
+ release_version: '2.0'
})
.then((response) => {
- expect(response.notice).to.be.equal('Notice');
- done();
+ expect(response.notice).to.be.equal('Notice')
+ done()
})
- .catch(done);
- });
-
- it("should delete specific items for v2", (done) => {
+ .catch(done)
+ })
+
+ it('should delete specific items for v2', (done) => {
var mock = new MockAdapter(Axios)
mock.onDelete('/releases/UID/items').reply(200, {
notice: 'Notice'
@@ -299,17 +299,17 @@ describe('Contentstack Release test', () => {
.item()
.delete({
items: [
- { uid: 'uid1', locale: "en-us" },
- { uid: 'uid2', locale: "en-us" },
+ { uid: 'uid1', locale: 'en-us' },
+ { uid: 'uid2', locale: 'en-us' }
],
- release_version: "2.0",
+ release_version: '2.0'
})
.then((response) => {
- expect(response.notice).to.be.equal('Notice');
- done();
+ expect(response.notice).to.be.equal('Notice')
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
})
function makeRelease (data) {
diff --git a/test/unit/role-test.js b/test/unit/role-test.js
index c926650f..c276d852 100644
--- a/test/unit/role-test.js
+++ b/test/unit/role-test.js
@@ -3,7 +3,7 @@ import { expect } from 'chai'
import { describe, it } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
import { Role, RoleCollection } from '../../lib/stack/roles'
-import { systemUidMock, stackHeadersMock, roleMock, noticeMock, roleMockWithTaxonomy} from './mock/objects'
+import { systemUidMock, stackHeadersMock, roleMock, noticeMock, roleMockWithTaxonomy } from './mock/objects'
describe('Contentstack Role test', () => {
it('Role test without uid', done => {
diff --git a/test/unit/stack-test.js b/test/unit/stack-test.js
index 64743855..17388906 100644
--- a/test/unit/stack-test.js
+++ b/test/unit/stack-test.js
@@ -2,7 +2,7 @@ import { describe, it } from 'mocha'
import { Stack, StackCollection } from '../../lib/stack/index'
import Axios from 'axios'
import { expect } from 'chai'
-import { stackMock, noticeMock, systemUidMock, stackHeadersMock } from './mock/objects'
+import { stackMock, noticeMock, systemUidMock } from './mock/objects'
import MockAdapter from 'axios-mock-adapter'
describe('Contentstack Stack test', () => {
@@ -860,7 +860,6 @@ describe('Contentstack Stack test', () => {
// .catch(done)
// })
-
it('Stack transfer ownership test', done => {
const mock = new MockAdapter(Axios)
mock.onPost('/stacks/transfer_ownership').reply(200, {
@@ -1000,55 +999,55 @@ describe('Contentstack Stack test', () => {
})
it('Global fields initialization without uid', done => {
- const global_field = makeStack({
+ const globalField = makeStack({
stack: {
api_key: 'stack_api_key'
}
})
- .globalField()
- expect(global_field.uid).to.be.equal(undefined)
- expect(global_field.stackHeaders).to.not.equal(undefined)
- expect(global_field.stackHeaders.api_key).to.be.equal('stack_api_key')
+ .globalField()
+ expect(globalField.uid).to.be.equal(undefined)
+ expect(globalField.stackHeaders).to.not.equal(undefined)
+ expect(globalField.stackHeaders.api_key).to.be.equal('stack_api_key')
done()
})
it('Management token initialization without uid', done => {
- const management_token = makeStack({
+ const managementToken = makeStack({
stack: {
api_key: 'stack_api_key'
}
})
- .managementToken()
- expect(management_token.uid).to.be.equal(undefined)
- expect(management_token.stackHeaders).to.not.equal(undefined)
- expect(management_token.stackHeaders.api_key).to.be.equal('stack_api_key')
+ .managementToken()
+ expect(managementToken.uid).to.be.equal(undefined)
+ expect(managementToken.stackHeaders).to.not.equal(undefined)
+ expect(managementToken.stackHeaders.api_key).to.be.equal('stack_api_key')
done()
})
it('Global fields initialization uid', done => {
- const global_field = makeStack({
+ const globalField = makeStack({
stack: {
api_key: 'stack_api_key'
}
})
- .globalField(systemUidMock.uid)
- expect(global_field.uid).to.be.equal(systemUidMock.uid)
- expect(global_field.stackHeaders.api_key).to.be.equal('stack_api_key')
+ .globalField(systemUidMock.uid)
+ expect(globalField.uid).to.be.equal(systemUidMock.uid)
+ expect(globalField.stackHeaders.api_key).to.be.equal('stack_api_key')
done()
})
it('Management token initialization uid', done => {
- const management_token = makeStack({
+ const managementToken = makeStack({
stack: {
api_key: 'stack_api_key'
}
})
- .managementToken(systemUidMock.uid)
- expect(management_token.uid).to.be.equal(systemUidMock.uid)
- expect(management_token.stackHeaders.api_key).to.be.equal('stack_api_key')
+ .managementToken(systemUidMock.uid)
+ expect(managementToken.uid).to.be.equal(systemUidMock.uid)
+ expect(managementToken.stackHeaders.api_key).to.be.equal('stack_api_key')
done()
})
-
+
it('should update users roles', done => {
var mock = new MockAdapter(Axios)
const usersRolesData = {
@@ -1073,17 +1072,16 @@ describe('Contentstack Stack test', () => {
})
it('should fetch variants of a stack', done => {
- var mock = new MockAdapter(Axios)
const variantsResponse = makeStack({
stack: {
api_key: 'stack_api_key'
}
})
.variants()
- expect(variantsResponse.create).to.be.not.equal(undefined)
- expect(variantsResponse.query).to.be.not.equal(undefined)
- expect(variantsResponse.fetchByUIDs).to.be.not.equal(undefined)
- done()
+ expect(variantsResponse.create).to.be.not.equal(undefined)
+ expect(variantsResponse.query).to.be.not.equal(undefined)
+ expect(variantsResponse.fetchByUIDs).to.be.not.equal(undefined)
+ done()
})
})
diff --git a/test/unit/taxonomy-test.js b/test/unit/taxonomy-test.js
index a20d303a..879b56cf 100644
--- a/test/unit/taxonomy-test.js
+++ b/test/unit/taxonomy-test.js
@@ -3,7 +3,7 @@ import path from 'path'
import { expect } from 'chai'
import { describe, it } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
-import { Taxonomy, createFormData, TaxonomyCollection } from '../../lib/stack/taxonomy'
+import { Taxonomy, createFormData } from '../../lib/stack/taxonomy'
import { systemUidMock, stackHeadersMock, taxonomyMock, noticeMock, termsMock, taxonomyImportMock } from './mock/objects'
describe('Contentstack Taxonomy test', () => {
@@ -167,7 +167,6 @@ describe('Contentstack Taxonomy test', () => {
.catch(done)
})
-
it('term create test', done => {
var mock = new MockAdapter(Axios)
mock.onPost(`/taxonomies/taxonomy_uid/terms`).reply(200, {
diff --git a/test/unit/ungroupedVariants-test.js b/test/unit/ungroupedVariants-test.js
index c67e0a55..2a81c78f 100644
--- a/test/unit/ungroupedVariants-test.js
+++ b/test/unit/ungroupedVariants-test.js
@@ -108,7 +108,7 @@ describe('Contentstack Variants test', () => {
]
})
makeVariants()
- .fetchByUIDs(['uid1','uid2'])
+ .fetchByUIDs(['uid1', 'uid2'])
.then((variants) => {
checkVariants(variants.variants[0])
done()
@@ -162,7 +162,7 @@ function makeVariants (data = {}) {
}
function checkVariants (variants) {
- if(variants.variants){
+ if (variants.variants) {
variants = variants.variants
}
checkSystemFields(variants)
diff --git a/test/unit/variantGroup-test.js b/test/unit/variantGroup-test.js
index c50f6817..cb3f934a 100644
--- a/test/unit/variantGroup-test.js
+++ b/test/unit/variantGroup-test.js
@@ -4,7 +4,6 @@ import { describe, it } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
import { VariantGroup, VariantGroupCollection } from '../../lib/stack/variantGroup'
import { systemUidMock, stackHeadersMock, variantGroupMock, noticeMock, checkSystemFields, variantGroupsMock } from './mock/objects'
-import { checkEnvironment } from './variantGroup-test'
describe('Contentstack VariantGroup test', () => {
it('VariantGroup test without uid', done => {
@@ -19,7 +18,7 @@ describe('Contentstack VariantGroup test', () => {
})
it('VariantGroup test with uid', done => {
- const variantGroup = makeVariantGroup({variant_group: {...systemUidMock}})
+ const variantGroup = makeVariantGroup({ variant_group: { ...systemUidMock } })
expect(variantGroup.urlPath).to.be.equal(`/variant_groups/${systemUidMock.uid}`)
expect(variantGroup.stackHeaders).to.be.equal(undefined)
expect(variantGroup.update).to.not.equal(undefined)
@@ -30,8 +29,8 @@ describe('Contentstack VariantGroup test', () => {
})
it('VariantGroup test with Stack Headers', done => {
- const variantGroup = makeVariantGroup({ variant_group:{
- ...systemUidMock,
+ const variantGroup = makeVariantGroup({ variant_group: {
+ ...systemUidMock,
stackHeaders: stackHeadersMock
}
})
@@ -80,7 +79,7 @@ describe('Contentstack VariantGroup test', () => {
it('VariantGroup Query test', done => {
var mock = new MockAdapter(Axios)
- mock.onGet('/variant_groups').reply(200, { ...variantGroupsMock
+ mock.onGet('/variant_groups').reply(200, { ...variantGroupsMock
})
makeVariantGroup()
.query()
@@ -99,12 +98,12 @@ describe('Contentstack VariantGroup test', () => {
...variantGroupMock
}
})
- makeVariantGroup({variant_group:{
- ...systemUidMock,
+ makeVariantGroup({ variant_group: {
+ ...systemUidMock,
stackHeaders: stackHeadersMock
}
})
- .update({name: 'test'})
+ .update({ name: 'test' })
.then((variantGroup) => {
checkVariantGroup(variantGroup.variant_group)
done()
@@ -160,7 +159,7 @@ describe('Contentstack VariantGroup test', () => {
},
stackHeaders: stackHeadersMock
})
- .variants()
+ .variants()
expect(variants.variant_group_uid).to.be.equal(systemUidMock.uid)
done()
})
@@ -171,11 +170,11 @@ function makeVariantGroup (data = {}) {
}
function checkVariantGroup (variantGroup) {
- if(variantGroup.variant_group){
+ if (variantGroup.variant_group) {
variantGroup = variantGroup.variant_group
}
checkSystemFields(variantGroup)
expect(variantGroup.name).to.be.equal('Test')
expect(variantGroup.source).to.be.equal('Personalize')
expect(variantGroup.content_types.length).to.be.equal(1)
-}
\ No newline at end of file
+}
diff --git a/test/unit/variants-entry-test.js b/test/unit/variants-entry-test.js
index a9780361..69589873 100644
--- a/test/unit/variants-entry-test.js
+++ b/test/unit/variants-entry-test.js
@@ -1,213 +1,212 @@
-import Axios from "axios";
-import { expect } from "chai";
-import { describe, it } from "mocha";
-import MockAdapter from "axios-mock-adapter";
+import Axios from 'axios'
+import { expect } from 'chai'
+import { describe, it } from 'mocha'
+import MockAdapter from 'axios-mock-adapter'
import {
Variants,
- VariantsCollection,
-} from "../../lib/stack/contentType/entry/variants/";
-import { Entry } from "../../lib/stack/contentType/entry/";
+ VariantsCollection
+} from '../../lib/stack/contentType/entry/variants/'
+import { Entry } from '../../lib/stack/contentType/entry/'
import {
checkSystemFields,
varinatsEntryMock,
- variantEntryVersion,
-} from "./mock/objects";
-import { systemUidMock, noticeMock } from "./mock/objects";
+ variantEntryVersion
+ , systemUidMock, noticeMock } from './mock/objects'
-describe("Contentstack Variants entry test", () => {
- it("Variants entry test without uid", (done) => {
+describe('Contentstack Variants entry test', () => {
+ it('Variants entry test without uid', (done) => {
const entry = makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "UID",
- });
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'UID'
+ })
expect(entry.urlPath).to.be.equal(
- "/content_types/content_type_uid/entries/UID/variants"
- );
- expect(entry.stackHeaders).to.be.equal(undefined);
- expect(entry.update).to.be.equal(undefined);
- expect(entry.delete).to.be.equal(undefined);
- expect(entry.fetch).to.be.equal(undefined);
- expect(entry.query).to.not.equal(undefined);
- done();
- });
+ '/content_types/content_type_uid/entries/UID/variants'
+ )
+ expect(entry.stackHeaders).to.be.equal(undefined)
+ expect(entry.update).to.be.equal(undefined)
+ expect(entry.delete).to.be.equal(undefined)
+ expect(entry.fetch).to.be.equal(undefined)
+ expect(entry.query).to.not.equal(undefined)
+ done()
+ })
- it("Variants entry test with uid", (done) => {
+ it('Variants entry test with uid', (done) => {
const entry = makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "UID",
- });
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'UID'
+ })
expect(entry.urlPath).to.be.equal(
`/content_types/content_type_uid/entries/UID/variants`
- );
- done();
- });
+ )
+ done()
+ })
- it("Variants entry Collection test with blank data", (done) => {
- const entries = new VariantsCollection(Axios, {});
- expect(entries.length).to.be.equal(0);
- done();
- });
+ it('Variants entry Collection test with blank data', (done) => {
+ const entries = new VariantsCollection(Axios, {})
+ expect(entries.length).to.be.equal(0)
+ done()
+ })
- it("Variants entry Collection test with data", (done) => {
+ it('Variants entry Collection test with data', (done) => {
const entries = new VariantsCollection(Axios, {
- entries: [varinatsEntryMock],
- });
- expect(entries.length).to.be.equal(1);
- checkEntry(entries[0].variants);
- done();
- });
+ entries: [varinatsEntryMock]
+ })
+ expect(entries.length).to.be.equal(1)
+ checkEntry(entries[0].variants)
+ done()
+ })
- it("Variants entry Query test", (done) => {
- var mock = new MockAdapter(Axios);
+ it('Variants entry Query test', (done) => {
+ var mock = new MockAdapter(Axios)
mock
- .onGet("/content_types/content_type_uid/entries/UID/variants")
+ .onGet('/content_types/content_type_uid/entries/UID/variants')
.reply(200, {
- entries: [varinatsEntryMock],
- });
+ entries: [varinatsEntryMock]
+ })
makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "UID",
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'UID'
})
.query()
.find()
.then((entry) => {
- checkEntry(entry.items[0].variants);
- done();
+ checkEntry(entry.items[0].variants)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Variants entry fetch test", (done) => {
- var mock = new MockAdapter(Axios);
+ it('Variants entry fetch test', (done) => {
+ var mock = new MockAdapter(Axios)
mock
.onGet(
- "/content_types/content_type_uid/entries/UID/variants/variants_uid"
+ '/content_types/content_type_uid/entries/UID/variants/variants_uid'
)
.reply(200, {
entry: {
- ...varinatsEntryMock,
- },
- });
+ ...varinatsEntryMock
+ }
+ })
makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "UID",
- variants_uid: "variants_uid",
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'UID',
+ variants_uid: 'variants_uid'
})
.fetch()
.then((entry) => {
- checkEntry(entry.entry);
- done();
+ checkEntry(entry.entry)
+ done()
})
- .catch(done);
- });
- it("Variants entry version test", (done) => {
- var mock = new MockAdapter(Axios);
+ .catch(done)
+ })
+ it('Variants entry version test', (done) => {
+ var mock = new MockAdapter(Axios)
mock
.onGet(
- "/content_types/content_type_uid/entries/UID/variants/variants_uid/versions"
+ '/content_types/content_type_uid/entries/UID/variants/variants_uid/versions'
)
.reply(200, {
- ...variantEntryVersion,
- });
+ ...variantEntryVersion
+ })
makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "UID",
- variants_uid: "variants_uid",
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'UID',
+ variants_uid: 'variants_uid'
})
.versions()
.then((entry) => {
- expect(entry.versions.length).to.be.equal(3);
- done();
+ expect(entry.versions.length).to.be.equal(3)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Entry publish test", (done) => {
- var mock = new MockAdapter(Axios);
+ it('Entry publish test', (done) => {
+ var mock = new MockAdapter(Axios)
const publishVariantEntryFirst = {
entry: {
- environments: ["development"],
- locales: ["en-us"],
+ environments: ['development'],
+ locales: ['en-us'],
variants: [
{
- uid: "variants_uid",
- version: 1,
- },
+ uid: 'variants_uid',
+ version: 1
+ }
],
variant_rules: {
publish_latest_base: false,
- publish_latest_base_conditionally: true,
- },
+ publish_latest_base_conditionally: true
+ }
},
- locale: "en-us",
- version: 1,
- };
+ locale: 'en-us',
+ version: 1
+ }
mock
- .onPost("/content_types/content_type_uid/entries/UID/publish")
+ .onPost('/content_types/content_type_uid/entries/UID/publish')
.reply(200, {
...noticeMock,
- job_id: "job_id",
- });
+ job_id: 'job_id'
+ })
- makeEntry({ entry: { ...systemUidMock }, options: { api_version: "3.2" } })
+ makeEntry({ entry: { ...systemUidMock }, options: { api_version: '3.2' } })
.publish({
publishDetails: publishVariantEntryFirst.entry,
- locale: publishVariantEntryFirst.locale,
+ locale: publishVariantEntryFirst.locale
})
.then((entry) => {
- expect(entry.notice).to.be.equal(noticeMock.notice);
- expect(entry.job_id).to.be.not.equal(undefined);
- done();
+ expect(entry.notice).to.be.equal(noticeMock.notice)
+ expect(entry.job_id).to.be.not.equal(undefined)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Entry unpublish test", (done) => {
+ it('Entry unpublish test', (done) => {
var unpublishVariantEntryFirst = {
entry: {
- environments: ["development"],
- locales: ["en-at"],
+ environments: ['development'],
+ locales: ['en-at'],
variants: [
{
- uid: "",
- version: 1,
- },
+ uid: '',
+ version: 1
+ }
],
variant_rules: {
publish_latest_base: false,
- publish_latest_base_conditionally: true,
- },
+ publish_latest_base_conditionally: true
+ }
},
- locale: "en-us",
- version: 1,
- };
- var mock = new MockAdapter(Axios);
+ locale: 'en-us',
+ version: 1
+ }
+ var mock = new MockAdapter(Axios)
mock
- .onPost("/content_types/content_type_uid/entries/UID/unpublish")
+ .onPost('/content_types/content_type_uid/entries/UID/unpublish')
.reply(200, {
...noticeMock,
- job_id: "job_id",
- });
- makeEntry({ entry: { ...systemUidMock }, options: { api_version: "3.2" } })
+ job_id: 'job_id'
+ })
+ makeEntry({ entry: { ...systemUidMock }, options: { api_version: '3.2' } })
.unpublish({
publishDetails: unpublishVariantEntryFirst.entry,
- locale: unpublishVariantEntryFirst.locale,
+ locale: unpublishVariantEntryFirst.locale
})
.then((entry) => {
- expect(entry.notice).to.be.equal(noticeMock.notice);
- done();
+ expect(entry.notice).to.be.equal(noticeMock.notice)
+ done()
})
- .catch(done);
- });
+ .catch(done)
+ })
- it("Variants update test", (done) => {
- var mock = new MockAdapter(Axios);
+ it('Variants update test', (done) => {
+ var mock = new MockAdapter(Axios)
const updatedData = {
entry: {
- title: "Updated Variant Title",
- url: "/updated-variant-url",
- },
- };
+ title: 'Updated Variant Title',
+ url: '/updated-variant-url'
+ }
+ }
const variantEntryMock = {
uid: 'variant_uid',
title: 'Variant Title',
@@ -222,33 +221,33 @@ describe("Contentstack Variants entry test", () => {
.reply(200, {
entry: {
...variantEntryMock,
- ...updatedData.entry,
- },
- });
+ ...updatedData.entry
+ }
+ })
- makeEntryVariants({
- content_type_uid: "content_type_uid",
- entry_uid: "entry_uid",
- variants_uid: "variant_uid",
+ makeEntryVariants({
+ content_type_uid: 'content_type_uid',
+ entry_uid: 'entry_uid',
+ variants_uid: 'variant_uid'
})
.update(updatedData)
.then((response) => {
- expect(response.entry.title).to.be.equal("Updated Variant Title");
- expect(response.entry.url).to.be.equal("/updated-variant-url");
- done();
+ expect(response.entry.title).to.be.equal('Updated Variant Title')
+ expect(response.entry.url).to.be.equal('/updated-variant-url')
+ done()
})
- .catch(done);
- });
-});
+ .catch(done)
+ })
+})
-function makeEntryVariants(data) {
- return new Variants(Axios, { ...data });
+function makeEntryVariants (data) {
+ return new Variants(Axios, { ...data })
}
-function makeEntry(data) {
- return new Entry(Axios, { content_type_uid: "content_type_uid", ...data });
+function makeEntry (data) {
+ return new Entry(Axios, { content_type_uid: 'content_type_uid', ...data })
}
-function checkEntry(entry) {
- checkSystemFields(entry);
+function checkEntry (entry) {
+ checkSystemFields(entry)
}
diff --git a/test/unit/variantsWithVariantsGroup-test.js b/test/unit/variantsWithVariantsGroup-test.js
index f441dedc..94e0ab4a 100644
--- a/test/unit/variantsWithVariantsGroup-test.js
+++ b/test/unit/variantsWithVariantsGroup-test.js
@@ -3,12 +3,11 @@ import { expect } from 'chai'
import { describe, it } from 'mocha'
import MockAdapter from 'axios-mock-adapter'
import { Variants, VariantsCollection } from '../../lib/stack/variantGroup/variants'
-import { systemUidMock, stackHeadersMock, variantMock, noticeMock, checkSystemFields, variantsMock } from './mock/objects'
-import { checkEnvironment } from './variantsWithVariantsGroup-test'
+import { systemUidMock, stackHeadersMock, variantMock, checkSystemFields, variantsMock } from './mock/objects'
describe('Contentstack Variants test', () => {
it(' Variants test without uid', done => {
- const variants = makeVariants({variant_group_uid: systemUidMock.uid})
+ const variants = makeVariants({ variant_group_uid: systemUidMock.uid })
expect(variants.urlPath).to.be.equal(`/variant_groups/${systemUidMock.uid}/variants`)
expect(variants.stackHeaders).to.be.equal(undefined)
expect(variants.update).to.be.equal(undefined)
@@ -20,7 +19,7 @@ describe('Contentstack Variants test', () => {
})
it(' Variants test with uid', done => {
- const variants = makeVariants({variant_group_uid: systemUidMock.uid, variants: {uid: systemUidMock.uid}})
+ const variants = makeVariants({ variant_group_uid: systemUidMock.uid, variants: { uid: systemUidMock.uid } })
expect(variants.urlPath).to.be.equal(`/variant_groups/${systemUidMock.uid}/variants/${systemUidMock.uid}`)
expect(variants.stackHeaders).to.be.equal(undefined)
expect(variants.update).to.not.equal(undefined)
@@ -31,7 +30,7 @@ describe('Contentstack Variants test', () => {
})
it(' Variants test with Stack Headers', done => {
- const variants = makeVariants({ variant_group_uid: systemUidMock.uid,
+ const variants = makeVariants({ variant_group_uid: systemUidMock.uid,
stackHeaders: stackHeadersMock
})
expect(variants.urlPath).to.be.equal(`/variant_groups/${systemUidMock.uid}/variants`)
@@ -41,13 +40,13 @@ describe('Contentstack Variants test', () => {
})
it(' Variants Collection test with blank data', done => {
- const variants = new VariantsCollection(Axios, {})
+ const variants = new VariantsCollection(Axios, {})
expect(variants.length).to.be.equal(0)
done()
})
it(' Variants Collection test with data', done => {
- const variants = new VariantsCollection(Axios, { variant_group_uid: systemUidMock.uid,
+ const variants = new VariantsCollection(Axios, { variant_group_uid: systemUidMock.uid,
variants: [
variantMock
]
@@ -64,7 +63,7 @@ describe('Contentstack Variants test', () => {
...variantMock
}
})
- makeVariants({variant_group_uid: systemUidMock.uid})
+ makeVariants({ variant_group_uid: systemUidMock.uid })
.create()
.then((variant) => {
checkVariants(variant)
@@ -75,9 +74,9 @@ describe('Contentstack Variants test', () => {
it(' Variants Query test', done => {
var mock = new MockAdapter(Axios)
- mock.onGet('/variant_groups/UID/variants').reply(200, { variant_group_uid: systemUidMock.uid, ...variantsMock
+ mock.onGet('/variant_groups/UID/variants').reply(200, { variant_group_uid: systemUidMock.uid, ...variantsMock
})
- makeVariants({variant_group_uid: systemUidMock.uid})
+ makeVariants({ variant_group_uid: systemUidMock.uid })
.query()
.find()
.then((variants) => {
@@ -90,14 +89,15 @@ describe('Contentstack Variants test', () => {
it(' Variants update test', done => {
var mock = new MockAdapter(Axios)
mock.onPut('/variant_groups/UID/variants/UID').reply(200, { variant_group_uid: systemUidMock.uid,
- variants: {
+ variants: {
...variantMock
}
})
- makeVariants({variant_group_uid: systemUidMock.uid, variants:{
+ makeVariants({ variant_group_uid: systemUidMock.uid,
+ variants: {
...systemUidMock,
- stackHeaders: stackHeadersMock
- }
+ stackHeaders: stackHeadersMock
+ }
})
.update()
.then((variant) => {
@@ -110,12 +110,12 @@ describe('Contentstack Variants test', () => {
it(' Variants fetch test', done => {
var mock = new MockAdapter(Axios)
mock.onGet('/variant_groups/UID/variants/UID').reply(200, { variant_group_uid: systemUidMock.uid,
- variants: {
+ variants: {
...variantMock
}
})
- makeVariants({ variant_group_uid: systemUidMock.uid,
- variants: {
+ makeVariants({ variant_group_uid: systemUidMock.uid,
+ variants: {
...systemUidMock
},
stackHeaders: stackHeadersMock
@@ -127,7 +127,6 @@ describe('Contentstack Variants test', () => {
})
.catch(done)
})
-
})
function makeVariants (data = {}) {
@@ -135,10 +134,10 @@ function makeVariants (data = {}) {
}
function checkVariants (variant) {
- if(variant.variants){
+ if (variant.variants) {
variant = variant.variants
}
checkSystemFields(variant)
expect(variant.name).to.be.equal('Test')
expect(variant.uid).to.be.equal('UID')
-}
\ No newline at end of file
+}
diff --git a/types/stack/auditLog/auditLog.d.ts b/types/stack/auditLog/auditLog.d.ts
new file mode 100644
index 00000000..fd018d4a
--- /dev/null
+++ b/types/stack/auditLog/auditLog.d.ts
@@ -0,0 +1,21 @@
+import { AnyProperty } from "../../utility/fields";
+import { SystemFunction } from "../../utility/operations";
+
+export interface AuditLog extends SystemFunction {
+ fetch(param: any): Promise;
+ fetchAll(): Promise;
+}
+
+export interface AuditLog extends AnyProperty {
+ uid: string;
+ stack: string;
+ created_at: string;
+ created_by: string;
+ module?: string;
+ event_type?: string;
+ request_id?: string;
+ metadata?: any;
+ remote_addr?: string;
+ request?: any;
+ response?: any;
+}
\ No newline at end of file
diff --git a/webpack/webpack.web.js b/webpack/webpack.web.js
index 913ecbb7..bbb5ccd8 100644
--- a/webpack/webpack.web.js
+++ b/webpack/webpack.web.js
@@ -6,7 +6,7 @@ const { merge } = require('webpack-merge')
const commonConfig = require('./webpack.common.js')()
module.exports = function (options) {
- delete commonConfig.externals;
+ delete commonConfig.externals
return merge(commonConfig, {
output: {
libraryTarget: 'umd',