@infisale-client/api 1.3.30 → 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
  *
@@ -2754,6 +2778,25 @@ export declare const ICompanyCollectionQueryParamsDateFieldEnum: {
2754
2778
  readonly UPDATED_AT: "updatedAt";
2755
2779
  };
2756
2780
  export type ICompanyCollectionQueryParamsDateFieldEnum = typeof ICompanyCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyCollectionQueryParamsDateFieldEnum];
2781
+ /**
2782
+ *
2783
+ * @export
2784
+ * @interface ICompanyCreateLanguageRequest
2785
+ */
2786
+ export interface ICompanyCreateLanguageRequest {
2787
+ /**
2788
+ *
2789
+ * @type {LanguageEnum}
2790
+ * @memberof ICompanyCreateLanguageRequest
2791
+ */
2792
+ 'language': LanguageEnum;
2793
+ /**
2794
+ *
2795
+ * @type {boolean}
2796
+ * @memberof ICompanyCreateLanguageRequest
2797
+ */
2798
+ 'main'?: boolean;
2799
+ }
2757
2800
  /**
2758
2801
  *
2759
2802
  * @export
@@ -2960,56 +3003,6 @@ export interface ICompanyDashboardResponseOrdersInner {
2960
3003
  */
2961
3004
  'date': string;
2962
3005
  }
2963
- /**
2964
- *
2965
- * @export
2966
- * @interface ICompanyMonthlyBandwidth
2967
- */
2968
- export interface ICompanyMonthlyBandwidth {
2969
- /**
2970
- *
2971
- * @type {string}
2972
- * @memberof ICompanyMonthlyBandwidth
2973
- */
2974
- '_id': string;
2975
- /**
2976
- *
2977
- * @type {string}
2978
- * @memberof ICompanyMonthlyBandwidth
2979
- */
2980
- 'company': string;
2981
- /**
2982
- *
2983
- * @type {number}
2984
- * @memberof ICompanyMonthlyBandwidth
2985
- */
2986
- 'year': number;
2987
- /**
2988
- *
2989
- * @type {number}
2990
- * @memberof ICompanyMonthlyBandwidth
2991
- */
2992
- 'month': number;
2993
- /**
2994
- *
2995
- * @type {number}
2996
- * @memberof ICompanyMonthlyBandwidth
2997
- */
2998
- 'bandwidth': number;
2999
- }
3000
- /**
3001
- *
3002
- * @export
3003
- * @interface ICompanyMonthlyBandwidthResponse
3004
- */
3005
- export interface ICompanyMonthlyBandwidthResponse {
3006
- /**
3007
- *
3008
- * @type {Array<ICompanyMonthlyBandwidth>}
3009
- * @memberof ICompanyMonthlyBandwidthResponse
3010
- */
3011
- 'data': Array<ICompanyMonthlyBandwidth>;
3012
- }
3013
3006
  /**
3014
3007
  *
3015
3008
  * @export
@@ -3096,6 +3089,12 @@ export interface ICompanyPatchRequest {
3096
3089
  * @memberof ICompanyPatchRequest
3097
3090
  */
3098
3091
  'paymentGateways'?: Array<ICompanyPatchRequestPaymentGatewaysInner>;
3092
+ /**
3093
+ *
3094
+ * @type {string}
3095
+ * @memberof ICompanyPatchRequest
3096
+ */
3097
+ 'planId'?: string;
3099
3098
  /**
3100
3099
  *
3101
3100
  * @type {string}
@@ -3320,10 +3319,10 @@ export interface ICompanyPostRequest {
3320
3319
  'name': string;
3321
3320
  /**
3322
3321
  *
3323
- * @type {PlanTypeEnum}
3322
+ * @type {string}
3324
3323
  * @memberof ICompanyPostRequest
3325
3324
  */
3326
- 'plan': PlanTypeEnum;
3325
+ 'plan': string;
3327
3326
  /**
3328
3327
  *
3329
3328
  * @type {LanguageEnum}
@@ -3415,6 +3414,12 @@ export interface ICompanyResponse {
3415
3414
  * @memberof ICompanyResponse
3416
3415
  */
3417
3416
  'plan': PlanTypeEnum;
3417
+ /**
3418
+ *
3419
+ * @type {string}
3420
+ * @memberof ICompanyResponse
3421
+ */
3422
+ 'planId': string;
3418
3423
  /**
3419
3424
  *
3420
3425
  * @type {string}
@@ -3616,7 +3621,13 @@ export interface ICompanyResponse {
3616
3621
  * @type {number}
3617
3622
  * @memberof ICompanyResponse
3618
3623
  */
3619
- 'totalBandwidth': number;
3624
+ 'totalBandwidthUsage': number;
3625
+ /**
3626
+ *
3627
+ * @type {number}
3628
+ * @memberof ICompanyResponse
3629
+ */
3630
+ 'totalBandwidthLimit': number;
3620
3631
  }
3621
3632
  /**
3622
3633
  *
@@ -6720,67 +6731,6 @@ export interface IPagesResponse {
6720
6731
  */
6721
6732
  'data': Array<IPageResponse>;
6722
6733
  }
6723
- /**
6724
- *
6725
- * @export
6726
- * @interface IPayment
6727
- */
6728
- export interface IPayment {
6729
- /**
6730
- *
6731
- * @type {string}
6732
- * @memberof IPayment
6733
- */
6734
- '_id': string;
6735
- /**
6736
- *
6737
- * @type {number}
6738
- * @memberof IPayment
6739
- */
6740
- '__v': number;
6741
- /**
6742
- *
6743
- * @type {string}
6744
- * @memberof IPayment
6745
- */
6746
- 'createdAt': string;
6747
- /**
6748
- *
6749
- * @type {string}
6750
- * @memberof IPayment
6751
- */
6752
- 'updatedAt': string;
6753
- /**
6754
- *
6755
- * @type {string}
6756
- * @memberof IPayment
6757
- */
6758
- 'company': string;
6759
- /**
6760
- *
6761
- * @type {number}
6762
- * @memberof IPayment
6763
- */
6764
- 'period': number;
6765
- /**
6766
- *
6767
- * @type {number}
6768
- * @memberof IPayment
6769
- */
6770
- 'total': number;
6771
- /**
6772
- *
6773
- * @type {string}
6774
- * @memberof IPayment
6775
- */
6776
- 'iframe': string;
6777
- /**
6778
- *
6779
- * @type {PaymentStatusEnum}
6780
- * @memberof IPayment
6781
- */
6782
- 'status': PaymentStatusEnum;
6783
- }
6784
6734
  /**
6785
6735
  *
6786
6736
  * @export
@@ -6812,61 +6762,6 @@ export interface IPaymentCreateResponse {
6812
6762
  */
6813
6763
  'iframe'?: string;
6814
6764
  }
6815
- /**
6816
- *
6817
- * @export
6818
- * @interface IPaymentPostRequest
6819
- */
6820
- export interface IPaymentPostRequest {
6821
- /**
6822
- *
6823
- * @type {string}
6824
- * @memberof IPaymentPostRequest
6825
- */
6826
- 'period': IPaymentPostRequestPeriodEnum;
6827
- }
6828
- export declare const IPaymentPostRequestPeriodEnum: {
6829
- readonly MONTHLY: "monthly";
6830
- readonly YEARLY: "yearly";
6831
- };
6832
- export type IPaymentPostRequestPeriodEnum = typeof IPaymentPostRequestPeriodEnum[keyof typeof IPaymentPostRequestPeriodEnum];
6833
- /**
6834
- *
6835
- * @export
6836
- * @interface IPaymentsResponse
6837
- */
6838
- export interface IPaymentsResponse {
6839
- /**
6840
- *
6841
- * @type {number}
6842
- * @memberof IPaymentsResponse
6843
- */
6844
- 'totalPages': number;
6845
- /**
6846
- *
6847
- * @type {number}
6848
- * @memberof IPaymentsResponse
6849
- */
6850
- 'page': number;
6851
- /**
6852
- *
6853
- * @type {number}
6854
- * @memberof IPaymentsResponse
6855
- */
6856
- 'itemsPerPage': number;
6857
- /**
6858
- *
6859
- * @type {number}
6860
- * @memberof IPaymentsResponse
6861
- */
6862
- 'total': number;
6863
- /**
6864
- *
6865
- * @type {Array<IPayment>}
6866
- * @memberof IPaymentsResponse
6867
- */
6868
- 'data': Array<IPayment>;
6869
- }
6870
6765
  /**
6871
6766
  *
6872
6767
  * @export
@@ -6929,16 +6824,28 @@ export interface IPlanCollectionQueryParams {
6929
6824
  'status'?: PlanStatusEnum;
6930
6825
  /**
6931
6826
  *
6932
- * @type {PlanTypeEnum}
6827
+ * @type {string}
6933
6828
  * @memberof IPlanCollectionQueryParams
6934
6829
  */
6935
- 'type'?: PlanTypeEnum;
6830
+ 'category'?: IPlanCollectionQueryParamsCategoryEnum;
6831
+ /**
6832
+ *
6833
+ * @type {string}
6834
+ * @memberof IPlanCollectionQueryParams
6835
+ */
6836
+ 'company'?: string;
6936
6837
  }
6937
6838
  export declare const IPlanCollectionQueryParamsDateFieldEnum: {
6938
6839
  readonly CREATED_AT: "createdAt";
6939
6840
  readonly UPDATED_AT: "updatedAt";
6940
6841
  };
6941
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];
6942
6849
  /**
6943
6850
  *
6944
6851
  * @export
@@ -6953,10 +6860,10 @@ export interface IPlanPatchRequest {
6953
6860
  'name'?: string;
6954
6861
  /**
6955
6862
  *
6956
- * @type {string}
6863
+ * @type {PlanStatusEnum}
6957
6864
  * @memberof IPlanPatchRequest
6958
6865
  */
6959
- 'description'?: string;
6866
+ 'status'?: PlanStatusEnum;
6960
6867
  /**
6961
6868
  *
6962
6869
  * @type {PlanTypeEnum}
@@ -6965,22 +6872,28 @@ export interface IPlanPatchRequest {
6965
6872
  'type'?: PlanTypeEnum;
6966
6873
  /**
6967
6874
  *
6968
- * @type {Array<IPlanResponsePriceInner>}
6875
+ * @type {RecordPlanCurrencyEnumNumber}
6969
6876
  * @memberof IPlanPatchRequest
6970
6877
  */
6971
- 'price'?: Array<IPlanResponsePriceInner>;
6878
+ 'monthlyPrice'?: RecordPlanCurrencyEnumNumber;
6972
6879
  /**
6973
6880
  *
6974
- * @type {Array<IPlanResponseAttributesInner>}
6881
+ * @type {RecordPlanCurrencyEnumNumber}
6975
6882
  * @memberof IPlanPatchRequest
6976
6883
  */
6977
- 'attributes'?: Array<IPlanResponseAttributesInner>;
6884
+ 'annuallyPrice'?: RecordPlanCurrencyEnumNumber;
6978
6885
  /**
6979
6886
  *
6980
- * @type {PlanStatusEnum}
6887
+ * @type {IPlanResponseLimits}
6981
6888
  * @memberof IPlanPatchRequest
6982
6889
  */
6983
- 'status'?: PlanStatusEnum;
6890
+ 'limits'?: IPlanResponseLimits;
6891
+ /**
6892
+ *
6893
+ * @type {number}
6894
+ * @memberof IPlanPatchRequest
6895
+ */
6896
+ 'addonAmount'?: number;
6984
6897
  }
6985
6898
  /**
6986
6899
  *
@@ -6999,7 +6912,13 @@ export interface IPlanPostRequest {
6999
6912
  * @type {string}
7000
6913
  * @memberof IPlanPostRequest
7001
6914
  */
7002
- 'description'?: string;
6915
+ 'company'?: string;
6916
+ /**
6917
+ *
6918
+ * @type {PlanStatusEnum}
6919
+ * @memberof IPlanPostRequest
6920
+ */
6921
+ 'status': PlanStatusEnum;
7003
6922
  /**
7004
6923
  *
7005
6924
  * @type {PlanTypeEnum}
@@ -7008,22 +6927,28 @@ export interface IPlanPostRequest {
7008
6927
  'type': PlanTypeEnum;
7009
6928
  /**
7010
6929
  *
7011
- * @type {Array<IPlanResponsePriceInner>}
6930
+ * @type {RecordPlanCurrencyEnumNumber}
7012
6931
  * @memberof IPlanPostRequest
7013
6932
  */
7014
- 'price': Array<IPlanResponsePriceInner>;
6933
+ 'monthlyPrice': RecordPlanCurrencyEnumNumber;
7015
6934
  /**
7016
6935
  *
7017
- * @type {Array<IPlanResponseAttributesInner>}
6936
+ * @type {RecordPlanCurrencyEnumNumber}
7018
6937
  * @memberof IPlanPostRequest
7019
6938
  */
7020
- 'attributes'?: Array<IPlanResponseAttributesInner>;
6939
+ 'annuallyPrice': RecordPlanCurrencyEnumNumber;
7021
6940
  /**
7022
6941
  *
7023
- * @type {PlanStatusEnum}
6942
+ * @type {IPlanResponseLimits}
7024
6943
  * @memberof IPlanPostRequest
7025
6944
  */
7026
- 'status'?: PlanStatusEnum;
6945
+ 'limits': IPlanResponseLimits;
6946
+ /**
6947
+ *
6948
+ * @type {number}
6949
+ * @memberof IPlanPostRequest
6950
+ */
6951
+ 'addonAmount': number;
7027
6952
  }
7028
6953
  /**
7029
6954
  *
@@ -7061,12 +6986,6 @@ export interface IPlanResponse {
7061
6986
  * @memberof IPlanResponse
7062
6987
  */
7063
6988
  'name': string;
7064
- /**
7065
- *
7066
- * @type {string}
7067
- * @memberof IPlanResponse
7068
- */
7069
- 'description'?: string;
7070
6989
  /**
7071
6990
  *
7072
6991
  * @type {PlanTypeEnum}
@@ -7075,103 +6994,96 @@ export interface IPlanResponse {
7075
6994
  'type': PlanTypeEnum;
7076
6995
  /**
7077
6996
  *
7078
- * @type {Array<IPlanResponsePriceInner>}
6997
+ * @type {string}
7079
6998
  * @memberof IPlanResponse
7080
6999
  */
7081
- 'price': Array<IPlanResponsePriceInner>;
7000
+ 'company'?: string;
7082
7001
  /**
7083
7002
  *
7084
- * @type {Array<IPlanResponseAttributesInner>}
7003
+ * @type {RecordPlanCurrencyEnumNumber}
7085
7004
  * @memberof IPlanResponse
7086
7005
  */
7087
- 'attributes'?: Array<IPlanResponseAttributesInner>;
7006
+ 'monthlyPrice': RecordPlanCurrencyEnumNumber;
7088
7007
  /**
7089
7008
  *
7090
- * @type {PlanStatusEnum}
7009
+ * @type {RecordPlanCurrencyEnumNumber}
7091
7010
  * @memberof IPlanResponse
7092
7011
  */
7093
- 'status': PlanStatusEnum;
7094
- }
7095
- /**
7096
- *
7097
- * @export
7098
- * @interface IPlanResponseAttributesInner
7099
- */
7100
- export interface IPlanResponseAttributesInner {
7012
+ 'annuallyPrice': RecordPlanCurrencyEnumNumber;
7101
7013
  /**
7102
7014
  *
7103
- * @type {boolean}
7104
- * @memberof IPlanResponseAttributesInner
7015
+ * @type {IPlanResponseLimits}
7016
+ * @memberof IPlanResponse
7105
7017
  */
7106
- 'active': boolean;
7018
+ 'limits': IPlanResponseLimits;
7107
7019
  /**
7108
7020
  *
7109
- * @type {string}
7110
- * @memberof IPlanResponseAttributesInner
7021
+ * @type {number}
7022
+ * @memberof IPlanResponse
7111
7023
  */
7112
- 'description': string;
7024
+ 'addonAmount': number;
7113
7025
  /**
7114
7026
  *
7115
- * @type {string}
7116
- * @memberof IPlanResponseAttributesInner
7027
+ * @type {PlanStatusEnum}
7028
+ * @memberof IPlanResponse
7117
7029
  */
7118
- 'title': string;
7030
+ 'status': PlanStatusEnum;
7119
7031
  }
7120
7032
  /**
7121
7033
  *
7122
7034
  * @export
7123
- * @interface IPlanResponsePriceInner
7035
+ * @interface IPlanResponseLimits
7124
7036
  */
7125
- export interface IPlanResponsePriceInner {
7037
+ export interface IPlanResponseLimits {
7126
7038
  /**
7127
7039
  *
7128
- * @type {PlanCurrencyEnum}
7129
- * @memberof IPlanResponsePriceInner
7040
+ * @type {number}
7041
+ * @memberof IPlanResponseLimits
7130
7042
  */
7131
- 'currency': PlanCurrencyEnum;
7043
+ 'users': number;
7132
7044
  /**
7133
7045
  *
7134
7046
  * @type {number}
7135
- * @memberof IPlanResponsePriceInner
7047
+ * @memberof IPlanResponseLimits
7136
7048
  */
7137
- 'annually': number;
7049
+ 'languages': number;
7138
7050
  /**
7139
7051
  *
7140
7052
  * @type {number}
7141
- * @memberof IPlanResponsePriceInner
7053
+ * @memberof IPlanResponseLimits
7142
7054
  */
7143
- 'monthly': number;
7144
- }
7145
- /**
7146
- *
7147
- * @export
7148
- * @interface IPlansResponse
7149
- */
7150
- export interface IPlansResponse {
7055
+ 'products': number;
7151
7056
  /**
7152
7057
  *
7153
7058
  * @type {number}
7154
- * @memberof IPlansResponse
7059
+ * @memberof IPlanResponseLimits
7155
7060
  */
7156
- 'page': number;
7061
+ 'cmsItems': number;
7157
7062
  /**
7158
7063
  *
7159
7064
  * @type {number}
7160
- * @memberof IPlansResponse
7065
+ * @memberof IPlanResponseLimits
7161
7066
  */
7162
- 'itemsPerPage': number;
7067
+ 'cmsCollections': number;
7163
7068
  /**
7164
7069
  *
7165
7070
  * @type {number}
7166
- * @memberof IPlansResponse
7071
+ * @memberof IPlanResponseLimits
7167
7072
  */
7168
- 'total': number;
7073
+ 'storage': number;
7169
7074
  /**
7170
7075
  *
7171
7076
  * @type {number}
7172
- * @memberof IPlansResponse
7077
+ * @memberof IPlanResponseLimits
7173
7078
  */
7174
- 'totalPages': number;
7079
+ 'bandwidth': number;
7080
+ }
7081
+ /**
7082
+ *
7083
+ * @export
7084
+ * @interface IPlansResponse
7085
+ */
7086
+ export interface IPlansResponse {
7175
7087
  /**
7176
7088
  *
7177
7089
  * @type {Array<IPlanResponse>}
@@ -8172,207 +8084,390 @@ export interface IReviewResponse {
8172
8084
  /**
8173
8085
  *
8174
8086
  * @type {string}
8175
- * @memberof IReviewResponse
8087
+ * @memberof IReviewResponse
8088
+ */
8089
+ '_id': string;
8090
+ /**
8091
+ *
8092
+ * @type {number}
8093
+ * @memberof IReviewResponse
8094
+ */
8095
+ '__v': number;
8096
+ /**
8097
+ *
8098
+ * @type {string}
8099
+ * @memberof IReviewResponse
8100
+ */
8101
+ 'createdAt': string;
8102
+ /**
8103
+ *
8104
+ * @type {string}
8105
+ * @memberof IReviewResponse
8106
+ */
8107
+ 'updatedAt': string;
8108
+ /**
8109
+ *
8110
+ * @type {string}
8111
+ * @memberof IReviewResponse
8112
+ */
8113
+ 'user': string;
8114
+ /**
8115
+ *
8116
+ * @type {string}
8117
+ * @memberof IReviewResponse
8118
+ */
8119
+ 'order': string;
8120
+ /**
8121
+ *
8122
+ * @type {string}
8123
+ * @memberof IReviewResponse
8124
+ */
8125
+ 'relId': string;
8126
+ /**
8127
+ *
8128
+ * @type {PartialRecordLanguageEnumString}
8129
+ * @memberof IReviewResponse
8130
+ */
8131
+ 'mainVariantTitle': PartialRecordLanguageEnumString;
8132
+ /**
8133
+ *
8134
+ * @type {PartialRecordLanguageEnumString}
8135
+ * @memberof IReviewResponse
8136
+ */
8137
+ 'subVariantTitle': PartialRecordLanguageEnumString;
8138
+ /**
8139
+ *
8140
+ * @type {string}
8141
+ * @memberof IReviewResponse
8142
+ */
8143
+ 'mainVariantId'?: string;
8144
+ /**
8145
+ *
8146
+ * @type {string}
8147
+ * @memberof IReviewResponse
8148
+ */
8149
+ 'subVariantId'?: string;
8150
+ /**
8151
+ *
8152
+ * @type {number}
8153
+ * @memberof IReviewResponse
8154
+ */
8155
+ 'rating': number;
8156
+ /**
8157
+ *
8158
+ * @type {string}
8159
+ * @memberof IReviewResponse
8160
+ */
8161
+ 'title': string;
8162
+ /**
8163
+ *
8164
+ * @type {string}
8165
+ * @memberof IReviewResponse
8166
+ */
8167
+ 'comment': string;
8168
+ /**
8169
+ *
8170
+ * @type {IProductResponse}
8171
+ * @memberof IReviewResponse
8172
+ */
8173
+ 'product': IProductResponse;
8174
+ }
8175
+ /**
8176
+ *
8177
+ * @export
8178
+ * @interface ISitemapResponse
8179
+ */
8180
+ export interface ISitemapResponse {
8181
+ /**
8182
+ *
8183
+ * @type {LanguageEnum}
8184
+ * @memberof ISitemapResponse
8185
+ */
8186
+ 'companyDefaultLanguage': LanguageEnum;
8187
+ /**
8188
+ *
8189
+ * @type {Array<ISitemapResponseSlugsInner>}
8190
+ * @memberof ISitemapResponse
8191
+ */
8192
+ 'slugs': Array<ISitemapResponseSlugsInner>;
8193
+ }
8194
+ /**
8195
+ *
8196
+ * @export
8197
+ * @interface ISitemapResponseSlugsInner
8198
+ */
8199
+ export interface ISitemapResponseSlugsInner {
8200
+ /**
8201
+ *
8202
+ * @type {string}
8203
+ * @memberof ISitemapResponseSlugsInner
8204
+ */
8205
+ 'updatedAt': string;
8206
+ /**
8207
+ *
8208
+ * @type {string}
8209
+ * @memberof ISitemapResponseSlugsInner
8210
+ */
8211
+ 'slug': string;
8212
+ /**
8213
+ *
8214
+ * @type {LanguageEnum}
8215
+ * @memberof ISitemapResponseSlugsInner
8216
+ */
8217
+ 'lang': LanguageEnum;
8218
+ }
8219
+ /**
8220
+ *
8221
+ * @export
8222
+ * @interface ISitemapsResponse
8223
+ */
8224
+ export interface ISitemapsResponse {
8225
+ /**
8226
+ *
8227
+ * @type {Array<ISitemapsResponseDataInner>}
8228
+ * @memberof ISitemapsResponse
8229
+ */
8230
+ 'data': Array<ISitemapsResponseDataInner>;
8231
+ }
8232
+ /**
8233
+ *
8234
+ * @export
8235
+ * @interface ISitemapsResponseDataInner
8236
+ */
8237
+ export interface ISitemapsResponseDataInner {
8238
+ /**
8239
+ *
8240
+ * @type {Array<number>}
8241
+ * @memberof ISitemapsResponseDataInner
8242
+ */
8243
+ 'pages': Array<number>;
8244
+ /**
8245
+ *
8246
+ * @type {SitemapTypeEnum}
8247
+ * @memberof ISitemapsResponseDataInner
8248
+ */
8249
+ 'type': SitemapTypeEnum;
8250
+ }
8251
+ /**
8252
+ *
8253
+ * @export
8254
+ * @interface ISocialLoginRequest
8255
+ */
8256
+ export interface ISocialLoginRequest {
8257
+ /**
8258
+ *
8259
+ * @type {string}
8260
+ * @memberof ISocialLoginRequest
8261
+ */
8262
+ 'token': string;
8263
+ /**
8264
+ *
8265
+ * @type {LanguageEnum}
8266
+ * @memberof ISocialLoginRequest
8267
+ */
8268
+ 'language'?: LanguageEnum;
8269
+ }
8270
+ /**
8271
+ *
8272
+ * @export
8273
+ * @interface IState
8274
+ */
8275
+ export interface IState {
8276
+ /**
8277
+ *
8278
+ * @type {string}
8279
+ * @memberof IState
8280
+ */
8281
+ 'name': string;
8282
+ /**
8283
+ *
8284
+ * @type {Array<string>}
8285
+ * @memberof IState
8286
+ */
8287
+ 'cities': Array<string>;
8288
+ }
8289
+ /**
8290
+ *
8291
+ * @export
8292
+ * @interface ISubscription
8293
+ */
8294
+ export interface ISubscription {
8295
+ /**
8296
+ *
8297
+ * @type {string}
8298
+ * @memberof ISubscription
8176
8299
  */
8177
8300
  '_id': string;
8178
8301
  /**
8179
8302
  *
8180
8303
  * @type {number}
8181
- * @memberof IReviewResponse
8304
+ * @memberof ISubscription
8182
8305
  */
8183
8306
  '__v': number;
8184
8307
  /**
8185
8308
  *
8186
8309
  * @type {string}
8187
- * @memberof IReviewResponse
8310
+ * @memberof ISubscription
8188
8311
  */
8189
8312
  'createdAt': string;
8190
8313
  /**
8191
8314
  *
8192
8315
  * @type {string}
8193
- * @memberof IReviewResponse
8316
+ * @memberof ISubscription
8194
8317
  */
8195
8318
  'updatedAt': string;
8196
8319
  /**
8197
8320
  *
8198
8321
  * @type {string}
8199
- * @memberof IReviewResponse
8322
+ * @memberof ISubscription
8200
8323
  */
8201
- 'user': string;
8324
+ 'paymentId': string;
8202
8325
  /**
8203
8326
  *
8204
8327
  * @type {string}
8205
- * @memberof IReviewResponse
8328
+ * @memberof ISubscription
8206
8329
  */
8207
- 'order': string;
8330
+ 'iframe': string;
8208
8331
  /**
8209
8332
  *
8210
8333
  * @type {string}
8211
- * @memberof IReviewResponse
8334
+ * @memberof ISubscription
8212
8335
  */
8213
- 'relId': string;
8336
+ 'company': string;
8214
8337
  /**
8215
8338
  *
8216
- * @type {PartialRecordLanguageEnumString}
8217
- * @memberof IReviewResponse
8339
+ * @type {SubscriptionPlanEnum}
8340
+ * @memberof ISubscription
8218
8341
  */
8219
- 'mainVariantTitle': PartialRecordLanguageEnumString;
8342
+ 'plan': SubscriptionPlanEnum;
8220
8343
  /**
8221
8344
  *
8222
- * @type {PartialRecordLanguageEnumString}
8223
- * @memberof IReviewResponse
8345
+ * @type {SubscriptionStatusEnum}
8346
+ * @memberof ISubscription
8224
8347
  */
8225
- 'subVariantTitle': PartialRecordLanguageEnumString;
8348
+ 'status': SubscriptionStatusEnum;
8226
8349
  /**
8227
8350
  *
8228
8351
  * @type {string}
8229
- * @memberof IReviewResponse
8352
+ * @memberof ISubscription
8230
8353
  */
8231
- 'mainVariantId'?: string;
8354
+ 'startDate': string;
8232
8355
  /**
8233
8356
  *
8234
8357
  * @type {string}
8235
- * @memberof IReviewResponse
8358
+ * @memberof ISubscription
8236
8359
  */
8237
- 'subVariantId'?: string;
8360
+ 'endDate': string;
8238
8361
  /**
8239
8362
  *
8240
- * @type {number}
8241
- * @memberof IReviewResponse
8363
+ * @type {IPlanResponseLimits}
8364
+ * @memberof ISubscription
8242
8365
  */
8243
- 'rating': number;
8366
+ 'limits': IPlanResponseLimits;
8244
8367
  /**
8245
8368
  *
8246
- * @type {string}
8247
- * @memberof IReviewResponse
8369
+ * @type {number}
8370
+ * @memberof ISubscription
8248
8371
  */
8249
- 'title': string;
8372
+ 'price': number;
8250
8373
  /**
8251
8374
  *
8252
- * @type {string}
8253
- * @memberof IReviewResponse
8375
+ * @type {number}
8376
+ * @memberof ISubscription
8254
8377
  */
8255
- 'comment': string;
8378
+ 'addonAmount': number;
8256
8379
  /**
8257
8380
  *
8258
- * @type {IProductResponse}
8259
- * @memberof IReviewResponse
8381
+ * @type {number}
8382
+ * @memberof ISubscription
8260
8383
  */
8261
- 'product': IProductResponse;
8384
+ 'addonUsage': number;
8262
8385
  }
8263
8386
  /**
8264
8387
  *
8265
8388
  * @export
8266
- * @interface ISitemapResponse
8389
+ * @interface ISubscriptionPostRequest
8267
8390
  */
8268
- export interface ISitemapResponse {
8391
+ export interface ISubscriptionPostRequest {
8269
8392
  /**
8270
8393
  *
8271
- * @type {LanguageEnum}
8272
- * @memberof ISitemapResponse
8394
+ * @type {string}
8395
+ * @memberof ISubscriptionPostRequest
8273
8396
  */
8274
- 'companyDefaultLanguage': LanguageEnum;
8397
+ 'period': ISubscriptionPostRequestPeriodEnum;
8275
8398
  /**
8276
8399
  *
8277
- * @type {Array<ISitemapResponseSlugsInner>}
8278
- * @memberof ISitemapResponse
8400
+ * @type {SubscriptionStatusEnum}
8401
+ * @memberof ISubscriptionPostRequest
8279
8402
  */
8280
- 'slugs': Array<ISitemapResponseSlugsInner>;
8403
+ 'status': SubscriptionStatusEnum;
8281
8404
  }
8405
+ export declare const ISubscriptionPostRequestPeriodEnum: {
8406
+ readonly MONTHLY: "monthly";
8407
+ readonly YEARLY: "yearly";
8408
+ };
8409
+ export type ISubscriptionPostRequestPeriodEnum = typeof ISubscriptionPostRequestPeriodEnum[keyof typeof ISubscriptionPostRequestPeriodEnum];
8282
8410
  /**
8283
8411
  *
8284
8412
  * @export
8285
- * @interface ISitemapResponseSlugsInner
8413
+ * @interface ISubscriptionQueryParams
8286
8414
  */
8287
- export interface ISitemapResponseSlugsInner {
8288
- /**
8289
- *
8290
- * @type {string}
8291
- * @memberof ISitemapResponseSlugsInner
8292
- */
8293
- 'updatedAt': string;
8415
+ export interface ISubscriptionQueryParams {
8294
8416
  /**
8295
8417
  *
8296
- * @type {string}
8297
- * @memberof ISitemapResponseSlugsInner
8418
+ * @type {number}
8419
+ * @memberof ISubscriptionQueryParams
8298
8420
  */
8299
- 'slug': string;
8421
+ 'page'?: number;
8300
8422
  /**
8301
8423
  *
8302
- * @type {LanguageEnum}
8303
- * @memberof ISitemapResponseSlugsInner
8424
+ * @type {number}
8425
+ * @memberof ISubscriptionQueryParams
8304
8426
  */
8305
- 'lang': LanguageEnum;
8306
- }
8307
- /**
8308
- *
8309
- * @export
8310
- * @interface ISitemapsResponse
8311
- */
8312
- export interface ISitemapsResponse {
8427
+ 'itemsPerPage'?: number;
8313
8428
  /**
8314
8429
  *
8315
- * @type {Array<ISitemapsResponseDataInner>}
8316
- * @memberof ISitemapsResponse
8430
+ * @type {SubscriptionStatusEnum}
8431
+ * @memberof ISubscriptionQueryParams
8317
8432
  */
8318
- 'data': Array<ISitemapsResponseDataInner>;
8433
+ 'status'?: SubscriptionStatusEnum;
8319
8434
  }
8320
8435
  /**
8321
8436
  *
8322
8437
  * @export
8323
- * @interface ISitemapsResponseDataInner
8438
+ * @interface ISubscriptionsResponse
8324
8439
  */
8325
- export interface ISitemapsResponseDataInner {
8326
- /**
8327
- *
8328
- * @type {Array<number>}
8329
- * @memberof ISitemapsResponseDataInner
8330
- */
8331
- 'pages': Array<number>;
8440
+ export interface ISubscriptionsResponse {
8332
8441
  /**
8333
8442
  *
8334
- * @type {SitemapTypeEnum}
8335
- * @memberof ISitemapsResponseDataInner
8443
+ * @type {number}
8444
+ * @memberof ISubscriptionsResponse
8336
8445
  */
8337
- 'type': SitemapTypeEnum;
8338
- }
8339
- /**
8340
- *
8341
- * @export
8342
- * @interface ISocialLoginRequest
8343
- */
8344
- export interface ISocialLoginRequest {
8446
+ 'totalPages': number;
8345
8447
  /**
8346
8448
  *
8347
- * @type {string}
8348
- * @memberof ISocialLoginRequest
8449
+ * @type {number}
8450
+ * @memberof ISubscriptionsResponse
8349
8451
  */
8350
- 'token': string;
8452
+ 'page': number;
8351
8453
  /**
8352
8454
  *
8353
- * @type {LanguageEnum}
8354
- * @memberof ISocialLoginRequest
8455
+ * @type {number}
8456
+ * @memberof ISubscriptionsResponse
8355
8457
  */
8356
- 'language'?: LanguageEnum;
8357
- }
8358
- /**
8359
- *
8360
- * @export
8361
- * @interface IState
8362
- */
8363
- export interface IState {
8458
+ 'itemsPerPage': number;
8364
8459
  /**
8365
8460
  *
8366
- * @type {string}
8367
- * @memberof IState
8461
+ * @type {number}
8462
+ * @memberof ISubscriptionsResponse
8368
8463
  */
8369
- 'name': string;
8464
+ 'total': number;
8370
8465
  /**
8371
8466
  *
8372
- * @type {Array<string>}
8373
- * @memberof IState
8467
+ * @type {Array<ISubscription>}
8468
+ * @memberof ISubscriptionsResponse
8374
8469
  */
8375
- 'cities': Array<string>;
8470
+ 'data': Array<ISubscription>;
8376
8471
  }
8377
8472
  /**
8378
8473
  *
@@ -10016,17 +10111,6 @@ export declare const PaymentMethodEnum: {
10016
10111
  readonly CARD_ON_DELIVERY: "card_on_delivery";
10017
10112
  };
10018
10113
  export type PaymentMethodEnum = typeof PaymentMethodEnum[keyof typeof PaymentMethodEnum];
10019
- /**
10020
- *
10021
- * @export
10022
- * @enum {string}
10023
- */
10024
- export declare const PaymentStatusEnum: {
10025
- readonly WAITING_APPROVAL: "waiting_approval";
10026
- readonly PAID: "paid";
10027
- readonly FAILED: "failed";
10028
- };
10029
- export type PaymentStatusEnum = typeof PaymentStatusEnum[keyof typeof PaymentStatusEnum];
10030
10114
  /**
10031
10115
  * From T, pick a set of properties whose keys are in the union K
10032
10116
  * @export
@@ -10456,6 +10540,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
10456
10540
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
10457
10541
  */
10458
10542
  'plan': PlanTypeEnum;
10543
+ /**
10544
+ *
10545
+ * @type {string}
10546
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
10547
+ */
10548
+ 'planId': string;
10459
10549
  /**
10460
10550
  *
10461
10551
  * @type {string}
@@ -11386,6 +11476,61 @@ export interface PickIPageResponseExcludeKeyofIPageResponseKeyofMongoResponseOrT
11386
11476
  */
11387
11477
  'type': string;
11388
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
+ }
11389
11534
  /**
11390
11535
  * From T, pick a set of properties whose keys are in the union K
11391
11536
  * @export
@@ -12326,17 +12471,6 @@ export interface PickShippingProviderExcludeKeyofShippingProviderId {
12326
12471
  */
12327
12472
  'rates': Array<ShippingProviderRates>;
12328
12473
  }
12329
- /**
12330
- *
12331
- * @export
12332
- * @enum {string}
12333
- */
12334
- export declare const PlanCurrencyEnum: {
12335
- readonly TRY: "try";
12336
- readonly EUR: "eur";
12337
- readonly USD: "usd";
12338
- };
12339
- export type PlanCurrencyEnum = typeof PlanCurrencyEnum[keyof typeof PlanCurrencyEnum];
12340
12474
  /**
12341
12475
  *
12342
12476
  * @export
@@ -12354,12 +12488,15 @@ export type PlanStatusEnum = typeof PlanStatusEnum[keyof typeof PlanStatusEnum];
12354
12488
  * @enum {string}
12355
12489
  */
12356
12490
  export declare const PlanTypeEnum: {
12491
+ readonly ADDON_BANDWIDTH: "addon-bandwidth";
12357
12492
  readonly STANDARD_B2C: "standard-b2c";
12358
12493
  readonly ADVANCED_B2C: "advanced-b2c";
12359
12494
  readonly PREMIUM_B2C: "premium-b2c";
12495
+ readonly ENTERPRISE_B2C: "enterprise-b2c";
12360
12496
  readonly STANDARD_CMS: "standard-cms";
12361
12497
  readonly ADVANCED_CMS: "advanced-cms";
12362
12498
  readonly PREMIUM_CMS: "premium-cms";
12499
+ readonly ENTERPRISE_CMS: "enterprise-cms";
12363
12500
  };
12364
12501
  export type PlanTypeEnum = typeof PlanTypeEnum[keyof typeof PlanTypeEnum];
12365
12502
  /**
@@ -12405,6 +12542,18 @@ export interface RecordCompanyOnboardingStepEnumBoolean {
12405
12542
  * @memberof RecordCompanyOnboardingStepEnumBoolean
12406
12543
  */
12407
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;
12408
12557
  /**
12409
12558
  *
12410
12559
  * @type {boolean}
@@ -12583,58 +12732,27 @@ export interface RecordLanguageEnumTitleStringTr {
12583
12732
  /**
12584
12733
  * Construct a type with a set of properties K of type T
12585
12734
  * @export
12586
- * @interface RecordPlanTypeEnumMonthlyBandwidthNumber
12735
+ * @interface RecordPlanCurrencyEnumNumber
12587
12736
  */
12588
- export interface RecordPlanTypeEnumMonthlyBandwidthNumber {
12589
- /**
12590
- *
12591
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12592
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12593
- */
12594
- 'standard-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12595
- /**
12596
- *
12597
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12598
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12599
- */
12600
- 'advanced-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12601
- /**
12602
- *
12603
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12604
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12605
- */
12606
- 'premium-b2c': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12737
+ export interface RecordPlanCurrencyEnumNumber {
12607
12738
  /**
12608
12739
  *
12609
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12610
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12611
- */
12612
- 'standard-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12613
- /**
12614
- *
12615
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12616
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12740
+ * @type {number}
12741
+ * @memberof RecordPlanCurrencyEnumNumber
12617
12742
  */
12618
- 'advanced-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12743
+ 'TRY': number;
12619
12744
  /**
12620
12745
  *
12621
- * @type {RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c}
12622
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumber
12746
+ * @type {number}
12747
+ * @memberof RecordPlanCurrencyEnumNumber
12623
12748
  */
12624
- 'premium-cms': RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c;
12625
- }
12626
- /**
12627
- *
12628
- * @export
12629
- * @interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c
12630
- */
12631
- export interface RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c {
12749
+ 'USD': number;
12632
12750
  /**
12633
12751
  *
12634
12752
  * @type {number}
12635
- * @memberof RecordPlanTypeEnumMonthlyBandwidthNumberStandardB2c
12753
+ * @memberof RecordPlanCurrencyEnumNumber
12636
12754
  */
12637
- 'monthlyBandwidth': number;
12755
+ 'EUR': number;
12638
12756
  }
12639
12757
  /**
12640
12758
  *
@@ -12802,7 +12920,7 @@ export declare const SitemapTypeEnum: {
12802
12920
  readonly PRODUCTS: "products";
12803
12921
  readonly PAGES: "pages";
12804
12922
  readonly COLLECTIONS: "collections";
12805
- readonly BLOG: "blog";
12923
+ readonly BLOGS: "blogs";
12806
12924
  readonly UNIQUE_PAGES: "unique-pages";
12807
12925
  };
12808
12926
  export type SitemapTypeEnum = typeof SitemapTypeEnum[keyof typeof SitemapTypeEnum];
@@ -12860,6 +12978,33 @@ export interface SubCategories {
12860
12978
  */
12861
12979
  '_id': string;
12862
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];
12863
13008
  /**
12864
13009
  *
12865
13010
  * @export
@@ -15167,12 +15312,12 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15167
15312
  createCompany: (iCompanyPostRequest: ICompanyPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15168
15313
  /**
15169
15314
  *
15170
- * @param {string} id
15171
- * @param {IPaymentPostRequest} iPaymentPostRequest
15315
+ * @param {string} companyId
15316
+ * @param {ICompanyCreateLanguageRequest} iCompanyCreateLanguageRequest
15172
15317
  * @param {*} [options] Override http request option.
15173
15318
  * @throws {RequiredError}
15174
15319
  */
15175
- createCompanyPayment: (id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15320
+ createCompanyLanguage: (companyId: string, iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15176
15321
  /**
15177
15322
  *
15178
15323
  * @param {string} id
@@ -15189,6 +15334,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15189
15334
  * @throws {RequiredError}
15190
15335
  */
15191
15336
  createCompanyShippingProviders: (id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15337
+ /**
15338
+ *
15339
+ * @param {string} id
15340
+ * @param {ISubscriptionPostRequest} iSubscriptionPostRequest
15341
+ * @param {*} [options] Override http request option.
15342
+ * @throws {RequiredError}
15343
+ */
15344
+ createCompanySubscription: (id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15192
15345
  /**
15193
15346
  *
15194
15347
  * @param {string} id
@@ -15315,13 +15468,6 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15315
15468
  * @throws {RequiredError}
15316
15469
  */
15317
15470
  getCompanyDashboard: (id: string, start?: string, end?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15318
- /**
15319
- *
15320
- * @param {string} id
15321
- * @param {*} [options] Override http request option.
15322
- * @throws {RequiredError}
15323
- */
15324
- getCompanyMonthlyBandwidth: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15325
15471
  /**
15326
15472
  *
15327
15473
  * @param {string} id
@@ -15332,43 +15478,44 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15332
15478
  /**
15333
15479
  *
15334
15480
  * @param {string} id
15335
- * @param {string} paymentId
15336
15481
  * @param {*} [options] Override http request option.
15337
15482
  * @throws {RequiredError}
15338
15483
  */
15339
- getCompanyPayment: (id: string, paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15484
+ getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15340
15485
  /**
15341
15486
  *
15342
15487
  * @param {string} id
15488
+ * @param {ReviewStatusEnum} [status]
15343
15489
  * @param {*} [options] Override http request option.
15344
15490
  * @throws {RequiredError}
15345
15491
  */
15346
- getCompanyPaymentGateways: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15492
+ getCompanyProductReviews: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15347
15493
  /**
15348
15494
  *
15349
15495
  * @param {string} id
15350
- * @param {number} [itemsPerPage]
15351
- * @param {number} [page]
15496
+ * @param {ReviewStatusEnum} [status]
15352
15497
  * @param {*} [options] Override http request option.
15353
15498
  * @throws {RequiredError}
15354
15499
  */
15355
- getCompanyPayments: (id: string, itemsPerPage?: number, page?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15500
+ getCompanyReviewCount: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15356
15501
  /**
15357
15502
  *
15358
15503
  * @param {string} id
15359
- * @param {ReviewStatusEnum} [status]
15504
+ * @param {string} paymentId
15360
15505
  * @param {*} [options] Override http request option.
15361
15506
  * @throws {RequiredError}
15362
15507
  */
15363
- getCompanyProductReviews: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15508
+ getCompanySubscription: (id: string, paymentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15364
15509
  /**
15365
15510
  *
15366
15511
  * @param {string} id
15367
- * @param {ReviewStatusEnum} [status]
15512
+ * @param {number} [page]
15513
+ * @param {number} [itemsPerPage]
15514
+ * @param {SubscriptionStatusEnum} [status]
15368
15515
  * @param {*} [options] Override http request option.
15369
15516
  * @throws {RequiredError}
15370
15517
  */
15371
- getCompanyReviewCount: (id: string, status?: ReviewStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15518
+ getCompanySubscriptions: (id: string, page?: number, itemsPerPage?: number, status?: SubscriptionStatusEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15372
15519
  /**
15373
15520
  *
15374
15521
  * @param {string} id
@@ -15400,6 +15547,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
15400
15547
  * @throws {RequiredError}
15401
15548
  */
15402
15549
  setCompanySenderEmail: (id: string, setCompanySenderEmailRequest: SetCompanySenderEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15550
+ /**
15551
+ *
15552
+ * @param {string} id
15553
+ * @param {LanguageEnum} language
15554
+ * @param {*} [options] Override http request option.
15555
+ * @throws {RequiredError}
15556
+ */
15557
+ setDefaultCompanyLanguage: (id: string, language: LanguageEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15403
15558
  /**
15404
15559
  *
15405
15560
  * @param {string} id
@@ -15523,12 +15678,12 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15523
15678
  createCompany(iCompanyPostRequest: ICompanyPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
15524
15679
  /**
15525
15680
  *
15526
- * @param {string} id
15527
- * @param {IPaymentPostRequest} iPaymentPostRequest
15681
+ * @param {string} companyId
15682
+ * @param {ICompanyCreateLanguageRequest} iCompanyCreateLanguageRequest
15528
15683
  * @param {*} [options] Override http request option.
15529
15684
  * @throws {RequiredError}
15530
15685
  */
15531
- createCompanyPayment(id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
15686
+ createCompanyLanguage(companyId: string, iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15532
15687
  /**
15533
15688
  *
15534
15689
  * @param {string} id
@@ -15545,6 +15700,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15545
15700
  * @throws {RequiredError}
15546
15701
  */
15547
15702
  createCompanyShippingProviders(id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15703
+ /**
15704
+ *
15705
+ * @param {string} id
15706
+ * @param {ISubscriptionPostRequest} iSubscriptionPostRequest
15707
+ * @param {*} [options] Override http request option.
15708
+ * @throws {RequiredError}
15709
+ */
15710
+ createCompanySubscription(id: string, iSubscriptionPostRequest: ISubscriptionPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
15548
15711
  /**
15549
15712
  *
15550
15713
  * @param {string} id
@@ -15671,13 +15834,6 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15671
15834
  * @throws {RequiredError}
15672
15835
  */
15673
15836
  getCompanyDashboard(id: string, start?: string, end?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyDashboardResponse>>;
15674
- /**
15675
- *
15676
- * @param {string} id
15677
- * @param {*} [options] Override http request option.
15678
- * @throws {RequiredError}
15679
- */
15680
- getCompanyMonthlyBandwidth(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyMonthlyBandwidthResponse>>;
15681
15837
  /**
15682
15838
  *
15683
15839
  * @param {string} id
@@ -15688,43 +15844,44 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15688
15844
  /**
15689
15845
  *
15690
15846
  * @param {string} id
15691
- * @param {string} paymentId
15692
15847
  * @param {*} [options] Override http request option.
15693
15848
  * @throws {RequiredError}
15694
15849
  */
15695
- 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>>;
15696
15851
  /**
15697
15852
  *
15698
15853
  * @param {string} id
15854
+ * @param {ReviewStatusEnum} [status]
15699
15855
  * @param {*} [options] Override http request option.
15700
15856
  * @throws {RequiredError}
15701
15857
  */
15702
- 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>>;
15703
15859
  /**
15704
15860
  *
15705
15861
  * @param {string} id
15706
- * @param {number} [itemsPerPage]
15707
- * @param {number} [page]
15862
+ * @param {ReviewStatusEnum} [status]
15708
15863
  * @param {*} [options] Override http request option.
15709
15864
  * @throws {RequiredError}
15710
15865
  */
15711
- 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>>;
15712
15867
  /**
15713
15868
  *
15714
15869
  * @param {string} id
15715
- * @param {ReviewStatusEnum} [status]
15870
+ * @param {string} paymentId
15716
15871
  * @param {*} [options] Override http request option.
15717
15872
  * @throws {RequiredError}
15718
15873
  */
15719
- 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>>;
15720
15875
  /**
15721
15876
  *
15722
15877
  * @param {string} id
15723
- * @param {ReviewStatusEnum} [status]
15878
+ * @param {number} [page]
15879
+ * @param {number} [itemsPerPage]
15880
+ * @param {SubscriptionStatusEnum} [status]
15724
15881
  * @param {*} [options] Override http request option.
15725
15882
  * @throws {RequiredError}
15726
15883
  */
15727
- 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>>;
15728
15885
  /**
15729
15886
  *
15730
15887
  * @param {string} id
@@ -15756,6 +15913,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
15756
15913
  * @throws {RequiredError}
15757
15914
  */
15758
15915
  setCompanySenderEmail(id: string, setCompanySenderEmailRequest: SetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompany>>;
15916
+ /**
15917
+ *
15918
+ * @param {string} id
15919
+ * @param {LanguageEnum} language
15920
+ * @param {*} [options] Override http request option.
15921
+ * @throws {RequiredError}
15922
+ */
15923
+ setDefaultCompanyLanguage(id: string, language: LanguageEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15759
15924
  /**
15760
15925
  *
15761
15926
  * @param {string} id
@@ -15877,11 +16042,11 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
15877
16042
  createCompany(requestParameters: CompanyApiCreateCompanyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
15878
16043
  /**
15879
16044
  *
15880
- * @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
16045
+ * @param {CompanyApiCreateCompanyLanguageRequest} requestParameters Request parameters.
15881
16046
  * @param {*} [options] Override http request option.
15882
16047
  * @throws {RequiredError}
15883
16048
  */
15884
- createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
16049
+ createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15885
16050
  /**
15886
16051
  *
15887
16052
  * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
@@ -15896,6 +16061,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
15896
16061
  * @throws {RequiredError}
15897
16062
  */
15898
16063
  createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16064
+ /**
16065
+ *
16066
+ * @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
16067
+ * @param {*} [options] Override http request option.
16068
+ * @throws {RequiredError}
16069
+ */
16070
+ createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
15899
16071
  /**
15900
16072
  *
15901
16073
  * @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
@@ -15994,13 +16166,6 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
15994
16166
  * @throws {RequiredError}
15995
16167
  */
15996
16168
  getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyDashboardResponse>;
15997
- /**
15998
- *
15999
- * @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
16000
- * @param {*} [options] Override http request option.
16001
- * @throws {RequiredError}
16002
- */
16003
- getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyMonthlyBandwidthResponse>;
16004
16169
  /**
16005
16170
  *
16006
16171
  * @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
@@ -16010,39 +16175,39 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
16010
16175
  getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCompanyOnboarding200Response>;
16011
16176
  /**
16012
16177
  *
16013
- * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
16178
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
16014
16179
  * @param {*} [options] Override http request option.
16015
16180
  * @throws {RequiredError}
16016
16181
  */
16017
- getCompanyPayment(requestParameters: CompanyApiGetCompanyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPayment>;
16182
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
16018
16183
  /**
16019
16184
  *
16020
- * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
16185
+ * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
16021
16186
  * @param {*} [options] Override http request option.
16022
16187
  * @throws {RequiredError}
16023
16188
  */
16024
- getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyPaymentGatewaysResponse>;
16189
+ getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IProductReviewsPopulateResponse>;
16025
16190
  /**
16026
16191
  *
16027
- * @param {CompanyApiGetCompanyPaymentsRequest} requestParameters Request parameters.
16192
+ * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
16028
16193
  * @param {*} [options] Override http request option.
16029
16194
  * @throws {RequiredError}
16030
16195
  */
16031
- getCompanyPayments(requestParameters: CompanyApiGetCompanyPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentsResponse>;
16196
+ getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetMyProductReviewCount200Response>;
16032
16197
  /**
16033
16198
  *
16034
- * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
16199
+ * @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
16035
16200
  * @param {*} [options] Override http request option.
16036
16201
  * @throws {RequiredError}
16037
16202
  */
16038
- getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): AxiosPromise<IProductReviewsPopulateResponse>;
16203
+ getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscription>;
16039
16204
  /**
16040
16205
  *
16041
- * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
16206
+ * @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
16042
16207
  * @param {*} [options] Override http request option.
16043
16208
  * @throws {RequiredError}
16044
16209
  */
16045
- getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetMyProductReviewCount200Response>;
16210
+ getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ISubscriptionsResponse>;
16046
16211
  /**
16047
16212
  *
16048
16213
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -16071,6 +16236,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
16071
16236
  * @throws {RequiredError}
16072
16237
  */
16073
16238
  setCompanySenderEmail(requestParameters: CompanyApiSetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompany>;
16239
+ /**
16240
+ *
16241
+ * @param {CompanyApiSetDefaultCompanyLanguageRequest} requestParameters Request parameters.
16242
+ * @param {*} [options] Override http request option.
16243
+ * @throws {RequiredError}
16244
+ */
16245
+ setDefaultCompanyLanguage(requestParameters: CompanyApiSetDefaultCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16074
16246
  /**
16075
16247
  *
16076
16248
  * @param {CompanyApiUpdateCompanyRequest} requestParameters Request parameters.
@@ -16207,23 +16379,23 @@ export interface CompanyApiCreateCompanyRequest {
16207
16379
  readonly iCompanyPostRequest: ICompanyPostRequest;
16208
16380
  }
16209
16381
  /**
16210
- * Request parameters for createCompanyPayment operation in CompanyApi.
16382
+ * Request parameters for createCompanyLanguage operation in CompanyApi.
16211
16383
  * @export
16212
- * @interface CompanyApiCreateCompanyPaymentRequest
16384
+ * @interface CompanyApiCreateCompanyLanguageRequest
16213
16385
  */
16214
- export interface CompanyApiCreateCompanyPaymentRequest {
16386
+ export interface CompanyApiCreateCompanyLanguageRequest {
16215
16387
  /**
16216
16388
  *
16217
16389
  * @type {string}
16218
- * @memberof CompanyApiCreateCompanyPayment
16390
+ * @memberof CompanyApiCreateCompanyLanguage
16219
16391
  */
16220
- readonly id: string;
16392
+ readonly companyId: string;
16221
16393
  /**
16222
16394
  *
16223
- * @type {IPaymentPostRequest}
16224
- * @memberof CompanyApiCreateCompanyPayment
16395
+ * @type {ICompanyCreateLanguageRequest}
16396
+ * @memberof CompanyApiCreateCompanyLanguage
16225
16397
  */
16226
- readonly iPaymentPostRequest: IPaymentPostRequest;
16398
+ readonly iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest;
16227
16399
  }
16228
16400
  /**
16229
16401
  * Request parameters for createCompanyPaymentGateways operation in CompanyApi.
@@ -16263,6 +16435,25 @@ export interface CompanyApiCreateCompanyShippingProvidersRequest {
16263
16435
  */
16264
16436
  readonly iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest;
16265
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
+ }
16266
16457
  /**
16267
16458
  * Request parameters for createCompanyWarehouses operation in CompanyApi.
16268
16459
  * @export
@@ -16614,125 +16805,118 @@ export interface CompanyApiGetCompanyDashboardRequest {
16614
16805
  readonly end?: string;
16615
16806
  }
16616
16807
  /**
16617
- * Request parameters for getCompanyMonthlyBandwidth operation in CompanyApi.
16808
+ * Request parameters for getCompanyOnboarding operation in CompanyApi.
16618
16809
  * @export
16619
- * @interface CompanyApiGetCompanyMonthlyBandwidthRequest
16810
+ * @interface CompanyApiGetCompanyOnboardingRequest
16620
16811
  */
16621
- export interface CompanyApiGetCompanyMonthlyBandwidthRequest {
16812
+ export interface CompanyApiGetCompanyOnboardingRequest {
16622
16813
  /**
16623
16814
  *
16624
16815
  * @type {string}
16625
- * @memberof CompanyApiGetCompanyMonthlyBandwidth
16816
+ * @memberof CompanyApiGetCompanyOnboarding
16626
16817
  */
16627
16818
  readonly id: string;
16628
16819
  }
16629
16820
  /**
16630
- * Request parameters for getCompanyOnboarding operation in CompanyApi.
16821
+ * Request parameters for getCompanyPaymentGateways operation in CompanyApi.
16631
16822
  * @export
16632
- * @interface CompanyApiGetCompanyOnboardingRequest
16823
+ * @interface CompanyApiGetCompanyPaymentGatewaysRequest
16633
16824
  */
16634
- export interface CompanyApiGetCompanyOnboardingRequest {
16825
+ export interface CompanyApiGetCompanyPaymentGatewaysRequest {
16635
16826
  /**
16636
16827
  *
16637
16828
  * @type {string}
16638
- * @memberof CompanyApiGetCompanyOnboarding
16829
+ * @memberof CompanyApiGetCompanyPaymentGateways
16639
16830
  */
16640
16831
  readonly id: string;
16641
16832
  }
16642
16833
  /**
16643
- * Request parameters for getCompanyPayment operation in CompanyApi.
16834
+ * Request parameters for getCompanyProductReviews operation in CompanyApi.
16644
16835
  * @export
16645
- * @interface CompanyApiGetCompanyPaymentRequest
16836
+ * @interface CompanyApiGetCompanyProductReviewsRequest
16646
16837
  */
16647
- export interface CompanyApiGetCompanyPaymentRequest {
16838
+ export interface CompanyApiGetCompanyProductReviewsRequest {
16648
16839
  /**
16649
16840
  *
16650
16841
  * @type {string}
16651
- * @memberof CompanyApiGetCompanyPayment
16842
+ * @memberof CompanyApiGetCompanyProductReviews
16652
16843
  */
16653
16844
  readonly id: string;
16654
16845
  /**
16655
16846
  *
16656
- * @type {string}
16657
- * @memberof CompanyApiGetCompanyPayment
16847
+ * @type {ReviewStatusEnum}
16848
+ * @memberof CompanyApiGetCompanyProductReviews
16658
16849
  */
16659
- readonly paymentId: string;
16850
+ readonly status?: ReviewStatusEnum;
16660
16851
  }
16661
16852
  /**
16662
- * Request parameters for getCompanyPaymentGateways operation in CompanyApi.
16853
+ * Request parameters for getCompanyReviewCount operation in CompanyApi.
16663
16854
  * @export
16664
- * @interface CompanyApiGetCompanyPaymentGatewaysRequest
16855
+ * @interface CompanyApiGetCompanyReviewCountRequest
16665
16856
  */
16666
- export interface CompanyApiGetCompanyPaymentGatewaysRequest {
16857
+ export interface CompanyApiGetCompanyReviewCountRequest {
16667
16858
  /**
16668
16859
  *
16669
16860
  * @type {string}
16670
- * @memberof CompanyApiGetCompanyPaymentGateways
16861
+ * @memberof CompanyApiGetCompanyReviewCount
16671
16862
  */
16672
16863
  readonly id: string;
16864
+ /**
16865
+ *
16866
+ * @type {ReviewStatusEnum}
16867
+ * @memberof CompanyApiGetCompanyReviewCount
16868
+ */
16869
+ readonly status?: ReviewStatusEnum;
16673
16870
  }
16674
16871
  /**
16675
- * Request parameters for getCompanyPayments operation in CompanyApi.
16872
+ * Request parameters for getCompanySubscription operation in CompanyApi.
16676
16873
  * @export
16677
- * @interface CompanyApiGetCompanyPaymentsRequest
16874
+ * @interface CompanyApiGetCompanySubscriptionRequest
16678
16875
  */
16679
- export interface CompanyApiGetCompanyPaymentsRequest {
16876
+ export interface CompanyApiGetCompanySubscriptionRequest {
16680
16877
  /**
16681
16878
  *
16682
16879
  * @type {string}
16683
- * @memberof CompanyApiGetCompanyPayments
16880
+ * @memberof CompanyApiGetCompanySubscription
16684
16881
  */
16685
16882
  readonly id: string;
16686
16883
  /**
16687
16884
  *
16688
- * @type {number}
16689
- * @memberof CompanyApiGetCompanyPayments
16690
- */
16691
- readonly itemsPerPage?: number;
16692
- /**
16693
- *
16694
- * @type {number}
16695
- * @memberof CompanyApiGetCompanyPayments
16885
+ * @type {string}
16886
+ * @memberof CompanyApiGetCompanySubscription
16696
16887
  */
16697
- readonly page?: number;
16888
+ readonly paymentId: string;
16698
16889
  }
16699
16890
  /**
16700
- * Request parameters for getCompanyProductReviews operation in CompanyApi.
16891
+ * Request parameters for getCompanySubscriptions operation in CompanyApi.
16701
16892
  * @export
16702
- * @interface CompanyApiGetCompanyProductReviewsRequest
16893
+ * @interface CompanyApiGetCompanySubscriptionsRequest
16703
16894
  */
16704
- export interface CompanyApiGetCompanyProductReviewsRequest {
16895
+ export interface CompanyApiGetCompanySubscriptionsRequest {
16705
16896
  /**
16706
16897
  *
16707
16898
  * @type {string}
16708
- * @memberof CompanyApiGetCompanyProductReviews
16899
+ * @memberof CompanyApiGetCompanySubscriptions
16709
16900
  */
16710
16901
  readonly id: string;
16711
16902
  /**
16712
16903
  *
16713
- * @type {ReviewStatusEnum}
16714
- * @memberof CompanyApiGetCompanyProductReviews
16904
+ * @type {number}
16905
+ * @memberof CompanyApiGetCompanySubscriptions
16715
16906
  */
16716
- readonly status?: ReviewStatusEnum;
16717
- }
16718
- /**
16719
- * Request parameters for getCompanyReviewCount operation in CompanyApi.
16720
- * @export
16721
- * @interface CompanyApiGetCompanyReviewCountRequest
16722
- */
16723
- export interface CompanyApiGetCompanyReviewCountRequest {
16907
+ readonly page?: number;
16724
16908
  /**
16725
16909
  *
16726
- * @type {string}
16727
- * @memberof CompanyApiGetCompanyReviewCount
16910
+ * @type {number}
16911
+ * @memberof CompanyApiGetCompanySubscriptions
16728
16912
  */
16729
- readonly id: string;
16913
+ readonly itemsPerPage?: number;
16730
16914
  /**
16731
16915
  *
16732
- * @type {ReviewStatusEnum}
16733
- * @memberof CompanyApiGetCompanyReviewCount
16916
+ * @type {SubscriptionStatusEnum}
16917
+ * @memberof CompanyApiGetCompanySubscriptions
16734
16918
  */
16735
- readonly status?: ReviewStatusEnum;
16919
+ readonly status?: SubscriptionStatusEnum;
16736
16920
  }
16737
16921
  /**
16738
16922
  * Request parameters for getCompanyUsers operation in CompanyApi.
@@ -16804,6 +16988,25 @@ export interface CompanyApiSetCompanySenderEmailRequest {
16804
16988
  */
16805
16989
  readonly setCompanySenderEmailRequest: SetCompanySenderEmailRequest;
16806
16990
  }
16991
+ /**
16992
+ * Request parameters for setDefaultCompanyLanguage operation in CompanyApi.
16993
+ * @export
16994
+ * @interface CompanyApiSetDefaultCompanyLanguageRequest
16995
+ */
16996
+ export interface CompanyApiSetDefaultCompanyLanguageRequest {
16997
+ /**
16998
+ *
16999
+ * @type {string}
17000
+ * @memberof CompanyApiSetDefaultCompanyLanguage
17001
+ */
17002
+ readonly id: string;
17003
+ /**
17004
+ *
17005
+ * @type {LanguageEnum}
17006
+ * @memberof CompanyApiSetDefaultCompanyLanguage
17007
+ */
17008
+ readonly language: LanguageEnum;
17009
+ }
16807
17010
  /**
16808
17011
  * Request parameters for updateCompany operation in CompanyApi.
16809
17012
  * @export
@@ -17065,12 +17268,12 @@ export declare class CompanyApi extends BaseAPI {
17065
17268
  createCompany(requestParameters: CompanyApiCreateCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
17066
17269
  /**
17067
17270
  *
17068
- * @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
17271
+ * @param {CompanyApiCreateCompanyLanguageRequest} requestParameters Request parameters.
17069
17272
  * @param {*} [options] Override http request option.
17070
17273
  * @throws {RequiredError}
17071
17274
  * @memberof CompanyApi
17072
17275
  */
17073
- createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
17276
+ createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17074
17277
  /**
17075
17278
  *
17076
17279
  * @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
@@ -17087,6 +17290,14 @@ export declare class CompanyApi extends BaseAPI {
17087
17290
  * @memberof CompanyApi
17088
17291
  */
17089
17292
  createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17293
+ /**
17294
+ *
17295
+ * @param {CompanyApiCreateCompanySubscriptionRequest} requestParameters Request parameters.
17296
+ * @param {*} [options] Override http request option.
17297
+ * @throws {RequiredError}
17298
+ * @memberof CompanyApi
17299
+ */
17300
+ createCompanySubscription(requestParameters: CompanyApiCreateCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
17090
17301
  /**
17091
17302
  *
17092
17303
  * @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
@@ -17199,14 +17410,6 @@ export declare class CompanyApi extends BaseAPI {
17199
17410
  * @memberof CompanyApi
17200
17411
  */
17201
17412
  getCompanyDashboard(requestParameters: CompanyApiGetCompanyDashboardRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyDashboardResponse, any>>;
17202
- /**
17203
- *
17204
- * @param {CompanyApiGetCompanyMonthlyBandwidthRequest} requestParameters Request parameters.
17205
- * @param {*} [options] Override http request option.
17206
- * @throws {RequiredError}
17207
- * @memberof CompanyApi
17208
- */
17209
- getCompanyMonthlyBandwidth(requestParameters: CompanyApiGetCompanyMonthlyBandwidthRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyMonthlyBandwidthResponse, any>>;
17210
17413
  /**
17211
17414
  *
17212
17415
  * @param {CompanyApiGetCompanyOnboardingRequest} requestParameters Request parameters.
@@ -17217,44 +17420,44 @@ export declare class CompanyApi extends BaseAPI {
17217
17420
  getCompanyOnboarding(requestParameters: CompanyApiGetCompanyOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCompanyOnboarding200Response, any>>;
17218
17421
  /**
17219
17422
  *
17220
- * @param {CompanyApiGetCompanyPaymentRequest} requestParameters Request parameters.
17423
+ * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17221
17424
  * @param {*} [options] Override http request option.
17222
17425
  * @throws {RequiredError}
17223
17426
  * @memberof CompanyApi
17224
17427
  */
17225
- getCompanyPayment(requestParameters: CompanyApiGetCompanyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPayment, any>>;
17428
+ getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
17226
17429
  /**
17227
17430
  *
17228
- * @param {CompanyApiGetCompanyPaymentGatewaysRequest} requestParameters Request parameters.
17431
+ * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
17229
17432
  * @param {*} [options] Override http request option.
17230
17433
  * @throws {RequiredError}
17231
17434
  * @memberof CompanyApi
17232
17435
  */
17233
- getCompanyPaymentGateways(requestParameters: CompanyApiGetCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyPaymentGatewaysResponse, any>>;
17436
+ getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductReviewsPopulateResponse, any>>;
17234
17437
  /**
17235
17438
  *
17236
- * @param {CompanyApiGetCompanyPaymentsRequest} requestParameters Request parameters.
17439
+ * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
17237
17440
  * @param {*} [options] Override http request option.
17238
17441
  * @throws {RequiredError}
17239
17442
  * @memberof CompanyApi
17240
17443
  */
17241
- getCompanyPayments(requestParameters: CompanyApiGetCompanyPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentsResponse, any>>;
17444
+ getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMyProductReviewCount200Response, any>>;
17242
17445
  /**
17243
17446
  *
17244
- * @param {CompanyApiGetCompanyProductReviewsRequest} requestParameters Request parameters.
17447
+ * @param {CompanyApiGetCompanySubscriptionRequest} requestParameters Request parameters.
17245
17448
  * @param {*} [options] Override http request option.
17246
17449
  * @throws {RequiredError}
17247
17450
  * @memberof CompanyApi
17248
17451
  */
17249
- getCompanyProductReviews(requestParameters: CompanyApiGetCompanyProductReviewsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IProductReviewsPopulateResponse, any>>;
17452
+ getCompanySubscription(requestParameters: CompanyApiGetCompanySubscriptionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscription, any>>;
17250
17453
  /**
17251
17454
  *
17252
- * @param {CompanyApiGetCompanyReviewCountRequest} requestParameters Request parameters.
17455
+ * @param {CompanyApiGetCompanySubscriptionsRequest} requestParameters Request parameters.
17253
17456
  * @param {*} [options] Override http request option.
17254
17457
  * @throws {RequiredError}
17255
17458
  * @memberof CompanyApi
17256
17459
  */
17257
- getCompanyReviewCount(requestParameters: CompanyApiGetCompanyReviewCountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMyProductReviewCount200Response, any>>;
17460
+ getCompanySubscriptions(requestParameters: CompanyApiGetCompanySubscriptionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ISubscriptionsResponse, any>>;
17258
17461
  /**
17259
17462
  *
17260
17463
  * @param {CompanyApiGetCompanyUsersRequest} requestParameters Request parameters.
@@ -17287,6 +17490,14 @@ export declare class CompanyApi extends BaseAPI {
17287
17490
  * @memberof CompanyApi
17288
17491
  */
17289
17492
  setCompanySenderEmail(requestParameters: CompanyApiSetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompany, any>>;
17493
+ /**
17494
+ *
17495
+ * @param {CompanyApiSetDefaultCompanyLanguageRequest} requestParameters Request parameters.
17496
+ * @param {*} [options] Override http request option.
17497
+ * @throws {RequiredError}
17498
+ * @memberof CompanyApi
17499
+ */
17500
+ setDefaultCompanyLanguage(requestParameters: CompanyApiSetDefaultCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
17290
17501
  /**
17291
17502
  *
17292
17503
  * @param {CompanyApiUpdateCompanyRequest} requestParameters Request parameters.
@@ -20621,12 +20832,6 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
20621
20832
  * @throws {RequiredError}
20622
20833
  */
20623
20834
  getPlanById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20624
- /**
20625
- *
20626
- * @param {*} [options] Override http request option.
20627
- * @throws {RequiredError}
20628
- */
20629
- getPlanLimits: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20630
20835
  /**
20631
20836
  *
20632
20837
  * @param {number} [page]
@@ -20638,11 +20843,12 @@ export declare const PlanApiAxiosParamCreator: (configuration?: Configuration) =
20638
20843
  * @param {OrderEnum} [order]
20639
20844
  * @param {string} [sort]
20640
20845
  * @param {PlanStatusEnum} [status]
20641
- * @param {PlanTypeEnum} [type]
20846
+ * @param {GetPlansCategoryEnum} [category]
20847
+ * @param {string} [company]
20642
20848
  * @param {*} [options] Override http request option.
20643
20849
  * @throws {RequiredError}
20644
20850
  */
20645
- 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>;
20646
20852
  /**
20647
20853
  *
20648
20854
  * @param {string} id
@@ -20678,12 +20884,6 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
20678
20884
  * @throws {RequiredError}
20679
20885
  */
20680
20886
  getPlanById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPlanResponse>>;
20681
- /**
20682
- *
20683
- * @param {*} [options] Override http request option.
20684
- * @throws {RequiredError}
20685
- */
20686
- getPlanLimits(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordPlanTypeEnumMonthlyBandwidthNumber>>;
20687
20887
  /**
20688
20888
  *
20689
20889
  * @param {number} [page]
@@ -20695,11 +20895,12 @@ export declare const PlanApiFp: (configuration?: Configuration) => {
20695
20895
  * @param {OrderEnum} [order]
20696
20896
  * @param {string} [sort]
20697
20897
  * @param {PlanStatusEnum} [status]
20698
- * @param {PlanTypeEnum} [type]
20898
+ * @param {GetPlansCategoryEnum} [category]
20899
+ * @param {string} [company]
20699
20900
  * @param {*} [options] Override http request option.
20700
20901
  * @throws {RequiredError}
20701
20902
  */
20702
- 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>>;
20703
20904
  /**
20704
20905
  *
20705
20906
  * @param {string} id
@@ -20735,12 +20936,6 @@ export declare const PlanApiFactory: (configuration?: Configuration, basePath?:
20735
20936
  * @throws {RequiredError}
20736
20937
  */
20737
20938
  getPlanById(requestParameters: PlanApiGetPlanByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPlanResponse>;
20738
- /**
20739
- *
20740
- * @param {*} [options] Override http request option.
20741
- * @throws {RequiredError}
20742
- */
20743
- getPlanLimits(options?: RawAxiosRequestConfig): AxiosPromise<RecordPlanTypeEnumMonthlyBandwidthNumber>;
20744
20939
  /**
20745
20940
  *
20746
20941
  * @param {PlanApiGetPlansRequest} requestParameters Request parameters.
@@ -20857,10 +21052,16 @@ export interface PlanApiGetPlansRequest {
20857
21052
  readonly status?: PlanStatusEnum;
20858
21053
  /**
20859
21054
  *
20860
- * @type {PlanTypeEnum}
21055
+ * @type {'addon-bandwidth' | 'b2c' | 'cms'}
20861
21056
  * @memberof PlanApiGetPlans
20862
21057
  */
20863
- readonly type?: PlanTypeEnum;
21058
+ readonly category?: GetPlansCategoryEnum;
21059
+ /**
21060
+ *
21061
+ * @type {string}
21062
+ * @memberof PlanApiGetPlans
21063
+ */
21064
+ readonly company?: string;
20864
21065
  }
20865
21066
  /**
20866
21067
  * Request parameters for updatePlan operation in PlanApi.
@@ -20912,13 +21113,6 @@ export declare class PlanApi extends BaseAPI {
20912
21113
  * @memberof PlanApi
20913
21114
  */
20914
21115
  getPlanById(requestParameters: PlanApiGetPlanByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPlanResponse, any>>;
20915
- /**
20916
- *
20917
- * @param {*} [options] Override http request option.
20918
- * @throws {RequiredError}
20919
- * @memberof PlanApi
20920
- */
20921
- getPlanLimits(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordPlanTypeEnumMonthlyBandwidthNumber, any>>;
20922
21116
  /**
20923
21117
  *
20924
21118
  * @param {PlanApiGetPlansRequest} requestParameters Request parameters.
@@ -20944,6 +21138,15 @@ export declare const GetPlansDateFieldEnum: {
20944
21138
  readonly UPDATED_AT: "updatedAt";
20945
21139
  };
20946
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];
20947
21150
  /**
20948
21151
  * ProductApi - axios parameter creator
20949
21152
  * @export
@@ -22663,11 +22866,12 @@ export declare const UrlRedirectApiAxiosParamCreator: (configuration?: Configura
22663
22866
  /**
22664
22867
  *
22665
22868
  * @param {string} from
22666
- * @param {string} companyId
22869
+ * @param {string} [companyId]
22870
+ * @param {string} [domain]
22667
22871
  * @param {*} [options] Override http request option.
22668
22872
  * @throws {RequiredError}
22669
22873
  */
22670
- getUrlRedirectBySource: (from: string, companyId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22874
+ getUrlRedirectBySource: (from: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22671
22875
  /**
22672
22876
  *
22673
22877
  * @param {string} companyId
@@ -22729,11 +22933,12 @@ export declare const UrlRedirectApiFp: (configuration?: Configuration) => {
22729
22933
  /**
22730
22934
  *
22731
22935
  * @param {string} from
22732
- * @param {string} companyId
22936
+ * @param {string} [companyId]
22937
+ * @param {string} [domain]
22733
22938
  * @param {*} [options] Override http request option.
22734
22939
  * @throws {RequiredError}
22735
22940
  */
22736
- getUrlRedirectBySource(from: string, companyId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
22941
+ getUrlRedirectBySource(from: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
22737
22942
  /**
22738
22943
  *
22739
22944
  * @param {string} companyId
@@ -22883,7 +23088,13 @@ export interface UrlRedirectApiGetUrlRedirectBySourceRequest {
22883
23088
  * @type {string}
22884
23089
  * @memberof UrlRedirectApiGetUrlRedirectBySource
22885
23090
  */
22886
- readonly companyId: string;
23091
+ readonly companyId?: string;
23092
+ /**
23093
+ *
23094
+ * @type {string}
23095
+ * @memberof UrlRedirectApiGetUrlRedirectBySource
23096
+ */
23097
+ readonly domain?: string;
22887
23098
  }
22888
23099
  /**
22889
23100
  * Request parameters for getUrlRedirects operation in UrlRedirectApi.