ch-api-client-typescript2 5.5.5 → 5.5.6

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 (49) hide show
  1. package/lib/api/hospitals-api.d.ts +139 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +182 -0
  4. package/lib/models/deal-service-sub-document-model.d.ts +13 -1
  5. package/lib/models/deal-service-sub-document-model.d.ts.map +1 -1
  6. package/lib/models/doctor-specialty-sub-document-model.d.ts +6 -0
  7. package/lib/models/doctor-specialty-sub-document-model.d.ts.map +1 -1
  8. package/lib/models/faq-document-model.d.ts +6 -0
  9. package/lib/models/faq-document-model.d.ts.map +1 -1
  10. package/lib/models/hospital-document-model.d.ts +13 -0
  11. package/lib/models/hospital-document-model.d.ts.map +1 -1
  12. package/lib/models/hospital-item-model.d.ts +7 -0
  13. package/lib/models/hospital-item-model.d.ts.map +1 -1
  14. package/lib/models/hospital-model.d.ts +7 -0
  15. package/lib/models/hospital-model.d.ts.map +1 -1
  16. package/lib/models/hospital-specialty-sub-document-model.d.ts +6 -0
  17. package/lib/models/hospital-specialty-sub-document-model.d.ts.map +1 -1
  18. package/lib/models/hospital-tag-item-model.d.ts +31 -0
  19. package/lib/models/hospital-tag-item-model.d.ts.map +1 -0
  20. package/lib/models/hospital-tag-item-model.js +15 -0
  21. package/lib/models/hospital-tag-model.d.ts +37 -0
  22. package/lib/models/hospital-tag-model.d.ts.map +1 -0
  23. package/lib/models/hospital-tag-model.js +15 -0
  24. package/lib/models/hospital-tags-model.d.ts +33 -0
  25. package/lib/models/hospital-tags-model.d.ts.map +1 -0
  26. package/lib/models/hospital-tags-model.js +15 -0
  27. package/lib/models/index.d.ts +3 -0
  28. package/lib/models/index.d.ts.map +1 -1
  29. package/lib/models/index.js +3 -0
  30. package/lib/models/search-curation-item-model.d.ts +6 -0
  31. package/lib/models/search-curation-item-model.d.ts.map +1 -1
  32. package/lib/models/service-document-model.d.ts +12 -0
  33. package/lib/models/service-document-model.d.ts.map +1 -1
  34. package/package.json +1 -1
  35. package/src/.openapi-generator/FILES +3 -0
  36. package/src/api/hospitals-api.ts +237 -0
  37. package/src/models/deal-service-sub-document-model.ts +13 -1
  38. package/src/models/doctor-specialty-sub-document-model.ts +6 -0
  39. package/src/models/faq-document-model.ts +6 -0
  40. package/src/models/hospital-document-model.ts +15 -0
  41. package/src/models/hospital-item-model.ts +9 -0
  42. package/src/models/hospital-model.ts +9 -0
  43. package/src/models/hospital-specialty-sub-document-model.ts +6 -0
  44. package/src/models/hospital-tag-item-model.ts +36 -0
  45. package/src/models/hospital-tag-model.ts +42 -0
  46. package/src/models/hospital-tags-model.ts +42 -0
  47. package/src/models/index.ts +3 -0
  48. package/src/models/search-curation-item-model.ts +6 -0
  49. package/src/models/service-document-model.ts +12 -0
@@ -57,6 +57,10 @@ import { HospitalSpecialtiesSimpleModel } from '../models';
57
57
  // @ts-ignore
58
58
  import { HospitalSpecialtyModel } from '../models';
59
59
  // @ts-ignore
60
+ import { HospitalTagModel } from '../models';
61
+ // @ts-ignore
62
+ import { HospitalTagsModel } from '../models';
63
+ // @ts-ignore
60
64
  import { HospitalsModel } from '../models';
61
65
  // @ts-ignore
62
66
  import { HospitalsSimpleModel } from '../models';
@@ -2347,6 +2351,100 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
2347
2351
 
2348
2352
 
2349
2353
 
2354
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2355
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2356
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2357
+
2358
+ return {
2359
+ url: toPathString(localVarUrlObj),
2360
+ options: localVarRequestOptions,
2361
+ };
2362
+ },
2363
+ /**
2364
+ *
2365
+ * @summary Get All HospitalTags
2366
+ * @param {string} hospitalId
2367
+ * @param {string} [tagId]
2368
+ * @param {number} [page]
2369
+ * @param {number} [limit]
2370
+ * @param {Date} [lastRetrieved]
2371
+ * @param {*} [options] Override http request option.
2372
+ * @throws {RequiredError}
2373
+ */
2374
+ apiV2HospitalsHospitalIdTagsGet: async (hospitalId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2375
+ // verify required parameter 'hospitalId' is not null or undefined
2376
+ assertParamExists('apiV2HospitalsHospitalIdTagsGet', 'hospitalId', hospitalId)
2377
+ const localVarPath = `/api/v2/hospitals/{hospitalId}/tags`
2378
+ .replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
2379
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2380
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2381
+ let baseOptions;
2382
+ if (configuration) {
2383
+ baseOptions = configuration.baseOptions;
2384
+ }
2385
+
2386
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
2387
+ const localVarHeaderParameter = {} as any;
2388
+ const localVarQueryParameter = {} as any;
2389
+
2390
+ if (tagId !== undefined) {
2391
+ localVarQueryParameter['TagId'] = tagId;
2392
+ }
2393
+
2394
+ if (page !== undefined) {
2395
+ localVarQueryParameter['page'] = page;
2396
+ }
2397
+
2398
+ if (limit !== undefined) {
2399
+ localVarQueryParameter['limit'] = limit;
2400
+ }
2401
+
2402
+ if (lastRetrieved !== undefined) {
2403
+ localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
2404
+ (lastRetrieved as any).toISOString() :
2405
+ lastRetrieved;
2406
+ }
2407
+
2408
+
2409
+
2410
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2411
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2412
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2413
+
2414
+ return {
2415
+ url: toPathString(localVarUrlObj),
2416
+ options: localVarRequestOptions,
2417
+ };
2418
+ },
2419
+ /**
2420
+ *
2421
+ * @summary Get HospitalTag
2422
+ * @param {string} hospitalId
2423
+ * @param {string} tagId
2424
+ * @param {*} [options] Override http request option.
2425
+ * @throws {RequiredError}
2426
+ */
2427
+ apiV2HospitalsHospitalIdTagsTagIdGet: async (hospitalId: string, tagId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
2428
+ // verify required parameter 'hospitalId' is not null or undefined
2429
+ assertParamExists('apiV2HospitalsHospitalIdTagsTagIdGet', 'hospitalId', hospitalId)
2430
+ // verify required parameter 'tagId' is not null or undefined
2431
+ assertParamExists('apiV2HospitalsHospitalIdTagsTagIdGet', 'tagId', tagId)
2432
+ const localVarPath = `/api/v2/hospitals/{hospitalId}/tags/{tagId}`
2433
+ .replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
2434
+ .replace(`{${"tagId"}}`, encodeURIComponent(String(tagId)));
2435
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2436
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2437
+ let baseOptions;
2438
+ if (configuration) {
2439
+ baseOptions = configuration.baseOptions;
2440
+ }
2441
+
2442
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
2443
+ const localVarHeaderParameter = {} as any;
2444
+ const localVarQueryParameter = {} as any;
2445
+
2446
+
2447
+
2350
2448
  setSearchParams(localVarUrlObj, localVarQueryParameter);
2351
2449
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2352
2450
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -3263,6 +3361,33 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
3263
3361
  const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId, specialtyId, serviceId, mediaId, options);
3264
3362
  return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3265
3363
  },
3364
+ /**
3365
+ *
3366
+ * @summary Get All HospitalTags
3367
+ * @param {string} hospitalId
3368
+ * @param {string} [tagId]
3369
+ * @param {number} [page]
3370
+ * @param {number} [limit]
3371
+ * @param {Date} [lastRetrieved]
3372
+ * @param {*} [options] Override http request option.
3373
+ * @throws {RequiredError}
3374
+ */
3375
+ async apiV2HospitalsHospitalIdTagsGet(hospitalId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalTagsModel>> {
3376
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdTagsGet(hospitalId, tagId, page, limit, lastRetrieved, options);
3377
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3378
+ },
3379
+ /**
3380
+ *
3381
+ * @summary Get HospitalTag
3382
+ * @param {string} hospitalId
3383
+ * @param {string} tagId
3384
+ * @param {*} [options] Override http request option.
3385
+ * @throws {RequiredError}
3386
+ */
3387
+ async apiV2HospitalsHospitalIdTagsTagIdGet(hospitalId: string, tagId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalTagModel>> {
3388
+ const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdTagsTagIdGet(hospitalId, tagId, options);
3389
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3390
+ },
3266
3391
  /**
3267
3392
  *
3268
3393
  * @summary Get all HospitalWorkingDays.
@@ -3914,6 +4039,31 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
3914
4039
  apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId: string, specialtyId: string, serviceId: string, mediaId: string, options?: any): AxiosPromise<MediaModel> {
3915
4040
  return localVarFp.apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(hospitalId, specialtyId, serviceId, mediaId, options).then((request) => request(axios, basePath));
3916
4041
  },
4042
+ /**
4043
+ *
4044
+ * @summary Get All HospitalTags
4045
+ * @param {string} hospitalId
4046
+ * @param {string} [tagId]
4047
+ * @param {number} [page]
4048
+ * @param {number} [limit]
4049
+ * @param {Date} [lastRetrieved]
4050
+ * @param {*} [options] Override http request option.
4051
+ * @throws {RequiredError}
4052
+ */
4053
+ apiV2HospitalsHospitalIdTagsGet(hospitalId: string, tagId?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalTagsModel> {
4054
+ return localVarFp.apiV2HospitalsHospitalIdTagsGet(hospitalId, tagId, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
4055
+ },
4056
+ /**
4057
+ *
4058
+ * @summary Get HospitalTag
4059
+ * @param {string} hospitalId
4060
+ * @param {string} tagId
4061
+ * @param {*} [options] Override http request option.
4062
+ * @throws {RequiredError}
4063
+ */
4064
+ apiV2HospitalsHospitalIdTagsTagIdGet(hospitalId: string, tagId: string, options?: any): AxiosPromise<HospitalTagModel> {
4065
+ return localVarFp.apiV2HospitalsHospitalIdTagsTagIdGet(hospitalId, tagId, options).then((request) => request(axios, basePath));
4066
+ },
3917
4067
  /**
3918
4068
  *
3919
4069
  * @summary Get all HospitalWorkingDays.
@@ -5834,6 +5984,69 @@ export interface HospitalsApiApiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServi
5834
5984
  readonly mediaId: string
5835
5985
  }
5836
5986
 
5987
+ /**
5988
+ * Request parameters for apiV2HospitalsHospitalIdTagsGet operation in HospitalsApi.
5989
+ * @export
5990
+ * @interface HospitalsApiApiV2HospitalsHospitalIdTagsGetRequest
5991
+ */
5992
+ export interface HospitalsApiApiV2HospitalsHospitalIdTagsGetRequest {
5993
+ /**
5994
+ *
5995
+ * @type {string}
5996
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsGet
5997
+ */
5998
+ readonly hospitalId: string
5999
+
6000
+ /**
6001
+ *
6002
+ * @type {string}
6003
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsGet
6004
+ */
6005
+ readonly tagId?: string
6006
+
6007
+ /**
6008
+ *
6009
+ * @type {number}
6010
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsGet
6011
+ */
6012
+ readonly page?: number
6013
+
6014
+ /**
6015
+ *
6016
+ * @type {number}
6017
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsGet
6018
+ */
6019
+ readonly limit?: number
6020
+
6021
+ /**
6022
+ *
6023
+ * @type {Date}
6024
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsGet
6025
+ */
6026
+ readonly lastRetrieved?: Date
6027
+ }
6028
+
6029
+ /**
6030
+ * Request parameters for apiV2HospitalsHospitalIdTagsTagIdGet operation in HospitalsApi.
6031
+ * @export
6032
+ * @interface HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGetRequest
6033
+ */
6034
+ export interface HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGetRequest {
6035
+ /**
6036
+ *
6037
+ * @type {string}
6038
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGet
6039
+ */
6040
+ readonly hospitalId: string
6041
+
6042
+ /**
6043
+ *
6044
+ * @type {string}
6045
+ * @memberof HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGet
6046
+ */
6047
+ readonly tagId: string
6048
+ }
6049
+
5837
6050
  /**
5838
6051
  * Request parameters for apiV2HospitalsHospitalIdWorkingdaysGet operation in HospitalsApi.
5839
6052
  * @export
@@ -6556,6 +6769,30 @@ export class HospitalsApi extends BaseAPI {
6556
6769
  return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdSpecialtiesSpecialtyIdServicesServiceIdMediasMediaIdGet(requestParameters.hospitalId, requestParameters.specialtyId, requestParameters.serviceId, requestParameters.mediaId, options).then((request) => request(this.axios, this.basePath));
6557
6770
  }
6558
6771
 
6772
+ /**
6773
+ *
6774
+ * @summary Get All HospitalTags
6775
+ * @param {HospitalsApiApiV2HospitalsHospitalIdTagsGetRequest} requestParameters Request parameters.
6776
+ * @param {*} [options] Override http request option.
6777
+ * @throws {RequiredError}
6778
+ * @memberof HospitalsApi
6779
+ */
6780
+ public apiV2HospitalsHospitalIdTagsGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdTagsGetRequest, options?: AxiosRequestConfig) {
6781
+ return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdTagsGet(requestParameters.hospitalId, requestParameters.tagId, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
6782
+ }
6783
+
6784
+ /**
6785
+ *
6786
+ * @summary Get HospitalTag
6787
+ * @param {HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGetRequest} requestParameters Request parameters.
6788
+ * @param {*} [options] Override http request option.
6789
+ * @throws {RequiredError}
6790
+ * @memberof HospitalsApi
6791
+ */
6792
+ public apiV2HospitalsHospitalIdTagsTagIdGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdTagsTagIdGetRequest, options?: AxiosRequestConfig) {
6793
+ return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdTagsTagIdGet(requestParameters.hospitalId, requestParameters.tagId, options).then((request) => request(this.axios, this.basePath));
6794
+ }
6795
+
6559
6796
  /**
6560
6797
  *
6561
6798
  * @summary Get all HospitalWorkingDays.
@@ -256,6 +256,18 @@ export interface DealServiceSubDocumentModel {
256
256
  * @type {number}
257
257
  * @memberof DealServiceSubDocumentModel
258
258
  */
259
- 'order'?: number;
259
+ 'Order'?: number;
260
+ /**
261
+ *
262
+ * @type {string}
263
+ * @memberof DealServiceSubDocumentModel
264
+ */
265
+ 'SpecialtyId'?: string | null;
266
+ /**
267
+ *
268
+ * @type {string}
269
+ * @memberof DealServiceSubDocumentModel
270
+ */
271
+ 'SpecialtyTypeId'?: string | null;
260
272
  }
261
273
 
@@ -251,5 +251,11 @@ export interface DoctorSpecialtySubDocumentModel {
251
251
  * @memberof DoctorSpecialtySubDocumentModel
252
252
  */
253
253
  'Id'?: string | null;
254
+ /**
255
+ *
256
+ * @type {string}
257
+ * @memberof DoctorSpecialtySubDocumentModel
258
+ */
259
+ 'SpecialtyTypeId'?: string | null;
254
260
  }
255
261
 
@@ -269,5 +269,11 @@ export interface FaqDocumentModel {
269
269
  * @memberof FaqDocumentModel
270
270
  */
271
271
  'Tags'?: Array<TagDocumentModel> | null;
272
+ /**
273
+ *
274
+ * @type {Array<string>}
275
+ * @memberof FaqDocumentModel
276
+ */
277
+ 'TagIds'?: Array<string> | null;
272
278
  }
273
279
 
@@ -49,6 +49,9 @@ import { ServiceSubDocumentModel } from './service-sub-document-model';
49
49
  // May contain unused imports in some cases
50
50
  // @ts-ignore
51
51
  import { SnsHandleDocumentModel } from './sns-handle-document-model';
52
+ // May contain unused imports in some cases
53
+ // @ts-ignore
54
+ import { TagDocumentModel } from './tag-document-model';
52
55
 
53
56
  /**
54
57
  *
@@ -452,5 +455,17 @@ export interface HospitalDocumentModel {
452
455
  * @memberof HospitalDocumentModel
453
456
  */
454
457
  'Feature'?: FeatureDocumentModel;
458
+ /**
459
+ *
460
+ * @type {Array<TagDocumentModel>}
461
+ * @memberof HospitalDocumentModel
462
+ */
463
+ 'Tags'?: Array<TagDocumentModel> | null;
464
+ /**
465
+ *
466
+ * @type {Array<string>}
467
+ * @memberof HospitalDocumentModel
468
+ */
469
+ 'TagIds'?: Array<string> | null;
455
470
  }
456
471
 
@@ -30,6 +30,9 @@ import { HospitalAccreditationItemModel } from './hospital-accreditation-item-mo
30
30
  import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model';
31
31
  // May contain unused imports in some cases
32
32
  // @ts-ignore
33
+ import { HospitalTagItemModel } from './hospital-tag-item-model';
34
+ // May contain unused imports in some cases
35
+ // @ts-ignore
33
36
  import { LocationModel } from './location-model';
34
37
  // May contain unused imports in some cases
35
38
  // @ts-ignore
@@ -170,6 +173,12 @@ export interface HospitalItemModel {
170
173
  * @memberof HospitalItemModel
171
174
  */
172
175
  'medias'?: Array<MediaModel> | null;
176
+ /**
177
+ *
178
+ * @type {Array<HospitalTagItemModel>}
179
+ * @memberof HospitalItemModel
180
+ */
181
+ 'tags'?: Array<HospitalTagItemModel> | null;
173
182
  /**
174
183
  *
175
184
  * @type {LocationModel}
@@ -48,6 +48,9 @@ import { HospitalServiceItemModel } from './hospital-service-item-model';
48
48
  import { HospitalSpecialtySimpleItemModel } from './hospital-specialty-simple-item-model';
49
49
  // May contain unused imports in some cases
50
50
  // @ts-ignore
51
+ import { HospitalTagItemModel } from './hospital-tag-item-model';
52
+ // May contain unused imports in some cases
53
+ // @ts-ignore
51
54
  import { LocalizedUrlModel } from './localized-url-model';
52
55
  // May contain unused imports in some cases
53
56
  // @ts-ignore
@@ -197,6 +200,12 @@ export interface HospitalModel {
197
200
  * @memberof HospitalModel
198
201
  */
199
202
  'medias'?: Array<MediaModel> | null;
203
+ /**
204
+ *
205
+ * @type {Array<HospitalTagItemModel>}
206
+ * @memberof HospitalModel
207
+ */
208
+ 'tags'?: Array<HospitalTagItemModel> | null;
200
209
  /**
201
210
  *
202
211
  * @type {LocationModel}
@@ -263,5 +263,11 @@ export interface HospitalSpecialtySubDocumentModel {
263
263
  * @memberof HospitalSpecialtySubDocumentModel
264
264
  */
265
265
  'Order'?: number;
266
+ /**
267
+ *
268
+ * @type {string}
269
+ * @memberof HospitalSpecialtySubDocumentModel
270
+ */
271
+ 'SpecialtyTypeId'?: string | null;
266
272
  }
267
273
 
@@ -0,0 +1,36 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 HospitalTagItemModel
21
+ */
22
+ export interface HospitalTagItemModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalTagItemModel
27
+ */
28
+ 'tagId'?: string | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof HospitalTagItemModel
33
+ */
34
+ 'order'?: number;
35
+ }
36
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 HospitalTagModel
21
+ */
22
+ export interface HospitalTagModel {
23
+ /**
24
+ *
25
+ * @type {string}
26
+ * @memberof HospitalTagModel
27
+ */
28
+ 'tagId'?: string | null;
29
+ /**
30
+ *
31
+ * @type {number}
32
+ * @memberof HospitalTagModel
33
+ */
34
+ 'order'?: number;
35
+ /**
36
+ *
37
+ * @type {string}
38
+ * @memberof HospitalTagModel
39
+ */
40
+ 'hospitalId'?: string;
41
+ }
42
+
@@ -0,0 +1,42 @@
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * Swagger UI - Cloud Hospital Api-INT
5
+ * Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
6
+ *
7
+ * The version of the OpenAPI document: 2
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 { HospitalTagItemModel } from './hospital-tag-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 HospitalTagsModel
27
+ */
28
+ export interface HospitalTagsModel {
29
+ /**
30
+ *
31
+ * @type {Array<HospitalTagItemModel>}
32
+ * @memberof HospitalTagsModel
33
+ */
34
+ 'items'?: Array<HospitalTagItemModel> | null;
35
+ /**
36
+ *
37
+ * @type {PagedListMetaData}
38
+ * @memberof HospitalTagsModel
39
+ */
40
+ 'metaData'?: PagedListMetaData;
41
+ }
42
+
@@ -185,6 +185,9 @@ export * from './hospital-specialty-model';
185
185
  export * from './hospital-specialty-simple-item-model';
186
186
  export * from './hospital-specialty-sub-document-model';
187
187
  export * from './hospital-sub-document-model';
188
+ export * from './hospital-tag-item-model';
189
+ export * from './hospital-tag-model';
190
+ export * from './hospital-tags-model';
188
191
  export * from './hospital-translation-document-model';
189
192
  export * from './hospitals-model';
190
193
  export * from './hospitals-simple-model';
@@ -44,6 +44,12 @@ export interface SearchCurationItemModel {
44
44
  * @memberof SearchCurationItemModel
45
45
  */
46
46
  'description'?: string | null;
47
+ /**
48
+ *
49
+ * @type {string}
50
+ * @memberof SearchCurationItemModel
51
+ */
52
+ 'slug'?: string | null;
47
53
  /**
48
54
  *
49
55
  * @type {string}
@@ -323,5 +323,17 @@ export interface ServiceDocumentModel {
323
323
  * @memberof ServiceDocumentModel
324
324
  */
325
325
  'Feature'?: FeatureDocumentModel;
326
+ /**
327
+ *
328
+ * @type {string}
329
+ * @memberof ServiceDocumentModel
330
+ */
331
+ 'SpecialtyId'?: string | null;
332
+ /**
333
+ *
334
+ * @type {string}
335
+ * @memberof ServiceDocumentModel
336
+ */
337
+ 'SpecialtyTypeId'?: string | null;
326
338
  }
327
339