ch-admin-api-client-typescript 5.9.11 → 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/search-curations-api.d.ts +55 -0
- package/lib/api/search-curations-api.d.ts.map +1 -1
- package/lib/api/search-curations-api.js +91 -0
- 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/search-curations-api.ts +99 -0
- 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
|
*
|
|
@@ -63,6 +63,15 @@ export declare const SearchCurationsApiAxiosParamCreator: (configuration?: Confi
|
|
|
63
63
|
* @throws {RequiredError}
|
|
64
64
|
*/
|
|
65
65
|
apiV1SearchcurationsLanguageCodePost: (languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @summary Revalidate searchCurationItem
|
|
69
|
+
* @param {string} slug
|
|
70
|
+
* @param {string} [languageCode]
|
|
71
|
+
* @param {*} [options] Override http request option.
|
|
72
|
+
* @throws {RequiredError}
|
|
73
|
+
*/
|
|
74
|
+
apiV1SearchcurationsSlugRevalidatePost: (slug: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
66
75
|
};
|
|
67
76
|
/**
|
|
68
77
|
* SearchCurationsApi - functional programming interface
|
|
@@ -113,6 +122,15 @@ export declare const SearchCurationsApiFp: (configuration?: Configuration) => {
|
|
|
113
122
|
* @throws {RequiredError}
|
|
114
123
|
*/
|
|
115
124
|
apiV1SearchcurationsLanguageCodePost(languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchCurationItemModel>>;
|
|
125
|
+
/**
|
|
126
|
+
*
|
|
127
|
+
* @summary Revalidate searchCurationItem
|
|
128
|
+
* @param {string} slug
|
|
129
|
+
* @param {string} [languageCode]
|
|
130
|
+
* @param {*} [options] Override http request option.
|
|
131
|
+
* @throws {RequiredError}
|
|
132
|
+
*/
|
|
133
|
+
apiV1SearchcurationsSlugRevalidatePost(slug: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
116
134
|
};
|
|
117
135
|
/**
|
|
118
136
|
* SearchCurationsApi - factory interface
|
|
@@ -163,6 +181,15 @@ export declare const SearchCurationsApiFactory: (configuration?: Configuration,
|
|
|
163
181
|
* @throws {RequiredError}
|
|
164
182
|
*/
|
|
165
183
|
apiV1SearchcurationsLanguageCodePost(languageCode: string, saveSearchCurationsCommand?: SaveSearchCurationsCommand, options?: any): AxiosPromise<SearchCurationItemModel>;
|
|
184
|
+
/**
|
|
185
|
+
*
|
|
186
|
+
* @summary Revalidate searchCurationItem
|
|
187
|
+
* @param {string} slug
|
|
188
|
+
* @param {string} [languageCode]
|
|
189
|
+
* @param {*} [options] Override http request option.
|
|
190
|
+
* @throws {RequiredError}
|
|
191
|
+
*/
|
|
192
|
+
apiV1SearchcurationsSlugRevalidatePost(slug: string, languageCode?: string, options?: any): AxiosPromise<boolean>;
|
|
166
193
|
};
|
|
167
194
|
/**
|
|
168
195
|
* Request parameters for apiV1SearchcurationsLanguageCodeGet operation in SearchCurationsApi.
|
|
@@ -253,6 +280,25 @@ export interface SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest {
|
|
|
253
280
|
*/
|
|
254
281
|
readonly saveSearchCurationsCommand?: SaveSearchCurationsCommand;
|
|
255
282
|
}
|
|
283
|
+
/**
|
|
284
|
+
* Request parameters for apiV1SearchcurationsSlugRevalidatePost operation in SearchCurationsApi.
|
|
285
|
+
* @export
|
|
286
|
+
* @interface SearchCurationsApiApiV1SearchcurationsSlugRevalidatePostRequest
|
|
287
|
+
*/
|
|
288
|
+
export interface SearchCurationsApiApiV1SearchcurationsSlugRevalidatePostRequest {
|
|
289
|
+
/**
|
|
290
|
+
*
|
|
291
|
+
* @type {string}
|
|
292
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsSlugRevalidatePost
|
|
293
|
+
*/
|
|
294
|
+
readonly slug: string;
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @type {string}
|
|
298
|
+
* @memberof SearchCurationsApiApiV1SearchcurationsSlugRevalidatePost
|
|
299
|
+
*/
|
|
300
|
+
readonly languageCode?: string;
|
|
301
|
+
}
|
|
256
302
|
/**
|
|
257
303
|
* SearchCurationsApi - object-oriented interface
|
|
258
304
|
* @export
|
|
@@ -305,5 +351,14 @@ export declare class SearchCurationsApi extends BaseAPI {
|
|
|
305
351
|
* @memberof SearchCurationsApi
|
|
306
352
|
*/
|
|
307
353
|
apiV1SearchcurationsLanguageCodePost(requestParameters: SearchCurationsApiApiV1SearchcurationsLanguageCodePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchCurationItemModel, any>>;
|
|
354
|
+
/**
|
|
355
|
+
*
|
|
356
|
+
* @summary Revalidate searchCurationItem
|
|
357
|
+
* @param {SearchCurationsApiApiV1SearchcurationsSlugRevalidatePostRequest} requestParameters Request parameters.
|
|
358
|
+
* @param {*} [options] Override http request option.
|
|
359
|
+
* @throws {RequiredError}
|
|
360
|
+
* @memberof SearchCurationsApi
|
|
361
|
+
*/
|
|
362
|
+
apiV1SearchcurationsSlugRevalidatePost(requestParameters: SearchCurationsApiApiV1SearchcurationsSlugRevalidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
308
363
|
}
|
|
309
364
|
//# 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,0BAA0B,EAAE,MAAM,WAAW,CAAC;AAEvD,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AACpD;;;GAGG;AACH,eAAO,MAAM,mCAAmC,mBAA6B,aAAa;IAElF;;;;;;OAMG;wDACuD,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+BzH;;;;;;;OAOG;6DAC4D,MAAM,MAAM,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkC1I;;;;;;;OAOG;0DACyD,MAAM,MAAM,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkCvI;;;;;;;OAOG;wEACuE,MAAM,YAAY,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAkC3J;;;;;;;OAOG;yDACwD,MAAM,+BAA+B,0BAA0B,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":"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"}
|
|
@@ -322,6 +322,53 @@ var SearchCurationsApiAxiosParamCreator = function (configuration) {
|
|
|
322
322
|
});
|
|
323
323
|
});
|
|
324
324
|
},
|
|
325
|
+
/**
|
|
326
|
+
*
|
|
327
|
+
* @summary Revalidate searchCurationItem
|
|
328
|
+
* @param {string} slug
|
|
329
|
+
* @param {string} [languageCode]
|
|
330
|
+
* @param {*} [options] Override http request option.
|
|
331
|
+
* @throws {RequiredError}
|
|
332
|
+
*/
|
|
333
|
+
apiV1SearchcurationsSlugRevalidatePost: function (slug, languageCode, options) {
|
|
334
|
+
if (options === void 0) { options = {}; }
|
|
335
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
336
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
337
|
+
return __generator(this, function (_a) {
|
|
338
|
+
switch (_a.label) {
|
|
339
|
+
case 0:
|
|
340
|
+
// verify required parameter 'slug' is not null or undefined
|
|
341
|
+
(0, common_1.assertParamExists)('apiV1SearchcurationsSlugRevalidatePost', 'slug', slug);
|
|
342
|
+
localVarPath = "/api/v1/searchcurations/{slug}/revalidate"
|
|
343
|
+
.replace("{".concat("slug", "}"), encodeURIComponent(String(slug)));
|
|
344
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
345
|
+
if (configuration) {
|
|
346
|
+
baseOptions = configuration.baseOptions;
|
|
347
|
+
}
|
|
348
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
349
|
+
localVarHeaderParameter = {};
|
|
350
|
+
localVarQueryParameter = {};
|
|
351
|
+
// authentication oauth2 required
|
|
352
|
+
// oauth required
|
|
353
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)];
|
|
354
|
+
case 1:
|
|
355
|
+
// authentication oauth2 required
|
|
356
|
+
// oauth required
|
|
357
|
+
_a.sent();
|
|
358
|
+
if (languageCode !== undefined) {
|
|
359
|
+
localVarQueryParameter['languageCode'] = languageCode;
|
|
360
|
+
}
|
|
361
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
362
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
363
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
364
|
+
return [2 /*return*/, {
|
|
365
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
366
|
+
options: localVarRequestOptions,
|
|
367
|
+
}];
|
|
368
|
+
}
|
|
369
|
+
});
|
|
370
|
+
});
|
|
371
|
+
},
|
|
325
372
|
};
|
|
326
373
|
};
|
|
327
374
|
exports.SearchCurationsApiAxiosParamCreator = SearchCurationsApiAxiosParamCreator;
|
|
@@ -436,6 +483,27 @@ var SearchCurationsApiFp = function (configuration) {
|
|
|
436
483
|
});
|
|
437
484
|
});
|
|
438
485
|
},
|
|
486
|
+
/**
|
|
487
|
+
*
|
|
488
|
+
* @summary Revalidate searchCurationItem
|
|
489
|
+
* @param {string} slug
|
|
490
|
+
* @param {string} [languageCode]
|
|
491
|
+
* @param {*} [options] Override http request option.
|
|
492
|
+
* @throws {RequiredError}
|
|
493
|
+
*/
|
|
494
|
+
apiV1SearchcurationsSlugRevalidatePost: function (slug, languageCode, options) {
|
|
495
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
496
|
+
var localVarAxiosArgs;
|
|
497
|
+
return __generator(this, function (_a) {
|
|
498
|
+
switch (_a.label) {
|
|
499
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1SearchcurationsSlugRevalidatePost(slug, languageCode, options)];
|
|
500
|
+
case 1:
|
|
501
|
+
localVarAxiosArgs = _a.sent();
|
|
502
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
503
|
+
}
|
|
504
|
+
});
|
|
505
|
+
});
|
|
506
|
+
},
|
|
439
507
|
};
|
|
440
508
|
};
|
|
441
509
|
exports.SearchCurationsApiFp = SearchCurationsApiFp;
|
|
@@ -500,6 +568,17 @@ var SearchCurationsApiFactory = function (configuration, basePath, axios) {
|
|
|
500
568
|
apiV1SearchcurationsLanguageCodePost: function (languageCode, saveSearchCurationsCommand, options) {
|
|
501
569
|
return localVarFp.apiV1SearchcurationsLanguageCodePost(languageCode, saveSearchCurationsCommand, options).then(function (request) { return request(axios, basePath); });
|
|
502
570
|
},
|
|
571
|
+
/**
|
|
572
|
+
*
|
|
573
|
+
* @summary Revalidate searchCurationItem
|
|
574
|
+
* @param {string} slug
|
|
575
|
+
* @param {string} [languageCode]
|
|
576
|
+
* @param {*} [options] Override http request option.
|
|
577
|
+
* @throws {RequiredError}
|
|
578
|
+
*/
|
|
579
|
+
apiV1SearchcurationsSlugRevalidatePost: function (slug, languageCode, options) {
|
|
580
|
+
return localVarFp.apiV1SearchcurationsSlugRevalidatePost(slug, languageCode, options).then(function (request) { return request(axios, basePath); });
|
|
581
|
+
},
|
|
503
582
|
};
|
|
504
583
|
};
|
|
505
584
|
exports.SearchCurationsApiFactory = SearchCurationsApiFactory;
|
|
@@ -574,6 +653,18 @@ var SearchCurationsApi = /** @class */ (function (_super) {
|
|
|
574
653
|
var _this = this;
|
|
575
654
|
return (0, exports.SearchCurationsApiFp)(this.configuration).apiV1SearchcurationsLanguageCodePost(requestParameters.languageCode, requestParameters.saveSearchCurationsCommand, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
576
655
|
};
|
|
656
|
+
/**
|
|
657
|
+
*
|
|
658
|
+
* @summary Revalidate searchCurationItem
|
|
659
|
+
* @param {SearchCurationsApiApiV1SearchcurationsSlugRevalidatePostRequest} requestParameters Request parameters.
|
|
660
|
+
* @param {*} [options] Override http request option.
|
|
661
|
+
* @throws {RequiredError}
|
|
662
|
+
* @memberof SearchCurationsApi
|
|
663
|
+
*/
|
|
664
|
+
SearchCurationsApi.prototype.apiV1SearchcurationsSlugRevalidatePost = function (requestParameters, options) {
|
|
665
|
+
var _this = this;
|
|
666
|
+
return (0, exports.SearchCurationsApiFp)(this.configuration).apiV1SearchcurationsSlugRevalidatePost(requestParameters.slug, requestParameters.languageCode, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
667
|
+
};
|
|
577
668
|
return SearchCurationsApi;
|
|
578
669
|
}(base_1.BaseAPI));
|
|
579
670
|
exports.SearchCurationsApi = SearchCurationsApi;
|
|
@@ -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"}
|