@infisale-client/api 1.3.29 → 1.3.31
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 +258 -9
- package/dist/api/api.js +238 -20
- package/dist/api/api.mjs +234 -16
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -25,6 +25,16 @@ export declare const CompanyStatusEnum: {
|
|
|
25
25
|
readonly DELETED: "deleted";
|
|
26
26
|
};
|
|
27
27
|
export type CompanyStatusEnum = typeof CompanyStatusEnum[keyof typeof CompanyStatusEnum];
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @export
|
|
31
|
+
* @enum {string}
|
|
32
|
+
*/
|
|
33
|
+
export declare const CompanyTypeEnum: {
|
|
34
|
+
readonly B2C: "b2c";
|
|
35
|
+
readonly CMS: "cms";
|
|
36
|
+
};
|
|
37
|
+
export type CompanyTypeEnum = typeof CompanyTypeEnum[keyof typeof CompanyTypeEnum];
|
|
28
38
|
/**
|
|
29
39
|
*
|
|
30
40
|
* @export
|
|
@@ -2744,6 +2754,25 @@ export declare const ICompanyCollectionQueryParamsDateFieldEnum: {
|
|
|
2744
2754
|
readonly UPDATED_AT: "updatedAt";
|
|
2745
2755
|
};
|
|
2746
2756
|
export type ICompanyCollectionQueryParamsDateFieldEnum = typeof ICompanyCollectionQueryParamsDateFieldEnum[keyof typeof ICompanyCollectionQueryParamsDateFieldEnum];
|
|
2757
|
+
/**
|
|
2758
|
+
*
|
|
2759
|
+
* @export
|
|
2760
|
+
* @interface ICompanyCreateLanguageRequest
|
|
2761
|
+
*/
|
|
2762
|
+
export interface ICompanyCreateLanguageRequest {
|
|
2763
|
+
/**
|
|
2764
|
+
*
|
|
2765
|
+
* @type {LanguageEnum}
|
|
2766
|
+
* @memberof ICompanyCreateLanguageRequest
|
|
2767
|
+
*/
|
|
2768
|
+
'language': LanguageEnum;
|
|
2769
|
+
/**
|
|
2770
|
+
*
|
|
2771
|
+
* @type {boolean}
|
|
2772
|
+
* @memberof ICompanyCreateLanguageRequest
|
|
2773
|
+
*/
|
|
2774
|
+
'main'?: boolean;
|
|
2775
|
+
}
|
|
2747
2776
|
/**
|
|
2748
2777
|
*
|
|
2749
2778
|
* @export
|
|
@@ -2862,6 +2891,19 @@ export interface ICompanyCreateWarehousesRequest {
|
|
|
2862
2891
|
*/
|
|
2863
2892
|
'address'?: string;
|
|
2864
2893
|
}
|
|
2894
|
+
/**
|
|
2895
|
+
*
|
|
2896
|
+
* @export
|
|
2897
|
+
* @interface ICompanyCustomerPatchRequest
|
|
2898
|
+
*/
|
|
2899
|
+
export interface ICompanyCustomerPatchRequest {
|
|
2900
|
+
/**
|
|
2901
|
+
*
|
|
2902
|
+
* @type {UserStatusEnum}
|
|
2903
|
+
* @memberof ICompanyCustomerPatchRequest
|
|
2904
|
+
*/
|
|
2905
|
+
'status': UserStatusEnum;
|
|
2906
|
+
}
|
|
2865
2907
|
/**
|
|
2866
2908
|
*
|
|
2867
2909
|
* @export
|
|
@@ -8669,6 +8711,12 @@ export interface IThemePostRequest {
|
|
|
8669
8711
|
* @memberof IThemePostRequest
|
|
8670
8712
|
*/
|
|
8671
8713
|
'thumbnail'?: IImage;
|
|
8714
|
+
/**
|
|
8715
|
+
*
|
|
8716
|
+
* @type {CompanyTypeEnum}
|
|
8717
|
+
* @memberof IThemePostRequest
|
|
8718
|
+
*/
|
|
8719
|
+
'type': CompanyTypeEnum;
|
|
8672
8720
|
/**
|
|
8673
8721
|
* Construct a type with a set of properties K of type T
|
|
8674
8722
|
* @type {{ [key: string]: any; }}
|
|
@@ -8766,6 +8814,12 @@ export interface IThemeResponse {
|
|
|
8766
8814
|
* @memberof IThemeResponse
|
|
8767
8815
|
*/
|
|
8768
8816
|
'main'?: string;
|
|
8817
|
+
/**
|
|
8818
|
+
*
|
|
8819
|
+
* @type {CompanyTypeEnum}
|
|
8820
|
+
* @memberof IThemeResponse
|
|
8821
|
+
*/
|
|
8822
|
+
'type': CompanyTypeEnum;
|
|
8769
8823
|
/**
|
|
8770
8824
|
* Construct a type with a set of properties K of type T
|
|
8771
8825
|
* @type {{ [key: string]: any; }}
|
|
@@ -11949,6 +12003,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
11949
12003
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
11950
12004
|
*/
|
|
11951
12005
|
'main'?: string;
|
|
12006
|
+
/**
|
|
12007
|
+
*
|
|
12008
|
+
* @type {CompanyTypeEnum}
|
|
12009
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12010
|
+
*/
|
|
12011
|
+
'type': CompanyTypeEnum;
|
|
11952
12012
|
/**
|
|
11953
12013
|
* Construct a type with a set of properties K of type T
|
|
11954
12014
|
* @type {{ [key: string]: any; }}
|
|
@@ -11988,6 +12048,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseO
|
|
|
11988
12048
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
11989
12049
|
*/
|
|
11990
12050
|
'thumbnail'?: IImage;
|
|
12051
|
+
/**
|
|
12052
|
+
*
|
|
12053
|
+
* @type {CompanyTypeEnum}
|
|
12054
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
|
|
12055
|
+
*/
|
|
12056
|
+
'type': CompanyTypeEnum;
|
|
11991
12057
|
/**
|
|
11992
12058
|
* Construct a type with a set of properties K of type T
|
|
11993
12059
|
* @type {{ [key: string]: any; }}
|
|
@@ -15118,6 +15184,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15118
15184
|
* @throws {RequiredError}
|
|
15119
15185
|
*/
|
|
15120
15186
|
createCompany: (iCompanyPostRequest: ICompanyPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15187
|
+
/**
|
|
15188
|
+
*
|
|
15189
|
+
* @param {string} companyId
|
|
15190
|
+
* @param {ICompanyCreateLanguageRequest} iCompanyCreateLanguageRequest
|
|
15191
|
+
* @param {*} [options] Override http request option.
|
|
15192
|
+
* @throws {RequiredError}
|
|
15193
|
+
*/
|
|
15194
|
+
createCompanyLanguage: (companyId: string, iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15121
15195
|
/**
|
|
15122
15196
|
*
|
|
15123
15197
|
* @param {string} id
|
|
@@ -15353,6 +15427,14 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15353
15427
|
* @throws {RequiredError}
|
|
15354
15428
|
*/
|
|
15355
15429
|
setCompanySenderEmail: (id: string, setCompanySenderEmailRequest: SetCompanySenderEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15430
|
+
/**
|
|
15431
|
+
*
|
|
15432
|
+
* @param {string} id
|
|
15433
|
+
* @param {LanguageEnum} language
|
|
15434
|
+
* @param {*} [options] Override http request option.
|
|
15435
|
+
* @throws {RequiredError}
|
|
15436
|
+
*/
|
|
15437
|
+
setDefaultCompanyLanguage: (id: string, language: LanguageEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15356
15438
|
/**
|
|
15357
15439
|
*
|
|
15358
15440
|
* @param {string} id
|
|
@@ -15369,6 +15451,15 @@ export declare const CompanyApiAxiosParamCreator: (configuration?: Configuration
|
|
|
15369
15451
|
* @throws {RequiredError}
|
|
15370
15452
|
*/
|
|
15371
15453
|
updateCompanyConfig: (id: string, iCompanyUpdateConfigRequest: ICompanyUpdateConfigRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15454
|
+
/**
|
|
15455
|
+
*
|
|
15456
|
+
* @param {string} id
|
|
15457
|
+
* @param {string} customerId
|
|
15458
|
+
* @param {ICompanyCustomerPatchRequest} iCompanyCustomerPatchRequest
|
|
15459
|
+
* @param {*} [options] Override http request option.
|
|
15460
|
+
* @throws {RequiredError}
|
|
15461
|
+
*/
|
|
15462
|
+
updateCompanyCustomer: (id: string, customerId: string, iCompanyCustomerPatchRequest: ICompanyCustomerPatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15372
15463
|
/**
|
|
15373
15464
|
*
|
|
15374
15465
|
* @param {string} id
|
|
@@ -15465,6 +15556,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15465
15556
|
* @throws {RequiredError}
|
|
15466
15557
|
*/
|
|
15467
15558
|
createCompany(iCompanyPostRequest: ICompanyPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
15559
|
+
/**
|
|
15560
|
+
*
|
|
15561
|
+
* @param {string} companyId
|
|
15562
|
+
* @param {ICompanyCreateLanguageRequest} iCompanyCreateLanguageRequest
|
|
15563
|
+
* @param {*} [options] Override http request option.
|
|
15564
|
+
* @throws {RequiredError}
|
|
15565
|
+
*/
|
|
15566
|
+
createCompanyLanguage(companyId: string, iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15468
15567
|
/**
|
|
15469
15568
|
*
|
|
15470
15569
|
* @param {string} id
|
|
@@ -15700,6 +15799,14 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15700
15799
|
* @throws {RequiredError}
|
|
15701
15800
|
*/
|
|
15702
15801
|
setCompanySenderEmail(id: string, setCompanySenderEmailRequest: SetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompany>>;
|
|
15802
|
+
/**
|
|
15803
|
+
*
|
|
15804
|
+
* @param {string} id
|
|
15805
|
+
* @param {LanguageEnum} language
|
|
15806
|
+
* @param {*} [options] Override http request option.
|
|
15807
|
+
* @throws {RequiredError}
|
|
15808
|
+
*/
|
|
15809
|
+
setDefaultCompanyLanguage(id: string, language: LanguageEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15703
15810
|
/**
|
|
15704
15811
|
*
|
|
15705
15812
|
* @param {string} id
|
|
@@ -15716,6 +15823,15 @@ export declare const CompanyApiFp: (configuration?: Configuration) => {
|
|
|
15716
15823
|
* @throws {RequiredError}
|
|
15717
15824
|
*/
|
|
15718
15825
|
updateCompanyConfig(id: string, iCompanyUpdateConfigRequest: ICompanyUpdateConfigRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ICompanyResponse>>;
|
|
15826
|
+
/**
|
|
15827
|
+
*
|
|
15828
|
+
* @param {string} id
|
|
15829
|
+
* @param {string} customerId
|
|
15830
|
+
* @param {ICompanyCustomerPatchRequest} iCompanyCustomerPatchRequest
|
|
15831
|
+
* @param {*} [options] Override http request option.
|
|
15832
|
+
* @throws {RequiredError}
|
|
15833
|
+
*/
|
|
15834
|
+
updateCompanyCustomer(id: string, customerId: string, iCompanyCustomerPatchRequest: ICompanyCustomerPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15719
15835
|
/**
|
|
15720
15836
|
*
|
|
15721
15837
|
* @param {string} id
|
|
@@ -15810,6 +15926,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
15810
15926
|
* @throws {RequiredError}
|
|
15811
15927
|
*/
|
|
15812
15928
|
createCompany(requestParameters: CompanyApiCreateCompanyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
|
|
15929
|
+
/**
|
|
15930
|
+
*
|
|
15931
|
+
* @param {CompanyApiCreateCompanyLanguageRequest} requestParameters Request parameters.
|
|
15932
|
+
* @param {*} [options] Override http request option.
|
|
15933
|
+
* @throws {RequiredError}
|
|
15934
|
+
*/
|
|
15935
|
+
createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15813
15936
|
/**
|
|
15814
15937
|
*
|
|
15815
15938
|
* @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
|
|
@@ -16006,6 +16129,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
16006
16129
|
* @throws {RequiredError}
|
|
16007
16130
|
*/
|
|
16008
16131
|
setCompanySenderEmail(requestParameters: CompanyApiSetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompany>;
|
|
16132
|
+
/**
|
|
16133
|
+
*
|
|
16134
|
+
* @param {CompanyApiSetDefaultCompanyLanguageRequest} requestParameters Request parameters.
|
|
16135
|
+
* @param {*} [options] Override http request option.
|
|
16136
|
+
* @throws {RequiredError}
|
|
16137
|
+
*/
|
|
16138
|
+
setDefaultCompanyLanguage(requestParameters: CompanyApiSetDefaultCompanyLanguageRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16009
16139
|
/**
|
|
16010
16140
|
*
|
|
16011
16141
|
* @param {CompanyApiUpdateCompanyRequest} requestParameters Request parameters.
|
|
@@ -16020,6 +16150,13 @@ export declare const CompanyApiFactory: (configuration?: Configuration, basePath
|
|
|
16020
16150
|
* @throws {RequiredError}
|
|
16021
16151
|
*/
|
|
16022
16152
|
updateCompanyConfig(requestParameters: CompanyApiUpdateCompanyConfigRequest, options?: RawAxiosRequestConfig): AxiosPromise<ICompanyResponse>;
|
|
16153
|
+
/**
|
|
16154
|
+
*
|
|
16155
|
+
* @param {CompanyApiUpdateCompanyCustomerRequest} requestParameters Request parameters.
|
|
16156
|
+
* @param {*} [options] Override http request option.
|
|
16157
|
+
* @throws {RequiredError}
|
|
16158
|
+
*/
|
|
16159
|
+
updateCompanyCustomer(requestParameters: CompanyApiUpdateCompanyCustomerRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16023
16160
|
/**
|
|
16024
16161
|
*
|
|
16025
16162
|
* @param {CompanyApiUpdateCompanyFirebaseConfigRequest} requestParameters Request parameters.
|
|
@@ -16134,6 +16271,25 @@ export interface CompanyApiCreateCompanyRequest {
|
|
|
16134
16271
|
*/
|
|
16135
16272
|
readonly iCompanyPostRequest: ICompanyPostRequest;
|
|
16136
16273
|
}
|
|
16274
|
+
/**
|
|
16275
|
+
* Request parameters for createCompanyLanguage operation in CompanyApi.
|
|
16276
|
+
* @export
|
|
16277
|
+
* @interface CompanyApiCreateCompanyLanguageRequest
|
|
16278
|
+
*/
|
|
16279
|
+
export interface CompanyApiCreateCompanyLanguageRequest {
|
|
16280
|
+
/**
|
|
16281
|
+
*
|
|
16282
|
+
* @type {string}
|
|
16283
|
+
* @memberof CompanyApiCreateCompanyLanguage
|
|
16284
|
+
*/
|
|
16285
|
+
readonly companyId: string;
|
|
16286
|
+
/**
|
|
16287
|
+
*
|
|
16288
|
+
* @type {ICompanyCreateLanguageRequest}
|
|
16289
|
+
* @memberof CompanyApiCreateCompanyLanguage
|
|
16290
|
+
*/
|
|
16291
|
+
readonly iCompanyCreateLanguageRequest: ICompanyCreateLanguageRequest;
|
|
16292
|
+
}
|
|
16137
16293
|
/**
|
|
16138
16294
|
* Request parameters for createCompanyPayment operation in CompanyApi.
|
|
16139
16295
|
* @export
|
|
@@ -16732,6 +16888,25 @@ export interface CompanyApiSetCompanySenderEmailRequest {
|
|
|
16732
16888
|
*/
|
|
16733
16889
|
readonly setCompanySenderEmailRequest: SetCompanySenderEmailRequest;
|
|
16734
16890
|
}
|
|
16891
|
+
/**
|
|
16892
|
+
* Request parameters for setDefaultCompanyLanguage operation in CompanyApi.
|
|
16893
|
+
* @export
|
|
16894
|
+
* @interface CompanyApiSetDefaultCompanyLanguageRequest
|
|
16895
|
+
*/
|
|
16896
|
+
export interface CompanyApiSetDefaultCompanyLanguageRequest {
|
|
16897
|
+
/**
|
|
16898
|
+
*
|
|
16899
|
+
* @type {string}
|
|
16900
|
+
* @memberof CompanyApiSetDefaultCompanyLanguage
|
|
16901
|
+
*/
|
|
16902
|
+
readonly id: string;
|
|
16903
|
+
/**
|
|
16904
|
+
*
|
|
16905
|
+
* @type {LanguageEnum}
|
|
16906
|
+
* @memberof CompanyApiSetDefaultCompanyLanguage
|
|
16907
|
+
*/
|
|
16908
|
+
readonly language: LanguageEnum;
|
|
16909
|
+
}
|
|
16735
16910
|
/**
|
|
16736
16911
|
* Request parameters for updateCompany operation in CompanyApi.
|
|
16737
16912
|
* @export
|
|
@@ -16770,6 +16945,31 @@ export interface CompanyApiUpdateCompanyConfigRequest {
|
|
|
16770
16945
|
*/
|
|
16771
16946
|
readonly iCompanyUpdateConfigRequest: ICompanyUpdateConfigRequest;
|
|
16772
16947
|
}
|
|
16948
|
+
/**
|
|
16949
|
+
* Request parameters for updateCompanyCustomer operation in CompanyApi.
|
|
16950
|
+
* @export
|
|
16951
|
+
* @interface CompanyApiUpdateCompanyCustomerRequest
|
|
16952
|
+
*/
|
|
16953
|
+
export interface CompanyApiUpdateCompanyCustomerRequest {
|
|
16954
|
+
/**
|
|
16955
|
+
*
|
|
16956
|
+
* @type {string}
|
|
16957
|
+
* @memberof CompanyApiUpdateCompanyCustomer
|
|
16958
|
+
*/
|
|
16959
|
+
readonly id: string;
|
|
16960
|
+
/**
|
|
16961
|
+
*
|
|
16962
|
+
* @type {string}
|
|
16963
|
+
* @memberof CompanyApiUpdateCompanyCustomer
|
|
16964
|
+
*/
|
|
16965
|
+
readonly customerId: string;
|
|
16966
|
+
/**
|
|
16967
|
+
*
|
|
16968
|
+
* @type {ICompanyCustomerPatchRequest}
|
|
16969
|
+
* @memberof CompanyApiUpdateCompanyCustomer
|
|
16970
|
+
*/
|
|
16971
|
+
readonly iCompanyCustomerPatchRequest: ICompanyCustomerPatchRequest;
|
|
16972
|
+
}
|
|
16773
16973
|
/**
|
|
16774
16974
|
* Request parameters for updateCompanyFirebaseConfig operation in CompanyApi.
|
|
16775
16975
|
* @export
|
|
@@ -16966,6 +17166,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
16966
17166
|
* @memberof CompanyApi
|
|
16967
17167
|
*/
|
|
16968
17168
|
createCompany(requestParameters: CompanyApiCreateCompanyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
17169
|
+
/**
|
|
17170
|
+
*
|
|
17171
|
+
* @param {CompanyApiCreateCompanyLanguageRequest} requestParameters Request parameters.
|
|
17172
|
+
* @param {*} [options] Override http request option.
|
|
17173
|
+
* @throws {RequiredError}
|
|
17174
|
+
* @memberof CompanyApi
|
|
17175
|
+
*/
|
|
17176
|
+
createCompanyLanguage(requestParameters: CompanyApiCreateCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
16969
17177
|
/**
|
|
16970
17178
|
*
|
|
16971
17179
|
* @param {CompanyApiCreateCompanyPaymentRequest} requestParameters Request parameters.
|
|
@@ -17190,6 +17398,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
17190
17398
|
* @memberof CompanyApi
|
|
17191
17399
|
*/
|
|
17192
17400
|
setCompanySenderEmail(requestParameters: CompanyApiSetCompanySenderEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompany, any>>;
|
|
17401
|
+
/**
|
|
17402
|
+
*
|
|
17403
|
+
* @param {CompanyApiSetDefaultCompanyLanguageRequest} requestParameters Request parameters.
|
|
17404
|
+
* @param {*} [options] Override http request option.
|
|
17405
|
+
* @throws {RequiredError}
|
|
17406
|
+
* @memberof CompanyApi
|
|
17407
|
+
*/
|
|
17408
|
+
setDefaultCompanyLanguage(requestParameters: CompanyApiSetDefaultCompanyLanguageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17193
17409
|
/**
|
|
17194
17410
|
*
|
|
17195
17411
|
* @param {CompanyApiUpdateCompanyRequest} requestParameters Request parameters.
|
|
@@ -17206,6 +17422,14 @@ export declare class CompanyApi extends BaseAPI {
|
|
|
17206
17422
|
* @memberof CompanyApi
|
|
17207
17423
|
*/
|
|
17208
17424
|
updateCompanyConfig(requestParameters: CompanyApiUpdateCompanyConfigRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ICompanyResponse, any>>;
|
|
17425
|
+
/**
|
|
17426
|
+
*
|
|
17427
|
+
* @param {CompanyApiUpdateCompanyCustomerRequest} requestParameters Request parameters.
|
|
17428
|
+
* @param {*} [options] Override http request option.
|
|
17429
|
+
* @throws {RequiredError}
|
|
17430
|
+
* @memberof CompanyApi
|
|
17431
|
+
*/
|
|
17432
|
+
updateCompanyCustomer(requestParameters: CompanyApiUpdateCompanyCustomerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
17209
17433
|
/**
|
|
17210
17434
|
*
|
|
17211
17435
|
* @param {CompanyApiUpdateCompanyFirebaseConfigRequest} requestParameters Request parameters.
|
|
@@ -21880,10 +22104,11 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21880
22104
|
getThemeById: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21881
22105
|
/**
|
|
21882
22106
|
*
|
|
22107
|
+
* @param {CompanyTypeEnum} [type]
|
|
21883
22108
|
* @param {*} [options] Override http request option.
|
|
21884
22109
|
* @throws {RequiredError}
|
|
21885
22110
|
*/
|
|
21886
|
-
getThemes: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22111
|
+
getThemes: (type?: CompanyTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21887
22112
|
/**
|
|
21888
22113
|
*
|
|
21889
22114
|
* @param {string} id
|
|
@@ -21943,10 +22168,11 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
21943
22168
|
getThemeById(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemeResponse>>;
|
|
21944
22169
|
/**
|
|
21945
22170
|
*
|
|
22171
|
+
* @param {CompanyTypeEnum} [type]
|
|
21946
22172
|
* @param {*} [options] Override http request option.
|
|
21947
22173
|
* @throws {RequiredError}
|
|
21948
22174
|
*/
|
|
21949
|
-
getThemes(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemesResponse>>;
|
|
22175
|
+
getThemes(type?: CompanyTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IThemesResponse>>;
|
|
21950
22176
|
/**
|
|
21951
22177
|
*
|
|
21952
22178
|
* @param {string} id
|
|
@@ -22006,10 +22232,11 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22006
22232
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemeResponse>;
|
|
22007
22233
|
/**
|
|
22008
22234
|
*
|
|
22235
|
+
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
22009
22236
|
* @param {*} [options] Override http request option.
|
|
22010
22237
|
* @throws {RequiredError}
|
|
22011
22238
|
*/
|
|
22012
|
-
getThemes(options?: RawAxiosRequestConfig): AxiosPromise<IThemesResponse>;
|
|
22239
|
+
getThemes(requestParameters?: ThemeApiGetThemesRequest, options?: RawAxiosRequestConfig): AxiosPromise<IThemesResponse>;
|
|
22013
22240
|
/**
|
|
22014
22241
|
*
|
|
22015
22242
|
* @param {ThemeApiUpdateThemeRequest} requestParameters Request parameters.
|
|
@@ -22090,6 +22317,19 @@ export interface ThemeApiGetThemeByIdRequest {
|
|
|
22090
22317
|
*/
|
|
22091
22318
|
readonly id: string;
|
|
22092
22319
|
}
|
|
22320
|
+
/**
|
|
22321
|
+
* Request parameters for getThemes operation in ThemeApi.
|
|
22322
|
+
* @export
|
|
22323
|
+
* @interface ThemeApiGetThemesRequest
|
|
22324
|
+
*/
|
|
22325
|
+
export interface ThemeApiGetThemesRequest {
|
|
22326
|
+
/**
|
|
22327
|
+
*
|
|
22328
|
+
* @type {CompanyTypeEnum}
|
|
22329
|
+
* @memberof ThemeApiGetThemes
|
|
22330
|
+
*/
|
|
22331
|
+
readonly type?: CompanyTypeEnum;
|
|
22332
|
+
}
|
|
22093
22333
|
/**
|
|
22094
22334
|
* Request parameters for updateTheme operation in ThemeApi.
|
|
22095
22335
|
* @export
|
|
@@ -22177,11 +22417,12 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
22177
22417
|
getThemeById(requestParameters: ThemeApiGetThemeByIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemeResponse, any>>;
|
|
22178
22418
|
/**
|
|
22179
22419
|
*
|
|
22420
|
+
* @param {ThemeApiGetThemesRequest} requestParameters Request parameters.
|
|
22180
22421
|
* @param {*} [options] Override http request option.
|
|
22181
22422
|
* @throws {RequiredError}
|
|
22182
22423
|
* @memberof ThemeApi
|
|
22183
22424
|
*/
|
|
22184
|
-
getThemes(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemesResponse, any>>;
|
|
22425
|
+
getThemes(requestParameters?: ThemeApiGetThemesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IThemesResponse, any>>;
|
|
22185
22426
|
/**
|
|
22186
22427
|
*
|
|
22187
22428
|
* @param {ThemeApiUpdateThemeRequest} requestParameters Request parameters.
|
|
@@ -22541,11 +22782,12 @@ export declare const UrlRedirectApiAxiosParamCreator: (configuration?: Configura
|
|
|
22541
22782
|
/**
|
|
22542
22783
|
*
|
|
22543
22784
|
* @param {string} from
|
|
22544
|
-
* @param {string} companyId
|
|
22785
|
+
* @param {string} [companyId]
|
|
22786
|
+
* @param {string} [domain]
|
|
22545
22787
|
* @param {*} [options] Override http request option.
|
|
22546
22788
|
* @throws {RequiredError}
|
|
22547
22789
|
*/
|
|
22548
|
-
getUrlRedirectBySource: (from: string, companyId
|
|
22790
|
+
getUrlRedirectBySource: (from: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22549
22791
|
/**
|
|
22550
22792
|
*
|
|
22551
22793
|
* @param {string} companyId
|
|
@@ -22607,11 +22849,12 @@ export declare const UrlRedirectApiFp: (configuration?: Configuration) => {
|
|
|
22607
22849
|
/**
|
|
22608
22850
|
*
|
|
22609
22851
|
* @param {string} from
|
|
22610
|
-
* @param {string} companyId
|
|
22852
|
+
* @param {string} [companyId]
|
|
22853
|
+
* @param {string} [domain]
|
|
22611
22854
|
* @param {*} [options] Override http request option.
|
|
22612
22855
|
* @throws {RequiredError}
|
|
22613
22856
|
*/
|
|
22614
|
-
getUrlRedirectBySource(from: string, companyId
|
|
22857
|
+
getUrlRedirectBySource(from: string, companyId?: string, domain?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IUrlRedirectResponse>>;
|
|
22615
22858
|
/**
|
|
22616
22859
|
*
|
|
22617
22860
|
* @param {string} companyId
|
|
@@ -22761,7 +23004,13 @@ export interface UrlRedirectApiGetUrlRedirectBySourceRequest {
|
|
|
22761
23004
|
* @type {string}
|
|
22762
23005
|
* @memberof UrlRedirectApiGetUrlRedirectBySource
|
|
22763
23006
|
*/
|
|
22764
|
-
readonly companyId
|
|
23007
|
+
readonly companyId?: string;
|
|
23008
|
+
/**
|
|
23009
|
+
*
|
|
23010
|
+
* @type {string}
|
|
23011
|
+
* @memberof UrlRedirectApiGetUrlRedirectBySource
|
|
23012
|
+
*/
|
|
23013
|
+
readonly domain?: string;
|
|
22765
23014
|
}
|
|
22766
23015
|
/**
|
|
22767
23016
|
* Request parameters for getUrlRedirects operation in UrlRedirectApi.
|