ch-api-client-typescript2 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 (42) hide show
  1. package/lib/api/currencies-api.d.ts +124 -0
  2. package/lib/api/currencies-api.d.ts.map +1 -0
  3. package/lib/api/currencies-api.js +233 -0
  4. package/lib/api.d.ts +1 -0
  5. package/lib/api.d.ts.map +1 -1
  6. package/lib/api.js +1 -0
  7. package/lib/models/country-currency-document-model.d.ts +43 -0
  8. package/lib/models/country-currency-document-model.d.ts.map +1 -0
  9. package/lib/models/country-currency-document-model.js +15 -0
  10. package/lib/models/country-currency-item-model.d.ts +55 -0
  11. package/lib/models/country-currency-item-model.d.ts.map +1 -0
  12. package/lib/models/country-currency-item-model.js +15 -0
  13. package/lib/models/country-document-model.d.ts +7 -0
  14. package/lib/models/country-document-model.d.ts.map +1 -1
  15. package/lib/models/country-item-model.d.ts +7 -0
  16. package/lib/models/country-item-model.d.ts.map +1 -1
  17. package/lib/models/country-model.d.ts +7 -0
  18. package/lib/models/country-model.d.ts.map +1 -1
  19. package/lib/models/country-sub-document-model.d.ts +7 -0
  20. package/lib/models/country-sub-document-model.d.ts.map +1 -1
  21. package/lib/models/currencies-model.d.ts +33 -0
  22. package/lib/models/currencies-model.d.ts.map +1 -0
  23. package/lib/models/currencies-model.js +15 -0
  24. package/lib/models/currency-item-model.d.ts +43 -0
  25. package/lib/models/currency-item-model.d.ts.map +1 -0
  26. package/lib/models/currency-item-model.js +15 -0
  27. package/lib/models/index.d.ts +4 -0
  28. package/lib/models/index.d.ts.map +1 -1
  29. package/lib/models/index.js +4 -0
  30. package/package.json +1 -1
  31. package/src/.openapi-generator/FILES +5 -0
  32. package/src/api/currencies-api.ts +200 -0
  33. package/src/api.ts +1 -0
  34. package/src/models/country-currency-document-model.ts +48 -0
  35. package/src/models/country-currency-item-model.ts +60 -0
  36. package/src/models/country-document-model.ts +9 -0
  37. package/src/models/country-item-model.ts +9 -0
  38. package/src/models/country-model.ts +9 -0
  39. package/src/models/country-sub-document-model.ts +9 -0
  40. package/src/models/currencies-model.ts +42 -0
  41. package/src/models/currency-item-model.ts +48 -0
  42. package/src/models/index.ts +4 -0
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { CurrencyItemModel } from './currency-item-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PagedListMetaData } from './paged-list-meta-data';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface CurrenciesModel
27
+ */
28
+ export interface CurrenciesModel {
29
+ /**
30
+ *
31
+ * @type {Array<CurrencyItemModel>}
32
+ * @memberof CurrenciesModel
33
+ */
34
+ 'items'?: Array<CurrencyItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof CurrenciesModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,48 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * CloudHospital Api
5
+ * CloudHospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CurrencyItemModel
21
+ */
22
+ export interface CurrencyItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CurrencyItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CurrencyItemModel
33
+ */
34
+ 'currencyCode'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CurrencyItemModel
39
+ */
40
+ 'currencySymbol'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof CurrencyItemModel
45
+ */
46
+ 'order'?: number;
47
+ }
48
+
@@ -70,6 +70,8 @@ export * from './contributor-translation-document-model';
70
70
  export * from './contributors-model';
71
71
  export * from './coordinate-system';
72
72
  export * from './countries-model';
73
+ export * from './country-currency-document-model';
74
+ export * from './country-currency-item-model';
73
75
  export * from './country-document-model';
74
76
  export * from './country-item-model';
75
77
  export * from './country-language-document-model';
@@ -93,6 +95,8 @@ export * from './curation-item-model';
93
95
  export * from './curation-model';
94
96
  export * from './curation-specialty-type-item-model';
95
97
  export * from './curation-specialty-types-model';
98
+ export * from './currencies-model';
99
+ export * from './currency-item-model';
96
100
  export * from './day-of-week';
97
101
  export * from './deal-document-model';
98
102
  export * from './deal-item-model';