ch-admin-api-client-typescript 5.37.0 → 5.37.4

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.
Files changed (62) hide show
  1. package/lib/api/countries-api.d.ts +324 -0
  2. package/lib/api/countries-api.d.ts.map +1 -1
  3. package/lib/api/countries-api.js +485 -0
  4. package/lib/api/currencies-api.d.ts +422 -0
  5. package/lib/api/currencies-api.d.ts.map +1 -0
  6. package/lib/api/currencies-api.js +764 -0
  7. package/lib/api.d.ts +1 -0
  8. package/lib/api.d.ts.map +1 -1
  9. package/lib/api.js +1 -0
  10. package/lib/models/country-currencies-model.d.ts +33 -0
  11. package/lib/models/country-currencies-model.d.ts.map +1 -0
  12. package/lib/models/country-currencies-model.js +15 -0
  13. package/lib/models/country-currency-item-model.d.ts +55 -0
  14. package/lib/models/country-currency-item-model.d.ts.map +1 -0
  15. package/lib/models/country-currency-item-model.js +15 -0
  16. package/lib/models/country-currency-model.d.ts +55 -0
  17. package/lib/models/country-currency-model.d.ts.map +1 -0
  18. package/lib/models/country-currency-model.js +15 -0
  19. package/lib/models/create-currency-command.d.ts +37 -0
  20. package/lib/models/create-currency-command.d.ts.map +1 -0
  21. package/lib/models/create-currency-command.js +15 -0
  22. package/lib/models/currencies-model.d.ts +33 -0
  23. package/lib/models/currencies-model.d.ts.map +1 -0
  24. package/lib/models/currencies-model.js +15 -0
  25. package/lib/models/currency-item-model.d.ts +43 -0
  26. package/lib/models/currency-item-model.d.ts.map +1 -0
  27. package/lib/models/currency-item-model.js +15 -0
  28. package/lib/models/currency-model.d.ts +50 -0
  29. package/lib/models/currency-model.d.ts.map +1 -0
  30. package/lib/models/currency-model.js +15 -0
  31. package/lib/models/index.d.ts +11 -0
  32. package/lib/models/index.d.ts.map +1 -1
  33. package/lib/models/index.js +11 -0
  34. package/lib/models/save-country-currency-command.d.ts +25 -0
  35. package/lib/models/save-country-currency-command.d.ts.map +1 -0
  36. package/lib/models/save-country-currency-command.js +15 -0
  37. package/lib/models/sort-country-currencies-command.d.ts +26 -0
  38. package/lib/models/sort-country-currencies-command.d.ts.map +1 -0
  39. package/lib/models/sort-country-currencies-command.js +15 -0
  40. package/lib/models/sort-currencies-command.d.ts +26 -0
  41. package/lib/models/sort-currencies-command.d.ts.map +1 -0
  42. package/lib/models/sort-currencies-command.js +15 -0
  43. package/lib/models/update-currency-command.d.ts +37 -0
  44. package/lib/models/update-currency-command.d.ts.map +1 -0
  45. package/lib/models/update-currency-command.js +15 -0
  46. package/package.json +1 -1
  47. package/src/.openapi-generator/FILES +12 -0
  48. package/src/api/countries-api.ts +570 -0
  49. package/src/api/currencies-api.ts +751 -0
  50. package/src/api.ts +1 -0
  51. package/src/models/country-currencies-model.ts +42 -0
  52. package/src/models/country-currency-item-model.ts +60 -0
  53. package/src/models/country-currency-model.ts +60 -0
  54. package/src/models/create-currency-command.ts +42 -0
  55. package/src/models/currencies-model.ts +42 -0
  56. package/src/models/currency-item-model.ts +48 -0
  57. package/src/models/currency-model.ts +57 -0
  58. package/src/models/index.ts +11 -0
  59. package/src/models/save-country-currency-command.ts +30 -0
  60. package/src/models/sort-country-currencies-command.ts +33 -0
  61. package/src/models/sort-currencies-command.ts +33 -0
  62. package/src/models/update-currency-command.ts +42 -0
@@ -0,0 +1,751 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Admin Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 1
8
+ * Contact: developer@icloudhospital.com
9
+ *
10
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
11
+ * https://openapi-generator.tech
12
+ * Do not edit the class manually.
13
+ */
14
+
15
+
16
+ import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
17
+ import { Configuration } from '../configuration';
18
+ // Some imports not used depending on template conditions
19
+ // @ts-ignore
20
+ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
21
+ // @ts-ignore
22
+ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
23
+ // @ts-ignore
24
+ import { CreateCurrencyCommand } from '../models';
25
+ // @ts-ignore
26
+ import { CurrenciesModel } from '../models';
27
+ // @ts-ignore
28
+ import { CurrencyModel } from '../models';
29
+ // @ts-ignore
30
+ import { ProblemDetails } from '../models';
31
+ // @ts-ignore
32
+ import { SortCurrenciesCommand } from '../models';
33
+ // @ts-ignore
34
+ import { UpdateCurrencyCommand } from '../models';
35
+ /**
36
+ * CurrenciesApi - axios parameter creator
37
+ * @export
38
+ */
39
+ export const CurrenciesApiAxiosParamCreator = function (configuration?: Configuration) {
40
+ return {
41
+ /**
42
+ *
43
+ * @summary Delete currency
44
+ * @param {string} currencyId
45
+ * @param {boolean} [isPermanent]
46
+ * @param {*} [options] Override http request option.
47
+ * @throws {RequiredError}
48
+ */
49
+ apiV1CurrenciesCurrencyIdDelete: async (currencyId: string, isPermanent?: boolean, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
50
+ // verify required parameter 'currencyId' is not null or undefined
51
+ assertParamExists('apiV1CurrenciesCurrencyIdDelete', 'currencyId', currencyId)
52
+ const localVarPath = `/api/v1/currencies/{currencyId}`
53
+ .replace(`{${"currencyId"}}`, encodeURIComponent(String(currencyId)));
54
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
55
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
56
+ let baseOptions;
57
+ if (configuration) {
58
+ baseOptions = configuration.baseOptions;
59
+ }
60
+
61
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
62
+ const localVarHeaderParameter = {} as any;
63
+ const localVarQueryParameter = {} as any;
64
+
65
+ // authentication oauth2 required
66
+ // oauth required
67
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
68
+
69
+ if (isPermanent !== undefined) {
70
+ localVarQueryParameter['isPermanent'] = isPermanent;
71
+ }
72
+
73
+
74
+
75
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
76
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
77
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
78
+
79
+ return {
80
+ url: toPathString(localVarUrlObj),
81
+ options: localVarRequestOptions,
82
+ };
83
+ },
84
+ /**
85
+ *
86
+ * @summary Get currency
87
+ * @param {string} currencyId
88
+ * @param {*} [options] Override http request option.
89
+ * @throws {RequiredError}
90
+ */
91
+ apiV1CurrenciesCurrencyIdGet: async (currencyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
92
+ // verify required parameter 'currencyId' is not null or undefined
93
+ assertParamExists('apiV1CurrenciesCurrencyIdGet', 'currencyId', currencyId)
94
+ const localVarPath = `/api/v1/currencies/{currencyId}`
95
+ .replace(`{${"currencyId"}}`, encodeURIComponent(String(currencyId)));
96
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
97
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
98
+ let baseOptions;
99
+ if (configuration) {
100
+ baseOptions = configuration.baseOptions;
101
+ }
102
+
103
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
104
+ const localVarHeaderParameter = {} as any;
105
+ const localVarQueryParameter = {} as any;
106
+
107
+ // authentication oauth2 required
108
+ // oauth required
109
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
110
+
111
+
112
+
113
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
114
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
115
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
116
+
117
+ return {
118
+ url: toPathString(localVarUrlObj),
119
+ options: localVarRequestOptions,
120
+ };
121
+ },
122
+ /**
123
+ *
124
+ * @summary Update currency
125
+ * @param {string} currencyId
126
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
127
+ * @param {*} [options] Override http request option.
128
+ * @throws {RequiredError}
129
+ */
130
+ apiV1CurrenciesCurrencyIdPut: async (currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
131
+ // verify required parameter 'currencyId' is not null or undefined
132
+ assertParamExists('apiV1CurrenciesCurrencyIdPut', 'currencyId', currencyId)
133
+ const localVarPath = `/api/v1/currencies/{currencyId}`
134
+ .replace(`{${"currencyId"}}`, encodeURIComponent(String(currencyId)));
135
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
136
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
137
+ let baseOptions;
138
+ if (configuration) {
139
+ baseOptions = configuration.baseOptions;
140
+ }
141
+
142
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
143
+ const localVarHeaderParameter = {} as any;
144
+ const localVarQueryParameter = {} as any;
145
+
146
+ // authentication oauth2 required
147
+ // oauth required
148
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
149
+
150
+
151
+
152
+ localVarHeaderParameter['Content-Type'] = 'application/json';
153
+
154
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
155
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
156
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
157
+ localVarRequestOptions.data = serializeDataIfNeeded(updateCurrencyCommand, localVarRequestOptions, configuration)
158
+
159
+ return {
160
+ url: toPathString(localVarUrlObj),
161
+ options: localVarRequestOptions,
162
+ };
163
+ },
164
+ /**
165
+ *
166
+ * @summary Reactivate currency
167
+ * @param {string} currencyId
168
+ * @param {*} [options] Override http request option.
169
+ * @throws {RequiredError}
170
+ */
171
+ apiV1CurrenciesCurrencyIdReactivatePut: async (currencyId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
172
+ // verify required parameter 'currencyId' is not null or undefined
173
+ assertParamExists('apiV1CurrenciesCurrencyIdReactivatePut', 'currencyId', currencyId)
174
+ const localVarPath = `/api/v1/currencies/{currencyId}/reactivate`
175
+ .replace(`{${"currencyId"}}`, encodeURIComponent(String(currencyId)));
176
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
177
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
178
+ let baseOptions;
179
+ if (configuration) {
180
+ baseOptions = configuration.baseOptions;
181
+ }
182
+
183
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
184
+ const localVarHeaderParameter = {} as any;
185
+ const localVarQueryParameter = {} as any;
186
+
187
+ // authentication oauth2 required
188
+ // oauth required
189
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
190
+
191
+
192
+
193
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
194
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
195
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
196
+
197
+ return {
198
+ url: toPathString(localVarUrlObj),
199
+ options: localVarRequestOptions,
200
+ };
201
+ },
202
+ /**
203
+ *
204
+ * @summary Get currencies
205
+ * @param {string} [id]
206
+ * @param {string} [currencyCode]
207
+ * @param {number} [page]
208
+ * @param {number} [limit]
209
+ * @param {Date} [lastRetrieved]
210
+ * @param {*} [options] Override http request option.
211
+ * @throws {RequiredError}
212
+ */
213
+ apiV1CurrenciesGet: async (id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
214
+ const localVarPath = `/api/v1/currencies`;
215
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
216
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
217
+ let baseOptions;
218
+ if (configuration) {
219
+ baseOptions = configuration.baseOptions;
220
+ }
221
+
222
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
223
+ const localVarHeaderParameter = {} as any;
224
+ const localVarQueryParameter = {} as any;
225
+
226
+ // authentication oauth2 required
227
+ // oauth required
228
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
229
+
230
+ if (id !== undefined) {
231
+ localVarQueryParameter['Id'] = id;
232
+ }
233
+
234
+ if (currencyCode !== undefined) {
235
+ localVarQueryParameter['CurrencyCode'] = currencyCode;
236
+ }
237
+
238
+ if (page !== undefined) {
239
+ localVarQueryParameter['page'] = page;
240
+ }
241
+
242
+ if (limit !== undefined) {
243
+ localVarQueryParameter['limit'] = limit;
244
+ }
245
+
246
+ if (lastRetrieved !== undefined) {
247
+ localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
248
+ (lastRetrieved as any).toISOString() :
249
+ lastRetrieved;
250
+ }
251
+
252
+
253
+
254
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
255
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
256
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
257
+
258
+ return {
259
+ url: toPathString(localVarUrlObj),
260
+ options: localVarRequestOptions,
261
+ };
262
+ },
263
+ /**
264
+ *
265
+ * @summary Create currency
266
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
267
+ * @param {*} [options] Override http request option.
268
+ * @throws {RequiredError}
269
+ */
270
+ apiV1CurrenciesPost: async (createCurrencyCommand?: CreateCurrencyCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
271
+ const localVarPath = `/api/v1/currencies`;
272
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
273
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
274
+ let baseOptions;
275
+ if (configuration) {
276
+ baseOptions = configuration.baseOptions;
277
+ }
278
+
279
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
280
+ const localVarHeaderParameter = {} as any;
281
+ const localVarQueryParameter = {} as any;
282
+
283
+ // authentication oauth2 required
284
+ // oauth required
285
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
286
+
287
+
288
+
289
+ localVarHeaderParameter['Content-Type'] = 'application/json';
290
+
291
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
292
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
293
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
294
+ localVarRequestOptions.data = serializeDataIfNeeded(createCurrencyCommand, localVarRequestOptions, configuration)
295
+
296
+ return {
297
+ url: toPathString(localVarUrlObj),
298
+ options: localVarRequestOptions,
299
+ };
300
+ },
301
+ /**
302
+ *
303
+ * @summary Sort currencies
304
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
305
+ * @param {*} [options] Override http request option.
306
+ * @throws {RequiredError}
307
+ */
308
+ apiV1CurrenciesSortPut: async (sortCurrenciesCommand?: SortCurrenciesCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
309
+ const localVarPath = `/api/v1/currencies/sort`;
310
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
311
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
312
+ let baseOptions;
313
+ if (configuration) {
314
+ baseOptions = configuration.baseOptions;
315
+ }
316
+
317
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
318
+ const localVarHeaderParameter = {} as any;
319
+ const localVarQueryParameter = {} as any;
320
+
321
+ // authentication oauth2 required
322
+ // oauth required
323
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["cloudhospital_admin_api"], configuration)
324
+
325
+
326
+
327
+ localVarHeaderParameter['Content-Type'] = 'application/json';
328
+
329
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
330
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
331
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
332
+ localVarRequestOptions.data = serializeDataIfNeeded(sortCurrenciesCommand, localVarRequestOptions, configuration)
333
+
334
+ return {
335
+ url: toPathString(localVarUrlObj),
336
+ options: localVarRequestOptions,
337
+ };
338
+ },
339
+ }
340
+ };
341
+
342
+ /**
343
+ * CurrenciesApi - functional programming interface
344
+ * @export
345
+ */
346
+ export const CurrenciesApiFp = function(configuration?: Configuration) {
347
+ const localVarAxiosParamCreator = CurrenciesApiAxiosParamCreator(configuration)
348
+ return {
349
+ /**
350
+ *
351
+ * @summary Delete currency
352
+ * @param {string} currencyId
353
+ * @param {boolean} [isPermanent]
354
+ * @param {*} [options] Override http request option.
355
+ * @throws {RequiredError}
356
+ */
357
+ async apiV1CurrenciesCurrencyIdDelete(currencyId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
358
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesCurrencyIdDelete(currencyId, isPermanent, options);
359
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
360
+ },
361
+ /**
362
+ *
363
+ * @summary Get currency
364
+ * @param {string} currencyId
365
+ * @param {*} [options] Override http request option.
366
+ * @throws {RequiredError}
367
+ */
368
+ async apiV1CurrenciesCurrencyIdGet(currencyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>> {
369
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesCurrencyIdGet(currencyId, options);
370
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
371
+ },
372
+ /**
373
+ *
374
+ * @summary Update currency
375
+ * @param {string} currencyId
376
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
377
+ * @param {*} [options] Override http request option.
378
+ * @throws {RequiredError}
379
+ */
380
+ async apiV1CurrenciesCurrencyIdPut(currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>> {
381
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesCurrencyIdPut(currencyId, updateCurrencyCommand, options);
382
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
383
+ },
384
+ /**
385
+ *
386
+ * @summary Reactivate currency
387
+ * @param {string} currencyId
388
+ * @param {*} [options] Override http request option.
389
+ * @throws {RequiredError}
390
+ */
391
+ async apiV1CurrenciesCurrencyIdReactivatePut(currencyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
392
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesCurrencyIdReactivatePut(currencyId, options);
393
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
394
+ },
395
+ /**
396
+ *
397
+ * @summary Get currencies
398
+ * @param {string} [id]
399
+ * @param {string} [currencyCode]
400
+ * @param {number} [page]
401
+ * @param {number} [limit]
402
+ * @param {Date} [lastRetrieved]
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ async apiV1CurrenciesGet(id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrenciesModel>> {
407
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesGet(id, currencyCode, page, limit, lastRetrieved, options);
408
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
409
+ },
410
+ /**
411
+ *
412
+ * @summary Create currency
413
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
414
+ * @param {*} [options] Override http request option.
415
+ * @throws {RequiredError}
416
+ */
417
+ async apiV1CurrenciesPost(createCurrencyCommand?: CreateCurrencyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>> {
418
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesPost(createCurrencyCommand, options);
419
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
420
+ },
421
+ /**
422
+ *
423
+ * @summary Sort currencies
424
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
425
+ * @param {*} [options] Override http request option.
426
+ * @throws {RequiredError}
427
+ */
428
+ async apiV1CurrenciesSortPut(sortCurrenciesCommand?: SortCurrenciesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
429
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1CurrenciesSortPut(sortCurrenciesCommand, options);
430
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
431
+ },
432
+ }
433
+ };
434
+
435
+ /**
436
+ * CurrenciesApi - factory interface
437
+ * @export
438
+ */
439
+ export const CurrenciesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
440
+ const localVarFp = CurrenciesApiFp(configuration)
441
+ return {
442
+ /**
443
+ *
444
+ * @summary Delete currency
445
+ * @param {string} currencyId
446
+ * @param {boolean} [isPermanent]
447
+ * @param {*} [options] Override http request option.
448
+ * @throws {RequiredError}
449
+ */
450
+ apiV1CurrenciesCurrencyIdDelete(currencyId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean> {
451
+ return localVarFp.apiV1CurrenciesCurrencyIdDelete(currencyId, isPermanent, options).then((request) => request(axios, basePath));
452
+ },
453
+ /**
454
+ *
455
+ * @summary Get currency
456
+ * @param {string} currencyId
457
+ * @param {*} [options] Override http request option.
458
+ * @throws {RequiredError}
459
+ */
460
+ apiV1CurrenciesCurrencyIdGet(currencyId: string, options?: any): AxiosPromise<CurrencyModel> {
461
+ return localVarFp.apiV1CurrenciesCurrencyIdGet(currencyId, options).then((request) => request(axios, basePath));
462
+ },
463
+ /**
464
+ *
465
+ * @summary Update currency
466
+ * @param {string} currencyId
467
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
468
+ * @param {*} [options] Override http request option.
469
+ * @throws {RequiredError}
470
+ */
471
+ apiV1CurrenciesCurrencyIdPut(currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options?: any): AxiosPromise<CurrencyModel> {
472
+ return localVarFp.apiV1CurrenciesCurrencyIdPut(currencyId, updateCurrencyCommand, options).then((request) => request(axios, basePath));
473
+ },
474
+ /**
475
+ *
476
+ * @summary Reactivate currency
477
+ * @param {string} currencyId
478
+ * @param {*} [options] Override http request option.
479
+ * @throws {RequiredError}
480
+ */
481
+ apiV1CurrenciesCurrencyIdReactivatePut(currencyId: string, options?: any): AxiosPromise<boolean> {
482
+ return localVarFp.apiV1CurrenciesCurrencyIdReactivatePut(currencyId, options).then((request) => request(axios, basePath));
483
+ },
484
+ /**
485
+ *
486
+ * @summary Get currencies
487
+ * @param {string} [id]
488
+ * @param {string} [currencyCode]
489
+ * @param {number} [page]
490
+ * @param {number} [limit]
491
+ * @param {Date} [lastRetrieved]
492
+ * @param {*} [options] Override http request option.
493
+ * @throws {RequiredError}
494
+ */
495
+ apiV1CurrenciesGet(id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CurrenciesModel> {
496
+ return localVarFp.apiV1CurrenciesGet(id, currencyCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
497
+ },
498
+ /**
499
+ *
500
+ * @summary Create currency
501
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
502
+ * @param {*} [options] Override http request option.
503
+ * @throws {RequiredError}
504
+ */
505
+ apiV1CurrenciesPost(createCurrencyCommand?: CreateCurrencyCommand, options?: any): AxiosPromise<CurrencyModel> {
506
+ return localVarFp.apiV1CurrenciesPost(createCurrencyCommand, options).then((request) => request(axios, basePath));
507
+ },
508
+ /**
509
+ *
510
+ * @summary Sort currencies
511
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
512
+ * @param {*} [options] Override http request option.
513
+ * @throws {RequiredError}
514
+ */
515
+ apiV1CurrenciesSortPut(sortCurrenciesCommand?: SortCurrenciesCommand, options?: any): AxiosPromise<boolean> {
516
+ return localVarFp.apiV1CurrenciesSortPut(sortCurrenciesCommand, options).then((request) => request(axios, basePath));
517
+ },
518
+ };
519
+ };
520
+
521
+ /**
522
+ * Request parameters for apiV1CurrenciesCurrencyIdDelete operation in CurrenciesApi.
523
+ * @export
524
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest
525
+ */
526
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest {
527
+ /**
528
+ *
529
+ * @type {string}
530
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdDelete
531
+ */
532
+ readonly currencyId: string
533
+
534
+ /**
535
+ *
536
+ * @type {boolean}
537
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdDelete
538
+ */
539
+ readonly isPermanent?: boolean
540
+ }
541
+
542
+ /**
543
+ * Request parameters for apiV1CurrenciesCurrencyIdGet operation in CurrenciesApi.
544
+ * @export
545
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest
546
+ */
547
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest {
548
+ /**
549
+ *
550
+ * @type {string}
551
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdGet
552
+ */
553
+ readonly currencyId: string
554
+ }
555
+
556
+ /**
557
+ * Request parameters for apiV1CurrenciesCurrencyIdPut operation in CurrenciesApi.
558
+ * @export
559
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest
560
+ */
561
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest {
562
+ /**
563
+ *
564
+ * @type {string}
565
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdPut
566
+ */
567
+ readonly currencyId: string
568
+
569
+ /**
570
+ *
571
+ * @type {UpdateCurrencyCommand}
572
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdPut
573
+ */
574
+ readonly updateCurrencyCommand?: UpdateCurrencyCommand
575
+ }
576
+
577
+ /**
578
+ * Request parameters for apiV1CurrenciesCurrencyIdReactivatePut operation in CurrenciesApi.
579
+ * @export
580
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest
581
+ */
582
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest {
583
+ /**
584
+ *
585
+ * @type {string}
586
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePut
587
+ */
588
+ readonly currencyId: string
589
+ }
590
+
591
+ /**
592
+ * Request parameters for apiV1CurrenciesGet operation in CurrenciesApi.
593
+ * @export
594
+ * @interface CurrenciesApiApiV1CurrenciesGetRequest
595
+ */
596
+ export interface CurrenciesApiApiV1CurrenciesGetRequest {
597
+ /**
598
+ *
599
+ * @type {string}
600
+ * @memberof CurrenciesApiApiV1CurrenciesGet
601
+ */
602
+ readonly id?: string
603
+
604
+ /**
605
+ *
606
+ * @type {string}
607
+ * @memberof CurrenciesApiApiV1CurrenciesGet
608
+ */
609
+ readonly currencyCode?: string
610
+
611
+ /**
612
+ *
613
+ * @type {number}
614
+ * @memberof CurrenciesApiApiV1CurrenciesGet
615
+ */
616
+ readonly page?: number
617
+
618
+ /**
619
+ *
620
+ * @type {number}
621
+ * @memberof CurrenciesApiApiV1CurrenciesGet
622
+ */
623
+ readonly limit?: number
624
+
625
+ /**
626
+ *
627
+ * @type {Date}
628
+ * @memberof CurrenciesApiApiV1CurrenciesGet
629
+ */
630
+ readonly lastRetrieved?: Date
631
+ }
632
+
633
+ /**
634
+ * Request parameters for apiV1CurrenciesPost operation in CurrenciesApi.
635
+ * @export
636
+ * @interface CurrenciesApiApiV1CurrenciesPostRequest
637
+ */
638
+ export interface CurrenciesApiApiV1CurrenciesPostRequest {
639
+ /**
640
+ *
641
+ * @type {CreateCurrencyCommand}
642
+ * @memberof CurrenciesApiApiV1CurrenciesPost
643
+ */
644
+ readonly createCurrencyCommand?: CreateCurrencyCommand
645
+ }
646
+
647
+ /**
648
+ * Request parameters for apiV1CurrenciesSortPut operation in CurrenciesApi.
649
+ * @export
650
+ * @interface CurrenciesApiApiV1CurrenciesSortPutRequest
651
+ */
652
+ export interface CurrenciesApiApiV1CurrenciesSortPutRequest {
653
+ /**
654
+ *
655
+ * @type {SortCurrenciesCommand}
656
+ * @memberof CurrenciesApiApiV1CurrenciesSortPut
657
+ */
658
+ readonly sortCurrenciesCommand?: SortCurrenciesCommand
659
+ }
660
+
661
+ /**
662
+ * CurrenciesApi - object-oriented interface
663
+ * @export
664
+ * @class CurrenciesApi
665
+ * @extends {BaseAPI}
666
+ */
667
+ export class CurrenciesApi extends BaseAPI {
668
+ /**
669
+ *
670
+ * @summary Delete currency
671
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest} requestParameters Request parameters.
672
+ * @param {*} [options] Override http request option.
673
+ * @throws {RequiredError}
674
+ * @memberof CurrenciesApi
675
+ */
676
+ public apiV1CurrenciesCurrencyIdDelete(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest, options?: AxiosRequestConfig) {
677
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesCurrencyIdDelete(requestParameters.currencyId, requestParameters.isPermanent, options).then((request) => request(this.axios, this.basePath));
678
+ }
679
+
680
+ /**
681
+ *
682
+ * @summary Get currency
683
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest} requestParameters Request parameters.
684
+ * @param {*} [options] Override http request option.
685
+ * @throws {RequiredError}
686
+ * @memberof CurrenciesApi
687
+ */
688
+ public apiV1CurrenciesCurrencyIdGet(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest, options?: AxiosRequestConfig) {
689
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesCurrencyIdGet(requestParameters.currencyId, options).then((request) => request(this.axios, this.basePath));
690
+ }
691
+
692
+ /**
693
+ *
694
+ * @summary Update currency
695
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest} requestParameters Request parameters.
696
+ * @param {*} [options] Override http request option.
697
+ * @throws {RequiredError}
698
+ * @memberof CurrenciesApi
699
+ */
700
+ public apiV1CurrenciesCurrencyIdPut(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest, options?: AxiosRequestConfig) {
701
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesCurrencyIdPut(requestParameters.currencyId, requestParameters.updateCurrencyCommand, options).then((request) => request(this.axios, this.basePath));
702
+ }
703
+
704
+ /**
705
+ *
706
+ * @summary Reactivate currency
707
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest} requestParameters Request parameters.
708
+ * @param {*} [options] Override http request option.
709
+ * @throws {RequiredError}
710
+ * @memberof CurrenciesApi
711
+ */
712
+ public apiV1CurrenciesCurrencyIdReactivatePut(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest, options?: AxiosRequestConfig) {
713
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesCurrencyIdReactivatePut(requestParameters.currencyId, options).then((request) => request(this.axios, this.basePath));
714
+ }
715
+
716
+ /**
717
+ *
718
+ * @summary Get currencies
719
+ * @param {CurrenciesApiApiV1CurrenciesGetRequest} requestParameters Request parameters.
720
+ * @param {*} [options] Override http request option.
721
+ * @throws {RequiredError}
722
+ * @memberof CurrenciesApi
723
+ */
724
+ public apiV1CurrenciesGet(requestParameters: CurrenciesApiApiV1CurrenciesGetRequest = {}, options?: AxiosRequestConfig) {
725
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesGet(requestParameters.id, requestParameters.currencyCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
726
+ }
727
+
728
+ /**
729
+ *
730
+ * @summary Create currency
731
+ * @param {CurrenciesApiApiV1CurrenciesPostRequest} requestParameters Request parameters.
732
+ * @param {*} [options] Override http request option.
733
+ * @throws {RequiredError}
734
+ * @memberof CurrenciesApi
735
+ */
736
+ public apiV1CurrenciesPost(requestParameters: CurrenciesApiApiV1CurrenciesPostRequest = {}, options?: AxiosRequestConfig) {
737
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesPost(requestParameters.createCurrencyCommand, options).then((request) => request(this.axios, this.basePath));
738
+ }
739
+
740
+ /**
741
+ *
742
+ * @summary Sort currencies
743
+ * @param {CurrenciesApiApiV1CurrenciesSortPutRequest} requestParameters Request parameters.
744
+ * @param {*} [options] Override http request option.
745
+ * @throws {RequiredError}
746
+ * @memberof CurrenciesApi
747
+ */
748
+ public apiV1CurrenciesSortPut(requestParameters: CurrenciesApiApiV1CurrenciesSortPutRequest = {}, options?: AxiosRequestConfig) {
749
+ return CurrenciesApiFp(this.configuration).apiV1CurrenciesSortPut(requestParameters.sortCurrenciesCommand, options).then((request) => request(this.axios, this.basePath));
750
+ }
751
+ }