@infisale-client/api 1.3.31 → 1.3.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api/api.d.ts CHANGED
@@ -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
- 'totalBandwidth': number;
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 {PlanTypeEnum}
3322
+ * @type {string}
3343
3323
  * @memberof ICompanyPostRequest
3344
3324
  */
3345
- 'plan': PlanTypeEnum;
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
- 'totalBandwidth': number;
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 {PlanTypeEnum}
6827
+ * @type {string}
6952
6828
  * @memberof IPlanCollectionQueryParams
6953
6829
  */
6954
- 'type'?: PlanTypeEnum;
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 {string}
6863
+ * @type {PlanStatusEnum}
6976
6864
  * @memberof IPlanPatchRequest
6977
6865
  */
6978
- 'description'?: string;
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 {Array<IPlanResponsePriceInner>}
6875
+ * @type {RecordPlanCurrencyEnumNumber}
6988
6876
  * @memberof IPlanPatchRequest
6989
6877
  */
6990
- 'price'?: Array<IPlanResponsePriceInner>;
6878
+ 'monthlyPrice'?: RecordPlanCurrencyEnumNumber;
6991
6879
  /**
6992
6880
  *
6993
- * @type {Array<IPlanResponseAttributesInner>}
6881
+ * @type {RecordPlanCurrencyEnumNumber}
6994
6882
  * @memberof IPlanPatchRequest
6995
6883
  */
6996
- 'attributes'?: Array<IPlanResponseAttributesInner>;
6884
+ 'annuallyPrice'?: RecordPlanCurrencyEnumNumber;
6997
6885
  /**
6998
6886
  *
6999
- * @type {PlanStatusEnum}
6887
+ * @type {IPlanResponseLimits}
7000
6888
  * @memberof IPlanPatchRequest
7001
6889
  */
7002
- 'status'?: PlanStatusEnum;
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
- 'description'?: string;
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 {Array<IPlanResponsePriceInner>}
6930
+ * @type {RecordPlanCurrencyEnumNumber}
7031
6931
  * @memberof IPlanPostRequest
7032
6932
  */
7033
- 'price': Array<IPlanResponsePriceInner>;
6933
+ 'monthlyPrice': RecordPlanCurrencyEnumNumber;
7034
6934
  /**
7035
6935
  *
7036
- * @type {Array<IPlanResponseAttributesInner>}
6936
+ * @type {RecordPlanCurrencyEnumNumber}
7037
6937
  * @memberof IPlanPostRequest
7038
6938
  */
7039
- 'attributes'?: Array<IPlanResponseAttributesInner>;
6939
+ 'annuallyPrice': RecordPlanCurrencyEnumNumber;
7040
6940
  /**
7041
6941
  *
7042
- * @type {PlanStatusEnum}
6942
+ * @type {IPlanResponseLimits}
7043
6943
  * @memberof IPlanPostRequest
7044
6944
  */
7045
- 'status'?: PlanStatusEnum;
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 {Array<IPlanResponsePriceInner>}
6997
+ * @type {string}
7098
6998
  * @memberof IPlanResponse
7099
6999
  */
7100
- 'price': Array<IPlanResponsePriceInner>;
7000
+ 'company'?: string;
7101
7001
  /**
7102
7002
  *
7103
- * @type {Array<IPlanResponseAttributesInner>}
7003
+ * @type {RecordPlanCurrencyEnumNumber}
7104
7004
  * @memberof IPlanResponse
7105
7005
  */
7106
- 'attributes'?: Array<IPlanResponseAttributesInner>;
7006
+ 'monthlyPrice': RecordPlanCurrencyEnumNumber;
7107
7007
  /**
7108
7008
  *
7109
- * @type {PlanStatusEnum}
7009
+ * @type {RecordPlanCurrencyEnumNumber}
7110
7010
  * @memberof IPlanResponse
7111
7011
  */
7112
- 'status': PlanStatusEnum;
7113
- }
7114
- /**
7115
- *
7116
- * @export
7117
- * @interface IPlanResponseAttributesInner
7118
- */
7119
- export interface IPlanResponseAttributesInner {
7012
+ 'annuallyPrice': RecordPlanCurrencyEnumNumber;
7120
7013
  /**
7121
7014
  *
7122
- * @type {boolean}
7123
- * @memberof IPlanResponseAttributesInner
7015
+ * @type {IPlanResponseLimits}
7016
+ * @memberof IPlanResponse
7124
7017
  */
7125
- 'active': boolean;
7018
+ 'limits': IPlanResponseLimits;
7126
7019
  /**
7127
7020
  *
7128
- * @type {string}
7129
- * @memberof IPlanResponseAttributesInner
7021
+ * @type {number}
7022
+ * @memberof IPlanResponse
7130
7023
  */
7131
- 'description': string;
7024
+ 'addonAmount': number;
7132
7025
  /**
7133
7026
  *
7134
- * @type {string}
7135
- * @memberof IPlanResponseAttributesInner
7027
+ * @type {PlanStatusEnum}
7028
+ * @memberof IPlanResponse
7136
7029
  */
7137
- 'title': string;
7030
+ 'status': PlanStatusEnum;
7138
7031
  }
7139
7032
  /**
7140
7033
  *
7141
7034
  * @export
7142
- * @interface IPlanResponsePriceInner
7035
+ * @interface IPlanResponseLimits
7143
7036
  */
7144
- export interface IPlanResponsePriceInner {
7037
+ export interface IPlanResponseLimits {
7145
7038
  /**
7146
7039
  *
7147
- * @type {PlanCurrencyEnum}
7148
- * @memberof IPlanResponsePriceInner
7040
+ * @type {number}
7041
+ * @memberof IPlanResponseLimits
7149
7042
  */
7150
- 'currency': PlanCurrencyEnum;
7043
+ 'users': number;
7151
7044
  /**
7152
7045
  *
7153
7046
  * @type {number}
7154
- * @memberof IPlanResponsePriceInner
7047
+ * @memberof IPlanResponseLimits
7155
7048
  */
7156
- 'annually': number;
7049
+ 'languages': number;
7157
7050
  /**
7158
7051
  *
7159
7052
  * @type {number}
7160
- * @memberof IPlanResponsePriceInner
7053
+ * @memberof IPlanResponseLimits
7161
7054
  */
7162
- 'monthly': number;
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 IPlansResponse
7059
+ * @memberof IPlanResponseLimits
7174
7060
  */
7175
- 'page': number;
7061
+ 'cmsItems': number;
7176
7062
  /**
7177
7063
  *
7178
7064
  * @type {number}
7179
- * @memberof IPlansResponse
7065
+ * @memberof IPlanResponseLimits
7180
7066
  */
7181
- 'itemsPerPage': number;
7067
+ 'cmsCollections': number;
7182
7068
  /**
7183
7069
  *
7184
7070
  * @type {number}
7185
- * @memberof IPlansResponse
7071
+ * @memberof IPlanResponseLimits
7186
7072
  */
7187
- 'total': number;
7073
+ 'storage': number;
7188
7074
  /**
7189
7075
  *
7190
7076
  * @type {number}
7191
- * @memberof IPlansResponse
7077
+ * @memberof IPlanResponseLimits
7192
7078
  */
7193
- 'totalPages': number;
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,189 @@ 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 {SubscriptionPlanEnum}
8340
+ * @memberof ISubscription
8341
+ */
8342
+ 'plan': SubscriptionPlanEnum;
8343
+ /**
8344
+ *
8345
+ * @type {SubscriptionStatusEnum}
8346
+ * @memberof ISubscription
8347
+ */
8348
+ 'status': SubscriptionStatusEnum;
8349
+ /**
8350
+ *
8351
+ * @type {string}
8352
+ * @memberof ISubscription
8353
+ */
8354
+ 'startDate': string;
8355
+ /**
8356
+ *
8357
+ * @type {string}
8358
+ * @memberof ISubscription
8359
+ */
8360
+ 'endDate': string;
8361
+ /**
8362
+ *
8363
+ * @type {IPlanResponseLimits}
8364
+ * @memberof ISubscription
8365
+ */
8366
+ 'limits': IPlanResponseLimits;
8367
+ /**
8368
+ *
8369
+ * @type {number}
8370
+ * @memberof ISubscription
8371
+ */
8372
+ 'price': number;
8373
+ /**
8374
+ *
8375
+ * @type {number}
8376
+ * @memberof ISubscription
8377
+ */
8378
+ 'addonAmount': number;
8379
+ /**
8380
+ *
8381
+ * @type {number}
8382
+ * @memberof ISubscription
8383
+ */
8384
+ 'addonUsage': number;
8385
+ }
8386
+ /**
8387
+ *
8388
+ * @export
8389
+ * @interface ISubscriptionPostRequest
8390
+ */
8391
+ export interface ISubscriptionPostRequest {
8392
+ /**
8393
+ *
8394
+ * @type {string}
8395
+ * @memberof ISubscriptionPostRequest
8396
+ */
8397
+ 'period': ISubscriptionPostRequestPeriodEnum;
8398
+ /**
8399
+ *
8400
+ * @type {SubscriptionStatusEnum}
8401
+ * @memberof ISubscriptionPostRequest
8402
+ */
8403
+ 'status': SubscriptionStatusEnum;
8404
+ }
8405
+ export declare const ISubscriptionPostRequestPeriodEnum: {
8406
+ readonly MONTHLY: "monthly";
8407
+ readonly YEARLY: "yearly";
8408
+ };
8409
+ export type ISubscriptionPostRequestPeriodEnum = typeof ISubscriptionPostRequestPeriodEnum[keyof typeof ISubscriptionPostRequestPeriodEnum];
8410
+ /**
8411
+ *
8412
+ * @export
8413
+ * @interface ISubscriptionQueryParams
8414
+ */
8415
+ export interface ISubscriptionQueryParams {
8416
+ /**
8417
+ *
8418
+ * @type {number}
8419
+ * @memberof ISubscriptionQueryParams
8420
+ */
8421
+ 'page'?: number;
8422
+ /**
8423
+ *
8424
+ * @type {number}
8425
+ * @memberof ISubscriptionQueryParams
8426
+ */
8427
+ 'itemsPerPage'?: number;
8428
+ /**
8429
+ *
8430
+ * @type {SubscriptionStatusEnum}
8431
+ * @memberof ISubscriptionQueryParams
8432
+ */
8433
+ 'status'?: SubscriptionStatusEnum;
8434
+ }
8435
+ /**
8436
+ *
8437
+ * @export
8438
+ * @interface ISubscriptionsResponse
8439
+ */
8440
+ export interface ISubscriptionsResponse {
8441
+ /**
8442
+ *
8443
+ * @type {number}
8444
+ * @memberof ISubscriptionsResponse
8445
+ */
8446
+ 'totalPages': number;
8447
+ /**
8448
+ *
8449
+ * @type {number}
8450
+ * @memberof ISubscriptionsResponse
8451
+ */
8452
+ 'page': number;
8453
+ /**
8454
+ *
8455
+ * @type {number}
8456
+ * @memberof ISubscriptionsResponse
8457
+ */
8458
+ 'itemsPerPage': number;
8459
+ /**
8460
+ *
8461
+ * @type {number}
8462
+ * @memberof ISubscriptionsResponse
8463
+ */
8464
+ 'total': number;
8465
+ /**
8466
+ *
8467
+ * @type {Array<ISubscription>}
8468
+ * @memberof ISubscriptionsResponse
8469
+ */
8470
+ 'data': Array<ISubscription>;
8471
+ }
8396
8472
  /**
8397
8473
  *
8398
8474
  * @export
@@ -10035,17 +10111,6 @@ export declare const PaymentMethodEnum: {
10035
10111
  readonly CARD_ON_DELIVERY: "card_on_delivery";
10036
10112
  };
10037
10113
  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
10114
  /**
10050
10115
  * From T, pick a set of properties whose keys are in the union K
10051
10116
  * @export
@@ -10475,6 +10540,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
10475
10540
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
10476
10541
  */
10477
10542
  'plan': PlanTypeEnum;
10543
+ /**
10544
+ *
10545
+ * @type {string}
10546
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
10547
+ */
10548
+ 'planId': string;
10478
10549
  /**
10479
10550
  *
10480
10551
  * @type {string}
@@ -11405,6 +11476,61 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
11405
11476
  */
11406
11477
  'type': string;
11407
11478
  }
11479
+ /**
11480
+ * From T, pick a set of properties whose keys are in the union K
11481
+ * @export
11482
+ * @interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11483
+ */
11484
+ export interface PickIPlanExcludeKeyofIPlanKeyofMongoResponse {
11485
+ /**
11486
+ *
11487
+ * @type {string}
11488
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11489
+ */
11490
+ 'name': string;
11491
+ /**
11492
+ *
11493
+ * @type {string}
11494
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11495
+ */
11496
+ 'company'?: string;
11497
+ /**
11498
+ *
11499
+ * @type {PlanStatusEnum}
11500
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11501
+ */
11502
+ 'status': PlanStatusEnum;
11503
+ /**
11504
+ *
11505
+ * @type {PlanTypeEnum}
11506
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11507
+ */
11508
+ 'type': PlanTypeEnum;
11509
+ /**
11510
+ *
11511
+ * @type {RecordPlanCurrencyEnumNumber}
11512
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11513
+ */
11514
+ 'monthlyPrice': RecordPlanCurrencyEnumNumber;
11515
+ /**
11516
+ *
11517
+ * @type {RecordPlanCurrencyEnumNumber}
11518
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11519
+ */
11520
+ 'annuallyPrice': RecordPlanCurrencyEnumNumber;
11521
+ /**
11522
+ *
11523
+ * @type {IPlanResponseLimits}
11524
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11525
+ */
11526
+ 'limits': IPlanResponseLimits;
11527
+ /**
11528
+ *
11529
+ * @type {number}
11530
+ * @memberof PickIPlanExcludeKeyofIPlanKeyofMongoResponse
11531
+ */
11532
+ 'addonAmount': number;
11533
+ }
11408
11534
  /**
11409
11535
  * From T, pick a set of properties whose keys are in the union K
11410
11536
  * @export
@@ -12345,17 +12471,6 @@ export interface PickShippingProviderExcludeKeyofShippingProviderId {
12345
12471
  */
12346
12472
  'rates': Array<ShippingProviderRates>;
12347
12473
  }
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
12474
  /**
12360
12475
  *
12361
12476
  * @export
@@ -12373,12 +12488,15 @@ export type PlanStatusEnum = typeof PlanStatusEnum[keyof typeof PlanStatusEnum];
12373
12488
  * @enum {string}
12374
12489
  */
12375
12490
  export declare const PlanTypeEnum: {
12491
+ readonly ADDON_BANDWIDTH: "addon-bandwidth";
12376
12492
  readonly STANDARD_B2C: "standard-b2c";
12377
12493
  readonly ADVANCED_B2C: "advanced-b2c";
12378
12494
  readonly PREMIUM_B2C: "premium-b2c";
12495
+ readonly ENTERPRISE_B2C: "enterprise-b2c";
12379
12496
  readonly STANDARD_CMS: "standard-cms";
12380
12497
  readonly ADVANCED_CMS: "advanced-cms";
12381
12498
  readonly PREMIUM_CMS: "premium-cms";
12499
+ readonly ENTERPRISE_CMS: "enterprise-cms";
12382
12500
  };
12383
12501
  export type PlanTypeEnum = typeof PlanTypeEnum[keyof typeof PlanTypeEnum];
12384
12502
  /**
@@ -12424,6 +12542,18 @@ export interface RecordCompanyOnboardingStepEnumBoolean {
12424
12542
  * @memberof RecordCompanyOnboardingStepEnumBoolean
12425
12543
  */
12426
12544
  'addFirstProduct': boolean;
12545
+ /**
12546
+ *
12547
+ * @type {boolean}
12548
+ * @memberof RecordCompanyOnboardingStepEnumBoolean
12549
+ */
12550
+ 'addFirstPage': boolean;
12551
+ /**
12552
+ *
12553
+ * @type {boolean}
12554
+ * @memberof RecordCompanyOnboardingStepEnumBoolean
12555
+ */
12556
+ 'addFirstBlog': boolean;
12427
12557
  /**
12428
12558
  *
12429
12559
  * @type {boolean}
@@ -12602,58 +12732,27 @@ export interface RecordLanguageEnumTitleStringTr {
12602
12732
  /**
12603
12733
  * Construct a type with a set of properties K of type T
12604
12734
  * @export
12605
- * @interface RecordPlanTypeEnumMonthlyBandwidthNumber
12735
+ * @interface RecordPlanCurrencyEnumNumber
12606
12736
  */
12607
- export interface RecordPlanTypeEnumMonthlyBandwidthNumber {
12737
+ export interface RecordPlanCurrencyEnumNumber {
12608
12738
  /**
12609
12739
  *
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;
12626
- /**
12627
- *
12628
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12629
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12630
- */
12631
- 'standard-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12632
- /**
12633
- *
12634
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12635
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12740
+ * @type {number}
12741
+ * @memberof RecordPlanCurrencyEnumNumber
12636
12742
  */
12637
- 'advanced-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12743
+ 'TRY': number;
12638
12744
  /**
12639
12745
  *
12640
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12641
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12746
+ * @type {number}
12747
+ * @memberof RecordPlanCurrencyEnumNumber
12642
12748
  */
12643
- 'premium-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12644
- }
12645
- /**
12646
- *
12647
- * @export
12648
- * @interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c
12649
- */
12650
- export interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c {
12749
+ 'USD': number;
12651
12750
  /**
12652
12751
  *
12653
12752
  * @type {number}
12654
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c
12753
+ * @memberof RecordPlanCurrencyEnumNumber
12655
12754
  */
12656
- 'monthlyBandwidth': number;
12755
+ 'EUR': number;
12657
12756
  }
12658
12757
  /**
12659
12758
  *
@@ -12821,7 +12920,7 @@ export declare const SitemapTypeEnum: {
12821
12920
  readonly PRODUCTS: "products";
12822
12921
  readonly PAGES: "pages";
12823
12922
  readonly COLLECTIONS: "collections";
12824
- readonly BLOG: "blog";
12923
+ readonly BLOGS: "blogs";
12825
12924
  readonly UNIQUE_PAGES: "unique-pages";
12826
12925
  };
12827
12926
  export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
@@ -12879,6 +12978,33 @@ export interface SubCategories {
12879
12978
  */
12880
12979
  '_id': string;
12881
12980
  }
12981
+ /**
12982
+ *
12983
+ * @export
12984
+ * @enum {string}
12985
+ */
12986
+ export declare const SubscriptionPlanEnum: {
12987
+ readonly ADDON_BANDWIDTH: "addon-bandwidth";
12988
+ readonly STANDARD_B2C: "standard-b2c";
12989
+ readonly ADVANCED_B2C: "advanced-b2c";
12990
+ readonly PREMIUM_B2C: "premium-b2c";
12991
+ readonly STANDARD_CMS: "standard-cms";
12992
+ readonly ADVANCED_CMS: "advanced-cms";
12993
+ readonly PREMIUM_CMS: "premium-cms";
12994
+ };
12995
+ export type SubscriptionPlanEnum = typeof SubscriptionPlanEnum[keyof typeof SubscriptionPlanEnum];
12996
+ /**
12997
+ *
12998
+ * @export
12999
+ * @enum {string}
13000
+ */
13001
+ export declare const SubscriptionStatusEnum: {
13002
+ readonly ACTIVE: "active";
13003
+ readonly CANCELED: "canceled";
13004
+ readonly EXPIRED: "expired";
13005
+ readonly PENDING: "pending";
13006
+ };
13007
+ export type SubscriptionStatusEnum = typeof SubscriptionStatusEnum[keyof typeof SubscriptionStatusEnum];
12882
13008
  /**
12883
13009
  *
12884
13010
  * @export
@@ -15195,27 +15321,27 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15195
15321
  /**
15196
15322
  *
15197
15323
  * @param {string} id
15198
- * @param {IPaymentPostRequest} iPaymentPostRequest
15324
+ * @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
15199
15325
  * @param {*} [options] Override http request option.
15200
15326
  * @throws {RequiredError}
15201
15327
  */
15202
- createCompanyPayment: (id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15328
+ createCompanyPaymentGateways: (id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15203
15329
  /**
15204
15330
  *
15205
15331
  * @param {string} id
15206
- * @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
15332
+ * @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
15207
15333
  * @param {*} [options] Override http request option.
15208
15334
  * @throws {RequiredError}
15209
15335
  */
15210
- createCompanyPaymentGateways: (id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15336
+ createCompanyShippingProviders: (id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15211
15337
  /**
15212
15338
  *
15213
15339
  * @param {string} id
15214
- * @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
15340
+ * @param {ISubscriptionPostRequest} iSubscriptionPostRequest
15215
15341
  * @param {*} [options] Override http request option.
15216
15342
  * @throws {RequiredError}
15217
15343
  */
15218
- createCompanyShippingProviders: (id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15344
+ createCompanySubscription: (id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15219
15345
  /**
15220
15346
  *
15221
15347
  * @param {string} id
@@ -15342,13 +15468,6 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15342
15468
  * @throws {RequiredError}
15343
15469
  */
15344
15470
  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
15471
  /**
15353
15472
  *
15354
15473
  * @param {string} id
@@ -15359,43 +15478,44 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15359
15478
  /**
15360
15479
  *
15361
15480
  * @param {string} id
15362
- * @param {string} paymentId
15363
15481
  * @param {*} [options] Override http request option.
15364
15482
  * @throws {RequiredError}
15365
15483
  */
15366
- getCompanyPayment: (id: string, paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15484
+ getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15367
15485
  /**
15368
15486
  *
15369
15487
  * @param {string} id
15488
+ * @param {ReviewStatusEnum} [status]
15370
15489
  * @param {*} [options] Override http request option.
15371
15490
  * @throws {RequiredError}
15372
15491
  */
15373
- getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15492
+ getCompanyProductReviews: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15374
15493
  /**
15375
15494
  *
15376
15495
  * @param {string} id
15377
- * @param {number} [itemsPerPage]
15378
- * @param {number} [page]
15496
+ * @param {ReviewStatusEnum} [status]
15379
15497
  * @param {*} [options] Override http request option.
15380
15498
  * @throws {RequiredError}
15381
15499
  */
15382
- getCompanyPayments: (id: string, itemsPerPage?: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15500
+ getCompanyReviewCount: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15383
15501
  /**
15384
15502
  *
15385
15503
  * @param {string} id
15386
- * @param {ReviewStatusEnum} [status]
15504
+ * @param {string} paymentId
15387
15505
  * @param {*} [options] Override http request option.
15388
15506
  * @throws {RequiredError}
15389
15507
  */
15390
- getCompanyProductReviews: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15508
+ getCompanySubscription: (id: string, paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15391
15509
  /**
15392
15510
  *
15393
15511
  * @param {string} id
15394
- * @param {ReviewStatusEnum} [status]
15512
+ * @param {number} [page]
15513
+ * @param {number} [itemsPerPage]
15514
+ * @param {SubscriptionStatusEnum} [status]
15395
15515
  * @param {*} [options] Override http request option.
15396
15516
  * @throws {RequiredError}
15397
15517
  */
15398
- getCompanyReviewCount: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15518
+ getCompanySubscriptions: (id: string, page?: number, itemsPerPage?: number, status?: SubscriptionStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15399
15519
  /**
15400
15520
  *
15401
15521
  * @param {string} id
@@ -15567,27 +15687,27 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15567
15687
  /**
15568
15688
  *
15569
15689
  * @param {string} id
15570
- * @param {IPaymentPostRequest} iPaymentPostRequest
15690
+ * @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
15571
15691
  * @param {*} [options] Override http request option.
15572
15692
  * @throws {RequiredError}
15573
15693
  */
15574
- createCompanyPayment(id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
15694
+ createCompanyPaymentGateways(id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15575
15695
  /**
15576
15696
  *
15577
15697
  * @param {string} id
15578
- * @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
15698
+ * @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
15579
15699
  * @param {*} [options] Override http request option.
15580
15700
  * @throws {RequiredError}
15581
15701
  */
15582
- createCompanyPaymentGateways(id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15702
+ createCompanyShippingProviders(id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15583
15703
  /**
15584
15704
  *
15585
15705
  * @param {string} id
15586
- * @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
15706
+ * @param {ISubscriptionPostRequest} iSubscriptionPostRequest
15587
15707
  * @param {*} [options] Override http request option.
15588
15708
  * @throws {RequiredError}
15589
15709
  */
15590
- createCompanyShippingProviders(id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15710
+ createCompanySubscription(id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
15591
15711
  /**
15592
15712
  *
15593
15713
  * @param {string} id
@@ -15714,13 +15834,6 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15714
15834
  * @throws {RequiredError}
15715
15835
  */
15716
15836
  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
15837
  /**
15725
15838
  *
15726
15839
  * @param {string} id
@@ -15731,43 +15844,44 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15731
15844
  /**
15732
15845
  *
15733
15846
  * @param {string} id
15734
- * @param {string} paymentId
15735
15847
  * @param {*} [options] Override http request option.
15736
15848
  * @throws {RequiredError}
15737
15849
  */
15738
- getCompanyPayment(id: string, paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPayment>>;
15850
+ getCompanyPaymentGateways(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyPaymentGatewaysResponse>>;
15739
15851
  /**
15740
15852
  *
15741
15853
  * @param {string} id
15854
+ * @param {ReviewStatusEnum} [status]
15742
15855
  * @param {*} [options] Override http request option.
15743
15856
  * @throws {RequiredError}
15744
15857
  */
15745
- getCompanyPaymentGateways(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyPaymentGatewaysResponse>>;
15858
+ getCompanyProductReviews(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductReviewsPopulateResponse>>;
15746
15859
  /**
15747
15860
  *
15748
15861
  * @param {string} id
15749
- * @param {number} [itemsPerPage]
15750
- * @param {number} [page]
15862
+ * @param {ReviewStatusEnum} [status]
15751
15863
  * @param {*} [options] Override http request option.
15752
15864
  * @throws {RequiredError}
15753
15865
  */
15754
- getCompanyPayments(id: string, itemsPerPage?: number, page?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentsResponse>>;
15866
+ getCompanyReviewCount(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMyProductReviewCount200Response>>;
15755
15867
  /**
15756
15868
  *
15757
15869
  * @param {string} id
15758
- * @param {ReviewStatusEnum} [status]
15870
+ * @param {string} paymentId
15759
15871
  * @param {*} [options] Override http request option.
15760
15872
  * @throws {RequiredError}
15761
15873
  */
15762
- getCompanyProductReviews(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IProductReviewsPopulateResponse>>;
15874
+ getCompanySubscription(id: string, paymentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ISubscription>>;
15763
15875
  /**
15764
15876
  *
15765
15877
  * @param {string} id
15766
- * @param {ReviewStatusEnum} [status]
15878
+ * @param {number} [page]
15879
+ * @param {number} [itemsPerPage]
15880
+ * @param {SubscriptionStatusEnum} [status]
15767
15881
  * @param {*} [options] Override http request option.
15768
15882
  * @throws {RequiredError}
15769
15883
  */
15770
- getCompanyReviewCount(id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetMyProductReviewCount200Response>>;
15884
+ getCompanySubscriptions(id: string, page?: number, itemsPerPage?: number, status?: SubscriptionStatusEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ISubscriptionsResponse>>;
15771
15885
  /**
15772
15886
  *
15773
15887
  * @param {string} id
@@ -15935,25 +16049,25 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
15935
16049
  createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15936
16050
  /**
15937
16051
  *
15938
- * @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
16052
+ * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
15939
16053
  * @param {*} [options] Override http request option.
15940
16054
  * @throws {RequiredError}
15941
16055
  */
15942
- createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
16056
+ createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15943
16057
  /**
15944
16058
  *
15945
- * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
16059
+ * @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
15946
16060
  * @param {*} [options] Override http request option.
15947
16061
  * @throws {RequiredError}
15948
16062
  */
15949
- createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16063
+ createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15950
16064
  /**
15951
16065
  *
15952
- * @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
16066
+ * @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
15953
16067
  * @param {*} [options] Override http request option.
15954
16068
  * @throws {RequiredError}
15955
16069
  */
15956
- createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16070
+ createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
15957
16071
  /**
15958
16072
  *
15959
16073
  * @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
@@ -16052,13 +16166,6 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
16052
16166
  * @throws {RequiredError}
16053
16167
  */
16054
16168
  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
16169
  /**
16063
16170
  *
16064
16171
  * @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
@@ -16068,39 +16175,39 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
16068
16175
  getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCompanyOnboarding200Response>;
16069
16176
  /**
16070
16177
  *
16071
- * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
16178
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
16072
16179
  * @param {*} [options] Override http request option.
16073
16180
  * @throws {RequiredError}
16074
16181
  */
16075
- getCompanyPayment(requestParameters: CompanyApiGetCompanyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPayment>;
16182
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
16076
16183
  /**
16077
16184
  *
16078
- * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
16185
+ * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
16079
16186
  * @param {*} [options] Override http request option.
16080
16187
  * @throws {RequiredError}
16081
16188
  */
16082
- getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
16189
+ getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IProductReviewsPopulateResponse>;
16083
16190
  /**
16084
16191
  *
16085
- * @param {CompanyApiGetCompanyPaymentsRequest} requestParameters Request parameters.
16192
+ * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
16086
16193
  * @param {*} [options] Override http request option.
16087
16194
  * @throws {RequiredError}
16088
16195
  */
16089
- getCompanyPayments(requestParameters: CompanyApiGetCompanyPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentsResponse>;
16196
+ getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetMyProductReviewCount200Response>;
16090
16197
  /**
16091
16198
  *
16092
- * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
16199
+ * @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
16093
16200
  * @param {*} [options] Override http request option.
16094
16201
  * @throws {RequiredError}
16095
16202
  */
16096
- getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IProductReviewsPopulateResponse>;
16203
+ getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscription>;
16097
16204
  /**
16098
16205
  *
16099
- * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
16206
+ * @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
16100
16207
  * @param {*} [options] Override http request option.
16101
16208
  * @throws {RequiredError}
16102
16209
  */
16103
- getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetMyProductReviewCount200Response>;
16210
+ getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscriptionsResponse>;
16104
16211
  /**
16105
16212
  *
16106
16213
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -16290,25 +16397,6 @@ export interface CompanyApiCreateCompanyLanguageRequest {
16290
16397
  */
16291
16398
  readonly iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest;
16292
16399
  }
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
16400
  /**
16313
16401
  * Request parameters for createCompanyPaymentGateways operation in CompanyApi.
16314
16402
  * @export
@@ -16347,6 +16435,25 @@ export interface CompanyApiCreateCompanyShippingProvidersRequest {
16347
16435
  */
16348
16436
  readonly iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest;
16349
16437
  }
16438
+ /**
16439
+ * Request parameters for createCompanySubscription operation in CompanyApi.
16440
+ * @export
16441
+ * @interface CompanyApiCreateCompanySubscriptionRequest
16442
+ */
16443
+ export interface CompanyApiCreateCompanySubscriptionRequest {
16444
+ /**
16445
+ *
16446
+ * @type {string}
16447
+ * @memberof CompanyApiCreateCompanySubscription
16448
+ */
16449
+ readonly id: string;
16450
+ /**
16451
+ *
16452
+ * @type {ISubscriptionPostRequest}
16453
+ * @memberof CompanyApiCreateCompanySubscription
16454
+ */
16455
+ readonly iSubscriptionPostRequest: ISubscriptionPostRequest;
16456
+ }
16350
16457
  /**
16351
16458
  * Request parameters for createCompanyWarehouses operation in CompanyApi.
16352
16459
  * @export
@@ -16698,125 +16805,118 @@ export interface CompanyApiGetCompanyDashboardRequest {
16698
16805
  readonly end?: string;
16699
16806
  }
16700
16807
  /**
16701
- * Request parameters for getCompanyMonthlyBandwidth operation in CompanyApi.
16808
+ * Request parameters for getCompanyOnboarding operation in CompanyApi.
16702
16809
  * @export
16703
- * @interface CompanyApiGetCompanyMonthlyBandwidthRequest
16810
+ * @interface CompanyApiGetCompanyOnboardingRequest
16704
16811
  */
16705
- export interface CompanyApiGetCompanyMonthlyBandwidthRequest {
16812
+ export interface CompanyApiGetCompanyOnboardingRequest {
16706
16813
  /**
16707
16814
  *
16708
16815
  * @type {string}
16709
- * @memberof CompanyApiGetCompanyMonthlyBandwidth
16816
+ * @memberof CompanyApiGetCompanyOnboarding
16710
16817
  */
16711
16818
  readonly id: string;
16712
16819
  }
16713
16820
  /**
16714
- * Request parameters for getCompanyOnboarding operation in CompanyApi.
16821
+ * Request parameters for getCompanyPaymentGateways operation in CompanyApi.
16715
16822
  * @export
16716
- * @interface CompanyApiGetCompanyOnboardingRequest
16823
+ * @interface CompanyApiGetCompanyPaymentGatewaysRequest
16717
16824
  */
16718
- export interface CompanyApiGetCompanyOnboardingRequest {
16825
+ export interface CompanyApiGetCompanyPaymentGatewaysRequest {
16719
16826
  /**
16720
16827
  *
16721
16828
  * @type {string}
16722
- * @memberof CompanyApiGetCompanyOnboarding
16829
+ * @memberof CompanyApiGetCompanyPaymentGateways
16723
16830
  */
16724
16831
  readonly id: string;
16725
16832
  }
16726
16833
  /**
16727
- * Request parameters for getCompanyPayment operation in CompanyApi.
16834
+ * Request parameters for getCompanyProductReviews operation in CompanyApi.
16728
16835
  * @export
16729
- * @interface CompanyApiGetCompanyPaymentRequest
16836
+ * @interface CompanyApiGetCompanyProductReviewsRequest
16730
16837
  */
16731
- export interface CompanyApiGetCompanyPaymentRequest {
16838
+ export interface CompanyApiGetCompanyProductReviewsRequest {
16732
16839
  /**
16733
16840
  *
16734
16841
  * @type {string}
16735
- * @memberof CompanyApiGetCompanyPayment
16842
+ * @memberof CompanyApiGetCompanyProductReviews
16736
16843
  */
16737
16844
  readonly id: string;
16738
16845
  /**
16739
16846
  *
16740
- * @type {string}
16741
- * @memberof CompanyApiGetCompanyPayment
16847
+ * @type {ReviewStatusEnum}
16848
+ * @memberof CompanyApiGetCompanyProductReviews
16742
16849
  */
16743
- readonly paymentId: string;
16850
+ readonly status?: ReviewStatusEnum;
16744
16851
  }
16745
16852
  /**
16746
- * Request parameters for getCompanyPaymentGateways operation in CompanyApi.
16853
+ * Request parameters for getCompanyReviewCount operation in CompanyApi.
16747
16854
  * @export
16748
- * @interface CompanyApiGetCompanyPaymentGatewaysRequest
16855
+ * @interface CompanyApiGetCompanyReviewCountRequest
16749
16856
  */
16750
- export interface CompanyApiGetCompanyPaymentGatewaysRequest {
16857
+ export interface CompanyApiGetCompanyReviewCountRequest {
16751
16858
  /**
16752
16859
  *
16753
16860
  * @type {string}
16754
- * @memberof CompanyApiGetCompanyPaymentGateways
16861
+ * @memberof CompanyApiGetCompanyReviewCount
16755
16862
  */
16756
16863
  readonly id: string;
16864
+ /**
16865
+ *
16866
+ * @type {ReviewStatusEnum}
16867
+ * @memberof CompanyApiGetCompanyReviewCount
16868
+ */
16869
+ readonly status?: ReviewStatusEnum;
16757
16870
  }
16758
16871
  /**
16759
- * Request parameters for getCompanyPayments operation in CompanyApi.
16872
+ * Request parameters for getCompanySubscription operation in CompanyApi.
16760
16873
  * @export
16761
- * @interface CompanyApiGetCompanyPaymentsRequest
16874
+ * @interface CompanyApiGetCompanySubscriptionRequest
16762
16875
  */
16763
- export interface CompanyApiGetCompanyPaymentsRequest {
16876
+ export interface CompanyApiGetCompanySubscriptionRequest {
16764
16877
  /**
16765
16878
  *
16766
16879
  * @type {string}
16767
- * @memberof CompanyApiGetCompanyPayments
16880
+ * @memberof CompanyApiGetCompanySubscription
16768
16881
  */
16769
16882
  readonly id: string;
16770
16883
  /**
16771
16884
  *
16772
- * @type {number}
16773
- * @memberof CompanyApiGetCompanyPayments
16774
- */
16775
- readonly itemsPerPage?: number;
16776
- /**
16777
- *
16778
- * @type {number}
16779
- * @memberof CompanyApiGetCompanyPayments
16885
+ * @type {string}
16886
+ * @memberof CompanyApiGetCompanySubscription
16780
16887
  */
16781
- readonly page?: number;
16888
+ readonly paymentId: string;
16782
16889
  }
16783
16890
  /**
16784
- * Request parameters for getCompanyProductReviews operation in CompanyApi.
16891
+ * Request parameters for getCompanySubscriptions operation in CompanyApi.
16785
16892
  * @export
16786
- * @interface CompanyApiGetCompanyProductReviewsRequest
16893
+ * @interface CompanyApiGetCompanySubscriptionsRequest
16787
16894
  */
16788
- export interface CompanyApiGetCompanyProductReviewsRequest {
16895
+ export interface CompanyApiGetCompanySubscriptionsRequest {
16789
16896
  /**
16790
16897
  *
16791
16898
  * @type {string}
16792
- * @memberof CompanyApiGetCompanyProductReviews
16899
+ * @memberof CompanyApiGetCompanySubscriptions
16793
16900
  */
16794
16901
  readonly id: string;
16795
16902
  /**
16796
16903
  *
16797
- * @type {ReviewStatusEnum}
16798
- * @memberof CompanyApiGetCompanyProductReviews
16904
+ * @type {number}
16905
+ * @memberof CompanyApiGetCompanySubscriptions
16799
16906
  */
16800
- readonly status?: ReviewStatusEnum;
16801
- }
16802
- /**
16803
- * Request parameters for getCompanyReviewCount operation in CompanyApi.
16804
- * @export
16805
- * @interface CompanyApiGetCompanyReviewCountRequest
16806
- */
16807
- export interface CompanyApiGetCompanyReviewCountRequest {
16907
+ readonly page?: number;
16808
16908
  /**
16809
16909
  *
16810
- * @type {string}
16811
- * @memberof CompanyApiGetCompanyReviewCount
16910
+ * @type {number}
16911
+ * @memberof CompanyApiGetCompanySubscriptions
16812
16912
  */
16813
- readonly id: string;
16913
+ readonly itemsPerPage?: number;
16814
16914
  /**
16815
16915
  *
16816
- * @type {ReviewStatusEnum}
16817
- * @memberof CompanyApiGetCompanyReviewCount
16916
+ * @type {SubscriptionStatusEnum}
16917
+ * @memberof CompanyApiGetCompanySubscriptions
16818
16918
  */
16819
- readonly status?: ReviewStatusEnum;
16919
+ readonly status?: SubscriptionStatusEnum;
16820
16920
  }
16821
16921
  /**
16822
16922
  * Request parameters for getCompanyUsers operation in CompanyApi.
@@ -17176,28 +17276,28 @@ export declare class CompanyApi extends BaseAPI {
17176
17276
  createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17177
17277
  /**
17178
17278
  *
17179
- * @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
17279
+ * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17180
17280
  * @param {*} [options] Override http request option.
17181
17281
  * @throws {RequiredError}
17182
17282
  * @memberof CompanyApi
17183
17283
  */
17184
- createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
17284
+ createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17185
17285
  /**
17186
17286
  *
17187
- * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17287
+ * @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
17188
17288
  * @param {*} [options] Override http request option.
17189
17289
  * @throws {RequiredError}
17190
17290
  * @memberof CompanyApi
17191
17291
  */
17192
- createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17292
+ createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17193
17293
  /**
17194
17294
  *
17195
- * @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
17295
+ * @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
17196
17296
  * @param {*} [options] Override http request option.
17197
17297
  * @throws {RequiredError}
17198
17298
  * @memberof CompanyApi
17199
17299
  */
17200
- createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17300
+ createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
17201
17301
  /**
17202
17302
  *
17203
17303
  * @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
@@ -17310,14 +17410,6 @@ export declare class CompanyApi extends BaseAPI {
17310
17410
  * @memberof CompanyApi
17311
17411
  */
17312
17412
  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
17413
  /**
17322
17414
  *
17323
17415
  * @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
@@ -17328,44 +17420,44 @@ export declare class CompanyApi extends BaseAPI {
17328
17420
  getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCompanyOnboarding200Response, any>>;
17329
17421
  /**
17330
17422
  *
17331
- * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
17423
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17332
17424
  * @param {*} [options] Override http request option.
17333
17425
  * @throws {RequiredError}
17334
17426
  * @memberof CompanyApi
17335
17427
  */
17336
- getCompanyPayment(requestParameters: CompanyApiGetCompanyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPayment, any>>;
17428
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
17337
17429
  /**
17338
17430
  *
17339
- * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17431
+ * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
17340
17432
  * @param {*} [options] Override http request option.
17341
17433
  * @throws {RequiredError}
17342
17434
  * @memberof CompanyApi
17343
17435
  */
17344
- getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
17436
+ getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductReviewsPopulateResponse, any>>;
17345
17437
  /**
17346
17438
  *
17347
- * @param {CompanyApiGetCompanyPaymentsRequest} requestParameters Request parameters.
17439
+ * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
17348
17440
  * @param {*} [options] Override http request option.
17349
17441
  * @throws {RequiredError}
17350
17442
  * @memberof CompanyApi
17351
17443
  */
17352
- getCompanyPayments(requestParameters: CompanyApiGetCompanyPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentsResponse, any>>;
17444
+ getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMyProductReviewCount200Response, any>>;
17353
17445
  /**
17354
17446
  *
17355
- * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
17447
+ * @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
17356
17448
  * @param {*} [options] Override http request option.
17357
17449
  * @throws {RequiredError}
17358
17450
  * @memberof CompanyApi
17359
17451
  */
17360
- getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductReviewsPopulateResponse, any>>;
17452
+ getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscription, any>>;
17361
17453
  /**
17362
17454
  *
17363
- * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
17455
+ * @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
17364
17456
  * @param {*} [options] Override http request option.
17365
17457
  * @throws {RequiredError}
17366
17458
  * @memberof CompanyApi
17367
17459
  */
17368
- getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMyProductReviewCount200Response, any>>;
17460
+ getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscriptionsResponse, any>>;
17369
17461
  /**
17370
17462
  *
17371
17463
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -20740,12 +20832,6 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
20740
20832
  * @throws {RequiredError}
20741
20833
  */
20742
20834
  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
20835
  /**
20750
20836
  *
20751
20837
  * @param {number} [page]
@@ -20757,11 +20843,12 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
20757
20843
  * @param {OrderEnum} [order]
20758
20844
  * @param {string} [sort]
20759
20845
  * @param {PlanStatusEnum} [status]
20760
- * @param {PlanTypeEnum} [type]
20846
+ * @param {GetPlansCategoryEnum} [category]
20847
+ * @param {string} [company]
20761
20848
  * @param {*} [options] Override http request option.
20762
20849
  * @throws {RequiredError}
20763
20850
  */
20764
- getPlans: (page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20851
+ 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
20852
  /**
20766
20853
  *
20767
20854
  * @param {string} id
@@ -20797,12 +20884,6 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
20797
20884
  * @throws {RequiredError}
20798
20885
  */
20799
20886
  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
20887
  /**
20807
20888
  *
20808
20889
  * @param {number} [page]
@@ -20814,11 +20895,12 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
20814
20895
  * @param {OrderEnum} [order]
20815
20896
  * @param {string} [sort]
20816
20897
  * @param {PlanStatusEnum} [status]
20817
- * @param {PlanTypeEnum} [type]
20898
+ * @param {GetPlansCategoryEnum} [category]
20899
+ * @param {string} [company]
20818
20900
  * @param {*} [options] Override http request option.
20819
20901
  * @throws {RequiredError}
20820
20902
  */
20821
- getPlans(page?: number, itemsPerPage?: number, search?: string, startDate?: string, endDate?: string, dateField?: GetPlansDateFieldEnum, order?: OrderEnum, sort?: string, status?: PlanStatusEnum, type?: PlanTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlansResponse>>;
20903
+ 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
20904
  /**
20823
20905
  *
20824
20906
  * @param {string} id
@@ -20854,12 +20936,6 @@ export declare const PlanApiFactory: (configuration?: Configuration, basePath?:
20854
20936
  * @throws {RequiredError}
20855
20937
  */
20856
20938
  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
20939
  /**
20864
20940
  *
20865
20941
  * @param {PlanApiGetPlansRequest} requestParameters Request parameters.
@@ -20976,10 +21052,16 @@ export interface PlanApiGetPlansRequest {
20976
21052
  readonly status?: PlanStatusEnum;
20977
21053
  /**
20978
21054
  *
20979
- * @type {PlanTypeEnum}
21055
+ * @type {'addon-bandwidth' | 'b2c' | 'cms'}
21056
+ * @memberof PlanApiGetPlans
21057
+ */
21058
+ readonly category?: GetPlansCategoryEnum;
21059
+ /**
21060
+ *
21061
+ * @type {string}
20980
21062
  * @memberof PlanApiGetPlans
20981
21063
  */
20982
- readonly type?: PlanTypeEnum;
21064
+ readonly company?: string;
20983
21065
  }
20984
21066
  /**
20985
21067
  * Request parameters for updatePlan operation in PlanApi.
@@ -21031,13 +21113,6 @@ export declare class PlanApi extends BaseAPI {
21031
21113
  * @memberof PlanApi
21032
21114
  */
21033
21115
  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
21116
  /**
21042
21117
  *
21043
21118
  * @param {PlanApiGetPlansRequest} requestParameters Request parameters.
@@ -21063,6 +21138,15 @@ export declare const GetPlansDateFieldEnum: {
21063
21138
  readonly UPDATED_AT: "updatedAt";
21064
21139
  };
21065
21140
  export type GetPlansDateFieldEnum = typeof GetPlansDateFieldEnum[keyof typeof GetPlansDateFieldEnum];
21141
+ /**
21142
+ * @export
21143
+ */
21144
+ export declare const GetPlansCategoryEnum: {
21145
+ readonly ADDON_BANDWIDTH: "addon-bandwidth";
21146
+ readonly B2C: "b2c";
21147
+ readonly CMS: "cms";
21148
+ };
21149
+ export type GetPlansCategoryEnum = typeof GetPlansCategoryEnum[keyof typeof GetPlansCategoryEnum];
21066
21150
  /**
21067
21151
  * ProductApi - axios parameter creator
21068
21152
  * @export