ch-admin-api-client-typescript 5.2.4 → 5.2.7
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.
- package/lib/api/hospitals-api.d.ts +875 -28
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +1338 -72
- package/lib/api/survey-results-api.d.ts +12 -3
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +12 -6
- package/lib/models/create-policy-command.d.ts +74 -0
- package/lib/models/create-policy-command.d.ts.map +1 -0
- package/lib/models/create-policy-command.js +15 -0
- package/lib/models/footer-navigation-item-model.d.ts +61 -0
- package/lib/models/footer-navigation-item-model.d.ts.map +1 -0
- package/lib/models/footer-navigation-item-model.js +15 -0
- package/lib/models/index.d.ts +8 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +8 -0
- package/lib/models/policies-model.d.ts +33 -0
- package/lib/models/policies-model.d.ts.map +1 -0
- package/lib/models/policies-model.js +15 -0
- package/lib/models/policy-item-model.d.ts +68 -0
- package/lib/models/policy-item-model.d.ts.map +1 -0
- package/lib/models/policy-item-model.js +15 -0
- package/lib/models/policy-model.d.ts +124 -0
- package/lib/models/policy-model.d.ts.map +1 -0
- package/lib/models/policy-model.js +15 -0
- package/lib/models/save-footer-navigation-item-model.d.ts +49 -0
- package/lib/models/save-footer-navigation-item-model.d.ts.map +1 -0
- package/lib/models/save-footer-navigation-item-model.js +15 -0
- package/lib/models/save-footer-navigations-command.d.ts +26 -0
- package/lib/models/save-footer-navigations-command.d.ts.map +1 -0
- package/lib/models/save-footer-navigations-command.js +15 -0
- package/lib/models/update-policy-command.d.ts +80 -0
- package/lib/models/update-policy-command.d.ts.map +1 -0
- package/lib/models/update-policy-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +8 -0
- package/src/api/hospitals-api.ts +1592 -112
- package/src/api/survey-results-api.ts +20 -6
- package/src/models/create-policy-command.ts +81 -0
- package/src/models/footer-navigation-item-model.ts +66 -0
- package/src/models/index.ts +8 -0
- package/src/models/policies-model.ts +42 -0
- package/src/models/policy-item-model.ts +75 -0
- package/src/models/policy-model.ts +135 -0
- package/src/models/save-footer-navigation-item-model.ts +54 -0
- package/src/models/save-footer-navigations-command.ts +33 -0
- package/src/models/update-policy-command.ts +87 -0
|
@@ -150,10 +150,11 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
150
150
|
*
|
|
151
151
|
* @summary Get survey result by Id
|
|
152
152
|
* @param {string} surveyResultId
|
|
153
|
+
* @param {string} [languageCode]
|
|
153
154
|
* @param {*} [options] Override http request option.
|
|
154
155
|
* @throws {RequiredError}
|
|
155
156
|
*/
|
|
156
|
-
apiV1SurveyresultsSurveyResultIdGet: async (surveyResultId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
157
|
+
apiV1SurveyresultsSurveyResultIdGet: async (surveyResultId: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
157
158
|
// verify required parameter 'surveyResultId' is not null or undefined
|
|
158
159
|
assertParamExists('apiV1SurveyresultsSurveyResultIdGet', 'surveyResultId', surveyResultId)
|
|
159
160
|
const localVarPath = `/api/v1/surveyresults/{surveyResultId}`
|
|
@@ -173,6 +174,10 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
173
174
|
// oauth required
|
|
174
175
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
175
176
|
|
|
177
|
+
if (languageCode !== undefined) {
|
|
178
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
179
|
+
}
|
|
180
|
+
|
|
176
181
|
|
|
177
182
|
|
|
178
183
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -227,11 +232,12 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
|
|
|
227
232
|
*
|
|
228
233
|
* @summary Get survey result by Id
|
|
229
234
|
* @param {string} surveyResultId
|
|
235
|
+
* @param {string} [languageCode]
|
|
230
236
|
* @param {*} [options] Override http request option.
|
|
231
237
|
* @throws {RequiredError}
|
|
232
238
|
*/
|
|
233
|
-
async apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultModel>> {
|
|
234
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsSurveyResultIdGet(surveyResultId, options);
|
|
239
|
+
async apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultModel>> {
|
|
240
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1SurveyresultsSurveyResultIdGet(surveyResultId, languageCode, options);
|
|
235
241
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
236
242
|
},
|
|
237
243
|
}
|
|
@@ -275,11 +281,12 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
|
|
|
275
281
|
*
|
|
276
282
|
* @summary Get survey result by Id
|
|
277
283
|
* @param {string} surveyResultId
|
|
284
|
+
* @param {string} [languageCode]
|
|
278
285
|
* @param {*} [options] Override http request option.
|
|
279
286
|
* @throws {RequiredError}
|
|
280
287
|
*/
|
|
281
|
-
apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: any): AxiosPromise<SurveyResultModel> {
|
|
282
|
-
return localVarFp.apiV1SurveyresultsSurveyResultIdGet(surveyResultId, options).then((request) => request(axios, basePath));
|
|
288
|
+
apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, languageCode?: string, options?: any): AxiosPromise<SurveyResultModel> {
|
|
289
|
+
return localVarFp.apiV1SurveyresultsSurveyResultIdGet(surveyResultId, languageCode, options).then((request) => request(axios, basePath));
|
|
283
290
|
},
|
|
284
291
|
};
|
|
285
292
|
};
|
|
@@ -373,6 +380,13 @@ export interface SurveyResultsApiApiV1SurveyresultsSurveyResultIdGetRequest {
|
|
|
373
380
|
* @memberof SurveyResultsApiApiV1SurveyresultsSurveyResultIdGet
|
|
374
381
|
*/
|
|
375
382
|
readonly surveyResultId: string
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
*
|
|
386
|
+
* @type {string}
|
|
387
|
+
* @memberof SurveyResultsApiApiV1SurveyresultsSurveyResultIdGet
|
|
388
|
+
*/
|
|
389
|
+
readonly languageCode?: string
|
|
376
390
|
}
|
|
377
391
|
|
|
378
392
|
/**
|
|
@@ -415,6 +429,6 @@ export class SurveyResultsApi extends BaseAPI {
|
|
|
415
429
|
* @memberof SurveyResultsApi
|
|
416
430
|
*/
|
|
417
431
|
public apiV1SurveyresultsSurveyResultIdGet(requestParameters: SurveyResultsApiApiV1SurveyresultsSurveyResultIdGetRequest, options?: AxiosRequestConfig) {
|
|
418
|
-
return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsSurveyResultIdGet(requestParameters.surveyResultId, options).then((request) => request(this.axios, this.basePath));
|
|
432
|
+
return SurveyResultsApiFp(this.configuration).apiV1SurveyresultsSurveyResultIdGet(requestParameters.surveyResultId, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
419
433
|
}
|
|
420
434
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
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 { MediaModel } from './media-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreatePolicyCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface CreatePolicyCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreatePolicyCommand
|
|
30
|
+
*/
|
|
31
|
+
'languageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreatePolicyCommand
|
|
36
|
+
*/
|
|
37
|
+
'name'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreatePolicyCommand
|
|
42
|
+
*/
|
|
43
|
+
'slug'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreatePolicyCommand
|
|
48
|
+
*/
|
|
49
|
+
'description'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreatePolicyCommand
|
|
54
|
+
*/
|
|
55
|
+
'content'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof CreatePolicyCommand
|
|
60
|
+
*/
|
|
61
|
+
'customStyle'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof CreatePolicyCommand
|
|
66
|
+
*/
|
|
67
|
+
'photo'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof CreatePolicyCommand
|
|
72
|
+
*/
|
|
73
|
+
'photoThumbnail'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {Array<MediaModel>}
|
|
77
|
+
* @memberof CreatePolicyCommand
|
|
78
|
+
*/
|
|
79
|
+
'medias'?: Array<MediaModel> | null;
|
|
80
|
+
}
|
|
81
|
+
|
|
@@ -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
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface FooterNavigationItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface FooterNavigationItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof FooterNavigationItemModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof FooterNavigationItemModel
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof FooterNavigationItemModel
|
|
39
|
+
*/
|
|
40
|
+
'url'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof FooterNavigationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'level'?: number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {number}
|
|
50
|
+
* @memberof FooterNavigationItemModel
|
|
51
|
+
*/
|
|
52
|
+
'order'?: number;
|
|
53
|
+
/**
|
|
54
|
+
*
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof FooterNavigationItemModel
|
|
57
|
+
*/
|
|
58
|
+
'parentId'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
*
|
|
61
|
+
* @type {Array<FooterNavigationItemModel>}
|
|
62
|
+
* @memberof FooterNavigationItemModel
|
|
63
|
+
*/
|
|
64
|
+
'subItems'?: Array<FooterNavigationItemModel> | null;
|
|
65
|
+
}
|
|
66
|
+
|
package/src/models/index.ts
CHANGED
|
@@ -126,6 +126,7 @@ export * from './create-media-command';
|
|
|
126
126
|
export * from './create-patient-command';
|
|
127
127
|
export * from './create-plan-command';
|
|
128
128
|
export * from './create-plan-hospital-command';
|
|
129
|
+
export * from './create-policy-command';
|
|
129
130
|
export * from './create-profile-command';
|
|
130
131
|
export * from './create-service-category-command';
|
|
131
132
|
export * from './create-service-review-command';
|
|
@@ -180,6 +181,7 @@ export * from './faq-tag-item-model';
|
|
|
180
181
|
export * from './faq-tag-model';
|
|
181
182
|
export * from './faq-tags-model';
|
|
182
183
|
export * from './faqs-model';
|
|
184
|
+
export * from './footer-navigation-item-model';
|
|
183
185
|
export * from './gender';
|
|
184
186
|
export * from './grade-item-model';
|
|
185
187
|
export * from './grade-model';
|
|
@@ -268,6 +270,9 @@ export * from './plan-item-model';
|
|
|
268
270
|
export * from './plan-model';
|
|
269
271
|
export * from './plans-model';
|
|
270
272
|
export * from './platform';
|
|
273
|
+
export * from './policies-model';
|
|
274
|
+
export * from './policy-item-model';
|
|
275
|
+
export * from './policy-model';
|
|
271
276
|
export * from './problem-details';
|
|
272
277
|
export * from './procedure';
|
|
273
278
|
export * from './recurring-interval';
|
|
@@ -282,6 +287,8 @@ export * from './save-appointment-timetable-overrides-result-model';
|
|
|
282
287
|
export * from './save-deal-appointment-timetable-overrides-command';
|
|
283
288
|
export * from './save-deal-package-appointment-timetable-overrides-command';
|
|
284
289
|
export * from './save-doctor-affiliation-appointment-timetable-overrides-command';
|
|
290
|
+
export * from './save-footer-navigation-item-model';
|
|
291
|
+
export * from './save-footer-navigations-command';
|
|
285
292
|
export * from './save-header-navigation-item-model';
|
|
286
293
|
export * from './save-header-navigations-command';
|
|
287
294
|
export * from './save-hospital-appointment-timetable-overrides-command';
|
|
@@ -390,6 +397,7 @@ export * from './update-media-command';
|
|
|
390
397
|
export * from './update-patient-command';
|
|
391
398
|
export * from './update-plan-command';
|
|
392
399
|
export * from './update-plan-hospital-command';
|
|
400
|
+
export * from './update-policy-command';
|
|
393
401
|
export * from './update-profile-command';
|
|
394
402
|
export * from './update-service-category-command';
|
|
395
403
|
export * from './update-service-review-command';
|
|
@@ -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 { PagedListMetaData } from './paged-list-meta-data';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { PolicyItemModel } from './policy-item-model';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface PoliciesModel
|
|
27
|
+
*/
|
|
28
|
+
export interface PoliciesModel {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<PolicyItemModel>}
|
|
32
|
+
* @memberof PoliciesModel
|
|
33
|
+
*/
|
|
34
|
+
'items'?: Array<PolicyItemModel> | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {PagedListMetaData}
|
|
38
|
+
* @memberof PoliciesModel
|
|
39
|
+
*/
|
|
40
|
+
'metaData'?: PagedListMetaData;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface PolicyItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface PolicyItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof PolicyItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PolicyItemModel
|
|
36
|
+
*/
|
|
37
|
+
'languageCode'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PolicyItemModel
|
|
42
|
+
*/
|
|
43
|
+
'name'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PolicyItemModel
|
|
48
|
+
*/
|
|
49
|
+
'slug'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {boolean}
|
|
53
|
+
* @memberof PolicyItemModel
|
|
54
|
+
*/
|
|
55
|
+
'confirmed'?: boolean;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof PolicyItemModel
|
|
60
|
+
*/
|
|
61
|
+
'photo'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof PolicyItemModel
|
|
66
|
+
*/
|
|
67
|
+
'photoThumbnail'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {AuditableEntityModel}
|
|
71
|
+
* @memberof PolicyItemModel
|
|
72
|
+
*/
|
|
73
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,135 @@
|
|
|
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 { LocalizedUrlModel } from './localized-url-model';
|
|
22
|
+
// May contain unused imports in some cases
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { MediaModel } from './media-model';
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @export
|
|
29
|
+
* @interface PolicyModel
|
|
30
|
+
*/
|
|
31
|
+
export interface PolicyModel {
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof PolicyModel
|
|
36
|
+
*/
|
|
37
|
+
'id'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof PolicyModel
|
|
42
|
+
*/
|
|
43
|
+
'languageCode'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof PolicyModel
|
|
48
|
+
*/
|
|
49
|
+
'name'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof PolicyModel
|
|
54
|
+
*/
|
|
55
|
+
'slug'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof PolicyModel
|
|
60
|
+
*/
|
|
61
|
+
'confirmed'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof PolicyModel
|
|
66
|
+
*/
|
|
67
|
+
'photo'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof PolicyModel
|
|
72
|
+
*/
|
|
73
|
+
'photoThumbnail'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {AuditableEntityModel}
|
|
77
|
+
* @memberof PolicyModel
|
|
78
|
+
*/
|
|
79
|
+
'auditableEntity'?: AuditableEntityModel;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof PolicyModel
|
|
84
|
+
*/
|
|
85
|
+
'description'?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof PolicyModel
|
|
90
|
+
*/
|
|
91
|
+
'overview'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {string}
|
|
95
|
+
* @memberof PolicyModel
|
|
96
|
+
*/
|
|
97
|
+
'content'?: string | null;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof PolicyModel
|
|
102
|
+
*/
|
|
103
|
+
'hospitalId'?: string;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {string}
|
|
107
|
+
* @memberof PolicyModel
|
|
108
|
+
*/
|
|
109
|
+
'hospitalName'?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {string}
|
|
113
|
+
* @memberof PolicyModel
|
|
114
|
+
*/
|
|
115
|
+
'hospitalSlug'?: string | null;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof PolicyModel
|
|
120
|
+
*/
|
|
121
|
+
'customStyle'?: string | null;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {Array<LocalizedUrlModel>}
|
|
125
|
+
* @memberof PolicyModel
|
|
126
|
+
*/
|
|
127
|
+
'localizedUrls'?: Array<LocalizedUrlModel> | null;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {Array<MediaModel>}
|
|
131
|
+
* @memberof PolicyModel
|
|
132
|
+
*/
|
|
133
|
+
'medias'?: Array<MediaModel> | null;
|
|
134
|
+
}
|
|
135
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
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 SaveFooterNavigationItemModel
|
|
21
|
+
*/
|
|
22
|
+
export interface SaveFooterNavigationItemModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SaveFooterNavigationItemModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof SaveFooterNavigationItemModel
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof SaveFooterNavigationItemModel
|
|
39
|
+
*/
|
|
40
|
+
'url'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {number}
|
|
44
|
+
* @memberof SaveFooterNavigationItemModel
|
|
45
|
+
*/
|
|
46
|
+
'order'?: number;
|
|
47
|
+
/**
|
|
48
|
+
*
|
|
49
|
+
* @type {Array<SaveFooterNavigationItemModel>}
|
|
50
|
+
* @memberof SaveFooterNavigationItemModel
|
|
51
|
+
*/
|
|
52
|
+
'subItems'?: Array<SaveFooterNavigationItemModel> | null;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -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 { SaveFooterNavigationItemModel } from './save-footer-navigation-item-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface SaveFooterNavigationsCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface SaveFooterNavigationsCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {SaveFooterNavigationItemModel}
|
|
29
|
+
* @memberof SaveFooterNavigationsCommand
|
|
30
|
+
*/
|
|
31
|
+
'item'?: SaveFooterNavigationItemModel;
|
|
32
|
+
}
|
|
33
|
+
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { MediaModel } from './media-model';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UpdatePolicyCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface UpdatePolicyCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof UpdatePolicyCommand
|
|
30
|
+
*/
|
|
31
|
+
'languageCode'?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof UpdatePolicyCommand
|
|
36
|
+
*/
|
|
37
|
+
'name'?: string | null;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdatePolicyCommand
|
|
42
|
+
*/
|
|
43
|
+
'slug'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof UpdatePolicyCommand
|
|
48
|
+
*/
|
|
49
|
+
'description'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof UpdatePolicyCommand
|
|
54
|
+
*/
|
|
55
|
+
'content'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {boolean}
|
|
59
|
+
* @memberof UpdatePolicyCommand
|
|
60
|
+
*/
|
|
61
|
+
'confirmed'?: boolean;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof UpdatePolicyCommand
|
|
66
|
+
*/
|
|
67
|
+
'customStyle'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof UpdatePolicyCommand
|
|
72
|
+
*/
|
|
73
|
+
'photo'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof UpdatePolicyCommand
|
|
78
|
+
*/
|
|
79
|
+
'photoThumbnail'?: string | null;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {Array<MediaModel>}
|
|
83
|
+
* @memberof UpdatePolicyCommand
|
|
84
|
+
*/
|
|
85
|
+
'medias'?: Array<MediaModel> | null;
|
|
86
|
+
}
|
|
87
|
+
|