@teemill/website 0.22.2 → 0.24.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +26 -2
- package/api.ts +901 -53
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +747 -19
- package/dist/api.js +180 -7
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +747 -19
- package/dist/esm/api.js +178 -5
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/Banner.md +23 -0
- package/docs/BannerImage.md +22 -0
- package/docs/Collection.md +10 -6
- package/docs/CollectionProduct.md +24 -0
- package/docs/CollectionProductImage.md +22 -0
- package/docs/CollectionsApi.md +128 -0
- package/docs/CreateCollectionRequest.md +38 -0
- package/docs/CreateCollectionRequestBanner.md +22 -0
- package/docs/CreateCollectionRequestBannerImage.md +22 -0
- package/docs/CreateCollectionRequestBannerOverlay.md +26 -0
- package/docs/CreateCollectionRequestProductsInner.md +24 -0
- package/docs/CreateCollectionRequestSeoMetadata.md +24 -0
- package/docs/MetaImage.md +1 -1
- package/docs/NavigationTag.md +24 -0
- package/docs/NullableMetaImage.md +23 -0
- package/docs/Overlay.md +27 -0
- package/docs/SalePrice.md +23 -0
- package/docs/UpdateCollectionRequest.md +7 -1
- package/docs/UpdateCollectionRequestBanner.md +22 -0
- package/docs/UpdateCollectionRequestBannerImage.md +22 -0
- package/docs/UpdateCollectionRequestProductsInner.md +24 -0
- package/docs/UpdateCollectionRequestSeoMetadata.md +24 -0
- package/docs/UpdateCollectionsRequestCollectionsInner.md +6 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBanner.md +22 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBannerImage.md +22 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBannerOverlay.md +26 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerProductsInner.md +24 -0
- package/docs/Variant.md +1 -1
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Website API
|
|
6
6
|
* Manage your PodOS Website
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.24.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,8 +22,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.SearchApi = exports.SearchApiFactory = exports.SearchApiFp = exports.SearchApiAxiosParamCreator = exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.ReviewsApi = exports.ReviewsApiFactory = void 0;
|
|
25
|
+
exports.ReviewsApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.PagesApi = exports.PagesApiFactory = exports.PagesApiFp = exports.PagesApiAxiosParamCreator = exports.MenuApi = exports.MenuApiFactory = exports.MenuApiFp = exports.MenuApiAxiosParamCreator = exports.FooterApi = exports.FooterApiFactory = exports.FooterApiFp = exports.FooterApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CrossSellApi = exports.CrossSellApiFactory = exports.CrossSellApiFp = exports.CrossSellApiAxiosParamCreator = exports.CollectionsApi = exports.CollectionsApiFactory = exports.CollectionsApiFp = exports.CollectionsApiAxiosParamCreator = exports.BlogsApi = exports.BlogsApiFactory = exports.BlogsApiFp = exports.BlogsApiAxiosParamCreator = exports.UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = exports.UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = exports.UpdateMenuRequestItemSubmenuInnerModeEnum = exports.SubmenuInnerImageTextShadowEnum = exports.SubmenuInnerImageTextAlignmentEnum = exports.SubmenuInnerImageButtonWidthEnum = exports.SubmenuInnerImageButtonBorderRadiusEnum = exports.SubmenuInnerImageBorderRadiusEnum = exports.SubmenuInnerModeEnum = exports.SalePriceCurrencyCodeEnum = exports.PriceCurrencyCodeEnum = exports.PaymentAccountMethodEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
26
|
+
exports.SearchApi = exports.SearchApiFactory = exports.SearchApiFp = exports.SearchApiAxiosParamCreator = exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.ReviewsApi = exports.ReviewsApiFactory = exports.ReviewsApiFp = void 0;
|
|
27
27
|
const axios_1 = require("axios");
|
|
28
28
|
// Some imports not used depending on template conditions
|
|
29
29
|
// @ts-ignore
|
|
@@ -60,6 +60,9 @@ exports.PaymentAccountMethodEnum = {
|
|
|
60
60
|
exports.PriceCurrencyCodeEnum = {
|
|
61
61
|
Gbp: 'GBP'
|
|
62
62
|
};
|
|
63
|
+
exports.SalePriceCurrencyCodeEnum = {
|
|
64
|
+
Gbp: 'GBP'
|
|
65
|
+
};
|
|
63
66
|
exports.SubmenuInnerModeEnum = {
|
|
64
67
|
Image: 'image',
|
|
65
68
|
List: 'list'
|
|
@@ -573,6 +576,97 @@ exports.BlogsApi = BlogsApi;
|
|
|
573
576
|
*/
|
|
574
577
|
const CollectionsApiAxiosParamCreator = function (configuration) {
|
|
575
578
|
return {
|
|
579
|
+
/**
|
|
580
|
+
* Create a new website collection.
|
|
581
|
+
* @summary Create website collection
|
|
582
|
+
* @param {string} project What project it is
|
|
583
|
+
* @param {number} [pageToken] Page reference token
|
|
584
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
585
|
+
* @param {string} [search] Search term to filter results
|
|
586
|
+
* @param {CreateCollectionRequest} [createCollectionRequest] Create a new collection
|
|
587
|
+
* @param {*} [options] Override http request option.
|
|
588
|
+
* @throws {RequiredError}
|
|
589
|
+
*/
|
|
590
|
+
createCollection: (project_1, pageToken_1, pageSize_1, search_1, createCollectionRequest_1, ...args_1) => __awaiter(this, [project_1, pageToken_1, pageSize_1, search_1, createCollectionRequest_1, ...args_1], void 0, function* (project, pageToken, pageSize, search, createCollectionRequest, options = {}) {
|
|
591
|
+
// verify required parameter 'project' is not null or undefined
|
|
592
|
+
(0, common_1.assertParamExists)('createCollection', 'project', project);
|
|
593
|
+
const localVarPath = `/v1/website/collections`;
|
|
594
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
595
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
596
|
+
let baseOptions;
|
|
597
|
+
if (configuration) {
|
|
598
|
+
baseOptions = configuration.baseOptions;
|
|
599
|
+
}
|
|
600
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
601
|
+
const localVarHeaderParameter = {};
|
|
602
|
+
const localVarQueryParameter = {};
|
|
603
|
+
// authentication session-oauth required
|
|
604
|
+
// oauth required
|
|
605
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
606
|
+
// authentication api-key required
|
|
607
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
608
|
+
if (project !== undefined) {
|
|
609
|
+
localVarQueryParameter['project'] = project;
|
|
610
|
+
}
|
|
611
|
+
if (pageToken !== undefined) {
|
|
612
|
+
localVarQueryParameter['pageToken'] = pageToken;
|
|
613
|
+
}
|
|
614
|
+
if (pageSize !== undefined) {
|
|
615
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
616
|
+
}
|
|
617
|
+
if (search !== undefined) {
|
|
618
|
+
localVarQueryParameter['search'] = search;
|
|
619
|
+
}
|
|
620
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
621
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
622
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
623
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
624
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createCollectionRequest, localVarRequestOptions, configuration);
|
|
625
|
+
return {
|
|
626
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
627
|
+
options: localVarRequestOptions,
|
|
628
|
+
};
|
|
629
|
+
}),
|
|
630
|
+
/**
|
|
631
|
+
*
|
|
632
|
+
* @summary Delete website collection
|
|
633
|
+
* @param {string} project What project it is
|
|
634
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
635
|
+
* @param {*} [options] Override http request option.
|
|
636
|
+
* @throws {RequiredError}
|
|
637
|
+
*/
|
|
638
|
+
deleteCollection: (project_1, collectionId_1, ...args_1) => __awaiter(this, [project_1, collectionId_1, ...args_1], void 0, function* (project, collectionId, options = {}) {
|
|
639
|
+
// verify required parameter 'project' is not null or undefined
|
|
640
|
+
(0, common_1.assertParamExists)('deleteCollection', 'project', project);
|
|
641
|
+
// verify required parameter 'collectionId' is not null or undefined
|
|
642
|
+
(0, common_1.assertParamExists)('deleteCollection', 'collectionId', collectionId);
|
|
643
|
+
const localVarPath = `/v1/website/collections/{collectionId}`
|
|
644
|
+
.replace(`{${"collectionId"}}`, encodeURIComponent(String(collectionId)));
|
|
645
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
646
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
647
|
+
let baseOptions;
|
|
648
|
+
if (configuration) {
|
|
649
|
+
baseOptions = configuration.baseOptions;
|
|
650
|
+
}
|
|
651
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
652
|
+
const localVarHeaderParameter = {};
|
|
653
|
+
const localVarQueryParameter = {};
|
|
654
|
+
// authentication session-oauth required
|
|
655
|
+
// oauth required
|
|
656
|
+
yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, "session-oauth", [], configuration);
|
|
657
|
+
// authentication api-key required
|
|
658
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
659
|
+
if (project !== undefined) {
|
|
660
|
+
localVarQueryParameter['project'] = project;
|
|
661
|
+
}
|
|
662
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
663
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
664
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
665
|
+
return {
|
|
666
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
667
|
+
options: localVarRequestOptions,
|
|
668
|
+
};
|
|
669
|
+
}),
|
|
576
670
|
/**
|
|
577
671
|
* Export collections as a CSV file.
|
|
578
672
|
* @summary Export collections
|
|
@@ -780,7 +874,7 @@ const CollectionsApiAxiosParamCreator = function (configuration) {
|
|
|
780
874
|
};
|
|
781
875
|
}),
|
|
782
876
|
/**
|
|
783
|
-
*
|
|
877
|
+
* Update a website collection.
|
|
784
878
|
* @summary Update website collections
|
|
785
879
|
* @param {string} project What project it is
|
|
786
880
|
* @param {number} [pageToken] Page reference token
|
|
@@ -840,6 +934,43 @@ exports.CollectionsApiAxiosParamCreator = CollectionsApiAxiosParamCreator;
|
|
|
840
934
|
const CollectionsApiFp = function (configuration) {
|
|
841
935
|
const localVarAxiosParamCreator = (0, exports.CollectionsApiAxiosParamCreator)(configuration);
|
|
842
936
|
return {
|
|
937
|
+
/**
|
|
938
|
+
* Create a new website collection.
|
|
939
|
+
* @summary Create website collection
|
|
940
|
+
* @param {string} project What project it is
|
|
941
|
+
* @param {number} [pageToken] Page reference token
|
|
942
|
+
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
943
|
+
* @param {string} [search] Search term to filter results
|
|
944
|
+
* @param {CreateCollectionRequest} [createCollectionRequest] Create a new collection
|
|
945
|
+
* @param {*} [options] Override http request option.
|
|
946
|
+
* @throws {RequiredError}
|
|
947
|
+
*/
|
|
948
|
+
createCollection(project, pageToken, pageSize, search, createCollectionRequest, options) {
|
|
949
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
950
|
+
var _a, _b, _c;
|
|
951
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createCollection(project, pageToken, pageSize, search, createCollectionRequest, options);
|
|
952
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
953
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CollectionsApi.createCollection']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
954
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
955
|
+
});
|
|
956
|
+
},
|
|
957
|
+
/**
|
|
958
|
+
*
|
|
959
|
+
* @summary Delete website collection
|
|
960
|
+
* @param {string} project What project it is
|
|
961
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
962
|
+
* @param {*} [options] Override http request option.
|
|
963
|
+
* @throws {RequiredError}
|
|
964
|
+
*/
|
|
965
|
+
deleteCollection(project, collectionId, options) {
|
|
966
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
967
|
+
var _a, _b, _c;
|
|
968
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteCollection(project, collectionId, options);
|
|
969
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
970
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['CollectionsApi.deleteCollection']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
971
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
972
|
+
});
|
|
973
|
+
},
|
|
843
974
|
/**
|
|
844
975
|
* Export collections as a CSV file.
|
|
845
976
|
* @summary Export collections
|
|
@@ -928,7 +1059,7 @@ const CollectionsApiFp = function (configuration) {
|
|
|
928
1059
|
});
|
|
929
1060
|
},
|
|
930
1061
|
/**
|
|
931
|
-
*
|
|
1062
|
+
* Update a website collection.
|
|
932
1063
|
* @summary Update website collections
|
|
933
1064
|
* @param {string} project What project it is
|
|
934
1065
|
* @param {number} [pageToken] Page reference token
|
|
@@ -957,6 +1088,26 @@ exports.CollectionsApiFp = CollectionsApiFp;
|
|
|
957
1088
|
const CollectionsApiFactory = function (configuration, basePath, axios) {
|
|
958
1089
|
const localVarFp = (0, exports.CollectionsApiFp)(configuration);
|
|
959
1090
|
return {
|
|
1091
|
+
/**
|
|
1092
|
+
* Create a new website collection.
|
|
1093
|
+
* @summary Create website collection
|
|
1094
|
+
* @param {CollectionsApiCreateCollectionRequest} requestParameters Request parameters.
|
|
1095
|
+
* @param {*} [options] Override http request option.
|
|
1096
|
+
* @throws {RequiredError}
|
|
1097
|
+
*/
|
|
1098
|
+
createCollection(requestParameters, options) {
|
|
1099
|
+
return localVarFp.createCollection(requestParameters.project, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.createCollectionRequest, options).then((request) => request(axios, basePath));
|
|
1100
|
+
},
|
|
1101
|
+
/**
|
|
1102
|
+
*
|
|
1103
|
+
* @summary Delete website collection
|
|
1104
|
+
* @param {CollectionsApiDeleteCollectionRequest} requestParameters Request parameters.
|
|
1105
|
+
* @param {*} [options] Override http request option.
|
|
1106
|
+
* @throws {RequiredError}
|
|
1107
|
+
*/
|
|
1108
|
+
deleteCollection(requestParameters, options) {
|
|
1109
|
+
return localVarFp.deleteCollection(requestParameters.project, requestParameters.collectionId, options).then((request) => request(axios, basePath));
|
|
1110
|
+
},
|
|
960
1111
|
/**
|
|
961
1112
|
* Export collections as a CSV file.
|
|
962
1113
|
* @summary Export collections
|
|
@@ -1008,7 +1159,7 @@ const CollectionsApiFactory = function (configuration, basePath, axios) {
|
|
|
1008
1159
|
return localVarFp.updateCollection(requestParameters.project, requestParameters.collectionId, requestParameters.updateCollectionRequest, options).then((request) => request(axios, basePath));
|
|
1009
1160
|
},
|
|
1010
1161
|
/**
|
|
1011
|
-
*
|
|
1162
|
+
* Update a website collection.
|
|
1012
1163
|
* @summary Update website collections
|
|
1013
1164
|
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
1014
1165
|
* @param {*} [options] Override http request option.
|
|
@@ -1027,6 +1178,28 @@ exports.CollectionsApiFactory = CollectionsApiFactory;
|
|
|
1027
1178
|
* @extends {BaseAPI}
|
|
1028
1179
|
*/
|
|
1029
1180
|
class CollectionsApi extends base_1.BaseAPI {
|
|
1181
|
+
/**
|
|
1182
|
+
* Create a new website collection.
|
|
1183
|
+
* @summary Create website collection
|
|
1184
|
+
* @param {CollectionsApiCreateCollectionRequest} requestParameters Request parameters.
|
|
1185
|
+
* @param {*} [options] Override http request option.
|
|
1186
|
+
* @throws {RequiredError}
|
|
1187
|
+
* @memberof CollectionsApi
|
|
1188
|
+
*/
|
|
1189
|
+
createCollection(requestParameters, options) {
|
|
1190
|
+
return (0, exports.CollectionsApiFp)(this.configuration).createCollection(requestParameters.project, requestParameters.pageToken, requestParameters.pageSize, requestParameters.search, requestParameters.createCollectionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1191
|
+
}
|
|
1192
|
+
/**
|
|
1193
|
+
*
|
|
1194
|
+
* @summary Delete website collection
|
|
1195
|
+
* @param {CollectionsApiDeleteCollectionRequest} requestParameters Request parameters.
|
|
1196
|
+
* @param {*} [options] Override http request option.
|
|
1197
|
+
* @throws {RequiredError}
|
|
1198
|
+
* @memberof CollectionsApi
|
|
1199
|
+
*/
|
|
1200
|
+
deleteCollection(requestParameters, options) {
|
|
1201
|
+
return (0, exports.CollectionsApiFp)(this.configuration).deleteCollection(requestParameters.project, requestParameters.collectionId, options).then((request) => request(this.axios, this.basePath));
|
|
1202
|
+
}
|
|
1030
1203
|
/**
|
|
1031
1204
|
* Export collections as a CSV file.
|
|
1032
1205
|
* @summary Export collections
|
|
@@ -1083,7 +1256,7 @@ class CollectionsApi extends base_1.BaseAPI {
|
|
|
1083
1256
|
return (0, exports.CollectionsApiFp)(this.configuration).updateCollection(requestParameters.project, requestParameters.collectionId, requestParameters.updateCollectionRequest, options).then((request) => request(this.axios, this.basePath));
|
|
1084
1257
|
}
|
|
1085
1258
|
/**
|
|
1086
|
-
*
|
|
1259
|
+
* Update a website collection.
|
|
1087
1260
|
* @summary Update website collections
|
|
1088
1261
|
* @param {CollectionsApiUpdateCollectionsRequest} requestParameters Request parameters.
|
|
1089
1262
|
* @param {*} [options] Override http request option.
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED