@infisale-client/api 1.3.52 → 1.3.53
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 +114 -0
- package/dist/api/api.js +59 -0
- package/dist/api/api.mjs +59 -0
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -8705,6 +8705,12 @@ export interface ITemplatePatchRequest {
|
|
|
8705
8705
|
* @memberof ITemplatePatchRequest
|
|
8706
8706
|
*/
|
|
8707
8707
|
'unique'?: boolean;
|
|
8708
|
+
/**
|
|
8709
|
+
*
|
|
8710
|
+
* @type {boolean}
|
|
8711
|
+
* @memberof ITemplatePatchRequest
|
|
8712
|
+
*/
|
|
8713
|
+
'default'?: boolean;
|
|
8708
8714
|
}
|
|
8709
8715
|
/**
|
|
8710
8716
|
*
|
|
@@ -8748,6 +8754,12 @@ export interface ITemplatePostRequest {
|
|
|
8748
8754
|
* @memberof ITemplatePostRequest
|
|
8749
8755
|
*/
|
|
8750
8756
|
'unique': boolean;
|
|
8757
|
+
/**
|
|
8758
|
+
*
|
|
8759
|
+
* @type {boolean}
|
|
8760
|
+
* @memberof ITemplatePostRequest
|
|
8761
|
+
*/
|
|
8762
|
+
'default'?: boolean;
|
|
8751
8763
|
}
|
|
8752
8764
|
/**
|
|
8753
8765
|
*
|
|
@@ -8809,6 +8821,12 @@ export interface ITemplateResponse {
|
|
|
8809
8821
|
* @memberof ITemplateResponse
|
|
8810
8822
|
*/
|
|
8811
8823
|
'unique': boolean;
|
|
8824
|
+
/**
|
|
8825
|
+
*
|
|
8826
|
+
* @type {boolean}
|
|
8827
|
+
* @memberof ITemplateResponse
|
|
8828
|
+
*/
|
|
8829
|
+
'default'?: boolean;
|
|
8812
8830
|
/**
|
|
8813
8831
|
*
|
|
8814
8832
|
* @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
|
|
@@ -8929,6 +8947,12 @@ export interface ITheme {
|
|
|
8929
8947
|
* @memberof ITheme
|
|
8930
8948
|
*/
|
|
8931
8949
|
'lastVersion': string;
|
|
8950
|
+
/**
|
|
8951
|
+
*
|
|
8952
|
+
* @type {boolean}
|
|
8953
|
+
* @memberof ITheme
|
|
8954
|
+
*/
|
|
8955
|
+
'deleted': boolean;
|
|
8932
8956
|
}
|
|
8933
8957
|
/**
|
|
8934
8958
|
*
|
|
@@ -9125,6 +9149,12 @@ export interface IThemeResponse {
|
|
|
9125
9149
|
* @memberof IThemeResponse
|
|
9126
9150
|
*/
|
|
9127
9151
|
'lastVersion': string;
|
|
9152
|
+
/**
|
|
9153
|
+
*
|
|
9154
|
+
* @type {boolean}
|
|
9155
|
+
* @memberof IThemeResponse
|
|
9156
|
+
*/
|
|
9157
|
+
'deleted': boolean;
|
|
9128
9158
|
/**
|
|
9129
9159
|
* Make all properties in T optional
|
|
9130
9160
|
* @type {{ [key: string]: PartialRecordStringTitleStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
|
|
@@ -9332,6 +9362,12 @@ export interface IThemesResponseData {
|
|
|
9332
9362
|
* @memberof IThemesResponseData
|
|
9333
9363
|
*/
|
|
9334
9364
|
'creator'?: string;
|
|
9365
|
+
/**
|
|
9366
|
+
*
|
|
9367
|
+
* @type {boolean}
|
|
9368
|
+
* @memberof IThemesResponseData
|
|
9369
|
+
*/
|
|
9370
|
+
'deleted': boolean;
|
|
9335
9371
|
/**
|
|
9336
9372
|
* Construct a type with a set of properties K of type T
|
|
9337
9373
|
* @type {{ [key: string]: any; }}
|
|
@@ -9473,6 +9509,12 @@ export interface IThemesResponseDataMain {
|
|
|
9473
9509
|
* @memberof IThemesResponseDataMain
|
|
9474
9510
|
*/
|
|
9475
9511
|
'creator'?: string;
|
|
9512
|
+
/**
|
|
9513
|
+
*
|
|
9514
|
+
* @type {boolean}
|
|
9515
|
+
* @memberof IThemesResponseDataMain
|
|
9516
|
+
*/
|
|
9517
|
+
'deleted': boolean;
|
|
9476
9518
|
/**
|
|
9477
9519
|
*
|
|
9478
9520
|
* @type {IThemeVersion}
|
|
@@ -12608,6 +12650,12 @@ export interface PickITemplateExcludeKeyofITemplateComponents {
|
|
|
12608
12650
|
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12609
12651
|
*/
|
|
12610
12652
|
'unique': boolean;
|
|
12653
|
+
/**
|
|
12654
|
+
*
|
|
12655
|
+
* @type {boolean}
|
|
12656
|
+
* @memberof PickITemplateExcludeKeyofITemplateComponents
|
|
12657
|
+
*/
|
|
12658
|
+
'default'?: boolean;
|
|
12611
12659
|
}
|
|
12612
12660
|
/**
|
|
12613
12661
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12651,6 +12699,12 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
|
|
|
12651
12699
|
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12652
12700
|
*/
|
|
12653
12701
|
'unique': boolean;
|
|
12702
|
+
/**
|
|
12703
|
+
*
|
|
12704
|
+
* @type {boolean}
|
|
12705
|
+
* @memberof PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoResponse
|
|
12706
|
+
*/
|
|
12707
|
+
'default'?: boolean;
|
|
12654
12708
|
}
|
|
12655
12709
|
/**
|
|
12656
12710
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12744,6 +12798,12 @@ export interface PickIThemeExcludeKeyofIThemeGroups {
|
|
|
12744
12798
|
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12745
12799
|
*/
|
|
12746
12800
|
'lastVersion': string;
|
|
12801
|
+
/**
|
|
12802
|
+
*
|
|
12803
|
+
* @type {boolean}
|
|
12804
|
+
* @memberof PickIThemeExcludeKeyofIThemeGroups
|
|
12805
|
+
*/
|
|
12806
|
+
'deleted': boolean;
|
|
12747
12807
|
}
|
|
12748
12808
|
/**
|
|
12749
12809
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12839,6 +12899,12 @@ export interface PickIThemeExcludeKeyofIThemeLastVersion {
|
|
|
12839
12899
|
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12840
12900
|
*/
|
|
12841
12901
|
'creator'?: string;
|
|
12902
|
+
/**
|
|
12903
|
+
*
|
|
12904
|
+
* @type {boolean}
|
|
12905
|
+
* @memberof PickIThemeExcludeKeyofIThemeLastVersion
|
|
12906
|
+
*/
|
|
12907
|
+
'deleted': boolean;
|
|
12842
12908
|
}
|
|
12843
12909
|
/**
|
|
12844
12910
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -12928,6 +12994,12 @@ export interface PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain {
|
|
|
12928
12994
|
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
12929
12995
|
*/
|
|
12930
12996
|
'creator'?: string;
|
|
12997
|
+
/**
|
|
12998
|
+
*
|
|
12999
|
+
* @type {boolean}
|
|
13000
|
+
* @memberof PickIThemeResponseExcludeKeyofIThemeResponseLastVersionOrMain
|
|
13001
|
+
*/
|
|
13002
|
+
'deleted': boolean;
|
|
12931
13003
|
/**
|
|
12932
13004
|
* Construct a type with a set of properties K of type T
|
|
12933
13005
|
* @type {{ [key: string]: any; }}
|
|
@@ -22957,6 +23029,13 @@ export declare const ThemeApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22957
23029
|
* @throws {RequiredError}
|
|
22958
23030
|
*/
|
|
22959
23031
|
deleteTheme: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23032
|
+
/**
|
|
23033
|
+
*
|
|
23034
|
+
* @param {string} id
|
|
23035
|
+
* @param {*} [options] Override http request option.
|
|
23036
|
+
* @throws {RequiredError}
|
|
23037
|
+
*/
|
|
23038
|
+
downloadTemplates: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22960
23039
|
/**
|
|
22961
23040
|
*
|
|
22962
23041
|
* @param {string} companyId
|
|
@@ -23024,6 +23103,13 @@ export declare const ThemeApiFp: (configuration?: Configuration) => {
|
|
|
23024
23103
|
* @throws {RequiredError}
|
|
23025
23104
|
*/
|
|
23026
23105
|
deleteTheme(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
23106
|
+
/**
|
|
23107
|
+
*
|
|
23108
|
+
* @param {string} id
|
|
23109
|
+
* @param {*} [options] Override http request option.
|
|
23110
|
+
* @throws {RequiredError}
|
|
23111
|
+
*/
|
|
23112
|
+
downloadTemplates(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
23027
23113
|
/**
|
|
23028
23114
|
*
|
|
23029
23115
|
* @param {string} companyId
|
|
@@ -23091,6 +23177,13 @@ export declare const ThemeApiFactory: (configuration?: Configuration, basePath?:
|
|
|
23091
23177
|
* @throws {RequiredError}
|
|
23092
23178
|
*/
|
|
23093
23179
|
deleteTheme(requestParameters: ThemeApiDeleteThemeRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
23180
|
+
/**
|
|
23181
|
+
*
|
|
23182
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
23183
|
+
* @param {*} [options] Override http request option.
|
|
23184
|
+
* @throws {RequiredError}
|
|
23185
|
+
*/
|
|
23186
|
+
downloadTemplates(requestParameters: ThemeApiDownloadTemplatesRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
23094
23187
|
/**
|
|
23095
23188
|
*
|
|
23096
23189
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -23166,6 +23259,19 @@ export interface ThemeApiDeleteThemeRequest {
|
|
|
23166
23259
|
*/
|
|
23167
23260
|
readonly id: string;
|
|
23168
23261
|
}
|
|
23262
|
+
/**
|
|
23263
|
+
* Request parameters for downloadTemplates operation in ThemeApi.
|
|
23264
|
+
* @export
|
|
23265
|
+
* @interface ThemeApiDownloadTemplatesRequest
|
|
23266
|
+
*/
|
|
23267
|
+
export interface ThemeApiDownloadTemplatesRequest {
|
|
23268
|
+
/**
|
|
23269
|
+
*
|
|
23270
|
+
* @type {string}
|
|
23271
|
+
* @memberof ThemeApiDownloadTemplates
|
|
23272
|
+
*/
|
|
23273
|
+
readonly id: string;
|
|
23274
|
+
}
|
|
23169
23275
|
/**
|
|
23170
23276
|
* Request parameters for getCompanyThemes operation in ThemeApi.
|
|
23171
23277
|
* @export
|
|
@@ -23292,6 +23398,14 @@ export declare class ThemeApi extends BaseAPI {
|
|
|
23292
23398
|
* @memberof ThemeApi
|
|
23293
23399
|
*/
|
|
23294
23400
|
deleteTheme(requestParameters: ThemeApiDeleteThemeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
23401
|
+
/**
|
|
23402
|
+
*
|
|
23403
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
23404
|
+
* @param {*} [options] Override http request option.
|
|
23405
|
+
* @throws {RequiredError}
|
|
23406
|
+
* @memberof ThemeApi
|
|
23407
|
+
*/
|
|
23408
|
+
downloadTemplates(requestParameters: ThemeApiDownloadTemplatesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
23295
23409
|
/**
|
|
23296
23410
|
*
|
|
23297
23411
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
package/dist/api/api.js
CHANGED
|
@@ -12088,6 +12088,34 @@ const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
12088
12088
|
options: localVarRequestOptions,
|
|
12089
12089
|
};
|
|
12090
12090
|
},
|
|
12091
|
+
/**
|
|
12092
|
+
*
|
|
12093
|
+
* @param {string} id
|
|
12094
|
+
* @param {*} [options] Override http request option.
|
|
12095
|
+
* @throws {RequiredError}
|
|
12096
|
+
*/
|
|
12097
|
+
downloadTemplates: async (id, options = {}) => {
|
|
12098
|
+
// verify required parameter 'id' is not null or undefined
|
|
12099
|
+
(0, common_1.assertParamExists)('downloadTemplates', 'id', id);
|
|
12100
|
+
const localVarPath = `/api/themes/{id}/templates/download`
|
|
12101
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12102
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12103
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
12104
|
+
let baseOptions;
|
|
12105
|
+
if (configuration) {
|
|
12106
|
+
baseOptions = configuration.baseOptions;
|
|
12107
|
+
}
|
|
12108
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12109
|
+
const localVarHeaderParameter = {};
|
|
12110
|
+
const localVarQueryParameter = {};
|
|
12111
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
12112
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12113
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12114
|
+
return {
|
|
12115
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
12116
|
+
options: localVarRequestOptions,
|
|
12117
|
+
};
|
|
12118
|
+
},
|
|
12091
12119
|
/**
|
|
12092
12120
|
*
|
|
12093
12121
|
* @param {string} companyId
|
|
@@ -12306,6 +12334,18 @@ const ThemeApiFp = function (configuration) {
|
|
|
12306
12334
|
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.deleteTheme']?.[localVarOperationServerIndex]?.url;
|
|
12307
12335
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12308
12336
|
},
|
|
12337
|
+
/**
|
|
12338
|
+
*
|
|
12339
|
+
* @param {string} id
|
|
12340
|
+
* @param {*} [options] Override http request option.
|
|
12341
|
+
* @throws {RequiredError}
|
|
12342
|
+
*/
|
|
12343
|
+
async downloadTemplates(id, options) {
|
|
12344
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadTemplates(id, options);
|
|
12345
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12346
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ThemeApi.downloadTemplates']?.[localVarOperationServerIndex]?.url;
|
|
12347
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12348
|
+
},
|
|
12309
12349
|
/**
|
|
12310
12350
|
*
|
|
12311
12351
|
* @param {string} companyId
|
|
@@ -12408,6 +12448,15 @@ const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
12408
12448
|
deleteTheme(requestParameters, options) {
|
|
12409
12449
|
return localVarFp.deleteTheme(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12410
12450
|
},
|
|
12451
|
+
/**
|
|
12452
|
+
*
|
|
12453
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12454
|
+
* @param {*} [options] Override http request option.
|
|
12455
|
+
* @throws {RequiredError}
|
|
12456
|
+
*/
|
|
12457
|
+
downloadTemplates(requestParameters, options) {
|
|
12458
|
+
return localVarFp.downloadTemplates(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12459
|
+
},
|
|
12411
12460
|
/**
|
|
12412
12461
|
*
|
|
12413
12462
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -12493,6 +12542,16 @@ class ThemeApi extends base_1.BaseAPI {
|
|
|
12493
12542
|
deleteTheme(requestParameters, options) {
|
|
12494
12543
|
return (0, exports.ThemeApiFp)(this.configuration).deleteTheme(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12495
12544
|
}
|
|
12545
|
+
/**
|
|
12546
|
+
*
|
|
12547
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12548
|
+
* @param {*} [options] Override http request option.
|
|
12549
|
+
* @throws {RequiredError}
|
|
12550
|
+
* @memberof ThemeApi
|
|
12551
|
+
*/
|
|
12552
|
+
downloadTemplates(requestParameters, options) {
|
|
12553
|
+
return (0, exports.ThemeApiFp)(this.configuration).downloadTemplates(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12554
|
+
}
|
|
12496
12555
|
/**
|
|
12497
12556
|
*
|
|
12498
12557
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
package/dist/api/api.mjs
CHANGED
|
@@ -12004,6 +12004,34 @@ export const ThemeApiAxiosParamCreator = function (configuration) {
|
|
|
12004
12004
|
options: localVarRequestOptions,
|
|
12005
12005
|
};
|
|
12006
12006
|
},
|
|
12007
|
+
/**
|
|
12008
|
+
*
|
|
12009
|
+
* @param {string} id
|
|
12010
|
+
* @param {*} [options] Override http request option.
|
|
12011
|
+
* @throws {RequiredError}
|
|
12012
|
+
*/
|
|
12013
|
+
downloadTemplates: async (id, options = {}) => {
|
|
12014
|
+
// verify required parameter 'id' is not null or undefined
|
|
12015
|
+
assertParamExists('downloadTemplates', 'id', id);
|
|
12016
|
+
const localVarPath = `/api/themes/{id}/templates/download`
|
|
12017
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
12018
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
12019
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
12020
|
+
let baseOptions;
|
|
12021
|
+
if (configuration) {
|
|
12022
|
+
baseOptions = configuration.baseOptions;
|
|
12023
|
+
}
|
|
12024
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
|
|
12025
|
+
const localVarHeaderParameter = {};
|
|
12026
|
+
const localVarQueryParameter = {};
|
|
12027
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
12028
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
12029
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
12030
|
+
return {
|
|
12031
|
+
url: toPathString(localVarUrlObj),
|
|
12032
|
+
options: localVarRequestOptions,
|
|
12033
|
+
};
|
|
12034
|
+
},
|
|
12007
12035
|
/**
|
|
12008
12036
|
*
|
|
12009
12037
|
* @param {string} companyId
|
|
@@ -12221,6 +12249,18 @@ export const ThemeApiFp = function (configuration) {
|
|
|
12221
12249
|
const localVarOperationServerBasePath = operationServerMap['ThemeApi.deleteTheme']?.[localVarOperationServerIndex]?.url;
|
|
12222
12250
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12223
12251
|
},
|
|
12252
|
+
/**
|
|
12253
|
+
*
|
|
12254
|
+
* @param {string} id
|
|
12255
|
+
* @param {*} [options] Override http request option.
|
|
12256
|
+
* @throws {RequiredError}
|
|
12257
|
+
*/
|
|
12258
|
+
async downloadTemplates(id, options) {
|
|
12259
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.downloadTemplates(id, options);
|
|
12260
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
12261
|
+
const localVarOperationServerBasePath = operationServerMap['ThemeApi.downloadTemplates']?.[localVarOperationServerIndex]?.url;
|
|
12262
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12263
|
+
},
|
|
12224
12264
|
/**
|
|
12225
12265
|
*
|
|
12226
12266
|
* @param {string} companyId
|
|
@@ -12322,6 +12362,15 @@ export const ThemeApiFactory = function (configuration, basePath, axios) {
|
|
|
12322
12362
|
deleteTheme(requestParameters, options) {
|
|
12323
12363
|
return localVarFp.deleteTheme(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12324
12364
|
},
|
|
12365
|
+
/**
|
|
12366
|
+
*
|
|
12367
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12368
|
+
* @param {*} [options] Override http request option.
|
|
12369
|
+
* @throws {RequiredError}
|
|
12370
|
+
*/
|
|
12371
|
+
downloadTemplates(requestParameters, options) {
|
|
12372
|
+
return localVarFp.downloadTemplates(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
12373
|
+
},
|
|
12325
12374
|
/**
|
|
12326
12375
|
*
|
|
12327
12376
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
|
@@ -12406,6 +12455,16 @@ export class ThemeApi extends BaseAPI {
|
|
|
12406
12455
|
deleteTheme(requestParameters, options) {
|
|
12407
12456
|
return ThemeApiFp(this.configuration).deleteTheme(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12408
12457
|
}
|
|
12458
|
+
/**
|
|
12459
|
+
*
|
|
12460
|
+
* @param {ThemeApiDownloadTemplatesRequest} requestParameters Request parameters.
|
|
12461
|
+
* @param {*} [options] Override http request option.
|
|
12462
|
+
* @throws {RequiredError}
|
|
12463
|
+
* @memberof ThemeApi
|
|
12464
|
+
*/
|
|
12465
|
+
downloadTemplates(requestParameters, options) {
|
|
12466
|
+
return ThemeApiFp(this.configuration).downloadTemplates(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
12467
|
+
}
|
|
12409
12468
|
/**
|
|
12410
12469
|
*
|
|
12411
12470
|
* @param {ThemeApiGetCompanyThemesRequest} requestParameters Request parameters.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.53",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "46152c6dc3db1b90f33cdc5dd45906e2fc82bf0a"
|
|
41
41
|
}
|