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.
Files changed (50) hide show
  1. package/lib/api/countries-api.d.ts +48 -0
  2. package/lib/api/countries-api.d.ts.map +1 -1
  3. package/lib/api/countries-api.js +85 -0
  4. package/lib/api/hospitals-api.d.ts +178 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +276 -0
  7. package/lib/models/contact-sorting-command.d.ts +26 -0
  8. package/lib/models/contact-sorting-command.d.ts.map +1 -0
  9. package/lib/models/contact-sorting-command.js +15 -0
  10. package/lib/models/country-item-model.d.ts +6 -0
  11. package/lib/models/country-item-model.d.ts.map +1 -1
  12. package/lib/models/country-model.d.ts +6 -0
  13. package/lib/models/country-model.d.ts.map +1 -1
  14. package/lib/models/country-sorting-command.d.ts +26 -0
  15. package/lib/models/country-sorting-command.d.ts.map +1 -0
  16. package/lib/models/country-sorting-command.js +15 -0
  17. package/lib/models/create-country-command.d.ts +6 -0
  18. package/lib/models/create-country-command.d.ts.map +1 -1
  19. package/lib/models/index.d.ts +6 -0
  20. package/lib/models/index.d.ts.map +1 -1
  21. package/lib/models/index.js +6 -0
  22. package/lib/models/notice-sorting-command.d.ts +26 -0
  23. package/lib/models/notice-sorting-command.d.ts.map +1 -0
  24. package/lib/models/notice-sorting-command.js +15 -0
  25. package/lib/models/sort-footer-navigations-command.d.ts +26 -0
  26. package/lib/models/sort-footer-navigations-command.d.ts.map +1 -0
  27. package/lib/models/sort-footer-navigations-command.js +15 -0
  28. package/lib/models/sorting-item-model.d.ts +31 -0
  29. package/lib/models/sorting-item-model.d.ts.map +1 -0
  30. package/lib/models/sorting-item-model.js +15 -0
  31. package/lib/models/sorting-result-model.d.ts +26 -0
  32. package/lib/models/sorting-result-model.d.ts.map +1 -0
  33. package/lib/models/sorting-result-model.js +15 -0
  34. package/lib/models/update-country-command.d.ts +6 -0
  35. package/lib/models/update-country-command.d.ts.map +1 -1
  36. package/package.json +1 -1
  37. package/src/.openapi-generator/FILES +6 -0
  38. package/src/api/countries-api.ts +89 -0
  39. package/src/api/hospitals-api.ts +315 -0
  40. package/src/models/contact-sorting-command.ts +33 -0
  41. package/src/models/country-item-model.ts +6 -0
  42. package/src/models/country-model.ts +6 -0
  43. package/src/models/country-sorting-command.ts +33 -0
  44. package/src/models/create-country-command.ts +6 -0
  45. package/src/models/index.ts +6 -0
  46. package/src/models/notice-sorting-command.ts +33 -0
  47. package/src/models/sort-footer-navigations-command.ts +33 -0
  48. package/src/models/sorting-item-model.ts +36 -0
  49. package/src/models/sorting-result-model.ts +33 -0
  50. 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
+
@@ -53,6 +53,12 @@ export interface UpdateCountryCommand {
53
53
  * @memberof UpdateCountryCommand
54
54
  */
55
55
  'backgroundThumbnail'?: string | null;
56
+ /**
57
+ *
58
+ * @type {number}
59
+ * @memberof UpdateCountryCommand
60
+ */
61
+ 'order'?: number;
56
62
  /**
57
63
  *
58
64
  * @type {string}