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.
- package/lib/api/countries-api.d.ts +324 -0
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +485 -0
- package/lib/api/currencies-api.d.ts +422 -0
- package/lib/api/currencies-api.d.ts.map +1 -0
- package/lib/api/currencies-api.js +764 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/country-currencies-model.d.ts +33 -0
- package/lib/models/country-currencies-model.d.ts.map +1 -0
- package/lib/models/country-currencies-model.js +15 -0
- package/lib/models/country-currency-item-model.d.ts +55 -0
- package/lib/models/country-currency-item-model.d.ts.map +1 -0
- package/lib/models/country-currency-item-model.js +15 -0
- package/lib/models/country-currency-model.d.ts +55 -0
- package/lib/models/country-currency-model.d.ts.map +1 -0
- package/lib/models/country-currency-model.js +15 -0
- package/lib/models/create-currency-command.d.ts +37 -0
- package/lib/models/create-currency-command.d.ts.map +1 -0
- package/lib/models/create-currency-command.js +15 -0
- package/lib/models/currencies-model.d.ts +33 -0
- package/lib/models/currencies-model.d.ts.map +1 -0
- package/lib/models/currencies-model.js +15 -0
- package/lib/models/currency-item-model.d.ts +43 -0
- package/lib/models/currency-item-model.d.ts.map +1 -0
- package/lib/models/currency-item-model.js +15 -0
- package/lib/models/currency-model.d.ts +50 -0
- package/lib/models/currency-model.d.ts.map +1 -0
- package/lib/models/currency-model.js +15 -0
- package/lib/models/index.d.ts +11 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +11 -0
- package/lib/models/save-country-currency-command.d.ts +25 -0
- package/lib/models/save-country-currency-command.d.ts.map +1 -0
- package/lib/models/save-country-currency-command.js +15 -0
- package/lib/models/sort-country-currencies-command.d.ts +26 -0
- package/lib/models/sort-country-currencies-command.d.ts.map +1 -0
- package/lib/models/sort-country-currencies-command.js +15 -0
- package/lib/models/sort-currencies-command.d.ts +26 -0
- package/lib/models/sort-currencies-command.d.ts.map +1 -0
- package/lib/models/sort-currencies-command.js +15 -0
- package/lib/models/update-currency-command.d.ts +37 -0
- package/lib/models/update-currency-command.d.ts.map +1 -0
- package/lib/models/update-currency-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +12 -0
- package/src/api/countries-api.ts +570 -0
- package/src/api/currencies-api.ts +751 -0
- package/src/api.ts +1 -0
- package/src/models/country-currencies-model.ts +42 -0
- package/src/models/country-currency-item-model.ts +60 -0
- package/src/models/country-currency-model.ts +60 -0
- package/src/models/create-currency-command.ts +42 -0
- package/src/models/currencies-model.ts +42 -0
- package/src/models/currency-item-model.ts +48 -0
- package/src/models/currency-model.ts +57 -0
- package/src/models/index.ts +11 -0
- package/src/models/save-country-currency-command.ts +30 -0
- package/src/models/sort-country-currencies-command.ts +33 -0
- package/src/models/sort-currencies-command.ts +33 -0
- package/src/models/update-currency-command.ts +42 -0
package/lib/models/index.js
CHANGED
|
@@ -103,6 +103,9 @@ __exportStar(require("./contributor-model"), exports);
|
|
|
103
103
|
__exportStar(require("./contributor-sns-handles-model"), exports);
|
|
104
104
|
__exportStar(require("./contributors-model"), exports);
|
|
105
105
|
__exportStar(require("./countries-model"), exports);
|
|
106
|
+
__exportStar(require("./country-currencies-model"), exports);
|
|
107
|
+
__exportStar(require("./country-currency-item-model"), exports);
|
|
108
|
+
__exportStar(require("./country-currency-model"), exports);
|
|
106
109
|
__exportStar(require("./country-item-model"), exports);
|
|
107
110
|
__exportStar(require("./country-language-item-model"), exports);
|
|
108
111
|
__exportStar(require("./country-language-model"), exports);
|
|
@@ -123,6 +126,7 @@ __exportStar(require("./create-contributor-command"), exports);
|
|
|
123
126
|
__exportStar(require("./create-contributor-sns-handle-command"), exports);
|
|
124
127
|
__exportStar(require("./create-country-command"), exports);
|
|
125
128
|
__exportStar(require("./create-curation-command"), exports);
|
|
129
|
+
__exportStar(require("./create-currency-command"), exports);
|
|
126
130
|
__exportStar(require("./create-deal-command"), exports);
|
|
127
131
|
__exportStar(require("./create-deal-package-command"), exports);
|
|
128
132
|
__exportStar(require("./create-deal-service-command"), exports);
|
|
@@ -179,6 +183,9 @@ __exportStar(require("./create-walk-in-appointment-command"), exports);
|
|
|
179
183
|
__exportStar(require("./create-web-app-command"), exports);
|
|
180
184
|
__exportStar(require("./curation-model"), exports);
|
|
181
185
|
__exportStar(require("./curations-model"), exports);
|
|
186
|
+
__exportStar(require("./currencies-model"), exports);
|
|
187
|
+
__exportStar(require("./currency-item-model"), exports);
|
|
188
|
+
__exportStar(require("./currency-model"), exports);
|
|
182
189
|
__exportStar(require("./dash-board-model"), exports);
|
|
183
190
|
__exportStar(require("./day-of-week"), exports);
|
|
184
191
|
__exportStar(require("./deal-item-model"), exports);
|
|
@@ -421,6 +428,7 @@ __exportStar(require("./reschedule-appointment-command"), exports);
|
|
|
421
428
|
__exportStar(require("./review-type"), exports);
|
|
422
429
|
__exportStar(require("./save-appointment-timetable-override-model"), exports);
|
|
423
430
|
__exportStar(require("./save-appointment-timetable-overrides-result-model"), exports);
|
|
431
|
+
__exportStar(require("./save-country-currency-command"), exports);
|
|
424
432
|
__exportStar(require("./save-country-language-command"), exports);
|
|
425
433
|
__exportStar(require("./save-deal-package-appointment-timetable-overrides-command"), exports);
|
|
426
434
|
__exportStar(require("./save-doctor-affiliation-appointment-timetable-overrides-command"), exports);
|
|
@@ -459,7 +467,9 @@ __exportStar(require("./set-hospital-into-form-template-command"), exports);
|
|
|
459
467
|
__exportStar(require("./set-hospital-into-survey-form-command"), exports);
|
|
460
468
|
__exportStar(require("./sns-handle-model"), exports);
|
|
461
469
|
__exportStar(require("./sns-type"), exports);
|
|
470
|
+
__exportStar(require("./sort-country-currencies-command"), exports);
|
|
462
471
|
__exportStar(require("./sort-country-languages-command"), exports);
|
|
472
|
+
__exportStar(require("./sort-currencies-command"), exports);
|
|
463
473
|
__exportStar(require("./sort-footer-navigations-command"), exports);
|
|
464
474
|
__exportStar(require("./sorting-item-model"), exports);
|
|
465
475
|
__exportStar(require("./sorting-order"), exports);
|
|
@@ -542,6 +552,7 @@ __exportStar(require("./update-contributor-command"), exports);
|
|
|
542
552
|
__exportStar(require("./update-contributor-sns-handle-command"), exports);
|
|
543
553
|
__exportStar(require("./update-country-command"), exports);
|
|
544
554
|
__exportStar(require("./update-curation-command"), exports);
|
|
555
|
+
__exportStar(require("./update-currency-command"), exports);
|
|
545
556
|
__exportStar(require("./update-deal-command"), exports);
|
|
546
557
|
__exportStar(require("./update-deal-package-command"), exports);
|
|
547
558
|
__exportStar(require("./update-deal-service-command"), exports);
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface SaveCountryCurrencyCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface SaveCountryCurrencyCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof SaveCountryCurrencyCommand
|
|
22
|
+
*/
|
|
23
|
+
'order'?: number;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=save-country-currency-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"save-country-currency-command.d.ts","sourceRoot":"","sources":["../../src/models/save-country-currency-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,0BAA0B;IACvC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { SortingItemModel } from './sorting-item-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SortCountryCurrenciesCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface SortCountryCurrenciesCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<SortingItemModel>}
|
|
22
|
+
* @memberof SortCountryCurrenciesCommand
|
|
23
|
+
*/
|
|
24
|
+
'items'?: Array<SortingItemModel> | null;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=sort-country-currencies-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sort-country-currencies-command.d.ts","sourceRoot":"","sources":["../../src/models/sort-country-currencies-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;CAC5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,26 @@
|
|
|
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 { SortingItemModel } from './sorting-item-model';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface SortCurrenciesCommand
|
|
17
|
+
*/
|
|
18
|
+
export interface SortCurrenciesCommand {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<SortingItemModel>}
|
|
22
|
+
* @memberof SortCurrenciesCommand
|
|
23
|
+
*/
|
|
24
|
+
'items'?: Array<SortingItemModel> | null;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=sort-currencies-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"sort-currencies-command.d.ts","sourceRoot":"","sources":["../../src/models/sort-currencies-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAExD;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;CAC5C"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UpdateCurrencyCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface UpdateCurrencyCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof UpdateCurrencyCommand
|
|
22
|
+
*/
|
|
23
|
+
'currencyCode'?: string | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof UpdateCurrencyCommand
|
|
28
|
+
*/
|
|
29
|
+
'currencySymbol'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {number}
|
|
33
|
+
* @memberof UpdateCurrencyCommand
|
|
34
|
+
*/
|
|
35
|
+
'order'?: number;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=update-currency-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-currency-command.d.ts","sourceRoot":"","sources":["../../src/models/update-currency-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CloudHospital Admin Api
|
|
6
|
+
* CloudHospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1
|
|
9
|
+
* Contact: developer@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ api/communications-api.ts
|
|
|
16
16
|
api/contributors-api.ts
|
|
17
17
|
api/countries-api.ts
|
|
18
18
|
api/curations-api.ts
|
|
19
|
+
api/currencies-api.ts
|
|
19
20
|
api/dash-board-api.ts
|
|
20
21
|
api/deals-api.ts
|
|
21
22
|
api/dev-supports-api.ts
|
|
@@ -150,6 +151,9 @@ models/contributor-model.ts
|
|
|
150
151
|
models/contributor-sns-handles-model.ts
|
|
151
152
|
models/contributors-model.ts
|
|
152
153
|
models/countries-model.ts
|
|
154
|
+
models/country-currencies-model.ts
|
|
155
|
+
models/country-currency-item-model.ts
|
|
156
|
+
models/country-currency-model.ts
|
|
153
157
|
models/country-item-model.ts
|
|
154
158
|
models/country-language-item-model.ts
|
|
155
159
|
models/country-language-model.ts
|
|
@@ -170,6 +174,7 @@ models/create-contributor-command.ts
|
|
|
170
174
|
models/create-contributor-sns-handle-command.ts
|
|
171
175
|
models/create-country-command.ts
|
|
172
176
|
models/create-curation-command.ts
|
|
177
|
+
models/create-currency-command.ts
|
|
173
178
|
models/create-deal-command.ts
|
|
174
179
|
models/create-deal-package-command.ts
|
|
175
180
|
models/create-deal-service-command.ts
|
|
@@ -226,6 +231,9 @@ models/create-walk-in-appointment-command.ts
|
|
|
226
231
|
models/create-web-app-command.ts
|
|
227
232
|
models/curation-model.ts
|
|
228
233
|
models/curations-model.ts
|
|
234
|
+
models/currencies-model.ts
|
|
235
|
+
models/currency-item-model.ts
|
|
236
|
+
models/currency-model.ts
|
|
229
237
|
models/dash-board-model.ts
|
|
230
238
|
models/day-of-week.ts
|
|
231
239
|
models/deal-item-model.ts
|
|
@@ -469,6 +477,7 @@ models/reschedule-appointment-command.ts
|
|
|
469
477
|
models/review-type.ts
|
|
470
478
|
models/save-appointment-timetable-override-model.ts
|
|
471
479
|
models/save-appointment-timetable-overrides-result-model.ts
|
|
480
|
+
models/save-country-currency-command.ts
|
|
472
481
|
models/save-country-language-command.ts
|
|
473
482
|
models/save-deal-package-appointment-timetable-overrides-command.ts
|
|
474
483
|
models/save-doctor-affiliation-appointment-timetable-overrides-command.ts
|
|
@@ -507,7 +516,9 @@ models/set-hospital-into-form-template-command.ts
|
|
|
507
516
|
models/set-hospital-into-survey-form-command.ts
|
|
508
517
|
models/sns-handle-model.ts
|
|
509
518
|
models/sns-type.ts
|
|
519
|
+
models/sort-country-currencies-command.ts
|
|
510
520
|
models/sort-country-languages-command.ts
|
|
521
|
+
models/sort-currencies-command.ts
|
|
511
522
|
models/sort-footer-navigations-command.ts
|
|
512
523
|
models/sorting-item-model.ts
|
|
513
524
|
models/sorting-order.ts
|
|
@@ -590,6 +601,7 @@ models/update-contributor-command.ts
|
|
|
590
601
|
models/update-contributor-sns-handle-command.ts
|
|
591
602
|
models/update-country-command.ts
|
|
592
603
|
models/update-curation-command.ts
|
|
604
|
+
models/update-currency-command.ts
|
|
593
605
|
models/update-deal-command.ts
|
|
594
606
|
models/update-deal-package-command.ts
|
|
595
607
|
models/update-deal-service-command.ts
|