ch-admin-api-client-typescript 5.45.2 → 5.45.6
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/curations-api.d.ts +12 -3
- package/lib/api/curations-api.d.ts.map +1 -1
- package/lib/api/curations-api.js +15 -9
- package/lib/api/hospitals-api.d.ts +25 -6
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +30 -18
- package/lib/models/create-curation-category-command.d.ts +2 -3
- package/lib/models/create-curation-category-command.d.ts.map +1 -1
- package/lib/models/index.d.ts +0 -1
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +0 -1
- package/lib/models/update-curation-category-command.d.ts +0 -6
- package/lib/models/update-curation-category-command.d.ts.map +1 -1
- package/package.json +1 -1
- package/lib/models/create-curation-category-command-translation.d.ts +0 -31
- package/lib/models/create-curation-category-command-translation.d.ts.map +0 -1
- package/lib/models/create-curation-category-command-translation.js +0 -15
|
@@ -61,6 +61,7 @@ export declare const CurationsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
61
61
|
*
|
|
62
62
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
63
63
|
* @param {string} languageCode
|
|
64
|
+
* @param {string} [curationCategoryId]
|
|
64
65
|
* @param {string} [title]
|
|
65
66
|
* @param {number} [page]
|
|
66
67
|
* @param {number} [limit]
|
|
@@ -68,7 +69,7 @@ export declare const CurationsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
68
69
|
* @param {*} [options] Override http request option.
|
|
69
70
|
* @throws {RequiredError}
|
|
70
71
|
*/
|
|
71
|
-
apiV1CurationsGet: (languageCode: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
apiV1CurationsGet: (languageCode: string, curationCategoryId?: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
73
|
/**
|
|
73
74
|
*
|
|
74
75
|
* @summary Create a Curation. (Auth roles: Admin,Manager,ContentManager)
|
|
@@ -122,6 +123,7 @@ export declare const CurationsApiFp: (configuration?: Configuration) => {
|
|
|
122
123
|
*
|
|
123
124
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
124
125
|
* @param {string} languageCode
|
|
126
|
+
* @param {string} [curationCategoryId]
|
|
125
127
|
* @param {string} [title]
|
|
126
128
|
* @param {number} [page]
|
|
127
129
|
* @param {number} [limit]
|
|
@@ -129,7 +131,7 @@ export declare const CurationsApiFp: (configuration?: Configuration) => {
|
|
|
129
131
|
* @param {*} [options] Override http request option.
|
|
130
132
|
* @throws {RequiredError}
|
|
131
133
|
*/
|
|
132
|
-
apiV1CurationsGet(languageCode: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurationsModel>>;
|
|
134
|
+
apiV1CurationsGet(languageCode: string, curationCategoryId?: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CurationsModel>>;
|
|
133
135
|
/**
|
|
134
136
|
*
|
|
135
137
|
* @summary Create a Curation. (Auth roles: Admin,Manager,ContentManager)
|
|
@@ -183,6 +185,7 @@ export declare const CurationsApiFactory: (configuration?: Configuration, basePa
|
|
|
183
185
|
*
|
|
184
186
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
185
187
|
* @param {string} languageCode
|
|
188
|
+
* @param {string} [curationCategoryId]
|
|
186
189
|
* @param {string} [title]
|
|
187
190
|
* @param {number} [page]
|
|
188
191
|
* @param {number} [limit]
|
|
@@ -190,7 +193,7 @@ export declare const CurationsApiFactory: (configuration?: Configuration, basePa
|
|
|
190
193
|
* @param {*} [options] Override http request option.
|
|
191
194
|
* @throws {RequiredError}
|
|
192
195
|
*/
|
|
193
|
-
apiV1CurationsGet(languageCode: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CurationsModel>;
|
|
196
|
+
apiV1CurationsGet(languageCode: string, curationCategoryId?: string, title?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<CurationsModel>;
|
|
194
197
|
/**
|
|
195
198
|
*
|
|
196
199
|
* @summary Create a Curation. (Auth roles: Admin,Manager,ContentManager)
|
|
@@ -282,6 +285,12 @@ export interface CurationsApiApiV1CurationsGetRequest {
|
|
|
282
285
|
* @memberof CurationsApiApiV1CurationsGet
|
|
283
286
|
*/
|
|
284
287
|
readonly languageCode: string;
|
|
288
|
+
/**
|
|
289
|
+
*
|
|
290
|
+
* @type {string}
|
|
291
|
+
* @memberof CurationsApiApiV1CurationsGet
|
|
292
|
+
*/
|
|
293
|
+
readonly curationCategoryId?: string;
|
|
285
294
|
/**
|
|
286
295
|
*
|
|
287
296
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"curations-api.d.ts","sourceRoot":"","sources":["../../src/api/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,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAElD,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAI3C,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAClD;;;GAGG;AACH,eAAO,MAAM,6BAA6B,mBAA6B,aAAa;IAE5E;;;;;;OAMG;iDACgD,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BlH;;;;;;;OAOG;8CAC6C,MAAM,gBAAgB,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAqCrI;;;;;;;OAOG;8CAC6C,MAAM,0BAA0B,qBAAqB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC9J;;;;;;;OAOG;wDACuD,MAAM,6BAA6B,wBAAwB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC9K
|
|
1
|
+
{"version":3,"file":"curations-api.d.ts","sourceRoot":"","sources":["../../src/api/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,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAElD,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAI3C,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,qBAAqB,EAAE,MAAM,WAAW,CAAC;AAClD;;;GAGG;AACH,eAAO,MAAM,6BAA6B,mBAA6B,aAAa;IAE5E;;;;;;OAMG;iDACgD,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA+BlH;;;;;;;OAOG;8CAC6C,MAAM,gBAAgB,MAAM,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAqCrI;;;;;;;OAOG;8CAC6C,MAAM,0BAA0B,qBAAqB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC9J;;;;;;;OAOG;wDACuD,MAAM,6BAA6B,wBAAwB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAkC9K;;;;;;;;;;;OAWG;sCACqC,MAAM,uBAAuB,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAwDzM;;;;;;OAMG;iDACgD,qBAAqB,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;CAgCxI,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,cAAc,mBAA4B,aAAa;IAG5D;;;;;;OAMG;+CAC8C,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAIpK;;;;;;;OAOG;4CAC2C,MAAM,gBAAgB,MAAM,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,aAAa,CAAC,CAAC;IAI7L;;;;;;;OAOG;4CAC2C,MAAM,0BAA0B,qBAAqB,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,aAAa,CAAC,CAAC;IAItN;;;;;;;OAOG;sDACqD,MAAM,6BAA6B,wBAAwB,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,OAAO,CAAC,CAAC;IAIhO;;;;;;;;;;;OAWG;oCACmC,MAAM,uBAAuB,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,cAAc,CAAC,CAAC;IAIlQ;;;;;;OAMG;+CAC8C,qBAAqB,YAAY,kBAAkB,GAAG,OAAO,CAAC,CAAC,KAAK,CAAC,EAAE,aAAa,EAAE,QAAQ,CAAC,EAAE,MAAM,KAAK,YAAY,CAAC,aAAa,CAAC,CAAC;CAKhM,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG5G;;;;;;OAMG;+CACwC,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC;IAGxF;;;;;;;OAOG;4CACqC,MAAM,gBAAgB,MAAM,YAAY,GAAG,GAAG,YAAY,CAAC,aAAa,CAAC;IAGjH;;;;;;;OAOG;4CACqC,MAAM,0BAA0B,qBAAqB,YAAY,GAAG,GAAG,YAAY,CAAC,aAAa,CAAC;IAG1I;;;;;;;OAOG;sDAC+C,MAAM,6BAA6B,wBAAwB,YAAY,GAAG,GAAG,YAAY,CAAC,OAAO,CAAC;IAGpJ;;;;;;;;;;;OAWG;oCAC6B,MAAM,uBAAuB,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,YAAY,CAAC,cAAc,CAAC;IAGtL;;;;;;OAMG;+CACwC,qBAAqB,YAAY,GAAG,GAAG,YAAY,CAAC,aAAa,CAAC;CAIpH,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,iDAAiD;IAC9D;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;CAC9B;AAED;;;;GAIG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;CACzD;AAED;;;;GAIG;AACH,MAAM,WAAW,wDAAwD;IACrE;;;;OAIG;IACH,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,wBAAwB,CAAC,EAAE,wBAAwB,CAAA;CAC/D;AAED;;;;GAIG;AACH,MAAM,WAAW,oCAAoC;IACjD;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,MAAM,CAAA;IAEpC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,IAAI,CAAA;CAChC;AAED;;;;GAIG;AACH,MAAM,WAAW,qCAAqC;IAClD;;;;OAIG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,qBAAqB,CAAA;CACzD;AAED;;;;;GAKG;AACH,qBAAa,YAAa,SAAQ,OAAO;IACrC;;;;;;;OAOG;IACI,8BAA8B,CAAC,iBAAiB,EAAE,iDAAiD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIxI;;;;;;;OAOG;IACI,2BAA2B,CAAC,iBAAiB,EAAE,8CAA8C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIlI;;;;;;;OAOG;IACI,2BAA2B,CAAC,iBAAiB,EAAE,8CAA8C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIlI;;;;;;;OAOG;IACI,qCAAqC,CAAC,iBAAiB,EAAE,wDAAwD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAItJ;;;;;;;OAOG;IACI,iBAAiB,CAAC,iBAAiB,EAAE,oCAAoC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI9G;;;;;;;OAOG;IACI,kBAAkB,CAAC,iBAAiB,GAAE,qCAA0C,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGxH"}
|
package/lib/api/curations-api.js
CHANGED
|
@@ -305,6 +305,7 @@ var CurationsApiAxiosParamCreator = function (configuration) {
|
|
|
305
305
|
*
|
|
306
306
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
307
307
|
* @param {string} languageCode
|
|
308
|
+
* @param {string} [curationCategoryId]
|
|
308
309
|
* @param {string} [title]
|
|
309
310
|
* @param {number} [page]
|
|
310
311
|
* @param {number} [limit]
|
|
@@ -312,12 +313,12 @@ var CurationsApiAxiosParamCreator = function (configuration) {
|
|
|
312
313
|
* @param {*} [options] Override http request option.
|
|
313
314
|
* @throws {RequiredError}
|
|
314
315
|
*/
|
|
315
|
-
apiV1CurationsGet: function (languageCode_1, title_1, page_1, limit_1, lastRetrieved_1) {
|
|
316
|
+
apiV1CurationsGet: function (languageCode_1, curationCategoryId_1, title_1, page_1, limit_1, lastRetrieved_1) {
|
|
316
317
|
var args_1 = [];
|
|
317
|
-
for (var _i =
|
|
318
|
-
args_1[_i -
|
|
318
|
+
for (var _i = 6; _i < arguments.length; _i++) {
|
|
319
|
+
args_1[_i - 6] = arguments[_i];
|
|
319
320
|
}
|
|
320
|
-
return __awaiter(_this, __spreadArray([languageCode_1, title_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (languageCode, title, page, limit, lastRetrieved, options) {
|
|
321
|
+
return __awaiter(_this, __spreadArray([languageCode_1, curationCategoryId_1, title_1, page_1, limit_1, lastRetrieved_1], args_1, true), void 0, function (languageCode, curationCategoryId, title, page, limit, lastRetrieved, options) {
|
|
321
322
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
322
323
|
if (options === void 0) { options = {}; }
|
|
323
324
|
return __generator(this, function (_a) {
|
|
@@ -343,6 +344,9 @@ var CurationsApiAxiosParamCreator = function (configuration) {
|
|
|
343
344
|
if (languageCode !== undefined) {
|
|
344
345
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
345
346
|
}
|
|
347
|
+
if (curationCategoryId !== undefined) {
|
|
348
|
+
localVarQueryParameter['CurationCategoryId'] = curationCategoryId;
|
|
349
|
+
}
|
|
346
350
|
if (title !== undefined) {
|
|
347
351
|
localVarQueryParameter['Title'] = title;
|
|
348
352
|
}
|
|
@@ -511,6 +515,7 @@ var CurationsApiFp = function (configuration) {
|
|
|
511
515
|
*
|
|
512
516
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
513
517
|
* @param {string} languageCode
|
|
518
|
+
* @param {string} [curationCategoryId]
|
|
514
519
|
* @param {string} [title]
|
|
515
520
|
* @param {number} [page]
|
|
516
521
|
* @param {number} [limit]
|
|
@@ -518,12 +523,12 @@ var CurationsApiFp = function (configuration) {
|
|
|
518
523
|
* @param {*} [options] Override http request option.
|
|
519
524
|
* @throws {RequiredError}
|
|
520
525
|
*/
|
|
521
|
-
apiV1CurationsGet: function (languageCode, title, page, limit, lastRetrieved, options) {
|
|
526
|
+
apiV1CurationsGet: function (languageCode, curationCategoryId, title, page, limit, lastRetrieved, options) {
|
|
522
527
|
return __awaiter(this, void 0, void 0, function () {
|
|
523
528
|
var localVarAxiosArgs;
|
|
524
529
|
return __generator(this, function (_a) {
|
|
525
530
|
switch (_a.label) {
|
|
526
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CurationsGet(languageCode, title, page, limit, lastRetrieved, options)];
|
|
531
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1CurationsGet(languageCode, curationCategoryId, title, page, limit, lastRetrieved, options)];
|
|
527
532
|
case 1:
|
|
528
533
|
localVarAxiosArgs = _a.sent();
|
|
529
534
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -608,6 +613,7 @@ var CurationsApiFactory = function (configuration, basePath, axios) {
|
|
|
608
613
|
*
|
|
609
614
|
* @summary Get Curations of CurationCategory Ordered by it\'s order (Auth roles: Admin,Manager,ContentManager)
|
|
610
615
|
* @param {string} languageCode
|
|
616
|
+
* @param {string} [curationCategoryId]
|
|
611
617
|
* @param {string} [title]
|
|
612
618
|
* @param {number} [page]
|
|
613
619
|
* @param {number} [limit]
|
|
@@ -615,8 +621,8 @@ var CurationsApiFactory = function (configuration, basePath, axios) {
|
|
|
615
621
|
* @param {*} [options] Override http request option.
|
|
616
622
|
* @throws {RequiredError}
|
|
617
623
|
*/
|
|
618
|
-
apiV1CurationsGet: function (languageCode, title, page, limit, lastRetrieved, options) {
|
|
619
|
-
return localVarFp.apiV1CurationsGet(languageCode, title, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
624
|
+
apiV1CurationsGet: function (languageCode, curationCategoryId, title, page, limit, lastRetrieved, options) {
|
|
625
|
+
return localVarFp.apiV1CurationsGet(languageCode, curationCategoryId, title, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
620
626
|
},
|
|
621
627
|
/**
|
|
622
628
|
*
|
|
@@ -700,7 +706,7 @@ var CurationsApi = /** @class */ (function (_super) {
|
|
|
700
706
|
*/
|
|
701
707
|
CurationsApi.prototype.apiV1CurationsGet = function (requestParameters, options) {
|
|
702
708
|
var _this = this;
|
|
703
|
-
return (0, exports.CurationsApiFp)(this.configuration).apiV1CurationsGet(requestParameters.languageCode, requestParameters.title, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
709
|
+
return (0, exports.CurationsApiFp)(this.configuration).apiV1CurationsGet(requestParameters.languageCode, requestParameters.curationCategoryId, requestParameters.title, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
704
710
|
};
|
|
705
711
|
/**
|
|
706
712
|
*
|
|
@@ -109,6 +109,7 @@ import { SnsHandleModel } from '../models';
|
|
|
109
109
|
import { SnsType } from '../models';
|
|
110
110
|
import { SortFooterNavigationsCommand } from '../models';
|
|
111
111
|
import { SortingResultModel } from '../models';
|
|
112
|
+
import { StringFilterTypes } from '../models';
|
|
112
113
|
import { TranslateHospitalCommand } from '../models';
|
|
113
114
|
import { TranslateHospitalServiceCommand } from '../models';
|
|
114
115
|
import { TranslateHospitalSpecialtyCommand } from '../models';
|
|
@@ -144,6 +145,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
144
145
|
*
|
|
145
146
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
146
147
|
* @param {string} [hospitalId]
|
|
148
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
147
149
|
* @param {string} [name]
|
|
148
150
|
* @param {string} [countryId]
|
|
149
151
|
* @param {Date} [created]
|
|
@@ -161,7 +163,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
161
163
|
* @param {*} [options] Override http request option.
|
|
162
164
|
* @throws {RequiredError}
|
|
163
165
|
*/
|
|
164
|
-
apiV1HospitalsGet: (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
166
|
+
apiV1HospitalsGet: (hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
165
167
|
/**
|
|
166
168
|
*
|
|
167
169
|
* @summary Delete HospitalAccreditation. (Auth roles: Admin, Manager, LocalManager, ContentManager)
|
|
@@ -2046,6 +2048,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2046
2048
|
*
|
|
2047
2049
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
2048
2050
|
* @param {string} [hospitalId]
|
|
2051
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
2049
2052
|
* @param {string} [name]
|
|
2050
2053
|
* @param {string} [countryId]
|
|
2051
2054
|
* @param {Date} [created]
|
|
@@ -2063,7 +2066,7 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
2063
2066
|
* @param {*} [options] Override http request option.
|
|
2064
2067
|
* @throws {RequiredError}
|
|
2065
2068
|
*/
|
|
2066
|
-
apiV1HospitalsSimpleGet: (hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2069
|
+
apiV1HospitalsSimpleGet: (hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
2067
2070
|
/**
|
|
2068
2071
|
*
|
|
2069
2072
|
* @summary (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
@@ -2084,6 +2087,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2084
2087
|
*
|
|
2085
2088
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
2086
2089
|
* @param {string} [hospitalId]
|
|
2090
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
2087
2091
|
* @param {string} [name]
|
|
2088
2092
|
* @param {string} [countryId]
|
|
2089
2093
|
* @param {Date} [created]
|
|
@@ -2101,7 +2105,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
2101
2105
|
* @param {*} [options] Override http request option.
|
|
2102
2106
|
* @throws {RequiredError}
|
|
2103
2107
|
*/
|
|
2104
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>>;
|
|
2108
|
+
apiV1HospitalsGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsModel>>;
|
|
2105
2109
|
/**
|
|
2106
2110
|
*
|
|
2107
2111
|
* @summary Delete HospitalAccreditation. (Auth roles: Admin, Manager, LocalManager, ContentManager)
|
|
@@ -3986,6 +3990,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
3986
3990
|
*
|
|
3987
3991
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
3988
3992
|
* @param {string} [hospitalId]
|
|
3993
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
3989
3994
|
* @param {string} [name]
|
|
3990
3995
|
* @param {string} [countryId]
|
|
3991
3996
|
* @param {Date} [created]
|
|
@@ -4003,7 +4008,7 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
4003
4008
|
* @param {*} [options] Override http request option.
|
|
4004
4009
|
* @throws {RequiredError}
|
|
4005
4010
|
*/
|
|
4006
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>>;
|
|
4011
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalsSimpleModel>>;
|
|
4007
4012
|
/**
|
|
4008
4013
|
*
|
|
4009
4014
|
* @summary (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
@@ -4024,6 +4029,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4024
4029
|
*
|
|
4025
4030
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
4026
4031
|
* @param {string} [hospitalId]
|
|
4032
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
4027
4033
|
* @param {string} [name]
|
|
4028
4034
|
* @param {string} [countryId]
|
|
4029
4035
|
* @param {Date} [created]
|
|
@@ -4041,7 +4047,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
4041
4047
|
* @param {*} [options] Override http request option.
|
|
4042
4048
|
* @throws {RequiredError}
|
|
4043
4049
|
*/
|
|
4044
|
-
apiV1HospitalsGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel>;
|
|
4050
|
+
apiV1HospitalsGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsModel>;
|
|
4045
4051
|
/**
|
|
4046
4052
|
*
|
|
4047
4053
|
* @summary Delete HospitalAccreditation. (Auth roles: Admin, Manager, LocalManager, ContentManager)
|
|
@@ -5926,6 +5932,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5926
5932
|
*
|
|
5927
5933
|
* @summary Get all Hospitals. (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
5928
5934
|
* @param {string} [hospitalId]
|
|
5935
|
+
* @param {StringFilterTypes} [nameFilterType]
|
|
5929
5936
|
* @param {string} [name]
|
|
5930
5937
|
* @param {string} [countryId]
|
|
5931
5938
|
* @param {Date} [created]
|
|
@@ -5943,7 +5950,7 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
5943
5950
|
* @param {*} [options] Override http request option.
|
|
5944
5951
|
* @throws {RequiredError}
|
|
5945
5952
|
*/
|
|
5946
|
-
apiV1HospitalsSimpleGet(hospitalId?: string, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
5953
|
+
apiV1HospitalsSimpleGet(hospitalId?: string, nameFilterType?: StringFilterTypes, name?: string, countryId?: string, created?: Date, marketingType?: MarketingType, specialtyTypeId?: string, specialtyId?: string, exceptHospitalId?: string, showHidden?: boolean, languageCode?: string, ids?: Array<string>, paymentEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalsSimpleModel>;
|
|
5947
5954
|
/**
|
|
5948
5955
|
*
|
|
5949
5956
|
* @summary (Auth roles: Admin,Manager,LocalManager,Doctor,ContentManager)
|
|
@@ -5967,6 +5974,12 @@ export interface HospitalsApiApiV1HospitalsGetRequest {
|
|
|
5967
5974
|
* @memberof HospitalsApiApiV1HospitalsGet
|
|
5968
5975
|
*/
|
|
5969
5976
|
readonly hospitalId?: string;
|
|
5977
|
+
/**
|
|
5978
|
+
*
|
|
5979
|
+
* @type {StringFilterTypes}
|
|
5980
|
+
* @memberof HospitalsApiApiV1HospitalsGet
|
|
5981
|
+
*/
|
|
5982
|
+
readonly nameFilterType?: StringFilterTypes;
|
|
5970
5983
|
/**
|
|
5971
5984
|
*
|
|
5972
5985
|
* @type {string}
|
|
@@ -11219,6 +11232,12 @@ export interface HospitalsApiApiV1HospitalsSimpleGetRequest {
|
|
|
11219
11232
|
* @memberof HospitalsApiApiV1HospitalsSimpleGet
|
|
11220
11233
|
*/
|
|
11221
11234
|
readonly hospitalId?: string;
|
|
11235
|
+
/**
|
|
11236
|
+
*
|
|
11237
|
+
* @type {StringFilterTypes}
|
|
11238
|
+
* @memberof HospitalsApiApiV1HospitalsSimpleGet
|
|
11239
|
+
*/
|
|
11240
|
+
readonly nameFilterType?: StringFilterTypes;
|
|
11222
11241
|
/**
|
|
11223
11242
|
*
|
|
11224
11243
|
* @type {string}
|