ch-api-client-typescript2 5.5.8 → 5.5.9
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/search-curations-api.d.ts +110 -0
- package/lib/api/search-curations-api.d.ts.map +1 -1
- package/lib/api/search-curations-api.js +162 -0
- package/lib/models/create-call-history-command.d.ts +6 -0
- package/lib/models/create-call-history-command.d.ts.map +1 -1
- package/lib/models/doctor-item-model.d.ts +20 -0
- package/lib/models/doctor-item-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/search-curations-api.ts +190 -0
- package/src/models/create-call-history-command.ts +6 -0
- package/src/models/doctor-item-model.ts +24 -0
|
@@ -26,6 +26,24 @@ export declare const SearchCurationsApiAxiosParamCreator: (configuration?: Confi
|
|
|
26
26
|
* @throws {RequiredError}
|
|
27
27
|
*/
|
|
28
28
|
apiV2SearchcurationsGet: (languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @summary Get search curation item by id
|
|
32
|
+
* @param {string} id
|
|
33
|
+
* @param {string} [languageCode]
|
|
34
|
+
* @param {*} [options] Override http request option.
|
|
35
|
+
* @throws {RequiredError}
|
|
36
|
+
*/
|
|
37
|
+
apiV2SearchcurationsIdGet: (id: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @summary Get search curation item by slug
|
|
41
|
+
* @param {string} slug
|
|
42
|
+
* @param {string} [languageCode]
|
|
43
|
+
* @param {*} [options] Override http request option.
|
|
44
|
+
* @throws {RequiredError}
|
|
45
|
+
*/
|
|
46
|
+
apiV2SearchcurationsSlugGet: (slug: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
29
47
|
};
|
|
30
48
|
/**
|
|
31
49
|
* SearchCurationsApi - functional programming interface
|
|
@@ -40,6 +58,24 @@ export declare const SearchCurationsApiFp: (configuration?: Configuration) => {
|
|
|
40
58
|
* @throws {RequiredError}
|
|
41
59
|
*/
|
|
42
60
|
apiV2SearchcurationsGet(languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchCurationItemModel>>>;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @summary Get search curation item by id
|
|
64
|
+
* @param {string} id
|
|
65
|
+
* @param {string} [languageCode]
|
|
66
|
+
* @param {*} [options] Override http request option.
|
|
67
|
+
* @throws {RequiredError}
|
|
68
|
+
*/
|
|
69
|
+
apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
|
|
70
|
+
/**
|
|
71
|
+
*
|
|
72
|
+
* @summary Get search curation item by slug
|
|
73
|
+
* @param {string} slug
|
|
74
|
+
* @param {string} [languageCode]
|
|
75
|
+
* @param {*} [options] Override http request option.
|
|
76
|
+
* @throws {RequiredError}
|
|
77
|
+
*/
|
|
78
|
+
apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
|
|
43
79
|
};
|
|
44
80
|
/**
|
|
45
81
|
* SearchCurationsApi - factory interface
|
|
@@ -54,6 +90,24 @@ export declare const SearchCurationsApiFactory: (configuration?: Configuration,
|
|
|
54
90
|
* @throws {RequiredError}
|
|
55
91
|
*/
|
|
56
92
|
apiV2SearchcurationsGet(languageCode?: string, options?: any): AxiosPromise<Array<SearchCurationItemModel>>;
|
|
93
|
+
/**
|
|
94
|
+
*
|
|
95
|
+
* @summary Get search curation item by id
|
|
96
|
+
* @param {string} id
|
|
97
|
+
* @param {string} [languageCode]
|
|
98
|
+
* @param {*} [options] Override http request option.
|
|
99
|
+
* @throws {RequiredError}
|
|
100
|
+
*/
|
|
101
|
+
apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel>;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @summary Get search curation item by slug
|
|
105
|
+
* @param {string} slug
|
|
106
|
+
* @param {string} [languageCode]
|
|
107
|
+
* @param {*} [options] Override http request option.
|
|
108
|
+
* @throws {RequiredError}
|
|
109
|
+
*/
|
|
110
|
+
apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel>;
|
|
57
111
|
};
|
|
58
112
|
/**
|
|
59
113
|
* Request parameters for apiV2SearchcurationsGet operation in SearchCurationsApi.
|
|
@@ -68,6 +122,44 @@ export interface SearchCurationsApiApiV2SearchcurationsGetRequest {
|
|
|
68
122
|
*/
|
|
69
123
|
readonly languageCode?: string;
|
|
70
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* Request parameters for apiV2SearchcurationsIdGet operation in SearchCurationsApi.
|
|
127
|
+
* @export
|
|
128
|
+
* @interface SearchCurationsApiApiV2SearchcurationsIdGetRequest
|
|
129
|
+
*/
|
|
130
|
+
export interface SearchCurationsApiApiV2SearchcurationsIdGetRequest {
|
|
131
|
+
/**
|
|
132
|
+
*
|
|
133
|
+
* @type {string}
|
|
134
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsIdGet
|
|
135
|
+
*/
|
|
136
|
+
readonly id: string;
|
|
137
|
+
/**
|
|
138
|
+
*
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsIdGet
|
|
141
|
+
*/
|
|
142
|
+
readonly languageCode?: string;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Request parameters for apiV2SearchcurationsSlugGet operation in SearchCurationsApi.
|
|
146
|
+
* @export
|
|
147
|
+
* @interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest
|
|
148
|
+
*/
|
|
149
|
+
export interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest {
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
|
|
154
|
+
*/
|
|
155
|
+
readonly slug: string;
|
|
156
|
+
/**
|
|
157
|
+
*
|
|
158
|
+
* @type {string}
|
|
159
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
|
|
160
|
+
*/
|
|
161
|
+
readonly languageCode?: string;
|
|
162
|
+
}
|
|
71
163
|
/**
|
|
72
164
|
* SearchCurationsApi - object-oriented interface
|
|
73
165
|
* @export
|
|
@@ -84,5 +176,23 @@ export declare class SearchCurationsApi extends BaseAPI {
|
|
|
84
176
|
* @memberof SearchCurationsApi
|
|
85
177
|
*/
|
|
86
178
|
apiV2SearchcurationsGet(requestParameters?: SearchCurationsApiApiV2SearchcurationsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel[], any>>;
|
|
179
|
+
/**
|
|
180
|
+
*
|
|
181
|
+
* @summary Get search curation item by id
|
|
182
|
+
* @param {SearchCurationsApiApiV2SearchcurationsIdGetRequest} requestParameters Request parameters.
|
|
183
|
+
* @param {*} [options] Override http request option.
|
|
184
|
+
* @throws {RequiredError}
|
|
185
|
+
* @memberof SearchCurationsApi
|
|
186
|
+
*/
|
|
187
|
+
apiV2SearchcurationsIdGet(requestParameters: SearchCurationsApiApiV2SearchcurationsIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @summary Get search curation item by slug
|
|
191
|
+
* @param {SearchCurationsApiApiV2SearchcurationsSlugGetRequest} requestParameters Request parameters.
|
|
192
|
+
* @param {*} [options] Override http request option.
|
|
193
|
+
* @throws {RequiredError}
|
|
194
|
+
* @memberof SearchCurationsApi
|
|
195
|
+
*/
|
|
196
|
+
apiV2SearchcurationsSlugGet(requestParameters: SearchCurationsApiApiV2SearchcurationsSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
|
|
87
197
|
}
|
|
88
198
|
//# sourceMappingURL=search-curations-api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-curations-api.d.ts","sourceRoot":"","sources":["../../src/api/search-curations-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AACpD;;;GAGG;AACH,eAAO,MAAM,mCAAmC,mBAA6B,aAAa;IAElF;;;;;;OAMG;6CAC4C,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"search-curations-api.d.ts","sourceRoot":"","sources":["../../src/api/search-curations-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AACpD;;;GAGG;AACH,eAAO,MAAM,mCAAmC,mBAA6B,aAAa;IAElF;;;;;;OAMG;6CAC4C,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA4B9G;;;;;;;OAOG;oCACmC,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+B5H;;;;;;;OAOG;wCACuC,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CAgCvI,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,mBAA4B,aAAa;IAGlE;;;;;;OAMG;2CAC0C,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,MAAM,uBAAuB,CAAC,CAAC;IAItL;;;;;;;OAOG;kCACiC,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,uBAAuB,CAAC;IAI7L;;;;;;;OAOG;sCACqC,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,uBAAuB,CAAC;CAKxM,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGlH;;;;;;OAMG;2CACoC,MAAM,YAAY,GAAG,GAAG,aAAa,MAAM,uBAAuB,CAAC,CAAC;IAG3G;;;;;;;OAOG;kCAC2B,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,uBAAuB,CAAC;IAGlH;;;;;;;OAOG;sCAC+B,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,uBAAuB,CAAC;CAI7H,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;;;OAIG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAA;IAEnB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,oDAAoD;IACjE;;;;OAIG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;;GAKG;AACH,qBAAa,kBAAmB,SAAQ,OAAO;IAC3C;;;;;;;OAOG;IACI,uBAAuB,CAAC,iBAAiB,GAAE,gDAAqD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIrI;;;;;;;OAOG;IACI,yBAAyB,CAAC,iBAAiB,EAAE,kDAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIpI;;;;;;;OAOG;IACI,2BAA2B,CAAC,iBAAiB,EAAE,oDAAoD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAG3I"}
|
|
@@ -125,6 +125,80 @@ var SearchCurationsApiAxiosParamCreator = function (configuration) {
|
|
|
125
125
|
});
|
|
126
126
|
});
|
|
127
127
|
},
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @summary Get search curation item by id
|
|
131
|
+
* @param {string} id
|
|
132
|
+
* @param {string} [languageCode]
|
|
133
|
+
* @param {*} [options] Override http request option.
|
|
134
|
+
* @throws {RequiredError}
|
|
135
|
+
*/
|
|
136
|
+
apiV2SearchcurationsIdGet: function (id, languageCode, options) {
|
|
137
|
+
if (options === void 0) { options = {}; }
|
|
138
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
139
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
140
|
+
return __generator(this, function (_a) {
|
|
141
|
+
// verify required parameter 'id' is not null or undefined
|
|
142
|
+
(0, common_1.assertParamExists)('apiV2SearchcurationsIdGet', 'id', id);
|
|
143
|
+
localVarPath = "/api/v2/searchcurations/{id}"
|
|
144
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
145
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
146
|
+
if (configuration) {
|
|
147
|
+
baseOptions = configuration.baseOptions;
|
|
148
|
+
}
|
|
149
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
150
|
+
localVarHeaderParameter = {};
|
|
151
|
+
localVarQueryParameter = {};
|
|
152
|
+
if (languageCode !== undefined) {
|
|
153
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
154
|
+
}
|
|
155
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
156
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
157
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
158
|
+
return [2 /*return*/, {
|
|
159
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
160
|
+
options: localVarRequestOptions,
|
|
161
|
+
}];
|
|
162
|
+
});
|
|
163
|
+
});
|
|
164
|
+
},
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @summary Get search curation item by slug
|
|
168
|
+
* @param {string} slug
|
|
169
|
+
* @param {string} [languageCode]
|
|
170
|
+
* @param {*} [options] Override http request option.
|
|
171
|
+
* @throws {RequiredError}
|
|
172
|
+
*/
|
|
173
|
+
apiV2SearchcurationsSlugGet: function (slug, languageCode, options) {
|
|
174
|
+
if (options === void 0) { options = {}; }
|
|
175
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
176
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
177
|
+
return __generator(this, function (_a) {
|
|
178
|
+
// verify required parameter 'slug' is not null or undefined
|
|
179
|
+
(0, common_1.assertParamExists)('apiV2SearchcurationsSlugGet', 'slug', slug);
|
|
180
|
+
localVarPath = "/api/v2/searchcurations/{slug}"
|
|
181
|
+
.replace("{".concat("slug", "}"), encodeURIComponent(String(slug)));
|
|
182
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
183
|
+
if (configuration) {
|
|
184
|
+
baseOptions = configuration.baseOptions;
|
|
185
|
+
}
|
|
186
|
+
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), options);
|
|
187
|
+
localVarHeaderParameter = {};
|
|
188
|
+
localVarQueryParameter = {};
|
|
189
|
+
if (languageCode !== undefined) {
|
|
190
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
191
|
+
}
|
|
192
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
193
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
194
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
195
|
+
return [2 /*return*/, {
|
|
196
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
197
|
+
options: localVarRequestOptions,
|
|
198
|
+
}];
|
|
199
|
+
});
|
|
200
|
+
});
|
|
201
|
+
},
|
|
128
202
|
};
|
|
129
203
|
};
|
|
130
204
|
exports.SearchCurationsApiAxiosParamCreator = SearchCurationsApiAxiosParamCreator;
|
|
@@ -155,6 +229,48 @@ var SearchCurationsApiFp = function (configuration) {
|
|
|
155
229
|
});
|
|
156
230
|
});
|
|
157
231
|
},
|
|
232
|
+
/**
|
|
233
|
+
*
|
|
234
|
+
* @summary Get search curation item by id
|
|
235
|
+
* @param {string} id
|
|
236
|
+
* @param {string} [languageCode]
|
|
237
|
+
* @param {*} [options] Override http request option.
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
*/
|
|
240
|
+
apiV2SearchcurationsIdGet: function (id, languageCode, options) {
|
|
241
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
242
|
+
var localVarAxiosArgs;
|
|
243
|
+
return __generator(this, function (_a) {
|
|
244
|
+
switch (_a.label) {
|
|
245
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SearchcurationsIdGet(id, languageCode, options)];
|
|
246
|
+
case 1:
|
|
247
|
+
localVarAxiosArgs = _a.sent();
|
|
248
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
249
|
+
}
|
|
250
|
+
});
|
|
251
|
+
});
|
|
252
|
+
},
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @summary Get search curation item by slug
|
|
256
|
+
* @param {string} slug
|
|
257
|
+
* @param {string} [languageCode]
|
|
258
|
+
* @param {*} [options] Override http request option.
|
|
259
|
+
* @throws {RequiredError}
|
|
260
|
+
*/
|
|
261
|
+
apiV2SearchcurationsSlugGet: function (slug, languageCode, options) {
|
|
262
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
263
|
+
var localVarAxiosArgs;
|
|
264
|
+
return __generator(this, function (_a) {
|
|
265
|
+
switch (_a.label) {
|
|
266
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SearchcurationsSlugGet(slug, languageCode, options)];
|
|
267
|
+
case 1:
|
|
268
|
+
localVarAxiosArgs = _a.sent();
|
|
269
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
270
|
+
}
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
},
|
|
158
274
|
};
|
|
159
275
|
};
|
|
160
276
|
exports.SearchCurationsApiFp = SearchCurationsApiFp;
|
|
@@ -175,6 +291,28 @@ var SearchCurationsApiFactory = function (configuration, basePath, axios) {
|
|
|
175
291
|
apiV2SearchcurationsGet: function (languageCode, options) {
|
|
176
292
|
return localVarFp.apiV2SearchcurationsGet(languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
177
293
|
},
|
|
294
|
+
/**
|
|
295
|
+
*
|
|
296
|
+
* @summary Get search curation item by id
|
|
297
|
+
* @param {string} id
|
|
298
|
+
* @param {string} [languageCode]
|
|
299
|
+
* @param {*} [options] Override http request option.
|
|
300
|
+
* @throws {RequiredError}
|
|
301
|
+
*/
|
|
302
|
+
apiV2SearchcurationsIdGet: function (id, languageCode, options) {
|
|
303
|
+
return localVarFp.apiV2SearchcurationsIdGet(id, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
304
|
+
},
|
|
305
|
+
/**
|
|
306
|
+
*
|
|
307
|
+
* @summary Get search curation item by slug
|
|
308
|
+
* @param {string} slug
|
|
309
|
+
* @param {string} [languageCode]
|
|
310
|
+
* @param {*} [options] Override http request option.
|
|
311
|
+
* @throws {RequiredError}
|
|
312
|
+
*/
|
|
313
|
+
apiV2SearchcurationsSlugGet: function (slug, languageCode, options) {
|
|
314
|
+
return localVarFp.apiV2SearchcurationsSlugGet(slug, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
315
|
+
},
|
|
178
316
|
};
|
|
179
317
|
};
|
|
180
318
|
exports.SearchCurationsApiFactory = SearchCurationsApiFactory;
|
|
@@ -202,6 +340,30 @@ var SearchCurationsApi = /** @class */ (function (_super) {
|
|
|
202
340
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
203
341
|
return (0, exports.SearchCurationsApiFp)(this.configuration).apiV2SearchcurationsGet(requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
204
342
|
};
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @summary Get search curation item by id
|
|
346
|
+
* @param {SearchCurationsApiApiV2SearchcurationsIdGetRequest} requestParameters Request parameters.
|
|
347
|
+
* @param {*} [options] Override http request option.
|
|
348
|
+
* @throws {RequiredError}
|
|
349
|
+
* @memberof SearchCurationsApi
|
|
350
|
+
*/
|
|
351
|
+
SearchCurationsApi.prototype.apiV2SearchcurationsIdGet = function (requestParameters, options) {
|
|
352
|
+
var _this = this;
|
|
353
|
+
return (0, exports.SearchCurationsApiFp)(this.configuration).apiV2SearchcurationsIdGet(requestParameters.id, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
*
|
|
357
|
+
* @summary Get search curation item by slug
|
|
358
|
+
* @param {SearchCurationsApiApiV2SearchcurationsSlugGetRequest} requestParameters Request parameters.
|
|
359
|
+
* @param {*} [options] Override http request option.
|
|
360
|
+
* @throws {RequiredError}
|
|
361
|
+
* @memberof SearchCurationsApi
|
|
362
|
+
*/
|
|
363
|
+
SearchCurationsApi.prototype.apiV2SearchcurationsSlugGet = function (requestParameters, options) {
|
|
364
|
+
var _this = this;
|
|
365
|
+
return (0, exports.SearchCurationsApiFp)(this.configuration).apiV2SearchcurationsSlugGet(requestParameters.slug, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
366
|
+
};
|
|
205
367
|
return SearchCurationsApi;
|
|
206
368
|
}(base_1.BaseAPI));
|
|
207
369
|
exports.SearchCurationsApi = SearchCurationsApi;
|
|
@@ -34,6 +34,12 @@ export interface CreateCallHistoryCommand {
|
|
|
34
34
|
* @memberof CreateCallHistoryCommand
|
|
35
35
|
*/
|
|
36
36
|
'hospitalId'?: string;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateCallHistoryCommand
|
|
41
|
+
*/
|
|
42
|
+
'contactId'?: string;
|
|
37
43
|
/**
|
|
38
44
|
*
|
|
39
45
|
* @type {boolean}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-call-history-command.d.ts","sourceRoot":"","sources":["../../src/models/create-call-history-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;CACtB"}
|
|
1
|
+
{"version":3,"file":"create-call-history-command.d.ts","sourceRoot":"","sources":["../../src/models/create-call-history-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAE3C;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,UAAU,CAAC;IACtB;;;;OAIG;IACH,WAAW,CAAC,EAAE,IAAI,CAAC;CACtB"}
|
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { AuditableEntity } from './auditable-entity';
|
|
13
|
+
import { UserLanguageModel } from './user-language-model';
|
|
12
14
|
/**
|
|
13
15
|
*
|
|
14
16
|
* @export
|
|
@@ -21,6 +23,12 @@ export interface DoctorItemModel {
|
|
|
21
23
|
* @memberof DoctorItemModel
|
|
22
24
|
*/
|
|
23
25
|
'id'?: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof DoctorItemModel
|
|
30
|
+
*/
|
|
31
|
+
'userName'?: string | null;
|
|
24
32
|
/**
|
|
25
33
|
*
|
|
26
34
|
* @type {string}
|
|
@@ -63,5 +71,17 @@ export interface DoctorItemModel {
|
|
|
63
71
|
* @memberof DoctorItemModel
|
|
64
72
|
*/
|
|
65
73
|
'timeZone'?: string | null;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {AuditableEntity}
|
|
77
|
+
* @memberof DoctorItemModel
|
|
78
|
+
*/
|
|
79
|
+
'auditableEntity'?: AuditableEntity;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {Array<UserLanguageModel>}
|
|
83
|
+
* @memberof DoctorItemModel
|
|
84
|
+
*/
|
|
85
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
66
86
|
}
|
|
67
87
|
//# sourceMappingURL=doctor-item-model.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doctor-item-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;
|
|
1
|
+
{"version":3,"file":"doctor-item-model.d.ts","sourceRoot":"","sources":["../../src/models/doctor-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,eAAe,EAAE,MAAM,oBAAoB,CAAC;AAGrD,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAE1D;;;;GAIG;AACH,MAAM,WAAW,eAAe;IAC5B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,eAAe,CAAC;IACpC;;;;OAIG;IACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC;CACjD"}
|
package/package.json
CHANGED
|
@@ -54,6 +54,84 @@ export const SearchCurationsApiAxiosParamCreator = function (configuration?: Con
|
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
|
|
57
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
58
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
url: toPathString(localVarUrlObj),
|
|
63
|
+
options: localVarRequestOptions,
|
|
64
|
+
};
|
|
65
|
+
},
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @summary Get search curation item by id
|
|
69
|
+
* @param {string} id
|
|
70
|
+
* @param {string} [languageCode]
|
|
71
|
+
* @param {*} [options] Override http request option.
|
|
72
|
+
* @throws {RequiredError}
|
|
73
|
+
*/
|
|
74
|
+
apiV2SearchcurationsIdGet: async (id: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
75
|
+
// verify required parameter 'id' is not null or undefined
|
|
76
|
+
assertParamExists('apiV2SearchcurationsIdGet', 'id', id)
|
|
77
|
+
const localVarPath = `/api/v2/searchcurations/{id}`
|
|
78
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
79
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
80
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
81
|
+
let baseOptions;
|
|
82
|
+
if (configuration) {
|
|
83
|
+
baseOptions = configuration.baseOptions;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
87
|
+
const localVarHeaderParameter = {} as any;
|
|
88
|
+
const localVarQueryParameter = {} as any;
|
|
89
|
+
|
|
90
|
+
if (languageCode !== undefined) {
|
|
91
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
97
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
98
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
99
|
+
|
|
100
|
+
return {
|
|
101
|
+
url: toPathString(localVarUrlObj),
|
|
102
|
+
options: localVarRequestOptions,
|
|
103
|
+
};
|
|
104
|
+
},
|
|
105
|
+
/**
|
|
106
|
+
*
|
|
107
|
+
* @summary Get search curation item by slug
|
|
108
|
+
* @param {string} slug
|
|
109
|
+
* @param {string} [languageCode]
|
|
110
|
+
* @param {*} [options] Override http request option.
|
|
111
|
+
* @throws {RequiredError}
|
|
112
|
+
*/
|
|
113
|
+
apiV2SearchcurationsSlugGet: async (slug: string, languageCode?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
114
|
+
// verify required parameter 'slug' is not null or undefined
|
|
115
|
+
assertParamExists('apiV2SearchcurationsSlugGet', 'slug', slug)
|
|
116
|
+
const localVarPath = `/api/v2/searchcurations/{slug}`
|
|
117
|
+
.replace(`{${"slug"}}`, encodeURIComponent(String(slug)));
|
|
118
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
120
|
+
let baseOptions;
|
|
121
|
+
if (configuration) {
|
|
122
|
+
baseOptions = configuration.baseOptions;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
126
|
+
const localVarHeaderParameter = {} as any;
|
|
127
|
+
const localVarQueryParameter = {} as any;
|
|
128
|
+
|
|
129
|
+
if (languageCode !== undefined) {
|
|
130
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
57
135
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
58
136
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59
137
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -84,6 +162,30 @@ export const SearchCurationsApiFp = function(configuration?: Configuration) {
|
|
|
84
162
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchcurationsGet(languageCode, options);
|
|
85
163
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
86
164
|
},
|
|
165
|
+
/**
|
|
166
|
+
*
|
|
167
|
+
* @summary Get search curation item by id
|
|
168
|
+
* @param {string} id
|
|
169
|
+
* @param {string} [languageCode]
|
|
170
|
+
* @param {*} [options] Override http request option.
|
|
171
|
+
* @throws {RequiredError}
|
|
172
|
+
*/
|
|
173
|
+
async apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>> {
|
|
174
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchcurationsIdGet(id, languageCode, options);
|
|
175
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
176
|
+
},
|
|
177
|
+
/**
|
|
178
|
+
*
|
|
179
|
+
* @summary Get search curation item by slug
|
|
180
|
+
* @param {string} slug
|
|
181
|
+
* @param {string} [languageCode]
|
|
182
|
+
* @param {*} [options] Override http request option.
|
|
183
|
+
* @throws {RequiredError}
|
|
184
|
+
*/
|
|
185
|
+
async apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>> {
|
|
186
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV2SearchcurationsSlugGet(slug, languageCode, options);
|
|
187
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
188
|
+
},
|
|
87
189
|
}
|
|
88
190
|
};
|
|
89
191
|
|
|
@@ -104,6 +206,28 @@ export const SearchCurationsApiFactory = function (configuration?: Configuration
|
|
|
104
206
|
apiV2SearchcurationsGet(languageCode?: string, options?: any): AxiosPromise<Array<SearchCurationItemModel>> {
|
|
105
207
|
return localVarFp.apiV2SearchcurationsGet(languageCode, options).then((request) => request(axios, basePath));
|
|
106
208
|
},
|
|
209
|
+
/**
|
|
210
|
+
*
|
|
211
|
+
* @summary Get search curation item by id
|
|
212
|
+
* @param {string} id
|
|
213
|
+
* @param {string} [languageCode]
|
|
214
|
+
* @param {*} [options] Override http request option.
|
|
215
|
+
* @throws {RequiredError}
|
|
216
|
+
*/
|
|
217
|
+
apiV2SearchcurationsIdGet(id: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel> {
|
|
218
|
+
return localVarFp.apiV2SearchcurationsIdGet(id, languageCode, options).then((request) => request(axios, basePath));
|
|
219
|
+
},
|
|
220
|
+
/**
|
|
221
|
+
*
|
|
222
|
+
* @summary Get search curation item by slug
|
|
223
|
+
* @param {string} slug
|
|
224
|
+
* @param {string} [languageCode]
|
|
225
|
+
* @param {*} [options] Override http request option.
|
|
226
|
+
* @throws {RequiredError}
|
|
227
|
+
*/
|
|
228
|
+
apiV2SearchcurationsSlugGet(slug: string, languageCode?: string, options?: any): AxiosPromise<SearchCurationItemModel> {
|
|
229
|
+
return localVarFp.apiV2SearchcurationsSlugGet(slug, languageCode, options).then((request) => request(axios, basePath));
|
|
230
|
+
},
|
|
107
231
|
};
|
|
108
232
|
};
|
|
109
233
|
|
|
@@ -121,6 +245,48 @@ export interface SearchCurationsApiApiV2SearchcurationsGetRequest {
|
|
|
121
245
|
readonly languageCode?: string
|
|
122
246
|
}
|
|
123
247
|
|
|
248
|
+
/**
|
|
249
|
+
* Request parameters for apiV2SearchcurationsIdGet operation in SearchCurationsApi.
|
|
250
|
+
* @export
|
|
251
|
+
* @interface SearchCurationsApiApiV2SearchcurationsIdGetRequest
|
|
252
|
+
*/
|
|
253
|
+
export interface SearchCurationsApiApiV2SearchcurationsIdGetRequest {
|
|
254
|
+
/**
|
|
255
|
+
*
|
|
256
|
+
* @type {string}
|
|
257
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsIdGet
|
|
258
|
+
*/
|
|
259
|
+
readonly id: string
|
|
260
|
+
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* @type {string}
|
|
264
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsIdGet
|
|
265
|
+
*/
|
|
266
|
+
readonly languageCode?: string
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Request parameters for apiV2SearchcurationsSlugGet operation in SearchCurationsApi.
|
|
271
|
+
* @export
|
|
272
|
+
* @interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest
|
|
273
|
+
*/
|
|
274
|
+
export interface SearchCurationsApiApiV2SearchcurationsSlugGetRequest {
|
|
275
|
+
/**
|
|
276
|
+
*
|
|
277
|
+
* @type {string}
|
|
278
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
|
|
279
|
+
*/
|
|
280
|
+
readonly slug: string
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
*
|
|
284
|
+
* @type {string}
|
|
285
|
+
* @memberof SearchCurationsApiApiV2SearchcurationsSlugGet
|
|
286
|
+
*/
|
|
287
|
+
readonly languageCode?: string
|
|
288
|
+
}
|
|
289
|
+
|
|
124
290
|
/**
|
|
125
291
|
* SearchCurationsApi - object-oriented interface
|
|
126
292
|
* @export
|
|
@@ -139,4 +305,28 @@ export class SearchCurationsApi extends BaseAPI {
|
|
|
139
305
|
public apiV2SearchcurationsGet(requestParameters: SearchCurationsApiApiV2SearchcurationsGetRequest = {}, options?: AxiosRequestConfig) {
|
|
140
306
|
return SearchCurationsApiFp(this.configuration).apiV2SearchcurationsGet(requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
141
307
|
}
|
|
308
|
+
|
|
309
|
+
/**
|
|
310
|
+
*
|
|
311
|
+
* @summary Get search curation item by id
|
|
312
|
+
* @param {SearchCurationsApiApiV2SearchcurationsIdGetRequest} requestParameters Request parameters.
|
|
313
|
+
* @param {*} [options] Override http request option.
|
|
314
|
+
* @throws {RequiredError}
|
|
315
|
+
* @memberof SearchCurationsApi
|
|
316
|
+
*/
|
|
317
|
+
public apiV2SearchcurationsIdGet(requestParameters: SearchCurationsApiApiV2SearchcurationsIdGetRequest, options?: AxiosRequestConfig) {
|
|
318
|
+
return SearchCurationsApiFp(this.configuration).apiV2SearchcurationsIdGet(requestParameters.id, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @summary Get search curation item by slug
|
|
324
|
+
* @param {SearchCurationsApiApiV2SearchcurationsSlugGetRequest} requestParameters Request parameters.
|
|
325
|
+
* @param {*} [options] Override http request option.
|
|
326
|
+
* @throws {RequiredError}
|
|
327
|
+
* @memberof SearchCurationsApi
|
|
328
|
+
*/
|
|
329
|
+
public apiV2SearchcurationsSlugGet(requestParameters: SearchCurationsApiApiV2SearchcurationsSlugGetRequest, options?: AxiosRequestConfig) {
|
|
330
|
+
return SearchCurationsApiFp(this.configuration).apiV2SearchcurationsSlugGet(requestParameters.slug, requestParameters.languageCode, options).then((request) => request(this.axios, this.basePath));
|
|
331
|
+
}
|
|
142
332
|
}
|
|
@@ -41,6 +41,12 @@ export interface CreateCallHistoryCommand {
|
|
|
41
41
|
* @memberof CreateCallHistoryCommand
|
|
42
42
|
*/
|
|
43
43
|
'hospitalId'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof CreateCallHistoryCommand
|
|
48
|
+
*/
|
|
49
|
+
'contactId'?: string;
|
|
44
50
|
/**
|
|
45
51
|
*
|
|
46
52
|
* @type {boolean}
|
|
@@ -13,6 +13,12 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { AuditableEntity } from './auditable-entity';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { UserLanguageModel } from './user-language-model';
|
|
16
22
|
|
|
17
23
|
/**
|
|
18
24
|
*
|
|
@@ -26,6 +32,12 @@ export interface DoctorItemModel {
|
|
|
26
32
|
* @memberof DoctorItemModel
|
|
27
33
|
*/
|
|
28
34
|
'id'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof DoctorItemModel
|
|
39
|
+
*/
|
|
40
|
+
'userName'?: string | null;
|
|
29
41
|
/**
|
|
30
42
|
*
|
|
31
43
|
* @type {string}
|
|
@@ -68,5 +80,17 @@ export interface DoctorItemModel {
|
|
|
68
80
|
* @memberof DoctorItemModel
|
|
69
81
|
*/
|
|
70
82
|
'timeZone'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {AuditableEntity}
|
|
86
|
+
* @memberof DoctorItemModel
|
|
87
|
+
*/
|
|
88
|
+
'auditableEntity'?: AuditableEntity;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {Array<UserLanguageModel>}
|
|
92
|
+
* @memberof DoctorItemModel
|
|
93
|
+
*/
|
|
94
|
+
'languages'?: Array<UserLanguageModel> | null;
|
|
71
95
|
}
|
|
72
96
|
|