@infisale-client/api-client 1.3.67 → 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 +423 -0
- 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,54 @@ 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;
|
|
2664
2712
|
/**
|
|
2665
2713
|
*
|
|
2666
2714
|
* @type {CompanyStatusEnum}
|
|
@@ -2692,6 +2740,18 @@ export interface ICompany {
|
|
|
2692
2740
|
*/
|
|
2693
2741
|
'storageUsageBytes': number;
|
|
2694
2742
|
}
|
|
2743
|
+
export declare const ICompanyGscVerificationStatusEnum: {
|
|
2744
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
2745
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
2746
|
+
readonly VERIFIED: "VERIFIED";
|
|
2747
|
+
readonly FAILED: "FAILED";
|
|
2748
|
+
};
|
|
2749
|
+
export type ICompanyGscVerificationStatusEnum = typeof ICompanyGscVerificationStatusEnum[keyof typeof ICompanyGscVerificationStatusEnum];
|
|
2750
|
+
export declare const ICompanyRentalStatusEnum: {
|
|
2751
|
+
readonly VACANT: "VACANT";
|
|
2752
|
+
readonly RENTED: "RENTED";
|
|
2753
|
+
};
|
|
2754
|
+
export type ICompanyRentalStatusEnum = typeof ICompanyRentalStatusEnum[keyof typeof ICompanyRentalStatusEnum];
|
|
2695
2755
|
/**
|
|
2696
2756
|
*
|
|
2697
2757
|
* @export
|
|
@@ -2922,6 +2982,54 @@ export interface ICompanyAdminResponse {
|
|
|
2922
2982
|
* @memberof ICompanyAdminResponse
|
|
2923
2983
|
*/
|
|
2924
2984
|
'passwordActive'?: boolean;
|
|
2985
|
+
/**
|
|
2986
|
+
* Storefront cache aktif mi?
|
|
2987
|
+
* @type {boolean}
|
|
2988
|
+
* @memberof ICompanyAdminResponse
|
|
2989
|
+
*/
|
|
2990
|
+
'cacheActive'?: boolean;
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @type {string}
|
|
2994
|
+
* @memberof ICompanyAdminResponse
|
|
2995
|
+
*/
|
|
2996
|
+
'serviceAccountId'?: string;
|
|
2997
|
+
/**
|
|
2998
|
+
*
|
|
2999
|
+
* @type {string}
|
|
3000
|
+
* @memberof ICompanyAdminResponse
|
|
3001
|
+
*/
|
|
3002
|
+
'scDomain'?: string;
|
|
3003
|
+
/**
|
|
3004
|
+
*
|
|
3005
|
+
* @type {string}
|
|
3006
|
+
* @memberof ICompanyAdminResponse
|
|
3007
|
+
*/
|
|
3008
|
+
'gscVerificationToken'?: string;
|
|
3009
|
+
/**
|
|
3010
|
+
*
|
|
3011
|
+
* @type {string}
|
|
3012
|
+
* @memberof ICompanyAdminResponse
|
|
3013
|
+
*/
|
|
3014
|
+
'gscVerificationStatus'?: ICompanyAdminResponseGscVerificationStatusEnum;
|
|
3015
|
+
/**
|
|
3016
|
+
*
|
|
3017
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
3018
|
+
* @memberof ICompanyAdminResponse
|
|
3019
|
+
*/
|
|
3020
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
3021
|
+
/**
|
|
3022
|
+
*
|
|
3023
|
+
* @type {string}
|
|
3024
|
+
* @memberof ICompanyAdminResponse
|
|
3025
|
+
*/
|
|
3026
|
+
'rentalStatus'?: ICompanyAdminResponseRentalStatusEnum;
|
|
3027
|
+
/**
|
|
3028
|
+
*
|
|
3029
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
3030
|
+
* @memberof ICompanyAdminResponse
|
|
3031
|
+
*/
|
|
3032
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
2925
3033
|
/**
|
|
2926
3034
|
*
|
|
2927
3035
|
* @type {string}
|
|
@@ -3040,7 +3148,31 @@ export interface ICompanyAdminResponse {
|
|
|
3040
3148
|
* @memberof ICompanyAdminResponse
|
|
3041
3149
|
*/
|
|
3042
3150
|
'_plan'?: IPlanResponse;
|
|
3151
|
+
/**
|
|
3152
|
+
*
|
|
3153
|
+
* @type {string}
|
|
3154
|
+
* @memberof ICompanyAdminResponse
|
|
3155
|
+
*/
|
|
3156
|
+
'version'?: string;
|
|
3157
|
+
/**
|
|
3158
|
+
*
|
|
3159
|
+
* @type {string}
|
|
3160
|
+
* @memberof ICompanyAdminResponse
|
|
3161
|
+
*/
|
|
3162
|
+
'contentHash'?: string;
|
|
3043
3163
|
}
|
|
3164
|
+
export declare const ICompanyAdminResponseGscVerificationStatusEnum: {
|
|
3165
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
3166
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
3167
|
+
readonly VERIFIED: "VERIFIED";
|
|
3168
|
+
readonly FAILED: "FAILED";
|
|
3169
|
+
};
|
|
3170
|
+
export type ICompanyAdminResponseGscVerificationStatusEnum = typeof ICompanyAdminResponseGscVerificationStatusEnum[keyof typeof ICompanyAdminResponseGscVerificationStatusEnum];
|
|
3171
|
+
export declare const ICompanyAdminResponseRentalStatusEnum: {
|
|
3172
|
+
readonly VACANT: "VACANT";
|
|
3173
|
+
readonly RENTED: "RENTED";
|
|
3174
|
+
};
|
|
3175
|
+
export type ICompanyAdminResponseRentalStatusEnum = typeof ICompanyAdminResponseRentalStatusEnum[keyof typeof ICompanyAdminResponseRentalStatusEnum];
|
|
3044
3176
|
/**
|
|
3045
3177
|
*
|
|
3046
3178
|
* @export
|
|
@@ -3670,6 +3802,54 @@ export interface ICompanyPatchRequest {
|
|
|
3670
3802
|
* @memberof ICompanyPatchRequest
|
|
3671
3803
|
*/
|
|
3672
3804
|
'passwordActive'?: boolean;
|
|
3805
|
+
/**
|
|
3806
|
+
* Storefront cache aktif mi?
|
|
3807
|
+
* @type {boolean}
|
|
3808
|
+
* @memberof ICompanyPatchRequest
|
|
3809
|
+
*/
|
|
3810
|
+
'cacheActive'?: boolean;
|
|
3811
|
+
/**
|
|
3812
|
+
*
|
|
3813
|
+
* @type {string}
|
|
3814
|
+
* @memberof ICompanyPatchRequest
|
|
3815
|
+
*/
|
|
3816
|
+
'serviceAccountId'?: string;
|
|
3817
|
+
/**
|
|
3818
|
+
*
|
|
3819
|
+
* @type {string}
|
|
3820
|
+
* @memberof ICompanyPatchRequest
|
|
3821
|
+
*/
|
|
3822
|
+
'scDomain'?: string;
|
|
3823
|
+
/**
|
|
3824
|
+
*
|
|
3825
|
+
* @type {string}
|
|
3826
|
+
* @memberof ICompanyPatchRequest
|
|
3827
|
+
*/
|
|
3828
|
+
'gscVerificationToken'?: string;
|
|
3829
|
+
/**
|
|
3830
|
+
*
|
|
3831
|
+
* @type {string}
|
|
3832
|
+
* @memberof ICompanyPatchRequest
|
|
3833
|
+
*/
|
|
3834
|
+
'gscVerificationStatus'?: ICompanyPatchRequestGscVerificationStatusEnum;
|
|
3835
|
+
/**
|
|
3836
|
+
*
|
|
3837
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
3838
|
+
* @memberof ICompanyPatchRequest
|
|
3839
|
+
*/
|
|
3840
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
3841
|
+
/**
|
|
3842
|
+
*
|
|
3843
|
+
* @type {string}
|
|
3844
|
+
* @memberof ICompanyPatchRequest
|
|
3845
|
+
*/
|
|
3846
|
+
'rentalStatus'?: ICompanyPatchRequestRentalStatusEnum;
|
|
3847
|
+
/**
|
|
3848
|
+
*
|
|
3849
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
3850
|
+
* @memberof ICompanyPatchRequest
|
|
3851
|
+
*/
|
|
3852
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
3673
3853
|
/**
|
|
3674
3854
|
*
|
|
3675
3855
|
* @type {string}
|
|
@@ -3683,6 +3863,18 @@ export interface ICompanyPatchRequest {
|
|
|
3683
3863
|
*/
|
|
3684
3864
|
'allowGuestCheckout'?: boolean;
|
|
3685
3865
|
}
|
|
3866
|
+
export declare const ICompanyPatchRequestGscVerificationStatusEnum: {
|
|
3867
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
3868
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
3869
|
+
readonly VERIFIED: "VERIFIED";
|
|
3870
|
+
readonly FAILED: "FAILED";
|
|
3871
|
+
};
|
|
3872
|
+
export type ICompanyPatchRequestGscVerificationStatusEnum = typeof ICompanyPatchRequestGscVerificationStatusEnum[keyof typeof ICompanyPatchRequestGscVerificationStatusEnum];
|
|
3873
|
+
export declare const ICompanyPatchRequestRentalStatusEnum: {
|
|
3874
|
+
readonly VACANT: "VACANT";
|
|
3875
|
+
readonly RENTED: "RENTED";
|
|
3876
|
+
};
|
|
3877
|
+
export type ICompanyPatchRequestRentalStatusEnum = typeof ICompanyPatchRequestRentalStatusEnum[keyof typeof ICompanyPatchRequestRentalStatusEnum];
|
|
3686
3878
|
/**
|
|
3687
3879
|
*
|
|
3688
3880
|
* @export
|
|
@@ -4061,6 +4253,54 @@ export interface ICompanyResponse {
|
|
|
4061
4253
|
* @memberof ICompanyResponse
|
|
4062
4254
|
*/
|
|
4063
4255
|
'passwordActive'?: boolean;
|
|
4256
|
+
/**
|
|
4257
|
+
* Storefront cache aktif mi?
|
|
4258
|
+
* @type {boolean}
|
|
4259
|
+
* @memberof ICompanyResponse
|
|
4260
|
+
*/
|
|
4261
|
+
'cacheActive'?: boolean;
|
|
4262
|
+
/**
|
|
4263
|
+
*
|
|
4264
|
+
* @type {string}
|
|
4265
|
+
* @memberof ICompanyResponse
|
|
4266
|
+
*/
|
|
4267
|
+
'serviceAccountId'?: string;
|
|
4268
|
+
/**
|
|
4269
|
+
*
|
|
4270
|
+
* @type {string}
|
|
4271
|
+
* @memberof ICompanyResponse
|
|
4272
|
+
*/
|
|
4273
|
+
'scDomain'?: string;
|
|
4274
|
+
/**
|
|
4275
|
+
*
|
|
4276
|
+
* @type {string}
|
|
4277
|
+
* @memberof ICompanyResponse
|
|
4278
|
+
*/
|
|
4279
|
+
'gscVerificationToken'?: string;
|
|
4280
|
+
/**
|
|
4281
|
+
*
|
|
4282
|
+
* @type {string}
|
|
4283
|
+
* @memberof ICompanyResponse
|
|
4284
|
+
*/
|
|
4285
|
+
'gscVerificationStatus'?: ICompanyResponseGscVerificationStatusEnum;
|
|
4286
|
+
/**
|
|
4287
|
+
*
|
|
4288
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
4289
|
+
* @memberof ICompanyResponse
|
|
4290
|
+
*/
|
|
4291
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
4292
|
+
/**
|
|
4293
|
+
*
|
|
4294
|
+
* @type {string}
|
|
4295
|
+
* @memberof ICompanyResponse
|
|
4296
|
+
*/
|
|
4297
|
+
'rentalStatus'?: ICompanyResponseRentalStatusEnum;
|
|
4298
|
+
/**
|
|
4299
|
+
*
|
|
4300
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
4301
|
+
* @memberof ICompanyResponse
|
|
4302
|
+
*/
|
|
4303
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
4064
4304
|
/**
|
|
4065
4305
|
*
|
|
4066
4306
|
* @type {string}
|
|
@@ -4153,7 +4393,25 @@ export interface ICompanyResponse {
|
|
|
4153
4393
|
* @memberof ICompanyResponse
|
|
4154
4394
|
*/
|
|
4155
4395
|
'cmsCollections': Array<PickIThemeExcludeKeyofIThemeGroupsCmsCollectionsInner>;
|
|
4396
|
+
/**
|
|
4397
|
+
*
|
|
4398
|
+
* @type {string}
|
|
4399
|
+
* @memberof ICompanyResponse
|
|
4400
|
+
*/
|
|
4401
|
+
'version'?: string;
|
|
4156
4402
|
}
|
|
4403
|
+
export declare const ICompanyResponseGscVerificationStatusEnum: {
|
|
4404
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
4405
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
4406
|
+
readonly VERIFIED: "VERIFIED";
|
|
4407
|
+
readonly FAILED: "FAILED";
|
|
4408
|
+
};
|
|
4409
|
+
export type ICompanyResponseGscVerificationStatusEnum = typeof ICompanyResponseGscVerificationStatusEnum[keyof typeof ICompanyResponseGscVerificationStatusEnum];
|
|
4410
|
+
export declare const ICompanyResponseRentalStatusEnum: {
|
|
4411
|
+
readonly VACANT: "VACANT";
|
|
4412
|
+
readonly RENTED: "RENTED";
|
|
4413
|
+
};
|
|
4414
|
+
export type ICompanyResponseRentalStatusEnum = typeof ICompanyResponseRentalStatusEnum[keyof typeof ICompanyResponseRentalStatusEnum];
|
|
4157
4415
|
/**
|
|
4158
4416
|
*
|
|
4159
4417
|
* @export
|
|
@@ -9463,6 +9721,55 @@ export interface IReviewResponse {
|
|
|
9463
9721
|
*/
|
|
9464
9722
|
'product'?: IProductResponse;
|
|
9465
9723
|
}
|
|
9724
|
+
/**
|
|
9725
|
+
*
|
|
9726
|
+
* @export
|
|
9727
|
+
* @interface IServiceAccountPostRequest
|
|
9728
|
+
*/
|
|
9729
|
+
export interface IServiceAccountPostRequest {
|
|
9730
|
+
/**
|
|
9731
|
+
*
|
|
9732
|
+
* @type {string}
|
|
9733
|
+
* @memberof IServiceAccountPostRequest
|
|
9734
|
+
*/
|
|
9735
|
+
'clientEmail': string;
|
|
9736
|
+
/**
|
|
9737
|
+
*
|
|
9738
|
+
* @type {string}
|
|
9739
|
+
* @memberof IServiceAccountPostRequest
|
|
9740
|
+
*/
|
|
9741
|
+
'privateKey': string;
|
|
9742
|
+
/**
|
|
9743
|
+
*
|
|
9744
|
+
* @type {string}
|
|
9745
|
+
* @memberof IServiceAccountPostRequest
|
|
9746
|
+
*/
|
|
9747
|
+
'projectId': string;
|
|
9748
|
+
/**
|
|
9749
|
+
*
|
|
9750
|
+
* @type {string}
|
|
9751
|
+
* @memberof IServiceAccountPostRequest
|
|
9752
|
+
*/
|
|
9753
|
+
'status'?: IServiceAccountPostRequestStatusEnum;
|
|
9754
|
+
/**
|
|
9755
|
+
*
|
|
9756
|
+
* @type {number}
|
|
9757
|
+
* @memberof IServiceAccountPostRequest
|
|
9758
|
+
*/
|
|
9759
|
+
'maxCapacity'?: number;
|
|
9760
|
+
/**
|
|
9761
|
+
*
|
|
9762
|
+
* @type {Array<string>}
|
|
9763
|
+
* @memberof IServiceAccountPostRequest
|
|
9764
|
+
*/
|
|
9765
|
+
'labels'?: Array<string>;
|
|
9766
|
+
}
|
|
9767
|
+
export declare const IServiceAccountPostRequestStatusEnum: {
|
|
9768
|
+
readonly ACTIVE: "ACTIVE";
|
|
9769
|
+
readonly SUSPENDED: "SUSPENDED";
|
|
9770
|
+
readonly RATE_LIMITED: "RATE_LIMITED";
|
|
9771
|
+
};
|
|
9772
|
+
export type IServiceAccountPostRequestStatusEnum = typeof IServiceAccountPostRequestStatusEnum[keyof typeof IServiceAccountPostRequestStatusEnum];
|
|
9466
9773
|
/**
|
|
9467
9774
|
*
|
|
9468
9775
|
* @export
|
|
@@ -12595,6 +12902,54 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12595
12902
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12596
12903
|
*/
|
|
12597
12904
|
'passwordActive'?: boolean;
|
|
12905
|
+
/**
|
|
12906
|
+
* Storefront cache aktif mi?
|
|
12907
|
+
* @type {boolean}
|
|
12908
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12909
|
+
*/
|
|
12910
|
+
'cacheActive'?: boolean;
|
|
12911
|
+
/**
|
|
12912
|
+
*
|
|
12913
|
+
* @type {string}
|
|
12914
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12915
|
+
*/
|
|
12916
|
+
'serviceAccountId'?: string;
|
|
12917
|
+
/**
|
|
12918
|
+
*
|
|
12919
|
+
* @type {string}
|
|
12920
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12921
|
+
*/
|
|
12922
|
+
'scDomain'?: string;
|
|
12923
|
+
/**
|
|
12924
|
+
*
|
|
12925
|
+
* @type {string}
|
|
12926
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12927
|
+
*/
|
|
12928
|
+
'gscVerificationToken'?: string;
|
|
12929
|
+
/**
|
|
12930
|
+
*
|
|
12931
|
+
* @type {string}
|
|
12932
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12933
|
+
*/
|
|
12934
|
+
'gscVerificationStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum;
|
|
12935
|
+
/**
|
|
12936
|
+
*
|
|
12937
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare}
|
|
12938
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12939
|
+
*/
|
|
12940
|
+
'cloudflare'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare;
|
|
12941
|
+
/**
|
|
12942
|
+
*
|
|
12943
|
+
* @type {string}
|
|
12944
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12945
|
+
*/
|
|
12946
|
+
'rentalStatus'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum;
|
|
12947
|
+
/**
|
|
12948
|
+
*
|
|
12949
|
+
* @type {PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails}
|
|
12950
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
12951
|
+
*/
|
|
12952
|
+
'rentalDetails'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails;
|
|
12598
12953
|
/**
|
|
12599
12954
|
*
|
|
12600
12955
|
* @type {string}
|
|
@@ -12614,6 +12969,49 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
12614
12969
|
*/
|
|
12615
12970
|
'storageUsageBytes': number;
|
|
12616
12971
|
}
|
|
12972
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum: {
|
|
12973
|
+
readonly UNVERIFIED: "UNVERIFIED";
|
|
12974
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
12975
|
+
readonly VERIFIED: "VERIFIED";
|
|
12976
|
+
readonly FAILED: "FAILED";
|
|
12977
|
+
};
|
|
12978
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysGscVerificationStatusEnum];
|
|
12979
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum: {
|
|
12980
|
+
readonly VACANT: "VACANT";
|
|
12981
|
+
readonly RENTED: "RENTED";
|
|
12982
|
+
};
|
|
12983
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalStatusEnum];
|
|
12984
|
+
/**
|
|
12985
|
+
*
|
|
12986
|
+
* @export
|
|
12987
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
12988
|
+
*/
|
|
12989
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare {
|
|
12990
|
+
/**
|
|
12991
|
+
*
|
|
12992
|
+
* @type {string}
|
|
12993
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
12994
|
+
*/
|
|
12995
|
+
'gscTxtRecordId'?: string;
|
|
12996
|
+
/**
|
|
12997
|
+
*
|
|
12998
|
+
* @type {string}
|
|
12999
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13000
|
+
*/
|
|
13001
|
+
'status'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum;
|
|
13002
|
+
/**
|
|
13003
|
+
*
|
|
13004
|
+
* @type {string}
|
|
13005
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflare
|
|
13006
|
+
*/
|
|
13007
|
+
'zoneId'?: string;
|
|
13008
|
+
}
|
|
13009
|
+
export declare const PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum: {
|
|
13010
|
+
readonly PENDING_DNS: "PENDING_DNS";
|
|
13011
|
+
readonly ACTIVE: "ACTIVE";
|
|
13012
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
13013
|
+
};
|
|
13014
|
+
export type PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum = typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum[keyof typeof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysCloudflareStatusEnum];
|
|
12617
13015
|
/**
|
|
12618
13016
|
*
|
|
12619
13017
|
* @export
|
|
@@ -12670,6 +13068,31 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPo
|
|
|
12670
13068
|
*/
|
|
12671
13069
|
'distanceSalesAgreement'?: PartialRecordLanguageEnumString;
|
|
12672
13070
|
}
|
|
13071
|
+
/**
|
|
13072
|
+
*
|
|
13073
|
+
* @export
|
|
13074
|
+
* @interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13075
|
+
*/
|
|
13076
|
+
export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails {
|
|
13077
|
+
/**
|
|
13078
|
+
*
|
|
13079
|
+
* @type {string}
|
|
13080
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13081
|
+
*/
|
|
13082
|
+
'tenantEsnafId'?: string;
|
|
13083
|
+
/**
|
|
13084
|
+
*
|
|
13085
|
+
* @type {string}
|
|
13086
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13087
|
+
*/
|
|
13088
|
+
'fallbackPhoneNumber'?: string;
|
|
13089
|
+
/**
|
|
13090
|
+
*
|
|
13091
|
+
* @type {string}
|
|
13092
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysRentalDetails
|
|
13093
|
+
*/
|
|
13094
|
+
'phoneNumber'?: string;
|
|
13095
|
+
}
|
|
12673
13096
|
/**
|
|
12674
13097
|
* From T, pick a set of properties whose keys are in the union K
|
|
12675
13098
|
* @export
|
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.69",
|
|
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": "da285f00f609014d0a34f7df591a974aa0348c98"
|
|
41
41
|
}
|