@infisale-client/api 1.3.68 → 1.3.69

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 CHANGED
@@ -2714,6 +2714,54 @@ export interface ICompany {
2714
2714
  * @memberof ICompany
2715
2715
  */
2716
2716
  'passwordActive'?: boolean;
2717
+ /**
2718
+ * Storefront cache aktif mi?
2719
+ * @type {boolean}
2720
+ * @memberof ICompany
2721
+ */
2722
+ 'cacheActive'?: boolean;
2723
+ /**
2724
+ *
2725
+ * @type {string}
2726
+ * @memberof ICompany
2727
+ */
2728
+ 'serviceAccountId'?: string;
2729
+ /**
2730
+ *
2731
+ * @type {string}
2732
+ * @memberof ICompany
2733
+ */
2734
+ 'scDomain'?: string;
2735
+ /**
2736
+ *
2737
+ * @type {string}
2738
+ * @memberof ICompany
2739
+ */
2740
+ 'gscVerificationToken'?: string;
2741
+ /**
2742
+ *
2743
+ * @type {string}
2744
+ * @memberof ICompany
2745
+ */
2746
+ 'gscVerificationStatus'?: ICompanyGscVerificationStatusEnum;
2747
+ /**
2748
+ *
2749
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
2750
+ * @memberof ICompany
2751
+ */
2752
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
2753
+ /**
2754
+ *
2755
+ * @type {string}
2756
+ * @memberof ICompany
2757
+ */
2758
+ 'rentalStatus'?: ICompanyRentalStatusEnum;
2759
+ /**
2760
+ *
2761
+ * @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
2762
+ * @memberof ICompany
2763
+ */
2764
+ 'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
2717
2765
  /**
2718
2766
  *
2719
2767
  * @type {CompanyStatusEnum}
@@ -2745,6 +2793,18 @@ export interface ICompany {
2745
2793
  */
2746
2794
  'storageUsageBytes': number;
2747
2795
  }
2796
+ export declare const ICompanyGscVerificationStatusEnum: {
2797
+ readonly UNVERIFIED: "UNVERIFIED";
2798
+ readonly PENDING_DNS: "PENDING_DNS";
2799
+ readonly VERIFIED: "VERIFIED";
2800
+ readonly FAILED: "FAILED";
2801
+ };
2802
+ export type ICompanyGscVerificationStatusEnum = typeof ICompanyGscVerificationStatusEnum[keyof typeof ICompanyGscVerificationStatusEnum];
2803
+ export declare const ICompanyRentalStatusEnum: {
2804
+ readonly VACANT: "VACANT";
2805
+ readonly RENTED: "RENTED";
2806
+ };
2807
+ export type ICompanyRentalStatusEnum = typeof ICompanyRentalStatusEnum[keyof typeof ICompanyRentalStatusEnum];
2748
2808
  /**
2749
2809
  *
2750
2810
  * @export
@@ -2975,6 +3035,54 @@ export interface ICompanyAdminResponse {
2975
3035
  * @memberof ICompanyAdminResponse
2976
3036
  */
2977
3037
  'passwordActive'?: boolean;
3038
+ /**
3039
+ * Storefront cache aktif mi?
3040
+ * @type {boolean}
3041
+ * @memberof ICompanyAdminResponse
3042
+ */
3043
+ 'cacheActive'?: boolean;
3044
+ /**
3045
+ *
3046
+ * @type {string}
3047
+ * @memberof ICompanyAdminResponse
3048
+ */
3049
+ 'serviceAccountId'?: string;
3050
+ /**
3051
+ *
3052
+ * @type {string}
3053
+ * @memberof ICompanyAdminResponse
3054
+ */
3055
+ 'scDomain'?: string;
3056
+ /**
3057
+ *
3058
+ * @type {string}
3059
+ * @memberof ICompanyAdminResponse
3060
+ */
3061
+ 'gscVerificationToken'?: string;
3062
+ /**
3063
+ *
3064
+ * @type {string}
3065
+ * @memberof ICompanyAdminResponse
3066
+ */
3067
+ 'gscVerificationStatus'?: ICompanyAdminResponseGscVerificationStatusEnum;
3068
+ /**
3069
+ *
3070
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
3071
+ * @memberof ICompanyAdminResponse
3072
+ */
3073
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
3074
+ /**
3075
+ *
3076
+ * @type {string}
3077
+ * @memberof ICompanyAdminResponse
3078
+ */
3079
+ 'rentalStatus'?: ICompanyAdminResponseRentalStatusEnum;
3080
+ /**
3081
+ *
3082
+ * @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
3083
+ * @memberof ICompanyAdminResponse
3084
+ */
3085
+ 'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
2978
3086
  /**
2979
3087
  *
2980
3088
  * @type {string}
@@ -3093,7 +3201,31 @@ export interface ICompanyAdminResponse {
3093
3201
  * @memberof ICompanyAdminResponse
3094
3202
  */
3095
3203
  '_plan'?: IPlanResponse;
3204
+ /**
3205
+ *
3206
+ * @type {string}
3207
+ * @memberof ICompanyAdminResponse
3208
+ */
3209
+ 'version'?: string;
3210
+ /**
3211
+ *
3212
+ * @type {string}
3213
+ * @memberof ICompanyAdminResponse
3214
+ */
3215
+ 'contentHash'?: string;
3096
3216
  }
3217
+ export declare const ICompanyAdminResponseGscVerificationStatusEnum: {
3218
+ readonly UNVERIFIED: "UNVERIFIED";
3219
+ readonly PENDING_DNS: "PENDING_DNS";
3220
+ readonly VERIFIED: "VERIFIED";
3221
+ readonly FAILED: "FAILED";
3222
+ };
3223
+ export type ICompanyAdminResponseGscVerificationStatusEnum = typeof ICompanyAdminResponseGscVerificationStatusEnum[keyof typeof ICompanyAdminResponseGscVerificationStatusEnum];
3224
+ export declare const ICompanyAdminResponseRentalStatusEnum: {
3225
+ readonly VACANT: "VACANT";
3226
+ readonly RENTED: "RENTED";
3227
+ };
3228
+ export type ICompanyAdminResponseRentalStatusEnum = typeof ICompanyAdminResponseRentalStatusEnum[keyof typeof ICompanyAdminResponseRentalStatusEnum];
3097
3229
  /**
3098
3230
  *
3099
3231
  * @export
@@ -3723,6 +3855,54 @@ export interface ICompanyPatchRequest {
3723
3855
  * @memberof ICompanyPatchRequest
3724
3856
  */
3725
3857
  'passwordActive'?: boolean;
3858
+ /**
3859
+ * Storefront cache aktif mi?
3860
+ * @type {boolean}
3861
+ * @memberof ICompanyPatchRequest
3862
+ */
3863
+ 'cacheActive'?: boolean;
3864
+ /**
3865
+ *
3866
+ * @type {string}
3867
+ * @memberof ICompanyPatchRequest
3868
+ */
3869
+ 'serviceAccountId'?: string;
3870
+ /**
3871
+ *
3872
+ * @type {string}
3873
+ * @memberof ICompanyPatchRequest
3874
+ */
3875
+ 'scDomain'?: string;
3876
+ /**
3877
+ *
3878
+ * @type {string}
3879
+ * @memberof ICompanyPatchRequest
3880
+ */
3881
+ 'gscVerificationToken'?: string;
3882
+ /**
3883
+ *
3884
+ * @type {string}
3885
+ * @memberof ICompanyPatchRequest
3886
+ */
3887
+ 'gscVerificationStatus'?: ICompanyPatchRequestGscVerificationStatusEnum;
3888
+ /**
3889
+ *
3890
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
3891
+ * @memberof ICompanyPatchRequest
3892
+ */
3893
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
3894
+ /**
3895
+ *
3896
+ * @type {string}
3897
+ * @memberof ICompanyPatchRequest
3898
+ */
3899
+ 'rentalStatus'?: ICompanyPatchRequestRentalStatusEnum;
3900
+ /**
3901
+ *
3902
+ * @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
3903
+ * @memberof ICompanyPatchRequest
3904
+ */
3905
+ 'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
3726
3906
  /**
3727
3907
  *
3728
3908
  * @type {string}
@@ -3736,6 +3916,18 @@ export interface ICompanyPatchRequest {
3736
3916
  */
3737
3917
  'allowGuestCheckout'?: boolean;
3738
3918
  }
3919
+ export declare const ICompanyPatchRequestGscVerificationStatusEnum: {
3920
+ readonly UNVERIFIED: "UNVERIFIED";
3921
+ readonly PENDING_DNS: "PENDING_DNS";
3922
+ readonly VERIFIED: "VERIFIED";
3923
+ readonly FAILED: "FAILED";
3924
+ };
3925
+ export type ICompanyPatchRequestGscVerificationStatusEnum = typeof ICompanyPatchRequestGscVerificationStatusEnum[keyof typeof ICompanyPatchRequestGscVerificationStatusEnum];
3926
+ export declare const ICompanyPatchRequestRentalStatusEnum: {
3927
+ readonly VACANT: "VACANT";
3928
+ readonly RENTED: "RENTED";
3929
+ };
3930
+ export type ICompanyPatchRequestRentalStatusEnum = typeof ICompanyPatchRequestRentalStatusEnum[keyof typeof ICompanyPatchRequestRentalStatusEnum];
3739
3931
  /**
3740
3932
  *
3741
3933
  * @export
@@ -4114,6 +4306,54 @@ export interface ICompanyResponse {
4114
4306
  * @memberof ICompanyResponse
4115
4307
  */
4116
4308
  'passwordActive'?: boolean;
4309
+ /**
4310
+ * Storefront cache aktif mi?
4311
+ * @type {boolean}
4312
+ * @memberof ICompanyResponse
4313
+ */
4314
+ 'cacheActive'?: boolean;
4315
+ /**
4316
+ *
4317
+ * @type {string}
4318
+ * @memberof ICompanyResponse
4319
+ */
4320
+ 'serviceAccountId'?: string;
4321
+ /**
4322
+ *
4323
+ * @type {string}
4324
+ * @memberof ICompanyResponse
4325
+ */
4326
+ 'scDomain'?: string;
4327
+ /**
4328
+ *
4329
+ * @type {string}
4330
+ * @memberof ICompanyResponse
4331
+ */
4332
+ 'gscVerificationToken'?: string;
4333
+ /**
4334
+ *
4335
+ * @type {string}
4336
+ * @memberof ICompanyResponse
4337
+ */
4338
+ 'gscVerificationStatus'?: ICompanyResponseGscVerificationStatusEnum;
4339
+ /**
4340
+ *
4341
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
4342
+ * @memberof ICompanyResponse
4343
+ */
4344
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
4345
+ /**
4346
+ *
4347
+ * @type {string}
4348
+ * @memberof ICompanyResponse
4349
+ */
4350
+ 'rentalStatus'?: ICompanyResponseRentalStatusEnum;
4351
+ /**
4352
+ *
4353
+ * @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
4354
+ * @memberof ICompanyResponse
4355
+ */
4356
+ 'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
4117
4357
  /**
4118
4358
  *
4119
4359
  * @type {string}
@@ -4206,7 +4446,25 @@ export interface ICompanyResponse {
4206
4446
  * @memberof ICompanyResponse
4207
4447
  */
4208
4448
  'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
4449
+ /**
4450
+ *
4451
+ * @type {string}
4452
+ * @memberof ICompanyResponse
4453
+ */
4454
+ 'version'?: string;
4209
4455
  }
4456
+ export declare const ICompanyResponseGscVerificationStatusEnum: {
4457
+ readonly UNVERIFIED: "UNVERIFIED";
4458
+ readonly PENDING_DNS: "PENDING_DNS";
4459
+ readonly VERIFIED: "VERIFIED";
4460
+ readonly FAILED: "FAILED";
4461
+ };
4462
+ export type ICompanyResponseGscVerificationStatusEnum = typeof ICompanyResponseGscVerificationStatusEnum[keyof typeof ICompanyResponseGscVerificationStatusEnum];
4463
+ export declare const ICompanyResponseRentalStatusEnum: {
4464
+ readonly VACANT: "VACANT";
4465
+ readonly RENTED: "RENTED";
4466
+ };
4467
+ export type ICompanyResponseRentalStatusEnum = typeof ICompanyResponseRentalStatusEnum[keyof typeof ICompanyResponseRentalStatusEnum];
4210
4468
  /**
4211
4469
  *
4212
4470
  * @export
@@ -9516,6 +9774,55 @@ export interface IReviewResponse {
9516
9774
  */
9517
9775
  'product'?: IProductResponse;
9518
9776
  }
9777
+ /**
9778
+ *
9779
+ * @export
9780
+ * @interface IServiceAccountPostRequest
9781
+ */
9782
+ export interface IServiceAccountPostRequest {
9783
+ /**
9784
+ *
9785
+ * @type {string}
9786
+ * @memberof IServiceAccountPostRequest
9787
+ */
9788
+ 'clientEmail': string;
9789
+ /**
9790
+ *
9791
+ * @type {string}
9792
+ * @memberof IServiceAccountPostRequest
9793
+ */
9794
+ 'privateKey': string;
9795
+ /**
9796
+ *
9797
+ * @type {string}
9798
+ * @memberof IServiceAccountPostRequest
9799
+ */
9800
+ 'projectId': string;
9801
+ /**
9802
+ *
9803
+ * @type {string}
9804
+ * @memberof IServiceAccountPostRequest
9805
+ */
9806
+ 'status'?: IServiceAccountPostRequestStatusEnum;
9807
+ /**
9808
+ *
9809
+ * @type {number}
9810
+ * @memberof IServiceAccountPostRequest
9811
+ */
9812
+ 'maxCapacity'?: number;
9813
+ /**
9814
+ *
9815
+ * @type {Array<string>}
9816
+ * @memberof IServiceAccountPostRequest
9817
+ */
9818
+ 'labels'?: Array<string>;
9819
+ }
9820
+ export declare const IServiceAccountPostRequestStatusEnum: {
9821
+ readonly ACTIVE: "ACTIVE";
9822
+ readonly SUSPENDED: "SUSPENDED";
9823
+ readonly RATE_LIMITED: "RATE_LIMITED";
9824
+ };
9825
+ export type IServiceAccountPostRequestStatusEnum = typeof IServiceAccountPostRequestStatusEnum[keyof typeof IServiceAccountPostRequestStatusEnum];
9519
9826
  /**
9520
9827
  *
9521
9828
  * @export
@@ -12648,6 +12955,54 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12648
12955
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12649
12956
  */
12650
12957
  'passwordActive'?: boolean;
12958
+ /**
12959
+ * Storefront cache aktif mi?
12960
+ * @type {boolean}
12961
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12962
+ */
12963
+ 'cacheActive'?: boolean;
12964
+ /**
12965
+ *
12966
+ * @type {string}
12967
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12968
+ */
12969
+ 'serviceAccountId'?: string;
12970
+ /**
12971
+ *
12972
+ * @type {string}
12973
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12974
+ */
12975
+ 'scDomain'?: string;
12976
+ /**
12977
+ *
12978
+ * @type {string}
12979
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12980
+ */
12981
+ 'gscVerificationToken'?: string;
12982
+ /**
12983
+ *
12984
+ * @type {string}
12985
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12986
+ */
12987
+ 'gscVerificationStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum;
12988
+ /**
12989
+ *
12990
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
12991
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12992
+ */
12993
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
12994
+ /**
12995
+ *
12996
+ * @type {string}
12997
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
12998
+ */
12999
+ 'rentalStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum;
13000
+ /**
13001
+ *
13002
+ * @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
13003
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
13004
+ */
13005
+ 'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
12651
13006
  /**
12652
13007
  *
12653
13008
  * @type {string}
@@ -12667,6 +13022,18 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
12667
13022
  */
12668
13023
  'storageUsageBytes': number;
12669
13024
  }
13025
+ export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum: {
13026
+ readonly UNVERIFIED: "UNVERIFIED";
13027
+ readonly PENDING_DNS: "PENDING_DNS";
13028
+ readonly VERIFIED: "VERIFIED";
13029
+ readonly FAILED: "FAILED";
13030
+ };
13031
+ export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum];
13032
+ export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum: {
13033
+ readonly VACANT: "VACANT";
13034
+ readonly RENTED: "RENTED";
13035
+ };
13036
+ export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum];
12670
13037
  /**
12671
13038
  *
12672
13039
  * @export
@@ -12723,6 +13090,31 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPo
12723
13090
  */
12724
13091
  'distanceSalesAgreement'?: PartialRecordLanguageEnumString;
12725
13092
  }
13093
+ /**
13094
+ *
13095
+ * @export
13096
+ * @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
13097
+ */
13098
+ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails {
13099
+ /**
13100
+ *
13101
+ * @type {string}
13102
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
13103
+ */
13104
+ 'tenantEsnafId'?: string;
13105
+ /**
13106
+ *
13107
+ * @type {string}
13108
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
13109
+ */
13110
+ 'fallbackPhoneNumber'?: string;
13111
+ /**
13112
+ *
13113
+ * @type {string}
13114
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
13115
+ */
13116
+ 'phoneNumber'?: string;
13117
+ }
12726
13118
  /**
12727
13119
  * From T, pick a set of properties whose keys are in the union K
12728
13120
  * @export
@@ -15472,6 +15864,98 @@ export interface UpdateReviewStatusRequest {
15472
15864
  */
15473
15865
  'status': ReviewStatusEnum;
15474
15866
  }
15867
+ /**
15868
+ *
15869
+ * @export
15870
+ * @interface UpdateServiceAccountsCompanyRequest
15871
+ */
15872
+ export interface UpdateServiceAccountsCompanyRequest {
15873
+ /**
15874
+ *
15875
+ * @type {UpdateServiceAccountsCompanyRequestCloudflare}
15876
+ * @memberof UpdateServiceAccountsCompanyRequest
15877
+ */
15878
+ 'cloudflare'?: UpdateServiceAccountsCompanyRequestCloudflare;
15879
+ /**
15880
+ *
15881
+ * @type {UpdateServiceAccountsCompanyRequestRentalDetails}
15882
+ * @memberof UpdateServiceAccountsCompanyRequest
15883
+ */
15884
+ 'rentalDetails'?: UpdateServiceAccountsCompanyRequestRentalDetails;
15885
+ /**
15886
+ *
15887
+ * @type {string}
15888
+ * @memberof UpdateServiceAccountsCompanyRequest
15889
+ */
15890
+ 'rentalStatus'?: UpdateServiceAccountsCompanyRequestRentalStatusEnum;
15891
+ /**
15892
+ *
15893
+ * @type {string}
15894
+ * @memberof UpdateServiceAccountsCompanyRequest
15895
+ */
15896
+ 'scDomain'?: string;
15897
+ }
15898
+ export declare const UpdateServiceAccountsCompanyRequestRentalStatusEnum: {
15899
+ readonly VACANT: "VACANT";
15900
+ readonly RENTED: "RENTED";
15901
+ };
15902
+ export type UpdateServiceAccountsCompanyRequestRentalStatusEnum = typeof UpdateServiceAccountsCompanyRequestRentalStatusEnum[keyof typeof UpdateServiceAccountsCompanyRequestRentalStatusEnum];
15903
+ /**
15904
+ *
15905
+ * @export
15906
+ * @interface UpdateServiceAccountsCompanyRequestCloudflare
15907
+ */
15908
+ export interface UpdateServiceAccountsCompanyRequestCloudflare {
15909
+ /**
15910
+ *
15911
+ * @type {string}
15912
+ * @memberof UpdateServiceAccountsCompanyRequestCloudflare
15913
+ */
15914
+ 'gscTxtRecordId'?: string;
15915
+ /**
15916
+ *
15917
+ * @type {string}
15918
+ * @memberof UpdateServiceAccountsCompanyRequestCloudflare
15919
+ */
15920
+ 'status'?: UpdateServiceAccountsCompanyRequestCloudflareStatusEnum;
15921
+ /**
15922
+ *
15923
+ * @type {string}
15924
+ * @memberof UpdateServiceAccountsCompanyRequestCloudflare
15925
+ */
15926
+ 'zoneId'?: string;
15927
+ }
15928
+ export declare const UpdateServiceAccountsCompanyRequestCloudflareStatusEnum: {
15929
+ readonly PENDING_DNS: "PENDING_DNS";
15930
+ readonly ACTIVE: "ACTIVE";
15931
+ readonly ARCHIVED: "ARCHIVED";
15932
+ };
15933
+ export type UpdateServiceAccountsCompanyRequestCloudflareStatusEnum = typeof UpdateServiceAccountsCompanyRequestCloudflareStatusEnum[keyof typeof UpdateServiceAccountsCompanyRequestCloudflareStatusEnum];
15934
+ /**
15935
+ *
15936
+ * @export
15937
+ * @interface UpdateServiceAccountsCompanyRequestRentalDetails
15938
+ */
15939
+ export interface UpdateServiceAccountsCompanyRequestRentalDetails {
15940
+ /**
15941
+ *
15942
+ * @type {string}
15943
+ * @memberof UpdateServiceAccountsCompanyRequestRentalDetails
15944
+ */
15945
+ 'tenantEsnafId'?: string;
15946
+ /**
15947
+ *
15948
+ * @type {string}
15949
+ * @memberof UpdateServiceAccountsCompanyRequestRentalDetails
15950
+ */
15951
+ 'fallbackPhoneNumber'?: string;
15952
+ /**
15953
+ *
15954
+ * @type {string}
15955
+ * @memberof UpdateServiceAccountsCompanyRequestRentalDetails
15956
+ */
15957
+ 'phoneNumber'?: string;
15958
+ }
15475
15959
  /**
15476
15960
  *
15477
15961
  * @export
@@ -25048,6 +25532,191 @@ export declare const GetProductsSortEnum: {
25048
25532
  readonly REVIEW_COUNT: "reviewCount";
25049
25533
  };
25050
25534
  export type GetProductsSortEnum = typeof GetProductsSortEnum[keyof typeof GetProductsSortEnum];
25535
+ /**
25536
+ * ServiceAccountsApi - axios parameter creator
25537
+ * @export
25538
+ */
25539
+ export declare const ServiceAccountsApiAxiosParamCreator: (configuration?: Configuration) => {
25540
+ /**
25541
+ *
25542
+ * @param {IServiceAccountPostRequest} iServiceAccountPostRequest
25543
+ * @param {*} [options] Override http request option.
25544
+ * @throws {RequiredError}
25545
+ */
25546
+ createServiceAccount: (iServiceAccountPostRequest: IServiceAccountPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25547
+ /**
25548
+ *
25549
+ * @param {*} [options] Override http request option.
25550
+ * @throws {RequiredError}
25551
+ */
25552
+ listServiceAccounts: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25553
+ /**
25554
+ *
25555
+ * @param {string} id
25556
+ * @param {*} [options] Override http request option.
25557
+ * @throws {RequiredError}
25558
+ */
25559
+ provisionCompanyProperty: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25560
+ /**
25561
+ *
25562
+ * @param {string} id
25563
+ * @param {UpdateServiceAccountsCompanyRequest} updateServiceAccountsCompanyRequest
25564
+ * @param {*} [options] Override http request option.
25565
+ * @throws {RequiredError}
25566
+ */
25567
+ updateServiceAccountsCompany: (id: string, updateServiceAccountsCompanyRequest: UpdateServiceAccountsCompanyRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25568
+ };
25569
+ /**
25570
+ * ServiceAccountsApi - functional programming interface
25571
+ * @export
25572
+ */
25573
+ export declare const ServiceAccountsApiFp: (configuration?: Configuration) => {
25574
+ /**
25575
+ *
25576
+ * @param {IServiceAccountPostRequest} iServiceAccountPostRequest
25577
+ * @param {*} [options] Override http request option.
25578
+ * @throws {RequiredError}
25579
+ */
25580
+ createServiceAccount(iServiceAccountPostRequest: IServiceAccountPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
25581
+ /**
25582
+ *
25583
+ * @param {*} [options] Override http request option.
25584
+ * @throws {RequiredError}
25585
+ */
25586
+ listServiceAccounts(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
25587
+ /**
25588
+ *
25589
+ * @param {string} id
25590
+ * @param {*} [options] Override http request option.
25591
+ * @throws {RequiredError}
25592
+ */
25593
+ provisionCompanyProperty(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
25594
+ /**
25595
+ *
25596
+ * @param {string} id
25597
+ * @param {UpdateServiceAccountsCompanyRequest} updateServiceAccountsCompanyRequest
25598
+ * @param {*} [options] Override http request option.
25599
+ * @throws {RequiredError}
25600
+ */
25601
+ updateServiceAccountsCompany(id: string, updateServiceAccountsCompanyRequest: UpdateServiceAccountsCompanyRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
25602
+ };
25603
+ /**
25604
+ * ServiceAccountsApi - factory interface
25605
+ * @export
25606
+ */
25607
+ export declare const ServiceAccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25608
+ /**
25609
+ *
25610
+ * @param {ServiceAccountsApiCreateServiceAccountRequest} requestParameters Request parameters.
25611
+ * @param {*} [options] Override http request option.
25612
+ * @throws {RequiredError}
25613
+ */
25614
+ createServiceAccount(requestParameters: ServiceAccountsApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
25615
+ /**
25616
+ *
25617
+ * @param {*} [options] Override http request option.
25618
+ * @throws {RequiredError}
25619
+ */
25620
+ listServiceAccounts(options?: RawAxiosRequestConfig): AxiosPromise<any>;
25621
+ /**
25622
+ *
25623
+ * @param {ServiceAccountsApiProvisionCompanyPropertyRequest} requestParameters Request parameters.
25624
+ * @param {*} [options] Override http request option.
25625
+ * @throws {RequiredError}
25626
+ */
25627
+ provisionCompanyProperty(requestParameters: ServiceAccountsApiProvisionCompanyPropertyRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
25628
+ /**
25629
+ *
25630
+ * @param {ServiceAccountsApiUpdateServiceAccountsCompanyRequest} requestParameters Request parameters.
25631
+ * @param {*} [options] Override http request option.
25632
+ * @throws {RequiredError}
25633
+ */
25634
+ updateServiceAccountsCompany(requestParameters: ServiceAccountsApiUpdateServiceAccountsCompanyRequest, options?: RawAxiosRequestConfig): AxiosPromise<any>;
25635
+ };
25636
+ /**
25637
+ * Request parameters for createServiceAccount operation in ServiceAccountsApi.
25638
+ * @export
25639
+ * @interface ServiceAccountsApiCreateServiceAccountRequest
25640
+ */
25641
+ export interface ServiceAccountsApiCreateServiceAccountRequest {
25642
+ /**
25643
+ *
25644
+ * @type {IServiceAccountPostRequest}
25645
+ * @memberof ServiceAccountsApiCreateServiceAccount
25646
+ */
25647
+ readonly iServiceAccountPostRequest: IServiceAccountPostRequest;
25648
+ }
25649
+ /**
25650
+ * Request parameters for provisionCompanyProperty operation in ServiceAccountsApi.
25651
+ * @export
25652
+ * @interface ServiceAccountsApiProvisionCompanyPropertyRequest
25653
+ */
25654
+ export interface ServiceAccountsApiProvisionCompanyPropertyRequest {
25655
+ /**
25656
+ *
25657
+ * @type {string}
25658
+ * @memberof ServiceAccountsApiProvisionCompanyProperty
25659
+ */
25660
+ readonly id: string;
25661
+ }
25662
+ /**
25663
+ * Request parameters for updateServiceAccountsCompany operation in ServiceAccountsApi.
25664
+ * @export
25665
+ * @interface ServiceAccountsApiUpdateServiceAccountsCompanyRequest
25666
+ */
25667
+ export interface ServiceAccountsApiUpdateServiceAccountsCompanyRequest {
25668
+ /**
25669
+ *
25670
+ * @type {string}
25671
+ * @memberof ServiceAccountsApiUpdateServiceAccountsCompany
25672
+ */
25673
+ readonly id: string;
25674
+ /**
25675
+ *
25676
+ * @type {UpdateServiceAccountsCompanyRequest}
25677
+ * @memberof ServiceAccountsApiUpdateServiceAccountsCompany
25678
+ */
25679
+ readonly updateServiceAccountsCompanyRequest: UpdateServiceAccountsCompanyRequest;
25680
+ }
25681
+ /**
25682
+ * ServiceAccountsApi - object-oriented interface
25683
+ * @export
25684
+ * @class ServiceAccountsApi
25685
+ * @extends {BaseAPI}
25686
+ */
25687
+ export declare class ServiceAccountsApi extends BaseAPI {
25688
+ /**
25689
+ *
25690
+ * @param {ServiceAccountsApiCreateServiceAccountRequest} requestParameters Request parameters.
25691
+ * @param {*} [options] Override http request option.
25692
+ * @throws {RequiredError}
25693
+ * @memberof ServiceAccountsApi
25694
+ */
25695
+ createServiceAccount(requestParameters: ServiceAccountsApiCreateServiceAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
25696
+ /**
25697
+ *
25698
+ * @param {*} [options] Override http request option.
25699
+ * @throws {RequiredError}
25700
+ * @memberof ServiceAccountsApi
25701
+ */
25702
+ listServiceAccounts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
25703
+ /**
25704
+ *
25705
+ * @param {ServiceAccountsApiProvisionCompanyPropertyRequest} requestParameters Request parameters.
25706
+ * @param {*} [options] Override http request option.
25707
+ * @throws {RequiredError}
25708
+ * @memberof ServiceAccountsApi
25709
+ */
25710
+ provisionCompanyProperty(requestParameters: ServiceAccountsApiProvisionCompanyPropertyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
25711
+ /**
25712
+ *
25713
+ * @param {ServiceAccountsApiUpdateServiceAccountsCompanyRequest} requestParameters Request parameters.
25714
+ * @param {*} [options] Override http request option.
25715
+ * @throws {RequiredError}
25716
+ * @memberof ServiceAccountsApi
25717
+ */
25718
+ updateServiceAccountsCompany(requestParameters: ServiceAccountsApiUpdateServiceAccountsCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
25719
+ }
25051
25720
  /**
25052
25721
  * SitemapApi - axios parameter creator
25053
25722
  * @export