ch-admin-api-client-typescript 5.5.3 → 5.5.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 (60) hide show
  1. package/lib/api/dev-supports-api.d.ts +125 -0
  2. package/lib/api/dev-supports-api.d.ts.map +1 -0
  3. package/lib/api/dev-supports-api.js +244 -0
  4. package/lib/api/hospitals-api.d.ts +139 -0
  5. package/lib/api/hospitals-api.d.ts.map +1 -1
  6. package/lib/api/hospitals-api.js +198 -0
  7. package/lib/api/specialties-api.d.ts +56 -0
  8. package/lib/api/specialties-api.d.ts.map +1 -1
  9. package/lib/api/specialties-api.js +90 -0
  10. package/lib/api/specialty-types-api.d.ts +56 -0
  11. package/lib/api/specialty-types-api.d.ts.map +1 -1
  12. package/lib/api/specialty-types-api.js +90 -0
  13. package/lib/api.d.ts +1 -0
  14. package/lib/api.d.ts.map +1 -1
  15. package/lib/api.js +1 -0
  16. package/lib/models/index.d.ts +7 -0
  17. package/lib/models/index.d.ts.map +1 -1
  18. package/lib/models/index.js +7 -0
  19. package/lib/models/translate-doctor-affiliation-command.d.ts +6 -0
  20. package/lib/models/translate-doctor-affiliation-command.d.ts.map +1 -1
  21. package/lib/models/translate-hospital-command.d.ts +6 -0
  22. package/lib/models/translate-hospital-command.d.ts.map +1 -1
  23. package/lib/models/translate-hospital-service-command.d.ts +44 -0
  24. package/lib/models/translate-hospital-service-command.d.ts.map +1 -0
  25. package/lib/models/translate-hospital-service-command.js +15 -0
  26. package/lib/models/translate-hospital-specialty-command.d.ts +44 -0
  27. package/lib/models/translate-hospital-specialty-command.d.ts.map +1 -0
  28. package/lib/models/translate-hospital-specialty-command.js +15 -0
  29. package/lib/models/translate-specialty-command.d.ts +44 -0
  30. package/lib/models/translate-specialty-command.d.ts.map +1 -0
  31. package/lib/models/translate-specialty-command.js +15 -0
  32. package/lib/models/translate-specialty-type-command.d.ts +44 -0
  33. package/lib/models/translate-specialty-type-command.d.ts.map +1 -0
  34. package/lib/models/translate-specialty-type-command.js +15 -0
  35. package/lib/models/translation-contents-model.d.ts +56 -0
  36. package/lib/models/translation-contents-model.d.ts.map +1 -0
  37. package/lib/models/translation-contents-model.js +15 -0
  38. package/lib/models/translation-contents-target-model.d.ts +43 -0
  39. package/lib/models/translation-contents-target-model.d.ts.map +1 -0
  40. package/lib/models/translation-contents-target-model.js +15 -0
  41. package/lib/models/translation-target-entities.d.ts +24 -0
  42. package/lib/models/translation-target-entities.d.ts.map +1 -0
  43. package/lib/models/translation-target-entities.js +27 -0
  44. package/package.json +1 -1
  45. package/src/.openapi-generator/FILES +8 -0
  46. package/src/api/dev-supports-api.ts +208 -0
  47. package/src/api/hospitals-api.ts +239 -0
  48. package/src/api/specialties-api.ts +100 -0
  49. package/src/api/specialty-types-api.ts +100 -0
  50. package/src/api.ts +1 -0
  51. package/src/models/index.ts +7 -0
  52. package/src/models/translate-doctor-affiliation-command.ts +6 -0
  53. package/src/models/translate-hospital-command.ts +6 -0
  54. package/src/models/translate-hospital-service-command.ts +51 -0
  55. package/src/models/translate-hospital-specialty-command.ts +51 -0
  56. package/src/models/translate-specialty-command.ts +51 -0
  57. package/src/models/translate-specialty-type-command.ts +51 -0
  58. package/src/models/translation-contents-model.ts +63 -0
  59. package/src/models/translation-contents-target-model.ts +48 -0
  60. package/src/models/translation-target-entities.ts +33 -0
@@ -0,0 +1,51 @@
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 { TranslateAllOptions } from './translate-all-options';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TranslateHospitalServiceCommand
24
+ */
25
+ export interface TranslateHospitalServiceCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof TranslateHospitalServiceCommand
30
+ */
31
+ 'basisLanguageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {TranslateAllOptions}
35
+ * @memberof TranslateHospitalServiceCommand
36
+ */
37
+ 'translationOption'?: TranslateAllOptions;
38
+ /**
39
+ *
40
+ * @type {Array<string>}
41
+ * @memberof TranslateHospitalServiceCommand
42
+ */
43
+ 'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateHospitalServiceCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
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 { TranslateAllOptions } from './translate-all-options';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TranslateHospitalSpecialtyCommand
24
+ */
25
+ export interface TranslateHospitalSpecialtyCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof TranslateHospitalSpecialtyCommand
30
+ */
31
+ 'basisLanguageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {TranslateAllOptions}
35
+ * @memberof TranslateHospitalSpecialtyCommand
36
+ */
37
+ 'translationOption'?: TranslateAllOptions;
38
+ /**
39
+ *
40
+ * @type {Array<string>}
41
+ * @memberof TranslateHospitalSpecialtyCommand
42
+ */
43
+ 'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateHospitalSpecialtyCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
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 { TranslateAllOptions } from './translate-all-options';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TranslateSpecialtyCommand
24
+ */
25
+ export interface TranslateSpecialtyCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof TranslateSpecialtyCommand
30
+ */
31
+ 'basisLanguageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {TranslateAllOptions}
35
+ * @memberof TranslateSpecialtyCommand
36
+ */
37
+ 'translationOption'?: TranslateAllOptions;
38
+ /**
39
+ *
40
+ * @type {Array<string>}
41
+ * @memberof TranslateSpecialtyCommand
42
+ */
43
+ 'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateSpecialtyCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
50
+ }
51
+
@@ -0,0 +1,51 @@
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 { TranslateAllOptions } from './translate-all-options';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TranslateSpecialtyTypeCommand
24
+ */
25
+ export interface TranslateSpecialtyTypeCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof TranslateSpecialtyTypeCommand
30
+ */
31
+ 'basisLanguageCode'?: string | null;
32
+ /**
33
+ *
34
+ * @type {TranslateAllOptions}
35
+ * @memberof TranslateSpecialtyTypeCommand
36
+ */
37
+ 'translationOption'?: TranslateAllOptions;
38
+ /**
39
+ *
40
+ * @type {Array<string>}
41
+ * @memberof TranslateSpecialtyTypeCommand
42
+ */
43
+ 'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateSpecialtyTypeCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
50
+ }
51
+
@@ -0,0 +1,63 @@
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 { TranslationContentsTargetModel } from './translation-contents-target-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface TranslationContentsModel
24
+ */
25
+ export interface TranslationContentsModel {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof TranslationContentsModel
30
+ */
31
+ 'targetEntity'?: string | null;
32
+ /**
33
+ *
34
+ * @type {string}
35
+ * @memberof TranslationContentsModel
36
+ */
37
+ 'jobId'?: string | null;
38
+ /**
39
+ *
40
+ * @type {number}
41
+ * @memberof TranslationContentsModel
42
+ */
43
+ 'entriesCount'?: number;
44
+ /**
45
+ *
46
+ * @type {number}
47
+ * @memberof TranslationContentsModel
48
+ */
49
+ 'entitiesTranslateNeededCount'?: number;
50
+ /**
51
+ *
52
+ * @type {number}
53
+ * @memberof TranslationContentsModel
54
+ */
55
+ 'countOfTranslationAttempts'?: number;
56
+ /**
57
+ *
58
+ * @type {Array<TranslationContentsTargetModel>}
59
+ * @memberof TranslationContentsModel
60
+ */
61
+ 'targets'?: Array<TranslationContentsTargetModel> | null;
62
+ }
63
+
@@ -0,0 +1,48 @@
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 TranslationContentsTargetModel
21
+ */
22
+ export interface TranslationContentsTargetModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof TranslationContentsTargetModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof TranslationContentsTargetModel
33
+ */
34
+ 'targetEntity'?: string | null;
35
+ /**
36
+ *
37
+ * @type {boolean}
38
+ * @memberof TranslationContentsTargetModel
39
+ */
40
+ 'needToTranslate'?: boolean;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof TranslationContentsTargetModel
45
+ */
46
+ 'needToTranslateCount'?: number;
47
+ }
48
+
@@ -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
+
17
+ /**
18
+ *
19
+ * @export
20
+ * @enum {string}
21
+ */
22
+
23
+ export const TranslationTargetEntities = {
24
+ SpecialtyType: 'SpecialtyType',
25
+ Specialty: 'Specialty',
26
+ HospitalSpecialty: 'HospitalSpecialty',
27
+ HospitalService: 'HospitalService'
28
+ } as const;
29
+
30
+ export type TranslationTargetEntities = typeof TranslationTargetEntities[keyof typeof TranslationTargetEntities];
31
+
32
+
33
+