@infisale-client/api 1.2.104 → 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 +742 -59
- package/dist/api/api.js +543 -12
- package/dist/api/api.mjs +543 -12
- 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
|
|
@@ -2895,10 +2994,10 @@ export interface ICompanyPatchRequest {
|
|
|
2895
2994
|
'senderEmailDnsRecords'?: Array<ICompanyAdminResponseSenderEmailDnsRecordsInner>;
|
|
2896
2995
|
/**
|
|
2897
2996
|
*
|
|
2898
|
-
* @type {Array<
|
|
2997
|
+
* @type {Array<ICompanyPatchRequestWarehousesInner>}
|
|
2899
2998
|
* @memberof ICompanyPatchRequest
|
|
2900
2999
|
*/
|
|
2901
|
-
'warehouses'?: Array<
|
|
3000
|
+
'warehouses'?: Array<ICompanyPatchRequestWarehousesInner>;
|
|
2902
3001
|
/**
|
|
2903
3002
|
*
|
|
2904
3003
|
* @type {ICompanyResponseAddress}
|
|
@@ -3073,6 +3172,43 @@ export interface ICompanyPatchRequestPaymentGatewaysInner {
|
|
|
3073
3172
|
*/
|
|
3074
3173
|
'_id': string;
|
|
3075
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
|
+
}
|
|
3076
3212
|
/**
|
|
3077
3213
|
*
|
|
3078
3214
|
* @export
|
|
@@ -3738,59 +3874,40 @@ export interface ICompanyUpdateNavigationRequest {
|
|
|
3738
3874
|
export interface ICompanyUpdatePaymentGatewaysRequest {
|
|
3739
3875
|
/**
|
|
3740
3876
|
*
|
|
3741
|
-
* @type {
|
|
3877
|
+
* @type {PaymentGatewayEnum}
|
|
3742
3878
|
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3743
3879
|
*/
|
|
3744
|
-
'
|
|
3745
|
-
}
|
|
3746
|
-
/**
|
|
3747
|
-
*
|
|
3748
|
-
* @export
|
|
3749
|
-
* @interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3750
|
-
*/
|
|
3751
|
-
export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
3752
|
-
/**
|
|
3753
|
-
*
|
|
3754
|
-
* @type {boolean}
|
|
3755
|
-
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3756
|
-
*/
|
|
3757
|
-
'active': boolean;
|
|
3758
|
-
/**
|
|
3759
|
-
*
|
|
3760
|
-
* @type {boolean}
|
|
3761
|
-
* @memberof ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner
|
|
3762
|
-
*/
|
|
3763
|
-
'testMode': boolean;
|
|
3880
|
+
'type'?: PaymentGatewayEnum;
|
|
3764
3881
|
/**
|
|
3765
3882
|
*
|
|
3766
3883
|
* @type {string}
|
|
3767
|
-
* @memberof
|
|
3884
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3768
3885
|
*/
|
|
3769
|
-
'
|
|
3886
|
+
'merchantId'?: string;
|
|
3770
3887
|
/**
|
|
3771
3888
|
*
|
|
3772
3889
|
* @type {string}
|
|
3773
|
-
* @memberof
|
|
3890
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3774
3891
|
*/
|
|
3775
|
-
'apiKey'
|
|
3892
|
+
'apiKey'?: string;
|
|
3776
3893
|
/**
|
|
3777
3894
|
*
|
|
3778
3895
|
* @type {string}
|
|
3779
|
-
* @memberof
|
|
3896
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3780
3897
|
*/
|
|
3781
|
-
'
|
|
3898
|
+
'secretKey'?: string;
|
|
3782
3899
|
/**
|
|
3783
3900
|
*
|
|
3784
|
-
* @type {
|
|
3785
|
-
* @memberof
|
|
3901
|
+
* @type {boolean}
|
|
3902
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3786
3903
|
*/
|
|
3787
|
-
'
|
|
3904
|
+
'testMode'?: boolean;
|
|
3788
3905
|
/**
|
|
3789
3906
|
*
|
|
3790
|
-
* @type {
|
|
3791
|
-
* @memberof
|
|
3907
|
+
* @type {boolean}
|
|
3908
|
+
* @memberof ICompanyUpdatePaymentGatewaysRequest
|
|
3792
3909
|
*/
|
|
3793
|
-
'
|
|
3910
|
+
'active'?: boolean;
|
|
3794
3911
|
}
|
|
3795
3912
|
/**
|
|
3796
3913
|
*
|
|
@@ -3800,10 +3917,22 @@ export interface ICompanyUpdatePaymentGatewaysRequestPaymentGatewaysInner {
|
|
|
3800
3917
|
export interface ICompanyUpdateShippingProvidersRequest {
|
|
3801
3918
|
/**
|
|
3802
3919
|
*
|
|
3803
|
-
* @type {
|
|
3920
|
+
* @type {string}
|
|
3804
3921
|
* @memberof ICompanyUpdateShippingProvidersRequest
|
|
3805
3922
|
*/
|
|
3806
|
-
'
|
|
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>;
|
|
3807
3936
|
}
|
|
3808
3937
|
/**
|
|
3809
3938
|
*
|
|
@@ -3824,6 +3953,37 @@ export interface ICompanyUpdateUserRequest {
|
|
|
3824
3953
|
*/
|
|
3825
3954
|
'status'?: CompanyUserStatusEnum;
|
|
3826
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
|
+
}
|
|
3827
3987
|
/**
|
|
3828
3988
|
*
|
|
3829
3989
|
* @export
|
|
@@ -9655,6 +9815,80 @@ export interface PickICollectionResponseExcludeKeyofICollectionResponseKeyofMong
|
|
|
9655
9815
|
*/
|
|
9656
9816
|
'thumbnail'?: IImage;
|
|
9657
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
|
+
}
|
|
9658
9892
|
/**
|
|
9659
9893
|
* From T, pick a set of properties whose keys are in the union K
|
|
9660
9894
|
* @export
|
|
@@ -11631,22 +11865,47 @@ export interface PickIUserIdOrNameOrEmail {
|
|
|
11631
11865
|
'_id': string;
|
|
11632
11866
|
}
|
|
11633
11867
|
/**
|
|
11634
|
-
*
|
|
11635
|
-
* @export
|
|
11636
|
-
* @enum {string}
|
|
11637
|
-
*/
|
|
11638
|
-
export declare const PlanCurrencyEnum: {
|
|
11639
|
-
readonly TRY: "try";
|
|
11640
|
-
readonly EUR: "eur";
|
|
11641
|
-
readonly USD: "usd";
|
|
11642
|
-
};
|
|
11643
|
-
export type PlanCurrencyEnum = typeof PlanCurrencyEnum[keyof typeof PlanCurrencyEnum];
|
|
11644
|
-
/**
|
|
11645
|
-
*
|
|
11868
|
+
* From T, pick a set of properties whose keys are in the union K
|
|
11646
11869
|
* @export
|
|
11647
|
-
* @
|
|
11870
|
+
* @interface PickShippingProviderExcludeKeyofShippingProviderId
|
|
11648
11871
|
*/
|
|
11649
|
-
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: {
|
|
11650
11909
|
readonly ACTIVE: "active";
|
|
11651
11910
|
readonly INACTIVE: "inactive";
|
|
11652
11911
|
readonly DELETED: "deleted";
|
|
@@ -14373,6 +14632,30 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14373
14632
|
* @throws {RequiredError}
|
|
14374
14633
|
*/
|
|
14375
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>;
|
|
14376
14659
|
/**
|
|
14377
14660
|
*
|
|
14378
14661
|
* @param {string} id
|
|
@@ -14380,6 +14663,30 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14380
14663
|
* @throws {RequiredError}
|
|
14381
14664
|
*/
|
|
14382
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>;
|
|
14383
14690
|
/**
|
|
14384
14691
|
*
|
|
14385
14692
|
* @param {string} id
|
|
@@ -14522,6 +14829,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14522
14829
|
* @throws {RequiredError}
|
|
14523
14830
|
*/
|
|
14524
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>;
|
|
14525
14840
|
/**
|
|
14526
14841
|
*
|
|
14527
14842
|
* @param {string} id
|
|
@@ -14564,20 +14879,31 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14564
14879
|
updateCompanyNavigations: (id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14565
14880
|
/**
|
|
14566
14881
|
*
|
|
14882
|
+
* @param {string} companyId
|
|
14567
14883
|
* @param {string} id
|
|
14568
14884
|
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
14569
14885
|
* @param {*} [options] Override http request option.
|
|
14570
14886
|
* @throws {RequiredError}
|
|
14571
14887
|
*/
|
|
14572
|
-
updateCompanyPaymentGateways: (id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14888
|
+
updateCompanyPaymentGateways: (companyId: string, id: string, iCompanyUpdatePaymentGatewaysRequest: ICompanyUpdatePaymentGatewaysRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14573
14889
|
/**
|
|
14574
14890
|
*
|
|
14891
|
+
* @param {string} companyId
|
|
14575
14892
|
* @param {string} id
|
|
14576
14893
|
* @param {ICompanyUpdateShippingProvidersRequest} iCompanyUpdateShippingProvidersRequest
|
|
14577
14894
|
* @param {*} [options] Override http request option.
|
|
14578
14895
|
* @throws {RequiredError}
|
|
14579
14896
|
*/
|
|
14580
|
-
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>;
|
|
14581
14907
|
/**
|
|
14582
14908
|
*
|
|
14583
14909
|
* @param {string} id
|
|
@@ -14639,6 +14965,30 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14639
14965
|
* @throws {RequiredError}
|
|
14640
14966
|
*/
|
|
14641
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>>;
|
|
14642
14992
|
/**
|
|
14643
14993
|
*
|
|
14644
14994
|
* @param {string} id
|
|
@@ -14646,6 +14996,30 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14646
14996
|
* @throws {RequiredError}
|
|
14647
14997
|
*/
|
|
14648
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>>;
|
|
14649
15023
|
/**
|
|
14650
15024
|
*
|
|
14651
15025
|
* @param {string} id
|
|
@@ -14788,6 +15162,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14788
15162
|
* @throws {RequiredError}
|
|
14789
15163
|
*/
|
|
14790
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>>;
|
|
14791
15173
|
/**
|
|
14792
15174
|
*
|
|
14793
15175
|
* @param {string} id
|
|
@@ -14830,20 +15212,31 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
14830
15212
|
updateCompanyNavigations(id: string, iCompanyUpdateNavigationRequest: ICompanyUpdateNavigationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
14831
15213
|
/**
|
|
14832
15214
|
*
|
|
15215
|
+
* @param {string} companyId
|
|
14833
15216
|
* @param {string} id
|
|
14834
15217
|
* @param {ICompanyUpdatePaymentGatewaysRequest} iCompanyUpdatePaymentGatewaysRequest
|
|
14835
15218
|
* @param {*} [options] Override http request option.
|
|
14836
15219
|
* @throws {RequiredError}
|
|
14837
15220
|
*/
|
|
14838
|
-
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>>;
|
|
14839
15222
|
/**
|
|
14840
15223
|
*
|
|
15224
|
+
* @param {string} companyId
|
|
14841
15225
|
* @param {string} id
|
|
14842
15226
|
* @param {ICompanyUpdateShippingProvidersRequest} iCompanyUpdateShippingProvidersRequest
|
|
14843
15227
|
* @param {*} [options] Override http request option.
|
|
14844
15228
|
* @throws {RequiredError}
|
|
14845
15229
|
*/
|
|
14846
|
-
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>>;
|
|
14847
15240
|
/**
|
|
14848
15241
|
*
|
|
14849
15242
|
* @param {string} id
|
|
@@ -14902,6 +15295,27 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
14902
15295
|
* @throws {RequiredError}
|
|
14903
15296
|
*/
|
|
14904
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>;
|
|
14905
15319
|
/**
|
|
14906
15320
|
*
|
|
14907
15321
|
* @param {CompanyApiDeleteCompanyRequest} requestParameters Request parameters.
|
|
@@ -14909,6 +15323,27 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
14909
15323
|
* @throws {RequiredError}
|
|
14910
15324
|
*/
|
|
14911
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>;
|
|
14912
15347
|
/**
|
|
14913
15348
|
*
|
|
14914
15349
|
* @param {CompanyApiDeleteDomainRequest} requestParameters Request parameters.
|
|
@@ -15021,6 +15456,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15021
15456
|
* @throws {RequiredError}
|
|
15022
15457
|
*/
|
|
15023
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>;
|
|
15024
15466
|
/**
|
|
15025
15467
|
*
|
|
15026
15468
|
* @param {CompanyApiSetCompanySenderEmailRequest} requestParameters Request parameters.
|
|
@@ -15069,7 +15511,14 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15069
15511
|
* @param {*} [options] Override http request option.
|
|
15070
15512
|
* @throws {RequiredError}
|
|
15071
15513
|
*/
|
|
15072
|
-
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>;
|
|
15073
15522
|
/**
|
|
15074
15523
|
*
|
|
15075
15524
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|
|
@@ -15168,6 +15617,63 @@ export interface CompanyApiCreateCompanyPaymentRequest {
|
|
|
15168
15617
|
*/
|
|
15169
15618
|
readonly iPaymentPostRequest: IPaymentPostRequest;
|
|
15170
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
|
+
}
|
|
15171
15677
|
/**
|
|
15172
15678
|
* Request parameters for deleteCompany operation in CompanyApi.
|
|
15173
15679
|
* @export
|
|
@@ -15181,6 +15687,63 @@ export interface CompanyApiDeleteCompanyRequest {
|
|
|
15181
15687
|
*/
|
|
15182
15688
|
readonly id: string;
|
|
15183
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
|
+
}
|
|
15184
15747
|
/**
|
|
15185
15748
|
* Request parameters for deleteDomain operation in CompanyApi.
|
|
15186
15749
|
* @export
|
|
@@ -15569,6 +16132,25 @@ export interface CompanyApiGetCompanyVersionsRequest {
|
|
|
15569
16132
|
*/
|
|
15570
16133
|
readonly id: string;
|
|
15571
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
|
+
}
|
|
15572
16154
|
/**
|
|
15573
16155
|
* Request parameters for setCompanySenderEmail operation in CompanyApi.
|
|
15574
16156
|
* @export
|
|
@@ -15670,6 +16252,12 @@ export interface CompanyApiUpdateCompanyNavigationsRequest {
|
|
|
15670
16252
|
* @interface CompanyApiUpdateCompanyPaymentGatewaysRequest
|
|
15671
16253
|
*/
|
|
15672
16254
|
export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
|
|
16255
|
+
/**
|
|
16256
|
+
*
|
|
16257
|
+
* @type {string}
|
|
16258
|
+
* @memberof CompanyApiUpdateCompanyPaymentGateways
|
|
16259
|
+
*/
|
|
16260
|
+
readonly companyId: string;
|
|
15673
16261
|
/**
|
|
15674
16262
|
*
|
|
15675
16263
|
* @type {string}
|
|
@@ -15689,6 +16277,12 @@ export interface CompanyApiUpdateCompanyPaymentGatewaysRequest {
|
|
|
15689
16277
|
* @interface CompanyApiUpdateCompanyShippingProvidersRequest
|
|
15690
16278
|
*/
|
|
15691
16279
|
export interface CompanyApiUpdateCompanyShippingProvidersRequest {
|
|
16280
|
+
/**
|
|
16281
|
+
*
|
|
16282
|
+
* @type {string}
|
|
16283
|
+
* @memberof CompanyApiUpdateCompanyShippingProviders
|
|
16284
|
+
*/
|
|
16285
|
+
readonly companyId: string;
|
|
15692
16286
|
/**
|
|
15693
16287
|
*
|
|
15694
16288
|
* @type {string}
|
|
@@ -15702,6 +16296,31 @@ export interface CompanyApiUpdateCompanyShippingProvidersRequest {
|
|
|
15702
16296
|
*/
|
|
15703
16297
|
readonly iCompanyUpdateShippingProvidersRequest: ICompanyUpdateShippingProvidersRequest;
|
|
15704
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
|
+
}
|
|
15705
16324
|
/**
|
|
15706
16325
|
* Request parameters for updatePrimaryDomain operation in CompanyApi.
|
|
15707
16326
|
* @export
|
|
@@ -15793,6 +16412,30 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15793
16412
|
* @memberof CompanyApi
|
|
15794
16413
|
*/
|
|
15795
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>>;
|
|
15796
16439
|
/**
|
|
15797
16440
|
*
|
|
15798
16441
|
* @param {CompanyApiDeleteCompanyRequest} requestParameters Request parameters.
|
|
@@ -15801,6 +16444,30 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15801
16444
|
* @memberof CompanyApi
|
|
15802
16445
|
*/
|
|
15803
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>>;
|
|
15804
16471
|
/**
|
|
15805
16472
|
*
|
|
15806
16473
|
* @param {CompanyApiDeleteDomainRequest} requestParameters Request parameters.
|
|
@@ -15929,6 +16596,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15929
16596
|
* @memberof CompanyApi
|
|
15930
16597
|
*/
|
|
15931
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>>;
|
|
15932
16607
|
/**
|
|
15933
16608
|
*
|
|
15934
16609
|
* @param {CompanyApiSetCompanySenderEmailRequest} requestParameters Request parameters.
|
|
@@ -15984,7 +16659,15 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
15984
16659
|
* @throws {RequiredError}
|
|
15985
16660
|
* @memberof CompanyApi
|
|
15986
16661
|
*/
|
|
15987
|
-
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>>;
|
|
15988
16671
|
/**
|
|
15989
16672
|
*
|
|
15990
16673
|
* @param {CompanyApiUpdatePrimaryDomainRequest} requestParameters Request parameters.
|