ch-admin-api-client-typescript 5.36.83 → 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
package/src/api.ts CHANGED
@@ -28,6 +28,7 @@ export * from './api/communications-api';
28
28
  export * from './api/contributors-api';
29
29
  export * from './api/countries-api';
30
30
  export * from './api/curations-api';
31
+ export * from './api/currencies-api';
31
32
  export * from './api/dash-board-api';
32
33
  export * from './api/deals-api';
33
34
  export * from './api/dev-supports-api';
@@ -0,0 +1,42 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { CountryCurrencyItemModel } from './country-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 CountryCurrenciesModel
27
+ */
28
+ export interface CountryCurrenciesModel {
29
+ /**
30
+ *
31
+ * @type {Array<CountryCurrencyItemModel>}
32
+ * @memberof CountryCurrenciesModel
33
+ */
34
+ 'items'?: Array<CountryCurrencyItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof CountryCurrenciesModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -0,0 +1,60 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CountryCurrencyItemModel
21
+ */
22
+ export interface CountryCurrencyItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CountryCurrencyItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CountryCurrencyItemModel
33
+ */
34
+ 'countryId'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CountryCurrencyItemModel
39
+ */
40
+ 'currencyId'?: string;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof CountryCurrencyItemModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CountryCurrencyItemModel
51
+ */
52
+ 'currencyCode'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof CountryCurrencyItemModel
57
+ */
58
+ 'currencyCurrencySymbol'?: string | null;
59
+ }
60
+
@@ -0,0 +1,60 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CountryCurrencyModel
21
+ */
22
+ export interface CountryCurrencyModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CountryCurrencyModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CountryCurrencyModel
33
+ */
34
+ 'countryId'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CountryCurrencyModel
39
+ */
40
+ 'currencyId'?: string;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof CountryCurrencyModel
45
+ */
46
+ 'order'?: number;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CountryCurrencyModel
51
+ */
52
+ 'currencyCode'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof CountryCurrencyModel
57
+ */
58
+ 'currencyCurrencySymbol'?: string | null;
59
+ }
60
+
@@ -0,0 +1,42 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface CreateCurrencyCommand
21
+ */
22
+ export interface CreateCurrencyCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CreateCurrencyCommand
27
+ */
28
+ 'currencyCode'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CreateCurrencyCommand
33
+ */
34
+ 'currencySymbol'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof CreateCurrencyCommand
39
+ */
40
+ 'order'?: number;
41
+ }
42
+
@@ -0,0 +1,42 @@
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
+ // 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 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
+
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
+
@@ -0,0 +1,57 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { AuditableEntityModel } from './auditable-entity-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CurrencyModel
24
+ */
25
+ export interface CurrencyModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof CurrencyModel
30
+ */
31
+ 'id'?: string;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof CurrencyModel
36
+ */
37
+ 'currencyCode'?: string | null;
38
+ /**
39
+ *
40
+ * @type {string}
41
+ * @memberof CurrencyModel
42
+ */
43
+ 'currencySymbol'?: string | null;
44
+ /**
45
+ *
46
+ * @type {number}
47
+ * @memberof CurrencyModel
48
+ */
49
+ 'order'?: number;
50
+ /**
51
+ *
52
+ * @type {AuditableEntityModel}
53
+ * @memberof CurrencyModel
54
+ */
55
+ 'auditableEntity'?: AuditableEntityModel;
56
+ }
57
+
@@ -87,6 +87,9 @@ export * from './contributor-model';
87
87
  export * from './contributor-sns-handles-model';
88
88
  export * from './contributors-model';
89
89
  export * from './countries-model';
90
+ export * from './country-currencies-model';
91
+ export * from './country-currency-item-model';
92
+ export * from './country-currency-model';
90
93
  export * from './country-item-model';
91
94
  export * from './country-language-item-model';
92
95
  export * from './country-language-model';
@@ -107,6 +110,7 @@ export * from './create-contributor-command';
107
110
  export * from './create-contributor-sns-handle-command';
108
111
  export * from './create-country-command';
109
112
  export * from './create-curation-command';
113
+ export * from './create-currency-command';
110
114
  export * from './create-deal-command';
111
115
  export * from './create-deal-package-command';
112
116
  export * from './create-deal-service-command';
@@ -163,6 +167,9 @@ export * from './create-walk-in-appointment-command';
163
167
  export * from './create-web-app-command';
164
168
  export * from './curation-model';
165
169
  export * from './curations-model';
170
+ export * from './currencies-model';
171
+ export * from './currency-item-model';
172
+ export * from './currency-model';
166
173
  export * from './dash-board-model';
167
174
  export * from './day-of-week';
168
175
  export * from './deal-item-model';
@@ -405,6 +412,7 @@ export * from './reschedule-appointment-command';
405
412
  export * from './review-type';
406
413
  export * from './save-appointment-timetable-override-model';
407
414
  export * from './save-appointment-timetable-overrides-result-model';
415
+ export * from './save-country-currency-command';
408
416
  export * from './save-country-language-command';
409
417
  export * from './save-deal-package-appointment-timetable-overrides-command';
410
418
  export * from './save-doctor-affiliation-appointment-timetable-overrides-command';
@@ -443,7 +451,9 @@ export * from './set-hospital-into-form-template-command';
443
451
  export * from './set-hospital-into-survey-form-command';
444
452
  export * from './sns-handle-model';
445
453
  export * from './sns-type';
454
+ export * from './sort-country-currencies-command';
446
455
  export * from './sort-country-languages-command';
456
+ export * from './sort-currencies-command';
447
457
  export * from './sort-footer-navigations-command';
448
458
  export * from './sorting-item-model';
449
459
  export * from './sorting-order';
@@ -526,6 +536,7 @@ export * from './update-contributor-command';
526
536
  export * from './update-contributor-sns-handle-command';
527
537
  export * from './update-country-command';
528
538
  export * from './update-curation-command';
539
+ export * from './update-currency-command';
529
540
  export * from './update-deal-command';
530
541
  export * from './update-deal-package-command';
531
542
  export * from './update-deal-service-command';
@@ -0,0 +1,30 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface SaveCountryCurrencyCommand
21
+ */
22
+ export interface SaveCountryCurrencyCommand {
23
+ /**
24
+ *
25
+ * @type {number}
26
+ * @memberof SaveCountryCurrencyCommand
27
+ */
28
+ 'order'?: number;
29
+ }
30
+
@@ -0,0 +1,33 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { SortingItemModel } from './sorting-item-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SortCountryCurrenciesCommand
24
+ */
25
+ export interface SortCountryCurrenciesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<SortingItemModel>}
29
+ * @memberof SortCountryCurrenciesCommand
30
+ */
31
+ 'items'?: Array<SortingItemModel> | null;
32
+ }
33
+
@@ -0,0 +1,33 @@
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
+ // May contain unused imports in some cases
17
+ // @ts-ignore
18
+ import { SortingItemModel } from './sorting-item-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SortCurrenciesCommand
24
+ */
25
+ export interface SortCurrenciesCommand {
26
+ /**
27
+ *
28
+ * @type {Array<SortingItemModel>}
29
+ * @memberof SortCurrenciesCommand
30
+ */
31
+ 'items'?: Array<SortingItemModel> | null;
32
+ }
33
+
@@ -0,0 +1,42 @@
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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @interface UpdateCurrencyCommand
21
+ */
22
+ export interface UpdateCurrencyCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof UpdateCurrencyCommand
27
+ */
28
+ 'currencyCode'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof UpdateCurrencyCommand
33
+ */
34
+ 'currencySymbol'?: string | null;
35
+ /**
36
+ *
37
+ * @type {number}
38
+ * @memberof UpdateCurrencyCommand
39
+ */
40
+ 'order'?: number;
41
+ }
42
+