ch-admin-api-client-typescript 5.19.34 → 5.19.39
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 +48 -0
- package/lib/api/countries-api.d.ts.map +1 -1
- package/lib/api/countries-api.js +85 -0
- package/lib/api/hospitals-api.d.ts +178 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +276 -0
- package/lib/models/contact-sorting-command.d.ts +26 -0
- package/lib/models/contact-sorting-command.d.ts.map +1 -0
- package/lib/models/contact-sorting-command.js +15 -0
- package/lib/models/country-item-model.d.ts +6 -0
- package/lib/models/country-item-model.d.ts.map +1 -1
- package/lib/models/country-model.d.ts +6 -0
- package/lib/models/country-model.d.ts.map +1 -1
- package/lib/models/country-sorting-command.d.ts +26 -0
- package/lib/models/country-sorting-command.d.ts.map +1 -0
- package/lib/models/country-sorting-command.js +15 -0
- package/lib/models/create-country-command.d.ts +6 -0
- package/lib/models/create-country-command.d.ts.map +1 -1
- package/lib/models/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -0
- package/lib/models/notice-sorting-command.d.ts +26 -0
- package/lib/models/notice-sorting-command.d.ts.map +1 -0
- package/lib/models/notice-sorting-command.js +15 -0
- package/lib/models/sort-footer-navigations-command.d.ts +26 -0
- package/lib/models/sort-footer-navigations-command.d.ts.map +1 -0
- package/lib/models/sort-footer-navigations-command.js +15 -0
- package/lib/models/sorting-item-model.d.ts +31 -0
- package/lib/models/sorting-item-model.d.ts.map +1 -0
- package/lib/models/sorting-item-model.js +15 -0
- package/lib/models/sorting-result-model.d.ts +26 -0
- package/lib/models/sorting-result-model.d.ts.map +1 -0
- package/lib/models/sorting-result-model.js +15 -0
- package/lib/models/update-country-command.d.ts +6 -0
- package/lib/models/update-country-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +6 -0
- package/src/api/countries-api.ts +89 -0
- package/src/api/hospitals-api.ts +315 -0
- package/src/models/contact-sorting-command.ts +33 -0
- package/src/models/country-item-model.ts +6 -0
- package/src/models/country-model.ts +6 -0
- package/src/models/country-sorting-command.ts +33 -0
- package/src/models/create-country-command.ts +6 -0
- package/src/models/index.ts +6 -0
- package/src/models/notice-sorting-command.ts +33 -0
- package/src/models/sort-footer-navigations-command.ts +33 -0
- package/src/models/sorting-item-model.ts +36 -0
- package/src/models/sorting-result-model.ts +33 -0
- package/src/models/update-country-command.ts +6 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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 SortingItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface SortingItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SortingItemModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof SortingItemModel
|
|
33
|
+
*/
|
|
34
|
+
'order'?: number;
|
|
35
|
+
}
|
|
36
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@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 SortingResultModel
|
|
24
|
+
*/
|
|
25
|
+
export interface SortingResultModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<SortingItemModel>}
|
|
29
|
+
* @memberof SortingResultModel
|
|
30
|
+
*/
|
|
31
|
+
'items'?: Array<SortingItemModel> | null;
|
|
32
|
+
}
|
|
33
|
+
|