@infisale-client/api 1.3.68 → 1.3.70
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 +1094 -89
- package/dist/api/api.js +683 -4
- package/dist/api/api.mjs +670 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +2 -2
package/dist/api/api.mjs
CHANGED
|
@@ -424,6 +424,26 @@ export const ICollectionCollectionsQueryParamsDateFieldEnum = {
|
|
|
424
424
|
CREATED_AT: 'createdAt',
|
|
425
425
|
UPDATED_AT: 'updatedAt'
|
|
426
426
|
};
|
|
427
|
+
export const ICompanyGscVerificationStatusEnum = {
|
|
428
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
429
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
430
|
+
VERIFIED: 'VERIFIED',
|
|
431
|
+
FAILED: 'FAILED'
|
|
432
|
+
};
|
|
433
|
+
export const ICompanyRentalStatusEnum = {
|
|
434
|
+
VACANT: 'VACANT',
|
|
435
|
+
RENTED: 'RENTED'
|
|
436
|
+
};
|
|
437
|
+
export const ICompanyAdminResponseGscVerificationStatusEnum = {
|
|
438
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
439
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
440
|
+
VERIFIED: 'VERIFIED',
|
|
441
|
+
FAILED: 'FAILED'
|
|
442
|
+
};
|
|
443
|
+
export const ICompanyAdminResponseRentalStatusEnum = {
|
|
444
|
+
VACANT: 'VACANT',
|
|
445
|
+
RENTED: 'RENTED'
|
|
446
|
+
};
|
|
427
447
|
export const ICompanyCollectionQueryParamsDateFieldEnum = {
|
|
428
448
|
CREATED_AT: 'createdAt',
|
|
429
449
|
UPDATED_AT: 'updatedAt'
|
|
@@ -434,6 +454,26 @@ export const ICompanyDashboardResponsePeriodEnum = {
|
|
|
434
454
|
WEEK: 'week',
|
|
435
455
|
HOUR: 'hour'
|
|
436
456
|
};
|
|
457
|
+
export const ICompanyPatchRequestGscVerificationStatusEnum = {
|
|
458
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
459
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
460
|
+
VERIFIED: 'VERIFIED',
|
|
461
|
+
FAILED: 'FAILED'
|
|
462
|
+
};
|
|
463
|
+
export const ICompanyPatchRequestRentalStatusEnum = {
|
|
464
|
+
VACANT: 'VACANT',
|
|
465
|
+
RENTED: 'RENTED'
|
|
466
|
+
};
|
|
467
|
+
export const ICompanyResponseGscVerificationStatusEnum = {
|
|
468
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
469
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
470
|
+
VERIFIED: 'VERIFIED',
|
|
471
|
+
FAILED: 'FAILED'
|
|
472
|
+
};
|
|
473
|
+
export const ICompanyResponseRentalStatusEnum = {
|
|
474
|
+
VACANT: 'VACANT',
|
|
475
|
+
RENTED: 'RENTED'
|
|
476
|
+
};
|
|
437
477
|
export const ICompanyUsersCollectionQueryParamsDateFieldEnum = {
|
|
438
478
|
CREATED_AT: 'createdAt',
|
|
439
479
|
UPDATED_AT: 'updatedAt'
|
|
@@ -501,6 +541,11 @@ export const IProductCollectionQueryParamsSortEnum = {
|
|
|
501
541
|
RATING: 'rating',
|
|
502
542
|
REVIEW_COUNT: 'reviewCount'
|
|
503
543
|
};
|
|
544
|
+
export const IServiceAccountPostRequestStatusEnum = {
|
|
545
|
+
ACTIVE: 'ACTIVE',
|
|
546
|
+
SUSPENDED: 'SUSPENDED',
|
|
547
|
+
RATE_LIMITED: 'RATE_LIMITED'
|
|
548
|
+
};
|
|
504
549
|
export const ISubscriptionPostRequestPeriodEnum = {
|
|
505
550
|
MONTHLY: 'monthly',
|
|
506
551
|
YEARLY: 'yearly'
|
|
@@ -655,6 +700,16 @@ export const PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDat
|
|
|
655
700
|
CREATED_AT: 'createdAt',
|
|
656
701
|
UPDATED_AT: 'updatedAt'
|
|
657
702
|
};
|
|
703
|
+
export const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = {
|
|
704
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
705
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
706
|
+
VERIFIED: 'VERIFIED',
|
|
707
|
+
FAILED: 'FAILED'
|
|
708
|
+
};
|
|
709
|
+
export const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = {
|
|
710
|
+
VACANT: 'VACANT',
|
|
711
|
+
RENTED: 'RENTED'
|
|
712
|
+
};
|
|
658
713
|
/**
|
|
659
714
|
*
|
|
660
715
|
* @export
|
|
@@ -826,6 +881,15 @@ export const TimezoneEnum = {
|
|
|
826
881
|
UTC1300: 'UTC+13:00',
|
|
827
882
|
UTC1400: 'UTC+14:00'
|
|
828
883
|
};
|
|
884
|
+
export const UpdateServiceAccountsCompanyRequestRentalStatusEnum = {
|
|
885
|
+
VACANT: 'VACANT',
|
|
886
|
+
RENTED: 'RENTED'
|
|
887
|
+
};
|
|
888
|
+
export const UpdateServiceAccountsCompanyRequestCloudflareStatusEnum = {
|
|
889
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
890
|
+
ACTIVE: 'ACTIVE',
|
|
891
|
+
ARCHIVED: 'ARCHIVED'
|
|
892
|
+
};
|
|
829
893
|
/**
|
|
830
894
|
*
|
|
831
895
|
* @export
|
|
@@ -12565,6 +12629,612 @@ export const GetProductsSortEnum = {
|
|
|
12565
12629
|
RATING: 'rating',
|
|
12566
12630
|
REVIEW_COUNT: 'reviewCount'
|
|
12567
12631
|
};
|
|
12632
|
+
/**
|
|
12633
|
+
* SEOApi - axios parameter creator
|
|
12634
|
+
* @export
|
|
12635
|
+
*/
|
|
12636
|
+
export const SEOApiAxiosParamCreator = function (configuration) {
|
|
12637
|
+
return {
|
|
12638
|
+
/**
|
|
12639
|
+
*
|
|
12640
|
+
* @param {ISeoRankTrackPostRequest} iSeoRankTrackPostRequest
|
|
12641
|
+
* @param {*} [options] Override http request option.
|
|
12642
|
+
* @throws {RequiredError}
|
|
12643
|
+
*/
|
|
12644
|
+
createSeoRankTrack: async (iSeoRankTrackPostRequest, options = {}) => {
|
|
12645
|
+
// verify required parameter 'iSeoRankTrackPostRequest' is not null or undefined
|
|
12646
|
+
assertParamExists('createSeoRankTrack', 'iSeoRankTrackPostRequest', iSeoRankTrackPostRequest);
|
|
12647
|
+
const localVarPath = `/api/seo/rank-tracks`;
|
|
12648
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12649
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12650
|
+
let baseOptions;
|
|
12651
|
+
if (configuration) {
|
|
12652
|
+
baseOptions = configuration.baseOptions;
|
|
12653
|
+
}
|
|
12654
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
12655
|
+
const localVarHeaderParameter = {};
|
|
12656
|
+
const localVarQueryParameter = {};
|
|
12657
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12658
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12659
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12660
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12661
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iSeoRankTrackPostRequest, localVarRequestOptions, configuration);
|
|
12662
|
+
return {
|
|
12663
|
+
url: toPathString(localVarUrlObj),
|
|
12664
|
+
options: localVarRequestOptions,
|
|
12665
|
+
};
|
|
12666
|
+
},
|
|
12667
|
+
/**
|
|
12668
|
+
*
|
|
12669
|
+
* @param {string} id
|
|
12670
|
+
* @param {*} [options] Override http request option.
|
|
12671
|
+
* @throws {RequiredError}
|
|
12672
|
+
*/
|
|
12673
|
+
deleteSeoRankTrack: async (id, options = {}) => {
|
|
12674
|
+
// verify required parameter 'id' is not null or undefined
|
|
12675
|
+
assertParamExists('deleteSeoRankTrack', 'id', id);
|
|
12676
|
+
const localVarPath = `/api/seo/rank-tracks/{id}`
|
|
12677
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12678
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12679
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12680
|
+
let baseOptions;
|
|
12681
|
+
if (configuration) {
|
|
12682
|
+
baseOptions = configuration.baseOptions;
|
|
12683
|
+
}
|
|
12684
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
|
|
12685
|
+
const localVarHeaderParameter = {};
|
|
12686
|
+
const localVarQueryParameter = {};
|
|
12687
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12688
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12689
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12690
|
+
return {
|
|
12691
|
+
url: toPathString(localVarUrlObj),
|
|
12692
|
+
options: localVarRequestOptions,
|
|
12693
|
+
};
|
|
12694
|
+
},
|
|
12695
|
+
/**
|
|
12696
|
+
*
|
|
12697
|
+
* @param {string} id
|
|
12698
|
+
* @param {*} [options] Override http request option.
|
|
12699
|
+
* @throws {RequiredError}
|
|
12700
|
+
*/
|
|
12701
|
+
getSeoRankTrack: async (id, options = {}) => {
|
|
12702
|
+
// verify required parameter 'id' is not null or undefined
|
|
12703
|
+
assertParamExists('getSeoRankTrack', 'id', id);
|
|
12704
|
+
const localVarPath = `/api/seo/rank-tracks/{id}`
|
|
12705
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12706
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12707
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12708
|
+
let baseOptions;
|
|
12709
|
+
if (configuration) {
|
|
12710
|
+
baseOptions = configuration.baseOptions;
|
|
12711
|
+
}
|
|
12712
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12713
|
+
const localVarHeaderParameter = {};
|
|
12714
|
+
const localVarQueryParameter = {};
|
|
12715
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12716
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12717
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12718
|
+
return {
|
|
12719
|
+
url: toPathString(localVarUrlObj),
|
|
12720
|
+
options: localVarRequestOptions,
|
|
12721
|
+
};
|
|
12722
|
+
},
|
|
12723
|
+
/**
|
|
12724
|
+
*
|
|
12725
|
+
* @param {string} [companyId]
|
|
12726
|
+
* @param {*} [options] Override http request option.
|
|
12727
|
+
* @throws {RequiredError}
|
|
12728
|
+
*/
|
|
12729
|
+
listSeoRankTracks: async (companyId, options = {}) => {
|
|
12730
|
+
const localVarPath = `/api/seo/rank-tracks`;
|
|
12731
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12732
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12733
|
+
let baseOptions;
|
|
12734
|
+
if (configuration) {
|
|
12735
|
+
baseOptions = configuration.baseOptions;
|
|
12736
|
+
}
|
|
12737
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12738
|
+
const localVarHeaderParameter = {};
|
|
12739
|
+
const localVarQueryParameter = {};
|
|
12740
|
+
if (companyId !== undefined) {
|
|
12741
|
+
localVarQueryParameter['companyId'] = companyId;
|
|
12742
|
+
}
|
|
12743
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12744
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12745
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12746
|
+
return {
|
|
12747
|
+
url: toPathString(localVarUrlObj),
|
|
12748
|
+
options: localVarRequestOptions,
|
|
12749
|
+
};
|
|
12750
|
+
},
|
|
12751
|
+
/**
|
|
12752
|
+
*
|
|
12753
|
+
* @param {string} id
|
|
12754
|
+
* @param {ISeoRankTrackPatchRequest} iSeoRankTrackPatchRequest
|
|
12755
|
+
* @param {*} [options] Override http request option.
|
|
12756
|
+
* @throws {RequiredError}
|
|
12757
|
+
*/
|
|
12758
|
+
updateSeoRankTrack: async (id, iSeoRankTrackPatchRequest, options = {}) => {
|
|
12759
|
+
// verify required parameter 'id' is not null or undefined
|
|
12760
|
+
assertParamExists('updateSeoRankTrack', 'id', id);
|
|
12761
|
+
// verify required parameter 'iSeoRankTrackPatchRequest' is not null or undefined
|
|
12762
|
+
assertParamExists('updateSeoRankTrack', 'iSeoRankTrackPatchRequest', iSeoRankTrackPatchRequest);
|
|
12763
|
+
const localVarPath = `/api/seo/rank-tracks/{id}`
|
|
12764
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12765
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12766
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12767
|
+
let baseOptions;
|
|
12768
|
+
if (configuration) {
|
|
12769
|
+
baseOptions = configuration.baseOptions;
|
|
12770
|
+
}
|
|
12771
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
12772
|
+
const localVarHeaderParameter = {};
|
|
12773
|
+
const localVarQueryParameter = {};
|
|
12774
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12775
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12776
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12777
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12778
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iSeoRankTrackPatchRequest, localVarRequestOptions, configuration);
|
|
12779
|
+
return {
|
|
12780
|
+
url: toPathString(localVarUrlObj),
|
|
12781
|
+
options: localVarRequestOptions,
|
|
12782
|
+
};
|
|
12783
|
+
},
|
|
12784
|
+
};
|
|
12785
|
+
};
|
|
12786
|
+
/**
|
|
12787
|
+
* SEOApi - functional programming interface
|
|
12788
|
+
* @export
|
|
12789
|
+
*/
|
|
12790
|
+
export const SEOApiFp = function (configuration) {
|
|
12791
|
+
const localVarAxiosParamCreator = SEOApiAxiosParamCreator(configuration);
|
|
12792
|
+
return {
|
|
12793
|
+
/**
|
|
12794
|
+
*
|
|
12795
|
+
* @param {ISeoRankTrackPostRequest} iSeoRankTrackPostRequest
|
|
12796
|
+
* @param {*} [options] Override http request option.
|
|
12797
|
+
* @throws {RequiredError}
|
|
12798
|
+
*/
|
|
12799
|
+
async createSeoRankTrack(iSeoRankTrackPostRequest, options) {
|
|
12800
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createSeoRankTrack(iSeoRankTrackPostRequest, options);
|
|
12801
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12802
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.createSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12803
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12804
|
+
},
|
|
12805
|
+
/**
|
|
12806
|
+
*
|
|
12807
|
+
* @param {string} id
|
|
12808
|
+
* @param {*} [options] Override http request option.
|
|
12809
|
+
* @throws {RequiredError}
|
|
12810
|
+
*/
|
|
12811
|
+
async deleteSeoRankTrack(id, options) {
|
|
12812
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteSeoRankTrack(id, options);
|
|
12813
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12814
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.deleteSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12815
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12816
|
+
},
|
|
12817
|
+
/**
|
|
12818
|
+
*
|
|
12819
|
+
* @param {string} id
|
|
12820
|
+
* @param {*} [options] Override http request option.
|
|
12821
|
+
* @throws {RequiredError}
|
|
12822
|
+
*/
|
|
12823
|
+
async getSeoRankTrack(id, options) {
|
|
12824
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getSeoRankTrack(id, options);
|
|
12825
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12826
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.getSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12827
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12828
|
+
},
|
|
12829
|
+
/**
|
|
12830
|
+
*
|
|
12831
|
+
* @param {string} [companyId]
|
|
12832
|
+
* @param {*} [options] Override http request option.
|
|
12833
|
+
* @throws {RequiredError}
|
|
12834
|
+
*/
|
|
12835
|
+
async listSeoRankTracks(companyId, options) {
|
|
12836
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listSeoRankTracks(companyId, options);
|
|
12837
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12838
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.listSeoRankTracks']?.[localVarOperationServerIndex]?.url;
|
|
12839
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12840
|
+
},
|
|
12841
|
+
/**
|
|
12842
|
+
*
|
|
12843
|
+
* @param {string} id
|
|
12844
|
+
* @param {ISeoRankTrackPatchRequest} iSeoRankTrackPatchRequest
|
|
12845
|
+
* @param {*} [options] Override http request option.
|
|
12846
|
+
* @throws {RequiredError}
|
|
12847
|
+
*/
|
|
12848
|
+
async updateSeoRankTrack(id, iSeoRankTrackPatchRequest, options) {
|
|
12849
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateSeoRankTrack(id, iSeoRankTrackPatchRequest, options);
|
|
12850
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12851
|
+
const localVarOperationServerBasePath = operationServerMap['SEOApi.updateSeoRankTrack']?.[localVarOperationServerIndex]?.url;
|
|
12852
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12853
|
+
},
|
|
12854
|
+
};
|
|
12855
|
+
};
|
|
12856
|
+
/**
|
|
12857
|
+
* SEOApi - factory interface
|
|
12858
|
+
* @export
|
|
12859
|
+
*/
|
|
12860
|
+
export const SEOApiFactory = function (configuration, basePath, axios) {
|
|
12861
|
+
const localVarFp = SEOApiFp(configuration);
|
|
12862
|
+
return {
|
|
12863
|
+
/**
|
|
12864
|
+
*
|
|
12865
|
+
* @param {SEOApiCreateSeoRankTrackRequest} requestParameters Request parameters.
|
|
12866
|
+
* @param {*} [options] Override http request option.
|
|
12867
|
+
* @throws {RequiredError}
|
|
12868
|
+
*/
|
|
12869
|
+
createSeoRankTrack(requestParameters, options) {
|
|
12870
|
+
return localVarFp.createSeoRankTrack(requestParameters.iSeoRankTrackPostRequest, options).then((request) => request(axios, basePath));
|
|
12871
|
+
},
|
|
12872
|
+
/**
|
|
12873
|
+
*
|
|
12874
|
+
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
12875
|
+
* @param {*} [options] Override http request option.
|
|
12876
|
+
* @throws {RequiredError}
|
|
12877
|
+
*/
|
|
12878
|
+
deleteSeoRankTrack(requestParameters, options) {
|
|
12879
|
+
return localVarFp.deleteSeoRankTrack(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12880
|
+
},
|
|
12881
|
+
/**
|
|
12882
|
+
*
|
|
12883
|
+
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
12884
|
+
* @param {*} [options] Override http request option.
|
|
12885
|
+
* @throws {RequiredError}
|
|
12886
|
+
*/
|
|
12887
|
+
getSeoRankTrack(requestParameters, options) {
|
|
12888
|
+
return localVarFp.getSeoRankTrack(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12889
|
+
},
|
|
12890
|
+
/**
|
|
12891
|
+
*
|
|
12892
|
+
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
12893
|
+
* @param {*} [options] Override http request option.
|
|
12894
|
+
* @throws {RequiredError}
|
|
12895
|
+
*/
|
|
12896
|
+
listSeoRankTracks(requestParameters = {}, options) {
|
|
12897
|
+
return localVarFp.listSeoRankTracks(requestParameters.companyId, options).then((request) => request(axios, basePath));
|
|
12898
|
+
},
|
|
12899
|
+
/**
|
|
12900
|
+
*
|
|
12901
|
+
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
12902
|
+
* @param {*} [options] Override http request option.
|
|
12903
|
+
* @throws {RequiredError}
|
|
12904
|
+
*/
|
|
12905
|
+
updateSeoRankTrack(requestParameters, options) {
|
|
12906
|
+
return localVarFp.updateSeoRankTrack(requestParameters.id, requestParameters.iSeoRankTrackPatchRequest, options).then((request) => request(axios, basePath));
|
|
12907
|
+
},
|
|
12908
|
+
};
|
|
12909
|
+
};
|
|
12910
|
+
/**
|
|
12911
|
+
* SEOApi - object-oriented interface
|
|
12912
|
+
* @export
|
|
12913
|
+
* @class SEOApi
|
|
12914
|
+
* @extends {BaseAPI}
|
|
12915
|
+
*/
|
|
12916
|
+
export class SEOApi extends BaseAPI {
|
|
12917
|
+
/**
|
|
12918
|
+
*
|
|
12919
|
+
* @param {SEOApiCreateSeoRankTrackRequest} requestParameters Request parameters.
|
|
12920
|
+
* @param {*} [options] Override http request option.
|
|
12921
|
+
* @throws {RequiredError}
|
|
12922
|
+
* @memberof SEOApi
|
|
12923
|
+
*/
|
|
12924
|
+
createSeoRankTrack(requestParameters, options) {
|
|
12925
|
+
return SEOApiFp(this.configuration).createSeoRankTrack(requestParameters.iSeoRankTrackPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
12926
|
+
}
|
|
12927
|
+
/**
|
|
12928
|
+
*
|
|
12929
|
+
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
12930
|
+
* @param {*} [options] Override http request option.
|
|
12931
|
+
* @throws {RequiredError}
|
|
12932
|
+
* @memberof SEOApi
|
|
12933
|
+
*/
|
|
12934
|
+
deleteSeoRankTrack(requestParameters, options) {
|
|
12935
|
+
return SEOApiFp(this.configuration).deleteSeoRankTrack(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12936
|
+
}
|
|
12937
|
+
/**
|
|
12938
|
+
*
|
|
12939
|
+
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
12940
|
+
* @param {*} [options] Override http request option.
|
|
12941
|
+
* @throws {RequiredError}
|
|
12942
|
+
* @memberof SEOApi
|
|
12943
|
+
*/
|
|
12944
|
+
getSeoRankTrack(requestParameters, options) {
|
|
12945
|
+
return SEOApiFp(this.configuration).getSeoRankTrack(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12946
|
+
}
|
|
12947
|
+
/**
|
|
12948
|
+
*
|
|
12949
|
+
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
12950
|
+
* @param {*} [options] Override http request option.
|
|
12951
|
+
* @throws {RequiredError}
|
|
12952
|
+
* @memberof SEOApi
|
|
12953
|
+
*/
|
|
12954
|
+
listSeoRankTracks(requestParameters = {}, options) {
|
|
12955
|
+
return SEOApiFp(this.configuration).listSeoRankTracks(requestParameters.companyId, options).then((request) => request(this.axios, this.basePath));
|
|
12956
|
+
}
|
|
12957
|
+
/**
|
|
12958
|
+
*
|
|
12959
|
+
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
12960
|
+
* @param {*} [options] Override http request option.
|
|
12961
|
+
* @throws {RequiredError}
|
|
12962
|
+
* @memberof SEOApi
|
|
12963
|
+
*/
|
|
12964
|
+
updateSeoRankTrack(requestParameters, options) {
|
|
12965
|
+
return SEOApiFp(this.configuration).updateSeoRankTrack(requestParameters.id, requestParameters.iSeoRankTrackPatchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
12966
|
+
}
|
|
12967
|
+
}
|
|
12968
|
+
/**
|
|
12969
|
+
* ServiceAccountsApi - axios parameter creator
|
|
12970
|
+
* @export
|
|
12971
|
+
*/
|
|
12972
|
+
export const ServiceAccountsApiAxiosParamCreator = function (configuration) {
|
|
12973
|
+
return {
|
|
12974
|
+
/**
|
|
12975
|
+
*
|
|
12976
|
+
* @param {IServiceAccountPostRequest} iServiceAccountPostRequest
|
|
12977
|
+
* @param {*} [options] Override http request option.
|
|
12978
|
+
* @throws {RequiredError}
|
|
12979
|
+
*/
|
|
12980
|
+
createServiceAccount: async (iServiceAccountPostRequest, options = {}) => {
|
|
12981
|
+
// verify required parameter 'iServiceAccountPostRequest' is not null or undefined
|
|
12982
|
+
assertParamExists('createServiceAccount', 'iServiceAccountPostRequest', iServiceAccountPostRequest);
|
|
12983
|
+
const localVarPath = `/api/service-accounts`;
|
|
12984
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12985
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12986
|
+
let baseOptions;
|
|
12987
|
+
if (configuration) {
|
|
12988
|
+
baseOptions = configuration.baseOptions;
|
|
12989
|
+
}
|
|
12990
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
12991
|
+
const localVarHeaderParameter = {};
|
|
12992
|
+
const localVarQueryParameter = {};
|
|
12993
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
12994
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12995
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12996
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12997
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iServiceAccountPostRequest, localVarRequestOptions, configuration);
|
|
12998
|
+
return {
|
|
12999
|
+
url: toPathString(localVarUrlObj),
|
|
13000
|
+
options: localVarRequestOptions,
|
|
13001
|
+
};
|
|
13002
|
+
},
|
|
13003
|
+
/**
|
|
13004
|
+
*
|
|
13005
|
+
* @param {*} [options] Override http request option.
|
|
13006
|
+
* @throws {RequiredError}
|
|
13007
|
+
*/
|
|
13008
|
+
listServiceAccounts: async (options = {}) => {
|
|
13009
|
+
const localVarPath = `/api/service-accounts`;
|
|
13010
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13011
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13012
|
+
let baseOptions;
|
|
13013
|
+
if (configuration) {
|
|
13014
|
+
baseOptions = configuration.baseOptions;
|
|
13015
|
+
}
|
|
13016
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
13017
|
+
const localVarHeaderParameter = {};
|
|
13018
|
+
const localVarQueryParameter = {};
|
|
13019
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13020
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13021
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
13022
|
+
return {
|
|
13023
|
+
url: toPathString(localVarUrlObj),
|
|
13024
|
+
options: localVarRequestOptions,
|
|
13025
|
+
};
|
|
13026
|
+
},
|
|
13027
|
+
/**
|
|
13028
|
+
*
|
|
13029
|
+
* @param {string} id
|
|
13030
|
+
* @param {*} [options] Override http request option.
|
|
13031
|
+
* @throws {RequiredError}
|
|
13032
|
+
*/
|
|
13033
|
+
provisionCompanyProperty: async (id, options = {}) => {
|
|
13034
|
+
// verify required parameter 'id' is not null or undefined
|
|
13035
|
+
assertParamExists('provisionCompanyProperty', 'id', id);
|
|
13036
|
+
const localVarPath = `/api/service-accounts/companies/{id}/provision`
|
|
13037
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
13038
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13039
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13040
|
+
let baseOptions;
|
|
13041
|
+
if (configuration) {
|
|
13042
|
+
baseOptions = configuration.baseOptions;
|
|
13043
|
+
}
|
|
13044
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
13045
|
+
const localVarHeaderParameter = {};
|
|
13046
|
+
const localVarQueryParameter = {};
|
|
13047
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13048
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13049
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
13050
|
+
return {
|
|
13051
|
+
url: toPathString(localVarUrlObj),
|
|
13052
|
+
options: localVarRequestOptions,
|
|
13053
|
+
};
|
|
13054
|
+
},
|
|
13055
|
+
/**
|
|
13056
|
+
*
|
|
13057
|
+
* @param {string} id
|
|
13058
|
+
* @param {UpdateServiceAccountsCompanyRequest} updateServiceAccountsCompanyRequest
|
|
13059
|
+
* @param {*} [options] Override http request option.
|
|
13060
|
+
* @throws {RequiredError}
|
|
13061
|
+
*/
|
|
13062
|
+
updateServiceAccountsCompany: async (id, updateServiceAccountsCompanyRequest, options = {}) => {
|
|
13063
|
+
// verify required parameter 'id' is not null or undefined
|
|
13064
|
+
assertParamExists('updateServiceAccountsCompany', 'id', id);
|
|
13065
|
+
// verify required parameter 'updateServiceAccountsCompanyRequest' is not null or undefined
|
|
13066
|
+
assertParamExists('updateServiceAccountsCompany', 'updateServiceAccountsCompanyRequest', updateServiceAccountsCompanyRequest);
|
|
13067
|
+
const localVarPath = `/api/service-accounts/companies/{id}`
|
|
13068
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
13069
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
13070
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
13071
|
+
let baseOptions;
|
|
13072
|
+
if (configuration) {
|
|
13073
|
+
baseOptions = configuration.baseOptions;
|
|
13074
|
+
}
|
|
13075
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
13076
|
+
const localVarHeaderParameter = {};
|
|
13077
|
+
const localVarQueryParameter = {};
|
|
13078
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13079
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
13080
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
13081
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
13082
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateServiceAccountsCompanyRequest, localVarRequestOptions, configuration);
|
|
13083
|
+
return {
|
|
13084
|
+
url: toPathString(localVarUrlObj),
|
|
13085
|
+
options: localVarRequestOptions,
|
|
13086
|
+
};
|
|
13087
|
+
},
|
|
13088
|
+
};
|
|
13089
|
+
};
|
|
13090
|
+
/**
|
|
13091
|
+
* ServiceAccountsApi - functional programming interface
|
|
13092
|
+
* @export
|
|
13093
|
+
*/
|
|
13094
|
+
export const ServiceAccountsApiFp = function (configuration) {
|
|
13095
|
+
const localVarAxiosParamCreator = ServiceAccountsApiAxiosParamCreator(configuration);
|
|
13096
|
+
return {
|
|
13097
|
+
/**
|
|
13098
|
+
*
|
|
13099
|
+
* @param {IServiceAccountPostRequest} iServiceAccountPostRequest
|
|
13100
|
+
* @param {*} [options] Override http request option.
|
|
13101
|
+
* @throws {RequiredError}
|
|
13102
|
+
*/
|
|
13103
|
+
async createServiceAccount(iServiceAccountPostRequest, options) {
|
|
13104
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createServiceAccount(iServiceAccountPostRequest, options);
|
|
13105
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13106
|
+
const localVarOperationServerBasePath = operationServerMap['ServiceAccountsApi.createServiceAccount']?.[localVarOperationServerIndex]?.url;
|
|
13107
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13108
|
+
},
|
|
13109
|
+
/**
|
|
13110
|
+
*
|
|
13111
|
+
* @param {*} [options] Override http request option.
|
|
13112
|
+
* @throws {RequiredError}
|
|
13113
|
+
*/
|
|
13114
|
+
async listServiceAccounts(options) {
|
|
13115
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listServiceAccounts(options);
|
|
13116
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13117
|
+
const localVarOperationServerBasePath = operationServerMap['ServiceAccountsApi.listServiceAccounts']?.[localVarOperationServerIndex]?.url;
|
|
13118
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13119
|
+
},
|
|
13120
|
+
/**
|
|
13121
|
+
*
|
|
13122
|
+
* @param {string} id
|
|
13123
|
+
* @param {*} [options] Override http request option.
|
|
13124
|
+
* @throws {RequiredError}
|
|
13125
|
+
*/
|
|
13126
|
+
async provisionCompanyProperty(id, options) {
|
|
13127
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.provisionCompanyProperty(id, options);
|
|
13128
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13129
|
+
const localVarOperationServerBasePath = operationServerMap['ServiceAccountsApi.provisionCompanyProperty']?.[localVarOperationServerIndex]?.url;
|
|
13130
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13131
|
+
},
|
|
13132
|
+
/**
|
|
13133
|
+
*
|
|
13134
|
+
* @param {string} id
|
|
13135
|
+
* @param {UpdateServiceAccountsCompanyRequest} updateServiceAccountsCompanyRequest
|
|
13136
|
+
* @param {*} [options] Override http request option.
|
|
13137
|
+
* @throws {RequiredError}
|
|
13138
|
+
*/
|
|
13139
|
+
async updateServiceAccountsCompany(id, updateServiceAccountsCompanyRequest, options) {
|
|
13140
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateServiceAccountsCompany(id, updateServiceAccountsCompanyRequest, options);
|
|
13141
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
13142
|
+
const localVarOperationServerBasePath = operationServerMap['ServiceAccountsApi.updateServiceAccountsCompany']?.[localVarOperationServerIndex]?.url;
|
|
13143
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
13144
|
+
},
|
|
13145
|
+
};
|
|
13146
|
+
};
|
|
13147
|
+
/**
|
|
13148
|
+
* ServiceAccountsApi - factory interface
|
|
13149
|
+
* @export
|
|
13150
|
+
*/
|
|
13151
|
+
export const ServiceAccountsApiFactory = function (configuration, basePath, axios) {
|
|
13152
|
+
const localVarFp = ServiceAccountsApiFp(configuration);
|
|
13153
|
+
return {
|
|
13154
|
+
/**
|
|
13155
|
+
*
|
|
13156
|
+
* @param {ServiceAccountsApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
13157
|
+
* @param {*} [options] Override http request option.
|
|
13158
|
+
* @throws {RequiredError}
|
|
13159
|
+
*/
|
|
13160
|
+
createServiceAccount(requestParameters, options) {
|
|
13161
|
+
return localVarFp.createServiceAccount(requestParameters.iServiceAccountPostRequest, options).then((request) => request(axios, basePath));
|
|
13162
|
+
},
|
|
13163
|
+
/**
|
|
13164
|
+
*
|
|
13165
|
+
* @param {*} [options] Override http request option.
|
|
13166
|
+
* @throws {RequiredError}
|
|
13167
|
+
*/
|
|
13168
|
+
listServiceAccounts(options) {
|
|
13169
|
+
return localVarFp.listServiceAccounts(options).then((request) => request(axios, basePath));
|
|
13170
|
+
},
|
|
13171
|
+
/**
|
|
13172
|
+
*
|
|
13173
|
+
* @param {ServiceAccountsApiProvisionCompanyPropertyRequest} requestParameters Request parameters.
|
|
13174
|
+
* @param {*} [options] Override http request option.
|
|
13175
|
+
* @throws {RequiredError}
|
|
13176
|
+
*/
|
|
13177
|
+
provisionCompanyProperty(requestParameters, options) {
|
|
13178
|
+
return localVarFp.provisionCompanyProperty(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
13179
|
+
},
|
|
13180
|
+
/**
|
|
13181
|
+
*
|
|
13182
|
+
* @param {ServiceAccountsApiUpdateServiceAccountsCompanyRequest} requestParameters Request parameters.
|
|
13183
|
+
* @param {*} [options] Override http request option.
|
|
13184
|
+
* @throws {RequiredError}
|
|
13185
|
+
*/
|
|
13186
|
+
updateServiceAccountsCompany(requestParameters, options) {
|
|
13187
|
+
return localVarFp.updateServiceAccountsCompany(requestParameters.id, requestParameters.updateServiceAccountsCompanyRequest, options).then((request) => request(axios, basePath));
|
|
13188
|
+
},
|
|
13189
|
+
};
|
|
13190
|
+
};
|
|
13191
|
+
/**
|
|
13192
|
+
* ServiceAccountsApi - object-oriented interface
|
|
13193
|
+
* @export
|
|
13194
|
+
* @class ServiceAccountsApi
|
|
13195
|
+
* @extends {BaseAPI}
|
|
13196
|
+
*/
|
|
13197
|
+
export class ServiceAccountsApi extends BaseAPI {
|
|
13198
|
+
/**
|
|
13199
|
+
*
|
|
13200
|
+
* @param {ServiceAccountsApiCreateServiceAccountRequest} requestParameters Request parameters.
|
|
13201
|
+
* @param {*} [options] Override http request option.
|
|
13202
|
+
* @throws {RequiredError}
|
|
13203
|
+
* @memberof ServiceAccountsApi
|
|
13204
|
+
*/
|
|
13205
|
+
createServiceAccount(requestParameters, options) {
|
|
13206
|
+
return ServiceAccountsApiFp(this.configuration).createServiceAccount(requestParameters.iServiceAccountPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
13207
|
+
}
|
|
13208
|
+
/**
|
|
13209
|
+
*
|
|
13210
|
+
* @param {*} [options] Override http request option.
|
|
13211
|
+
* @throws {RequiredError}
|
|
13212
|
+
* @memberof ServiceAccountsApi
|
|
13213
|
+
*/
|
|
13214
|
+
listServiceAccounts(options) {
|
|
13215
|
+
return ServiceAccountsApiFp(this.configuration).listServiceAccounts(options).then((request) => request(this.axios, this.basePath));
|
|
13216
|
+
}
|
|
13217
|
+
/**
|
|
13218
|
+
*
|
|
13219
|
+
* @param {ServiceAccountsApiProvisionCompanyPropertyRequest} requestParameters Request parameters.
|
|
13220
|
+
* @param {*} [options] Override http request option.
|
|
13221
|
+
* @throws {RequiredError}
|
|
13222
|
+
* @memberof ServiceAccountsApi
|
|
13223
|
+
*/
|
|
13224
|
+
provisionCompanyProperty(requestParameters, options) {
|
|
13225
|
+
return ServiceAccountsApiFp(this.configuration).provisionCompanyProperty(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
13226
|
+
}
|
|
13227
|
+
/**
|
|
13228
|
+
*
|
|
13229
|
+
* @param {ServiceAccountsApiUpdateServiceAccountsCompanyRequest} requestParameters Request parameters.
|
|
13230
|
+
* @param {*} [options] Override http request option.
|
|
13231
|
+
* @throws {RequiredError}
|
|
13232
|
+
* @memberof ServiceAccountsApi
|
|
13233
|
+
*/
|
|
13234
|
+
updateServiceAccountsCompany(requestParameters, options) {
|
|
13235
|
+
return ServiceAccountsApiFp(this.configuration).updateServiceAccountsCompany(requestParameters.id, requestParameters.updateServiceAccountsCompanyRequest, options).then((request) => request(this.axios, this.basePath));
|
|
13236
|
+
}
|
|
13237
|
+
}
|
|
12568
13238
|
/**
|
|
12569
13239
|
* SitemapApi - axios parameter creator
|
|
12570
13240
|
* @export
|