ch-api-client-typescript2 5.2.0 → 5.2.3
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 +111 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +119 -0
- package/lib/models/contact-scope.d.ts +22 -0
- package/lib/models/contact-scope.d.ts.map +1 -0
- package/lib/models/contact-scope.js +25 -0
- package/lib/models/hospital-contact-document-model.d.ts +2 -8
- package/lib/models/hospital-contact-document-model.d.ts.map +1 -1
- package/lib/models/hospital-contact-item-model.d.ts +80 -0
- package/lib/models/hospital-contact-item-model.d.ts.map +1 -0
- package/lib/models/hospital-contact-item-model.js +15 -0
- package/lib/models/hospital-contact-model.d.ts +4 -9
- package/lib/models/hospital-contact-model.d.ts.map +1 -1
- package/lib/models/hospital-contacts-model.d.ts +33 -0
- package/lib/models/hospital-contacts-model.d.ts.map +1 -0
- package/lib/models/hospital-contacts-model.js +15 -0
- package/lib/models/index.d.ts +3 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +3 -0
- package/lib/models/survey-form-element-types.d.ts +1 -0
- package/lib/models/survey-form-element-types.d.ts.map +1 -1
- package/lib/models/survey-form-element-types.js +2 -1
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +3 -0
- package/src/api/hospitals-api.ts +185 -0
- package/src/models/contact-scope.ts +31 -0
- package/src/models/hospital-contact-document-model.ts +2 -8
- package/src/models/hospital-contact-item-model.ts +87 -0
- package/src/models/hospital-contact-model.ts +6 -9
- package/src/models/hospital-contacts-model.ts +42 -0
- package/src/models/index.ts +3 -0
- package/src/models/survey-form-element-types.ts +2 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { ContactScope } from './contact-scope';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -29,22 +30,16 @@ export interface HospitalContactModel {
|
|
|
29
30
|
'name'?: string | null;
|
|
30
31
|
/**
|
|
31
32
|
*
|
|
32
|
-
* @type {
|
|
33
|
-
* @memberof HospitalContactModel
|
|
34
|
-
*/
|
|
35
|
-
'tel'?: string | null;
|
|
36
|
-
/**
|
|
37
|
-
*
|
|
38
|
-
* @type {string}
|
|
33
|
+
* @type {ContactScope}
|
|
39
34
|
* @memberof HospitalContactModel
|
|
40
35
|
*/
|
|
41
|
-
'
|
|
36
|
+
'scope'?: ContactScope;
|
|
42
37
|
/**
|
|
43
38
|
*
|
|
44
39
|
* @type {string}
|
|
45
40
|
* @memberof HospitalContactModel
|
|
46
41
|
*/
|
|
47
|
-
'
|
|
42
|
+
'tel'?: string | null;
|
|
48
43
|
/**
|
|
49
44
|
*
|
|
50
45
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hospital-contact-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"hospital-contact-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contact-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAE/C;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,OAAO,CAAC,EAAE,YAAY,CAAC;IACvB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
3
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 2
|
|
6
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { HospitalContactItemModel } from './hospital-contact-item-model';
|
|
13
|
+
import { PagedListMetaData } from './paged-list-meta-data';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface HospitalContactsModel
|
|
18
|
+
*/
|
|
19
|
+
export interface HospitalContactsModel {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<HospitalContactItemModel>}
|
|
23
|
+
* @memberof HospitalContactsModel
|
|
24
|
+
*/
|
|
25
|
+
'items'?: Array<HospitalContactItemModel> | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {PagedListMetaData}
|
|
29
|
+
* @memberof HospitalContactsModel
|
|
30
|
+
*/
|
|
31
|
+
'metaData'?: PagedListMetaData;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=hospital-contacts-model.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"hospital-contacts-model.d.ts","sourceRoot":"","sources":["../../src/models/hospital-contacts-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;IACjD;;;;OAIG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC;CAClC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger UI - Cloud Hospital Api-INT
|
|
6
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 2
|
|
9
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
package/lib/models/index.d.ts
CHANGED
|
@@ -54,6 +54,7 @@ export * from './consultation-timetable-status';
|
|
|
54
54
|
export * from './consultation-timetable-time-slot-model';
|
|
55
55
|
export * from './consultation-type';
|
|
56
56
|
export * from './consultations-model';
|
|
57
|
+
export * from './contact-scope';
|
|
57
58
|
export * from './contribution-type';
|
|
58
59
|
export * from './contributor-document-model';
|
|
59
60
|
export * from './contributor-item-model';
|
|
@@ -148,7 +149,9 @@ export * from './hospital-accreditation-model';
|
|
|
148
149
|
export * from './hospital-accreditations-model';
|
|
149
150
|
export * from './hospital-consultation-option-model';
|
|
150
151
|
export * from './hospital-contact-document-model';
|
|
152
|
+
export * from './hospital-contact-item-model';
|
|
151
153
|
export * from './hospital-contact-model';
|
|
154
|
+
export * from './hospital-contacts-model';
|
|
152
155
|
export * from './hospital-document-model';
|
|
153
156
|
export * from './hospital-equipment-item-model';
|
|
154
157
|
export * from './hospital-equipment-model';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
package/lib/models/index.js
CHANGED
|
@@ -70,6 +70,7 @@ __exportStar(require("./consultation-timetable-status"), exports);
|
|
|
70
70
|
__exportStar(require("./consultation-timetable-time-slot-model"), exports);
|
|
71
71
|
__exportStar(require("./consultation-type"), exports);
|
|
72
72
|
__exportStar(require("./consultations-model"), exports);
|
|
73
|
+
__exportStar(require("./contact-scope"), exports);
|
|
73
74
|
__exportStar(require("./contribution-type"), exports);
|
|
74
75
|
__exportStar(require("./contributor-document-model"), exports);
|
|
75
76
|
__exportStar(require("./contributor-item-model"), exports);
|
|
@@ -164,7 +165,9 @@ __exportStar(require("./hospital-accreditation-model"), exports);
|
|
|
164
165
|
__exportStar(require("./hospital-accreditations-model"), exports);
|
|
165
166
|
__exportStar(require("./hospital-consultation-option-model"), exports);
|
|
166
167
|
__exportStar(require("./hospital-contact-document-model"), exports);
|
|
168
|
+
__exportStar(require("./hospital-contact-item-model"), exports);
|
|
167
169
|
__exportStar(require("./hospital-contact-model"), exports);
|
|
170
|
+
__exportStar(require("./hospital-contacts-model"), exports);
|
|
168
171
|
__exportStar(require("./hospital-document-model"), exports);
|
|
169
172
|
__exportStar(require("./hospital-equipment-item-model"), exports);
|
|
170
173
|
__exportStar(require("./hospital-equipment-model"), exports);
|
|
@@ -29,6 +29,7 @@ export declare const SurveyFormElementTypes: {
|
|
|
29
29
|
readonly File: "File";
|
|
30
30
|
readonly Countries: "Countries";
|
|
31
31
|
readonly Phone: "Phone";
|
|
32
|
+
readonly HospitalContacts: "HospitalContacts";
|
|
32
33
|
};
|
|
33
34
|
export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
|
|
34
35
|
//# sourceMappingURL=survey-form-element-types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-form-element-types.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-types.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,sBAAsB
|
|
1
|
+
{"version":3,"file":"survey-form-element-types.d.ts","sourceRoot":"","sources":["../../src/models/survey-form-element-types.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAIH;;;;GAIG;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAgBzB,CAAC;AAEX,MAAM,MAAM,sBAAsB,GAAG,OAAO,sBAAsB,CAAC,MAAM,OAAO,sBAAsB,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -101,6 +101,7 @@ models/consultation-timetable-status.ts
|
|
|
101
101
|
models/consultation-timetable-time-slot-model.ts
|
|
102
102
|
models/consultation-type.ts
|
|
103
103
|
models/consultations-model.ts
|
|
104
|
+
models/contact-scope.ts
|
|
104
105
|
models/contribution-type.ts
|
|
105
106
|
models/contributor-document-model.ts
|
|
106
107
|
models/contributor-item-model.ts
|
|
@@ -195,7 +196,9 @@ models/hospital-accreditation-model.ts
|
|
|
195
196
|
models/hospital-accreditations-model.ts
|
|
196
197
|
models/hospital-consultation-option-model.ts
|
|
197
198
|
models/hospital-contact-document-model.ts
|
|
199
|
+
models/hospital-contact-item-model.ts
|
|
198
200
|
models/hospital-contact-model.ts
|
|
201
|
+
models/hospital-contacts-model.ts
|
|
199
202
|
models/hospital-document-model.ts
|
|
200
203
|
models/hospital-equipment-item-model.ts
|
|
201
204
|
models/hospital-equipment-model.ts
|
package/src/api/hospitals-api.ts
CHANGED
|
@@ -23,12 +23,16 @@ import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } fr
|
|
|
23
23
|
// @ts-ignore
|
|
24
24
|
import { AppointmentTimetablesModel } from '../models';
|
|
25
25
|
// @ts-ignore
|
|
26
|
+
import { ContactScope } from '../models';
|
|
27
|
+
// @ts-ignore
|
|
26
28
|
import { CreateLandingFormCommand } from '../models';
|
|
27
29
|
// @ts-ignore
|
|
28
30
|
import { HospitalAccreditationModel } from '../models';
|
|
29
31
|
// @ts-ignore
|
|
30
32
|
import { HospitalAccreditationsModel } from '../models';
|
|
31
33
|
// @ts-ignore
|
|
34
|
+
import { HospitalContactsModel } from '../models';
|
|
35
|
+
// @ts-ignore
|
|
32
36
|
import { HospitalEquipmentModel } from '../models';
|
|
33
37
|
// @ts-ignore
|
|
34
38
|
import { HospitalEquipmentsModel } from '../models';
|
|
@@ -361,6 +365,77 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
361
365
|
|
|
362
366
|
|
|
363
367
|
|
|
368
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
369
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
370
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
371
|
+
|
|
372
|
+
return {
|
|
373
|
+
url: toPathString(localVarUrlObj),
|
|
374
|
+
options: localVarRequestOptions,
|
|
375
|
+
};
|
|
376
|
+
},
|
|
377
|
+
/**
|
|
378
|
+
*
|
|
379
|
+
* @summary Get hospital contacts
|
|
380
|
+
* @param {string} hospitalId
|
|
381
|
+
* @param {string} [contactId]
|
|
382
|
+
* @param {ContactScope} [scope]
|
|
383
|
+
* @param {string} [name]
|
|
384
|
+
* @param {string} [languageCode]
|
|
385
|
+
* @param {number} [page]
|
|
386
|
+
* @param {number} [limit]
|
|
387
|
+
* @param {Date} [lastRetrieved]
|
|
388
|
+
* @param {*} [options] Override http request option.
|
|
389
|
+
* @throws {RequiredError}
|
|
390
|
+
*/
|
|
391
|
+
apiV2HospitalsHospitalIdContactsGet: async (hospitalId: string, contactId?: string, scope?: ContactScope, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
392
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
393
|
+
assertParamExists('apiV2HospitalsHospitalIdContactsGet', 'hospitalId', hospitalId)
|
|
394
|
+
const localVarPath = `/api/v2/hospitals/{hospitalId}/contacts`
|
|
395
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
396
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
397
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
398
|
+
let baseOptions;
|
|
399
|
+
if (configuration) {
|
|
400
|
+
baseOptions = configuration.baseOptions;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
404
|
+
const localVarHeaderParameter = {} as any;
|
|
405
|
+
const localVarQueryParameter = {} as any;
|
|
406
|
+
|
|
407
|
+
if (contactId !== undefined) {
|
|
408
|
+
localVarQueryParameter['ContactId'] = contactId;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
if (scope !== undefined) {
|
|
412
|
+
localVarQueryParameter['Scope'] = scope;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
if (name !== undefined) {
|
|
416
|
+
localVarQueryParameter['Name'] = name;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
if (languageCode !== undefined) {
|
|
420
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
if (page !== undefined) {
|
|
424
|
+
localVarQueryParameter['page'] = page;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
if (limit !== undefined) {
|
|
428
|
+
localVarQueryParameter['limit'] = limit;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
if (lastRetrieved !== undefined) {
|
|
432
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
433
|
+
(lastRetrieved as any).toISOString() :
|
|
434
|
+
lastRetrieved;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
|
|
364
439
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
365
440
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
366
441
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2398,6 +2473,24 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
2398
2473
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, appointmentIdExcluded, options);
|
|
2399
2474
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2400
2475
|
},
|
|
2476
|
+
/**
|
|
2477
|
+
*
|
|
2478
|
+
* @summary Get hospital contacts
|
|
2479
|
+
* @param {string} hospitalId
|
|
2480
|
+
* @param {string} [contactId]
|
|
2481
|
+
* @param {ContactScope} [scope]
|
|
2482
|
+
* @param {string} [name]
|
|
2483
|
+
* @param {string} [languageCode]
|
|
2484
|
+
* @param {number} [page]
|
|
2485
|
+
* @param {number} [limit]
|
|
2486
|
+
* @param {Date} [lastRetrieved]
|
|
2487
|
+
* @param {*} [options] Override http request option.
|
|
2488
|
+
* @throws {RequiredError}
|
|
2489
|
+
*/
|
|
2490
|
+
async apiV2HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, scope?: ContactScope, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalContactsModel>> {
|
|
2491
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2HospitalsHospitalIdContactsGet(hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options);
|
|
2492
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2493
|
+
},
|
|
2401
2494
|
/**
|
|
2402
2495
|
*
|
|
2403
2496
|
* @summary Get HospitalEquipment.
|
|
@@ -2995,6 +3088,23 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
2995
3088
|
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel> {
|
|
2996
3089
|
return localVarFp.apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId, year, month, timeZone, appointmentIdExcluded, options).then((request) => request(axios, basePath));
|
|
2997
3090
|
},
|
|
3091
|
+
/**
|
|
3092
|
+
*
|
|
3093
|
+
* @summary Get hospital contacts
|
|
3094
|
+
* @param {string} hospitalId
|
|
3095
|
+
* @param {string} [contactId]
|
|
3096
|
+
* @param {ContactScope} [scope]
|
|
3097
|
+
* @param {string} [name]
|
|
3098
|
+
* @param {string} [languageCode]
|
|
3099
|
+
* @param {number} [page]
|
|
3100
|
+
* @param {number} [limit]
|
|
3101
|
+
* @param {Date} [lastRetrieved]
|
|
3102
|
+
* @param {*} [options] Override http request option.
|
|
3103
|
+
* @throws {RequiredError}
|
|
3104
|
+
*/
|
|
3105
|
+
apiV2HospitalsHospitalIdContactsGet(hospitalId: string, contactId?: string, scope?: ContactScope, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalContactsModel> {
|
|
3106
|
+
return localVarFp.apiV2HospitalsHospitalIdContactsGet(hospitalId, contactId, scope, name, languageCode, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
3107
|
+
},
|
|
2998
3108
|
/**
|
|
2999
3109
|
*
|
|
3000
3110
|
* @summary Get HospitalEquipment.
|
|
@@ -3737,6 +3847,69 @@ export interface HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetReq
|
|
|
3737
3847
|
readonly appointmentIdExcluded?: string
|
|
3738
3848
|
}
|
|
3739
3849
|
|
|
3850
|
+
/**
|
|
3851
|
+
* Request parameters for apiV2HospitalsHospitalIdContactsGet operation in HospitalsApi.
|
|
3852
|
+
* @export
|
|
3853
|
+
* @interface HospitalsApiApiV2HospitalsHospitalIdContactsGetRequest
|
|
3854
|
+
*/
|
|
3855
|
+
export interface HospitalsApiApiV2HospitalsHospitalIdContactsGetRequest {
|
|
3856
|
+
/**
|
|
3857
|
+
*
|
|
3858
|
+
* @type {string}
|
|
3859
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3860
|
+
*/
|
|
3861
|
+
readonly hospitalId: string
|
|
3862
|
+
|
|
3863
|
+
/**
|
|
3864
|
+
*
|
|
3865
|
+
* @type {string}
|
|
3866
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3867
|
+
*/
|
|
3868
|
+
readonly contactId?: string
|
|
3869
|
+
|
|
3870
|
+
/**
|
|
3871
|
+
*
|
|
3872
|
+
* @type {ContactScope}
|
|
3873
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3874
|
+
*/
|
|
3875
|
+
readonly scope?: ContactScope
|
|
3876
|
+
|
|
3877
|
+
/**
|
|
3878
|
+
*
|
|
3879
|
+
* @type {string}
|
|
3880
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3881
|
+
*/
|
|
3882
|
+
readonly name?: string
|
|
3883
|
+
|
|
3884
|
+
/**
|
|
3885
|
+
*
|
|
3886
|
+
* @type {string}
|
|
3887
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3888
|
+
*/
|
|
3889
|
+
readonly languageCode?: string
|
|
3890
|
+
|
|
3891
|
+
/**
|
|
3892
|
+
*
|
|
3893
|
+
* @type {number}
|
|
3894
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3895
|
+
*/
|
|
3896
|
+
readonly page?: number
|
|
3897
|
+
|
|
3898
|
+
/**
|
|
3899
|
+
*
|
|
3900
|
+
* @type {number}
|
|
3901
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3902
|
+
*/
|
|
3903
|
+
readonly limit?: number
|
|
3904
|
+
|
|
3905
|
+
/**
|
|
3906
|
+
*
|
|
3907
|
+
* @type {Date}
|
|
3908
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdContactsGet
|
|
3909
|
+
*/
|
|
3910
|
+
readonly lastRetrieved?: Date
|
|
3911
|
+
}
|
|
3912
|
+
|
|
3740
3913
|
/**
|
|
3741
3914
|
* Request parameters for apiV2HospitalsHospitalIdEquipmentsEquipmentIdGet operation in HospitalsApi.
|
|
3742
3915
|
* @export
|
|
@@ -5409,6 +5582,18 @@ export class HospitalsApi extends BaseAPI {
|
|
|
5409
5582
|
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters.hospitalId, requestParameters.year, requestParameters.month, requestParameters.timeZone, requestParameters.appointmentIdExcluded, options).then((request) => request(this.axios, this.basePath));
|
|
5410
5583
|
}
|
|
5411
5584
|
|
|
5585
|
+
/**
|
|
5586
|
+
*
|
|
5587
|
+
* @summary Get hospital contacts
|
|
5588
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdContactsGetRequest} requestParameters Request parameters.
|
|
5589
|
+
* @param {*} [options] Override http request option.
|
|
5590
|
+
* @throws {RequiredError}
|
|
5591
|
+
* @memberof HospitalsApi
|
|
5592
|
+
*/
|
|
5593
|
+
public apiV2HospitalsHospitalIdContactsGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdContactsGetRequest, options?: AxiosRequestConfig) {
|
|
5594
|
+
return HospitalsApiFp(this.configuration).apiV2HospitalsHospitalIdContactsGet(requestParameters.hospitalId, requestParameters.contactId, requestParameters.scope, requestParameters.name, requestParameters.languageCode, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
5595
|
+
}
|
|
5596
|
+
|
|
5412
5597
|
/**
|
|
5413
5598
|
*
|
|
5414
5599
|
* @summary Get HospitalEquipment.
|
|
@@ -0,0 +1,31 @@
|
|
|
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
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
export const ContactScope = {
|
|
24
|
+
Domestic: 'Domestic',
|
|
25
|
+
International: 'International'
|
|
26
|
+
} as const;
|
|
27
|
+
|
|
28
|
+
export type ContactScope = typeof ContactScope[keyof typeof ContactScope];
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
@@ -37,19 +37,13 @@ export interface HospitalContactDocumentModel {
|
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof HospitalContactDocumentModel
|
|
39
39
|
*/
|
|
40
|
-
'
|
|
40
|
+
'scope'?: string | null;
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
43
|
* @type {string}
|
|
44
44
|
* @memberof HospitalContactDocumentModel
|
|
45
45
|
*/
|
|
46
|
-
'
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {string}
|
|
50
|
-
* @memberof HospitalContactDocumentModel
|
|
51
|
-
*/
|
|
52
|
-
'Email'?: string | null;
|
|
46
|
+
'Tel'?: string | null;
|
|
53
47
|
/**
|
|
54
48
|
*
|
|
55
49
|
* @type {string}
|
|
@@ -0,0 +1,87 @@
|
|
|
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 { ContactScope } from './contact-scope';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface HospitalContactItemModel
|
|
24
|
+
*/
|
|
25
|
+
export interface HospitalContactItemModel {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof HospitalContactItemModel
|
|
30
|
+
*/
|
|
31
|
+
'id'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {ContactScope}
|
|
35
|
+
* @memberof HospitalContactItemModel
|
|
36
|
+
*/
|
|
37
|
+
'scope'?: ContactScope;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof HospitalContactItemModel
|
|
42
|
+
*/
|
|
43
|
+
'name'?: string | null;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof HospitalContactItemModel
|
|
48
|
+
*/
|
|
49
|
+
'tel'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof HospitalContactItemModel
|
|
54
|
+
*/
|
|
55
|
+
'targetTel'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof HospitalContactItemModel
|
|
60
|
+
*/
|
|
61
|
+
'email'?: string | null;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof HospitalContactItemModel
|
|
66
|
+
*/
|
|
67
|
+
'languageCode'?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof HospitalContactItemModel
|
|
72
|
+
*/
|
|
73
|
+
'hospitalId'?: string;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof HospitalContactItemModel
|
|
78
|
+
*/
|
|
79
|
+
'order'?: number;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* @memberof HospitalContactItemModel
|
|
84
|
+
*/
|
|
85
|
+
'languageLocalizedName'?: string | null;
|
|
86
|
+
}
|
|
87
|
+
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { ContactScope } from './contact-scope';
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
*
|
|
@@ -34,22 +37,16 @@ export interface HospitalContactModel {
|
|
|
34
37
|
'name'?: string | null;
|
|
35
38
|
/**
|
|
36
39
|
*
|
|
37
|
-
* @type {
|
|
38
|
-
* @memberof HospitalContactModel
|
|
39
|
-
*/
|
|
40
|
-
'tel'?: string | null;
|
|
41
|
-
/**
|
|
42
|
-
*
|
|
43
|
-
* @type {string}
|
|
40
|
+
* @type {ContactScope}
|
|
44
41
|
* @memberof HospitalContactModel
|
|
45
42
|
*/
|
|
46
|
-
'
|
|
43
|
+
'scope'?: ContactScope;
|
|
47
44
|
/**
|
|
48
45
|
*
|
|
49
46
|
* @type {string}
|
|
50
47
|
* @memberof HospitalContactModel
|
|
51
48
|
*/
|
|
52
|
-
'
|
|
49
|
+
'tel'?: string | null;
|
|
53
50
|
/**
|
|
54
51
|
*
|
|
55
52
|
* @type {string}
|
|
@@ -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 { 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
|
+
|