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

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 (65) 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/location-model.d.ts +7 -7
  35. package/lib/models/location-model.d.ts.map +1 -1
  36. package/lib/models/save-country-currency-command.d.ts +25 -0
  37. package/lib/models/save-country-currency-command.d.ts.map +1 -0
  38. package/lib/models/save-country-currency-command.js +15 -0
  39. package/lib/models/sort-country-currencies-command.d.ts +26 -0
  40. package/lib/models/sort-country-currencies-command.d.ts.map +1 -0
  41. package/lib/models/sort-country-currencies-command.js +15 -0
  42. package/lib/models/sort-currencies-command.d.ts +26 -0
  43. package/lib/models/sort-currencies-command.d.ts.map +1 -0
  44. package/lib/models/sort-currencies-command.js +15 -0
  45. package/lib/models/update-currency-command.d.ts +37 -0
  46. package/lib/models/update-currency-command.d.ts.map +1 -0
  47. package/lib/models/update-currency-command.js +15 -0
  48. package/package.json +1 -1
  49. package/src/.openapi-generator/FILES +12 -0
  50. package/src/api/countries-api.ts +570 -0
  51. package/src/api/currencies-api.ts +751 -0
  52. package/src/api.ts +1 -0
  53. package/src/models/country-currencies-model.ts +42 -0
  54. package/src/models/country-currency-item-model.ts +60 -0
  55. package/src/models/country-currency-model.ts +60 -0
  56. package/src/models/create-currency-command.ts +42 -0
  57. package/src/models/currencies-model.ts +42 -0
  58. package/src/models/currency-item-model.ts +48 -0
  59. package/src/models/currency-model.ts +57 -0
  60. package/src/models/index.ts +11 -0
  61. package/src/models/location-model.ts +7 -7
  62. package/src/models/save-country-currency-command.ts +30 -0
  63. package/src/models/sort-country-currencies-command.ts +33 -0
  64. package/src/models/sort-currencies-command.ts +33 -0
  65. package/src/models/update-currency-command.ts +42 -0
@@ -0,0 +1,422 @@
1
+ /**
2
+ * CloudHospital Admin Api
3
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
4
+ *
5
+ * The version of the OpenAPI document: 1
6
+ * Contact: developer@icloudhospital.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
13
+ import { Configuration } from '../configuration';
14
+ import { RequestArgs, BaseAPI } from '../base';
15
+ import { CreateCurrencyCommand } from '../models';
16
+ import { CurrenciesModel } from '../models';
17
+ import { CurrencyModel } from '../models';
18
+ import { SortCurrenciesCommand } from '../models';
19
+ import { UpdateCurrencyCommand } from '../models';
20
+ /**
21
+ * CurrenciesApi - axios parameter creator
22
+ * @export
23
+ */
24
+ export declare const CurrenciesApiAxiosParamCreator: (configuration?: Configuration) => {
25
+ /**
26
+ *
27
+ * @summary Delete currency
28
+ * @param {string} currencyId
29
+ * @param {boolean} [isPermanent]
30
+ * @param {*} [options] Override http request option.
31
+ * @throws {RequiredError}
32
+ */
33
+ apiV1CurrenciesCurrencyIdDelete: (currencyId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34
+ /**
35
+ *
36
+ * @summary Get currency
37
+ * @param {string} currencyId
38
+ * @param {*} [options] Override http request option.
39
+ * @throws {RequiredError}
40
+ */
41
+ apiV1CurrenciesCurrencyIdGet: (currencyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
42
+ /**
43
+ *
44
+ * @summary Update currency
45
+ * @param {string} currencyId
46
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
47
+ * @param {*} [options] Override http request option.
48
+ * @throws {RequiredError}
49
+ */
50
+ apiV1CurrenciesCurrencyIdPut: (currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
51
+ /**
52
+ *
53
+ * @summary Reactivate currency
54
+ * @param {string} currencyId
55
+ * @param {*} [options] Override http request option.
56
+ * @throws {RequiredError}
57
+ */
58
+ apiV1CurrenciesCurrencyIdReactivatePut: (currencyId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
59
+ /**
60
+ *
61
+ * @summary Get currencies
62
+ * @param {string} [id]
63
+ * @param {string} [currencyCode]
64
+ * @param {number} [page]
65
+ * @param {number} [limit]
66
+ * @param {Date} [lastRetrieved]
67
+ * @param {*} [options] Override http request option.
68
+ * @throws {RequiredError}
69
+ */
70
+ apiV1CurrenciesGet: (id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
71
+ /**
72
+ *
73
+ * @summary Create currency
74
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
75
+ * @param {*} [options] Override http request option.
76
+ * @throws {RequiredError}
77
+ */
78
+ apiV1CurrenciesPost: (createCurrencyCommand?: CreateCurrencyCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
79
+ /**
80
+ *
81
+ * @summary Sort currencies
82
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
83
+ * @param {*} [options] Override http request option.
84
+ * @throws {RequiredError}
85
+ */
86
+ apiV1CurrenciesSortPut: (sortCurrenciesCommand?: SortCurrenciesCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
87
+ };
88
+ /**
89
+ * CurrenciesApi - functional programming interface
90
+ * @export
91
+ */
92
+ export declare const CurrenciesApiFp: (configuration?: Configuration) => {
93
+ /**
94
+ *
95
+ * @summary Delete currency
96
+ * @param {string} currencyId
97
+ * @param {boolean} [isPermanent]
98
+ * @param {*} [options] Override http request option.
99
+ * @throws {RequiredError}
100
+ */
101
+ apiV1CurrenciesCurrencyIdDelete(currencyId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
102
+ /**
103
+ *
104
+ * @summary Get currency
105
+ * @param {string} currencyId
106
+ * @param {*} [options] Override http request option.
107
+ * @throws {RequiredError}
108
+ */
109
+ apiV1CurrenciesCurrencyIdGet(currencyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>>;
110
+ /**
111
+ *
112
+ * @summary Update currency
113
+ * @param {string} currencyId
114
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
115
+ * @param {*} [options] Override http request option.
116
+ * @throws {RequiredError}
117
+ */
118
+ apiV1CurrenciesCurrencyIdPut(currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>>;
119
+ /**
120
+ *
121
+ * @summary Reactivate currency
122
+ * @param {string} currencyId
123
+ * @param {*} [options] Override http request option.
124
+ * @throws {RequiredError}
125
+ */
126
+ apiV1CurrenciesCurrencyIdReactivatePut(currencyId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
127
+ /**
128
+ *
129
+ * @summary Get currencies
130
+ * @param {string} [id]
131
+ * @param {string} [currencyCode]
132
+ * @param {number} [page]
133
+ * @param {number} [limit]
134
+ * @param {Date} [lastRetrieved]
135
+ * @param {*} [options] Override http request option.
136
+ * @throws {RequiredError}
137
+ */
138
+ apiV1CurrenciesGet(id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrenciesModel>>;
139
+ /**
140
+ *
141
+ * @summary Create currency
142
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
143
+ * @param {*} [options] Override http request option.
144
+ * @throws {RequiredError}
145
+ */
146
+ apiV1CurrenciesPost(createCurrencyCommand?: CreateCurrencyCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurrencyModel>>;
147
+ /**
148
+ *
149
+ * @summary Sort currencies
150
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
151
+ * @param {*} [options] Override http request option.
152
+ * @throws {RequiredError}
153
+ */
154
+ apiV1CurrenciesSortPut(sortCurrenciesCommand?: SortCurrenciesCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
155
+ };
156
+ /**
157
+ * CurrenciesApi - factory interface
158
+ * @export
159
+ */
160
+ export declare const CurrenciesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
161
+ /**
162
+ *
163
+ * @summary Delete currency
164
+ * @param {string} currencyId
165
+ * @param {boolean} [isPermanent]
166
+ * @param {*} [options] Override http request option.
167
+ * @throws {RequiredError}
168
+ */
169
+ apiV1CurrenciesCurrencyIdDelete(currencyId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
170
+ /**
171
+ *
172
+ * @summary Get currency
173
+ * @param {string} currencyId
174
+ * @param {*} [options] Override http request option.
175
+ * @throws {RequiredError}
176
+ */
177
+ apiV1CurrenciesCurrencyIdGet(currencyId: string, options?: any): AxiosPromise<CurrencyModel>;
178
+ /**
179
+ *
180
+ * @summary Update currency
181
+ * @param {string} currencyId
182
+ * @param {UpdateCurrencyCommand} [updateCurrencyCommand]
183
+ * @param {*} [options] Override http request option.
184
+ * @throws {RequiredError}
185
+ */
186
+ apiV1CurrenciesCurrencyIdPut(currencyId: string, updateCurrencyCommand?: UpdateCurrencyCommand, options?: any): AxiosPromise<CurrencyModel>;
187
+ /**
188
+ *
189
+ * @summary Reactivate currency
190
+ * @param {string} currencyId
191
+ * @param {*} [options] Override http request option.
192
+ * @throws {RequiredError}
193
+ */
194
+ apiV1CurrenciesCurrencyIdReactivatePut(currencyId: string, options?: any): AxiosPromise<boolean>;
195
+ /**
196
+ *
197
+ * @summary Get currencies
198
+ * @param {string} [id]
199
+ * @param {string} [currencyCode]
200
+ * @param {number} [page]
201
+ * @param {number} [limit]
202
+ * @param {Date} [lastRetrieved]
203
+ * @param {*} [options] Override http request option.
204
+ * @throws {RequiredError}
205
+ */
206
+ apiV1CurrenciesGet(id?: string, currencyCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CurrenciesModel>;
207
+ /**
208
+ *
209
+ * @summary Create currency
210
+ * @param {CreateCurrencyCommand} [createCurrencyCommand]
211
+ * @param {*} [options] Override http request option.
212
+ * @throws {RequiredError}
213
+ */
214
+ apiV1CurrenciesPost(createCurrencyCommand?: CreateCurrencyCommand, options?: any): AxiosPromise<CurrencyModel>;
215
+ /**
216
+ *
217
+ * @summary Sort currencies
218
+ * @param {SortCurrenciesCommand} [sortCurrenciesCommand]
219
+ * @param {*} [options] Override http request option.
220
+ * @throws {RequiredError}
221
+ */
222
+ apiV1CurrenciesSortPut(sortCurrenciesCommand?: SortCurrenciesCommand, options?: any): AxiosPromise<boolean>;
223
+ };
224
+ /**
225
+ * Request parameters for apiV1CurrenciesCurrencyIdDelete operation in CurrenciesApi.
226
+ * @export
227
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest
228
+ */
229
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest {
230
+ /**
231
+ *
232
+ * @type {string}
233
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdDelete
234
+ */
235
+ readonly currencyId: string;
236
+ /**
237
+ *
238
+ * @type {boolean}
239
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdDelete
240
+ */
241
+ readonly isPermanent?: boolean;
242
+ }
243
+ /**
244
+ * Request parameters for apiV1CurrenciesCurrencyIdGet operation in CurrenciesApi.
245
+ * @export
246
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest
247
+ */
248
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest {
249
+ /**
250
+ *
251
+ * @type {string}
252
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdGet
253
+ */
254
+ readonly currencyId: string;
255
+ }
256
+ /**
257
+ * Request parameters for apiV1CurrenciesCurrencyIdPut operation in CurrenciesApi.
258
+ * @export
259
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest
260
+ */
261
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest {
262
+ /**
263
+ *
264
+ * @type {string}
265
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdPut
266
+ */
267
+ readonly currencyId: string;
268
+ /**
269
+ *
270
+ * @type {UpdateCurrencyCommand}
271
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdPut
272
+ */
273
+ readonly updateCurrencyCommand?: UpdateCurrencyCommand;
274
+ }
275
+ /**
276
+ * Request parameters for apiV1CurrenciesCurrencyIdReactivatePut operation in CurrenciesApi.
277
+ * @export
278
+ * @interface CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest
279
+ */
280
+ export interface CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest {
281
+ /**
282
+ *
283
+ * @type {string}
284
+ * @memberof CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePut
285
+ */
286
+ readonly currencyId: string;
287
+ }
288
+ /**
289
+ * Request parameters for apiV1CurrenciesGet operation in CurrenciesApi.
290
+ * @export
291
+ * @interface CurrenciesApiApiV1CurrenciesGetRequest
292
+ */
293
+ export interface CurrenciesApiApiV1CurrenciesGetRequest {
294
+ /**
295
+ *
296
+ * @type {string}
297
+ * @memberof CurrenciesApiApiV1CurrenciesGet
298
+ */
299
+ readonly id?: string;
300
+ /**
301
+ *
302
+ * @type {string}
303
+ * @memberof CurrenciesApiApiV1CurrenciesGet
304
+ */
305
+ readonly currencyCode?: string;
306
+ /**
307
+ *
308
+ * @type {number}
309
+ * @memberof CurrenciesApiApiV1CurrenciesGet
310
+ */
311
+ readonly page?: number;
312
+ /**
313
+ *
314
+ * @type {number}
315
+ * @memberof CurrenciesApiApiV1CurrenciesGet
316
+ */
317
+ readonly limit?: number;
318
+ /**
319
+ *
320
+ * @type {Date}
321
+ * @memberof CurrenciesApiApiV1CurrenciesGet
322
+ */
323
+ readonly lastRetrieved?: Date;
324
+ }
325
+ /**
326
+ * Request parameters for apiV1CurrenciesPost operation in CurrenciesApi.
327
+ * @export
328
+ * @interface CurrenciesApiApiV1CurrenciesPostRequest
329
+ */
330
+ export interface CurrenciesApiApiV1CurrenciesPostRequest {
331
+ /**
332
+ *
333
+ * @type {CreateCurrencyCommand}
334
+ * @memberof CurrenciesApiApiV1CurrenciesPost
335
+ */
336
+ readonly createCurrencyCommand?: CreateCurrencyCommand;
337
+ }
338
+ /**
339
+ * Request parameters for apiV1CurrenciesSortPut operation in CurrenciesApi.
340
+ * @export
341
+ * @interface CurrenciesApiApiV1CurrenciesSortPutRequest
342
+ */
343
+ export interface CurrenciesApiApiV1CurrenciesSortPutRequest {
344
+ /**
345
+ *
346
+ * @type {SortCurrenciesCommand}
347
+ * @memberof CurrenciesApiApiV1CurrenciesSortPut
348
+ */
349
+ readonly sortCurrenciesCommand?: SortCurrenciesCommand;
350
+ }
351
+ /**
352
+ * CurrenciesApi - object-oriented interface
353
+ * @export
354
+ * @class CurrenciesApi
355
+ * @extends {BaseAPI}
356
+ */
357
+ export declare class CurrenciesApi extends BaseAPI {
358
+ /**
359
+ *
360
+ * @summary Delete currency
361
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest} requestParameters Request parameters.
362
+ * @param {*} [options] Override http request option.
363
+ * @throws {RequiredError}
364
+ * @memberof CurrenciesApi
365
+ */
366
+ apiV1CurrenciesCurrencyIdDelete(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
367
+ /**
368
+ *
369
+ * @summary Get currency
370
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest} requestParameters Request parameters.
371
+ * @param {*} [options] Override http request option.
372
+ * @throws {RequiredError}
373
+ * @memberof CurrenciesApi
374
+ */
375
+ apiV1CurrenciesCurrencyIdGet(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurrencyModel, any>>;
376
+ /**
377
+ *
378
+ * @summary Update currency
379
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest} requestParameters Request parameters.
380
+ * @param {*} [options] Override http request option.
381
+ * @throws {RequiredError}
382
+ * @memberof CurrenciesApi
383
+ */
384
+ apiV1CurrenciesCurrencyIdPut(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurrencyModel, any>>;
385
+ /**
386
+ *
387
+ * @summary Reactivate currency
388
+ * @param {CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest} requestParameters Request parameters.
389
+ * @param {*} [options] Override http request option.
390
+ * @throws {RequiredError}
391
+ * @memberof CurrenciesApi
392
+ */
393
+ apiV1CurrenciesCurrencyIdReactivatePut(requestParameters: CurrenciesApiApiV1CurrenciesCurrencyIdReactivatePutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
394
+ /**
395
+ *
396
+ * @summary Get currencies
397
+ * @param {CurrenciesApiApiV1CurrenciesGetRequest} requestParameters Request parameters.
398
+ * @param {*} [options] Override http request option.
399
+ * @throws {RequiredError}
400
+ * @memberof CurrenciesApi
401
+ */
402
+ apiV1CurrenciesGet(requestParameters?: CurrenciesApiApiV1CurrenciesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurrenciesModel, any>>;
403
+ /**
404
+ *
405
+ * @summary Create currency
406
+ * @param {CurrenciesApiApiV1CurrenciesPostRequest} requestParameters Request parameters.
407
+ * @param {*} [options] Override http request option.
408
+ * @throws {RequiredError}
409
+ * @memberof CurrenciesApi
410
+ */
411
+ apiV1CurrenciesPost(requestParameters?: CurrenciesApiApiV1CurrenciesPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CurrencyModel, any>>;
412
+ /**
413
+ *
414
+ * @summary Sort currencies
415
+ * @param {CurrenciesApiApiV1CurrenciesSortPutRequest} requestParameters Request parameters.
416
+ * @param {*} [options] Override http request option.
417
+ * @throws {RequiredError}
418
+ * @memberof CurrenciesApi
419
+ */
420
+ apiV1CurrenciesSortPut(requestParameters?: CurrenciesApiApiV1CurrenciesSortPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
421
+ }
422
+ //# sourceMappingURL=currencies-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"currencies-api.d.ts","sourceRoot":"","sources":["../../src/api/currencies-api.ts"],"names":[],"mappings":"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"}