@infisale-client/api 1.2.103 → 1.2.105
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 +743 -59
- package/dist/api/api.js +545 -13
- package/dist/api/api.mjs +545 -13
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -2141,10 +2141,10 @@ export interface ICompany {
|
|
|
2141
2141
|
'currencies': RecordCurrencyEnumCurrency;
|
|
2142
2142
|
/**
|
|
2143
2143
|
*
|
|
2144
|
-
* @type {Array<
|
|
2144
|
+
* @type {Array<ICompanyPatchRequestWarehousesInner>}
|
|
2145
2145
|
* @memberof ICompany
|
|
2146
2146
|
*/
|
|
2147
|
-
'warehouses': Array<
|
|
2147
|
+
'warehouses': Array<ICompanyPatchRequestWarehousesInner>;
|
|
2148
2148
|
/**
|
|
2149
2149
|
*
|
|
2150
2150
|
* @type {string}
|
|
@@ -2725,6 +2725,74 @@ export declare const ICompanyCollectionQueryParamsDateFieldEnum: {
|
|
|
2725
2725
|
readonly UPDATED_AT: "updatedAt";
|
|
2726
2726
|
};
|
|
2727
2727
|
export type ICompanyCollectionQueryParamsDateFieldEnum = typeof ICompanyCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyCollectionQueryParamsDateFieldEnum];
|
|
2728
|
+
/**
|
|
2729
|
+
*
|
|
2730
|
+
* @export
|
|
2731
|
+
* @interface ICompanyCreatePaymentGatewaysRequest
|
|
2732
|
+
*/
|
|
2733
|
+
export interface ICompanyCreatePaymentGatewaysRequest {
|
|
2734
|
+
/**
|
|
2735
|
+
*
|
|
2736
|
+
* @type {PaymentGatewayEnum}
|
|
2737
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2738
|
+
*/
|
|
2739
|
+
'type': PaymentGatewayEnum;
|
|
2740
|
+
/**
|
|
2741
|
+
*
|
|
2742
|
+
* @type {string}
|
|
2743
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2744
|
+
*/
|
|
2745
|
+
'merchantId': string;
|
|
2746
|
+
/**
|
|
2747
|
+
*
|
|
2748
|
+
* @type {string}
|
|
2749
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2750
|
+
*/
|
|
2751
|
+
'apiKey': string;
|
|
2752
|
+
/**
|
|
2753
|
+
*
|
|
2754
|
+
* @type {string}
|
|
2755
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2756
|
+
*/
|
|
2757
|
+
'secretKey': string;
|
|
2758
|
+
/**
|
|
2759
|
+
*
|
|
2760
|
+
* @type {boolean}
|
|
2761
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2762
|
+
*/
|
|
2763
|
+
'testMode': boolean;
|
|
2764
|
+
/**
|
|
2765
|
+
*
|
|
2766
|
+
* @type {boolean}
|
|
2767
|
+
* @memberof ICompanyCreatePaymentGatewaysRequest
|
|
2768
|
+
*/
|
|
2769
|
+
'active': boolean;
|
|
2770
|
+
}
|
|
2771
|
+
/**
|
|
2772
|
+
*
|
|
2773
|
+
* @export
|
|
2774
|
+
* @interface ICompanyCreateShippingProvidersRequest
|
|
2775
|
+
*/
|
|
2776
|
+
export interface ICompanyCreateShippingProvidersRequest {
|
|
2777
|
+
/**
|
|
2778
|
+
*
|
|
2779
|
+
* @type {string}
|
|
2780
|
+
* @memberof ICompanyCreateShippingProvidersRequest
|
|
2781
|
+
*/
|
|
2782
|
+
'title': string;
|
|
2783
|
+
/**
|
|
2784
|
+
*
|
|
2785
|
+
* @type {Array<string>}
|
|
2786
|
+
* @memberof ICompanyCreateShippingProvidersRequest
|
|
2787
|
+
*/
|
|
2788
|
+
'states': Array<string>;
|
|
2789
|
+
/**
|
|
2790
|
+
*
|
|
2791
|
+
* @type {Array<ShippingProviderRates>}
|
|
2792
|
+
* @memberof ICompanyCreateShippingProvidersRequest
|
|
2793
|
+
*/
|
|
2794
|
+
'rates': Array<ShippingProviderRates>;
|
|
2795
|
+
}
|
|
2728
2796
|
/**
|
|
2729
2797
|
*
|
|
2730
2798
|
* @export
|
|
@@ -2744,6 +2812,37 @@ export interface ICompanyCreateUserRequest {
|
|
|
2744
2812
|
*/
|
|
2745
2813
|
'role': string;
|
|
2746
2814
|
}
|
|
2815
|
+
/**
|
|
2816
|
+
*
|
|
2817
|
+
* @export
|
|
2818
|
+
* @interface ICompanyCreateWarehousesRequest
|
|
2819
|
+
*/
|
|
2820
|
+
export interface ICompanyCreateWarehousesRequest {
|
|
2821
|
+
/**
|
|
2822
|
+
*
|
|
2823
|
+
* @type {string}
|
|
2824
|
+
* @memberof ICompanyCreateWarehousesRequest
|
|
2825
|
+
*/
|
|
2826
|
+
'name': string;
|
|
2827
|
+
/**
|
|
2828
|
+
*
|
|
2829
|
+
* @type {string}
|
|
2830
|
+
* @memberof ICompanyCreateWarehousesRequest
|
|
2831
|
+
*/
|
|
2832
|
+
'phone'?: string;
|
|
2833
|
+
/**
|
|
2834
|
+
*
|
|
2835
|
+
* @type {string}
|
|
2836
|
+
* @memberof ICompanyCreateWarehousesRequest
|
|
2837
|
+
*/
|
|
2838
|
+
'email'?: string;
|
|
2839
|
+
/**
|
|
2840
|
+
*
|
|
2841
|
+
* @type {string}
|
|
2842
|
+
* @memberof ICompanyCreateWarehousesRequest
|
|
2843
|
+
*/
|
|
2844
|
+
'address'?: string;
|
|
2845
|
+
}
|
|
2747
2846
|
/**
|
|
2748
2847
|
*
|
|
2749
2848
|
* @export
|
|
@@ -2791,6 +2890,7 @@ export declare const ICompanyDashboardResponsePeriodEnum: {
|
|
|
2791
2890
|
readonly DAY: "day";
|
|
2792
2891
|
readonly MONTH: "month";
|
|
2793
2892
|
readonly WEEK: "week";
|
|
2893
|
+
readonly HOUR: "hour";
|
|
2794
2894
|
};
|
|
2795
2895
|
export type ICompanyDashboardResponsePeriodEnum = typeof ICompanyDashboardResponsePeriodEnum[keyof typeof ICompanyDashboardResponsePeriodEnum];
|
|
2796
2896
|
/**
|
|
@@ -2894,10 +2994,10 @@ export interface ICompanyPatchRequest {
|
|
|
2894
2994
|
'senderEmailDnsRecords'?: Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>;
|
|
2895
2995
|
/**
|
|
2896
2996
|
*
|
|
2897
|
-
* @type {Array<
|
|
2997
|
+
* @type {Array<ICompanyPatchRequestWarehousesInner>}
|
|
2898
2998
|
* @memberof ICompanyPatchRequest
|
|
2899
2999
|
*/
|
|
2900
|
-
'warehouses'?: Array<
|
|
3000
|
+
'warehouses'?: Array<ICompanyPatchRequestWarehousesInner>;
|
|
2901
3001
|
/**
|
|
2902
3002
|
*
|
|
2903
3003
|
* @type {ICompanyResponseAddress}
|
|
@@ -3072,6 +3172,43 @@ export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
|
3072
3172
|
*/
|
|
3073
3173
|
'_id': string;
|
|
3074
3174
|
}
|
|
3175
|
+
/**
|
|
3176
|
+
*
|
|
3177
|
+
* @export
|
|
3178
|
+
* @interface ICompanyPatchRequestWarehousesInner
|
|
3179
|
+
*/
|
|
3180
|
+
export interface ICompanyPatchRequestWarehousesInner {
|
|
3181
|
+
/**
|
|
3182
|
+
*
|
|
3183
|
+
* @type {string}
|
|
3184
|
+
* @memberof ICompanyPatchRequestWarehousesInner
|
|
3185
|
+
*/
|
|
3186
|
+
'email'?: string;
|
|
3187
|
+
/**
|
|
3188
|
+
*
|
|
3189
|
+
* @type {string}
|
|
3190
|
+
* @memberof ICompanyPatchRequestWarehousesInner
|
|
3191
|
+
*/
|
|
3192
|
+
'phone'?: string;
|
|
3193
|
+
/**
|
|
3194
|
+
*
|
|
3195
|
+
* @type {string}
|
|
3196
|
+
* @memberof ICompanyPatchRequestWarehousesInner
|
|
3197
|
+
*/
|
|
3198
|
+
'address'?: string;
|
|
3199
|
+
/**
|
|
3200
|
+
*
|
|
3201
|
+
* @type {string}
|
|
3202
|
+
* @memberof ICompanyPatchRequestWarehousesInner
|
|
3203
|
+
*/
|
|
3204
|
+
'name': string;
|
|
3205
|
+
/**
|
|
3206
|
+
*
|
|
3207
|
+
* @type {string}
|
|
3208
|
+
* @memberof ICompanyPatchRequestWarehousesInner
|
|
3209
|
+
*/
|
|
3210
|
+
'_id': string;
|
|
3211
|
+
}
|
|
3075
3212
|
/**
|
|
3076
3213
|
*
|
|
3077
3214
|
* @export
|
|
@@ -3737,59 +3874,40 @@ export interface ICompanyUpdateNavigationRequest {
|
|
|
3737
3874
|
export interface ICompanyUpdatePaymentGatewaysRequest {
|
|
3738
3875
|
/**
|
|
3739
3876
|
*
|
|
3740
|
-
* @type {
|
|
3877
|
+
* @type {PaymentGatewayEnum}
|
|
3741
3878
|
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3742
3879
|
*/
|
|
3743
|
-
'
|
|
3744
|
-
}
|
|
3745
|
-
/**
|
|
3746
|
-
*
|
|
3747
|
-
* @export
|
|
3748
|
-
* @interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3749
|
-
*/
|
|
3750
|
-
export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
3751
|
-
/**
|
|
3752
|
-
*
|
|
3753
|
-
* @type {boolean}
|
|
3754
|
-
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3755
|
-
*/
|
|
3756
|
-
'active': boolean;
|
|
3757
|
-
/**
|
|
3758
|
-
*
|
|
3759
|
-
* @type {boolean}
|
|
3760
|
-
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3761
|
-
*/
|
|
3762
|
-
'testMode': boolean;
|
|
3880
|
+
'type'?: PaymentGatewayEnum;
|
|
3763
3881
|
/**
|
|
3764
3882
|
*
|
|
3765
3883
|
* @type {string}
|
|
3766
|
-
* @memberof
|
|
3884
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3767
3885
|
*/
|
|
3768
|
-
'
|
|
3886
|
+
'merchantId'?: string;
|
|
3769
3887
|
/**
|
|
3770
3888
|
*
|
|
3771
3889
|
* @type {string}
|
|
3772
|
-
* @memberof
|
|
3890
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3773
3891
|
*/
|
|
3774
|
-
'apiKey'
|
|
3892
|
+
'apiKey'?: string;
|
|
3775
3893
|
/**
|
|
3776
3894
|
*
|
|
3777
3895
|
* @type {string}
|
|
3778
|
-
* @memberof
|
|
3896
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3779
3897
|
*/
|
|
3780
|
-
'
|
|
3898
|
+
'secretKey'?: string;
|
|
3781
3899
|
/**
|
|
3782
3900
|
*
|
|
3783
|
-
* @type {
|
|
3784
|
-
* @memberof
|
|
3901
|
+
* @type {boolean}
|
|
3902
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3785
3903
|
*/
|
|
3786
|
-
'
|
|
3904
|
+
'testMode'?: boolean;
|
|
3787
3905
|
/**
|
|
3788
3906
|
*
|
|
3789
|
-
* @type {
|
|
3790
|
-
* @memberof
|
|
3907
|
+
* @type {boolean}
|
|
3908
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3791
3909
|
*/
|
|
3792
|
-
'
|
|
3910
|
+
'active'?: boolean;
|
|
3793
3911
|
}
|
|
3794
3912
|
/**
|
|
3795
3913
|
*
|
|
@@ -3799,10 +3917,22 @@ export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
|
3799
3917
|
export interface ICompanyUpdateShippingProvidersRequest {
|
|
3800
3918
|
/**
|
|
3801
3919
|
*
|
|
3802
|
-
* @type {
|
|
3920
|
+
* @type {string}
|
|
3803
3921
|
* @memberof ICompanyUpdateShippingProvidersRequest
|
|
3804
3922
|
*/
|
|
3805
|
-
'
|
|
3923
|
+
'title'?: string;
|
|
3924
|
+
/**
|
|
3925
|
+
*
|
|
3926
|
+
* @type {Array<string>}
|
|
3927
|
+
* @memberof ICompanyUpdateShippingProvidersRequest
|
|
3928
|
+
*/
|
|
3929
|
+
'states'?: Array<string>;
|
|
3930
|
+
/**
|
|
3931
|
+
*
|
|
3932
|
+
* @type {Array<ShippingProviderRates>}
|
|
3933
|
+
* @memberof ICompanyUpdateShippingProvidersRequest
|
|
3934
|
+
*/
|
|
3935
|
+
'rates'?: Array<ShippingProviderRates>;
|
|
3806
3936
|
}
|
|
3807
3937
|
/**
|
|
3808
3938
|
*
|
|
@@ -3823,6 +3953,37 @@ export interface ICompanyUpdateUserRequest {
|
|
|
3823
3953
|
*/
|
|
3824
3954
|
'status'?: CompanyUserStatusEnum;
|
|
3825
3955
|
}
|
|
3956
|
+
/**
|
|
3957
|
+
*
|
|
3958
|
+
* @export
|
|
3959
|
+
* @interface ICompanyUpdateWarehousesRequest
|
|
3960
|
+
*/
|
|
3961
|
+
export interface ICompanyUpdateWarehousesRequest {
|
|
3962
|
+
/**
|
|
3963
|
+
*
|
|
3964
|
+
* @type {string}
|
|
3965
|
+
* @memberof ICompanyUpdateWarehousesRequest
|
|
3966
|
+
*/
|
|
3967
|
+
'name'?: string;
|
|
3968
|
+
/**
|
|
3969
|
+
*
|
|
3970
|
+
* @type {string}
|
|
3971
|
+
* @memberof ICompanyUpdateWarehousesRequest
|
|
3972
|
+
*/
|
|
3973
|
+
'phone'?: string;
|
|
3974
|
+
/**
|
|
3975
|
+
*
|
|
3976
|
+
* @type {string}
|
|
3977
|
+
* @memberof ICompanyUpdateWarehousesRequest
|
|
3978
|
+
*/
|
|
3979
|
+
'email'?: string;
|
|
3980
|
+
/**
|
|
3981
|
+
*
|
|
3982
|
+
* @type {string}
|
|
3983
|
+
* @memberof ICompanyUpdateWarehousesRequest
|
|
3984
|
+
*/
|
|
3985
|
+
'address'?: string;
|
|
3986
|
+
}
|
|
3826
3987
|
/**
|
|
3827
3988
|
*
|
|
3828
3989
|
* @export
|
|
@@ -9654,6 +9815,80 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9654
9815
|
*/
|
|
9655
9816
|
'thumbnail'?: IImage;
|
|
9656
9817
|
}
|
|
9818
|
+
/**
|
|
9819
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9820
|
+
* @export
|
|
9821
|
+
* @interface PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9822
|
+
*/
|
|
9823
|
+
export interface PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id {
|
|
9824
|
+
/**
|
|
9825
|
+
*
|
|
9826
|
+
* @type {PaymentGatewayEnum}
|
|
9827
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9828
|
+
*/
|
|
9829
|
+
'type': PaymentGatewayEnum;
|
|
9830
|
+
/**
|
|
9831
|
+
*
|
|
9832
|
+
* @type {string}
|
|
9833
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9834
|
+
*/
|
|
9835
|
+
'merchantId': string;
|
|
9836
|
+
/**
|
|
9837
|
+
*
|
|
9838
|
+
* @type {string}
|
|
9839
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9840
|
+
*/
|
|
9841
|
+
'apiKey': string;
|
|
9842
|
+
/**
|
|
9843
|
+
*
|
|
9844
|
+
* @type {string}
|
|
9845
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9846
|
+
*/
|
|
9847
|
+
'secretKey': string;
|
|
9848
|
+
/**
|
|
9849
|
+
*
|
|
9850
|
+
* @type {boolean}
|
|
9851
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9852
|
+
*/
|
|
9853
|
+
'testMode': boolean;
|
|
9854
|
+
/**
|
|
9855
|
+
*
|
|
9856
|
+
* @type {boolean}
|
|
9857
|
+
* @memberof PickICompanyAtPaymentGateways91093ExcludeKeyofICompanyAtPaymentGateways91093Id
|
|
9858
|
+
*/
|
|
9859
|
+
'active': boolean;
|
|
9860
|
+
}
|
|
9861
|
+
/**
|
|
9862
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
9863
|
+
* @export
|
|
9864
|
+
* @interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9865
|
+
*/
|
|
9866
|
+
export interface PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id {
|
|
9867
|
+
/**
|
|
9868
|
+
*
|
|
9869
|
+
* @type {string}
|
|
9870
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9871
|
+
*/
|
|
9872
|
+
'name': string;
|
|
9873
|
+
/**
|
|
9874
|
+
*
|
|
9875
|
+
* @type {string}
|
|
9876
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9877
|
+
*/
|
|
9878
|
+
'phone'?: string;
|
|
9879
|
+
/**
|
|
9880
|
+
*
|
|
9881
|
+
* @type {string}
|
|
9882
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9883
|
+
*/
|
|
9884
|
+
'email'?: string;
|
|
9885
|
+
/**
|
|
9886
|
+
*
|
|
9887
|
+
* @type {string}
|
|
9888
|
+
* @memberof PickICompanyAtWarehouses91093ExcludeKeyofICompanyAtWarehouses91093Id
|
|
9889
|
+
*/
|
|
9890
|
+
'address'?: string;
|
|
9891
|
+
}
|
|
9657
9892
|
/**
|
|
9658
9893
|
* From T, pick a set of properties whose keys are in the union K
|
|
9659
9894
|
* @export
|
|
@@ -11630,22 +11865,47 @@ export interface PickIUserIdOrNameOrEmail {
|
|
|
11630
11865
|
'_id': string;
|
|
11631
11866
|
}
|
|
11632
11867
|
/**
|
|
11633
|
-
*
|
|
11634
|
-
* @export
|
|
11635
|
-
* @enum {string}
|
|
11636
|
-
*/
|
|
11637
|
-
export declare const PlanCurrencyEnum: {
|
|
11638
|
-
readonly TRY: "try";
|
|
11639
|
-
readonly EUR: "eur";
|
|
11640
|
-
readonly USD: "usd";
|
|
11641
|
-
};
|
|
11642
|
-
export type PlanCurrencyEnum = typeof PlanCurrencyEnum[keyof typeof PlanCurrencyEnum];
|
|
11643
|
-
/**
|
|
11644
|
-
*
|
|
11868
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11645
11869
|
* @export
|
|
11646
|
-
* @
|
|
11870
|
+
* @interface PickShippingProviderExcludeKeyofShippingProviderId
|
|
11647
11871
|
*/
|
|
11648
|
-
export
|
|
11872
|
+
export interface PickShippingProviderExcludeKeyofShippingProviderId {
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @type {string}
|
|
11876
|
+
* @memberof PickShippingProviderExcludeKeyofShippingProviderId
|
|
11877
|
+
*/
|
|
11878
|
+
'title': string;
|
|
11879
|
+
/**
|
|
11880
|
+
*
|
|
11881
|
+
* @type {Array<string>}
|
|
11882
|
+
* @memberof PickShippingProviderExcludeKeyofShippingProviderId
|
|
11883
|
+
*/
|
|
11884
|
+
'states': Array<string>;
|
|
11885
|
+
/**
|
|
11886
|
+
*
|
|
11887
|
+
* @type {Array<ShippingProviderRates>}
|
|
11888
|
+
* @memberof PickShippingProviderExcludeKeyofShippingProviderId
|
|
11889
|
+
*/
|
|
11890
|
+
'rates': Array<ShippingProviderRates>;
|
|
11891
|
+
}
|
|
11892
|
+
/**
|
|
11893
|
+
*
|
|
11894
|
+
* @export
|
|
11895
|
+
* @enum {string}
|
|
11896
|
+
*/
|
|
11897
|
+
export declare const PlanCurrencyEnum: {
|
|
11898
|
+
readonly TRY: "try";
|
|
11899
|
+
readonly EUR: "eur";
|
|
11900
|
+
readonly USD: "usd";
|
|
11901
|
+
};
|
|
11902
|
+
export type PlanCurrencyEnum = typeof PlanCurrencyEnum[keyof typeof PlanCurrencyEnum];
|
|
11903
|
+
/**
|
|
11904
|
+
*
|
|
11905
|
+
* @export
|
|
11906
|
+
* @enum {string}
|
|
11907
|
+
*/
|
|
11908
|
+
export declare const PlanStatusEnum: {
|
|
11649
11909
|
readonly ACTIVE: "active";
|
|
11650
11910
|
readonly INACTIVE: "inactive";
|
|
11651
11911
|
readonly DELETED: "deleted";
|
|
@@ -14372,6 +14632,30 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14372
14632
|
* @throws {RequiredError}
|
|
14373
14633
|
*/
|
|
14374
14634
|
createCompanyPayment: (id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14635
|
+
/**
|
|
14636
|
+
*
|
|
14637
|
+
* @param {string} id
|
|
14638
|
+
* @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
|
|
14639
|
+
* @param {*} [options] Override http request option.
|
|
14640
|
+
* @throws {RequiredError}
|
|
14641
|
+
*/
|
|
14642
|
+
createCompanyPaymentGateways: (id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14643
|
+
/**
|
|
14644
|
+
*
|
|
14645
|
+
* @param {string} id
|
|
14646
|
+
* @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
|
|
14647
|
+
* @param {*} [options] Override http request option.
|
|
14648
|
+
* @throws {RequiredError}
|
|
14649
|
+
*/
|
|
14650
|
+
createCompanyShippingProviders: (id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14651
|
+
/**
|
|
14652
|
+
*
|
|
14653
|
+
* @param {string} id
|
|
14654
|
+
* @param {ICompanyCreateWarehousesRequest} iCompanyCreateWarehousesRequest
|
|
14655
|
+
* @param {*} [options] Override http request option.
|
|
14656
|
+
* @throws {RequiredError}
|
|
14657
|
+
*/
|
|
14658
|
+
createCompanyWarehouses: (id: string, iCompanyCreateWarehousesRequest: ICompanyCreateWarehousesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14375
14659
|
/**
|
|
14376
14660
|
*
|
|
14377
14661
|
* @param {string} id
|
|
@@ -14379,6 +14663,30 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14379
14663
|
* @throws {RequiredError}
|
|
14380
14664
|
*/
|
|
14381
14665
|
deleteCompany: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14666
|
+
/**
|
|
14667
|
+
*
|
|
14668
|
+
* @param {string} companyId
|
|
14669
|
+
* @param {string} id
|
|
14670
|
+
* @param {*} [options] Override http request option.
|
|
14671
|
+
* @throws {RequiredError}
|
|
14672
|
+
*/
|
|
14673
|
+
deleteCompanyPaymentGateways: (companyId: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14674
|
+
/**
|
|
14675
|
+
*
|
|
14676
|
+
* @param {string} companyId
|
|
14677
|
+
* @param {string} id
|
|
14678
|
+
* @param {*} [options] Override http request option.
|
|
14679
|
+
* @throws {RequiredError}
|
|
14680
|
+
*/
|
|
14681
|
+
deleteCompanyShippingProviders: (companyId: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14682
|
+
/**
|
|
14683
|
+
*
|
|
14684
|
+
* @param {string} companyId
|
|
14685
|
+
* @param {string} id
|
|
14686
|
+
* @param {*} [options] Override http request option.
|
|
14687
|
+
* @throws {RequiredError}
|
|
14688
|
+
*/
|
|
14689
|
+
deleteCompanyWarehouses: (companyId: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14382
14690
|
/**
|
|
14383
14691
|
*
|
|
14384
14692
|
* @param {string} id
|
|
@@ -14521,6 +14829,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14521
14829
|
* @throws {RequiredError}
|
|
14522
14830
|
*/
|
|
14523
14831
|
getCompanyVersions: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14832
|
+
/**
|
|
14833
|
+
*
|
|
14834
|
+
* @param {string} companyId
|
|
14835
|
+
* @param {string} id
|
|
14836
|
+
* @param {*} [options] Override http request option.
|
|
14837
|
+
* @throws {RequiredError}
|
|
14838
|
+
*/
|
|
14839
|
+
setCompanyPaymentGatewaysPrimary: (companyId: string, id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14524
14840
|
/**
|
|
14525
14841
|
*
|
|
14526
14842
|
* @param {string} id
|
|
@@ -14563,20 +14879,31 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14563
14879
|
updateCompanyNavigations: (id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14564
14880
|
/**
|
|
14565
14881
|
*
|
|
14882
|
+
* @param {string} companyId
|
|
14566
14883
|
* @param {string} id
|
|
14567
14884
|
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
14568
14885
|
* @param {*} [options] Override http request option.
|
|
14569
14886
|
* @throws {RequiredError}
|
|
14570
14887
|
*/
|
|
14571
|
-
updateCompanyPaymentGateways: (id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14888
|
+
updateCompanyPaymentGateways: (companyId: string, id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14572
14889
|
/**
|
|
14573
14890
|
*
|
|
14891
|
+
* @param {string} companyId
|
|
14574
14892
|
* @param {string} id
|
|
14575
14893
|
* @param {ICompanyUpdateShippingProvidersRequest} iCompanyUpdateShippingProvidersRequest
|
|
14576
14894
|
* @param {*} [options] Override http request option.
|
|
14577
14895
|
* @throws {RequiredError}
|
|
14578
14896
|
*/
|
|
14579
|
-
updateCompanyShippingProviders: (id: string, iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14897
|
+
updateCompanyShippingProviders: (companyId: string, id: string, iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14898
|
+
/**
|
|
14899
|
+
*
|
|
14900
|
+
* @param {string} companyId
|
|
14901
|
+
* @param {string} id
|
|
14902
|
+
* @param {ICompanyUpdateWarehousesRequest} iCompanyUpdateWarehousesRequest
|
|
14903
|
+
* @param {*} [options] Override http request option.
|
|
14904
|
+
* @throws {RequiredError}
|
|
14905
|
+
*/
|
|
14906
|
+
updateCompanyWarehouses: (companyId: string, id: string, iCompanyUpdateWarehousesRequest: ICompanyUpdateWarehousesRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14580
14907
|
/**
|
|
14581
14908
|
*
|
|
14582
14909
|
* @param {string} id
|
|
@@ -14638,6 +14965,30 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14638
14965
|
* @throws {RequiredError}
|
|
14639
14966
|
*/
|
|
14640
14967
|
createCompanyPayment(id: string, iPaymentPostRequest: IPaymentPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IPaymentCreateResponse>>;
|
|
14968
|
+
/**
|
|
14969
|
+
*
|
|
14970
|
+
* @param {string} id
|
|
14971
|
+
* @param {ICompanyCreatePaymentGatewaysRequest} iCompanyCreatePaymentGatewaysRequest
|
|
14972
|
+
* @param {*} [options] Override http request option.
|
|
14973
|
+
* @throws {RequiredError}
|
|
14974
|
+
*/
|
|
14975
|
+
createCompanyPaymentGateways(id: string, iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14976
|
+
/**
|
|
14977
|
+
*
|
|
14978
|
+
* @param {string} id
|
|
14979
|
+
* @param {ICompanyCreateShippingProvidersRequest} iCompanyCreateShippingProvidersRequest
|
|
14980
|
+
* @param {*} [options] Override http request option.
|
|
14981
|
+
* @throws {RequiredError}
|
|
14982
|
+
*/
|
|
14983
|
+
createCompanyShippingProviders(id: string, iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14984
|
+
/**
|
|
14985
|
+
*
|
|
14986
|
+
* @param {string} id
|
|
14987
|
+
* @param {ICompanyCreateWarehousesRequest} iCompanyCreateWarehousesRequest
|
|
14988
|
+
* @param {*} [options] Override http request option.
|
|
14989
|
+
* @throws {RequiredError}
|
|
14990
|
+
*/
|
|
14991
|
+
createCompanyWarehouses(id: string, iCompanyCreateWarehousesRequest: ICompanyCreateWarehousesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14641
14992
|
/**
|
|
14642
14993
|
*
|
|
14643
14994
|
* @param {string} id
|
|
@@ -14645,6 +14996,30 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14645
14996
|
* @throws {RequiredError}
|
|
14646
14997
|
*/
|
|
14647
14998
|
deleteCompany(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14999
|
+
/**
|
|
15000
|
+
*
|
|
15001
|
+
* @param {string} companyId
|
|
15002
|
+
* @param {string} id
|
|
15003
|
+
* @param {*} [options] Override http request option.
|
|
15004
|
+
* @throws {RequiredError}
|
|
15005
|
+
*/
|
|
15006
|
+
deleteCompanyPaymentGateways(companyId: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15007
|
+
/**
|
|
15008
|
+
*
|
|
15009
|
+
* @param {string} companyId
|
|
15010
|
+
* @param {string} id
|
|
15011
|
+
* @param {*} [options] Override http request option.
|
|
15012
|
+
* @throws {RequiredError}
|
|
15013
|
+
*/
|
|
15014
|
+
deleteCompanyShippingProviders(companyId: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15015
|
+
/**
|
|
15016
|
+
*
|
|
15017
|
+
* @param {string} companyId
|
|
15018
|
+
* @param {string} id
|
|
15019
|
+
* @param {*} [options] Override http request option.
|
|
15020
|
+
* @throws {RequiredError}
|
|
15021
|
+
*/
|
|
15022
|
+
deleteCompanyWarehouses(companyId: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14648
15023
|
/**
|
|
14649
15024
|
*
|
|
14650
15025
|
* @param {string} id
|
|
@@ -14787,6 +15162,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14787
15162
|
* @throws {RequiredError}
|
|
14788
15163
|
*/
|
|
14789
15164
|
getCompanyVersions(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>>>;
|
|
15165
|
+
/**
|
|
15166
|
+
*
|
|
15167
|
+
* @param {string} companyId
|
|
15168
|
+
* @param {string} id
|
|
15169
|
+
* @param {*} [options] Override http request option.
|
|
15170
|
+
* @throws {RequiredError}
|
|
15171
|
+
*/
|
|
15172
|
+
setCompanyPaymentGatewaysPrimary(companyId: string, id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14790
15173
|
/**
|
|
14791
15174
|
*
|
|
14792
15175
|
* @param {string} id
|
|
@@ -14829,20 +15212,31 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14829
15212
|
updateCompanyNavigations(id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
14830
15213
|
/**
|
|
14831
15214
|
*
|
|
15215
|
+
* @param {string} companyId
|
|
14832
15216
|
* @param {string} id
|
|
14833
15217
|
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
14834
15218
|
* @param {*} [options] Override http request option.
|
|
14835
15219
|
* @throws {RequiredError}
|
|
14836
15220
|
*/
|
|
14837
|
-
updateCompanyPaymentGateways(id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15221
|
+
updateCompanyPaymentGateways(companyId: string, id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14838
15222
|
/**
|
|
14839
15223
|
*
|
|
15224
|
+
* @param {string} companyId
|
|
14840
15225
|
* @param {string} id
|
|
14841
15226
|
* @param {ICompanyUpdateShippingProvidersRequest} iCompanyUpdateShippingProvidersRequest
|
|
14842
15227
|
* @param {*} [options] Override http request option.
|
|
14843
15228
|
* @throws {RequiredError}
|
|
14844
15229
|
*/
|
|
14845
|
-
updateCompanyShippingProviders(id: string, iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
15230
|
+
updateCompanyShippingProviders(companyId: string, id: string, iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15231
|
+
/**
|
|
15232
|
+
*
|
|
15233
|
+
* @param {string} companyId
|
|
15234
|
+
* @param {string} id
|
|
15235
|
+
* @param {ICompanyUpdateWarehousesRequest} iCompanyUpdateWarehousesRequest
|
|
15236
|
+
* @param {*} [options] Override http request option.
|
|
15237
|
+
* @throws {RequiredError}
|
|
15238
|
+
*/
|
|
15239
|
+
updateCompanyWarehouses(companyId: string, id: string, iCompanyUpdateWarehousesRequest: ICompanyUpdateWarehousesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14846
15240
|
/**
|
|
14847
15241
|
*
|
|
14848
15242
|
* @param {string} id
|
|
@@ -14901,6 +15295,27 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
14901
15295
|
* @throws {RequiredError}
|
|
14902
15296
|
*/
|
|
14903
15297
|
createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<IPaymentCreateResponse>;
|
|
15298
|
+
/**
|
|
15299
|
+
*
|
|
15300
|
+
* @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
15301
|
+
* @param {*} [options] Override http request option.
|
|
15302
|
+
* @throws {RequiredError}
|
|
15303
|
+
*/
|
|
15304
|
+
createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15305
|
+
/**
|
|
15306
|
+
*
|
|
15307
|
+
* @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
15308
|
+
* @param {*} [options] Override http request option.
|
|
15309
|
+
* @throws {RequiredError}
|
|
15310
|
+
*/
|
|
15311
|
+
createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15312
|
+
/**
|
|
15313
|
+
*
|
|
15314
|
+
* @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
15315
|
+
* @param {*} [options] Override http request option.
|
|
15316
|
+
* @throws {RequiredError}
|
|
15317
|
+
*/
|
|
15318
|
+
createCompanyWarehouses(requestParameters: CompanyApiCreateCompanyWarehousesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14904
15319
|
/**
|
|
14905
15320
|
*
|
|
14906
15321
|
* @param {CompanyApiDeleteCompanyRequest} requestParameters Request parameters.
|
|
@@ -14908,6 +15323,27 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
14908
15323
|
* @throws {RequiredError}
|
|
14909
15324
|
*/
|
|
14910
15325
|
deleteCompany(requestParameters: CompanyApiDeleteCompanyRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15326
|
+
/**
|
|
15327
|
+
*
|
|
15328
|
+
* @param {CompanyApiDeleteCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
15329
|
+
* @param {*} [options] Override http request option.
|
|
15330
|
+
* @throws {RequiredError}
|
|
15331
|
+
*/
|
|
15332
|
+
deleteCompanyPaymentGateways(requestParameters: CompanyApiDeleteCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15333
|
+
/**
|
|
15334
|
+
*
|
|
15335
|
+
* @param {CompanyApiDeleteCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
15336
|
+
* @param {*} [options] Override http request option.
|
|
15337
|
+
* @throws {RequiredError}
|
|
15338
|
+
*/
|
|
15339
|
+
deleteCompanyShippingProviders(requestParameters: CompanyApiDeleteCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15340
|
+
/**
|
|
15341
|
+
*
|
|
15342
|
+
* @param {CompanyApiDeleteCompanyWarehousesRequest} requestParameters Request parameters.
|
|
15343
|
+
* @param {*} [options] Override http request option.
|
|
15344
|
+
* @throws {RequiredError}
|
|
15345
|
+
*/
|
|
15346
|
+
deleteCompanyWarehouses(requestParameters: CompanyApiDeleteCompanyWarehousesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14911
15347
|
/**
|
|
14912
15348
|
*
|
|
14913
15349
|
* @param {CompanyApiDeleteDomainRequest} requestParameters Request parameters.
|
|
@@ -15020,6 +15456,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15020
15456
|
* @throws {RequiredError}
|
|
15021
15457
|
*/
|
|
15022
15458
|
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner>>;
|
|
15459
|
+
/**
|
|
15460
|
+
*
|
|
15461
|
+
* @param {CompanyApiSetCompanyPaymentGatewaysPrimaryRequest} requestParameters Request parameters.
|
|
15462
|
+
* @param {*} [options] Override http request option.
|
|
15463
|
+
* @throws {RequiredError}
|
|
15464
|
+
*/
|
|
15465
|
+
setCompanyPaymentGatewaysPrimary(requestParameters: CompanyApiSetCompanyPaymentGatewaysPrimaryRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15023
15466
|
/**
|
|
15024
15467
|
*
|
|
15025
15468
|
* @param {CompanyApiSetCompanySenderEmailRequest} requestParameters Request parameters.
|
|
@@ -15068,7 +15511,14 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15068
15511
|
* @param {*} [options] Override http request option.
|
|
15069
15512
|
* @throws {RequiredError}
|
|
15070
15513
|
*/
|
|
15071
|
-
updateCompanyShippingProviders(requestParameters: CompanyApiUpdateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
15514
|
+
updateCompanyShippingProviders(requestParameters: CompanyApiUpdateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15515
|
+
/**
|
|
15516
|
+
*
|
|
15517
|
+
* @param {CompanyApiUpdateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
15518
|
+
* @param {*} [options] Override http request option.
|
|
15519
|
+
* @throws {RequiredError}
|
|
15520
|
+
*/
|
|
15521
|
+
updateCompanyWarehouses(requestParameters: CompanyApiUpdateCompanyWarehousesRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15072
15522
|
/**
|
|
15073
15523
|
*
|
|
15074
15524
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|
|
@@ -15167,6 +15617,63 @@ export interface CompanyApiCreateCompanyPaymentRequest {
|
|
|
15167
15617
|
*/
|
|
15168
15618
|
readonly iPaymentPostRequest: IPaymentPostRequest;
|
|
15169
15619
|
}
|
|
15620
|
+
/**
|
|
15621
|
+
* Request parameters for createCompanyPaymentGateways operation in CompanyApi.
|
|
15622
|
+
* @export
|
|
15623
|
+
* @interface CompanyApiCreateCompanyPaymentGatewaysRequest
|
|
15624
|
+
*/
|
|
15625
|
+
export interface CompanyApiCreateCompanyPaymentGatewaysRequest {
|
|
15626
|
+
/**
|
|
15627
|
+
*
|
|
15628
|
+
* @type {string}
|
|
15629
|
+
* @memberof CompanyApiCreateCompanyPaymentGateways
|
|
15630
|
+
*/
|
|
15631
|
+
readonly id: string;
|
|
15632
|
+
/**
|
|
15633
|
+
*
|
|
15634
|
+
* @type {ICompanyCreatePaymentGatewaysRequest}
|
|
15635
|
+
* @memberof CompanyApiCreateCompanyPaymentGateways
|
|
15636
|
+
*/
|
|
15637
|
+
readonly iCompanyCreatePaymentGatewaysRequest: ICompanyCreatePaymentGatewaysRequest;
|
|
15638
|
+
}
|
|
15639
|
+
/**
|
|
15640
|
+
* Request parameters for createCompanyShippingProviders operation in CompanyApi.
|
|
15641
|
+
* @export
|
|
15642
|
+
* @interface CompanyApiCreateCompanyShippingProvidersRequest
|
|
15643
|
+
*/
|
|
15644
|
+
export interface CompanyApiCreateCompanyShippingProvidersRequest {
|
|
15645
|
+
/**
|
|
15646
|
+
*
|
|
15647
|
+
* @type {string}
|
|
15648
|
+
* @memberof CompanyApiCreateCompanyShippingProviders
|
|
15649
|
+
*/
|
|
15650
|
+
readonly id: string;
|
|
15651
|
+
/**
|
|
15652
|
+
*
|
|
15653
|
+
* @type {ICompanyCreateShippingProvidersRequest}
|
|
15654
|
+
* @memberof CompanyApiCreateCompanyShippingProviders
|
|
15655
|
+
*/
|
|
15656
|
+
readonly iCompanyCreateShippingProvidersRequest: ICompanyCreateShippingProvidersRequest;
|
|
15657
|
+
}
|
|
15658
|
+
/**
|
|
15659
|
+
* Request parameters for createCompanyWarehouses operation in CompanyApi.
|
|
15660
|
+
* @export
|
|
15661
|
+
* @interface CompanyApiCreateCompanyWarehousesRequest
|
|
15662
|
+
*/
|
|
15663
|
+
export interface CompanyApiCreateCompanyWarehousesRequest {
|
|
15664
|
+
/**
|
|
15665
|
+
*
|
|
15666
|
+
* @type {string}
|
|
15667
|
+
* @memberof CompanyApiCreateCompanyWarehouses
|
|
15668
|
+
*/
|
|
15669
|
+
readonly id: string;
|
|
15670
|
+
/**
|
|
15671
|
+
*
|
|
15672
|
+
* @type {ICompanyCreateWarehousesRequest}
|
|
15673
|
+
* @memberof CompanyApiCreateCompanyWarehouses
|
|
15674
|
+
*/
|
|
15675
|
+
readonly iCompanyCreateWarehousesRequest: ICompanyCreateWarehousesRequest;
|
|
15676
|
+
}
|
|
15170
15677
|
/**
|
|
15171
15678
|
* Request parameters for deleteCompany operation in CompanyApi.
|
|
15172
15679
|
* @export
|
|
@@ -15180,6 +15687,63 @@ export interface CompanyApiDeleteCompanyRequest {
|
|
|
15180
15687
|
*/
|
|
15181
15688
|
readonly id: string;
|
|
15182
15689
|
}
|
|
15690
|
+
/**
|
|
15691
|
+
* Request parameters for deleteCompanyPaymentGateways operation in CompanyApi.
|
|
15692
|
+
* @export
|
|
15693
|
+
* @interface CompanyApiDeleteCompanyPaymentGatewaysRequest
|
|
15694
|
+
*/
|
|
15695
|
+
export interface CompanyApiDeleteCompanyPaymentGatewaysRequest {
|
|
15696
|
+
/**
|
|
15697
|
+
*
|
|
15698
|
+
* @type {string}
|
|
15699
|
+
* @memberof CompanyApiDeleteCompanyPaymentGateways
|
|
15700
|
+
*/
|
|
15701
|
+
readonly companyId: string;
|
|
15702
|
+
/**
|
|
15703
|
+
*
|
|
15704
|
+
* @type {string}
|
|
15705
|
+
* @memberof CompanyApiDeleteCompanyPaymentGateways
|
|
15706
|
+
*/
|
|
15707
|
+
readonly id: string;
|
|
15708
|
+
}
|
|
15709
|
+
/**
|
|
15710
|
+
* Request parameters for deleteCompanyShippingProviders operation in CompanyApi.
|
|
15711
|
+
* @export
|
|
15712
|
+
* @interface CompanyApiDeleteCompanyShippingProvidersRequest
|
|
15713
|
+
*/
|
|
15714
|
+
export interface CompanyApiDeleteCompanyShippingProvidersRequest {
|
|
15715
|
+
/**
|
|
15716
|
+
*
|
|
15717
|
+
* @type {string}
|
|
15718
|
+
* @memberof CompanyApiDeleteCompanyShippingProviders
|
|
15719
|
+
*/
|
|
15720
|
+
readonly companyId: string;
|
|
15721
|
+
/**
|
|
15722
|
+
*
|
|
15723
|
+
* @type {string}
|
|
15724
|
+
* @memberof CompanyApiDeleteCompanyShippingProviders
|
|
15725
|
+
*/
|
|
15726
|
+
readonly id: string;
|
|
15727
|
+
}
|
|
15728
|
+
/**
|
|
15729
|
+
* Request parameters for deleteCompanyWarehouses operation in CompanyApi.
|
|
15730
|
+
* @export
|
|
15731
|
+
* @interface CompanyApiDeleteCompanyWarehousesRequest
|
|
15732
|
+
*/
|
|
15733
|
+
export interface CompanyApiDeleteCompanyWarehousesRequest {
|
|
15734
|
+
/**
|
|
15735
|
+
*
|
|
15736
|
+
* @type {string}
|
|
15737
|
+
* @memberof CompanyApiDeleteCompanyWarehouses
|
|
15738
|
+
*/
|
|
15739
|
+
readonly companyId: string;
|
|
15740
|
+
/**
|
|
15741
|
+
*
|
|
15742
|
+
* @type {string}
|
|
15743
|
+
* @memberof CompanyApiDeleteCompanyWarehouses
|
|
15744
|
+
*/
|
|
15745
|
+
readonly id: string;
|
|
15746
|
+
}
|
|
15183
15747
|
/**
|
|
15184
15748
|
* Request parameters for deleteDomain operation in CompanyApi.
|
|
15185
15749
|
* @export
|
|
@@ -15568,6 +16132,25 @@ export interface CompanyApiGetCompanyVersionsRequest {
|
|
|
15568
16132
|
*/
|
|
15569
16133
|
readonly id: string;
|
|
15570
16134
|
}
|
|
16135
|
+
/**
|
|
16136
|
+
* Request parameters for setCompanyPaymentGatewaysPrimary operation in CompanyApi.
|
|
16137
|
+
* @export
|
|
16138
|
+
* @interface CompanyApiSetCompanyPaymentGatewaysPrimaryRequest
|
|
16139
|
+
*/
|
|
16140
|
+
export interface CompanyApiSetCompanyPaymentGatewaysPrimaryRequest {
|
|
16141
|
+
/**
|
|
16142
|
+
*
|
|
16143
|
+
* @type {string}
|
|
16144
|
+
* @memberof CompanyApiSetCompanyPaymentGatewaysPrimary
|
|
16145
|
+
*/
|
|
16146
|
+
readonly companyId: string;
|
|
16147
|
+
/**
|
|
16148
|
+
*
|
|
16149
|
+
* @type {string}
|
|
16150
|
+
* @memberof CompanyApiSetCompanyPaymentGatewaysPrimary
|
|
16151
|
+
*/
|
|
16152
|
+
readonly id: string;
|
|
16153
|
+
}
|
|
15571
16154
|
/**
|
|
15572
16155
|
* Request parameters for setCompanySenderEmail operation in CompanyApi.
|
|
15573
16156
|
* @export
|
|
@@ -15669,6 +16252,12 @@ export interface CompanyApiUpdateCompanyNavigationsRequest {
|
|
|
15669
16252
|
* @interface CompanyApiUpdateCompanyPaymentGatewaysRequest
|
|
15670
16253
|
*/
|
|
15671
16254
|
export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
|
|
16255
|
+
/**
|
|
16256
|
+
*
|
|
16257
|
+
* @type {string}
|
|
16258
|
+
* @memberof CompanyApiUpdateCompanyPaymentGateways
|
|
16259
|
+
*/
|
|
16260
|
+
readonly companyId: string;
|
|
15672
16261
|
/**
|
|
15673
16262
|
*
|
|
15674
16263
|
* @type {string}
|
|
@@ -15688,6 +16277,12 @@ export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
|
|
|
15688
16277
|
* @interface CompanyApiUpdateCompanyShippingProvidersRequest
|
|
15689
16278
|
*/
|
|
15690
16279
|
export interface CompanyApiUpdateCompanyShippingProvidersRequest {
|
|
16280
|
+
/**
|
|
16281
|
+
*
|
|
16282
|
+
* @type {string}
|
|
16283
|
+
* @memberof CompanyApiUpdateCompanyShippingProviders
|
|
16284
|
+
*/
|
|
16285
|
+
readonly companyId: string;
|
|
15691
16286
|
/**
|
|
15692
16287
|
*
|
|
15693
16288
|
* @type {string}
|
|
@@ -15701,6 +16296,31 @@ export interface CompanyApiUpdateCompanyShippingProvidersRequest {
|
|
|
15701
16296
|
*/
|
|
15702
16297
|
readonly iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest;
|
|
15703
16298
|
}
|
|
16299
|
+
/**
|
|
16300
|
+
* Request parameters for updateCompanyWarehouses operation in CompanyApi.
|
|
16301
|
+
* @export
|
|
16302
|
+
* @interface CompanyApiUpdateCompanyWarehousesRequest
|
|
16303
|
+
*/
|
|
16304
|
+
export interface CompanyApiUpdateCompanyWarehousesRequest {
|
|
16305
|
+
/**
|
|
16306
|
+
*
|
|
16307
|
+
* @type {string}
|
|
16308
|
+
* @memberof CompanyApiUpdateCompanyWarehouses
|
|
16309
|
+
*/
|
|
16310
|
+
readonly companyId: string;
|
|
16311
|
+
/**
|
|
16312
|
+
*
|
|
16313
|
+
* @type {string}
|
|
16314
|
+
* @memberof CompanyApiUpdateCompanyWarehouses
|
|
16315
|
+
*/
|
|
16316
|
+
readonly id: string;
|
|
16317
|
+
/**
|
|
16318
|
+
*
|
|
16319
|
+
* @type {ICompanyUpdateWarehousesRequest}
|
|
16320
|
+
* @memberof CompanyApiUpdateCompanyWarehouses
|
|
16321
|
+
*/
|
|
16322
|
+
readonly iCompanyUpdateWarehousesRequest: ICompanyUpdateWarehousesRequest;
|
|
16323
|
+
}
|
|
15704
16324
|
/**
|
|
15705
16325
|
* Request parameters for updatePrimaryDomain operation in CompanyApi.
|
|
15706
16326
|
* @export
|
|
@@ -15792,6 +16412,30 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15792
16412
|
* @memberof CompanyApi
|
|
15793
16413
|
*/
|
|
15794
16414
|
createCompanyPayment(requestParameters: CompanyApiCreateCompanyPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IPaymentCreateResponse, any>>;
|
|
16415
|
+
/**
|
|
16416
|
+
*
|
|
16417
|
+
* @param {CompanyApiCreateCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
16418
|
+
* @param {*} [options] Override http request option.
|
|
16419
|
+
* @throws {RequiredError}
|
|
16420
|
+
* @memberof CompanyApi
|
|
16421
|
+
*/
|
|
16422
|
+
createCompanyPaymentGateways(requestParameters: CompanyApiCreateCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16423
|
+
/**
|
|
16424
|
+
*
|
|
16425
|
+
* @param {CompanyApiCreateCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
16426
|
+
* @param {*} [options] Override http request option.
|
|
16427
|
+
* @throws {RequiredError}
|
|
16428
|
+
* @memberof CompanyApi
|
|
16429
|
+
*/
|
|
16430
|
+
createCompanyShippingProviders(requestParameters: CompanyApiCreateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16431
|
+
/**
|
|
16432
|
+
*
|
|
16433
|
+
* @param {CompanyApiCreateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
16434
|
+
* @param {*} [options] Override http request option.
|
|
16435
|
+
* @throws {RequiredError}
|
|
16436
|
+
* @memberof CompanyApi
|
|
16437
|
+
*/
|
|
16438
|
+
createCompanyWarehouses(requestParameters: CompanyApiCreateCompanyWarehousesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
15795
16439
|
/**
|
|
15796
16440
|
*
|
|
15797
16441
|
* @param {CompanyApiDeleteCompanyRequest} requestParameters Request parameters.
|
|
@@ -15800,6 +16444,30 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15800
16444
|
* @memberof CompanyApi
|
|
15801
16445
|
*/
|
|
15802
16446
|
deleteCompany(requestParameters: CompanyApiDeleteCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16447
|
+
/**
|
|
16448
|
+
*
|
|
16449
|
+
* @param {CompanyApiDeleteCompanyPaymentGatewaysRequest} requestParameters Request parameters.
|
|
16450
|
+
* @param {*} [options] Override http request option.
|
|
16451
|
+
* @throws {RequiredError}
|
|
16452
|
+
* @memberof CompanyApi
|
|
16453
|
+
*/
|
|
16454
|
+
deleteCompanyPaymentGateways(requestParameters: CompanyApiDeleteCompanyPaymentGatewaysRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16455
|
+
/**
|
|
16456
|
+
*
|
|
16457
|
+
* @param {CompanyApiDeleteCompanyShippingProvidersRequest} requestParameters Request parameters.
|
|
16458
|
+
* @param {*} [options] Override http request option.
|
|
16459
|
+
* @throws {RequiredError}
|
|
16460
|
+
* @memberof CompanyApi
|
|
16461
|
+
*/
|
|
16462
|
+
deleteCompanyShippingProviders(requestParameters: CompanyApiDeleteCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16463
|
+
/**
|
|
16464
|
+
*
|
|
16465
|
+
* @param {CompanyApiDeleteCompanyWarehousesRequest} requestParameters Request parameters.
|
|
16466
|
+
* @param {*} [options] Override http request option.
|
|
16467
|
+
* @throws {RequiredError}
|
|
16468
|
+
* @memberof CompanyApi
|
|
16469
|
+
*/
|
|
16470
|
+
deleteCompanyWarehouses(requestParameters: CompanyApiDeleteCompanyWarehousesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
15803
16471
|
/**
|
|
15804
16472
|
*
|
|
15805
16473
|
* @param {CompanyApiDeleteDomainRequest} requestParameters Request parameters.
|
|
@@ -15928,6 +16596,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15928
16596
|
* @memberof CompanyApi
|
|
15929
16597
|
*/
|
|
15930
16598
|
getCompanyVersions(requestParameters: CompanyApiGetCompanyVersionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PickIUserExcludeKeyofIUserPasswordOrSaltOrIsAdminOrIsSuperAdminOrCodeOrTVersionsInner[], any>>;
|
|
16599
|
+
/**
|
|
16600
|
+
*
|
|
16601
|
+
* @param {CompanyApiSetCompanyPaymentGatewaysPrimaryRequest} requestParameters Request parameters.
|
|
16602
|
+
* @param {*} [options] Override http request option.
|
|
16603
|
+
* @throws {RequiredError}
|
|
16604
|
+
* @memberof CompanyApi
|
|
16605
|
+
*/
|
|
16606
|
+
setCompanyPaymentGatewaysPrimary(requestParameters: CompanyApiSetCompanyPaymentGatewaysPrimaryRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
15931
16607
|
/**
|
|
15932
16608
|
*
|
|
15933
16609
|
* @param {CompanyApiSetCompanySenderEmailRequest} requestParameters Request parameters.
|
|
@@ -15983,7 +16659,15 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15983
16659
|
* @throws {RequiredError}
|
|
15984
16660
|
* @memberof CompanyApi
|
|
15985
16661
|
*/
|
|
15986
|
-
updateCompanyShippingProviders(requestParameters: CompanyApiUpdateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
16662
|
+
updateCompanyShippingProviders(requestParameters: CompanyApiUpdateCompanyShippingProvidersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16663
|
+
/**
|
|
16664
|
+
*
|
|
16665
|
+
* @param {CompanyApiUpdateCompanyWarehousesRequest} requestParameters Request parameters.
|
|
16666
|
+
* @param {*} [options] Override http request option.
|
|
16667
|
+
* @throws {RequiredError}
|
|
16668
|
+
* @memberof CompanyApi
|
|
16669
|
+
*/
|
|
16670
|
+
updateCompanyWarehouses(requestParameters: CompanyApiUpdateCompanyWarehousesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
15987
16671
|
/**
|
|
15988
16672
|
*
|
|
15989
16673
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|