@infisale-client/api-client 1.3.67 → 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 +557 -42
- package/dist/api/api.js +63 -3
- package/dist/api/api.mjs +60 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2661,6 +2661,60 @@ export interface ICompany {
|
|
|
2661
2661
|
* @memberof ICompany
|
|
2662
2662
|
*/
|
|
2663
2663
|
'passwordActive'?: boolean;
|
|
2664
|
+
/**
|
|
2665
|
+
* Storefront cache aktif mi?
|
|
2666
|
+
* @type {boolean}
|
|
2667
|
+
* @memberof ICompany
|
|
2668
|
+
*/
|
|
2669
|
+
'cacheActive'?: boolean;
|
|
2670
|
+
/**
|
|
2671
|
+
*
|
|
2672
|
+
* @type {string}
|
|
2673
|
+
* @memberof ICompany
|
|
2674
|
+
*/
|
|
2675
|
+
'serviceAccountId'?: string;
|
|
2676
|
+
/**
|
|
2677
|
+
*
|
|
2678
|
+
* @type {string}
|
|
2679
|
+
* @memberof ICompany
|
|
2680
|
+
*/
|
|
2681
|
+
'scDomain'?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
*
|
|
2684
|
+
* @type {string}
|
|
2685
|
+
* @memberof ICompany
|
|
2686
|
+
*/
|
|
2687
|
+
'gscVerificationToken'?: string;
|
|
2688
|
+
/**
|
|
2689
|
+
*
|
|
2690
|
+
* @type {string}
|
|
2691
|
+
* @memberof ICompany
|
|
2692
|
+
*/
|
|
2693
|
+
'gscVerificationStatus'?: ICompanyGscVerificationStatusEnum;
|
|
2694
|
+
/**
|
|
2695
|
+
*
|
|
2696
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
2697
|
+
* @memberof ICompany
|
|
2698
|
+
*/
|
|
2699
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
2700
|
+
/**
|
|
2701
|
+
*
|
|
2702
|
+
* @type {string}
|
|
2703
|
+
* @memberof ICompany
|
|
2704
|
+
*/
|
|
2705
|
+
'rentalStatus'?: ICompanyRentalStatusEnum;
|
|
2706
|
+
/**
|
|
2707
|
+
*
|
|
2708
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
2709
|
+
* @memberof ICompany
|
|
2710
|
+
*/
|
|
2711
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
2712
|
+
/**
|
|
2713
|
+
*
|
|
2714
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
2715
|
+
* @memberof ICompany
|
|
2716
|
+
*/
|
|
2717
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
2664
2718
|
/**
|
|
2665
2719
|
*
|
|
2666
2720
|
* @type {CompanyStatusEnum}
|
|
@@ -2691,7 +2745,25 @@ export interface ICompany {
|
|
|
2691
2745
|
* @memberof ICompany
|
|
2692
2746
|
*/
|
|
2693
2747
|
'storageUsageBytes': number;
|
|
2748
|
+
/**
|
|
2749
|
+
*
|
|
2750
|
+
* @type {Array<string>}
|
|
2751
|
+
* @memberof ICompany
|
|
2752
|
+
*/
|
|
2753
|
+
'seoCompetitors'?: Array<string>;
|
|
2694
2754
|
}
|
|
2755
|
+
export declare const ICompanyGscVerificationStatusEnum: {
|
|
2756
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
2757
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
2758
|
+
readonly VERIFIED: "VERIFIED";
|
|
2759
|
+
readonly FAILED: "FAILED";
|
|
2760
|
+
};
|
|
2761
|
+
export type ICompanyGscVerificationStatusEnum = typeof ICompanyGscVerificationStatusEnum[keyof typeof ICompanyGscVerificationStatusEnum];
|
|
2762
|
+
export declare const ICompanyRentalStatusEnum: {
|
|
2763
|
+
readonly VACANT: "VACANT";
|
|
2764
|
+
readonly RENTED: "RENTED";
|
|
2765
|
+
};
|
|
2766
|
+
export type ICompanyRentalStatusEnum = typeof ICompanyRentalStatusEnum[keyof typeof ICompanyRentalStatusEnum];
|
|
2695
2767
|
/**
|
|
2696
2768
|
*
|
|
2697
2769
|
* @export
|
|
@@ -2922,6 +2994,60 @@ export interface ICompanyAdminResponse {
|
|
|
2922
2994
|
* @memberof ICompanyAdminResponse
|
|
2923
2995
|
*/
|
|
2924
2996
|
'passwordActive'?: boolean;
|
|
2997
|
+
/**
|
|
2998
|
+
* Storefront cache aktif mi?
|
|
2999
|
+
* @type {boolean}
|
|
3000
|
+
* @memberof ICompanyAdminResponse
|
|
3001
|
+
*/
|
|
3002
|
+
'cacheActive'?: boolean;
|
|
3003
|
+
/**
|
|
3004
|
+
*
|
|
3005
|
+
* @type {string}
|
|
3006
|
+
* @memberof ICompanyAdminResponse
|
|
3007
|
+
*/
|
|
3008
|
+
'serviceAccountId'?: string;
|
|
3009
|
+
/**
|
|
3010
|
+
*
|
|
3011
|
+
* @type {string}
|
|
3012
|
+
* @memberof ICompanyAdminResponse
|
|
3013
|
+
*/
|
|
3014
|
+
'scDomain'?: string;
|
|
3015
|
+
/**
|
|
3016
|
+
*
|
|
3017
|
+
* @type {string}
|
|
3018
|
+
* @memberof ICompanyAdminResponse
|
|
3019
|
+
*/
|
|
3020
|
+
'gscVerificationToken'?: string;
|
|
3021
|
+
/**
|
|
3022
|
+
*
|
|
3023
|
+
* @type {string}
|
|
3024
|
+
* @memberof ICompanyAdminResponse
|
|
3025
|
+
*/
|
|
3026
|
+
'gscVerificationStatus'?: ICompanyAdminResponseGscVerificationStatusEnum;
|
|
3027
|
+
/**
|
|
3028
|
+
*
|
|
3029
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
3030
|
+
* @memberof ICompanyAdminResponse
|
|
3031
|
+
*/
|
|
3032
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
* @type {string}
|
|
3036
|
+
* @memberof ICompanyAdminResponse
|
|
3037
|
+
*/
|
|
3038
|
+
'rentalStatus'?: ICompanyAdminResponseRentalStatusEnum;
|
|
3039
|
+
/**
|
|
3040
|
+
*
|
|
3041
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
3042
|
+
* @memberof ICompanyAdminResponse
|
|
3043
|
+
*/
|
|
3044
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
3045
|
+
/**
|
|
3046
|
+
*
|
|
3047
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
3048
|
+
* @memberof ICompanyAdminResponse
|
|
3049
|
+
*/
|
|
3050
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
2925
3051
|
/**
|
|
2926
3052
|
*
|
|
2927
3053
|
* @type {string}
|
|
@@ -2940,6 +3066,12 @@ export interface ICompanyAdminResponse {
|
|
|
2940
3066
|
* @memberof ICompanyAdminResponse
|
|
2941
3067
|
*/
|
|
2942
3068
|
'storageUsageBytes': number;
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @type {Array<string>}
|
|
3072
|
+
* @memberof ICompanyAdminResponse
|
|
3073
|
+
*/
|
|
3074
|
+
'seoCompetitors'?: Array<string>;
|
|
2943
3075
|
/**
|
|
2944
3076
|
*
|
|
2945
3077
|
* @type {PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRoles}
|
|
@@ -3030,17 +3162,35 @@ export interface ICompanyAdminResponse {
|
|
|
3030
3162
|
'accountAccess': boolean;
|
|
3031
3163
|
/**
|
|
3032
3164
|
*
|
|
3033
|
-
* @type {
|
|
3165
|
+
* @type {IPlanResponse}
|
|
3034
3166
|
* @memberof ICompanyAdminResponse
|
|
3035
3167
|
*/
|
|
3036
|
-
'
|
|
3168
|
+
'_plan'?: IPlanResponse;
|
|
3037
3169
|
/**
|
|
3038
3170
|
*
|
|
3039
|
-
* @type {
|
|
3171
|
+
* @type {string}
|
|
3040
3172
|
* @memberof ICompanyAdminResponse
|
|
3041
3173
|
*/
|
|
3042
|
-
'
|
|
3174
|
+
'version'?: string;
|
|
3175
|
+
/**
|
|
3176
|
+
*
|
|
3177
|
+
* @type {string}
|
|
3178
|
+
* @memberof ICompanyAdminResponse
|
|
3179
|
+
*/
|
|
3180
|
+
'contentHash'?: string;
|
|
3043
3181
|
}
|
|
3182
|
+
export declare const ICompanyAdminResponseGscVerificationStatusEnum: {
|
|
3183
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
3184
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
3185
|
+
readonly VERIFIED: "VERIFIED";
|
|
3186
|
+
readonly FAILED: "FAILED";
|
|
3187
|
+
};
|
|
3188
|
+
export type ICompanyAdminResponseGscVerificationStatusEnum = typeof ICompanyAdminResponseGscVerificationStatusEnum[keyof typeof ICompanyAdminResponseGscVerificationStatusEnum];
|
|
3189
|
+
export declare const ICompanyAdminResponseRentalStatusEnum: {
|
|
3190
|
+
readonly VACANT: "VACANT";
|
|
3191
|
+
readonly RENTED: "RENTED";
|
|
3192
|
+
};
|
|
3193
|
+
export type ICompanyAdminResponseRentalStatusEnum = typeof ICompanyAdminResponseRentalStatusEnum[keyof typeof ICompanyAdminResponseRentalStatusEnum];
|
|
3044
3194
|
/**
|
|
3045
3195
|
*
|
|
3046
3196
|
* @export
|
|
@@ -3670,6 +3820,54 @@ export interface ICompanyPatchRequest {
|
|
|
3670
3820
|
* @memberof ICompanyPatchRequest
|
|
3671
3821
|
*/
|
|
3672
3822
|
'passwordActive'?: boolean;
|
|
3823
|
+
/**
|
|
3824
|
+
* Storefront cache aktif mi?
|
|
3825
|
+
* @type {boolean}
|
|
3826
|
+
* @memberof ICompanyPatchRequest
|
|
3827
|
+
*/
|
|
3828
|
+
'cacheActive'?: boolean;
|
|
3829
|
+
/**
|
|
3830
|
+
*
|
|
3831
|
+
* @type {string}
|
|
3832
|
+
* @memberof ICompanyPatchRequest
|
|
3833
|
+
*/
|
|
3834
|
+
'serviceAccountId'?: string;
|
|
3835
|
+
/**
|
|
3836
|
+
*
|
|
3837
|
+
* @type {string}
|
|
3838
|
+
* @memberof ICompanyPatchRequest
|
|
3839
|
+
*/
|
|
3840
|
+
'scDomain'?: string;
|
|
3841
|
+
/**
|
|
3842
|
+
*
|
|
3843
|
+
* @type {string}
|
|
3844
|
+
* @memberof ICompanyPatchRequest
|
|
3845
|
+
*/
|
|
3846
|
+
'gscVerificationToken'?: string;
|
|
3847
|
+
/**
|
|
3848
|
+
*
|
|
3849
|
+
* @type {string}
|
|
3850
|
+
* @memberof ICompanyPatchRequest
|
|
3851
|
+
*/
|
|
3852
|
+
'gscVerificationStatus'?: ICompanyPatchRequestGscVerificationStatusEnum;
|
|
3853
|
+
/**
|
|
3854
|
+
*
|
|
3855
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
3856
|
+
* @memberof ICompanyPatchRequest
|
|
3857
|
+
*/
|
|
3858
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
3859
|
+
/**
|
|
3860
|
+
*
|
|
3861
|
+
* @type {string}
|
|
3862
|
+
* @memberof ICompanyPatchRequest
|
|
3863
|
+
*/
|
|
3864
|
+
'rentalStatus'?: ICompanyPatchRequestRentalStatusEnum;
|
|
3865
|
+
/**
|
|
3866
|
+
*
|
|
3867
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
3868
|
+
* @memberof ICompanyPatchRequest
|
|
3869
|
+
*/
|
|
3870
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
3673
3871
|
/**
|
|
3674
3872
|
*
|
|
3675
3873
|
* @type {string}
|
|
@@ -3682,7 +3880,25 @@ export interface ICompanyPatchRequest {
|
|
|
3682
3880
|
* @memberof ICompanyPatchRequest
|
|
3683
3881
|
*/
|
|
3684
3882
|
'allowGuestCheckout'?: boolean;
|
|
3883
|
+
/**
|
|
3884
|
+
*
|
|
3885
|
+
* @type {Array<string>}
|
|
3886
|
+
* @memberof ICompanyPatchRequest
|
|
3887
|
+
*/
|
|
3888
|
+
'seoCompetitors'?: Array<string>;
|
|
3685
3889
|
}
|
|
3890
|
+
export declare const ICompanyPatchRequestGscVerificationStatusEnum: {
|
|
3891
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
3892
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
3893
|
+
readonly VERIFIED: "VERIFIED";
|
|
3894
|
+
readonly FAILED: "FAILED";
|
|
3895
|
+
};
|
|
3896
|
+
export type ICompanyPatchRequestGscVerificationStatusEnum = typeof ICompanyPatchRequestGscVerificationStatusEnum[keyof typeof ICompanyPatchRequestGscVerificationStatusEnum];
|
|
3897
|
+
export declare const ICompanyPatchRequestRentalStatusEnum: {
|
|
3898
|
+
readonly VACANT: "VACANT";
|
|
3899
|
+
readonly RENTED: "RENTED";
|
|
3900
|
+
};
|
|
3901
|
+
export type ICompanyPatchRequestRentalStatusEnum = typeof ICompanyPatchRequestRentalStatusEnum[keyof typeof ICompanyPatchRequestRentalStatusEnum];
|
|
3686
3902
|
/**
|
|
3687
3903
|
*
|
|
3688
3904
|
* @export
|
|
@@ -4061,6 +4277,60 @@ export interface ICompanyResponse {
|
|
|
4061
4277
|
* @memberof ICompanyResponse
|
|
4062
4278
|
*/
|
|
4063
4279
|
'passwordActive'?: boolean;
|
|
4280
|
+
/**
|
|
4281
|
+
* Storefront cache aktif mi?
|
|
4282
|
+
* @type {boolean}
|
|
4283
|
+
* @memberof ICompanyResponse
|
|
4284
|
+
*/
|
|
4285
|
+
'cacheActive'?: boolean;
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @type {string}
|
|
4289
|
+
* @memberof ICompanyResponse
|
|
4290
|
+
*/
|
|
4291
|
+
'serviceAccountId'?: string;
|
|
4292
|
+
/**
|
|
4293
|
+
*
|
|
4294
|
+
* @type {string}
|
|
4295
|
+
* @memberof ICompanyResponse
|
|
4296
|
+
*/
|
|
4297
|
+
'scDomain'?: string;
|
|
4298
|
+
/**
|
|
4299
|
+
*
|
|
4300
|
+
* @type {string}
|
|
4301
|
+
* @memberof ICompanyResponse
|
|
4302
|
+
*/
|
|
4303
|
+
'gscVerificationToken'?: string;
|
|
4304
|
+
/**
|
|
4305
|
+
*
|
|
4306
|
+
* @type {string}
|
|
4307
|
+
* @memberof ICompanyResponse
|
|
4308
|
+
*/
|
|
4309
|
+
'gscVerificationStatus'?: ICompanyResponseGscVerificationStatusEnum;
|
|
4310
|
+
/**
|
|
4311
|
+
*
|
|
4312
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
4313
|
+
* @memberof ICompanyResponse
|
|
4314
|
+
*/
|
|
4315
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
4316
|
+
/**
|
|
4317
|
+
*
|
|
4318
|
+
* @type {string}
|
|
4319
|
+
* @memberof ICompanyResponse
|
|
4320
|
+
*/
|
|
4321
|
+
'rentalStatus'?: ICompanyResponseRentalStatusEnum;
|
|
4322
|
+
/**
|
|
4323
|
+
*
|
|
4324
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
4325
|
+
* @memberof ICompanyResponse
|
|
4326
|
+
*/
|
|
4327
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
4328
|
+
/**
|
|
4329
|
+
*
|
|
4330
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
4331
|
+
* @memberof ICompanyResponse
|
|
4332
|
+
*/
|
|
4333
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
4064
4334
|
/**
|
|
4065
4335
|
*
|
|
4066
4336
|
* @type {string}
|
|
@@ -4079,6 +4349,12 @@ export interface ICompanyResponse {
|
|
|
4079
4349
|
* @memberof ICompanyResponse
|
|
4080
4350
|
*/
|
|
4081
4351
|
'storageUsageBytes': number;
|
|
4352
|
+
/**
|
|
4353
|
+
*
|
|
4354
|
+
* @type {Array<string>}
|
|
4355
|
+
* @memberof ICompanyResponse
|
|
4356
|
+
*/
|
|
4357
|
+
'seoCompetitors'?: Array<string>;
|
|
4082
4358
|
/**
|
|
4083
4359
|
*
|
|
4084
4360
|
* @type {PickICompanyNameOrDomainsOrIdOrLanguage}
|
|
@@ -4149,11 +4425,23 @@ export interface ICompanyResponse {
|
|
|
4149
4425
|
'accountAccess': boolean;
|
|
4150
4426
|
/**
|
|
4151
4427
|
*
|
|
4152
|
-
* @type {
|
|
4428
|
+
* @type {string}
|
|
4153
4429
|
* @memberof ICompanyResponse
|
|
4154
4430
|
*/
|
|
4155
|
-
'
|
|
4431
|
+
'version'?: string;
|
|
4156
4432
|
}
|
|
4433
|
+
export declare const ICompanyResponseGscVerificationStatusEnum: {
|
|
4434
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
4435
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
4436
|
+
readonly VERIFIED: "VERIFIED";
|
|
4437
|
+
readonly FAILED: "FAILED";
|
|
4438
|
+
};
|
|
4439
|
+
export type ICompanyResponseGscVerificationStatusEnum = typeof ICompanyResponseGscVerificationStatusEnum[keyof typeof ICompanyResponseGscVerificationStatusEnum];
|
|
4440
|
+
export declare const ICompanyResponseRentalStatusEnum: {
|
|
4441
|
+
readonly VACANT: "VACANT";
|
|
4442
|
+
readonly RENTED: "RENTED";
|
|
4443
|
+
};
|
|
4444
|
+
export type ICompanyResponseRentalStatusEnum = typeof ICompanyResponseRentalStatusEnum[keyof typeof ICompanyResponseRentalStatusEnum];
|
|
4157
4445
|
/**
|
|
4158
4446
|
*
|
|
4159
4447
|
* @export
|
|
@@ -9463,6 +9751,105 @@ export interface IReviewResponse {
|
|
|
9463
9751
|
*/
|
|
9464
9752
|
'product'?: IProductResponse;
|
|
9465
9753
|
}
|
|
9754
|
+
/**
|
|
9755
|
+
*
|
|
9756
|
+
* @export
|
|
9757
|
+
* @interface ISeoRankTrackPatchRequest
|
|
9758
|
+
*/
|
|
9759
|
+
export interface ISeoRankTrackPatchRequest {
|
|
9760
|
+
/**
|
|
9761
|
+
*
|
|
9762
|
+
* @type {string}
|
|
9763
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9764
|
+
*/
|
|
9765
|
+
'keyword'?: string;
|
|
9766
|
+
/**
|
|
9767
|
+
*
|
|
9768
|
+
* @type {number}
|
|
9769
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9770
|
+
*/
|
|
9771
|
+
'intervalSeconds'?: number;
|
|
9772
|
+
/**
|
|
9773
|
+
*
|
|
9774
|
+
* @type {boolean}
|
|
9775
|
+
* @memberof ISeoRankTrackPatchRequest
|
|
9776
|
+
*/
|
|
9777
|
+
'isActive'?: boolean;
|
|
9778
|
+
}
|
|
9779
|
+
/**
|
|
9780
|
+
*
|
|
9781
|
+
* @export
|
|
9782
|
+
* @interface ISeoRankTrackPostRequest
|
|
9783
|
+
*/
|
|
9784
|
+
export interface ISeoRankTrackPostRequest {
|
|
9785
|
+
/**
|
|
9786
|
+
*
|
|
9787
|
+
* @type {string}
|
|
9788
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9789
|
+
*/
|
|
9790
|
+
'companyId': string;
|
|
9791
|
+
/**
|
|
9792
|
+
*
|
|
9793
|
+
* @type {string}
|
|
9794
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9795
|
+
*/
|
|
9796
|
+
'keyword': string;
|
|
9797
|
+
/**
|
|
9798
|
+
*
|
|
9799
|
+
* @type {number}
|
|
9800
|
+
* @memberof ISeoRankTrackPostRequest
|
|
9801
|
+
*/
|
|
9802
|
+
'intervalSeconds': number;
|
|
9803
|
+
}
|
|
9804
|
+
/**
|
|
9805
|
+
*
|
|
9806
|
+
* @export
|
|
9807
|
+
* @interface IServiceAccountPostRequest
|
|
9808
|
+
*/
|
|
9809
|
+
export interface IServiceAccountPostRequest {
|
|
9810
|
+
/**
|
|
9811
|
+
*
|
|
9812
|
+
* @type {string}
|
|
9813
|
+
* @memberof IServiceAccountPostRequest
|
|
9814
|
+
*/
|
|
9815
|
+
'clientEmail': string;
|
|
9816
|
+
/**
|
|
9817
|
+
*
|
|
9818
|
+
* @type {string}
|
|
9819
|
+
* @memberof IServiceAccountPostRequest
|
|
9820
|
+
*/
|
|
9821
|
+
'privateKey': string;
|
|
9822
|
+
/**
|
|
9823
|
+
*
|
|
9824
|
+
* @type {string}
|
|
9825
|
+
* @memberof IServiceAccountPostRequest
|
|
9826
|
+
*/
|
|
9827
|
+
'projectId': string;
|
|
9828
|
+
/**
|
|
9829
|
+
*
|
|
9830
|
+
* @type {string}
|
|
9831
|
+
* @memberof IServiceAccountPostRequest
|
|
9832
|
+
*/
|
|
9833
|
+
'status'?: IServiceAccountPostRequestStatusEnum;
|
|
9834
|
+
/**
|
|
9835
|
+
*
|
|
9836
|
+
* @type {number}
|
|
9837
|
+
* @memberof IServiceAccountPostRequest
|
|
9838
|
+
*/
|
|
9839
|
+
'maxCapacity'?: number;
|
|
9840
|
+
/**
|
|
9841
|
+
*
|
|
9842
|
+
* @type {Array<string>}
|
|
9843
|
+
* @memberof IServiceAccountPostRequest
|
|
9844
|
+
*/
|
|
9845
|
+
'labels'?: Array<string>;
|
|
9846
|
+
}
|
|
9847
|
+
export declare const IServiceAccountPostRequestStatusEnum: {
|
|
9848
|
+
readonly ACTIVE: "ACTIVE";
|
|
9849
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
9850
|
+
readonly RATE_LIMITED: "RATE_LIMITED";
|
|
9851
|
+
};
|
|
9852
|
+
export type IServiceAccountPostRequestStatusEnum = typeof IServiceAccountPostRequestStatusEnum[keyof typeof IServiceAccountPostRequestStatusEnum];
|
|
9466
9853
|
/**
|
|
9467
9854
|
*
|
|
9468
9855
|
* @export
|
|
@@ -10294,6 +10681,12 @@ export interface IThemeResponse {
|
|
|
10294
10681
|
'config': {
|
|
10295
10682
|
[key: string]: any;
|
|
10296
10683
|
};
|
|
10684
|
+
/**
|
|
10685
|
+
*
|
|
10686
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10687
|
+
* @memberof IThemeResponse
|
|
10688
|
+
*/
|
|
10689
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10297
10690
|
/**
|
|
10298
10691
|
*
|
|
10299
10692
|
* @type {Array<string>}
|
|
@@ -10318,12 +10711,6 @@ export interface IThemeResponse {
|
|
|
10318
10711
|
* @memberof IThemeResponse
|
|
10319
10712
|
*/
|
|
10320
10713
|
'lastVersion': string;
|
|
10321
|
-
/**
|
|
10322
|
-
*
|
|
10323
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10324
|
-
* @memberof IThemeResponse
|
|
10325
|
-
*/
|
|
10326
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10327
10714
|
/**
|
|
10328
10715
|
*
|
|
10329
10716
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -10554,6 +10941,12 @@ export interface IThemesResponseData {
|
|
|
10554
10941
|
'config': {
|
|
10555
10942
|
[key: string]: any;
|
|
10556
10943
|
};
|
|
10944
|
+
/**
|
|
10945
|
+
*
|
|
10946
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10947
|
+
* @memberof IThemesResponseData
|
|
10948
|
+
*/
|
|
10949
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10557
10950
|
/**
|
|
10558
10951
|
* Make all properties in T optional
|
|
10559
10952
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -10580,12 +10973,6 @@ export interface IThemesResponseData {
|
|
|
10580
10973
|
* @memberof IThemesResponseData
|
|
10581
10974
|
*/
|
|
10582
10975
|
'creator'?: string;
|
|
10583
|
-
/**
|
|
10584
|
-
*
|
|
10585
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10586
|
-
* @memberof IThemesResponseData
|
|
10587
|
-
*/
|
|
10588
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10589
10976
|
/**
|
|
10590
10977
|
*
|
|
10591
10978
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -10719,6 +11106,12 @@ export interface IThemesResponseDataMain {
|
|
|
10719
11106
|
'config': {
|
|
10720
11107
|
[key: string]: any;
|
|
10721
11108
|
};
|
|
11109
|
+
/**
|
|
11110
|
+
*
|
|
11111
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
11112
|
+
* @memberof IThemesResponseDataMain
|
|
11113
|
+
*/
|
|
11114
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10722
11115
|
/**
|
|
10723
11116
|
* Make all properties in T optional
|
|
10724
11117
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
@@ -10745,12 +11138,6 @@ export interface IThemesResponseDataMain {
|
|
|
10745
11138
|
* @memberof IThemesResponseDataMain
|
|
10746
11139
|
*/
|
|
10747
11140
|
'creator'?: string;
|
|
10748
|
-
/**
|
|
10749
|
-
*
|
|
10750
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
10751
|
-
* @memberof IThemesResponseDataMain
|
|
10752
|
-
*/
|
|
10753
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
10754
11141
|
/**
|
|
10755
11142
|
*
|
|
10756
11143
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -12595,6 +12982,60 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12595
12982
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12596
12983
|
*/
|
|
12597
12984
|
'passwordActive'?: boolean;
|
|
12985
|
+
/**
|
|
12986
|
+
* Storefront cache aktif mi?
|
|
12987
|
+
* @type {boolean}
|
|
12988
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12989
|
+
*/
|
|
12990
|
+
'cacheActive'?: boolean;
|
|
12991
|
+
/**
|
|
12992
|
+
*
|
|
12993
|
+
* @type {string}
|
|
12994
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12995
|
+
*/
|
|
12996
|
+
'serviceAccountId'?: string;
|
|
12997
|
+
/**
|
|
12998
|
+
*
|
|
12999
|
+
* @type {string}
|
|
13000
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13001
|
+
*/
|
|
13002
|
+
'scDomain'?: string;
|
|
13003
|
+
/**
|
|
13004
|
+
*
|
|
13005
|
+
* @type {string}
|
|
13006
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13007
|
+
*/
|
|
13008
|
+
'gscVerificationToken'?: string;
|
|
13009
|
+
/**
|
|
13010
|
+
*
|
|
13011
|
+
* @type {string}
|
|
13012
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13013
|
+
*/
|
|
13014
|
+
'gscVerificationStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum;
|
|
13015
|
+
/**
|
|
13016
|
+
*
|
|
13017
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
13018
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13019
|
+
*/
|
|
13020
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
13021
|
+
/**
|
|
13022
|
+
*
|
|
13023
|
+
* @type {string}
|
|
13024
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13025
|
+
*/
|
|
13026
|
+
'rentalStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum;
|
|
13027
|
+
/**
|
|
13028
|
+
*
|
|
13029
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
13030
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13031
|
+
*/
|
|
13032
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
13033
|
+
/**
|
|
13034
|
+
*
|
|
13035
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
13036
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13037
|
+
*/
|
|
13038
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
12598
13039
|
/**
|
|
12599
13040
|
*
|
|
12600
13041
|
* @type {string}
|
|
@@ -12613,7 +13054,56 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12613
13054
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12614
13055
|
*/
|
|
12615
13056
|
'storageUsageBytes': number;
|
|
13057
|
+
/**
|
|
13058
|
+
*
|
|
13059
|
+
* @type {Array<string>}
|
|
13060
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
13061
|
+
*/
|
|
13062
|
+
'seoCompetitors'?: Array<string>;
|
|
13063
|
+
}
|
|
13064
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum: {
|
|
13065
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
13066
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
13067
|
+
readonly VERIFIED: "VERIFIED";
|
|
13068
|
+
readonly FAILED: "FAILED";
|
|
13069
|
+
};
|
|
13070
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum];
|
|
13071
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum: {
|
|
13072
|
+
readonly VACANT: "VACANT";
|
|
13073
|
+
readonly RENTED: "RENTED";
|
|
13074
|
+
};
|
|
13075
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum];
|
|
13076
|
+
/**
|
|
13077
|
+
*
|
|
13078
|
+
* @export
|
|
13079
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13080
|
+
*/
|
|
13081
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare {
|
|
13082
|
+
/**
|
|
13083
|
+
*
|
|
13084
|
+
* @type {string}
|
|
13085
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13086
|
+
*/
|
|
13087
|
+
'gscTxtRecordId'?: string;
|
|
13088
|
+
/**
|
|
13089
|
+
*
|
|
13090
|
+
* @type {string}
|
|
13091
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13092
|
+
*/
|
|
13093
|
+
'status'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum;
|
|
13094
|
+
/**
|
|
13095
|
+
*
|
|
13096
|
+
* @type {string}
|
|
13097
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13098
|
+
*/
|
|
13099
|
+
'zoneId'?: string;
|
|
12616
13100
|
}
|
|
13101
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum: {
|
|
13102
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
13103
|
+
readonly ACTIVE: "ACTIVE";
|
|
13104
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
13105
|
+
};
|
|
13106
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum];
|
|
12617
13107
|
/**
|
|
12618
13108
|
*
|
|
12619
13109
|
* @export
|
|
@@ -12670,6 +13160,31 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPo
|
|
|
12670
13160
|
*/
|
|
12671
13161
|
'distanceSalesAgreement'?: PartialRecordLanguageEnumString;
|
|
12672
13162
|
}
|
|
13163
|
+
/**
|
|
13164
|
+
*
|
|
13165
|
+
* @export
|
|
13166
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13167
|
+
*/
|
|
13168
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails {
|
|
13169
|
+
/**
|
|
13170
|
+
*
|
|
13171
|
+
* @type {string}
|
|
13172
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13173
|
+
*/
|
|
13174
|
+
'tenantEsnafId'?: string;
|
|
13175
|
+
/**
|
|
13176
|
+
*
|
|
13177
|
+
* @type {string}
|
|
13178
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13179
|
+
*/
|
|
13180
|
+
'fallbackPhoneNumber'?: string;
|
|
13181
|
+
/**
|
|
13182
|
+
*
|
|
13183
|
+
* @type {string}
|
|
13184
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13185
|
+
*/
|
|
13186
|
+
'phoneNumber'?: string;
|
|
13187
|
+
}
|
|
12673
13188
|
/**
|
|
12674
13189
|
* From T, pick a set of properties whose keys are in the union K
|
|
12675
13190
|
* @export
|
|
@@ -14164,6 +14679,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
14164
14679
|
'config': {
|
|
14165
14680
|
[key: string]: any;
|
|
14166
14681
|
};
|
|
14682
|
+
/**
|
|
14683
|
+
*
|
|
14684
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14685
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14686
|
+
*/
|
|
14687
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14167
14688
|
/**
|
|
14168
14689
|
*
|
|
14169
14690
|
* @type {Array<string>}
|
|
@@ -14188,12 +14709,6 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
14188
14709
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14189
14710
|
*/
|
|
14190
14711
|
'lastVersion': string;
|
|
14191
|
-
/**
|
|
14192
|
-
*
|
|
14193
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14194
|
-
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
14195
|
-
*/
|
|
14196
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14197
14712
|
/**
|
|
14198
14713
|
*
|
|
14199
14714
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -14312,6 +14827,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
14312
14827
|
'config': {
|
|
14313
14828
|
[key: string]: any;
|
|
14314
14829
|
};
|
|
14830
|
+
/**
|
|
14831
|
+
*
|
|
14832
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14833
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14834
|
+
*/
|
|
14835
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14315
14836
|
/**
|
|
14316
14837
|
* Make all properties in T optional
|
|
14317
14838
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentArrayValue; }}
|
|
@@ -14338,12 +14859,6 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
14338
14859
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14339
14860
|
*/
|
|
14340
14861
|
'creator'?: string;
|
|
14341
|
-
/**
|
|
14342
|
-
*
|
|
14343
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14344
|
-
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
14345
|
-
*/
|
|
14346
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14347
14862
|
/**
|
|
14348
14863
|
*
|
|
14349
14864
|
* @type {Array<ThemeKeywordEnum>}
|
|
@@ -14425,6 +14940,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
14425
14940
|
'config': {
|
|
14426
14941
|
[key: string]: any;
|
|
14427
14942
|
};
|
|
14943
|
+
/**
|
|
14944
|
+
*
|
|
14945
|
+
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14946
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14947
|
+
*/
|
|
14948
|
+
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14428
14949
|
/**
|
|
14429
14950
|
* Make all properties in T optional
|
|
14430
14951
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -14451,12 +14972,6 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
14451
14972
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14452
14973
|
*/
|
|
14453
14974
|
'creator'?: string;
|
|
14454
|
-
/**
|
|
14455
|
-
*
|
|
14456
|
-
* @type {Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>}
|
|
14457
|
-
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
14458
|
-
*/
|
|
14459
|
-
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
14460
14975
|
/**
|
|
14461
14976
|
*
|
|
14462
14977
|
* @type {Array<ThemeKeywordEnum>}
|
package/dist/api/api.js
CHANGED
|
@@ -16,9 +16,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
16
16
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = void 0;
|
|
19
|
+
exports.LanguageEnum = exports.IUserCollectionQueryParamsDateFieldEnum = exports.IUrlRedirectCollectionQueryParamsSortEnum = exports.IUrlRedirectCollectionQueryParamsDateFieldEnum = exports.IUniqueCollectionQueryParamsDateFieldEnum = exports.ISubscriptionPostRequestPeriodEnum = exports.IServiceAccountPostRequestStatusEnum = exports.IProductCollectionQueryParamsSortEnum = exports.IProductCollectionQueryParamsDateFieldEnum = exports.IPlanCollectionQueryParamsCategoryEnum = exports.IPlanCollectionQueryParamsDateFieldEnum = exports.IPageCollectionQueryParamsDateFieldEnum = exports.IOrderCollectionQueryParamsDateFieldEnum = exports.IOperationCollectionQueryParamsDateFieldEnum = exports.INotificationCollectionQueryParamsDateFieldEnum = exports.INavigationCollectionQueryParamsDateFieldEnum = exports.IMyOrderCollectionQueryParamsDateFieldEnum = exports.IFileCollectionQueryParamsDateFieldEnum = exports.IContentPlanCollectionQueryParamsDateFieldEnum = exports.IContentPlanAttemptStepEnum = exports.IContactFormCollectionQueryParamsDateFieldEnum = exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = exports.ICompanyResponseRentalStatusEnum = exports.ICompanyResponseGscVerificationStatusEnum = exports.ICompanyPatchRequestRentalStatusEnum = exports.ICompanyPatchRequestGscVerificationStatusEnum = exports.ICompanyDashboardResponsePeriodEnum = exports.ICompanyCollectionQueryParamsDateFieldEnum = exports.ICompanyAdminResponseRentalStatusEnum = exports.ICompanyAdminResponseGscVerificationStatusEnum = exports.ICompanyRentalStatusEnum = exports.ICompanyGscVerificationStatusEnum = exports.ICollectionCollectionsQueryParamsDateFieldEnum = exports.ICategoryCollectionQueryParamsDateFieldEnum = exports.IBrandCollectionQueryParamsDateFieldEnum = exports.IAiChatCollectionQueryParamsDateFieldEnum = exports.FileTypeEnum = exports.FileKeywordEnum = exports.EmailConfigDnsRecordTypeEnum = exports.CurrencyRateTypeEnum = exports.CurrencyEnum = exports.CountryEnum = exports.ContentStatusEnum = exports.ContentPlanStatusEnum = exports.CompanyUserStatusEnum = exports.CompanyTypeEnum = exports.CompanyStatusEnum = exports.AiChatStatusEnum = exports.AiChatRoleEnum = exports.AiChatPurposeEnum = void 0;
|
|
20
|
+
exports.CompanyApiFactory = exports.CompanyApiFp = exports.CompanyApiAxiosParamCreator = exports.GetCollectionsDateFieldEnum = exports.CollectionApi = exports.CollectionApiFactory = exports.CollectionApiFp = exports.CollectionApiAxiosParamCreator = exports.BasketApi = exports.BasketApiFactory = exports.BasketApiFp = exports.BasketApiAxiosParamCreator = exports.AuthApi = exports.AuthApiFactory = exports.AuthApiFp = exports.AuthApiAxiosParamCreator = exports.AddressApi = exports.AddressApiFactory = exports.AddressApiFp = exports.AddressApiAxiosParamCreator = exports.UserStatusEnum = exports.UserRoleEnum = exports.TimezoneEnum = exports.ThemeKeywordEnum = exports.SubscriptionStatusEnum = exports.StoreLocationEnum = exports.SitemapTypeEnum = exports.ShippingPricingTypeEnum = exports.ReviewStatusEnum = exports.PlanTypeEnum = exports.PlanStatusEnum = exports.PlanAttributeKeyEnum = exports.PlanAttributeGroupEnum = exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum = exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFieldEnum = exports.PaymentMethodEnum = exports.PaymentGatewayEnum = exports.OrderStatusEnum = exports.OrderShippedStatusEnum = exports.OrderReturnStatusEnumWAITINGRETURN = exports.OrderReturnStatusEnumRETURNED = exports.OrderReturnStatusEnum = exports.OrderPaymentStatusEnum = exports.OrderEnum = exports.OperationStatusEnum = exports.NotificationStatusEnum = exports.NotificationMessageEnum = exports.NavigationUrlTargetEnum = void 0;
|
|
21
|
+
exports.UserApi = exports.UserApiFactory = exports.UserApiFp = exports.UserApiAxiosParamCreator = exports.UrlRedirectApi = exports.UrlRedirectApiFactory = exports.UrlRedirectApiFp = exports.UrlRedirectApiAxiosParamCreator = exports.UniquePageApi = exports.UniquePageApiFactory = exports.UniquePageApiFp = exports.UniquePageApiAxiosParamCreator = exports.TemplateApi = exports.TemplateApiFactory = exports.TemplateApiFp = exports.TemplateApiAxiosParamCreator = exports.SitemapApi = exports.SitemapApiFactory = exports.SitemapApiFp = exports.SitemapApiAxiosParamCreator = exports.GetProductsSortEnum = exports.GetProductsDateFieldEnum = exports.ProductApi = exports.ProductApiFactory = exports.ProductApiFp = exports.ProductApiAxiosParamCreator = exports.GetPagesDateFieldEnum = exports.PageApi = exports.PageApiFactory = exports.PageApiFp = exports.PageApiAxiosParamCreator = exports.GetOrdersDateFieldEnum = exports.GetMyOrdersDateFieldEnum = exports.OrderApi = exports.OrderApiFactory = exports.OrderApiFp = exports.OrderApiAxiosParamCreator = exports.ContactFormApi = exports.ContactFormApiFactory = exports.ContactFormApiFp = exports.ContactFormApiAxiosParamCreator = exports.CompanyApi = void 0;
|
|
22
22
|
const axios_1 = __importDefault(require("axios"));
|
|
23
23
|
// Some imports not used depending on template conditions
|
|
24
24
|
// @ts-ignore
|
|
@@ -435,6 +435,26 @@ exports.ICollectionCollectionsQueryParamsDateFieldEnum = {
|
|
|
435
435
|
CREATED_AT: 'createdAt',
|
|
436
436
|
UPDATED_AT: 'updatedAt'
|
|
437
437
|
};
|
|
438
|
+
exports.ICompanyGscVerificationStatusEnum = {
|
|
439
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
440
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
441
|
+
VERIFIED: 'VERIFIED',
|
|
442
|
+
FAILED: 'FAILED'
|
|
443
|
+
};
|
|
444
|
+
exports.ICompanyRentalStatusEnum = {
|
|
445
|
+
VACANT: 'VACANT',
|
|
446
|
+
RENTED: 'RENTED'
|
|
447
|
+
};
|
|
448
|
+
exports.ICompanyAdminResponseGscVerificationStatusEnum = {
|
|
449
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
450
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
451
|
+
VERIFIED: 'VERIFIED',
|
|
452
|
+
FAILED: 'FAILED'
|
|
453
|
+
};
|
|
454
|
+
exports.ICompanyAdminResponseRentalStatusEnum = {
|
|
455
|
+
VACANT: 'VACANT',
|
|
456
|
+
RENTED: 'RENTED'
|
|
457
|
+
};
|
|
438
458
|
exports.ICompanyCollectionQueryParamsDateFieldEnum = {
|
|
439
459
|
CREATED_AT: 'createdAt',
|
|
440
460
|
UPDATED_AT: 'updatedAt'
|
|
@@ -445,6 +465,26 @@ exports.ICompanyDashboardResponsePeriodEnum = {
|
|
|
445
465
|
WEEK: 'week',
|
|
446
466
|
HOUR: 'hour'
|
|
447
467
|
};
|
|
468
|
+
exports.ICompanyPatchRequestGscVerificationStatusEnum = {
|
|
469
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
470
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
471
|
+
VERIFIED: 'VERIFIED',
|
|
472
|
+
FAILED: 'FAILED'
|
|
473
|
+
};
|
|
474
|
+
exports.ICompanyPatchRequestRentalStatusEnum = {
|
|
475
|
+
VACANT: 'VACANT',
|
|
476
|
+
RENTED: 'RENTED'
|
|
477
|
+
};
|
|
478
|
+
exports.ICompanyResponseGscVerificationStatusEnum = {
|
|
479
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
480
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
481
|
+
VERIFIED: 'VERIFIED',
|
|
482
|
+
FAILED: 'FAILED'
|
|
483
|
+
};
|
|
484
|
+
exports.ICompanyResponseRentalStatusEnum = {
|
|
485
|
+
VACANT: 'VACANT',
|
|
486
|
+
RENTED: 'RENTED'
|
|
487
|
+
};
|
|
448
488
|
exports.ICompanyUsersCollectionQueryParamsDateFieldEnum = {
|
|
449
489
|
CREATED_AT: 'createdAt',
|
|
450
490
|
UPDATED_AT: 'updatedAt'
|
|
@@ -512,6 +552,11 @@ exports.IProductCollectionQueryParamsSortEnum = {
|
|
|
512
552
|
RATING: 'rating',
|
|
513
553
|
REVIEW_COUNT: 'reviewCount'
|
|
514
554
|
};
|
|
555
|
+
exports.IServiceAccountPostRequestStatusEnum = {
|
|
556
|
+
ACTIVE: 'ACTIVE',
|
|
557
|
+
SUSPENDED: 'SUSPENDED',
|
|
558
|
+
RATE_LIMITED: 'RATE_LIMITED'
|
|
559
|
+
};
|
|
515
560
|
exports.ISubscriptionPostRequestPeriodEnum = {
|
|
516
561
|
MONTHLY: 'monthly',
|
|
517
562
|
YEARLY: 'yearly'
|
|
@@ -666,6 +711,21 @@ exports.PickICollectionQueryParamsExcludeKeyofICollectionQueryParamsSortDateFiel
|
|
|
666
711
|
CREATED_AT: 'createdAt',
|
|
667
712
|
UPDATED_AT: 'updatedAt'
|
|
668
713
|
};
|
|
714
|
+
exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = {
|
|
715
|
+
UNVERIFIED: 'UNVERIFIED',
|
|
716
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
717
|
+
VERIFIED: 'VERIFIED',
|
|
718
|
+
FAILED: 'FAILED'
|
|
719
|
+
};
|
|
720
|
+
exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = {
|
|
721
|
+
VACANT: 'VACANT',
|
|
722
|
+
RENTED: 'RENTED'
|
|
723
|
+
};
|
|
724
|
+
exports.PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum = {
|
|
725
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
726
|
+
ACTIVE: 'ACTIVE',
|
|
727
|
+
ARCHIVED: 'ARCHIVED'
|
|
728
|
+
};
|
|
669
729
|
/**
|
|
670
730
|
*
|
|
671
731
|
* @export
|
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,21 @@ 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
|
+
};
|
|
713
|
+
export const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum = {
|
|
714
|
+
PENDING_DNS: 'PENDING_DNS',
|
|
715
|
+
ACTIVE: 'ACTIVE',
|
|
716
|
+
ARCHIVED: 'ARCHIVED'
|
|
717
|
+
};
|
|
658
718
|
/**
|
|
659
719
|
*
|
|
660
720
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.70",
|
|
4
4
|
"description": "api-client-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "acc89accd122cdda50fecabc1ef15b3287b0d328"
|
|
41
41
|
}
|