ch-api-client-typescript2 5.3.1 → 5.3.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/call-histories-api.d.ts +144 -0
- package/lib/api/call-histories-api.d.ts.map +1 -0
- package/lib/api/call-histories-api.js +286 -0
- package/lib/api.d.ts +1 -0
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +1 -0
- package/lib/models/call-status.d.ts +29 -0
- package/lib/models/call-status.d.ts.map +1 -0
- package/lib/models/call-status.js +32 -0
- package/lib/models/create-call-history-command.d.ts +104 -0
- package/lib/models/create-call-history-command.d.ts.map +1 -0
- package/lib/models/create-call-history-command.js +15 -0
- package/lib/models/deal-document-model.d.ts +6 -0
- package/lib/models/deal-document-model.d.ts.map +1 -1
- package/lib/models/deal-item-model.d.ts +6 -0
- package/lib/models/deal-item-model.d.ts.map +1 -1
- package/lib/models/deal-model.d.ts +6 -0
- package/lib/models/deal-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-item-model.d.ts +6 -0
- package/lib/models/doctor-affiliation-item-model.d.ts.map +1 -1
- package/lib/models/doctor-affiliation-model.d.ts +6 -0
- package/lib/models/doctor-affiliation-model.d.ts.map +1 -1
- package/lib/models/doctor-document-model.d.ts +6 -0
- package/lib/models/doctor-document-model.d.ts.map +1 -1
- package/lib/models/grade-document-model.d.ts +43 -0
- package/lib/models/grade-document-model.d.ts.map +1 -0
- package/lib/models/grade-document-model.js +15 -0
- package/lib/models/grade-model.d.ts +43 -0
- package/lib/models/grade-model.d.ts.map +1 -0
- package/lib/models/grade-model.js +15 -0
- package/lib/models/hospital-document-model.d.ts +85 -78
- package/lib/models/hospital-document-model.d.ts.map +1 -1
- package/lib/models/hospital-item-model.d.ts +19 -0
- package/lib/models/hospital-item-model.d.ts.map +1 -1
- package/lib/models/hospital-model.d.ts +19 -0
- package/lib/models/hospital-model.d.ts.map +1 -1
- package/lib/models/hospital-sub-document-model.d.ts +7 -0
- package/lib/models/hospital-sub-document-model.d.ts.map +1 -1
- package/lib/models/hospital-translation-document-model.d.ts +61 -0
- package/lib/models/hospital-translation-document-model.d.ts.map +1 -0
- package/lib/models/hospital-translation-document-model.js +15 -0
- package/lib/models/index.d.ts +6 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +6 -0
- package/lib/models/update-call-history-command.d.ts +98 -0
- package/lib/models/update-call-history-command.d.ts.map +1 -0
- package/lib/models/update-call-history-command.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +7 -0
- package/src/api/call-histories-api.ts +237 -0
- package/src/api.ts +1 -0
- package/src/models/call-status.ts +38 -0
- package/src/models/create-call-history-command.ts +111 -0
- package/src/models/deal-document-model.ts +6 -0
- package/src/models/deal-item-model.ts +6 -0
- package/src/models/deal-model.ts +6 -0
- package/src/models/doctor-affiliation-item-model.ts +6 -0
- package/src/models/doctor-affiliation-model.ts +6 -0
- package/src/models/doctor-document-model.ts +6 -0
- package/src/models/grade-document-model.ts +48 -0
- package/src/models/grade-model.ts +48 -0
- package/src/models/hospital-document-model.ts +89 -80
- package/src/models/hospital-item-model.ts +21 -0
- package/src/models/hospital-model.ts +21 -0
- package/src/models/hospital-sub-document-model.ts +9 -0
- package/src/models/hospital-translation-document-model.ts +66 -0
- package/src/models/index.ts +6 -0
- package/src/models/update-call-history-command.ts +105 -0
|
@@ -0,0 +1,237 @@
|
|
|
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
|
+
import globalAxios, { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
17
|
+
import { Configuration } from '../configuration';
|
|
18
|
+
// Some imports not used depending on template conditions
|
|
19
|
+
// @ts-ignore
|
|
20
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
|
|
21
|
+
// @ts-ignore
|
|
22
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
import { CreateCallHistoryCommand } from '../models';
|
|
25
|
+
// @ts-ignore
|
|
26
|
+
import { UpdateCallHistoryCommand } from '../models';
|
|
27
|
+
/**
|
|
28
|
+
* CallHistoriesApi - axios parameter creator
|
|
29
|
+
* @export
|
|
30
|
+
*/
|
|
31
|
+
export const CallHistoriesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
32
|
+
return {
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @summary Update Call History
|
|
36
|
+
* @param {string} callId
|
|
37
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
apiV2CallhistoriesCallIdPost: async (callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
42
|
+
// verify required parameter 'callId' is not null or undefined
|
|
43
|
+
assertParamExists('apiV2CallhistoriesCallIdPost', 'callId', callId)
|
|
44
|
+
const localVarPath = `/api/v2/callhistories/{callId}`
|
|
45
|
+
.replace(`{${"callId"}}`, encodeURIComponent(String(callId)));
|
|
46
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
47
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
48
|
+
let baseOptions;
|
|
49
|
+
if (configuration) {
|
|
50
|
+
baseOptions = configuration.baseOptions;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
54
|
+
const localVarHeaderParameter = {} as any;
|
|
55
|
+
const localVarQueryParameter = {} as any;
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
60
|
+
|
|
61
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
62
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
63
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
64
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateCallHistoryCommand, localVarRequestOptions, configuration)
|
|
65
|
+
|
|
66
|
+
return {
|
|
67
|
+
url: toPathString(localVarUrlObj),
|
|
68
|
+
options: localVarRequestOptions,
|
|
69
|
+
};
|
|
70
|
+
},
|
|
71
|
+
/**
|
|
72
|
+
*
|
|
73
|
+
* @summary Create Call History
|
|
74
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
75
|
+
* @param {*} [options] Override http request option.
|
|
76
|
+
* @throws {RequiredError}
|
|
77
|
+
*/
|
|
78
|
+
apiV2CallhistoriesPost: async (createCallHistoryCommand?: CreateCallHistoryCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
79
|
+
const localVarPath = `/api/v2/callhistories`;
|
|
80
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
81
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
82
|
+
let baseOptions;
|
|
83
|
+
if (configuration) {
|
|
84
|
+
baseOptions = configuration.baseOptions;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
88
|
+
const localVarHeaderParameter = {} as any;
|
|
89
|
+
const localVarQueryParameter = {} as any;
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
94
|
+
|
|
95
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
96
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
97
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
98
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createCallHistoryCommand, localVarRequestOptions, configuration)
|
|
99
|
+
|
|
100
|
+
return {
|
|
101
|
+
url: toPathString(localVarUrlObj),
|
|
102
|
+
options: localVarRequestOptions,
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
}
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
/**
|
|
109
|
+
* CallHistoriesApi - functional programming interface
|
|
110
|
+
* @export
|
|
111
|
+
*/
|
|
112
|
+
export const CallHistoriesApiFp = function(configuration?: Configuration) {
|
|
113
|
+
const localVarAxiosParamCreator = CallHistoriesApiAxiosParamCreator(configuration)
|
|
114
|
+
return {
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @summary Update Call History
|
|
118
|
+
* @param {string} callId
|
|
119
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
120
|
+
* @param {*} [options] Override http request option.
|
|
121
|
+
* @throws {RequiredError}
|
|
122
|
+
*/
|
|
123
|
+
async apiV2CallhistoriesCallIdPost(callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
124
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2CallhistoriesCallIdPost(callId, updateCallHistoryCommand, options);
|
|
125
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
126
|
+
},
|
|
127
|
+
/**
|
|
128
|
+
*
|
|
129
|
+
* @summary Create Call History
|
|
130
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
131
|
+
* @param {*} [options] Override http request option.
|
|
132
|
+
* @throws {RequiredError}
|
|
133
|
+
*/
|
|
134
|
+
async apiV2CallhistoriesPost(createCallHistoryCommand?: CreateCallHistoryCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
135
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2CallhistoriesPost(createCallHistoryCommand, options);
|
|
136
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
137
|
+
},
|
|
138
|
+
}
|
|
139
|
+
};
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* CallHistoriesApi - factory interface
|
|
143
|
+
* @export
|
|
144
|
+
*/
|
|
145
|
+
export const CallHistoriesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
146
|
+
const localVarFp = CallHistoriesApiFp(configuration)
|
|
147
|
+
return {
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @summary Update Call History
|
|
151
|
+
* @param {string} callId
|
|
152
|
+
* @param {UpdateCallHistoryCommand} [updateCallHistoryCommand]
|
|
153
|
+
* @param {*} [options] Override http request option.
|
|
154
|
+
* @throws {RequiredError}
|
|
155
|
+
*/
|
|
156
|
+
apiV2CallhistoriesCallIdPost(callId: string, updateCallHistoryCommand?: UpdateCallHistoryCommand, options?: any): AxiosPromise<string> {
|
|
157
|
+
return localVarFp.apiV2CallhistoriesCallIdPost(callId, updateCallHistoryCommand, options).then((request) => request(axios, basePath));
|
|
158
|
+
},
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @summary Create Call History
|
|
162
|
+
* @param {CreateCallHistoryCommand} [createCallHistoryCommand]
|
|
163
|
+
* @param {*} [options] Override http request option.
|
|
164
|
+
* @throws {RequiredError}
|
|
165
|
+
*/
|
|
166
|
+
apiV2CallhistoriesPost(createCallHistoryCommand?: CreateCallHistoryCommand, options?: any): AxiosPromise<string> {
|
|
167
|
+
return localVarFp.apiV2CallhistoriesPost(createCallHistoryCommand, options).then((request) => request(axios, basePath));
|
|
168
|
+
},
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Request parameters for apiV2CallhistoriesCallIdPost operation in CallHistoriesApi.
|
|
174
|
+
* @export
|
|
175
|
+
* @interface CallHistoriesApiApiV2CallhistoriesCallIdPostRequest
|
|
176
|
+
*/
|
|
177
|
+
export interface CallHistoriesApiApiV2CallhistoriesCallIdPostRequest {
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesCallIdPost
|
|
182
|
+
*/
|
|
183
|
+
readonly callId: string
|
|
184
|
+
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @type {UpdateCallHistoryCommand}
|
|
188
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesCallIdPost
|
|
189
|
+
*/
|
|
190
|
+
readonly updateCallHistoryCommand?: UpdateCallHistoryCommand
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* Request parameters for apiV2CallhistoriesPost operation in CallHistoriesApi.
|
|
195
|
+
* @export
|
|
196
|
+
* @interface CallHistoriesApiApiV2CallhistoriesPostRequest
|
|
197
|
+
*/
|
|
198
|
+
export interface CallHistoriesApiApiV2CallhistoriesPostRequest {
|
|
199
|
+
/**
|
|
200
|
+
*
|
|
201
|
+
* @type {CreateCallHistoryCommand}
|
|
202
|
+
* @memberof CallHistoriesApiApiV2CallhistoriesPost
|
|
203
|
+
*/
|
|
204
|
+
readonly createCallHistoryCommand?: CreateCallHistoryCommand
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* CallHistoriesApi - object-oriented interface
|
|
209
|
+
* @export
|
|
210
|
+
* @class CallHistoriesApi
|
|
211
|
+
* @extends {BaseAPI}
|
|
212
|
+
*/
|
|
213
|
+
export class CallHistoriesApi extends BaseAPI {
|
|
214
|
+
/**
|
|
215
|
+
*
|
|
216
|
+
* @summary Update Call History
|
|
217
|
+
* @param {CallHistoriesApiApiV2CallhistoriesCallIdPostRequest} requestParameters Request parameters.
|
|
218
|
+
* @param {*} [options] Override http request option.
|
|
219
|
+
* @throws {RequiredError}
|
|
220
|
+
* @memberof CallHistoriesApi
|
|
221
|
+
*/
|
|
222
|
+
public apiV2CallhistoriesCallIdPost(requestParameters: CallHistoriesApiApiV2CallhistoriesCallIdPostRequest, options?: AxiosRequestConfig) {
|
|
223
|
+
return CallHistoriesApiFp(this.configuration).apiV2CallhistoriesCallIdPost(requestParameters.callId, requestParameters.updateCallHistoryCommand, options).then((request) => request(this.axios, this.basePath));
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
/**
|
|
227
|
+
*
|
|
228
|
+
* @summary Create Call History
|
|
229
|
+
* @param {CallHistoriesApiApiV2CallhistoriesPostRequest} requestParameters Request parameters.
|
|
230
|
+
* @param {*} [options] Override http request option.
|
|
231
|
+
* @throws {RequiredError}
|
|
232
|
+
* @memberof CallHistoriesApi
|
|
233
|
+
*/
|
|
234
|
+
public apiV2CallhistoriesPost(requestParameters: CallHistoriesApiApiV2CallhistoriesPostRequest = {}, options?: AxiosRequestConfig) {
|
|
235
|
+
return CallHistoriesApiFp(this.configuration).apiV2CallhistoriesPost(requestParameters.createCallHistoryCommand, options).then((request) => request(this.axios, this.basePath));
|
|
236
|
+
}
|
|
237
|
+
}
|
package/src/api.ts
CHANGED
|
@@ -20,6 +20,7 @@ export * from './api/app-version-api';
|
|
|
20
20
|
export * from './api/appointments-api';
|
|
21
21
|
export * from './api/articles-api';
|
|
22
22
|
export * from './api/bookings-api';
|
|
23
|
+
export * from './api/call-histories-api';
|
|
23
24
|
export * from './api/chat-users-api';
|
|
24
25
|
export * from './api/communications-api';
|
|
25
26
|
export * from './api/consultations-api';
|
|
@@ -0,0 +1,38 @@
|
|
|
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 CallStatus = {
|
|
24
|
+
Started: 'Started',
|
|
25
|
+
Ringing: 'Ringing',
|
|
26
|
+
Answered: 'Answered',
|
|
27
|
+
Busy: 'Busy',
|
|
28
|
+
Cancelled: 'Cancelled',
|
|
29
|
+
Unanswered: 'Unanswered',
|
|
30
|
+
Disconnected: 'Disconnected',
|
|
31
|
+
Rejected: 'Rejected',
|
|
32
|
+
Failed: 'Failed'
|
|
33
|
+
} as const;
|
|
34
|
+
|
|
35
|
+
export type CallStatus = typeof CallStatus[keyof typeof CallStatus];
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
@@ -0,0 +1,111 @@
|
|
|
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 { CallStatus } from './call-status';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface CreateCallHistoryCommand
|
|
24
|
+
*/
|
|
25
|
+
export interface CreateCallHistoryCommand {
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof CreateCallHistoryCommand
|
|
30
|
+
*/
|
|
31
|
+
'callId'?: string;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof CreateCallHistoryCommand
|
|
36
|
+
*/
|
|
37
|
+
'patientId'?: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof CreateCallHistoryCommand
|
|
42
|
+
*/
|
|
43
|
+
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateCallHistoryCommand
|
|
48
|
+
*/
|
|
49
|
+
'virtualNumber'?: string | null;
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof CreateCallHistoryCommand
|
|
54
|
+
*/
|
|
55
|
+
'targetNumber'?: string | null;
|
|
56
|
+
/**
|
|
57
|
+
*
|
|
58
|
+
* @type {Date}
|
|
59
|
+
* @memberof CreateCallHistoryCommand
|
|
60
|
+
*/
|
|
61
|
+
'startTime'?: Date;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {Date}
|
|
65
|
+
* @memberof CreateCallHistoryCommand
|
|
66
|
+
*/
|
|
67
|
+
'endTime'?: Date;
|
|
68
|
+
/**
|
|
69
|
+
*
|
|
70
|
+
* @type {number}
|
|
71
|
+
* @memberof CreateCallHistoryCommand
|
|
72
|
+
*/
|
|
73
|
+
'duration'?: number;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof CreateCallHistoryCommand
|
|
78
|
+
*/
|
|
79
|
+
'rate'?: number;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof CreateCallHistoryCommand
|
|
84
|
+
*/
|
|
85
|
+
'price'?: number;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {string}
|
|
89
|
+
* @memberof CreateCallHistoryCommand
|
|
90
|
+
*/
|
|
91
|
+
'customData'?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {boolean}
|
|
95
|
+
* @memberof CreateCallHistoryCommand
|
|
96
|
+
*/
|
|
97
|
+
'isExternal'?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {CallStatus}
|
|
101
|
+
* @memberof CreateCallHistoryCommand
|
|
102
|
+
*/
|
|
103
|
+
'status'?: CallStatus;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {Date}
|
|
107
|
+
* @memberof CreateCallHistoryCommand
|
|
108
|
+
*/
|
|
109
|
+
'timeStamp'?: Date;
|
|
110
|
+
}
|
|
111
|
+
|
|
@@ -347,6 +347,12 @@ export interface DealDocumentModel {
|
|
|
347
347
|
* @memberof DealDocumentModel
|
|
348
348
|
*/
|
|
349
349
|
'ServiceDuration'?: number;
|
|
350
|
+
/**
|
|
351
|
+
*
|
|
352
|
+
* @type {string}
|
|
353
|
+
* @memberof DealDocumentModel
|
|
354
|
+
*/
|
|
355
|
+
'FormUrl'?: string | null;
|
|
350
356
|
/**
|
|
351
357
|
*
|
|
352
358
|
* @type {AppointmentOptionDocumentModel}
|
package/src/models/deal-model.ts
CHANGED
|
@@ -188,6 +188,12 @@ export interface DoctorAffiliationItemModel {
|
|
|
188
188
|
* @memberof DoctorAffiliationItemModel
|
|
189
189
|
*/
|
|
190
190
|
'specialtiesSummerized'?: string | null;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof DoctorAffiliationItemModel
|
|
195
|
+
*/
|
|
196
|
+
'formUrl'?: string | null;
|
|
191
197
|
/**
|
|
192
198
|
*
|
|
193
199
|
* @type {number}
|
|
@@ -197,6 +197,12 @@ export interface DoctorAffiliationModel {
|
|
|
197
197
|
* @memberof DoctorAffiliationModel
|
|
198
198
|
*/
|
|
199
199
|
'specialtiesSummerized'?: string | null;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {string}
|
|
203
|
+
* @memberof DoctorAffiliationModel
|
|
204
|
+
*/
|
|
205
|
+
'formUrl'?: string | null;
|
|
200
206
|
/**
|
|
201
207
|
*
|
|
202
208
|
* @type {number}
|
|
@@ -314,6 +314,12 @@ export interface DoctorDocumentModel {
|
|
|
314
314
|
* @memberof DoctorDocumentModel
|
|
315
315
|
*/
|
|
316
316
|
'PhotoThumbnail'?: string | null;
|
|
317
|
+
/**
|
|
318
|
+
*
|
|
319
|
+
* @type {string}
|
|
320
|
+
* @memberof DoctorDocumentModel
|
|
321
|
+
*/
|
|
322
|
+
'FormUrl'?: string | null;
|
|
317
323
|
/**
|
|
318
324
|
*
|
|
319
325
|
* @type {string}
|
|
@@ -0,0 +1,48 @@
|
|
|
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 GradeDocumentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface GradeDocumentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GradeDocumentModel
|
|
27
|
+
*/
|
|
28
|
+
'Id'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GradeDocumentModel
|
|
33
|
+
*/
|
|
34
|
+
'Name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GradeDocumentModel
|
|
39
|
+
*/
|
|
40
|
+
'SearchBonus'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof GradeDocumentModel
|
|
45
|
+
*/
|
|
46
|
+
'SemanticSearchEnabled'?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
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 GradeModel
|
|
21
|
+
*/
|
|
22
|
+
export interface GradeModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof GradeModel
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof GradeModel
|
|
33
|
+
*/
|
|
34
|
+
'name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof GradeModel
|
|
39
|
+
*/
|
|
40
|
+
'searchBonus'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof GradeModel
|
|
45
|
+
*/
|
|
46
|
+
'semanticSearchEnabled'?: boolean;
|
|
47
|
+
}
|
|
48
|
+
|