ch-admin-api-client-typescript 5.88.27 → 5.88.31

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 (63) hide show
  1. package/lib/api/badge-categories-api.d.ts +384 -0
  2. package/lib/api/badge-categories-api.d.ts.map +1 -0
  3. package/lib/api/badge-categories-api.js +718 -0
  4. package/lib/api/badges-api.d.ts +557 -0
  5. package/lib/api/badges-api.d.ts.map +1 -0
  6. package/lib/api/badges-api.js +950 -0
  7. package/lib/api/platform-interpretation-languages-api.d.ts +375 -0
  8. package/lib/api/platform-interpretation-languages-api.d.ts.map +1 -0
  9. package/lib/api/platform-interpretation-languages-api.js +712 -0
  10. package/lib/api.d.ts +3 -0
  11. package/lib/api.d.ts.map +1 -1
  12. package/lib/api.js +3 -0
  13. package/lib/models/badge-categories-model.d.ts +33 -0
  14. package/lib/models/badge-categories-model.d.ts.map +1 -0
  15. package/lib/models/badge-categories-model.js +15 -0
  16. package/lib/models/badge-category-item-model.d.ts +44 -0
  17. package/lib/models/badge-category-item-model.d.ts.map +1 -0
  18. package/lib/models/badge-category-item-model.js +15 -0
  19. package/lib/models/badge-category-model.d.ts +44 -0
  20. package/lib/models/badge-category-model.d.ts.map +1 -0
  21. package/lib/models/badge-category-model.js +15 -0
  22. package/lib/models/badge-item-model.d.ts +110 -0
  23. package/lib/models/badge-item-model.d.ts.map +1 -0
  24. package/lib/models/badge-item-model.js +15 -0
  25. package/lib/models/badge-model.d.ts +123 -0
  26. package/lib/models/badge-model.d.ts.map +1 -0
  27. package/lib/models/badge-model.js +15 -0
  28. package/lib/models/badges-model.d.ts +33 -0
  29. package/lib/models/badges-model.d.ts.map +1 -0
  30. package/lib/models/badges-model.js +15 -0
  31. package/lib/models/country-simple-item-model.d.ts +6 -0
  32. package/lib/models/country-simple-item-model.d.ts.map +1 -1
  33. package/lib/models/create-badge-category-command.d.ts +31 -0
  34. package/lib/models/create-badge-category-command.d.ts.map +1 -0
  35. package/lib/models/create-badge-category-command.js +15 -0
  36. package/lib/models/create-badge-command.d.ts +115 -0
  37. package/lib/models/create-badge-command.d.ts.map +1 -0
  38. package/lib/models/create-badge-command.js +15 -0
  39. package/lib/models/create-platform-interpretation-language-command.d.ts +37 -0
  40. package/lib/models/create-platform-interpretation-language-command.d.ts.map +1 -0
  41. package/lib/models/create-platform-interpretation-language-command.js +15 -0
  42. package/lib/models/index.d.ts +15 -0
  43. package/lib/models/index.d.ts.map +1 -1
  44. package/lib/models/index.js +15 -0
  45. package/lib/models/platform-interpretation-language-item-model.d.ts +56 -0
  46. package/lib/models/platform-interpretation-language-item-model.d.ts.map +1 -0
  47. package/lib/models/platform-interpretation-language-item-model.js +15 -0
  48. package/lib/models/platform-interpretation-language-model.d.ts +56 -0
  49. package/lib/models/platform-interpretation-language-model.d.ts.map +1 -0
  50. package/lib/models/platform-interpretation-language-model.js +15 -0
  51. package/lib/models/platform-interpretation-languages-model.d.ts +33 -0
  52. package/lib/models/platform-interpretation-languages-model.d.ts.map +1 -0
  53. package/lib/models/platform-interpretation-languages-model.js +15 -0
  54. package/lib/models/update-badge-category-command.d.ts +31 -0
  55. package/lib/models/update-badge-category-command.d.ts.map +1 -0
  56. package/lib/models/update-badge-category-command.js +15 -0
  57. package/lib/models/update-badge-command.d.ts +121 -0
  58. package/lib/models/update-badge-command.d.ts.map +1 -0
  59. package/lib/models/update-badge-command.js +15 -0
  60. package/lib/models/update-platform-interpretation-language-command.d.ts +31 -0
  61. package/lib/models/update-platform-interpretation-language-command.d.ts.map +1 -0
  62. package/lib/models/update-platform-interpretation-language-command.js +15 -0
  63. package/package.json +1 -1
@@ -0,0 +1,121 @@
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 UpdateBadgeCommand
16
+ */
17
+ export interface UpdateBadgeCommand {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof UpdateBadgeCommand
22
+ */
23
+ 'languageCode'?: string | null;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof UpdateBadgeCommand
28
+ */
29
+ 'badgeCategoryId'?: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof UpdateBadgeCommand
34
+ */
35
+ 'icon'?: string | null;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof UpdateBadgeCommand
40
+ */
41
+ 'backgroundColor'?: string | null;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof UpdateBadgeCommand
46
+ */
47
+ 'foregroundColor'?: string | null;
48
+ /**
49
+ *
50
+ * @type {boolean}
51
+ * @memberof UpdateBadgeCommand
52
+ */
53
+ 'displayAreaHospital'?: boolean;
54
+ /**
55
+ *
56
+ * @type {boolean}
57
+ * @memberof UpdateBadgeCommand
58
+ */
59
+ 'displayAreaDoctor'?: boolean;
60
+ /**
61
+ *
62
+ * @type {boolean}
63
+ * @memberof UpdateBadgeCommand
64
+ */
65
+ 'displayAreaDeal'?: boolean;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof UpdateBadgeCommand
70
+ */
71
+ 'policy'?: string | null;
72
+ /**
73
+ *
74
+ * @type {number}
75
+ * @memberof UpdateBadgeCommand
76
+ */
77
+ 'order'?: number;
78
+ /**
79
+ *
80
+ * @type {boolean}
81
+ * @memberof UpdateBadgeCommand
82
+ */
83
+ 'published'?: boolean;
84
+ /**
85
+ *
86
+ * @type {string}
87
+ * @memberof UpdateBadgeCommand
88
+ */
89
+ 'name'?: string | null;
90
+ /**
91
+ *
92
+ * @type {string}
93
+ * @memberof UpdateBadgeCommand
94
+ */
95
+ 'overview'?: string | null;
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof UpdateBadgeCommand
100
+ */
101
+ 'description'?: string | null;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof UpdateBadgeCommand
106
+ */
107
+ 'content'?: string | null;
108
+ /**
109
+ *
110
+ * @type {boolean}
111
+ * @memberof UpdateBadgeCommand
112
+ */
113
+ 'isConfirmed'?: boolean;
114
+ /**
115
+ *
116
+ * @type {Array<string>}
117
+ * @memberof UpdateBadgeCommand
118
+ */
119
+ 'excludedCountries'?: Array<string> | null;
120
+ }
121
+ //# sourceMappingURL=update-badge-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-badge-command.d.ts","sourceRoot":"","sources":["../../src/models/update-badge-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,kBAAkB;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC;;;;OAIG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAC5B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B;;;;OAIG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAC9C"}
@@ -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,31 @@
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 UpdatePlatformInterpretationLanguageCommand
16
+ */
17
+ export interface UpdatePlatformInterpretationLanguageCommand {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof UpdatePlatformInterpretationLanguageCommand
22
+ */
23
+ 'order'?: number;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof UpdatePlatformInterpretationLanguageCommand
28
+ */
29
+ 'published'?: boolean;
30
+ }
31
+ //# sourceMappingURL=update-platform-interpretation-language-command.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"update-platform-interpretation-language-command.d.ts","sourceRoot":"","sources":["../../src/models/update-platform-interpretation-language-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AACH,MAAM,WAAW,2CAA2C;IACxD;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ch-admin-api-client-typescript",
3
- "version": "5.88.27",
3
+ "version": "5.88.31",
4
4
  "description": "Openapi generated typescript-axios client for CloudHospital admin",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",