@infisale-client/api 1.3.69 → 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 +384 -48
- package/dist/api/api.js +342 -2
- package/dist/api/api.mjs +336 -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.d.ts
CHANGED
|
@@ -2762,6 +2762,12 @@ export interface ICompany {
|
|
|
2762
2762
|
* @memberof ICompany
|
|
2763
2763
|
*/
|
|
2764
2764
|
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
2765
|
+
/**
|
|
2766
|
+
*
|
|
2767
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
2768
|
+
* @memberof ICompany
|
|
2769
|
+
*/
|
|
2770
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
2765
2771
|
/**
|
|
2766
2772
|
*
|
|
2767
2773
|
* @type {CompanyStatusEnum}
|
|
@@ -2792,6 +2798,12 @@ export interface ICompany {
|
|
|
2792
2798
|
* @memberof ICompany
|
|
2793
2799
|
*/
|
|
2794
2800
|
'storageUsageBytes': number;
|
|
2801
|
+
/**
|
|
2802
|
+
*
|
|
2803
|
+
* @type {Array<string>}
|
|
2804
|
+
* @memberof ICompany
|
|
2805
|
+
*/
|
|
2806
|
+
'seoCompetitors'?: Array<string>;
|
|
2795
2807
|
}
|
|
2796
2808
|
export declare const ICompanyGscVerificationStatusEnum: {
|
|
2797
2809
|
readonly UNVERIFIED: "UNVERIFIED";
|
|
@@ -3083,6 +3095,12 @@ export interface ICompanyAdminResponse {
|
|
|
3083
3095
|
* @memberof ICompanyAdminResponse
|
|
3084
3096
|
*/
|
|
3085
3097
|
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
3098
|
+
/**
|
|
3099
|
+
*
|
|
3100
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
3101
|
+
* @memberof ICompanyAdminResponse
|
|
3102
|
+
*/
|
|
3103
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
3086
3104
|
/**
|
|
3087
3105
|
*
|
|
3088
3106
|
* @type {string}
|
|
@@ -3101,6 +3119,12 @@ export interface ICompanyAdminResponse {
|
|
|
3101
3119
|
* @memberof ICompanyAdminResponse
|
|
3102
3120
|
*/
|
|
3103
3121
|
'storageUsageBytes': number;
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
* @type {Array<string>}
|
|
3125
|
+
* @memberof ICompanyAdminResponse
|
|
3126
|
+
*/
|
|
3127
|
+
'seoCompetitors'?: Array<string>;
|
|
3104
3128
|
/**
|
|
3105
3129
|
*
|
|
3106
3130
|
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles}
|
|
@@ -3189,12 +3213,6 @@ export interface ICompanyAdminResponse {
|
|
|
3189
3213
|
* @memberof ICompanyAdminResponse
|
|
3190
3214
|
*/
|
|
3191
3215
|
'accountAccess': boolean;
|
|
3192
|
-
/**
|
|
3193
|
-
*
|
|
3194
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
3195
|
-
* @memberof ICompanyAdminResponse
|
|
3196
|
-
*/
|
|
3197
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
3198
3216
|
/**
|
|
3199
3217
|
*
|
|
3200
3218
|
* @type {IPlanResponse}
|
|
@@ -3915,6 +3933,12 @@ export interface ICompanyPatchRequest {
|
|
|
3915
3933
|
* @memberof ICompanyPatchRequest
|
|
3916
3934
|
*/
|
|
3917
3935
|
'allowGuestCheckout'?: boolean;
|
|
3936
|
+
/**
|
|
3937
|
+
*
|
|
3938
|
+
* @type {Array<string>}
|
|
3939
|
+
* @memberof ICompanyPatchRequest
|
|
3940
|
+
*/
|
|
3941
|
+
'seoCompetitors'?: Array<string>;
|
|
3918
3942
|
}
|
|
3919
3943
|
export declare const ICompanyPatchRequestGscVerificationStatusEnum: {
|
|
3920
3944
|
readonly UNVERIFIED: "UNVERIFIED";
|
|
@@ -4354,6 +4378,12 @@ export interface ICompanyResponse {
|
|
|
4354
4378
|
* @memberof ICompanyResponse
|
|
4355
4379
|
*/
|
|
4356
4380
|
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
4381
|
+
/**
|
|
4382
|
+
*
|
|
4383
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
4384
|
+
* @memberof ICompanyResponse
|
|
4385
|
+
*/
|
|
4386
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
4357
4387
|
/**
|
|
4358
4388
|
*
|
|
4359
4389
|
* @type {string}
|
|
@@ -4372,6 +4402,12 @@ export interface ICompanyResponse {
|
|
|
4372
4402
|
* @memberof ICompanyResponse
|
|
4373
4403
|
*/
|
|
4374
4404
|
'storageUsageBytes': number;
|
|
4405
|
+
/**
|
|
4406
|
+
*
|
|
4407
|
+
* @type {Array<string>}
|
|
4408
|
+
* @memberof ICompanyResponse
|
|
4409
|
+
*/
|
|
4410
|
+
'seoCompetitors'?: Array<string>;
|
|
4375
4411
|
/**
|
|
4376
4412
|
*
|
|
4377
4413
|
* @type {PickICompanyNameOrDomainsOrIdOrLanguage}
|
|
@@ -4440,12 +4476,6 @@ export interface ICompanyResponse {
|
|
|
4440
4476
|
* @memberof ICompanyResponse
|
|
4441
4477
|
*/
|
|
4442
4478
|
'accountAccess': boolean;
|
|
4443
|
-
/**
|
|
4444
|
-
*
|
|
4445
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
4446
|
-
* @memberof ICompanyResponse
|
|
4447
|
-
*/
|
|
4448
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
4449
4479
|
/**
|
|
4450
4480
|
*
|
|
4451
4481
|
* @type {string}
|
|
@@ -9774,6 +9804,56 @@ export interface IReviewResponse {
|
|
|
9774
9804
|
*/
|
|
9775
9805
|
'product'?: IProductResponse;
|
|
9776
9806
|
}
|
|
9807
|
+
/**
|
|
9808
|
+
*
|
|
9809
|
+
* @export
|
|
9810
|
+
* @interface ISeoRankTrackPatchRequest
|
|
9811
|
+
*/
|
|
9812
|
+
export interface ISeoRankTrackPatchRequest {
|
|
9813
|
+
/**
|
|
9814
|
+
*
|
|
9815
|
+
* @type {string}
|
|
9816
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9817
|
+
*/
|
|
9818
|
+
'keyword'?: string;
|
|
9819
|
+
/**
|
|
9820
|
+
*
|
|
9821
|
+
* @type {number}
|
|
9822
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9823
|
+
*/
|
|
9824
|
+
'intervalSeconds'?: number;
|
|
9825
|
+
/**
|
|
9826
|
+
*
|
|
9827
|
+
* @type {boolean}
|
|
9828
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9829
|
+
*/
|
|
9830
|
+
'isActive'?: boolean;
|
|
9831
|
+
}
|
|
9832
|
+
/**
|
|
9833
|
+
*
|
|
9834
|
+
* @export
|
|
9835
|
+
* @interface ISeoRankTrackPostRequest
|
|
9836
|
+
*/
|
|
9837
|
+
export interface ISeoRankTrackPostRequest {
|
|
9838
|
+
/**
|
|
9839
|
+
*
|
|
9840
|
+
* @type {string}
|
|
9841
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9842
|
+
*/
|
|
9843
|
+
'companyId': string;
|
|
9844
|
+
/**
|
|
9845
|
+
*
|
|
9846
|
+
* @type {string}
|
|
9847
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9848
|
+
*/
|
|
9849
|
+
'keyword': string;
|
|
9850
|
+
/**
|
|
9851
|
+
*
|
|
9852
|
+
* @type {number}
|
|
9853
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9854
|
+
*/
|
|
9855
|
+
'intervalSeconds': number;
|
|
9856
|
+
}
|
|
9777
9857
|
/**
|
|
9778
9858
|
*
|
|
9779
9859
|
* @export
|
|
@@ -10654,6 +10734,12 @@ export interface IThemeResponse {
|
|
|
10654
10734
|
'config': {
|
|
10655
10735
|
[key: string]: any;
|
|
10656
10736
|
};
|
|
10737
|
+
/**
|
|
10738
|
+
*
|
|
10739
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10740
|
+
* @memberof IThemeResponse
|
|
10741
|
+
*/
|
|
10742
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10657
10743
|
/**
|
|
10658
10744
|
*
|
|
10659
10745
|
* @type {Array<string>}
|
|
@@ -10678,12 +10764,6 @@ export interface IThemeResponse {
|
|
|
10678
10764
|
* @memberof IThemeResponse
|
|
10679
10765
|
*/
|
|
10680
10766
|
'lastVersion': string;
|
|
10681
|
-
/**
|
|
10682
|
-
*
|
|
10683
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10684
|
-
* @memberof IThemeResponse
|
|
10685
|
-
*/
|
|
10686
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10687
10767
|
/**
|
|
10688
10768
|
*
|
|
10689
10769
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -10914,6 +10994,12 @@ export interface IThemesResponseData {
|
|
|
10914
10994
|
'config': {
|
|
10915
10995
|
[key: string]: any;
|
|
10916
10996
|
};
|
|
10997
|
+
/**
|
|
10998
|
+
*
|
|
10999
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
11000
|
+
* @memberof IThemesResponseData
|
|
11001
|
+
*/
|
|
11002
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10917
11003
|
/**
|
|
10918
11004
|
* Make all properties in T optional
|
|
10919
11005
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -10940,12 +11026,6 @@ export interface IThemesResponseData {
|
|
|
10940
11026
|
* @memberof IThemesResponseData
|
|
10941
11027
|
*/
|
|
10942
11028
|
'creator'?: string;
|
|
10943
|
-
/**
|
|
10944
|
-
*
|
|
10945
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10946
|
-
* @memberof IThemesResponseData
|
|
10947
|
-
*/
|
|
10948
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10949
11029
|
/**
|
|
10950
11030
|
*
|
|
10951
11031
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -11079,6 +11159,12 @@ export interface IThemesResponseDataMain {
|
|
|
11079
11159
|
'config': {
|
|
11080
11160
|
[key: string]: any;
|
|
11081
11161
|
};
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
11165
|
+
* @memberof IThemesResponseDataMain
|
|
11166
|
+
*/
|
|
11167
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
11082
11168
|
/**
|
|
11083
11169
|
* Make all properties in T optional
|
|
11084
11170
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
@@ -11105,12 +11191,6 @@ export interface IThemesResponseDataMain {
|
|
|
11105
11191
|
* @memberof IThemesResponseDataMain
|
|
11106
11192
|
*/
|
|
11107
11193
|
'creator'?: string;
|
|
11108
|
-
/**
|
|
11109
|
-
*
|
|
11110
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
11111
|
-
* @memberof IThemesResponseDataMain
|
|
11112
|
-
*/
|
|
11113
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
11114
11194
|
/**
|
|
11115
11195
|
*
|
|
11116
11196
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -13003,6 +13083,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
13003
13083
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13004
13084
|
*/
|
|
13005
13085
|
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
13086
|
+
/**
|
|
13087
|
+
*
|
|
13088
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
13089
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13090
|
+
*/
|
|
13091
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
13006
13092
|
/**
|
|
13007
13093
|
*
|
|
13008
13094
|
* @type {string}
|
|
@@ -13021,6 +13107,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
13021
13107
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13022
13108
|
*/
|
|
13023
13109
|
'storageUsageBytes': number;
|
|
13110
|
+
/**
|
|
13111
|
+
*
|
|
13112
|
+
* @type {Array<string>}
|
|
13113
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13114
|
+
*/
|
|
13115
|
+
'seoCompetitors'?: Array<string>;
|
|
13024
13116
|
}
|
|
13025
13117
|
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum: {
|
|
13026
13118
|
readonly UNVERIFIED: "UNVERIFIED";
|
|
@@ -14609,6 +14701,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
14609
14701
|
'config': {
|
|
14610
14702
|
[key: string]: any;
|
|
14611
14703
|
};
|
|
14704
|
+
/**
|
|
14705
|
+
*
|
|
14706
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14707
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14708
|
+
*/
|
|
14709
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14612
14710
|
/**
|
|
14613
14711
|
*
|
|
14614
14712
|
* @type {Array<string>}
|
|
@@ -14633,12 +14731,6 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
14633
14731
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14634
14732
|
*/
|
|
14635
14733
|
'lastVersion': string;
|
|
14636
|
-
/**
|
|
14637
|
-
*
|
|
14638
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14639
|
-
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14640
|
-
*/
|
|
14641
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14642
14734
|
/**
|
|
14643
14735
|
*
|
|
14644
14736
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -14757,6 +14849,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
14757
14849
|
'config': {
|
|
14758
14850
|
[key: string]: any;
|
|
14759
14851
|
};
|
|
14852
|
+
/**
|
|
14853
|
+
*
|
|
14854
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14855
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14856
|
+
*/
|
|
14857
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14760
14858
|
/**
|
|
14761
14859
|
* Make all properties in T optional
|
|
14762
14860
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
@@ -14783,12 +14881,6 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
14783
14881
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14784
14882
|
*/
|
|
14785
14883
|
'creator'?: string;
|
|
14786
|
-
/**
|
|
14787
|
-
*
|
|
14788
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14789
|
-
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14790
|
-
*/
|
|
14791
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14792
14884
|
/**
|
|
14793
14885
|
*
|
|
14794
14886
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -14870,6 +14962,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
14870
14962
|
'config': {
|
|
14871
14963
|
[key: string]: any;
|
|
14872
14964
|
};
|
|
14965
|
+
/**
|
|
14966
|
+
*
|
|
14967
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14968
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14969
|
+
*/
|
|
14970
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14873
14971
|
/**
|
|
14874
14972
|
* Make all properties in T optional
|
|
14875
14973
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -14896,12 +14994,6 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
14896
14994
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14897
14995
|
*/
|
|
14898
14996
|
'creator'?: string;
|
|
14899
|
-
/**
|
|
14900
|
-
*
|
|
14901
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14902
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14903
|
-
*/
|
|
14904
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14905
14997
|
/**
|
|
14906
14998
|
*
|
|
14907
14999
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -25532,6 +25624,250 @@ export declare const GetProductsSortEnum: {
|
|
|
25532
25624
|
readonly REVIEW_COUNT: "reviewCount";
|
|
25533
25625
|
};
|
|
25534
25626
|
export type GetProductsSortEnum = typeof GetProductsSortEnum[keyof typeof GetProductsSortEnum];
|
|
25627
|
+
/**
|
|
25628
|
+
* SEOApi - axios parameter creator
|
|
25629
|
+
* @export
|
|
25630
|
+
*/
|
|
25631
|
+
export declare const SEOApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
25632
|
+
/**
|
|
25633
|
+
*
|
|
25634
|
+
* @param {ISeoRankTrackPostRequest} iSeoRankTrackPostRequest
|
|
25635
|
+
* @param {*} [options] Override http request option.
|
|
25636
|
+
* @throws {RequiredError}
|
|
25637
|
+
*/
|
|
25638
|
+
createSeoRankTrack: (iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25639
|
+
/**
|
|
25640
|
+
*
|
|
25641
|
+
* @param {string} id
|
|
25642
|
+
* @param {*} [options] Override http request option.
|
|
25643
|
+
* @throws {RequiredError}
|
|
25644
|
+
*/
|
|
25645
|
+
deleteSeoRankTrack: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25646
|
+
/**
|
|
25647
|
+
*
|
|
25648
|
+
* @param {string} id
|
|
25649
|
+
* @param {*} [options] Override http request option.
|
|
25650
|
+
* @throws {RequiredError}
|
|
25651
|
+
*/
|
|
25652
|
+
getSeoRankTrack: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25653
|
+
/**
|
|
25654
|
+
*
|
|
25655
|
+
* @param {string} [companyId]
|
|
25656
|
+
* @param {*} [options] Override http request option.
|
|
25657
|
+
* @throws {RequiredError}
|
|
25658
|
+
*/
|
|
25659
|
+
listSeoRankTracks: (companyId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25660
|
+
/**
|
|
25661
|
+
*
|
|
25662
|
+
* @param {string} id
|
|
25663
|
+
* @param {ISeoRankTrackPatchRequest} iSeoRankTrackPatchRequest
|
|
25664
|
+
* @param {*} [options] Override http request option.
|
|
25665
|
+
* @throws {RequiredError}
|
|
25666
|
+
*/
|
|
25667
|
+
updateSeoRankTrack: (id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25668
|
+
};
|
|
25669
|
+
/**
|
|
25670
|
+
* SEOApi - functional programming interface
|
|
25671
|
+
* @export
|
|
25672
|
+
*/
|
|
25673
|
+
export declare const SEOApiFp: (configuration?: Configuration) => {
|
|
25674
|
+
/**
|
|
25675
|
+
*
|
|
25676
|
+
* @param {ISeoRankTrackPostRequest} iSeoRankTrackPostRequest
|
|
25677
|
+
* @param {*} [options] Override http request option.
|
|
25678
|
+
* @throws {RequiredError}
|
|
25679
|
+
*/
|
|
25680
|
+
createSeoRankTrack(iSeoRankTrackPostRequest: ISeoRankTrackPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
25681
|
+
/**
|
|
25682
|
+
*
|
|
25683
|
+
* @param {string} id
|
|
25684
|
+
* @param {*} [options] Override http request option.
|
|
25685
|
+
* @throws {RequiredError}
|
|
25686
|
+
*/
|
|
25687
|
+
deleteSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
25688
|
+
/**
|
|
25689
|
+
*
|
|
25690
|
+
* @param {string} id
|
|
25691
|
+
* @param {*} [options] Override http request option.
|
|
25692
|
+
* @throws {RequiredError}
|
|
25693
|
+
*/
|
|
25694
|
+
getSeoRankTrack(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
25695
|
+
/**
|
|
25696
|
+
*
|
|
25697
|
+
* @param {string} [companyId]
|
|
25698
|
+
* @param {*} [options] Override http request option.
|
|
25699
|
+
* @throws {RequiredError}
|
|
25700
|
+
*/
|
|
25701
|
+
listSeoRankTracks(companyId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
25702
|
+
/**
|
|
25703
|
+
*
|
|
25704
|
+
* @param {string} id
|
|
25705
|
+
* @param {ISeoRankTrackPatchRequest} iSeoRankTrackPatchRequest
|
|
25706
|
+
* @param {*} [options] Override http request option.
|
|
25707
|
+
* @throws {RequiredError}
|
|
25708
|
+
*/
|
|
25709
|
+
updateSeoRankTrack(id: string, iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
|
|
25710
|
+
};
|
|
25711
|
+
/**
|
|
25712
|
+
* SEOApi - factory interface
|
|
25713
|
+
* @export
|
|
25714
|
+
*/
|
|
25715
|
+
export declare const SEOApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
25716
|
+
/**
|
|
25717
|
+
*
|
|
25718
|
+
* @param {SEOApiCreateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25719
|
+
* @param {*} [options] Override http request option.
|
|
25720
|
+
* @throws {RequiredError}
|
|
25721
|
+
*/
|
|
25722
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
25723
|
+
/**
|
|
25724
|
+
*
|
|
25725
|
+
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
25726
|
+
* @param {*} [options] Override http request option.
|
|
25727
|
+
* @throws {RequiredError}
|
|
25728
|
+
*/
|
|
25729
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
25730
|
+
/**
|
|
25731
|
+
*
|
|
25732
|
+
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
25733
|
+
* @param {*} [options] Override http request option.
|
|
25734
|
+
* @throws {RequiredError}
|
|
25735
|
+
*/
|
|
25736
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
25737
|
+
/**
|
|
25738
|
+
*
|
|
25739
|
+
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
25740
|
+
* @param {*} [options] Override http request option.
|
|
25741
|
+
* @throws {RequiredError}
|
|
25742
|
+
*/
|
|
25743
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
25744
|
+
/**
|
|
25745
|
+
*
|
|
25746
|
+
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25747
|
+
* @param {*} [options] Override http request option.
|
|
25748
|
+
* @throws {RequiredError}
|
|
25749
|
+
*/
|
|
25750
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
|
|
25751
|
+
};
|
|
25752
|
+
/**
|
|
25753
|
+
* Request parameters for createSeoRankTrack operation in SEOApi.
|
|
25754
|
+
* @export
|
|
25755
|
+
* @interface SEOApiCreateSeoRankTrackRequest
|
|
25756
|
+
*/
|
|
25757
|
+
export interface SEOApiCreateSeoRankTrackRequest {
|
|
25758
|
+
/**
|
|
25759
|
+
*
|
|
25760
|
+
* @type {ISeoRankTrackPostRequest}
|
|
25761
|
+
* @memberof SEOApiCreateSeoRankTrack
|
|
25762
|
+
*/
|
|
25763
|
+
readonly iSeoRankTrackPostRequest: ISeoRankTrackPostRequest;
|
|
25764
|
+
}
|
|
25765
|
+
/**
|
|
25766
|
+
* Request parameters for deleteSeoRankTrack operation in SEOApi.
|
|
25767
|
+
* @export
|
|
25768
|
+
* @interface SEOApiDeleteSeoRankTrackRequest
|
|
25769
|
+
*/
|
|
25770
|
+
export interface SEOApiDeleteSeoRankTrackRequest {
|
|
25771
|
+
/**
|
|
25772
|
+
*
|
|
25773
|
+
* @type {string}
|
|
25774
|
+
* @memberof SEOApiDeleteSeoRankTrack
|
|
25775
|
+
*/
|
|
25776
|
+
readonly id: string;
|
|
25777
|
+
}
|
|
25778
|
+
/**
|
|
25779
|
+
* Request parameters for getSeoRankTrack operation in SEOApi.
|
|
25780
|
+
* @export
|
|
25781
|
+
* @interface SEOApiGetSeoRankTrackRequest
|
|
25782
|
+
*/
|
|
25783
|
+
export interface SEOApiGetSeoRankTrackRequest {
|
|
25784
|
+
/**
|
|
25785
|
+
*
|
|
25786
|
+
* @type {string}
|
|
25787
|
+
* @memberof SEOApiGetSeoRankTrack
|
|
25788
|
+
*/
|
|
25789
|
+
readonly id: string;
|
|
25790
|
+
}
|
|
25791
|
+
/**
|
|
25792
|
+
* Request parameters for listSeoRankTracks operation in SEOApi.
|
|
25793
|
+
* @export
|
|
25794
|
+
* @interface SEOApiListSeoRankTracksRequest
|
|
25795
|
+
*/
|
|
25796
|
+
export interface SEOApiListSeoRankTracksRequest {
|
|
25797
|
+
/**
|
|
25798
|
+
*
|
|
25799
|
+
* @type {string}
|
|
25800
|
+
* @memberof SEOApiListSeoRankTracks
|
|
25801
|
+
*/
|
|
25802
|
+
readonly companyId?: string;
|
|
25803
|
+
}
|
|
25804
|
+
/**
|
|
25805
|
+
* Request parameters for updateSeoRankTrack operation in SEOApi.
|
|
25806
|
+
* @export
|
|
25807
|
+
* @interface SEOApiUpdateSeoRankTrackRequest
|
|
25808
|
+
*/
|
|
25809
|
+
export interface SEOApiUpdateSeoRankTrackRequest {
|
|
25810
|
+
/**
|
|
25811
|
+
*
|
|
25812
|
+
* @type {string}
|
|
25813
|
+
* @memberof SEOApiUpdateSeoRankTrack
|
|
25814
|
+
*/
|
|
25815
|
+
readonly id: string;
|
|
25816
|
+
/**
|
|
25817
|
+
*
|
|
25818
|
+
* @type {ISeoRankTrackPatchRequest}
|
|
25819
|
+
* @memberof SEOApiUpdateSeoRankTrack
|
|
25820
|
+
*/
|
|
25821
|
+
readonly iSeoRankTrackPatchRequest: ISeoRankTrackPatchRequest;
|
|
25822
|
+
}
|
|
25823
|
+
/**
|
|
25824
|
+
* SEOApi - object-oriented interface
|
|
25825
|
+
* @export
|
|
25826
|
+
* @class SEOApi
|
|
25827
|
+
* @extends {BaseAPI}
|
|
25828
|
+
*/
|
|
25829
|
+
export declare class SEOApi extends BaseAPI {
|
|
25830
|
+
/**
|
|
25831
|
+
*
|
|
25832
|
+
* @param {SEOApiCreateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25833
|
+
* @param {*} [options] Override http request option.
|
|
25834
|
+
* @throws {RequiredError}
|
|
25835
|
+
* @memberof SEOApi
|
|
25836
|
+
*/
|
|
25837
|
+
createSeoRankTrack(requestParameters: SEOApiCreateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25838
|
+
/**
|
|
25839
|
+
*
|
|
25840
|
+
* @param {SEOApiDeleteSeoRankTrackRequest} requestParameters Request parameters.
|
|
25841
|
+
* @param {*} [options] Override http request option.
|
|
25842
|
+
* @throws {RequiredError}
|
|
25843
|
+
* @memberof SEOApi
|
|
25844
|
+
*/
|
|
25845
|
+
deleteSeoRankTrack(requestParameters: SEOApiDeleteSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25846
|
+
/**
|
|
25847
|
+
*
|
|
25848
|
+
* @param {SEOApiGetSeoRankTrackRequest} requestParameters Request parameters.
|
|
25849
|
+
* @param {*} [options] Override http request option.
|
|
25850
|
+
* @throws {RequiredError}
|
|
25851
|
+
* @memberof SEOApi
|
|
25852
|
+
*/
|
|
25853
|
+
getSeoRankTrack(requestParameters: SEOApiGetSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25854
|
+
/**
|
|
25855
|
+
*
|
|
25856
|
+
* @param {SEOApiListSeoRankTracksRequest} requestParameters Request parameters.
|
|
25857
|
+
* @param {*} [options] Override http request option.
|
|
25858
|
+
* @throws {RequiredError}
|
|
25859
|
+
* @memberof SEOApi
|
|
25860
|
+
*/
|
|
25861
|
+
listSeoRankTracks(requestParameters?: SEOApiListSeoRankTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25862
|
+
/**
|
|
25863
|
+
*
|
|
25864
|
+
* @param {SEOApiUpdateSeoRankTrackRequest} requestParameters Request parameters.
|
|
25865
|
+
* @param {*} [options] Override http request option.
|
|
25866
|
+
* @throws {RequiredError}
|
|
25867
|
+
* @memberof SEOApi
|
|
25868
|
+
*/
|
|
25869
|
+
updateSeoRankTrack(requestParameters: SEOApiUpdateSeoRankTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
25870
|
+
}
|
|
25535
25871
|
/**
|
|
25536
25872
|
* ServiceAccountsApi - axios parameter creator
|
|
25537
25873
|
* @export
|