ch-admin-api-client-typescript 5.5.2 → 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 (79) 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/search-curations-api.d.ts +309 -0
  8. package/lib/api/search-curations-api.d.ts.map +1 -0
  9. package/lib/api/search-curations-api.js +579 -0
  10. package/lib/api/specialties-api.d.ts +56 -0
  11. package/lib/api/specialties-api.d.ts.map +1 -1
  12. package/lib/api/specialties-api.js +90 -0
  13. package/lib/api/specialty-types-api.d.ts +56 -0
  14. package/lib/api/specialty-types-api.d.ts.map +1 -1
  15. package/lib/api/specialty-types-api.js +90 -0
  16. package/lib/api.d.ts +2 -0
  17. package/lib/api.d.ts.map +1 -1
  18. package/lib/api.js +2 -0
  19. package/lib/models/call-statistics-model.d.ts +1 -1
  20. package/lib/models/call-statistics-model.d.ts.map +1 -1
  21. package/lib/models/index.d.ts +10 -0
  22. package/lib/models/index.d.ts.map +1 -1
  23. package/lib/models/index.js +10 -0
  24. package/lib/models/save-search-curations-command.d.ts +26 -0
  25. package/lib/models/save-search-curations-command.d.ts.map +1 -0
  26. package/lib/models/save-search-curations-command.js +15 -0
  27. package/lib/models/search-curation-item-input-model.d.ts +73 -0
  28. package/lib/models/search-curation-item-input-model.d.ts.map +1 -0
  29. package/lib/models/search-curation-item-input-model.js +15 -0
  30. package/lib/models/search-curation-item-model.d.ts +79 -0
  31. package/lib/models/search-curation-item-model.d.ts.map +1 -0
  32. package/lib/models/search-curation-item-model.js +15 -0
  33. package/lib/models/translate-doctor-affiliation-command.d.ts +6 -0
  34. package/lib/models/translate-doctor-affiliation-command.d.ts.map +1 -1
  35. package/lib/models/translate-hospital-command.d.ts +6 -0
  36. package/lib/models/translate-hospital-command.d.ts.map +1 -1
  37. package/lib/models/translate-hospital-service-command.d.ts +44 -0
  38. package/lib/models/translate-hospital-service-command.d.ts.map +1 -0
  39. package/lib/models/translate-hospital-service-command.js +15 -0
  40. package/lib/models/translate-hospital-specialty-command.d.ts +44 -0
  41. package/lib/models/translate-hospital-specialty-command.d.ts.map +1 -0
  42. package/lib/models/translate-hospital-specialty-command.js +15 -0
  43. package/lib/models/translate-specialty-command.d.ts +44 -0
  44. package/lib/models/translate-specialty-command.d.ts.map +1 -0
  45. package/lib/models/translate-specialty-command.js +15 -0
  46. package/lib/models/translate-specialty-type-command.d.ts +44 -0
  47. package/lib/models/translate-specialty-type-command.d.ts.map +1 -0
  48. package/lib/models/translate-specialty-type-command.js +15 -0
  49. package/lib/models/translation-contents-model.d.ts +56 -0
  50. package/lib/models/translation-contents-model.d.ts.map +1 -0
  51. package/lib/models/translation-contents-model.js +15 -0
  52. package/lib/models/translation-contents-target-model.d.ts +43 -0
  53. package/lib/models/translation-contents-target-model.d.ts.map +1 -0
  54. package/lib/models/translation-contents-target-model.js +15 -0
  55. package/lib/models/translation-target-entities.d.ts +24 -0
  56. package/lib/models/translation-target-entities.d.ts.map +1 -0
  57. package/lib/models/translation-target-entities.js +27 -0
  58. package/package.json +1 -1
  59. package/src/.openapi-generator/FILES +12 -0
  60. package/src/api/dev-supports-api.ts +208 -0
  61. package/src/api/hospitals-api.ts +239 -0
  62. package/src/api/search-curations-api.ts +539 -0
  63. package/src/api/specialties-api.ts +100 -0
  64. package/src/api/specialty-types-api.ts +100 -0
  65. package/src/api.ts +2 -0
  66. package/src/models/call-statistics-model.ts +1 -1
  67. package/src/models/index.ts +10 -0
  68. package/src/models/save-search-curations-command.ts +33 -0
  69. package/src/models/search-curation-item-input-model.ts +78 -0
  70. package/src/models/search-curation-item-model.ts +84 -0
  71. package/src/models/translate-doctor-affiliation-command.ts +6 -0
  72. package/src/models/translate-hospital-command.ts +6 -0
  73. package/src/models/translate-hospital-service-command.ts +51 -0
  74. package/src/models/translate-hospital-specialty-command.ts +51 -0
  75. package/src/models/translate-specialty-command.ts +51 -0
  76. package/src/models/translate-specialty-type-command.ts +51 -0
  77. package/src/models/translation-contents-model.ts +63 -0
  78. package/src/models/translation-contents-target-model.ts +48 -0
  79. package/src/models/translation-target-entities.ts +33 -0
@@ -41,6 +41,8 @@ import { SpecialtyTypesModel } from '../models';
41
41
  // @ts-ignore
42
42
  import { SpecialtyTypesSimpleModel } from '../models';
43
43
  // @ts-ignore
44
+ import { TranslateSpecialtyTypeCommand } from '../models';
45
+ // @ts-ignore
44
46
  import { UpdateMediaCommand } from '../models';
45
47
  // @ts-ignore
46
48
  import { UpdateSpecialtyTypeCommand } from '../models';
@@ -798,6 +800,48 @@ export const SpecialtyTypesApiAxiosParamCreator = function (configuration?: Conf
798
800
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
799
801
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
800
802
 
803
+ return {
804
+ url: toPathString(localVarUrlObj),
805
+ options: localVarRequestOptions,
806
+ };
807
+ },
808
+ /**
809
+ *
810
+ * @summary Translate speciatyType
811
+ * @param {string} specialtyTypeId
812
+ * @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
813
+ * @param {*} [options] Override http request option.
814
+ * @throws {RequiredError}
815
+ */
816
+ apiV1SpecialtytypesSpecialtyTypeIdTranslatePost: async (specialtyTypeId: string, translateSpecialtyTypeCommand?: TranslateSpecialtyTypeCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
817
+ // verify required parameter 'specialtyTypeId' is not null or undefined
818
+ assertParamExists('apiV1SpecialtytypesSpecialtyTypeIdTranslatePost', 'specialtyTypeId', specialtyTypeId)
819
+ const localVarPath = `/api/v1/specialtytypes/{specialtyTypeId}/translate`
820
+ .replace(`{${"specialtyTypeId"}}`, encodeURIComponent(String(specialtyTypeId)));
821
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
822
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
823
+ let baseOptions;
824
+ if (configuration) {
825
+ baseOptions = configuration.baseOptions;
826
+ }
827
+
828
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
829
+ const localVarHeaderParameter = {} as any;
830
+ const localVarQueryParameter = {} as any;
831
+
832
+ // authentication oauth2 required
833
+ // oauth required
834
+ await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
835
+
836
+
837
+
838
+ localVarHeaderParameter['Content-Type'] = 'application/json';
839
+
840
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
841
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
842
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
843
+ localVarRequestOptions.data = serializeDataIfNeeded(translateSpecialtyTypeCommand, localVarRequestOptions, configuration)
844
+
801
845
  return {
802
846
  url: toPathString(localVarUrlObj),
803
847
  options: localVarRequestOptions,
@@ -1010,6 +1054,18 @@ export const SpecialtyTypesApiFp = function(configuration?: Configuration) {
1010
1054
  const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(specialtyTypeId, includeCurrent, options);
1011
1055
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1012
1056
  },
1057
+ /**
1058
+ *
1059
+ * @summary Translate speciatyType
1060
+ * @param {string} specialtyTypeId
1061
+ * @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
1062
+ * @param {*} [options] Override http request option.
1063
+ * @throws {RequiredError}
1064
+ */
1065
+ async apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(specialtyTypeId: string, translateSpecialtyTypeCommand?: TranslateSpecialtyTypeCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
1066
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(specialtyTypeId, translateSpecialtyTypeCommand, options);
1067
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
1068
+ },
1013
1069
  }
1014
1070
  };
1015
1071
 
@@ -1203,6 +1259,17 @@ export const SpecialtyTypesApiFactory = function (configuration?: Configuration,
1203
1259
  apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(specialtyTypeId: string, includeCurrent?: boolean, options?: any): AxiosPromise<boolean> {
1204
1260
  return localVarFp.apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(specialtyTypeId, includeCurrent, options).then((request) => request(axios, basePath));
1205
1261
  },
1262
+ /**
1263
+ *
1264
+ * @summary Translate speciatyType
1265
+ * @param {string} specialtyTypeId
1266
+ * @param {TranslateSpecialtyTypeCommand} [translateSpecialtyTypeCommand]
1267
+ * @param {*} [options] Override http request option.
1268
+ * @throws {RequiredError}
1269
+ */
1270
+ apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(specialtyTypeId: string, translateSpecialtyTypeCommand?: TranslateSpecialtyTypeCommand, options?: any): AxiosPromise<boolean> {
1271
+ return localVarFp.apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(specialtyTypeId, translateSpecialtyTypeCommand, options).then((request) => request(axios, basePath));
1272
+ },
1206
1273
  };
1207
1274
  };
1208
1275
 
@@ -1703,6 +1770,27 @@ export interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdRevalidatePo
1703
1770
  readonly includeCurrent?: boolean
1704
1771
  }
1705
1772
 
1773
+ /**
1774
+ * Request parameters for apiV1SpecialtytypesSpecialtyTypeIdTranslatePost operation in SpecialtyTypesApi.
1775
+ * @export
1776
+ * @interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePostRequest
1777
+ */
1778
+ export interface SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePostRequest {
1779
+ /**
1780
+ *
1781
+ * @type {string}
1782
+ * @memberof SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePost
1783
+ */
1784
+ readonly specialtyTypeId: string
1785
+
1786
+ /**
1787
+ *
1788
+ * @type {TranslateSpecialtyTypeCommand}
1789
+ * @memberof SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePost
1790
+ */
1791
+ readonly translateSpecialtyTypeCommand?: TranslateSpecialtyTypeCommand
1792
+ }
1793
+
1706
1794
  /**
1707
1795
  * SpecialtyTypesApi - object-oriented interface
1708
1796
  * @export
@@ -1877,4 +1965,16 @@ export class SpecialtyTypesApi extends BaseAPI {
1877
1965
  public apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdRevalidatePostRequest, options?: AxiosRequestConfig) {
1878
1966
  return SpecialtyTypesApiFp(this.configuration).apiV1SpecialtytypesSpecialtyTypeIdRevalidatePost(requestParameters.specialtyTypeId, requestParameters.includeCurrent, options).then((request) => request(this.axios, this.basePath));
1879
1967
  }
1968
+
1969
+ /**
1970
+ *
1971
+ * @summary Translate speciatyType
1972
+ * @param {SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePostRequest} requestParameters Request parameters.
1973
+ * @param {*} [options] Override http request option.
1974
+ * @throws {RequiredError}
1975
+ * @memberof SpecialtyTypesApi
1976
+ */
1977
+ public apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(requestParameters: SpecialtyTypesApiApiV1SpecialtytypesSpecialtyTypeIdTranslatePostRequest, options?: AxiosRequestConfig) {
1978
+ return SpecialtyTypesApiFp(this.configuration).apiV1SpecialtytypesSpecialtyTypeIdTranslatePost(requestParameters.specialtyTypeId, requestParameters.translateSpecialtyTypeCommand, options).then((request) => request(this.axios, this.basePath));
1979
+ }
1880
1980
  }
package/src/api.ts CHANGED
@@ -30,6 +30,7 @@ export * from './api/contributors-api';
30
30
  export * from './api/countries-api';
31
31
  export * from './api/dash-board-api';
32
32
  export * from './api/deals-api';
33
+ export * from './api/dev-supports-api';
33
34
  export * from './api/doctor-affiliations-api';
34
35
  export * from './api/doctors-api';
35
36
  export * from './api/email-marketings-api';
@@ -51,6 +52,7 @@ export * from './api/payments-api';
51
52
  export * from './api/plans-api';
52
53
  export * from './api/profiles-api';
53
54
  export * from './api/search-api';
55
+ export * from './api/search-curations-api';
54
56
  export * from './api/service-reviews-api';
55
57
  export * from './api/services-api';
56
58
  export * from './api/services-categories-api';
@@ -28,7 +28,7 @@ export interface CallStatisticsModel {
28
28
  * @type {number}
29
29
  * @memberof CallStatisticsModel
30
30
  */
31
- 'contactCount'?: number;
31
+ 'totalCallCount'?: number;
32
32
  /**
33
33
  *
34
34
  * @type {number}
@@ -344,7 +344,10 @@ export * from './save-hospital-appointment-timetable-overrides-command';
344
344
  export * from './save-hospital-consultation-timetable-override-model';
345
345
  export * from './save-hospital-consultation-timetable-overrides-command';
346
346
  export * from './save-hospital-specialty-appointment-timetable-overrides-command';
347
+ export * from './save-search-curations-command';
347
348
  export * from './save-service-appointment-timetable-overrides-command';
349
+ export * from './search-curation-item-input-model';
350
+ export * from './search-curation-item-model';
348
351
  export * from './search-index-type';
349
352
  export * from './search-pattern';
350
353
  export * from './secret';
@@ -417,6 +420,13 @@ export * from './translate-all-options';
417
420
  export * from './translate-command';
418
421
  export * from './translate-doctor-affiliation-command';
419
422
  export * from './translate-hospital-command';
423
+ export * from './translate-hospital-service-command';
424
+ export * from './translate-hospital-specialty-command';
425
+ export * from './translate-specialty-command';
426
+ export * from './translate-specialty-type-command';
427
+ export * from './translation-contents-model';
428
+ export * from './translation-contents-target-model';
429
+ export * from './translation-target-entities';
420
430
  export * from './update-about-us-page-command';
421
431
  export * from './update-account-command';
422
432
  export * from './update-accreditation-command';
@@ -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 { SearchCurationItemInputModel } from './search-curation-item-input-model';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface SaveSearchCurationsCommand
24
+ */
25
+ export interface SaveSearchCurationsCommand {
26
+ /**
27
+ *
28
+ * @type {SearchCurationItemInputModel}
29
+ * @memberof SaveSearchCurationsCommand
30
+ */
31
+ 'item'?: SearchCurationItemInputModel;
32
+ }
33
+
@@ -0,0 +1,78 @@
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 SearchCurationItemInputModel
21
+ */
22
+ export interface SearchCurationItemInputModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SearchCurationItemInputModel
27
+ */
28
+ 'id'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SearchCurationItemInputModel
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof SearchCurationItemInputModel
39
+ */
40
+ 'searchTerm'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SearchCurationItemInputModel
45
+ */
46
+ 'description'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SearchCurationItemInputModel
51
+ */
52
+ 'imageUrl'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof SearchCurationItemInputModel
57
+ */
58
+ 'imageThumbnailUrl'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof SearchCurationItemInputModel
63
+ */
64
+ 'parentId'?: string | null;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof SearchCurationItemInputModel
69
+ */
70
+ 'order'?: number;
71
+ /**
72
+ *
73
+ * @type {Array<SearchCurationItemInputModel>}
74
+ * @memberof SearchCurationItemInputModel
75
+ */
76
+ 'subItems'?: Array<SearchCurationItemInputModel> | null;
77
+ }
78
+
@@ -0,0 +1,84 @@
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 SearchCurationItemModel
21
+ */
22
+ export interface SearchCurationItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof SearchCurationItemModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof SearchCurationItemModel
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof SearchCurationItemModel
39
+ */
40
+ 'searchTerm'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof SearchCurationItemModel
45
+ */
46
+ 'description'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SearchCurationItemModel
51
+ */
52
+ 'imageUrl'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof SearchCurationItemModel
57
+ */
58
+ 'imageThumbnailUrl'?: string | null;
59
+ /**
60
+ *
61
+ * @type {number}
62
+ * @memberof SearchCurationItemModel
63
+ */
64
+ 'level'?: number;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof SearchCurationItemModel
69
+ */
70
+ 'order'?: number;
71
+ /**
72
+ *
73
+ * @type {string}
74
+ * @memberof SearchCurationItemModel
75
+ */
76
+ 'parentId'?: string | null;
77
+ /**
78
+ *
79
+ * @type {Array<SearchCurationItemModel>}
80
+ * @memberof SearchCurationItemModel
81
+ */
82
+ 'subItems'?: Array<SearchCurationItemModel> | null;
83
+ }
84
+
@@ -41,5 +41,11 @@ export interface TranslateDoctorAffiliationCommand {
41
41
  * @memberof TranslateDoctorAffiliationCommand
42
42
  */
43
43
  'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateDoctorAffiliationCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
44
50
  }
45
51
 
@@ -41,5 +41,11 @@ export interface TranslateHospitalCommand {
41
41
  * @memberof TranslateHospitalCommand
42
42
  */
43
43
  'translateToLanguageCodes'?: Array<string> | null;
44
+ /**
45
+ *
46
+ * @type {Array<string>}
47
+ * @memberof TranslateHospitalCommand
48
+ */
49
+ 'translateToFields'?: Array<string> | null;
44
50
  }
45
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 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
+