@infisale-client/api 1.1.19 → 1.1.21
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/dist/api/api.d.ts +1257 -441
- package/dist/api/api.js +18 -22
- package/dist/api/api.mjs +18 -22
- package/package.json +2 -2
package/dist/api/api.js
CHANGED
|
@@ -6076,7 +6076,6 @@ const PageApiAxiosParamCreator = function (configuration) {
|
|
|
6076
6076
|
},
|
|
6077
6077
|
/**
|
|
6078
6078
|
*
|
|
6079
|
-
* @param {string} company
|
|
6080
6079
|
* @param {number} [page]
|
|
6081
6080
|
* @param {number} [itemsPerPage]
|
|
6082
6081
|
* @param {string} [search]
|
|
@@ -6085,15 +6084,14 @@ const PageApiAxiosParamCreator = function (configuration) {
|
|
|
6085
6084
|
* @param {string} [dateField]
|
|
6086
6085
|
* @param {OrderEnum} [order]
|
|
6087
6086
|
* @param {string} [sort]
|
|
6087
|
+
* @param {string} [company]
|
|
6088
6088
|
* @param {string} [domain]
|
|
6089
6089
|
* @param {PageTypeEnum} [type]
|
|
6090
6090
|
* @param {ContentStatusEnum} [status]
|
|
6091
6091
|
* @param {*} [options] Override http request option.
|
|
6092
6092
|
* @throws {RequiredError}
|
|
6093
6093
|
*/
|
|
6094
|
-
getPages: async (
|
|
6095
|
-
// verify required parameter 'company' is not null or undefined
|
|
6096
|
-
(0, common_1.assertParamExists)('getPages', 'company', company);
|
|
6094
|
+
getPages: async (page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options = {}) => {
|
|
6097
6095
|
const localVarPath = `/api/pages`;
|
|
6098
6096
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6099
6097
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -6305,7 +6303,6 @@ const PageApiFp = function (configuration) {
|
|
|
6305
6303
|
},
|
|
6306
6304
|
/**
|
|
6307
6305
|
*
|
|
6308
|
-
* @param {string} company
|
|
6309
6306
|
* @param {number} [page]
|
|
6310
6307
|
* @param {number} [itemsPerPage]
|
|
6311
6308
|
* @param {string} [search]
|
|
@@ -6314,14 +6311,15 @@ const PageApiFp = function (configuration) {
|
|
|
6314
6311
|
* @param {string} [dateField]
|
|
6315
6312
|
* @param {OrderEnum} [order]
|
|
6316
6313
|
* @param {string} [sort]
|
|
6314
|
+
* @param {string} [company]
|
|
6317
6315
|
* @param {string} [domain]
|
|
6318
6316
|
* @param {PageTypeEnum} [type]
|
|
6319
6317
|
* @param {ContentStatusEnum} [status]
|
|
6320
6318
|
* @param {*} [options] Override http request option.
|
|
6321
6319
|
* @throws {RequiredError}
|
|
6322
6320
|
*/
|
|
6323
|
-
async getPages(
|
|
6324
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPages(
|
|
6321
|
+
async getPages(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options) {
|
|
6322
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPages(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options);
|
|
6325
6323
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6326
6324
|
const localVarOperationServerBasePath = base_1.operationServerMap['PageApi.getPages']?.[localVarOperationServerIndex]?.url;
|
|
6327
6325
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -6421,8 +6419,8 @@ const PageApiFactory = function (configuration, basePath, axios) {
|
|
|
6421
6419
|
* @param {*} [options] Override http request option.
|
|
6422
6420
|
* @throws {RequiredError}
|
|
6423
6421
|
*/
|
|
6424
|
-
getPages(requestParameters, options) {
|
|
6425
|
-
return localVarFp.getPages(requestParameters.
|
|
6422
|
+
getPages(requestParameters = {}, options) {
|
|
6423
|
+
return localVarFp.getPages(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.domain, requestParameters.type, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
6426
6424
|
},
|
|
6427
6425
|
/**
|
|
6428
6426
|
*
|
|
@@ -6519,8 +6517,8 @@ class PageApi extends base_1.BaseAPI {
|
|
|
6519
6517
|
* @throws {RequiredError}
|
|
6520
6518
|
* @memberof PageApi
|
|
6521
6519
|
*/
|
|
6522
|
-
getPages(requestParameters, options) {
|
|
6523
|
-
return (0, exports.PageApiFp)(this.configuration).getPages(requestParameters.
|
|
6520
|
+
getPages(requestParameters = {}, options) {
|
|
6521
|
+
return (0, exports.PageApiFp)(this.configuration).getPages(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.domain, requestParameters.type, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
6524
6522
|
}
|
|
6525
6523
|
/**
|
|
6526
6524
|
*
|
|
@@ -7128,7 +7126,6 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7128
7126
|
},
|
|
7129
7127
|
/**
|
|
7130
7128
|
*
|
|
7131
|
-
* @param {string} company
|
|
7132
7129
|
* @param {number} [page]
|
|
7133
7130
|
* @param {number} [itemsPerPage]
|
|
7134
7131
|
* @param {string} [search]
|
|
@@ -7137,6 +7134,7 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7137
7134
|
* @param {string} [dateField]
|
|
7138
7135
|
* @param {OrderEnum} [order]
|
|
7139
7136
|
* @param {string} [sort]
|
|
7137
|
+
* @param {string} [company]
|
|
7140
7138
|
* @param {string} [collections]
|
|
7141
7139
|
* @param {string} [category]
|
|
7142
7140
|
* @param {string} [brand]
|
|
@@ -7144,9 +7142,7 @@ const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7144
7142
|
* @param {*} [options] Override http request option.
|
|
7145
7143
|
* @throws {RequiredError}
|
|
7146
7144
|
*/
|
|
7147
|
-
getProducts: async (
|
|
7148
|
-
// verify required parameter 'company' is not null or undefined
|
|
7149
|
-
(0, common_1.assertParamExists)('getProducts', 'company', company);
|
|
7145
|
+
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options = {}) => {
|
|
7150
7146
|
const localVarPath = `/api/products`;
|
|
7151
7147
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7152
7148
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -7364,7 +7360,6 @@ const ProductApiFp = function (configuration) {
|
|
|
7364
7360
|
},
|
|
7365
7361
|
/**
|
|
7366
7362
|
*
|
|
7367
|
-
* @param {string} company
|
|
7368
7363
|
* @param {number} [page]
|
|
7369
7364
|
* @param {number} [itemsPerPage]
|
|
7370
7365
|
* @param {string} [search]
|
|
@@ -7373,6 +7368,7 @@ const ProductApiFp = function (configuration) {
|
|
|
7373
7368
|
* @param {string} [dateField]
|
|
7374
7369
|
* @param {OrderEnum} [order]
|
|
7375
7370
|
* @param {string} [sort]
|
|
7371
|
+
* @param {string} [company]
|
|
7376
7372
|
* @param {string} [collections]
|
|
7377
7373
|
* @param {string} [category]
|
|
7378
7374
|
* @param {string} [brand]
|
|
@@ -7380,8 +7376,8 @@ const ProductApiFp = function (configuration) {
|
|
|
7380
7376
|
* @param {*} [options] Override http request option.
|
|
7381
7377
|
* @throws {RequiredError}
|
|
7382
7378
|
*/
|
|
7383
|
-
async getProducts(
|
|
7384
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(
|
|
7379
|
+
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options) {
|
|
7380
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options);
|
|
7385
7381
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7386
7382
|
const localVarOperationServerBasePath = base_1.operationServerMap['ProductApi.getProducts']?.[localVarOperationServerIndex]?.url;
|
|
7387
7383
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7482,8 +7478,8 @@ const ProductApiFactory = function (configuration, basePath, axios) {
|
|
|
7482
7478
|
* @param {*} [options] Override http request option.
|
|
7483
7479
|
* @throws {RequiredError}
|
|
7484
7480
|
*/
|
|
7485
|
-
getProducts(requestParameters, options) {
|
|
7486
|
-
return localVarFp.getProducts(requestParameters.
|
|
7481
|
+
getProducts(requestParameters = {}, options) {
|
|
7482
|
+
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
7487
7483
|
},
|
|
7488
7484
|
/**
|
|
7489
7485
|
*
|
|
@@ -7580,8 +7576,8 @@ class ProductApi extends base_1.BaseAPI {
|
|
|
7580
7576
|
* @throws {RequiredError}
|
|
7581
7577
|
* @memberof ProductApi
|
|
7582
7578
|
*/
|
|
7583
|
-
getProducts(requestParameters, options) {
|
|
7584
|
-
return (0, exports.ProductApiFp)(this.configuration).getProducts(requestParameters.
|
|
7579
|
+
getProducts(requestParameters = {}, options) {
|
|
7580
|
+
return (0, exports.ProductApiFp)(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
7585
7581
|
}
|
|
7586
7582
|
/**
|
|
7587
7583
|
*
|
package/dist/api/api.mjs
CHANGED
|
@@ -6026,7 +6026,6 @@ export const PageApiAxiosParamCreator = function (configuration) {
|
|
|
6026
6026
|
},
|
|
6027
6027
|
/**
|
|
6028
6028
|
*
|
|
6029
|
-
* @param {string} company
|
|
6030
6029
|
* @param {number} [page]
|
|
6031
6030
|
* @param {number} [itemsPerPage]
|
|
6032
6031
|
* @param {string} [search]
|
|
@@ -6035,15 +6034,14 @@ export const PageApiAxiosParamCreator = function (configuration) {
|
|
|
6035
6034
|
* @param {string} [dateField]
|
|
6036
6035
|
* @param {OrderEnum} [order]
|
|
6037
6036
|
* @param {string} [sort]
|
|
6037
|
+
* @param {string} [company]
|
|
6038
6038
|
* @param {string} [domain]
|
|
6039
6039
|
* @param {PageTypeEnum} [type]
|
|
6040
6040
|
* @param {ContentStatusEnum} [status]
|
|
6041
6041
|
* @param {*} [options] Override http request option.
|
|
6042
6042
|
* @throws {RequiredError}
|
|
6043
6043
|
*/
|
|
6044
|
-
getPages: async (
|
|
6045
|
-
// verify required parameter 'company' is not null or undefined
|
|
6046
|
-
assertParamExists('getPages', 'company', company);
|
|
6044
|
+
getPages: async (page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options = {}) => {
|
|
6047
6045
|
const localVarPath = `/api/pages`;
|
|
6048
6046
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6049
6047
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -6254,7 +6252,6 @@ export const PageApiFp = function (configuration) {
|
|
|
6254
6252
|
},
|
|
6255
6253
|
/**
|
|
6256
6254
|
*
|
|
6257
|
-
* @param {string} company
|
|
6258
6255
|
* @param {number} [page]
|
|
6259
6256
|
* @param {number} [itemsPerPage]
|
|
6260
6257
|
* @param {string} [search]
|
|
@@ -6263,14 +6260,15 @@ export const PageApiFp = function (configuration) {
|
|
|
6263
6260
|
* @param {string} [dateField]
|
|
6264
6261
|
* @param {OrderEnum} [order]
|
|
6265
6262
|
* @param {string} [sort]
|
|
6263
|
+
* @param {string} [company]
|
|
6266
6264
|
* @param {string} [domain]
|
|
6267
6265
|
* @param {PageTypeEnum} [type]
|
|
6268
6266
|
* @param {ContentStatusEnum} [status]
|
|
6269
6267
|
* @param {*} [options] Override http request option.
|
|
6270
6268
|
* @throws {RequiredError}
|
|
6271
6269
|
*/
|
|
6272
|
-
async getPages(
|
|
6273
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPages(
|
|
6270
|
+
async getPages(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options) {
|
|
6271
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPages(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, domain, type, status, options);
|
|
6274
6272
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
6275
6273
|
const localVarOperationServerBasePath = operationServerMap['PageApi.getPages']?.[localVarOperationServerIndex]?.url;
|
|
6276
6274
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -6369,8 +6367,8 @@ export const PageApiFactory = function (configuration, basePath, axios) {
|
|
|
6369
6367
|
* @param {*} [options] Override http request option.
|
|
6370
6368
|
* @throws {RequiredError}
|
|
6371
6369
|
*/
|
|
6372
|
-
getPages(requestParameters, options) {
|
|
6373
|
-
return localVarFp.getPages(requestParameters.
|
|
6370
|
+
getPages(requestParameters = {}, options) {
|
|
6371
|
+
return localVarFp.getPages(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.domain, requestParameters.type, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
6374
6372
|
},
|
|
6375
6373
|
/**
|
|
6376
6374
|
*
|
|
@@ -6466,8 +6464,8 @@ export class PageApi extends BaseAPI {
|
|
|
6466
6464
|
* @throws {RequiredError}
|
|
6467
6465
|
* @memberof PageApi
|
|
6468
6466
|
*/
|
|
6469
|
-
getPages(requestParameters, options) {
|
|
6470
|
-
return PageApiFp(this.configuration).getPages(requestParameters.
|
|
6467
|
+
getPages(requestParameters = {}, options) {
|
|
6468
|
+
return PageApiFp(this.configuration).getPages(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.domain, requestParameters.type, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
6471
6469
|
}
|
|
6472
6470
|
/**
|
|
6473
6471
|
*
|
|
@@ -7070,7 +7068,6 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7070
7068
|
},
|
|
7071
7069
|
/**
|
|
7072
7070
|
*
|
|
7073
|
-
* @param {string} company
|
|
7074
7071
|
* @param {number} [page]
|
|
7075
7072
|
* @param {number} [itemsPerPage]
|
|
7076
7073
|
* @param {string} [search]
|
|
@@ -7079,6 +7076,7 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7079
7076
|
* @param {string} [dateField]
|
|
7080
7077
|
* @param {OrderEnum} [order]
|
|
7081
7078
|
* @param {string} [sort]
|
|
7079
|
+
* @param {string} [company]
|
|
7082
7080
|
* @param {string} [collections]
|
|
7083
7081
|
* @param {string} [category]
|
|
7084
7082
|
* @param {string} [brand]
|
|
@@ -7086,9 +7084,7 @@ export const ProductApiAxiosParamCreator = function (configuration) {
|
|
|
7086
7084
|
* @param {*} [options] Override http request option.
|
|
7087
7085
|
* @throws {RequiredError}
|
|
7088
7086
|
*/
|
|
7089
|
-
getProducts: async (
|
|
7090
|
-
// verify required parameter 'company' is not null or undefined
|
|
7091
|
-
assertParamExists('getProducts', 'company', company);
|
|
7087
|
+
getProducts: async (page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options = {}) => {
|
|
7092
7088
|
const localVarPath = `/api/products`;
|
|
7093
7089
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
7094
7090
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -7305,7 +7301,6 @@ export const ProductApiFp = function (configuration) {
|
|
|
7305
7301
|
},
|
|
7306
7302
|
/**
|
|
7307
7303
|
*
|
|
7308
|
-
* @param {string} company
|
|
7309
7304
|
* @param {number} [page]
|
|
7310
7305
|
* @param {number} [itemsPerPage]
|
|
7311
7306
|
* @param {string} [search]
|
|
@@ -7314,6 +7309,7 @@ export const ProductApiFp = function (configuration) {
|
|
|
7314
7309
|
* @param {string} [dateField]
|
|
7315
7310
|
* @param {OrderEnum} [order]
|
|
7316
7311
|
* @param {string} [sort]
|
|
7312
|
+
* @param {string} [company]
|
|
7317
7313
|
* @param {string} [collections]
|
|
7318
7314
|
* @param {string} [category]
|
|
7319
7315
|
* @param {string} [brand]
|
|
@@ -7321,8 +7317,8 @@ export const ProductApiFp = function (configuration) {
|
|
|
7321
7317
|
* @param {*} [options] Override http request option.
|
|
7322
7318
|
* @throws {RequiredError}
|
|
7323
7319
|
*/
|
|
7324
|
-
async getProducts(
|
|
7325
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(
|
|
7320
|
+
async getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options) {
|
|
7321
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getProducts(page, itemsPerPage, search, startDate, endDate, dateField, order, sort, company, collections, category, brand, status, options);
|
|
7326
7322
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7327
7323
|
const localVarOperationServerBasePath = operationServerMap['ProductApi.getProducts']?.[localVarOperationServerIndex]?.url;
|
|
7328
7324
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7422,8 +7418,8 @@ export const ProductApiFactory = function (configuration, basePath, axios) {
|
|
|
7422
7418
|
* @param {*} [options] Override http request option.
|
|
7423
7419
|
* @throws {RequiredError}
|
|
7424
7420
|
*/
|
|
7425
|
-
getProducts(requestParameters, options) {
|
|
7426
|
-
return localVarFp.getProducts(requestParameters.
|
|
7421
|
+
getProducts(requestParameters = {}, options) {
|
|
7422
|
+
return localVarFp.getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.status, options).then((request) => request(axios, basePath));
|
|
7427
7423
|
},
|
|
7428
7424
|
/**
|
|
7429
7425
|
*
|
|
@@ -7519,8 +7515,8 @@ export class ProductApi extends BaseAPI {
|
|
|
7519
7515
|
* @throws {RequiredError}
|
|
7520
7516
|
* @memberof ProductApi
|
|
7521
7517
|
*/
|
|
7522
|
-
getProducts(requestParameters, options) {
|
|
7523
|
-
return ProductApiFp(this.configuration).getProducts(requestParameters.
|
|
7518
|
+
getProducts(requestParameters = {}, options) {
|
|
7519
|
+
return ProductApiFp(this.configuration).getProducts(requestParameters.page, requestParameters.itemsPerPage, requestParameters.search, requestParameters.startDate, requestParameters.endDate, requestParameters.dateField, requestParameters.order, requestParameters.sort, requestParameters.company, requestParameters.collections, requestParameters.category, requestParameters.brand, requestParameters.status, options).then((request) => request(this.axios, this.basePath));
|
|
7524
7520
|
}
|
|
7525
7521
|
/**
|
|
7526
7522
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.21",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"bugs": {
|
|
37
37
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "df11058ea745bc8d1a387869a62faacad31a5bb8"
|
|
40
40
|
}
|