ch-admin-api-client-typescript 5.1.8 → 5.2.0

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 (98) hide show
  1. package/lib/api/contributors-api.d.ts +3 -12
  2. package/lib/api/contributors-api.d.ts.map +1 -1
  3. package/lib/api/contributors-api.js +6 -12
  4. package/lib/api/grades-api.d.ts +339 -0
  5. package/lib/api/grades-api.d.ts.map +1 -0
  6. package/lib/api/grades-api.js +600 -0
  7. package/lib/api/hospitals-api.d.ts +333 -0
  8. package/lib/api/hospitals-api.d.ts.map +1 -1
  9. package/lib/api/hospitals-api.js +491 -0
  10. package/lib/api/survey-results-api.d.ts +12 -3
  11. package/lib/api/survey-results-api.d.ts.map +1 -1
  12. package/lib/api/survey-results-api.js +12 -6
  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/create-grade-command.d.ts +44 -0
  17. package/lib/models/create-grade-command.d.ts.map +1 -0
  18. package/lib/models/create-hospital-command.d.ts +6 -0
  19. package/lib/models/create-hospital-command.d.ts.map +1 -1
  20. package/lib/models/create-hospital-contact-command.d.ts +55 -0
  21. package/lib/models/create-hospital-contact-command.d.ts.map +1 -0
  22. package/lib/models/create-hospital-contact-command.js +15 -0
  23. package/lib/models/create-survey-form-command.d.ts +6 -0
  24. package/lib/models/create-survey-form-command.d.ts.map +1 -1
  25. package/lib/models/grade-item-model.d.ts +57 -0
  26. package/lib/models/grade-item-model.d.ts.map +1 -0
  27. package/lib/models/grade-item-model.js +15 -0
  28. package/lib/models/grade-model.d.ts +57 -0
  29. package/lib/models/grade-model.d.ts.map +1 -0
  30. package/lib/models/grade-model.js +15 -0
  31. package/lib/models/grade-targets.d.ts +22 -0
  32. package/lib/models/grade-targets.d.ts.map +1 -0
  33. package/lib/models/grade-targets.js +25 -0
  34. package/lib/models/grades-model.d.ts +33 -0
  35. package/lib/models/grades-model.d.ts.map +1 -0
  36. package/lib/models/grades-model.js +15 -0
  37. package/lib/models/{survey-result-item-model.d.ts → hospital-contact-item-model.d.ts} +18 -25
  38. package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
  39. package/lib/models/hospital-contact-item-model.js +15 -0
  40. package/lib/models/hospital-contact-model.d.ts +67 -0
  41. package/lib/models/hospital-contact-model.d.ts.map +1 -0
  42. package/lib/models/hospital-contact-model.js +15 -0
  43. package/lib/models/hospital-contacts-model.d.ts +33 -0
  44. package/lib/models/hospital-contacts-model.d.ts.map +1 -0
  45. package/lib/models/hospital-contacts-model.js +15 -0
  46. package/lib/models/hospital-item-model.d.ts +13 -0
  47. package/lib/models/hospital-item-model.d.ts.map +1 -1
  48. package/lib/models/hospital-model.d.ts +13 -0
  49. package/lib/models/hospital-model.d.ts.map +1 -1
  50. package/lib/models/index.d.ts +11 -1
  51. package/lib/models/index.d.ts.map +1 -1
  52. package/lib/models/index.js +11 -1
  53. package/lib/models/survey-form-item-model.d.ts +6 -0
  54. package/lib/models/survey-form-item-model.d.ts.map +1 -1
  55. package/lib/models/survey-form-model.d.ts +6 -0
  56. package/lib/models/survey-form-model.d.ts.map +1 -1
  57. package/lib/models/survey-results-model.d.ts +3 -3
  58. package/lib/models/survey-results-model.d.ts.map +1 -1
  59. package/lib/models/update-grade-command.d.ts +37 -0
  60. package/lib/models/update-grade-command.d.ts.map +1 -0
  61. package/lib/models/update-grade-command.js +15 -0
  62. package/lib/models/update-hospital-command.d.ts +6 -0
  63. package/lib/models/update-hospital-command.d.ts.map +1 -1
  64. package/lib/models/update-hospital-contact-command.d.ts +55 -0
  65. package/lib/models/update-hospital-contact-command.d.ts.map +1 -0
  66. package/lib/models/update-hospital-contact-command.js +15 -0
  67. package/lib/models/update-survey-form-command.d.ts +6 -0
  68. package/lib/models/update-survey-form-command.d.ts.map +1 -1
  69. package/package.json +1 -1
  70. package/src/.openapi-generator/FILES +12 -1
  71. package/src/api/contributors-api.ts +6 -20
  72. package/src/api/grades-api.ts +595 -0
  73. package/src/api/hospitals-api.ts +584 -0
  74. package/src/api/survey-results-api.ts +20 -6
  75. package/src/api.ts +1 -0
  76. package/src/models/create-grade-command.ts +51 -0
  77. package/src/models/create-hospital-command.ts +6 -0
  78. package/src/models/create-hospital-contact-command.ts +60 -0
  79. package/src/models/create-survey-form-command.ts +6 -0
  80. package/src/models/grade-item-model.ts +66 -0
  81. package/src/models/grade-model.ts +66 -0
  82. package/src/models/grade-targets.ts +31 -0
  83. package/src/models/grades-model.ts +42 -0
  84. package/src/models/{survey-result-item-model.ts → hospital-contact-item-model.ts} +17 -26
  85. package/src/models/hospital-contact-model.ts +72 -0
  86. package/src/models/hospital-contacts-model.ts +42 -0
  87. package/src/models/hospital-item-model.ts +15 -0
  88. package/src/models/hospital-model.ts +15 -0
  89. package/src/models/index.ts +11 -1
  90. package/src/models/survey-form-item-model.ts +6 -0
  91. package/src/models/survey-form-model.ts +6 -0
  92. package/src/models/survey-results-model.ts +3 -3
  93. package/src/models/update-grade-command.ts +42 -0
  94. package/src/models/update-hospital-command.ts +6 -0
  95. package/src/models/update-hospital-contact-command.ts +60 -0
  96. package/src/models/update-survey-form-command.ts +6 -0
  97. package/lib/models/survey-result-item-model.d.ts.map +0 -1
  98. /package/lib/models/{survey-result-item-model.js → create-grade-command.js} +0 -0
@@ -37,6 +37,7 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
37
37
  * @summary Get survey results
38
38
  * @param {string} [id]
39
39
  * @param {string} [hospitalId]
40
+ * @param {string} [surveyFormId]
40
41
  * @param {string} [name]
41
42
  * @param {string} [languageCode]
42
43
  * @param {number} [page]
@@ -45,7 +46,7 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
45
46
  * @param {*} [options] Override http request option.
46
47
  * @throws {RequiredError}
47
48
  */
48
- apiV1SurveyresultsGet: async (id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
49
+ apiV1SurveyresultsGet: async (id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
49
50
  const localVarPath = `/api/v1/surveyresults`;
50
51
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
51
52
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -70,6 +71,10 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
70
71
  localVarQueryParameter['HospitalId'] = hospitalId;
71
72
  }
72
73
 
74
+ if (surveyFormId !== undefined) {
75
+ localVarQueryParameter['SurveyFormId'] = surveyFormId;
76
+ }
77
+
73
78
  if (name !== undefined) {
74
79
  localVarQueryParameter['Name'] = name;
75
80
  }
@@ -194,6 +199,7 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
194
199
  * @summary Get survey results
195
200
  * @param {string} [id]
196
201
  * @param {string} [hospitalId]
202
+ * @param {string} [surveyFormId]
197
203
  * @param {string} [name]
198
204
  * @param {string} [languageCode]
199
205
  * @param {number} [page]
@@ -202,8 +208,8 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
202
208
  * @param {*} [options] Override http request option.
203
209
  * @throws {RequiredError}
204
210
  */
205
- async apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>> {
206
- const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options);
211
+ async apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>> {
212
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options);
207
213
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
208
214
  },
209
215
  /**
@@ -243,6 +249,7 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
243
249
  * @summary Get survey results
244
250
  * @param {string} [id]
245
251
  * @param {string} [hospitalId]
252
+ * @param {string} [surveyFormId]
246
253
  * @param {string} [name]
247
254
  * @param {string} [languageCode]
248
255
  * @param {number} [page]
@@ -251,8 +258,8 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
251
258
  * @param {*} [options] Override http request option.
252
259
  * @throws {RequiredError}
253
260
  */
254
- apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel> {
255
- return localVarFp.apiV1SurveyresultsGet(id, hospitalId, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
261
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel> {
262
+ return localVarFp.apiV1SurveyresultsGet(id, hospitalId, surveyFormId, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
256
263
  },
257
264
  /**
258
265
  *
@@ -297,6 +304,13 @@ export interface SurveyResultsApiApiV1SurveyresultsGetRequest {
297
304
  */
298
305
  readonly hospitalId?: string
299
306
 
307
+ /**
308
+ *
309
+ * @type {string}
310
+ * @memberof SurveyResultsApiApiV1SurveyresultsGet
311
+ */
312
+ readonly surveyFormId?: string
313
+
300
314
  /**
301
315
  *
302
316
  * @type {string}
@@ -377,7 +391,7 @@ export class SurveyResultsApi extends BaseAPI {
377
391
  * @memberof SurveyResultsApi
378
392
  */
379
393
  public apiV1SurveyresultsGet(requestParameters: SurveyResultsApiApiV1SurveyresultsGetRequest = {}, options?: AxiosRequestConfig) {
380
- return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
394
+ return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsGet(requestParameters.id, requestParameters.hospitalId, requestParameters.surveyFormId, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
381
395
  }
382
396
 
383
397
  /**
package/src/api.ts CHANGED
@@ -34,6 +34,7 @@ export * from './api/doctors-api';
34
34
  export * from './api/email-marketings-api';
35
35
  export * from './api/faq-categories-api';
36
36
  export * from './api/faqs-api';
37
+ export * from './api/grades-api';
37
38
  export * from './api/group-channels-api';
38
39
  export * from './api/header-navigations-api';
39
40
  export * from './api/hospitals-api';
@@ -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 { GradeTargets } from './grade-targets';
19
+
20
+ /**
21
+ *
22
+ * @export
23
+ * @interface CreateGradeCommand
24
+ */
25
+ export interface CreateGradeCommand {
26
+ /**
27
+ *
28
+ * @type {string}
29
+ * @memberof CreateGradeCommand
30
+ */
31
+ 'name'?: string | null;
32
+ /**
33
+ *
34
+ * @type {number}
35
+ * @memberof CreateGradeCommand
36
+ */
37
+ 'searchBonus'?: number;
38
+ /**
39
+ *
40
+ * @type {GradeTargets}
41
+ * @memberof CreateGradeCommand
42
+ */
43
+ 'gradeTarget'?: GradeTargets;
44
+ /**
45
+ *
46
+ * @type {number}
47
+ * @memberof CreateGradeCommand
48
+ */
49
+ 'order'?: number;
50
+ }
51
+
@@ -158,6 +158,12 @@ export interface CreateHospitalCommand {
158
158
  * @memberof CreateHospitalCommand
159
159
  */
160
160
  'paymentEnabled'?: boolean;
161
+ /**
162
+ *
163
+ * @type {string}
164
+ * @memberof CreateHospitalCommand
165
+ */
166
+ 'gradeId'?: string | null;
161
167
  /**
162
168
  *
163
169
  * @type {LocationModel}
@@ -0,0 +1,60 @@
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 CreateHospitalContactCommand
21
+ */
22
+ export interface CreateHospitalContactCommand {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof CreateHospitalContactCommand
27
+ */
28
+ 'name'?: string | null;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof CreateHospitalContactCommand
33
+ */
34
+ 'tel'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof CreateHospitalContactCommand
39
+ */
40
+ 'targetTel'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof CreateHospitalContactCommand
45
+ */
46
+ 'email'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreateHospitalContactCommand
51
+ */
52
+ 'languageCode'?: string | null;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof CreateHospitalContactCommand
57
+ */
58
+ 'order'?: number;
59
+ }
60
+
@@ -44,6 +44,12 @@ export interface CreateSurveyFormCommand {
44
44
  * @memberof CreateSurveyFormCommand
45
45
  */
46
46
  'status'?: SurveyFormStatus;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof CreateSurveyFormCommand
51
+ */
52
+ 'urlAfterDone'?: string | null;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -0,0 +1,66 @@
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 { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { GradeTargets } from './grade-targets';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradeItemModel
27
+ */
28
+ export interface GradeItemModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GradeItemModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof GradeItemModel
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof GradeItemModel
45
+ */
46
+ 'searchBonus'?: number;
47
+ /**
48
+ *
49
+ * @type {GradeTargets}
50
+ * @memberof GradeItemModel
51
+ */
52
+ 'gradeTarget'?: GradeTargets;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof GradeItemModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof GradeItemModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ }
66
+
@@ -0,0 +1,66 @@
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 { AuditableEntityModel } from './auditable-entity-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { GradeTargets } from './grade-targets';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradeModel
27
+ */
28
+ export interface GradeModel {
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof GradeModel
33
+ */
34
+ 'id'?: string;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof GradeModel
39
+ */
40
+ 'name'?: string | null;
41
+ /**
42
+ *
43
+ * @type {number}
44
+ * @memberof GradeModel
45
+ */
46
+ 'searchBonus'?: number;
47
+ /**
48
+ *
49
+ * @type {GradeTargets}
50
+ * @memberof GradeModel
51
+ */
52
+ 'gradeTarget'?: GradeTargets;
53
+ /**
54
+ *
55
+ * @type {number}
56
+ * @memberof GradeModel
57
+ */
58
+ 'order'?: number;
59
+ /**
60
+ *
61
+ * @type {AuditableEntityModel}
62
+ * @memberof GradeModel
63
+ */
64
+ 'auditableEntity'?: AuditableEntityModel;
65
+ }
66
+
@@ -0,0 +1,31 @@
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 GradeTargets = {
24
+ None: 'None',
25
+ Hospital: 'Hospital'
26
+ } as const;
27
+
28
+ export type GradeTargets = typeof GradeTargets[keyof typeof GradeTargets];
29
+
30
+
31
+
@@ -0,0 +1,42 @@
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 { GradeItemModel } from './grade-item-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PagedListMetaData } from './paged-list-meta-data';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface GradesModel
27
+ */
28
+ export interface GradesModel {
29
+ /**
30
+ *
31
+ * @type {Array<GradeItemModel>}
32
+ * @memberof GradesModel
33
+ */
34
+ 'items'?: Array<GradeItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof GradesModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -13,69 +13,60 @@
13
13
  */
14
14
 
15
15
 
16
- // May contain unused imports in some cases
17
- // @ts-ignore
18
- import { SurveyResultUserModel } from './survey-result-user-model';
19
16
 
20
17
  /**
21
18
  *
22
19
  * @export
23
- * @interface SurveyResultItemModel
20
+ * @interface HospitalContactItemModel
24
21
  */
25
- export interface SurveyResultItemModel {
22
+ export interface HospitalContactItemModel {
26
23
  /**
27
24
  *
28
25
  * @type {string}
29
- * @memberof SurveyResultItemModel
26
+ * @memberof HospitalContactItemModel
30
27
  */
31
28
  'id'?: string;
32
29
  /**
33
30
  *
34
31
  * @type {string}
35
- * @memberof SurveyResultItemModel
32
+ * @memberof HospitalContactItemModel
36
33
  */
37
- 'surveyFormId'?: string;
34
+ 'name'?: string | null;
38
35
  /**
39
36
  *
40
37
  * @type {string}
41
- * @memberof SurveyResultItemModel
38
+ * @memberof HospitalContactItemModel
42
39
  */
43
- 'surveyFormName'?: string | null;
40
+ 'tel'?: string | null;
44
41
  /**
45
42
  *
46
43
  * @type {string}
47
- * @memberof SurveyResultItemModel
44
+ * @memberof HospitalContactItemModel
48
45
  */
49
- 'hospitalId'?: string;
46
+ 'targetTel'?: string | null;
50
47
  /**
51
48
  *
52
49
  * @type {string}
53
- * @memberof SurveyResultItemModel
50
+ * @memberof HospitalContactItemModel
54
51
  */
55
- 'hospitalName'?: string | null;
52
+ 'email'?: string | null;
56
53
  /**
57
54
  *
58
55
  * @type {string}
59
- * @memberof SurveyResultItemModel
56
+ * @memberof HospitalContactItemModel
60
57
  */
61
58
  'languageCode'?: string | null;
62
59
  /**
63
60
  *
64
61
  * @type {string}
65
- * @memberof SurveyResultItemModel
62
+ * @memberof HospitalContactItemModel
66
63
  */
67
- 'userId'?: string | null;
68
- /**
69
- *
70
- * @type {SurveyResultUserModel}
71
- * @memberof SurveyResultItemModel
72
- */
73
- 'user'?: SurveyResultUserModel;
64
+ 'hospitalId'?: string;
74
65
  /**
75
66
  *
76
- * @type {Date}
77
- * @memberof SurveyResultItemModel
67
+ * @type {number}
68
+ * @memberof HospitalContactItemModel
78
69
  */
79
- 'createdDate'?: Date;
70
+ 'order'?: number;
80
71
  }
81
72
 
@@ -0,0 +1,72 @@
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 HospitalContactModel
21
+ */
22
+ export interface HospitalContactModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalContactModel
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ *
31
+ * @type {string}
32
+ * @memberof HospitalContactModel
33
+ */
34
+ 'name'?: string | null;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof HospitalContactModel
39
+ */
40
+ 'tel'?: string | null;
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof HospitalContactModel
45
+ */
46
+ 'targetTel'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof HospitalContactModel
51
+ */
52
+ 'email'?: string | null;
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof HospitalContactModel
57
+ */
58
+ 'languageCode'?: string | null;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof HospitalContactModel
63
+ */
64
+ 'hospitalId'?: string;
65
+ /**
66
+ *
67
+ * @type {number}
68
+ * @memberof HospitalContactModel
69
+ */
70
+ 'order'?: number;
71
+ }
72
+
@@ -0,0 +1,42 @@
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 { HospitalContactItemModel } from './hospital-contact-item-model';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { PagedListMetaData } from './paged-list-meta-data';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface HospitalContactsModel
27
+ */
28
+ export interface HospitalContactsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalContactItemModel>}
32
+ * @memberof HospitalContactsModel
33
+ */
34
+ 'items'?: Array<HospitalContactItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalContactsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -21,6 +21,9 @@ import { AppointmentOptionModel } from './appointment-option-model';
21
21
  import { AuditableEntity } from './auditable-entity';
22
22
  // May contain unused imports in some cases
23
23
  // @ts-ignore
24
+ import { GradeModel } from './grade-model';
25
+ // May contain unused imports in some cases
26
+ // @ts-ignore
24
27
  import { HospitalConsultationOptionModel } from './hospital-consultation-option-model';
25
28
  // May contain unused imports in some cases
26
29
  // @ts-ignore
@@ -146,6 +149,18 @@ export interface HospitalItemModel {
146
149
  * @memberof HospitalItemModel
147
150
  */
148
151
  'appointmentOption'?: AppointmentOptionModel;
152
+ /**
153
+ *
154
+ * @type {string}
155
+ * @memberof HospitalItemModel
156
+ */
157
+ 'gradeId'?: string | null;
158
+ /**
159
+ *
160
+ * @type {GradeModel}
161
+ * @memberof HospitalItemModel
162
+ */
163
+ 'grade'?: GradeModel;
149
164
  /**
150
165
  *
151
166
  * @type {AuditableEntity}