ch-admin-api-client-typescript 5.9.12 → 5.9.15
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 +30 -30
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +26 -26
- package/lib/api/survey-results-api.d.ts +4 -0
- package/lib/api/survey-results-api.d.ts.map +1 -1
- package/lib/api/survey-results-api.js +4 -0
- package/lib/models/create-deal-command.d.ts +6 -0
- package/lib/models/create-deal-command.d.ts.map +1 -1
- package/lib/models/survey-result-element-model.d.ts +7 -0
- package/lib/models/survey-result-element-model.d.ts.map +1 -1
- package/lib/models/survey-result-item-model.d.ts +0 -7
- package/lib/models/survey-result-item-model.d.ts.map +1 -1
- package/lib/models/survey-result-model.d.ts +4 -4
- package/lib/models/survey-result-model.d.ts.map +1 -1
- package/lib/models/update-deal-command.d.ts +6 -0
- package/lib/models/update-deal-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/hospitals-api.ts +49 -49
- package/src/api/survey-results-api.ts +4 -0
- package/src/models/create-deal-command.ts +6 -0
- package/src/models/survey-result-element-model.ts +9 -0
- package/src/models/survey-result-item-model.ts +0 -9
- package/src/models/survey-result-model.ts +4 -4
- package/src/models/update-deal-command.ts +6 -0
package/lib/api/hospitals-api.js
CHANGED
|
@@ -3194,9 +3194,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3194
3194
|
*
|
|
3195
3195
|
* @summary Get managers
|
|
3196
3196
|
* @param {string} hospitalId
|
|
3197
|
-
* @param {number} [page]
|
|
3198
|
-
* @param {number} [limit]
|
|
3199
|
-
* @param {Date} [lastRetrieved]
|
|
3200
3197
|
* @param {string} [id]
|
|
3201
3198
|
* @param {string} [fullname]
|
|
3202
3199
|
* @param {string} [email]
|
|
@@ -3204,10 +3201,13 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3204
3201
|
* @param {Date} [dateOfBirth]
|
|
3205
3202
|
* @param {Date} [created]
|
|
3206
3203
|
* @param {boolean} [showHidden]
|
|
3204
|
+
* @param {number} [page]
|
|
3205
|
+
* @param {number} [limit]
|
|
3206
|
+
* @param {Date} [lastRetrieved]
|
|
3207
3207
|
* @param {*} [options] Override http request option.
|
|
3208
3208
|
* @throws {RequiredError}
|
|
3209
3209
|
*/
|
|
3210
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId,
|
|
3210
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
3211
3211
|
if (options === void 0) { options = {}; }
|
|
3212
3212
|
return __awaiter(_this, void 0, void 0, function () {
|
|
3213
3213
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -3232,17 +3232,6 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3232
3232
|
// authentication oauth2 required
|
|
3233
3233
|
// oauth required
|
|
3234
3234
|
_a.sent();
|
|
3235
|
-
if (page !== undefined) {
|
|
3236
|
-
localVarQueryParameter['page'] = page;
|
|
3237
|
-
}
|
|
3238
|
-
if (limit !== undefined) {
|
|
3239
|
-
localVarQueryParameter['limit'] = limit;
|
|
3240
|
-
}
|
|
3241
|
-
if (lastRetrieved !== undefined) {
|
|
3242
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
3243
|
-
lastRetrieved.toISOString() :
|
|
3244
|
-
lastRetrieved;
|
|
3245
|
-
}
|
|
3246
3235
|
if (id !== undefined) {
|
|
3247
3236
|
localVarQueryParameter['Id'] = id;
|
|
3248
3237
|
}
|
|
@@ -3268,6 +3257,17 @@ var HospitalsApiAxiosParamCreator = function (configuration) {
|
|
|
3268
3257
|
if (showHidden !== undefined) {
|
|
3269
3258
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3270
3259
|
}
|
|
3260
|
+
if (page !== undefined) {
|
|
3261
|
+
localVarQueryParameter['page'] = page;
|
|
3262
|
+
}
|
|
3263
|
+
if (limit !== undefined) {
|
|
3264
|
+
localVarQueryParameter['limit'] = limit;
|
|
3265
|
+
}
|
|
3266
|
+
if (lastRetrieved !== undefined) {
|
|
3267
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved instanceof Date) ?
|
|
3268
|
+
lastRetrieved.toISOString() :
|
|
3269
|
+
lastRetrieved;
|
|
3270
|
+
}
|
|
3271
3271
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
3272
3272
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3273
3273
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -8996,9 +8996,6 @@ var HospitalsApiFp = function (configuration) {
|
|
|
8996
8996
|
*
|
|
8997
8997
|
* @summary Get managers
|
|
8998
8998
|
* @param {string} hospitalId
|
|
8999
|
-
* @param {number} [page]
|
|
9000
|
-
* @param {number} [limit]
|
|
9001
|
-
* @param {Date} [lastRetrieved]
|
|
9002
8999
|
* @param {string} [id]
|
|
9003
9000
|
* @param {string} [fullname]
|
|
9004
9001
|
* @param {string} [email]
|
|
@@ -9006,15 +9003,18 @@ var HospitalsApiFp = function (configuration) {
|
|
|
9006
9003
|
* @param {Date} [dateOfBirth]
|
|
9007
9004
|
* @param {Date} [created]
|
|
9008
9005
|
* @param {boolean} [showHidden]
|
|
9006
|
+
* @param {number} [page]
|
|
9007
|
+
* @param {number} [limit]
|
|
9008
|
+
* @param {Date} [lastRetrieved]
|
|
9009
9009
|
* @param {*} [options] Override http request option.
|
|
9010
9010
|
* @throws {RequiredError}
|
|
9011
9011
|
*/
|
|
9012
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId,
|
|
9012
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
9013
9013
|
return __awaiter(this, void 0, void 0, function () {
|
|
9014
9014
|
var localVarAxiosArgs;
|
|
9015
9015
|
return __generator(this, function (_a) {
|
|
9016
9016
|
switch (_a.label) {
|
|
9017
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId,
|
|
9017
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options)];
|
|
9018
9018
|
case 1:
|
|
9019
9019
|
localVarAxiosArgs = _a.sent();
|
|
9020
9020
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -11589,9 +11589,6 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
11589
11589
|
*
|
|
11590
11590
|
* @summary Get managers
|
|
11591
11591
|
* @param {string} hospitalId
|
|
11592
|
-
* @param {number} [page]
|
|
11593
|
-
* @param {number} [limit]
|
|
11594
|
-
* @param {Date} [lastRetrieved]
|
|
11595
11592
|
* @param {string} [id]
|
|
11596
11593
|
* @param {string} [fullname]
|
|
11597
11594
|
* @param {string} [email]
|
|
@@ -11599,11 +11596,14 @@ var HospitalsApiFactory = function (configuration, basePath, axios) {
|
|
|
11599
11596
|
* @param {Date} [dateOfBirth]
|
|
11600
11597
|
* @param {Date} [created]
|
|
11601
11598
|
* @param {boolean} [showHidden]
|
|
11599
|
+
* @param {number} [page]
|
|
11600
|
+
* @param {number} [limit]
|
|
11601
|
+
* @param {Date} [lastRetrieved]
|
|
11602
11602
|
* @param {*} [options] Override http request option.
|
|
11603
11603
|
* @throws {RequiredError}
|
|
11604
11604
|
*/
|
|
11605
|
-
apiV1HospitalsHospitalIdManagersGet: function (hospitalId,
|
|
11606
|
-
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId,
|
|
11605
|
+
apiV1HospitalsHospitalIdManagersGet: function (hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options) {
|
|
11606
|
+
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
11607
11607
|
},
|
|
11608
11608
|
/**
|
|
11609
11609
|
*
|
|
@@ -13361,7 +13361,7 @@ var HospitalsApi = /** @class */ (function (_super) {
|
|
|
13361
13361
|
*/
|
|
13362
13362
|
HospitalsApi.prototype.apiV1HospitalsHospitalIdManagersGet = function (requestParameters, options) {
|
|
13363
13363
|
var _this = this;
|
|
13364
|
-
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.
|
|
13364
|
+
return (0, exports.HospitalsApiFp)(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
13365
13365
|
};
|
|
13366
13366
|
/**
|
|
13367
13367
|
*
|
|
@@ -41,6 +41,7 @@ export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configu
|
|
|
41
41
|
apiV1SurveyresultsGet: (id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
+
* @summary Send manual notification of target SurveyResult
|
|
44
45
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
45
46
|
* @param {*} [options] Override http request option.
|
|
46
47
|
* @throws {RequiredError}
|
|
@@ -89,6 +90,7 @@ export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
|
|
|
89
90
|
apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
|
|
90
91
|
/**
|
|
91
92
|
*
|
|
93
|
+
* @summary Send manual notification of target SurveyResult
|
|
92
94
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
93
95
|
* @param {*} [options] Override http request option.
|
|
94
96
|
* @throws {RequiredError}
|
|
@@ -137,6 +139,7 @@ export declare const SurveyResultsApiFactory: (configuration?: Configuration, ba
|
|
|
137
139
|
apiV1SurveyresultsGet(id?: string, hospitalId?: string, surveyFormId?: string, name?: string, languageCode?: string, periodUnit?: PeriodUnits, startDateTime?: Date, endDateTime?: Date, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
|
|
138
140
|
/**
|
|
139
141
|
*
|
|
142
|
+
* @summary Send manual notification of target SurveyResult
|
|
140
143
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
141
144
|
* @param {*} [options] Override http request option.
|
|
142
145
|
* @throws {RequiredError}
|
|
@@ -296,6 +299,7 @@ export declare class SurveyResultsApi extends BaseAPI {
|
|
|
296
299
|
apiV1SurveyresultsGet(requestParameters?: SurveyResultsApiApiV1SurveyresultsGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultsModel, any>>;
|
|
297
300
|
/**
|
|
298
301
|
*
|
|
302
|
+
* @summary Send manual notification of target SurveyResult
|
|
299
303
|
* @param {SurveyResultsApiApiV1SurveyresultsSendemailPostRequest} requestParameters Request parameters.
|
|
300
304
|
* @param {*} [options] Override http request option.
|
|
301
305
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-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,WAAW,EAAE,MAAM,WAAW,CAAC;AAIxC,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAE9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAC/C;;;GAGG;AACH,eAAO,MAAM,iCAAiC,mBAA6B,aAAa;IAEhF;;;;;;;;;;;;;;;;OAgBG;iCACgC,MAAM,eAAe,MAAM,iBAAiB,MAAM,SAAS,MAAM,iBAAiB,MAAM,eAAe,WAAW,kBAAkB,IAAI,gBAAgB,IAAI,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8E7S
|
|
1
|
+
{"version":3,"file":"survey-results-api.d.ts","sourceRoot":"","sources":["../../src/api/survey-results-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -183,6 +183,7 @@ var SurveyResultsApiAxiosParamCreator = function (configuration) {
|
|
|
183
183
|
},
|
|
184
184
|
/**
|
|
185
185
|
*
|
|
186
|
+
* @summary Send manual notification of target SurveyResult
|
|
186
187
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
187
188
|
* @param {*} [options] Override http request option.
|
|
188
189
|
* @throws {RequiredError}
|
|
@@ -354,6 +355,7 @@ var SurveyResultsApiFp = function (configuration) {
|
|
|
354
355
|
},
|
|
355
356
|
/**
|
|
356
357
|
*
|
|
358
|
+
* @summary Send manual notification of target SurveyResult
|
|
357
359
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
358
360
|
* @param {*} [options] Override http request option.
|
|
359
361
|
* @throws {RequiredError}
|
|
@@ -444,6 +446,7 @@ var SurveyResultsApiFactory = function (configuration, basePath, axios) {
|
|
|
444
446
|
},
|
|
445
447
|
/**
|
|
446
448
|
*
|
|
449
|
+
* @summary Send manual notification of target SurveyResult
|
|
447
450
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
448
451
|
* @param {*} [options] Override http request option.
|
|
449
452
|
* @throws {RequiredError}
|
|
@@ -501,6 +504,7 @@ var SurveyResultsApi = /** @class */ (function (_super) {
|
|
|
501
504
|
};
|
|
502
505
|
/**
|
|
503
506
|
*
|
|
507
|
+
* @summary Send manual notification of target SurveyResult
|
|
504
508
|
* @param {SurveyResultsApiApiV1SurveyresultsSendemailPostRequest} requestParameters Request parameters.
|
|
505
509
|
* @param {*} [options] Override http request option.
|
|
506
510
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/create-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
1
|
+
{"version":3,"file":"create-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/create-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { SurveyFormElementTypes } from './survey-form-element-types';
|
|
12
13
|
import { SurveyResultElementValueModel } from './survey-result-element-value-model';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
@@ -28,6 +29,12 @@ export interface SurveyResultElementModel {
|
|
|
28
29
|
* @memberof SurveyResultElementModel
|
|
29
30
|
*/
|
|
30
31
|
'order'?: number;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {SurveyFormElementTypes}
|
|
35
|
+
* @memberof SurveyResultElementModel
|
|
36
|
+
*/
|
|
37
|
+
'elementType'?: SurveyFormElementTypes;
|
|
31
38
|
/**
|
|
32
39
|
*
|
|
33
40
|
* @type {Array<SurveyResultElementValueModel>}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-result-element-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-element-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
1
|
+
{"version":3,"file":"survey-result-element-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-element-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAGrE,OAAO,EAAE,6BAA6B,EAAE,MAAM,qCAAqC,CAAC;AAEpF;;;;GAIG;AACH,MAAM,WAAW,wBAAwB;IACrC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,aAAa,CAAC,EAAE,sBAAsB,CAAC;IACvC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC;CAC1D"}
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { SurveyResultElementModel } from './survey-result-element-model';
|
|
13
12
|
import { SurveyResultUserModel } from './survey-result-user-model';
|
|
14
13
|
/**
|
|
15
14
|
*
|
|
@@ -77,12 +76,6 @@ export interface SurveyResultItemModel {
|
|
|
77
76
|
* @memberof SurveyResultItemModel
|
|
78
77
|
*/
|
|
79
78
|
'createdDate'?: Date;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {Array<SurveyResultElementModel>}
|
|
83
|
-
* @memberof SurveyResultItemModel
|
|
84
|
-
*/
|
|
85
|
-
'elements'?: Array<SurveyResultElementModel> | null;
|
|
86
79
|
/**
|
|
87
80
|
*
|
|
88
81
|
* @type {boolean}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-result-item-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"survey-result-item-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-item-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;GAIG;AACH,MAAM,WAAW,qBAAqB;IAClC;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;CAChC"}
|
|
@@ -79,16 +79,16 @@ export interface SurveyResultModel {
|
|
|
79
79
|
'createdDate'?: Date;
|
|
80
80
|
/**
|
|
81
81
|
*
|
|
82
|
-
* @type {
|
|
82
|
+
* @type {boolean}
|
|
83
83
|
* @memberof SurveyResultModel
|
|
84
84
|
*/
|
|
85
|
-
'
|
|
85
|
+
'notificationSent'?: boolean;
|
|
86
86
|
/**
|
|
87
87
|
*
|
|
88
|
-
* @type {
|
|
88
|
+
* @type {Array<SurveyResultElementModel>}
|
|
89
89
|
* @memberof SurveyResultModel
|
|
90
90
|
*/
|
|
91
|
-
'
|
|
91
|
+
'elements'?: Array<SurveyResultElementModel> | null;
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
94
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"survey-result-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB;;;;OAIG;IACH,
|
|
1
|
+
{"version":3,"file":"survey-result-model.d.ts","sourceRoot":"","sources":["../../src/models/survey-result-model.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,wBAAwB,EAAE,MAAM,+BAA+B,CAAC;AAGzE,OAAO,EAAE,qBAAqB,EAAE,MAAM,4BAA4B,CAAC;AAEnE;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,MAAM,CAAC,EAAE,qBAAqB,CAAC;IAC/B;;;;OAIG;IACH,aAAa,CAAC,EAAE,IAAI,CAAC;IACrB;;;;OAIG;IACH,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B;;;;OAIG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC;IACpD;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC;;;;OAIG;IACH,uBAAuB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/update-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
|
|
1
|
+
{"version":3,"file":"update-deal-command.d.ts","sourceRoot":"","sources":["../../src/models/update-deal-command.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAKH,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD;;;;GAIG;AACH,MAAM,WAAW,iBAAiB;IAC9B;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B;;;;OAIG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B;;;;OAIG;IACH,eAAe,CAAC,EAAE,aAAa,CAAC;IAChC;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB;;;;OAIG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC;;;;OAIG;IACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B;;;;OAIG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B;;;;OAIG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB"}
|
package/package.json
CHANGED
package/src/api/hospitals-api.ts
CHANGED
|
@@ -3125,9 +3125,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3125
3125
|
*
|
|
3126
3126
|
* @summary Get managers
|
|
3127
3127
|
* @param {string} hospitalId
|
|
3128
|
-
* @param {number} [page]
|
|
3129
|
-
* @param {number} [limit]
|
|
3130
|
-
* @param {Date} [lastRetrieved]
|
|
3131
3128
|
* @param {string} [id]
|
|
3132
3129
|
* @param {string} [fullname]
|
|
3133
3130
|
* @param {string} [email]
|
|
@@ -3135,10 +3132,13 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3135
3132
|
* @param {Date} [dateOfBirth]
|
|
3136
3133
|
* @param {Date} [created]
|
|
3137
3134
|
* @param {boolean} [showHidden]
|
|
3135
|
+
* @param {number} [page]
|
|
3136
|
+
* @param {number} [limit]
|
|
3137
|
+
* @param {Date} [lastRetrieved]
|
|
3138
3138
|
* @param {*} [options] Override http request option.
|
|
3139
3139
|
* @throws {RequiredError}
|
|
3140
3140
|
*/
|
|
3141
|
-
apiV1HospitalsHospitalIdManagersGet: async (hospitalId: string,
|
|
3141
|
+
apiV1HospitalsHospitalIdManagersGet: async (hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3142
3142
|
// verify required parameter 'hospitalId' is not null or undefined
|
|
3143
3143
|
assertParamExists('apiV1HospitalsHospitalIdManagersGet', 'hospitalId', hospitalId)
|
|
3144
3144
|
const localVarPath = `/api/v1/hospitals/{hospitalId}/managers`
|
|
@@ -3158,20 +3158,6 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3158
3158
|
// oauth required
|
|
3159
3159
|
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3160
3160
|
|
|
3161
|
-
if (page !== undefined) {
|
|
3162
|
-
localVarQueryParameter['page'] = page;
|
|
3163
|
-
}
|
|
3164
|
-
|
|
3165
|
-
if (limit !== undefined) {
|
|
3166
|
-
localVarQueryParameter['limit'] = limit;
|
|
3167
|
-
}
|
|
3168
|
-
|
|
3169
|
-
if (lastRetrieved !== undefined) {
|
|
3170
|
-
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3171
|
-
(lastRetrieved as any).toISOString() :
|
|
3172
|
-
lastRetrieved;
|
|
3173
|
-
}
|
|
3174
|
-
|
|
3175
3161
|
if (id !== undefined) {
|
|
3176
3162
|
localVarQueryParameter['Id'] = id;
|
|
3177
3163
|
}
|
|
@@ -3204,6 +3190,20 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3204
3190
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
3205
3191
|
}
|
|
3206
3192
|
|
|
3193
|
+
if (page !== undefined) {
|
|
3194
|
+
localVarQueryParameter['page'] = page;
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
if (limit !== undefined) {
|
|
3198
|
+
localVarQueryParameter['limit'] = limit;
|
|
3199
|
+
}
|
|
3200
|
+
|
|
3201
|
+
if (lastRetrieved !== undefined) {
|
|
3202
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3203
|
+
(lastRetrieved as any).toISOString() :
|
|
3204
|
+
lastRetrieved;
|
|
3205
|
+
}
|
|
3206
|
+
|
|
3207
3207
|
|
|
3208
3208
|
|
|
3209
3209
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -8183,9 +8183,6 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8183
8183
|
*
|
|
8184
8184
|
* @summary Get managers
|
|
8185
8185
|
* @param {string} hospitalId
|
|
8186
|
-
* @param {number} [page]
|
|
8187
|
-
* @param {number} [limit]
|
|
8188
|
-
* @param {Date} [lastRetrieved]
|
|
8189
8186
|
* @param {string} [id]
|
|
8190
8187
|
* @param {string} [fullname]
|
|
8191
8188
|
* @param {string} [email]
|
|
@@ -8193,11 +8190,14 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8193
8190
|
* @param {Date} [dateOfBirth]
|
|
8194
8191
|
* @param {Date} [created]
|
|
8195
8192
|
* @param {boolean} [showHidden]
|
|
8193
|
+
* @param {number} [page]
|
|
8194
|
+
* @param {number} [limit]
|
|
8195
|
+
* @param {Date} [lastRetrieved]
|
|
8196
8196
|
* @param {*} [options] Override http request option.
|
|
8197
8197
|
* @throws {RequiredError}
|
|
8198
8198
|
*/
|
|
8199
|
-
async apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
8200
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId,
|
|
8199
|
+
async apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagersModel>> {
|
|
8200
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options);
|
|
8201
8201
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8202
8202
|
},
|
|
8203
8203
|
/**
|
|
@@ -10056,9 +10056,6 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10056
10056
|
*
|
|
10057
10057
|
* @summary Get managers
|
|
10058
10058
|
* @param {string} hospitalId
|
|
10059
|
-
* @param {number} [page]
|
|
10060
|
-
* @param {number} [limit]
|
|
10061
|
-
* @param {Date} [lastRetrieved]
|
|
10062
10059
|
* @param {string} [id]
|
|
10063
10060
|
* @param {string} [fullname]
|
|
10064
10061
|
* @param {string} [email]
|
|
@@ -10066,11 +10063,14 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10066
10063
|
* @param {Date} [dateOfBirth]
|
|
10067
10064
|
* @param {Date} [created]
|
|
10068
10065
|
* @param {boolean} [showHidden]
|
|
10066
|
+
* @param {number} [page]
|
|
10067
|
+
* @param {number} [limit]
|
|
10068
|
+
* @param {Date} [lastRetrieved]
|
|
10069
10069
|
* @param {*} [options] Override http request option.
|
|
10070
10070
|
* @throws {RequiredError}
|
|
10071
10071
|
*/
|
|
10072
|
-
apiV1HospitalsHospitalIdManagersGet(hospitalId: string,
|
|
10073
|
-
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId,
|
|
10072
|
+
apiV1HospitalsHospitalIdManagersGet(hospitalId: string, id?: string, fullname?: string, email?: string, gender?: Gender, dateOfBirth?: Date, created?: Date, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ManagersModel> {
|
|
10073
|
+
return localVarFp.apiV1HospitalsHospitalIdManagersGet(hospitalId, id, fullname, email, gender, dateOfBirth, created, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
10074
10074
|
},
|
|
10075
10075
|
/**
|
|
10076
10076
|
*
|
|
@@ -12973,73 +12973,73 @@ export interface HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest {
|
|
|
12973
12973
|
|
|
12974
12974
|
/**
|
|
12975
12975
|
*
|
|
12976
|
-
* @type {
|
|
12976
|
+
* @type {string}
|
|
12977
12977
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
12978
12978
|
*/
|
|
12979
|
-
readonly
|
|
12979
|
+
readonly id?: string
|
|
12980
12980
|
|
|
12981
12981
|
/**
|
|
12982
12982
|
*
|
|
12983
|
-
* @type {
|
|
12983
|
+
* @type {string}
|
|
12984
12984
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
12985
12985
|
*/
|
|
12986
|
-
readonly
|
|
12986
|
+
readonly fullname?: string
|
|
12987
12987
|
|
|
12988
12988
|
/**
|
|
12989
12989
|
*
|
|
12990
|
-
* @type {
|
|
12990
|
+
* @type {string}
|
|
12991
12991
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
12992
12992
|
*/
|
|
12993
|
-
readonly
|
|
12993
|
+
readonly email?: string
|
|
12994
12994
|
|
|
12995
12995
|
/**
|
|
12996
12996
|
*
|
|
12997
|
-
* @type {
|
|
12997
|
+
* @type {Gender}
|
|
12998
12998
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
12999
12999
|
*/
|
|
13000
|
-
readonly
|
|
13000
|
+
readonly gender?: Gender
|
|
13001
13001
|
|
|
13002
13002
|
/**
|
|
13003
13003
|
*
|
|
13004
|
-
* @type {
|
|
13004
|
+
* @type {Date}
|
|
13005
13005
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13006
13006
|
*/
|
|
13007
|
-
readonly
|
|
13007
|
+
readonly dateOfBirth?: Date
|
|
13008
13008
|
|
|
13009
13009
|
/**
|
|
13010
13010
|
*
|
|
13011
|
-
* @type {
|
|
13011
|
+
* @type {Date}
|
|
13012
13012
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13013
13013
|
*/
|
|
13014
|
-
readonly
|
|
13014
|
+
readonly created?: Date
|
|
13015
13015
|
|
|
13016
13016
|
/**
|
|
13017
13017
|
*
|
|
13018
|
-
* @type {
|
|
13018
|
+
* @type {boolean}
|
|
13019
13019
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13020
13020
|
*/
|
|
13021
|
-
readonly
|
|
13021
|
+
readonly showHidden?: boolean
|
|
13022
13022
|
|
|
13023
13023
|
/**
|
|
13024
13024
|
*
|
|
13025
|
-
* @type {
|
|
13025
|
+
* @type {number}
|
|
13026
13026
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13027
13027
|
*/
|
|
13028
|
-
readonly
|
|
13028
|
+
readonly page?: number
|
|
13029
13029
|
|
|
13030
13030
|
/**
|
|
13031
13031
|
*
|
|
13032
|
-
* @type {
|
|
13032
|
+
* @type {number}
|
|
13033
13033
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13034
13034
|
*/
|
|
13035
|
-
readonly
|
|
13035
|
+
readonly limit?: number
|
|
13036
13036
|
|
|
13037
13037
|
/**
|
|
13038
13038
|
*
|
|
13039
|
-
* @type {
|
|
13039
|
+
* @type {Date}
|
|
13040
13040
|
* @memberof HospitalsApiApiV1HospitalsHospitalIdManagersGet
|
|
13041
13041
|
*/
|
|
13042
|
-
readonly
|
|
13042
|
+
readonly lastRetrieved?: Date
|
|
13043
13043
|
}
|
|
13044
13044
|
|
|
13045
13045
|
/**
|
|
@@ -16575,7 +16575,7 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16575
16575
|
* @memberof HospitalsApi
|
|
16576
16576
|
*/
|
|
16577
16577
|
public apiV1HospitalsHospitalIdManagersGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdManagersGetRequest, options?: AxiosRequestConfig) {
|
|
16578
|
-
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.
|
|
16578
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdManagersGet(requestParameters.hospitalId, requestParameters.id, requestParameters.fullname, requestParameters.email, requestParameters.gender, requestParameters.dateOfBirth, requestParameters.created, requestParameters.showHidden, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
16579
16579
|
}
|
|
16580
16580
|
|
|
16581
16581
|
/**
|
|
@@ -133,6 +133,7 @@ export const SurveyResultsApiAxiosParamCreator = function (configuration?: Confi
|
|
|
133
133
|
},
|
|
134
134
|
/**
|
|
135
135
|
*
|
|
136
|
+
* @summary Send manual notification of target SurveyResult
|
|
136
137
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
137
138
|
* @param {*} [options] Override http request option.
|
|
138
139
|
* @throws {RequiredError}
|
|
@@ -282,6 +283,7 @@ export const SurveyResultsApiFp = function(configuration?: Configuration) {
|
|
|
282
283
|
},
|
|
283
284
|
/**
|
|
284
285
|
*
|
|
286
|
+
* @summary Send manual notification of target SurveyResult
|
|
285
287
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
286
288
|
* @param {*} [options] Override http request option.
|
|
287
289
|
* @throws {RequiredError}
|
|
@@ -345,6 +347,7 @@ export const SurveyResultsApiFactory = function (configuration?: Configuration,
|
|
|
345
347
|
},
|
|
346
348
|
/**
|
|
347
349
|
*
|
|
350
|
+
* @summary Send manual notification of target SurveyResult
|
|
348
351
|
* @param {SendEmailCommand} [sendEmailCommand]
|
|
349
352
|
* @param {*} [options] Override http request option.
|
|
350
353
|
* @throws {RequiredError}
|
|
@@ -530,6 +533,7 @@ export class SurveyResultsApi extends BaseAPI {
|
|
|
530
533
|
|
|
531
534
|
/**
|
|
532
535
|
*
|
|
536
|
+
* @summary Send manual notification of target SurveyResult
|
|
533
537
|
* @param {SurveyResultsApiApiV1SurveyresultsSendemailPostRequest} requestParameters Request parameters.
|
|
534
538
|
* @param {*} [options] Override http request option.
|
|
535
539
|
* @throws {RequiredError}
|
|
@@ -13,6 +13,9 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { SurveyFormElementTypes } from './survey-form-element-types';
|
|
16
19
|
// May contain unused imports in some cases
|
|
17
20
|
// @ts-ignore
|
|
18
21
|
import { SurveyResultElementValueModel } from './survey-result-element-value-model';
|
|
@@ -35,6 +38,12 @@ export interface SurveyResultElementModel {
|
|
|
35
38
|
* @memberof SurveyResultElementModel
|
|
36
39
|
*/
|
|
37
40
|
'order'?: number;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {SurveyFormElementTypes}
|
|
44
|
+
* @memberof SurveyResultElementModel
|
|
45
|
+
*/
|
|
46
|
+
'elementType'?: SurveyFormElementTypes;
|
|
38
47
|
/**
|
|
39
48
|
*
|
|
40
49
|
* @type {Array<SurveyResultElementValueModel>}
|