@infisale-client/api 1.3.31 → 1.3.33
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 +601 -499
- package/dist/api/api.js +205 -285
- package/dist/api/api.mjs +201 -281
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2004,6 +2004,12 @@ export interface ICompany {
|
|
|
2004
2004
|
* @memberof ICompany
|
|
2005
2005
|
*/
|
|
2006
2006
|
'plan': PlanTypeEnum;
|
|
2007
|
+
/**
|
|
2008
|
+
*
|
|
2009
|
+
* @type {string}
|
|
2010
|
+
* @memberof ICompany
|
|
2011
|
+
*/
|
|
2012
|
+
'planId': string;
|
|
2007
2013
|
/**
|
|
2008
2014
|
*
|
|
2009
2015
|
* @type {string}
|
|
@@ -2329,6 +2335,12 @@ export interface ICompanyAdminResponse {
|
|
|
2329
2335
|
* @memberof ICompanyAdminResponse
|
|
2330
2336
|
*/
|
|
2331
2337
|
'plan': PlanTypeEnum;
|
|
2338
|
+
/**
|
|
2339
|
+
*
|
|
2340
|
+
* @type {string}
|
|
2341
|
+
* @memberof ICompanyAdminResponse
|
|
2342
|
+
*/
|
|
2343
|
+
'planId': string;
|
|
2332
2344
|
/**
|
|
2333
2345
|
*
|
|
2334
2346
|
* @type {string}
|
|
@@ -2550,7 +2562,19 @@ export interface ICompanyAdminResponse {
|
|
|
2550
2562
|
* @type {number}
|
|
2551
2563
|
* @memberof ICompanyAdminResponse
|
|
2552
2564
|
*/
|
|
2553
|
-
'
|
|
2565
|
+
'totalBandwidthUsage': number;
|
|
2566
|
+
/**
|
|
2567
|
+
*
|
|
2568
|
+
* @type {number}
|
|
2569
|
+
* @memberof ICompanyAdminResponse
|
|
2570
|
+
*/
|
|
2571
|
+
'totalBandwidthLimit': number;
|
|
2572
|
+
/**
|
|
2573
|
+
*
|
|
2574
|
+
* @type {IPlanResponse}
|
|
2575
|
+
* @memberof ICompanyAdminResponse
|
|
2576
|
+
*/
|
|
2577
|
+
'_plan'?: IPlanResponse;
|
|
2554
2578
|
}
|
|
2555
2579
|
/**
|
|
2556
2580
|
*
|
|
@@ -2979,56 +3003,6 @@ export interface ICompanyDashboardResponseOrdersInner {
|
|
|
2979
3003
|
*/
|
|
2980
3004
|
'date': string;
|
|
2981
3005
|
}
|
|
2982
|
-
/**
|
|
2983
|
-
*
|
|
2984
|
-
* @export
|
|
2985
|
-
* @interface ICompanyMonthlyBandwidth
|
|
2986
|
-
*/
|
|
2987
|
-
export interface ICompanyMonthlyBandwidth {
|
|
2988
|
-
/**
|
|
2989
|
-
*
|
|
2990
|
-
* @type {string}
|
|
2991
|
-
* @memberof ICompanyMonthlyBandwidth
|
|
2992
|
-
*/
|
|
2993
|
-
'_id': string;
|
|
2994
|
-
/**
|
|
2995
|
-
*
|
|
2996
|
-
* @type {string}
|
|
2997
|
-
* @memberof ICompanyMonthlyBandwidth
|
|
2998
|
-
*/
|
|
2999
|
-
'company': string;
|
|
3000
|
-
/**
|
|
3001
|
-
*
|
|
3002
|
-
* @type {number}
|
|
3003
|
-
* @memberof ICompanyMonthlyBandwidth
|
|
3004
|
-
*/
|
|
3005
|
-
'year': number;
|
|
3006
|
-
/**
|
|
3007
|
-
*
|
|
3008
|
-
* @type {number}
|
|
3009
|
-
* @memberof ICompanyMonthlyBandwidth
|
|
3010
|
-
*/
|
|
3011
|
-
'month': number;
|
|
3012
|
-
/**
|
|
3013
|
-
*
|
|
3014
|
-
* @type {number}
|
|
3015
|
-
* @memberof ICompanyMonthlyBandwidth
|
|
3016
|
-
*/
|
|
3017
|
-
'bandwidth': number;
|
|
3018
|
-
}
|
|
3019
|
-
/**
|
|
3020
|
-
*
|
|
3021
|
-
* @export
|
|
3022
|
-
* @interface ICompanyMonthlyBandwidthResponse
|
|
3023
|
-
*/
|
|
3024
|
-
export interface ICompanyMonthlyBandwidthResponse {
|
|
3025
|
-
/**
|
|
3026
|
-
*
|
|
3027
|
-
* @type {Array<ICompanyMonthlyBandwidth>}
|
|
3028
|
-
* @memberof ICompanyMonthlyBandwidthResponse
|
|
3029
|
-
*/
|
|
3030
|
-
'data': Array<ICompanyMonthlyBandwidth>;
|
|
3031
|
-
}
|
|
3032
3006
|
/**
|
|
3033
3007
|
*
|
|
3034
3008
|
* @export
|
|
@@ -3115,6 +3089,12 @@ export interface ICompanyPatchRequest {
|
|
|
3115
3089
|
* @memberof ICompanyPatchRequest
|
|
3116
3090
|
*/
|
|
3117
3091
|
'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
|
|
3092
|
+
/**
|
|
3093
|
+
*
|
|
3094
|
+
* @type {string}
|
|
3095
|
+
* @memberof ICompanyPatchRequest
|
|
3096
|
+
*/
|
|
3097
|
+
'planId'?: string;
|
|
3118
3098
|
/**
|
|
3119
3099
|
*
|
|
3120
3100
|
* @type {string}
|
|
@@ -3339,10 +3319,10 @@ export interface ICompanyPostRequest {
|
|
|
3339
3319
|
'name': string;
|
|
3340
3320
|
/**
|
|
3341
3321
|
*
|
|
3342
|
-
* @type {
|
|
3322
|
+
* @type {string}
|
|
3343
3323
|
* @memberof ICompanyPostRequest
|
|
3344
3324
|
*/
|
|
3345
|
-
'plan':
|
|
3325
|
+
'plan': string;
|
|
3346
3326
|
/**
|
|
3347
3327
|
*
|
|
3348
3328
|
* @type {LanguageEnum}
|
|
@@ -3434,6 +3414,12 @@ export interface ICompanyResponse {
|
|
|
3434
3414
|
* @memberof ICompanyResponse
|
|
3435
3415
|
*/
|
|
3436
3416
|
'plan': PlanTypeEnum;
|
|
3417
|
+
/**
|
|
3418
|
+
*
|
|
3419
|
+
* @type {string}
|
|
3420
|
+
* @memberof ICompanyResponse
|
|
3421
|
+
*/
|
|
3422
|
+
'planId': string;
|
|
3437
3423
|
/**
|
|
3438
3424
|
*
|
|
3439
3425
|
* @type {string}
|
|
@@ -3635,7 +3621,13 @@ export interface ICompanyResponse {
|
|
|
3635
3621
|
* @type {number}
|
|
3636
3622
|
* @memberof ICompanyResponse
|
|
3637
3623
|
*/
|
|
3638
|
-
'
|
|
3624
|
+
'totalBandwidthUsage': number;
|
|
3625
|
+
/**
|
|
3626
|
+
*
|
|
3627
|
+
* @type {number}
|
|
3628
|
+
* @memberof ICompanyResponse
|
|
3629
|
+
*/
|
|
3630
|
+
'totalBandwidthLimit': number;
|
|
3639
3631
|
}
|
|
3640
3632
|
/**
|
|
3641
3633
|
*
|
|
@@ -6739,67 +6731,6 @@ export interface IPagesResponse {
|
|
|
6739
6731
|
*/
|
|
6740
6732
|
'data': Array<IPageResponse>;
|
|
6741
6733
|
}
|
|
6742
|
-
/**
|
|
6743
|
-
*
|
|
6744
|
-
* @export
|
|
6745
|
-
* @interface IPayment
|
|
6746
|
-
*/
|
|
6747
|
-
export interface IPayment {
|
|
6748
|
-
/**
|
|
6749
|
-
*
|
|
6750
|
-
* @type {string}
|
|
6751
|
-
* @memberof IPayment
|
|
6752
|
-
*/
|
|
6753
|
-
'_id': string;
|
|
6754
|
-
/**
|
|
6755
|
-
*
|
|
6756
|
-
* @type {number}
|
|
6757
|
-
* @memberof IPayment
|
|
6758
|
-
*/
|
|
6759
|
-
'__v': number;
|
|
6760
|
-
/**
|
|
6761
|
-
*
|
|
6762
|
-
* @type {string}
|
|
6763
|
-
* @memberof IPayment
|
|
6764
|
-
*/
|
|
6765
|
-
'createdAt': string;
|
|
6766
|
-
/**
|
|
6767
|
-
*
|
|
6768
|
-
* @type {string}
|
|
6769
|
-
* @memberof IPayment
|
|
6770
|
-
*/
|
|
6771
|
-
'updatedAt': string;
|
|
6772
|
-
/**
|
|
6773
|
-
*
|
|
6774
|
-
* @type {string}
|
|
6775
|
-
* @memberof IPayment
|
|
6776
|
-
*/
|
|
6777
|
-
'company': string;
|
|
6778
|
-
/**
|
|
6779
|
-
*
|
|
6780
|
-
* @type {number}
|
|
6781
|
-
* @memberof IPayment
|
|
6782
|
-
*/
|
|
6783
|
-
'period': number;
|
|
6784
|
-
/**
|
|
6785
|
-
*
|
|
6786
|
-
* @type {number}
|
|
6787
|
-
* @memberof IPayment
|
|
6788
|
-
*/
|
|
6789
|
-
'total': number;
|
|
6790
|
-
/**
|
|
6791
|
-
*
|
|
6792
|
-
* @type {string}
|
|
6793
|
-
* @memberof IPayment
|
|
6794
|
-
*/
|
|
6795
|
-
'iframe': string;
|
|
6796
|
-
/**
|
|
6797
|
-
*
|
|
6798
|
-
* @type {PaymentStatusEnum}
|
|
6799
|
-
* @memberof IPayment
|
|
6800
|
-
*/
|
|
6801
|
-
'status': PaymentStatusEnum;
|
|
6802
|
-
}
|
|
6803
6734
|
/**
|
|
6804
6735
|
*
|
|
6805
6736
|
* @export
|
|
@@ -6831,61 +6762,6 @@ export interface IPaymentCreateResponse {
|
|
|
6831
6762
|
*/
|
|
6832
6763
|
'iframe'?: string;
|
|
6833
6764
|
}
|
|
6834
|
-
/**
|
|
6835
|
-
*
|
|
6836
|
-
* @export
|
|
6837
|
-
* @interface IPaymentPostRequest
|
|
6838
|
-
*/
|
|
6839
|
-
export interface IPaymentPostRequest {
|
|
6840
|
-
/**
|
|
6841
|
-
*
|
|
6842
|
-
* @type {string}
|
|
6843
|
-
* @memberof IPaymentPostRequest
|
|
6844
|
-
*/
|
|
6845
|
-
'period': IPaymentPostRequestPeriodEnum;
|
|
6846
|
-
}
|
|
6847
|
-
export declare const IPaymentPostRequestPeriodEnum: {
|
|
6848
|
-
readonly MONTHLY: "monthly";
|
|
6849
|
-
readonly YEARLY: "yearly";
|
|
6850
|
-
};
|
|
6851
|
-
export type IPaymentPostRequestPeriodEnum = typeof IPaymentPostRequestPeriodEnum[keyof typeof IPaymentPostRequestPeriodEnum];
|
|
6852
|
-
/**
|
|
6853
|
-
*
|
|
6854
|
-
* @export
|
|
6855
|
-
* @interface IPaymentsResponse
|
|
6856
|
-
*/
|
|
6857
|
-
export interface IPaymentsResponse {
|
|
6858
|
-
/**
|
|
6859
|
-
*
|
|
6860
|
-
* @type {number}
|
|
6861
|
-
* @memberof IPaymentsResponse
|
|
6862
|
-
*/
|
|
6863
|
-
'totalPages': number;
|
|
6864
|
-
/**
|
|
6865
|
-
*
|
|
6866
|
-
* @type {number}
|
|
6867
|
-
* @memberof IPaymentsResponse
|
|
6868
|
-
*/
|
|
6869
|
-
'page': number;
|
|
6870
|
-
/**
|
|
6871
|
-
*
|
|
6872
|
-
* @type {number}
|
|
6873
|
-
* @memberof IPaymentsResponse
|
|
6874
|
-
*/
|
|
6875
|
-
'itemsPerPage': number;
|
|
6876
|
-
/**
|
|
6877
|
-
*
|
|
6878
|
-
* @type {number}
|
|
6879
|
-
* @memberof IPaymentsResponse
|
|
6880
|
-
*/
|
|
6881
|
-
'total': number;
|
|
6882
|
-
/**
|
|
6883
|
-
*
|
|
6884
|
-
* @type {Array<IPayment>}
|
|
6885
|
-
* @memberof IPaymentsResponse
|
|
6886
|
-
*/
|
|
6887
|
-
'data': Array<IPayment>;
|
|
6888
|
-
}
|
|
6889
6765
|
/**
|
|
6890
6766
|
*
|
|
6891
6767
|
* @export
|
|
@@ -6948,16 +6824,28 @@ export interface IPlanCollectionQueryParams {
|
|
|
6948
6824
|
'status'?: PlanStatusEnum;
|
|
6949
6825
|
/**
|
|
6950
6826
|
*
|
|
6951
|
-
* @type {
|
|
6827
|
+
* @type {string}
|
|
6952
6828
|
* @memberof IPlanCollectionQueryParams
|
|
6953
6829
|
*/
|
|
6954
|
-
'
|
|
6830
|
+
'category'?: IPlanCollectionQueryParamsCategoryEnum;
|
|
6831
|
+
/**
|
|
6832
|
+
*
|
|
6833
|
+
* @type {string}
|
|
6834
|
+
* @memberof IPlanCollectionQueryParams
|
|
6835
|
+
*/
|
|
6836
|
+
'company'?: string;
|
|
6955
6837
|
}
|
|
6956
6838
|
export declare const IPlanCollectionQueryParamsDateFieldEnum: {
|
|
6957
6839
|
readonly CREATED_AT: "createdAt";
|
|
6958
6840
|
readonly UPDATED_AT: "updatedAt";
|
|
6959
6841
|
};
|
|
6960
6842
|
export type IPlanCollectionQueryParamsDateFieldEnum = typeof IPlanCollectionQueryParamsDateFieldEnum[keyof typeof IPlanCollectionQueryParamsDateFieldEnum];
|
|
6843
|
+
export declare const IPlanCollectionQueryParamsCategoryEnum: {
|
|
6844
|
+
readonly ADDON_BANDWIDTH: "addon-bandwidth";
|
|
6845
|
+
readonly B2C: "b2c";
|
|
6846
|
+
readonly CMS: "cms";
|
|
6847
|
+
};
|
|
6848
|
+
export type IPlanCollectionQueryParamsCategoryEnum = typeof IPlanCollectionQueryParamsCategoryEnum[keyof typeof IPlanCollectionQueryParamsCategoryEnum];
|
|
6961
6849
|
/**
|
|
6962
6850
|
*
|
|
6963
6851
|
* @export
|
|
@@ -6972,10 +6860,10 @@ export interface IPlanPatchRequest {
|
|
|
6972
6860
|
'name'?: string;
|
|
6973
6861
|
/**
|
|
6974
6862
|
*
|
|
6975
|
-
* @type {
|
|
6863
|
+
* @type {PlanStatusEnum}
|
|
6976
6864
|
* @memberof IPlanPatchRequest
|
|
6977
6865
|
*/
|
|
6978
|
-
'
|
|
6866
|
+
'status'?: PlanStatusEnum;
|
|
6979
6867
|
/**
|
|
6980
6868
|
*
|
|
6981
6869
|
* @type {PlanTypeEnum}
|
|
@@ -6984,22 +6872,28 @@ export interface IPlanPatchRequest {
|
|
|
6984
6872
|
'type'?: PlanTypeEnum;
|
|
6985
6873
|
/**
|
|
6986
6874
|
*
|
|
6987
|
-
* @type {
|
|
6875
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
6988
6876
|
* @memberof IPlanPatchRequest
|
|
6989
6877
|
*/
|
|
6990
|
-
'
|
|
6878
|
+
'monthlyPrice'?: RecordPlanCurrencyEnumNumber;
|
|
6991
6879
|
/**
|
|
6992
6880
|
*
|
|
6993
|
-
* @type {
|
|
6881
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
6994
6882
|
* @memberof IPlanPatchRequest
|
|
6995
6883
|
*/
|
|
6996
|
-
'
|
|
6884
|
+
'annuallyPrice'?: RecordPlanCurrencyEnumNumber;
|
|
6997
6885
|
/**
|
|
6998
6886
|
*
|
|
6999
|
-
* @type {
|
|
6887
|
+
* @type {IPlanResponseLimits}
|
|
7000
6888
|
* @memberof IPlanPatchRequest
|
|
7001
6889
|
*/
|
|
7002
|
-
'
|
|
6890
|
+
'limits'?: IPlanResponseLimits;
|
|
6891
|
+
/**
|
|
6892
|
+
*
|
|
6893
|
+
* @type {number}
|
|
6894
|
+
* @memberof IPlanPatchRequest
|
|
6895
|
+
*/
|
|
6896
|
+
'addonAmount'?: number;
|
|
7003
6897
|
}
|
|
7004
6898
|
/**
|
|
7005
6899
|
*
|
|
@@ -7018,7 +6912,13 @@ export interface IPlanPostRequest {
|
|
|
7018
6912
|
* @type {string}
|
|
7019
6913
|
* @memberof IPlanPostRequest
|
|
7020
6914
|
*/
|
|
7021
|
-
'
|
|
6915
|
+
'company'?: string;
|
|
6916
|
+
/**
|
|
6917
|
+
*
|
|
6918
|
+
* @type {PlanStatusEnum}
|
|
6919
|
+
* @memberof IPlanPostRequest
|
|
6920
|
+
*/
|
|
6921
|
+
'status': PlanStatusEnum;
|
|
7022
6922
|
/**
|
|
7023
6923
|
*
|
|
7024
6924
|
* @type {PlanTypeEnum}
|
|
@@ -7027,22 +6927,28 @@ export interface IPlanPostRequest {
|
|
|
7027
6927
|
'type': PlanTypeEnum;
|
|
7028
6928
|
/**
|
|
7029
6929
|
*
|
|
7030
|
-
* @type {
|
|
6930
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
7031
6931
|
* @memberof IPlanPostRequest
|
|
7032
6932
|
*/
|
|
7033
|
-
'
|
|
6933
|
+
'monthlyPrice': RecordPlanCurrencyEnumNumber;
|
|
7034
6934
|
/**
|
|
7035
6935
|
*
|
|
7036
|
-
* @type {
|
|
6936
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
7037
6937
|
* @memberof IPlanPostRequest
|
|
7038
6938
|
*/
|
|
7039
|
-
'
|
|
6939
|
+
'annuallyPrice': RecordPlanCurrencyEnumNumber;
|
|
7040
6940
|
/**
|
|
7041
6941
|
*
|
|
7042
|
-
* @type {
|
|
6942
|
+
* @type {IPlanResponseLimits}
|
|
7043
6943
|
* @memberof IPlanPostRequest
|
|
7044
6944
|
*/
|
|
7045
|
-
'
|
|
6945
|
+
'limits': IPlanResponseLimits;
|
|
6946
|
+
/**
|
|
6947
|
+
*
|
|
6948
|
+
* @type {number}
|
|
6949
|
+
* @memberof IPlanPostRequest
|
|
6950
|
+
*/
|
|
6951
|
+
'addonAmount': number;
|
|
7046
6952
|
}
|
|
7047
6953
|
/**
|
|
7048
6954
|
*
|
|
@@ -7080,12 +6986,6 @@ export interface IPlanResponse {
|
|
|
7080
6986
|
* @memberof IPlanResponse
|
|
7081
6987
|
*/
|
|
7082
6988
|
'name': string;
|
|
7083
|
-
/**
|
|
7084
|
-
*
|
|
7085
|
-
* @type {string}
|
|
7086
|
-
* @memberof IPlanResponse
|
|
7087
|
-
*/
|
|
7088
|
-
'description'?: string;
|
|
7089
6989
|
/**
|
|
7090
6990
|
*
|
|
7091
6991
|
* @type {PlanTypeEnum}
|
|
@@ -7094,103 +6994,96 @@ export interface IPlanResponse {
|
|
|
7094
6994
|
'type': PlanTypeEnum;
|
|
7095
6995
|
/**
|
|
7096
6996
|
*
|
|
7097
|
-
* @type {
|
|
6997
|
+
* @type {string}
|
|
7098
6998
|
* @memberof IPlanResponse
|
|
7099
6999
|
*/
|
|
7100
|
-
'
|
|
7000
|
+
'company'?: string;
|
|
7101
7001
|
/**
|
|
7102
7002
|
*
|
|
7103
|
-
* @type {
|
|
7003
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
7104
7004
|
* @memberof IPlanResponse
|
|
7105
7005
|
*/
|
|
7106
|
-
'
|
|
7006
|
+
'monthlyPrice': RecordPlanCurrencyEnumNumber;
|
|
7107
7007
|
/**
|
|
7108
7008
|
*
|
|
7109
|
-
* @type {
|
|
7009
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
7110
7010
|
* @memberof IPlanResponse
|
|
7111
7011
|
*/
|
|
7112
|
-
'
|
|
7113
|
-
}
|
|
7114
|
-
/**
|
|
7115
|
-
*
|
|
7116
|
-
* @export
|
|
7117
|
-
* @interface IPlanResponseAttributesInner
|
|
7118
|
-
*/
|
|
7119
|
-
export interface IPlanResponseAttributesInner {
|
|
7012
|
+
'annuallyPrice': RecordPlanCurrencyEnumNumber;
|
|
7120
7013
|
/**
|
|
7121
7014
|
*
|
|
7122
|
-
* @type {
|
|
7123
|
-
* @memberof
|
|
7015
|
+
* @type {IPlanResponseLimits}
|
|
7016
|
+
* @memberof IPlanResponse
|
|
7124
7017
|
*/
|
|
7125
|
-
'
|
|
7018
|
+
'limits': IPlanResponseLimits;
|
|
7126
7019
|
/**
|
|
7127
7020
|
*
|
|
7128
|
-
* @type {
|
|
7129
|
-
* @memberof
|
|
7021
|
+
* @type {number}
|
|
7022
|
+
* @memberof IPlanResponse
|
|
7130
7023
|
*/
|
|
7131
|
-
'
|
|
7024
|
+
'addonAmount': number;
|
|
7132
7025
|
/**
|
|
7133
7026
|
*
|
|
7134
|
-
* @type {
|
|
7135
|
-
* @memberof
|
|
7027
|
+
* @type {PlanStatusEnum}
|
|
7028
|
+
* @memberof IPlanResponse
|
|
7136
7029
|
*/
|
|
7137
|
-
'
|
|
7030
|
+
'status': PlanStatusEnum;
|
|
7138
7031
|
}
|
|
7139
7032
|
/**
|
|
7140
7033
|
*
|
|
7141
7034
|
* @export
|
|
7142
|
-
* @interface
|
|
7035
|
+
* @interface IPlanResponseLimits
|
|
7143
7036
|
*/
|
|
7144
|
-
export interface
|
|
7037
|
+
export interface IPlanResponseLimits {
|
|
7145
7038
|
/**
|
|
7146
7039
|
*
|
|
7147
|
-
* @type {
|
|
7148
|
-
* @memberof
|
|
7040
|
+
* @type {number}
|
|
7041
|
+
* @memberof IPlanResponseLimits
|
|
7149
7042
|
*/
|
|
7150
|
-
'
|
|
7043
|
+
'users': number;
|
|
7151
7044
|
/**
|
|
7152
7045
|
*
|
|
7153
7046
|
* @type {number}
|
|
7154
|
-
* @memberof
|
|
7047
|
+
* @memberof IPlanResponseLimits
|
|
7155
7048
|
*/
|
|
7156
|
-
'
|
|
7049
|
+
'languages': number;
|
|
7157
7050
|
/**
|
|
7158
7051
|
*
|
|
7159
7052
|
* @type {number}
|
|
7160
|
-
* @memberof
|
|
7053
|
+
* @memberof IPlanResponseLimits
|
|
7161
7054
|
*/
|
|
7162
|
-
'
|
|
7163
|
-
}
|
|
7164
|
-
/**
|
|
7165
|
-
*
|
|
7166
|
-
* @export
|
|
7167
|
-
* @interface IPlansResponse
|
|
7168
|
-
*/
|
|
7169
|
-
export interface IPlansResponse {
|
|
7055
|
+
'products': number;
|
|
7170
7056
|
/**
|
|
7171
7057
|
*
|
|
7172
7058
|
* @type {number}
|
|
7173
|
-
* @memberof
|
|
7059
|
+
* @memberof IPlanResponseLimits
|
|
7174
7060
|
*/
|
|
7175
|
-
'
|
|
7061
|
+
'cmsItems': number;
|
|
7176
7062
|
/**
|
|
7177
7063
|
*
|
|
7178
7064
|
* @type {number}
|
|
7179
|
-
* @memberof
|
|
7065
|
+
* @memberof IPlanResponseLimits
|
|
7180
7066
|
*/
|
|
7181
|
-
'
|
|
7067
|
+
'cmsCollections': number;
|
|
7182
7068
|
/**
|
|
7183
7069
|
*
|
|
7184
7070
|
* @type {number}
|
|
7185
|
-
* @memberof
|
|
7071
|
+
* @memberof IPlanResponseLimits
|
|
7186
7072
|
*/
|
|
7187
|
-
'
|
|
7073
|
+
'storage': number;
|
|
7188
7074
|
/**
|
|
7189
7075
|
*
|
|
7190
7076
|
* @type {number}
|
|
7191
|
-
* @memberof
|
|
7077
|
+
* @memberof IPlanResponseLimits
|
|
7192
7078
|
*/
|
|
7193
|
-
'
|
|
7079
|
+
'bandwidth': number;
|
|
7080
|
+
}
|
|
7081
|
+
/**
|
|
7082
|
+
*
|
|
7083
|
+
* @export
|
|
7084
|
+
* @interface IPlansResponse
|
|
7085
|
+
*/
|
|
7086
|
+
export interface IPlansResponse {
|
|
7194
7087
|
/**
|
|
7195
7088
|
*
|
|
7196
7089
|
* @type {Array<IPlanResponse>}
|
|
@@ -8393,6 +8286,207 @@ export interface IState {
|
|
|
8393
8286
|
*/
|
|
8394
8287
|
'cities': Array<string>;
|
|
8395
8288
|
}
|
|
8289
|
+
/**
|
|
8290
|
+
*
|
|
8291
|
+
* @export
|
|
8292
|
+
* @interface ISubscription
|
|
8293
|
+
*/
|
|
8294
|
+
export interface ISubscription {
|
|
8295
|
+
/**
|
|
8296
|
+
*
|
|
8297
|
+
* @type {string}
|
|
8298
|
+
* @memberof ISubscription
|
|
8299
|
+
*/
|
|
8300
|
+
'_id': string;
|
|
8301
|
+
/**
|
|
8302
|
+
*
|
|
8303
|
+
* @type {number}
|
|
8304
|
+
* @memberof ISubscription
|
|
8305
|
+
*/
|
|
8306
|
+
'__v': number;
|
|
8307
|
+
/**
|
|
8308
|
+
*
|
|
8309
|
+
* @type {string}
|
|
8310
|
+
* @memberof ISubscription
|
|
8311
|
+
*/
|
|
8312
|
+
'createdAt': string;
|
|
8313
|
+
/**
|
|
8314
|
+
*
|
|
8315
|
+
* @type {string}
|
|
8316
|
+
* @memberof ISubscription
|
|
8317
|
+
*/
|
|
8318
|
+
'updatedAt': string;
|
|
8319
|
+
/**
|
|
8320
|
+
*
|
|
8321
|
+
* @type {string}
|
|
8322
|
+
* @memberof ISubscription
|
|
8323
|
+
*/
|
|
8324
|
+
'paymentId': string;
|
|
8325
|
+
/**
|
|
8326
|
+
*
|
|
8327
|
+
* @type {string}
|
|
8328
|
+
* @memberof ISubscription
|
|
8329
|
+
*/
|
|
8330
|
+
'iframe': string;
|
|
8331
|
+
/**
|
|
8332
|
+
*
|
|
8333
|
+
* @type {string}
|
|
8334
|
+
* @memberof ISubscription
|
|
8335
|
+
*/
|
|
8336
|
+
'company': string;
|
|
8337
|
+
/**
|
|
8338
|
+
*
|
|
8339
|
+
* @type {string}
|
|
8340
|
+
* @memberof ISubscription
|
|
8341
|
+
*/
|
|
8342
|
+
'plan': string;
|
|
8343
|
+
/**
|
|
8344
|
+
*
|
|
8345
|
+
* @type {SubscriptionPlanEnum}
|
|
8346
|
+
* @memberof ISubscription
|
|
8347
|
+
*/
|
|
8348
|
+
'planType': SubscriptionPlanEnum;
|
|
8349
|
+
/**
|
|
8350
|
+
*
|
|
8351
|
+
* @type {string}
|
|
8352
|
+
* @memberof ISubscription
|
|
8353
|
+
*/
|
|
8354
|
+
'planName': string;
|
|
8355
|
+
/**
|
|
8356
|
+
*
|
|
8357
|
+
* @type {SubscriptionStatusEnum}
|
|
8358
|
+
* @memberof ISubscription
|
|
8359
|
+
*/
|
|
8360
|
+
'status': SubscriptionStatusEnum;
|
|
8361
|
+
/**
|
|
8362
|
+
*
|
|
8363
|
+
* @type {string}
|
|
8364
|
+
* @memberof ISubscription
|
|
8365
|
+
*/
|
|
8366
|
+
'startDate': string;
|
|
8367
|
+
/**
|
|
8368
|
+
*
|
|
8369
|
+
* @type {string}
|
|
8370
|
+
* @memberof ISubscription
|
|
8371
|
+
*/
|
|
8372
|
+
'endDate': string;
|
|
8373
|
+
/**
|
|
8374
|
+
*
|
|
8375
|
+
* @type {IPlanResponseLimits}
|
|
8376
|
+
* @memberof ISubscription
|
|
8377
|
+
*/
|
|
8378
|
+
'limits': IPlanResponseLimits;
|
|
8379
|
+
/**
|
|
8380
|
+
*
|
|
8381
|
+
* @type {number}
|
|
8382
|
+
* @memberof ISubscription
|
|
8383
|
+
*/
|
|
8384
|
+
'price': number;
|
|
8385
|
+
/**
|
|
8386
|
+
*
|
|
8387
|
+
* @type {number}
|
|
8388
|
+
* @memberof ISubscription
|
|
8389
|
+
*/
|
|
8390
|
+
'addonAmount': number;
|
|
8391
|
+
/**
|
|
8392
|
+
*
|
|
8393
|
+
* @type {number}
|
|
8394
|
+
* @memberof ISubscription
|
|
8395
|
+
*/
|
|
8396
|
+
'addonUsage': number;
|
|
8397
|
+
}
|
|
8398
|
+
/**
|
|
8399
|
+
*
|
|
8400
|
+
* @export
|
|
8401
|
+
* @interface ISubscriptionPostRequest
|
|
8402
|
+
*/
|
|
8403
|
+
export interface ISubscriptionPostRequest {
|
|
8404
|
+
/**
|
|
8405
|
+
*
|
|
8406
|
+
* @type {string}
|
|
8407
|
+
* @memberof ISubscriptionPostRequest
|
|
8408
|
+
*/
|
|
8409
|
+
'period': ISubscriptionPostRequestPeriodEnum;
|
|
8410
|
+
/**
|
|
8411
|
+
*
|
|
8412
|
+
* @type {SubscriptionStatusEnum}
|
|
8413
|
+
* @memberof ISubscriptionPostRequest
|
|
8414
|
+
*/
|
|
8415
|
+
'status': SubscriptionStatusEnum;
|
|
8416
|
+
/**
|
|
8417
|
+
*
|
|
8418
|
+
* @type {string}
|
|
8419
|
+
* @memberof ISubscriptionPostRequest
|
|
8420
|
+
*/
|
|
8421
|
+
'plan': string;
|
|
8422
|
+
}
|
|
8423
|
+
export declare const ISubscriptionPostRequestPeriodEnum: {
|
|
8424
|
+
readonly MONTHLY: "monthly";
|
|
8425
|
+
readonly YEARLY: "yearly";
|
|
8426
|
+
};
|
|
8427
|
+
export type ISubscriptionPostRequestPeriodEnum = typeof ISubscriptionPostRequestPeriodEnum[keyof typeof ISubscriptionPostRequestPeriodEnum];
|
|
8428
|
+
/**
|
|
8429
|
+
*
|
|
8430
|
+
* @export
|
|
8431
|
+
* @interface ISubscriptionQueryParams
|
|
8432
|
+
*/
|
|
8433
|
+
export interface ISubscriptionQueryParams {
|
|
8434
|
+
/**
|
|
8435
|
+
*
|
|
8436
|
+
* @type {number}
|
|
8437
|
+
* @memberof ISubscriptionQueryParams
|
|
8438
|
+
*/
|
|
8439
|
+
'page'?: number;
|
|
8440
|
+
/**
|
|
8441
|
+
*
|
|
8442
|
+
* @type {number}
|
|
8443
|
+
* @memberof ISubscriptionQueryParams
|
|
8444
|
+
*/
|
|
8445
|
+
'itemsPerPage'?: number;
|
|
8446
|
+
/**
|
|
8447
|
+
*
|
|
8448
|
+
* @type {SubscriptionStatusEnum}
|
|
8449
|
+
* @memberof ISubscriptionQueryParams
|
|
8450
|
+
*/
|
|
8451
|
+
'status'?: SubscriptionStatusEnum;
|
|
8452
|
+
}
|
|
8453
|
+
/**
|
|
8454
|
+
*
|
|
8455
|
+
* @export
|
|
8456
|
+
* @interface ISubscriptionsResponse
|
|
8457
|
+
*/
|
|
8458
|
+
export interface ISubscriptionsResponse {
|
|
8459
|
+
/**
|
|
8460
|
+
*
|
|
8461
|
+
* @type {number}
|
|
8462
|
+
* @memberof ISubscriptionsResponse
|
|
8463
|
+
*/
|
|
8464
|
+
'totalPages': number;
|
|
8465
|
+
/**
|
|
8466
|
+
*
|
|
8467
|
+
* @type {number}
|
|
8468
|
+
* @memberof ISubscriptionsResponse
|
|
8469
|
+
*/
|
|
8470
|
+
'page': number;
|
|
8471
|
+
/**
|
|
8472
|
+
*
|
|
8473
|
+
* @type {number}
|
|
8474
|
+
* @memberof ISubscriptionsResponse
|
|
8475
|
+
*/
|
|
8476
|
+
'itemsPerPage': number;
|
|
8477
|
+
/**
|
|
8478
|
+
*
|
|
8479
|
+
* @type {number}
|
|
8480
|
+
* @memberof ISubscriptionsResponse
|
|
8481
|
+
*/
|
|
8482
|
+
'total': number;
|
|
8483
|
+
/**
|
|
8484
|
+
*
|
|
8485
|
+
* @type {Array<ISubscription>}
|
|
8486
|
+
* @memberof ISubscriptionsResponse
|
|
8487
|
+
*/
|
|
8488
|
+
'data': Array<ISubscription>;
|
|
8489
|
+
}
|
|
8396
8490
|
/**
|
|
8397
8491
|
*
|
|
8398
8492
|
* @export
|
|
@@ -9850,7 +9944,7 @@ export type OrderShippedStatusEnum = typeof OrderShippedStatusEnum[keyof typeof
|
|
|
9850
9944
|
* @enum {string}
|
|
9851
9945
|
*/
|
|
9852
9946
|
export declare const OrderStatusEnum: {
|
|
9853
|
-
readonly
|
|
9947
|
+
readonly CANCELED: "canceled";
|
|
9854
9948
|
readonly CREATED: "created";
|
|
9855
9949
|
};
|
|
9856
9950
|
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
@@ -10035,17 +10129,6 @@ export declare const PaymentMethodEnum: {
|
|
|
10035
10129
|
readonly CARD_ON_DELIVERY: "card_on_delivery";
|
|
10036
10130
|
};
|
|
10037
10131
|
export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
|
|
10038
|
-
/**
|
|
10039
|
-
*
|
|
10040
|
-
* @export
|
|
10041
|
-
* @enum {string}
|
|
10042
|
-
*/
|
|
10043
|
-
export declare const PaymentStatusEnum: {
|
|
10044
|
-
readonly WAITING_APPROVAL: "waiting_approval";
|
|
10045
|
-
readonly PAID: "paid";
|
|
10046
|
-
readonly FAILED: "failed";
|
|
10047
|
-
};
|
|
10048
|
-
export type PaymentStatusEnum = typeof PaymentStatusEnum[keyof typeof PaymentStatusEnum];
|
|
10049
10132
|
/**
|
|
10050
10133
|
* From T, pick a set of properties whose keys are in the union K
|
|
10051
10134
|
* @export
|
|
@@ -10475,6 +10558,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
|
|
|
10475
10558
|
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10476
10559
|
*/
|
|
10477
10560
|
'plan': PlanTypeEnum;
|
|
10561
|
+
/**
|
|
10562
|
+
*
|
|
10563
|
+
* @type {string}
|
|
10564
|
+
* @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
|
|
10565
|
+
*/
|
|
10566
|
+
'planId': string;
|
|
10478
10567
|
/**
|
|
10479
10568
|
*
|
|
10480
10569
|
* @type {string}
|
|
@@ -11405,6 +11494,61 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
|
|
|
11405
11494
|
*/
|
|
11406
11495
|
'type': string;
|
|
11407
11496
|
}
|
|
11497
|
+
/**
|
|
11498
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11499
|
+
* @export
|
|
11500
|
+
* @interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11501
|
+
*/
|
|
11502
|
+
export interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse {
|
|
11503
|
+
/**
|
|
11504
|
+
*
|
|
11505
|
+
* @type {string}
|
|
11506
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11507
|
+
*/
|
|
11508
|
+
'name': string;
|
|
11509
|
+
/**
|
|
11510
|
+
*
|
|
11511
|
+
* @type {string}
|
|
11512
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11513
|
+
*/
|
|
11514
|
+
'company'?: string;
|
|
11515
|
+
/**
|
|
11516
|
+
*
|
|
11517
|
+
* @type {PlanStatusEnum}
|
|
11518
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11519
|
+
*/
|
|
11520
|
+
'status': PlanStatusEnum;
|
|
11521
|
+
/**
|
|
11522
|
+
*
|
|
11523
|
+
* @type {PlanTypeEnum}
|
|
11524
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11525
|
+
*/
|
|
11526
|
+
'type': PlanTypeEnum;
|
|
11527
|
+
/**
|
|
11528
|
+
*
|
|
11529
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
11530
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11531
|
+
*/
|
|
11532
|
+
'monthlyPrice': RecordPlanCurrencyEnumNumber;
|
|
11533
|
+
/**
|
|
11534
|
+
*
|
|
11535
|
+
* @type {RecordPlanCurrencyEnumNumber}
|
|
11536
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11537
|
+
*/
|
|
11538
|
+
'annuallyPrice': RecordPlanCurrencyEnumNumber;
|
|
11539
|
+
/**
|
|
11540
|
+
*
|
|
11541
|
+
* @type {IPlanResponseLimits}
|
|
11542
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11543
|
+
*/
|
|
11544
|
+
'limits': IPlanResponseLimits;
|
|
11545
|
+
/**
|
|
11546
|
+
*
|
|
11547
|
+
* @type {number}
|
|
11548
|
+
* @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
|
|
11549
|
+
*/
|
|
11550
|
+
'addonAmount': number;
|
|
11551
|
+
}
|
|
11408
11552
|
/**
|
|
11409
11553
|
* From T, pick a set of properties whose keys are in the union K
|
|
11410
11554
|
* @export
|
|
@@ -12345,17 +12489,6 @@ export interface PickShippingProviderExcludeKeyofShippingProviderId {
|
|
|
12345
12489
|
*/
|
|
12346
12490
|
'rates': Array<ShippingProviderRates>;
|
|
12347
12491
|
}
|
|
12348
|
-
/**
|
|
12349
|
-
*
|
|
12350
|
-
* @export
|
|
12351
|
-
* @enum {string}
|
|
12352
|
-
*/
|
|
12353
|
-
export declare const PlanCurrencyEnum: {
|
|
12354
|
-
readonly TRY: "try";
|
|
12355
|
-
readonly EUR: "eur";
|
|
12356
|
-
readonly USD: "usd";
|
|
12357
|
-
};
|
|
12358
|
-
export type PlanCurrencyEnum = typeof PlanCurrencyEnum[keyof typeof PlanCurrencyEnum];
|
|
12359
12492
|
/**
|
|
12360
12493
|
*
|
|
12361
12494
|
* @export
|
|
@@ -12373,12 +12506,15 @@ export type PlanStatusEnum = typeof PlanStatusEnum[keyof typeof PlanStatusEnum];
|
|
|
12373
12506
|
* @enum {string}
|
|
12374
12507
|
*/
|
|
12375
12508
|
export declare const PlanTypeEnum: {
|
|
12509
|
+
readonly ADDON_BANDWIDTH: "addon-bandwidth";
|
|
12376
12510
|
readonly STANDARD_B2C: "standard-b2c";
|
|
12377
12511
|
readonly ADVANCED_B2C: "advanced-b2c";
|
|
12378
12512
|
readonly PREMIUM_B2C: "premium-b2c";
|
|
12513
|
+
readonly ENTERPRISE_B2C: "enterprise-b2c";
|
|
12379
12514
|
readonly STANDARD_CMS: "standard-cms";
|
|
12380
12515
|
readonly ADVANCED_CMS: "advanced-cms";
|
|
12381
12516
|
readonly PREMIUM_CMS: "premium-cms";
|
|
12517
|
+
readonly ENTERPRISE_CMS: "enterprise-cms";
|
|
12382
12518
|
};
|
|
12383
12519
|
export type PlanTypeEnum = typeof PlanTypeEnum[keyof typeof PlanTypeEnum];
|
|
12384
12520
|
/**
|
|
@@ -12424,6 +12560,18 @@ export interface RecordCompanyOnboardingStepEnumBoolean {
|
|
|
12424
12560
|
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
12425
12561
|
*/
|
|
12426
12562
|
'addFirstProduct': boolean;
|
|
12563
|
+
/**
|
|
12564
|
+
*
|
|
12565
|
+
* @type {boolean}
|
|
12566
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
12567
|
+
*/
|
|
12568
|
+
'addFirstPage': boolean;
|
|
12569
|
+
/**
|
|
12570
|
+
*
|
|
12571
|
+
* @type {boolean}
|
|
12572
|
+
* @memberof RecordCompanyOnboardingStepEnumBoolean
|
|
12573
|
+
*/
|
|
12574
|
+
'addFirstBlog': boolean;
|
|
12427
12575
|
/**
|
|
12428
12576
|
*
|
|
12429
12577
|
* @type {boolean}
|
|
@@ -12602,58 +12750,27 @@ export interface RecordLanguageEnumTitleStringTr {
|
|
|
12602
12750
|
/**
|
|
12603
12751
|
* Construct a type with a set of properties K of type T
|
|
12604
12752
|
* @export
|
|
12605
|
-
* @interface
|
|
12753
|
+
* @interface RecordPlanCurrencyEnumNumber
|
|
12606
12754
|
*/
|
|
12607
|
-
export interface
|
|
12608
|
-
/**
|
|
12609
|
-
*
|
|
12610
|
-
* @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
|
|
12611
|
-
* @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
|
|
12612
|
-
*/
|
|
12613
|
-
'standard-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
|
|
12614
|
-
/**
|
|
12615
|
-
*
|
|
12616
|
-
* @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
|
|
12617
|
-
* @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
|
|
12618
|
-
*/
|
|
12619
|
-
'advanced-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
|
|
12620
|
-
/**
|
|
12621
|
-
*
|
|
12622
|
-
* @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
|
|
12623
|
-
* @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
|
|
12624
|
-
*/
|
|
12625
|
-
'premium-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
|
|
12755
|
+
export interface RecordPlanCurrencyEnumNumber {
|
|
12626
12756
|
/**
|
|
12627
12757
|
*
|
|
12628
|
-
* @type {
|
|
12629
|
-
* @memberof
|
|
12758
|
+
* @type {number}
|
|
12759
|
+
* @memberof RecordPlanCurrencyEnumNumber
|
|
12630
12760
|
*/
|
|
12631
|
-
'
|
|
12761
|
+
'TRY': number;
|
|
12632
12762
|
/**
|
|
12633
12763
|
*
|
|
12634
|
-
* @type {
|
|
12635
|
-
* @memberof
|
|
12764
|
+
* @type {number}
|
|
12765
|
+
* @memberof RecordPlanCurrencyEnumNumber
|
|
12636
12766
|
*/
|
|
12637
|
-
'
|
|
12638
|
-
/**
|
|
12639
|
-
*
|
|
12640
|
-
* @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
|
|
12641
|
-
* @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
|
|
12642
|
-
*/
|
|
12643
|
-
'premium-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
|
|
12644
|
-
}
|
|
12645
|
-
/**
|
|
12646
|
-
*
|
|
12647
|
-
* @export
|
|
12648
|
-
* @interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c
|
|
12649
|
-
*/
|
|
12650
|
-
export interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c {
|
|
12767
|
+
'USD': number;
|
|
12651
12768
|
/**
|
|
12652
12769
|
*
|
|
12653
12770
|
* @type {number}
|
|
12654
|
-
* @memberof
|
|
12771
|
+
* @memberof RecordPlanCurrencyEnumNumber
|
|
12655
12772
|
*/
|
|
12656
|
-
'
|
|
12773
|
+
'EUR': number;
|
|
12657
12774
|
}
|
|
12658
12775
|
/**
|
|
12659
12776
|
*
|
|
@@ -12821,7 +12938,7 @@ export declare const SitemapTypeEnum: {
|
|
|
12821
12938
|
readonly PRODUCTS: "products";
|
|
12822
12939
|
readonly PAGES: "pages";
|
|
12823
12940
|
readonly COLLECTIONS: "collections";
|
|
12824
|
-
readonly
|
|
12941
|
+
readonly BLOGS: "blogs";
|
|
12825
12942
|
readonly UNIQUE_PAGES: "unique-pages";
|
|
12826
12943
|
};
|
|
12827
12944
|
export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
|
|
@@ -12879,6 +12996,33 @@ export interface SubCategories {
|
|
|
12879
12996
|
*/
|
|
12880
12997
|
'_id': string;
|
|
12881
12998
|
}
|
|
12999
|
+
/**
|
|
13000
|
+
*
|
|
13001
|
+
* @export
|
|
13002
|
+
* @enum {string}
|
|
13003
|
+
*/
|
|
13004
|
+
export declare const SubscriptionPlanEnum: {
|
|
13005
|
+
readonly ADDON_BANDWIDTH: "addon-bandwidth";
|
|
13006
|
+
readonly STANDARD_B2C: "standard-b2c";
|
|
13007
|
+
readonly ADVANCED_B2C: "advanced-b2c";
|
|
13008
|
+
readonly PREMIUM_B2C: "premium-b2c";
|
|
13009
|
+
readonly STANDARD_CMS: "standard-cms";
|
|
13010
|
+
readonly ADVANCED_CMS: "advanced-cms";
|
|
13011
|
+
readonly PREMIUM_CMS: "premium-cms";
|
|
13012
|
+
};
|
|
13013
|
+
export type SubscriptionPlanEnum = typeof SubscriptionPlanEnum[keyof typeof SubscriptionPlanEnum];
|
|
13014
|
+
/**
|
|
13015
|
+
*
|
|
13016
|
+
* @export
|
|
13017
|
+
* @enum {string}
|
|
13018
|
+
*/
|
|
13019
|
+
export declare const SubscriptionStatusEnum: {
|
|
13020
|
+
readonly ACTIVE: "active";
|
|
13021
|
+
readonly CANCELED: "canceled";
|
|
13022
|
+
readonly EXPIRED: "expired";
|
|
13023
|
+
readonly PENDING: "pending";
|
|
13024
|
+
};
|
|
13025
|
+
export type SubscriptionStatusEnum = typeof SubscriptionStatusEnum[keyof typeof SubscriptionStatusEnum];
|
|
12882
13026
|
/**
|
|
12883
13027
|
*
|
|
12884
13028
|
* @export
|
|
@@ -15195,27 +15339,27 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15195
15339
|
/**
|
|
15196
15340
|
*
|
|
15197
15341
|
* @param {string} id
|
|
15198
|
-
* @param {
|
|
15342
|
+
* @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
|
|
15199
15343
|
* @param {*} [options] Override http request option.
|
|
15200
15344
|
* @throws {RequiredError}
|
|
15201
15345
|
*/
|
|
15202
|
-
|
|
15346
|
+
createCompanyPaymentGateways: (id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15203
15347
|
/**
|
|
15204
15348
|
*
|
|
15205
15349
|
* @param {string} id
|
|
15206
|
-
* @param {
|
|
15350
|
+
* @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
|
|
15207
15351
|
* @param {*} [options] Override http request option.
|
|
15208
15352
|
* @throws {RequiredError}
|
|
15209
15353
|
*/
|
|
15210
|
-
|
|
15354
|
+
createCompanyShippingProviders: (id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15211
15355
|
/**
|
|
15212
15356
|
*
|
|
15213
15357
|
* @param {string} id
|
|
15214
|
-
* @param {
|
|
15358
|
+
* @param {ISubscriptionPostRequest} iSubscriptionPostRequest
|
|
15215
15359
|
* @param {*} [options] Override http request option.
|
|
15216
15360
|
* @throws {RequiredError}
|
|
15217
15361
|
*/
|
|
15218
|
-
|
|
15362
|
+
createCompanySubscription: (id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15219
15363
|
/**
|
|
15220
15364
|
*
|
|
15221
15365
|
* @param {string} id
|
|
@@ -15342,13 +15486,6 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15342
15486
|
* @throws {RequiredError}
|
|
15343
15487
|
*/
|
|
15344
15488
|
getCompanyDashboard: (id: string, start?: string, end?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15345
|
-
/**
|
|
15346
|
-
*
|
|
15347
|
-
* @param {string} id
|
|
15348
|
-
* @param {*} [options] Override http request option.
|
|
15349
|
-
* @throws {RequiredError}
|
|
15350
|
-
*/
|
|
15351
|
-
getCompanyMonthlyBandwidth: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15352
15489
|
/**
|
|
15353
15490
|
*
|
|
15354
15491
|
* @param {string} id
|
|
@@ -15359,43 +15496,44 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15359
15496
|
/**
|
|
15360
15497
|
*
|
|
15361
15498
|
* @param {string} id
|
|
15362
|
-
* @param {string} paymentId
|
|
15363
15499
|
* @param {*} [options] Override http request option.
|
|
15364
15500
|
* @throws {RequiredError}
|
|
15365
15501
|
*/
|
|
15366
|
-
|
|
15502
|
+
getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15367
15503
|
/**
|
|
15368
15504
|
*
|
|
15369
15505
|
* @param {string} id
|
|
15506
|
+
* @param {ReviewStatusEnum} [status]
|
|
15370
15507
|
* @param {*} [options] Override http request option.
|
|
15371
15508
|
* @throws {RequiredError}
|
|
15372
15509
|
*/
|
|
15373
|
-
|
|
15510
|
+
getCompanyProductReviews: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15374
15511
|
/**
|
|
15375
15512
|
*
|
|
15376
15513
|
* @param {string} id
|
|
15377
|
-
* @param {
|
|
15378
|
-
* @param {number} [page]
|
|
15514
|
+
* @param {ReviewStatusEnum} [status]
|
|
15379
15515
|
* @param {*} [options] Override http request option.
|
|
15380
15516
|
* @throws {RequiredError}
|
|
15381
15517
|
*/
|
|
15382
|
-
|
|
15518
|
+
getCompanyReviewCount: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15383
15519
|
/**
|
|
15384
15520
|
*
|
|
15385
15521
|
* @param {string} id
|
|
15386
|
-
* @param {
|
|
15522
|
+
* @param {string} paymentId
|
|
15387
15523
|
* @param {*} [options] Override http request option.
|
|
15388
15524
|
* @throws {RequiredError}
|
|
15389
15525
|
*/
|
|
15390
|
-
|
|
15526
|
+
getCompanySubscription: (id: string, paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15391
15527
|
/**
|
|
15392
15528
|
*
|
|
15393
15529
|
* @param {string} id
|
|
15394
|
-
* @param {
|
|
15530
|
+
* @param {number} [page]
|
|
15531
|
+
* @param {number} [itemsPerPage]
|
|
15532
|
+
* @param {SubscriptionStatusEnum} [status]
|
|
15395
15533
|
* @param {*} [options] Override http request option.
|
|
15396
15534
|
* @throws {RequiredError}
|
|
15397
15535
|
*/
|
|
15398
|
-
|
|
15536
|
+
getCompanySubscriptions: (id: string, page?: number, itemsPerPage?: number, status?: SubscriptionStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15399
15537
|
/**
|
|
15400
15538
|
*
|
|
15401
15539
|
* @param {string} id
|
|
@@ -15567,27 +15705,27 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15567
15705
|
/**
|
|
15568
15706
|
*
|
|
15569
15707
|
* @param {string} id
|
|
15570
|
-
* @param {
|
|
15708
|
+
* @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
|
|
15571
15709
|
* @param {*} [options] Override http request option.
|
|
15572
15710
|
* @throws {RequiredError}
|
|
15573
15711
|
*/
|
|
15574
|
-
|
|
15712
|
+
createCompanyPaymentGateways(id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15575
15713
|
/**
|
|
15576
15714
|
*
|
|
15577
15715
|
* @param {string} id
|
|
15578
|
-
* @param {
|
|
15716
|
+
* @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
|
|
15579
15717
|
* @param {*} [options] Override http request option.
|
|
15580
15718
|
* @throws {RequiredError}
|
|
15581
15719
|
*/
|
|
15582
|
-
|
|
15720
|
+
createCompanyShippingProviders(id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15583
15721
|
/**
|
|
15584
15722
|
*
|
|
15585
15723
|
* @param {string} id
|
|
15586
|
-
* @param {
|
|
15724
|
+
* @param {ISubscriptionPostRequest} iSubscriptionPostRequest
|
|
15587
15725
|
* @param {*} [options] Override http request option.
|
|
15588
15726
|
* @throws {RequiredError}
|
|
15589
15727
|
*/
|
|
15590
|
-
|
|
15728
|
+
createCompanySubscription(id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
|
|
15591
15729
|
/**
|
|
15592
15730
|
*
|
|
15593
15731
|
* @param {string} id
|
|
@@ -15714,13 +15852,6 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15714
15852
|
* @throws {RequiredError}
|
|
15715
15853
|
*/
|
|
15716
15854
|
getCompanyDashboard(id: string, start?: string, end?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyDashboardResponse>>;
|
|
15717
|
-
/**
|
|
15718
|
-
*
|
|
15719
|
-
* @param {string} id
|
|
15720
|
-
* @param {*} [options] Override http request option.
|
|
15721
|
-
* @throws {RequiredError}
|
|
15722
|
-
*/
|
|
15723
|
-
getCompanyMonthlyBandwidth(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyMonthlyBandwidthResponse>>;
|
|
15724
15855
|
/**
|
|
15725
15856
|
*
|
|
15726
15857
|
* @param {string} id
|
|
@@ -15731,43 +15862,44 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15731
15862
|
/**
|
|
15732
15863
|
*
|
|
15733
15864
|
* @param {string} id
|
|
15734
|
-
* @param {string} paymentId
|
|
15735
15865
|
* @param {*} [options] Override http request option.
|
|
15736
15866
|
* @throws {RequiredError}
|
|
15737
15867
|
*/
|
|
15738
|
-
|
|
15868
|
+
getCompanyPaymentGateways(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyPaymentGatewaysResponse>>;
|
|
15739
15869
|
/**
|
|
15740
15870
|
*
|
|
15741
15871
|
* @param {string} id
|
|
15872
|
+
* @param {ReviewStatusEnum} [status]
|
|
15742
15873
|
* @param {*} [options] Override http request option.
|
|
15743
15874
|
* @throws {RequiredError}
|
|
15744
15875
|
*/
|
|
15745
|
-
|
|
15876
|
+
getCompanyProductReviews(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductReviewsPopulateResponse>>;
|
|
15746
15877
|
/**
|
|
15747
15878
|
*
|
|
15748
15879
|
* @param {string} id
|
|
15749
|
-
* @param {
|
|
15750
|
-
* @param {number} [page]
|
|
15880
|
+
* @param {ReviewStatusEnum} [status]
|
|
15751
15881
|
* @param {*} [options] Override http request option.
|
|
15752
15882
|
* @throws {RequiredError}
|
|
15753
15883
|
*/
|
|
15754
|
-
|
|
15884
|
+
getCompanyReviewCount(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMyProductReviewCount200Response>>;
|
|
15755
15885
|
/**
|
|
15756
15886
|
*
|
|
15757
15887
|
* @param {string} id
|
|
15758
|
-
* @param {
|
|
15888
|
+
* @param {string} paymentId
|
|
15759
15889
|
* @param {*} [options] Override http request option.
|
|
15760
15890
|
* @throws {RequiredError}
|
|
15761
15891
|
*/
|
|
15762
|
-
|
|
15892
|
+
getCompanySubscription(id: string, paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ISubscription>>;
|
|
15763
15893
|
/**
|
|
15764
15894
|
*
|
|
15765
15895
|
* @param {string} id
|
|
15766
|
-
* @param {
|
|
15896
|
+
* @param {number} [page]
|
|
15897
|
+
* @param {number} [itemsPerPage]
|
|
15898
|
+
* @param {SubscriptionStatusEnum} [status]
|
|
15767
15899
|
* @param {*} [options] Override http request option.
|
|
15768
15900
|
* @throws {RequiredError}
|
|
15769
15901
|
*/
|
|
15770
|
-
|
|
15902
|
+
getCompanySubscriptions(id: string, page?: number, itemsPerPage?: number, status?: SubscriptionStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ISubscriptionsResponse>>;
|
|
15771
15903
|
/**
|
|
15772
15904
|
*
|
|
15773
15905
|
* @param {string} id
|
|
@@ -15935,25 +16067,25 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15935
16067
|
createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15936
16068
|
/**
|
|
15937
16069
|
*
|
|
15938
|
-
* @param {
|
|
16070
|
+
* @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
15939
16071
|
* @param {*} [options] Override http request option.
|
|
15940
16072
|
* @throws {RequiredError}
|
|
15941
16073
|
*/
|
|
15942
|
-
|
|
16074
|
+
createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15943
16075
|
/**
|
|
15944
16076
|
*
|
|
15945
|
-
* @param {
|
|
16077
|
+
* @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
15946
16078
|
* @param {*} [options] Override http request option.
|
|
15947
16079
|
* @throws {RequiredError}
|
|
15948
16080
|
*/
|
|
15949
|
-
|
|
16081
|
+
createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15950
16082
|
/**
|
|
15951
16083
|
*
|
|
15952
|
-
* @param {
|
|
16084
|
+
* @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
|
|
15953
16085
|
* @param {*} [options] Override http request option.
|
|
15954
16086
|
* @throws {RequiredError}
|
|
15955
16087
|
*/
|
|
15956
|
-
|
|
16088
|
+
createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
|
|
15957
16089
|
/**
|
|
15958
16090
|
*
|
|
15959
16091
|
* @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
@@ -16052,13 +16184,6 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
16052
16184
|
* @throws {RequiredError}
|
|
16053
16185
|
*/
|
|
16054
16186
|
getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyDashboardResponse>;
|
|
16055
|
-
/**
|
|
16056
|
-
*
|
|
16057
|
-
* @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
|
|
16058
|
-
* @param {*} [options] Override http request option.
|
|
16059
|
-
* @throws {RequiredError}
|
|
16060
|
-
*/
|
|
16061
|
-
getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyMonthlyBandwidthResponse>;
|
|
16062
16187
|
/**
|
|
16063
16188
|
*
|
|
16064
16189
|
* @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
|
|
@@ -16068,39 +16193,39 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
16068
16193
|
getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCompanyOnboarding200Response>;
|
|
16069
16194
|
/**
|
|
16070
16195
|
*
|
|
16071
|
-
* @param {
|
|
16196
|
+
* @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
16072
16197
|
* @param {*} [options] Override http request option.
|
|
16073
16198
|
* @throws {RequiredError}
|
|
16074
16199
|
*/
|
|
16075
|
-
|
|
16200
|
+
getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
|
|
16076
16201
|
/**
|
|
16077
16202
|
*
|
|
16078
|
-
* @param {
|
|
16203
|
+
* @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
|
|
16079
16204
|
* @param {*} [options] Override http request option.
|
|
16080
16205
|
* @throws {RequiredError}
|
|
16081
16206
|
*/
|
|
16082
|
-
|
|
16207
|
+
getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IProductReviewsPopulateResponse>;
|
|
16083
16208
|
/**
|
|
16084
16209
|
*
|
|
16085
|
-
* @param {
|
|
16210
|
+
* @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
|
|
16086
16211
|
* @param {*} [options] Override http request option.
|
|
16087
16212
|
* @throws {RequiredError}
|
|
16088
16213
|
*/
|
|
16089
|
-
|
|
16214
|
+
getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetMyProductReviewCount200Response>;
|
|
16090
16215
|
/**
|
|
16091
16216
|
*
|
|
16092
|
-
* @param {
|
|
16217
|
+
* @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
|
|
16093
16218
|
* @param {*} [options] Override http request option.
|
|
16094
16219
|
* @throws {RequiredError}
|
|
16095
16220
|
*/
|
|
16096
|
-
|
|
16221
|
+
getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscription>;
|
|
16097
16222
|
/**
|
|
16098
16223
|
*
|
|
16099
|
-
* @param {
|
|
16224
|
+
* @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
|
|
16100
16225
|
* @param {*} [options] Override http request option.
|
|
16101
16226
|
* @throws {RequiredError}
|
|
16102
16227
|
*/
|
|
16103
|
-
|
|
16228
|
+
getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscriptionsResponse>;
|
|
16104
16229
|
/**
|
|
16105
16230
|
*
|
|
16106
16231
|
* @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
|
|
@@ -16290,25 +16415,6 @@ export interface CompanyApiCreateCompanyLanguageRequest {
|
|
|
16290
16415
|
*/
|
|
16291
16416
|
readonly iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest;
|
|
16292
16417
|
}
|
|
16293
|
-
/**
|
|
16294
|
-
* Request parameters for createCompanyPayment operation in CompanyApi.
|
|
16295
|
-
* @export
|
|
16296
|
-
* @interface CompanyApiCreateCompanyPaymentRequest
|
|
16297
|
-
*/
|
|
16298
|
-
export interface CompanyApiCreateCompanyPaymentRequest {
|
|
16299
|
-
/**
|
|
16300
|
-
*
|
|
16301
|
-
* @type {string}
|
|
16302
|
-
* @memberof CompanyApiCreateCompanyPayment
|
|
16303
|
-
*/
|
|
16304
|
-
readonly id: string;
|
|
16305
|
-
/**
|
|
16306
|
-
*
|
|
16307
|
-
* @type {IPaymentPostRequest}
|
|
16308
|
-
* @memberof CompanyApiCreateCompanyPayment
|
|
16309
|
-
*/
|
|
16310
|
-
readonly iPaymentPostRequest: IPaymentPostRequest;
|
|
16311
|
-
}
|
|
16312
16418
|
/**
|
|
16313
16419
|
* Request parameters for createCompanyPaymentGateways operation in CompanyApi.
|
|
16314
16420
|
* @export
|
|
@@ -16347,6 +16453,25 @@ export interface CompanyApiCreateCompanyShippingProvidersRequest {
|
|
|
16347
16453
|
*/
|
|
16348
16454
|
readonly iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest;
|
|
16349
16455
|
}
|
|
16456
|
+
/**
|
|
16457
|
+
* Request parameters for createCompanySubscription operation in CompanyApi.
|
|
16458
|
+
* @export
|
|
16459
|
+
* @interface CompanyApiCreateCompanySubscriptionRequest
|
|
16460
|
+
*/
|
|
16461
|
+
export interface CompanyApiCreateCompanySubscriptionRequest {
|
|
16462
|
+
/**
|
|
16463
|
+
*
|
|
16464
|
+
* @type {string}
|
|
16465
|
+
* @memberof CompanyApiCreateCompanySubscription
|
|
16466
|
+
*/
|
|
16467
|
+
readonly id: string;
|
|
16468
|
+
/**
|
|
16469
|
+
*
|
|
16470
|
+
* @type {ISubscriptionPostRequest}
|
|
16471
|
+
* @memberof CompanyApiCreateCompanySubscription
|
|
16472
|
+
*/
|
|
16473
|
+
readonly iSubscriptionPostRequest: ISubscriptionPostRequest;
|
|
16474
|
+
}
|
|
16350
16475
|
/**
|
|
16351
16476
|
* Request parameters for createCompanyWarehouses operation in CompanyApi.
|
|
16352
16477
|
* @export
|
|
@@ -16698,125 +16823,118 @@ export interface CompanyApiGetCompanyDashboardRequest {
|
|
|
16698
16823
|
readonly end?: string;
|
|
16699
16824
|
}
|
|
16700
16825
|
/**
|
|
16701
|
-
* Request parameters for
|
|
16826
|
+
* Request parameters for getCompanyOnboarding operation in CompanyApi.
|
|
16702
16827
|
* @export
|
|
16703
|
-
* @interface
|
|
16828
|
+
* @interface CompanyApiGetCompanyOnboardingRequest
|
|
16704
16829
|
*/
|
|
16705
|
-
export interface
|
|
16830
|
+
export interface CompanyApiGetCompanyOnboardingRequest {
|
|
16706
16831
|
/**
|
|
16707
16832
|
*
|
|
16708
16833
|
* @type {string}
|
|
16709
|
-
* @memberof
|
|
16834
|
+
* @memberof CompanyApiGetCompanyOnboarding
|
|
16710
16835
|
*/
|
|
16711
16836
|
readonly id: string;
|
|
16712
16837
|
}
|
|
16713
16838
|
/**
|
|
16714
|
-
* Request parameters for
|
|
16839
|
+
* Request parameters for getCompanyPaymentGateways operation in CompanyApi.
|
|
16715
16840
|
* @export
|
|
16716
|
-
* @interface
|
|
16841
|
+
* @interface CompanyApiGetCompanyPaymentGatewaysRequest
|
|
16717
16842
|
*/
|
|
16718
|
-
export interface
|
|
16843
|
+
export interface CompanyApiGetCompanyPaymentGatewaysRequest {
|
|
16719
16844
|
/**
|
|
16720
16845
|
*
|
|
16721
16846
|
* @type {string}
|
|
16722
|
-
* @memberof
|
|
16847
|
+
* @memberof CompanyApiGetCompanyPaymentGateways
|
|
16723
16848
|
*/
|
|
16724
16849
|
readonly id: string;
|
|
16725
16850
|
}
|
|
16726
16851
|
/**
|
|
16727
|
-
* Request parameters for
|
|
16852
|
+
* Request parameters for getCompanyProductReviews operation in CompanyApi.
|
|
16728
16853
|
* @export
|
|
16729
|
-
* @interface
|
|
16854
|
+
* @interface CompanyApiGetCompanyProductReviewsRequest
|
|
16730
16855
|
*/
|
|
16731
|
-
export interface
|
|
16856
|
+
export interface CompanyApiGetCompanyProductReviewsRequest {
|
|
16732
16857
|
/**
|
|
16733
16858
|
*
|
|
16734
16859
|
* @type {string}
|
|
16735
|
-
* @memberof
|
|
16860
|
+
* @memberof CompanyApiGetCompanyProductReviews
|
|
16736
16861
|
*/
|
|
16737
16862
|
readonly id: string;
|
|
16738
16863
|
/**
|
|
16739
16864
|
*
|
|
16740
|
-
* @type {
|
|
16741
|
-
* @memberof
|
|
16865
|
+
* @type {ReviewStatusEnum}
|
|
16866
|
+
* @memberof CompanyApiGetCompanyProductReviews
|
|
16742
16867
|
*/
|
|
16743
|
-
readonly
|
|
16868
|
+
readonly status?: ReviewStatusEnum;
|
|
16744
16869
|
}
|
|
16745
16870
|
/**
|
|
16746
|
-
* Request parameters for
|
|
16871
|
+
* Request parameters for getCompanyReviewCount operation in CompanyApi.
|
|
16747
16872
|
* @export
|
|
16748
|
-
* @interface
|
|
16873
|
+
* @interface CompanyApiGetCompanyReviewCountRequest
|
|
16749
16874
|
*/
|
|
16750
|
-
export interface
|
|
16875
|
+
export interface CompanyApiGetCompanyReviewCountRequest {
|
|
16751
16876
|
/**
|
|
16752
16877
|
*
|
|
16753
16878
|
* @type {string}
|
|
16754
|
-
* @memberof
|
|
16879
|
+
* @memberof CompanyApiGetCompanyReviewCount
|
|
16755
16880
|
*/
|
|
16756
16881
|
readonly id: string;
|
|
16882
|
+
/**
|
|
16883
|
+
*
|
|
16884
|
+
* @type {ReviewStatusEnum}
|
|
16885
|
+
* @memberof CompanyApiGetCompanyReviewCount
|
|
16886
|
+
*/
|
|
16887
|
+
readonly status?: ReviewStatusEnum;
|
|
16757
16888
|
}
|
|
16758
16889
|
/**
|
|
16759
|
-
* Request parameters for
|
|
16890
|
+
* Request parameters for getCompanySubscription operation in CompanyApi.
|
|
16760
16891
|
* @export
|
|
16761
|
-
* @interface
|
|
16892
|
+
* @interface CompanyApiGetCompanySubscriptionRequest
|
|
16762
16893
|
*/
|
|
16763
|
-
export interface
|
|
16894
|
+
export interface CompanyApiGetCompanySubscriptionRequest {
|
|
16764
16895
|
/**
|
|
16765
16896
|
*
|
|
16766
16897
|
* @type {string}
|
|
16767
|
-
* @memberof
|
|
16898
|
+
* @memberof CompanyApiGetCompanySubscription
|
|
16768
16899
|
*/
|
|
16769
16900
|
readonly id: string;
|
|
16770
16901
|
/**
|
|
16771
16902
|
*
|
|
16772
|
-
* @type {
|
|
16773
|
-
* @memberof
|
|
16774
|
-
*/
|
|
16775
|
-
readonly itemsPerPage?: number;
|
|
16776
|
-
/**
|
|
16777
|
-
*
|
|
16778
|
-
* @type {number}
|
|
16779
|
-
* @memberof CompanyApiGetCompanyPayments
|
|
16903
|
+
* @type {string}
|
|
16904
|
+
* @memberof CompanyApiGetCompanySubscription
|
|
16780
16905
|
*/
|
|
16781
|
-
readonly
|
|
16906
|
+
readonly paymentId: string;
|
|
16782
16907
|
}
|
|
16783
16908
|
/**
|
|
16784
|
-
* Request parameters for
|
|
16909
|
+
* Request parameters for getCompanySubscriptions operation in CompanyApi.
|
|
16785
16910
|
* @export
|
|
16786
|
-
* @interface
|
|
16911
|
+
* @interface CompanyApiGetCompanySubscriptionsRequest
|
|
16787
16912
|
*/
|
|
16788
|
-
export interface
|
|
16913
|
+
export interface CompanyApiGetCompanySubscriptionsRequest {
|
|
16789
16914
|
/**
|
|
16790
16915
|
*
|
|
16791
16916
|
* @type {string}
|
|
16792
|
-
* @memberof
|
|
16917
|
+
* @memberof CompanyApiGetCompanySubscriptions
|
|
16793
16918
|
*/
|
|
16794
16919
|
readonly id: string;
|
|
16795
16920
|
/**
|
|
16796
16921
|
*
|
|
16797
|
-
* @type {
|
|
16798
|
-
* @memberof
|
|
16922
|
+
* @type {number}
|
|
16923
|
+
* @memberof CompanyApiGetCompanySubscriptions
|
|
16799
16924
|
*/
|
|
16800
|
-
readonly
|
|
16801
|
-
}
|
|
16802
|
-
/**
|
|
16803
|
-
* Request parameters for getCompanyReviewCount operation in CompanyApi.
|
|
16804
|
-
* @export
|
|
16805
|
-
* @interface CompanyApiGetCompanyReviewCountRequest
|
|
16806
|
-
*/
|
|
16807
|
-
export interface CompanyApiGetCompanyReviewCountRequest {
|
|
16925
|
+
readonly page?: number;
|
|
16808
16926
|
/**
|
|
16809
16927
|
*
|
|
16810
|
-
* @type {
|
|
16811
|
-
* @memberof
|
|
16928
|
+
* @type {number}
|
|
16929
|
+
* @memberof CompanyApiGetCompanySubscriptions
|
|
16812
16930
|
*/
|
|
16813
|
-
readonly
|
|
16931
|
+
readonly itemsPerPage?: number;
|
|
16814
16932
|
/**
|
|
16815
16933
|
*
|
|
16816
|
-
* @type {
|
|
16817
|
-
* @memberof
|
|
16934
|
+
* @type {SubscriptionStatusEnum}
|
|
16935
|
+
* @memberof CompanyApiGetCompanySubscriptions
|
|
16818
16936
|
*/
|
|
16819
|
-
readonly status?:
|
|
16937
|
+
readonly status?: SubscriptionStatusEnum;
|
|
16820
16938
|
}
|
|
16821
16939
|
/**
|
|
16822
16940
|
* Request parameters for getCompanyUsers operation in CompanyApi.
|
|
@@ -17176,28 +17294,28 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
17176
17294
|
createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17177
17295
|
/**
|
|
17178
17296
|
*
|
|
17179
|
-
* @param {
|
|
17297
|
+
* @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
17180
17298
|
* @param {*} [options] Override http request option.
|
|
17181
17299
|
* @throws {RequiredError}
|
|
17182
17300
|
* @memberof CompanyApi
|
|
17183
17301
|
*/
|
|
17184
|
-
|
|
17302
|
+
createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17185
17303
|
/**
|
|
17186
17304
|
*
|
|
17187
|
-
* @param {
|
|
17305
|
+
* @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
17188
17306
|
* @param {*} [options] Override http request option.
|
|
17189
17307
|
* @throws {RequiredError}
|
|
17190
17308
|
* @memberof CompanyApi
|
|
17191
17309
|
*/
|
|
17192
|
-
|
|
17310
|
+
createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17193
17311
|
/**
|
|
17194
17312
|
*
|
|
17195
|
-
* @param {
|
|
17313
|
+
* @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
|
|
17196
17314
|
* @param {*} [options] Override http request option.
|
|
17197
17315
|
* @throws {RequiredError}
|
|
17198
17316
|
* @memberof CompanyApi
|
|
17199
17317
|
*/
|
|
17200
|
-
|
|
17318
|
+
createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
|
|
17201
17319
|
/**
|
|
17202
17320
|
*
|
|
17203
17321
|
* @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
@@ -17310,14 +17428,6 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
17310
17428
|
* @memberof CompanyApi
|
|
17311
17429
|
*/
|
|
17312
17430
|
getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyDashboardResponse, any>>;
|
|
17313
|
-
/**
|
|
17314
|
-
*
|
|
17315
|
-
* @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
|
|
17316
|
-
* @param {*} [options] Override http request option.
|
|
17317
|
-
* @throws {RequiredError}
|
|
17318
|
-
* @memberof CompanyApi
|
|
17319
|
-
*/
|
|
17320
|
-
getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyMonthlyBandwidthResponse, any>>;
|
|
17321
17431
|
/**
|
|
17322
17432
|
*
|
|
17323
17433
|
* @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
|
|
@@ -17328,44 +17438,44 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
17328
17438
|
getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCompanyOnboarding200Response, any>>;
|
|
17329
17439
|
/**
|
|
17330
17440
|
*
|
|
17331
|
-
* @param {
|
|
17441
|
+
* @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
17332
17442
|
* @param {*} [options] Override http request option.
|
|
17333
17443
|
* @throws {RequiredError}
|
|
17334
17444
|
* @memberof CompanyApi
|
|
17335
17445
|
*/
|
|
17336
|
-
|
|
17446
|
+
getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
|
|
17337
17447
|
/**
|
|
17338
17448
|
*
|
|
17339
|
-
* @param {
|
|
17449
|
+
* @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
|
|
17340
17450
|
* @param {*} [options] Override http request option.
|
|
17341
17451
|
* @throws {RequiredError}
|
|
17342
17452
|
* @memberof CompanyApi
|
|
17343
17453
|
*/
|
|
17344
|
-
|
|
17454
|
+
getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductReviewsPopulateResponse, any>>;
|
|
17345
17455
|
/**
|
|
17346
17456
|
*
|
|
17347
|
-
* @param {
|
|
17457
|
+
* @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
|
|
17348
17458
|
* @param {*} [options] Override http request option.
|
|
17349
17459
|
* @throws {RequiredError}
|
|
17350
17460
|
* @memberof CompanyApi
|
|
17351
17461
|
*/
|
|
17352
|
-
|
|
17462
|
+
getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMyProductReviewCount200Response, any>>;
|
|
17353
17463
|
/**
|
|
17354
17464
|
*
|
|
17355
|
-
* @param {
|
|
17465
|
+
* @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
|
|
17356
17466
|
* @param {*} [options] Override http request option.
|
|
17357
17467
|
* @throws {RequiredError}
|
|
17358
17468
|
* @memberof CompanyApi
|
|
17359
17469
|
*/
|
|
17360
|
-
|
|
17470
|
+
getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscription, any>>;
|
|
17361
17471
|
/**
|
|
17362
17472
|
*
|
|
17363
|
-
* @param {
|
|
17473
|
+
* @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
|
|
17364
17474
|
* @param {*} [options] Override http request option.
|
|
17365
17475
|
* @throws {RequiredError}
|
|
17366
17476
|
* @memberof CompanyApi
|
|
17367
17477
|
*/
|
|
17368
|
-
|
|
17478
|
+
getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscriptionsResponse, any>>;
|
|
17369
17479
|
/**
|
|
17370
17480
|
*
|
|
17371
17481
|
* @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
|
|
@@ -20740,12 +20850,6 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
20740
20850
|
* @throws {RequiredError}
|
|
20741
20851
|
*/
|
|
20742
20852
|
getPlanById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20743
|
-
/**
|
|
20744
|
-
*
|
|
20745
|
-
* @param {*} [options] Override http request option.
|
|
20746
|
-
* @throws {RequiredError}
|
|
20747
|
-
*/
|
|
20748
|
-
getPlanLimits: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20749
20853
|
/**
|
|
20750
20854
|
*
|
|
20751
20855
|
* @param {number} [page]
|
|
@@ -20757,11 +20861,12 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
20757
20861
|
* @param {OrderEnum} [order]
|
|
20758
20862
|
* @param {string} [sort]
|
|
20759
20863
|
* @param {PlanStatusEnum} [status]
|
|
20760
|
-
* @param {
|
|
20864
|
+
* @param {GetPlansCategoryEnum} [category]
|
|
20865
|
+
* @param {string} [company]
|
|
20761
20866
|
* @param {*} [options] Override http request option.
|
|
20762
20867
|
* @throws {RequiredError}
|
|
20763
20868
|
*/
|
|
20764
|
-
getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum,
|
|
20869
|
+
getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, category?: GetPlansCategoryEnum, company?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20765
20870
|
/**
|
|
20766
20871
|
*
|
|
20767
20872
|
* @param {string} id
|
|
@@ -20797,12 +20902,6 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
|
|
|
20797
20902
|
* @throws {RequiredError}
|
|
20798
20903
|
*/
|
|
20799
20904
|
getPlanById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlanResponse>>;
|
|
20800
|
-
/**
|
|
20801
|
-
*
|
|
20802
|
-
* @param {*} [options] Override http request option.
|
|
20803
|
-
* @throws {RequiredError}
|
|
20804
|
-
*/
|
|
20805
|
-
getPlanLimits(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordPlanTypeEnumMonthlyBandwidthNumber>>;
|
|
20806
20905
|
/**
|
|
20807
20906
|
*
|
|
20808
20907
|
* @param {number} [page]
|
|
@@ -20814,11 +20913,12 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
|
|
|
20814
20913
|
* @param {OrderEnum} [order]
|
|
20815
20914
|
* @param {string} [sort]
|
|
20816
20915
|
* @param {PlanStatusEnum} [status]
|
|
20817
|
-
* @param {
|
|
20916
|
+
* @param {GetPlansCategoryEnum} [category]
|
|
20917
|
+
* @param {string} [company]
|
|
20818
20918
|
* @param {*} [options] Override http request option.
|
|
20819
20919
|
* @throws {RequiredError}
|
|
20820
20920
|
*/
|
|
20821
|
-
getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum,
|
|
20921
|
+
getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, category?: GetPlansCategoryEnum, company?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlansResponse>>;
|
|
20822
20922
|
/**
|
|
20823
20923
|
*
|
|
20824
20924
|
* @param {string} id
|
|
@@ -20854,12 +20954,6 @@ export declare const PlanApiFactory: (configuration?: Configuration, basePath?:
|
|
|
20854
20954
|
* @throws {RequiredError}
|
|
20855
20955
|
*/
|
|
20856
20956
|
getPlanById(requestParameters: PlanApiGetPlanByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPlanResponse>;
|
|
20857
|
-
/**
|
|
20858
|
-
*
|
|
20859
|
-
* @param {*} [options] Override http request option.
|
|
20860
|
-
* @throws {RequiredError}
|
|
20861
|
-
*/
|
|
20862
|
-
getPlanLimits(options?: RawAxiosRequestConfig): AxiosPromise<RecordPlanTypeEnumMonthlyBandwidthNumber>;
|
|
20863
20957
|
/**
|
|
20864
20958
|
*
|
|
20865
20959
|
* @param {PlanApiGetPlansRequest} requestParameters Request parameters.
|
|
@@ -20976,10 +21070,16 @@ export interface PlanApiGetPlansRequest {
|
|
|
20976
21070
|
readonly status?: PlanStatusEnum;
|
|
20977
21071
|
/**
|
|
20978
21072
|
*
|
|
20979
|
-
* @type {
|
|
21073
|
+
* @type {'addon-bandwidth' | 'b2c' | 'cms'}
|
|
21074
|
+
* @memberof PlanApiGetPlans
|
|
21075
|
+
*/
|
|
21076
|
+
readonly category?: GetPlansCategoryEnum;
|
|
21077
|
+
/**
|
|
21078
|
+
*
|
|
21079
|
+
* @type {string}
|
|
20980
21080
|
* @memberof PlanApiGetPlans
|
|
20981
21081
|
*/
|
|
20982
|
-
readonly
|
|
21082
|
+
readonly company?: string;
|
|
20983
21083
|
}
|
|
20984
21084
|
/**
|
|
20985
21085
|
* Request parameters for updatePlan operation in PlanApi.
|
|
@@ -21031,13 +21131,6 @@ export declare class PlanApi extends BaseAPI {
|
|
|
21031
21131
|
* @memberof PlanApi
|
|
21032
21132
|
*/
|
|
21033
21133
|
getPlanById(requestParameters: PlanApiGetPlanByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPlanResponse, any>>;
|
|
21034
|
-
/**
|
|
21035
|
-
*
|
|
21036
|
-
* @param {*} [options] Override http request option.
|
|
21037
|
-
* @throws {RequiredError}
|
|
21038
|
-
* @memberof PlanApi
|
|
21039
|
-
*/
|
|
21040
|
-
getPlanLimits(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordPlanTypeEnumMonthlyBandwidthNumber, any>>;
|
|
21041
21134
|
/**
|
|
21042
21135
|
*
|
|
21043
21136
|
* @param {PlanApiGetPlansRequest} requestParameters Request parameters.
|
|
@@ -21063,6 +21156,15 @@ export declare const GetPlansDateFieldEnum: {
|
|
|
21063
21156
|
readonly UPDATED_AT: "updatedAt";
|
|
21064
21157
|
};
|
|
21065
21158
|
export type GetPlansDateFieldEnum = typeof GetPlansDateFieldEnum[keyof typeof GetPlansDateFieldEnum];
|
|
21159
|
+
/**
|
|
21160
|
+
* @export
|
|
21161
|
+
*/
|
|
21162
|
+
export declare const GetPlansCategoryEnum: {
|
|
21163
|
+
readonly ADDON_BANDWIDTH: "addon-bandwidth";
|
|
21164
|
+
readonly B2C: "b2c";
|
|
21165
|
+
readonly CMS: "cms";
|
|
21166
|
+
};
|
|
21167
|
+
export type GetPlansCategoryEnum = typeof GetPlansCategoryEnum[keyof typeof GetPlansCategoryEnum];
|
|
21066
21168
|
/**
|
|
21067
21169
|
* ProductApi - axios parameter creator
|
|
21068
21170
|
* @export
|