ch-api-client-typescript2 5.19.0 → 5.19.4
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/accreditations-api.d.ts +3 -12
- package/lib/api/accreditations-api.d.ts.map +1 -1
- package/lib/api/accreditations-api.js +6 -12
- package/lib/api/articles-api.d.ts +12 -3
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +12 -6
- package/lib/api/hospitals-api.d.ts +83 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +99 -0
- package/lib/models/accreditation-document-model.d.ts +6 -0
- package/lib/models/accreditation-document-model.d.ts.map +1 -1
- package/lib/models/accreditation-item-model.d.ts +6 -0
- package/lib/models/accreditation-item-model.d.ts.map +1 -1
- package/lib/models/accreditation-model.d.ts +6 -0
- package/lib/models/accreditation-model.d.ts.map +1 -1
- package/lib/models/hospital-accreditation-item-model.d.ts +6 -0
- package/lib/models/hospital-accreditation-item-model.d.ts.map +1 -1
- package/lib/models/hospital-accreditation-model.d.ts +6 -0
- package/lib/models/hospital-accreditation-model.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/accreditations-api.ts +6 -20
- package/src/api/articles-api.ts +20 -6
- package/src/api/hospitals-api.ts +138 -0
- package/src/models/accreditation-document-model.ts +6 -0
- package/src/models/accreditation-item-model.ts +6 -0
- package/src/models/accreditation-model.ts +6 -0
- package/src/models/hospital-accreditation-item-model.ts +6 -0
- package/src/models/hospital-accreditation-model.ts +6 -0
|
@@ -31,7 +31,6 @@ export declare const AccreditationsApiAxiosParamCreator: (configuration?: Config
|
|
|
31
31
|
*
|
|
32
32
|
* @summary Get all Accreditations.
|
|
33
33
|
* @param {string} [name]
|
|
34
|
-
* @param {string} [logo]
|
|
35
34
|
* @param {string} [country]
|
|
36
35
|
* @param {number} [page]
|
|
37
36
|
* @param {number} [limit]
|
|
@@ -39,7 +38,7 @@ export declare const AccreditationsApiAxiosParamCreator: (configuration?: Config
|
|
|
39
38
|
* @param {*} [options] Override http request option.
|
|
40
39
|
* @throws {RequiredError}
|
|
41
40
|
*/
|
|
42
|
-
apiV2AccreditationsGet: (name?: string,
|
|
41
|
+
apiV2AccreditationsGet: (name?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
43
42
|
};
|
|
44
43
|
/**
|
|
45
44
|
* AccreditationsApi - functional programming interface
|
|
@@ -58,7 +57,6 @@ export declare const AccreditationsApiFp: (configuration?: Configuration) => {
|
|
|
58
57
|
*
|
|
59
58
|
* @summary Get all Accreditations.
|
|
60
59
|
* @param {string} [name]
|
|
61
|
-
* @param {string} [logo]
|
|
62
60
|
* @param {string} [country]
|
|
63
61
|
* @param {number} [page]
|
|
64
62
|
* @param {number} [limit]
|
|
@@ -66,7 +64,7 @@ export declare const AccreditationsApiFp: (configuration?: Configuration) => {
|
|
|
66
64
|
* @param {*} [options] Override http request option.
|
|
67
65
|
* @throws {RequiredError}
|
|
68
66
|
*/
|
|
69
|
-
apiV2AccreditationsGet(name?: string,
|
|
67
|
+
apiV2AccreditationsGet(name?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccreditationsModel>>;
|
|
70
68
|
};
|
|
71
69
|
/**
|
|
72
70
|
* AccreditationsApi - factory interface
|
|
@@ -85,7 +83,6 @@ export declare const AccreditationsApiFactory: (configuration?: Configuration, b
|
|
|
85
83
|
*
|
|
86
84
|
* @summary Get all Accreditations.
|
|
87
85
|
* @param {string} [name]
|
|
88
|
-
* @param {string} [logo]
|
|
89
86
|
* @param {string} [country]
|
|
90
87
|
* @param {number} [page]
|
|
91
88
|
* @param {number} [limit]
|
|
@@ -93,7 +90,7 @@ export declare const AccreditationsApiFactory: (configuration?: Configuration, b
|
|
|
93
90
|
* @param {*} [options] Override http request option.
|
|
94
91
|
* @throws {RequiredError}
|
|
95
92
|
*/
|
|
96
|
-
apiV2AccreditationsGet(name?: string,
|
|
93
|
+
apiV2AccreditationsGet(name?: string, country?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AccreditationsModel>;
|
|
97
94
|
};
|
|
98
95
|
/**
|
|
99
96
|
* Request parameters for apiV2AccreditationsAccreditationIdGet operation in AccreditationsApi.
|
|
@@ -120,12 +117,6 @@ export interface AccreditationsApiApiV2AccreditationsGetRequest {
|
|
|
120
117
|
* @memberof AccreditationsApiApiV2AccreditationsGet
|
|
121
118
|
*/
|
|
122
119
|
readonly name?: string;
|
|
123
|
-
/**
|
|
124
|
-
*
|
|
125
|
-
* @type {string}
|
|
126
|
-
* @memberof AccreditationsApiApiV2AccreditationsGet
|
|
127
|
-
*/
|
|
128
|
-
readonly logo?: string;
|
|
129
120
|
/**
|
|
130
121
|
*
|
|
131
122
|
* @type {string}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accreditations-api.d.ts","sourceRoot":"","sources":["../../src/api/accreditations-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,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD;;;GAGG;AACH,eAAO,MAAM,kCAAkC,mBAA6B,aAAa;IAEjF;;;;;;OAMG;6DAC4D,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA2B9H
|
|
1
|
+
{"version":3,"file":"accreditations-api.d.ts","sourceRoot":"","sources":["../../src/api/accreditations-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,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAChD;;;GAGG;AACH,eAAO,MAAM,kCAAkC,mBAA6B,aAAa;IAEjF;;;;;;OAMG;6DAC4D,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA2B9H;;;;;;;;;;OAUG;oCACmC,MAAM,YAAY,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CA+CnL,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,mBAA4B,aAAa;IAGjE;;;;;;OAMG;2DAC0D,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,kBAAkB,CAAC;IAI1L;;;;;;;;;;OAUG;kCACiC,MAAM,YAAY,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,mBAAmB,CAAC;CAKhP,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAGjH;;;;;;OAMG;2DACoD,MAAM,YAAY,GAAG,GAAG,aAAa,kBAAkB,CAAC;IAG/G;;;;;;;;;;OAUG;kCAC2B,MAAM,YAAY,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,mBAAmB,CAAC;CAIrK,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,6DAA6D;IAC1E;;;;OAIG;IACH,QAAQ,CAAC,eAAe,EAAE,MAAM,CAAA;CACnC;AAED;;;;GAIG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAA;IAEzB;;;;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;;;;;GAKG;AACH,qBAAa,iBAAkB,SAAQ,OAAO;IAC1C;;;;;;;OAOG;IACI,qCAAqC,CAAC,iBAAiB,EAAE,6DAA6D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI3J;;;;;;;OAOG;IACI,sBAAsB,CAAC,iBAAiB,GAAE,8CAAmD,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGrI"}
|
|
@@ -129,7 +129,6 @@ var AccreditationsApiAxiosParamCreator = function (configuration) {
|
|
|
129
129
|
*
|
|
130
130
|
* @summary Get all Accreditations.
|
|
131
131
|
* @param {string} [name]
|
|
132
|
-
* @param {string} [logo]
|
|
133
132
|
* @param {string} [country]
|
|
134
133
|
* @param {number} [page]
|
|
135
134
|
* @param {number} [limit]
|
|
@@ -137,7 +136,7 @@ var AccreditationsApiAxiosParamCreator = function (configuration) {
|
|
|
137
136
|
* @param {*} [options] Override http request option.
|
|
138
137
|
* @throws {RequiredError}
|
|
139
138
|
*/
|
|
140
|
-
apiV2AccreditationsGet: function (name,
|
|
139
|
+
apiV2AccreditationsGet: function (name, country, page, limit, lastRetrieved, options) {
|
|
141
140
|
if (options === void 0) { options = {}; }
|
|
142
141
|
return __awaiter(_this, void 0, void 0, function () {
|
|
143
142
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -153,9 +152,6 @@ var AccreditationsApiAxiosParamCreator = function (configuration) {
|
|
|
153
152
|
if (name !== undefined) {
|
|
154
153
|
localVarQueryParameter['Name'] = name;
|
|
155
154
|
}
|
|
156
|
-
if (logo !== undefined) {
|
|
157
|
-
localVarQueryParameter['Logo'] = logo;
|
|
158
|
-
}
|
|
159
155
|
if (country !== undefined) {
|
|
160
156
|
localVarQueryParameter['Country'] = country;
|
|
161
157
|
}
|
|
@@ -214,7 +210,6 @@ var AccreditationsApiFp = function (configuration) {
|
|
|
214
210
|
*
|
|
215
211
|
* @summary Get all Accreditations.
|
|
216
212
|
* @param {string} [name]
|
|
217
|
-
* @param {string} [logo]
|
|
218
213
|
* @param {string} [country]
|
|
219
214
|
* @param {number} [page]
|
|
220
215
|
* @param {number} [limit]
|
|
@@ -222,12 +217,12 @@ var AccreditationsApiFp = function (configuration) {
|
|
|
222
217
|
* @param {*} [options] Override http request option.
|
|
223
218
|
* @throws {RequiredError}
|
|
224
219
|
*/
|
|
225
|
-
apiV2AccreditationsGet: function (name,
|
|
220
|
+
apiV2AccreditationsGet: function (name, country, page, limit, lastRetrieved, options) {
|
|
226
221
|
return __awaiter(this, void 0, void 0, function () {
|
|
227
222
|
var localVarAxiosArgs;
|
|
228
223
|
return __generator(this, function (_a) {
|
|
229
224
|
switch (_a.label) {
|
|
230
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2AccreditationsGet(name,
|
|
225
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2AccreditationsGet(name, country, page, limit, lastRetrieved, options)];
|
|
231
226
|
case 1:
|
|
232
227
|
localVarAxiosArgs = _a.sent();
|
|
233
228
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -259,7 +254,6 @@ var AccreditationsApiFactory = function (configuration, basePath, axios) {
|
|
|
259
254
|
*
|
|
260
255
|
* @summary Get all Accreditations.
|
|
261
256
|
* @param {string} [name]
|
|
262
|
-
* @param {string} [logo]
|
|
263
257
|
* @param {string} [country]
|
|
264
258
|
* @param {number} [page]
|
|
265
259
|
* @param {number} [limit]
|
|
@@ -267,8 +261,8 @@ var AccreditationsApiFactory = function (configuration, basePath, axios) {
|
|
|
267
261
|
* @param {*} [options] Override http request option.
|
|
268
262
|
* @throws {RequiredError}
|
|
269
263
|
*/
|
|
270
|
-
apiV2AccreditationsGet: function (name,
|
|
271
|
-
return localVarFp.apiV2AccreditationsGet(name,
|
|
264
|
+
apiV2AccreditationsGet: function (name, country, page, limit, lastRetrieved, options) {
|
|
265
|
+
return localVarFp.apiV2AccreditationsGet(name, country, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
272
266
|
},
|
|
273
267
|
};
|
|
274
268
|
};
|
|
@@ -307,7 +301,7 @@ var AccreditationsApi = /** @class */ (function (_super) {
|
|
|
307
301
|
AccreditationsApi.prototype.apiV2AccreditationsGet = function (requestParameters, options) {
|
|
308
302
|
var _this = this;
|
|
309
303
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
310
|
-
return (0, exports.AccreditationsApiFp)(this.configuration).apiV2AccreditationsGet(requestParameters.name, requestParameters.
|
|
304
|
+
return (0, exports.AccreditationsApiFp)(this.configuration).apiV2AccreditationsGet(requestParameters.name, requestParameters.country, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
311
305
|
};
|
|
312
306
|
return AccreditationsApi;
|
|
313
307
|
}(base_1.BaseAPI));
|
|
@@ -163,10 +163,11 @@ export declare const ArticlesApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
163
163
|
* @param {string} [languageCode]
|
|
164
164
|
* @param {boolean} [returnDefaultValue]
|
|
165
165
|
* @param {string} [previewSecret]
|
|
166
|
+
* @param {string} [hospitalId]
|
|
166
167
|
* @param {*} [options] Override http request option.
|
|
167
168
|
* @throws {RequiredError}
|
|
168
169
|
*/
|
|
169
|
-
apiV2ArticlesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
170
|
+
apiV2ArticlesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
170
171
|
};
|
|
171
172
|
/**
|
|
172
173
|
* ArticlesApi - functional programming interface
|
|
@@ -306,10 +307,11 @@ export declare const ArticlesApiFp: (configuration?: Configuration) => {
|
|
|
306
307
|
* @param {string} [languageCode]
|
|
307
308
|
* @param {boolean} [returnDefaultValue]
|
|
308
309
|
* @param {string} [previewSecret]
|
|
310
|
+
* @param {string} [hospitalId]
|
|
309
311
|
* @param {*} [options] Override http request option.
|
|
310
312
|
* @throws {RequiredError}
|
|
311
313
|
*/
|
|
312
|
-
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>>;
|
|
314
|
+
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>>;
|
|
313
315
|
};
|
|
314
316
|
/**
|
|
315
317
|
* ArticlesApi - factory interface
|
|
@@ -449,10 +451,11 @@ export declare const ArticlesApiFactory: (configuration?: Configuration, basePat
|
|
|
449
451
|
* @param {string} [languageCode]
|
|
450
452
|
* @param {boolean} [returnDefaultValue]
|
|
451
453
|
* @param {string} [previewSecret]
|
|
454
|
+
* @param {string} [hospitalId]
|
|
452
455
|
* @param {*} [options] Override http request option.
|
|
453
456
|
* @throws {RequiredError}
|
|
454
457
|
*/
|
|
455
|
-
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<ArticleModel>;
|
|
458
|
+
apiV2ArticlesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, hospitalId?: string, options?: any): AxiosPromise<ArticleModel>;
|
|
456
459
|
};
|
|
457
460
|
/**
|
|
458
461
|
* Request parameters for apiV2ArticlesArticleIdContributorsContributorIdGet operation in ArticlesApi.
|
|
@@ -890,6 +893,12 @@ export interface ArticlesApiApiV2ArticlesSlugGetRequest {
|
|
|
890
893
|
* @memberof ArticlesApiApiV2ArticlesSlugGet
|
|
891
894
|
*/
|
|
892
895
|
readonly previewSecret?: string;
|
|
896
|
+
/**
|
|
897
|
+
*
|
|
898
|
+
* @type {string}
|
|
899
|
+
* @memberof ArticlesApiApiV2ArticlesSlugGet
|
|
900
|
+
*/
|
|
901
|
+
readonly hospitalId?: string;
|
|
893
902
|
}
|
|
894
903
|
/**
|
|
895
904
|
* ArticlesApi - object-oriented interface
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"articles-api.d.ts","sourceRoot":"","sources":["../../src/api/articles-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEpD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC;;;GAGG;AACH,eAAO,MAAM,4BAA4B,mBAA6B,aAAa;IAE3E;;;;;;;OAOG;oEACmE,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B5J;;;;;;;;;;;;;;;;;OAiBG;uDACsD,MAAM,gBAAgB,MAAM,kBAAkB,MAAM,oBAAoB,MAAM,UAAU,MAAM,YAAY,MAAM,qBAAqB,gBAAgB,iBAAiB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAyEzW;;;;;;;OAOG;2CAC0C,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+BnI;;;;;;;;;;;OAWG;iDACgD,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAiD3M;;;;;;;OAOG;wDACuD,MAAM,WAAW,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B1I;;;;;;;;;OASG;kDACiD,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAyCxK;;;;;;;OAOG;0DACyD,MAAM,YAAY,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B7I;;;;;;;;;;OAUG;+CAC8C,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA6CrL;;;;;;;OAOG;oDACmD,MAAM,SAAS,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8BpI;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;4BAC2B,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,WAAW,MAAM,aAAa,MAAM,eAAe,MAAM,iBAAiB,MAAM,cAAc,MAAM,QAAQ,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,kBAAkB,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAsGhe
|
|
1
|
+
{"version":3,"file":"articles-api.d.ts","sourceRoot":"","sources":["../../src/api/articles-api.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;GAUG;AAGH,OAAoB,EAAE,YAAY,EAAE,aAAa,EAAE,kBAAkB,EAAE,MAAM,OAAO,CAAC;AACrF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAKjD,OAAO,EAAiC,WAAW,EAAE,OAAO,EAAiB,MAAM,SAAS,CAAC;AAE7F,OAAO,EAAE,uBAAuB,EAAE,MAAM,WAAW,CAAC;AAEpD,OAAO,EAAE,wBAAwB,EAAE,MAAM,WAAW,CAAC;AAErD,OAAO,EAAE,YAAY,EAAE,MAAM,WAAW,CAAC;AAEzC,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAE5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,aAAa,EAAE,MAAM,WAAW,CAAC;AAE1C,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAEvC,OAAO,EAAE,SAAS,EAAE,MAAM,WAAW,CAAC;AAEtC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAExC,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACxC;;;GAGG;AACH,eAAO,MAAM,4BAA4B,mBAA6B,aAAa;IAE3E;;;;;;;OAOG;oEACmE,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B5J;;;;;;;;;;;;;;;;;OAiBG;uDACsD,MAAM,gBAAgB,MAAM,kBAAkB,MAAM,oBAAoB,MAAM,UAAU,MAAM,YAAY,MAAM,qBAAqB,gBAAgB,iBAAiB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAyEzW;;;;;;;OAOG;2CAC0C,MAAM,iBAAiB,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA+BnI;;;;;;;;;;;OAWG;iDACgD,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAiD3M;;;;;;;OAOG;wDACuD,MAAM,WAAW,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B1I;;;;;;;;;OASG;kDACiD,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAyCxK;;;;;;;OAOG;0DACyD,MAAM,YAAY,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8B7I;;;;;;;;;;OAUG;+CAC8C,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA6CrL;;;;;;;OAOG;oDACmD,MAAM,SAAS,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IA8BpI;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;4BAC2B,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,WAAW,MAAM,aAAa,MAAM,eAAe,MAAM,iBAAiB,MAAM,cAAc,MAAM,QAAQ,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,kBAAkB,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;IAsGhe;;;;;;;;;;OAUG;iCACgC,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,eAAe,MAAM,YAAW,kBAAkB,KAAQ,QAAQ,WAAW,CAAC;CA4C3M,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,mBAA4B,aAAa;IAG3D;;;;;;;OAOG;kEACiE,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,uBAAuB,CAAC;IAI7N;;;;;;;;;;;;;;;;;OAiBG;qDACoD,MAAM,gBAAgB,MAAM,kBAAkB,MAAM,oBAAoB,MAAM,UAAU,MAAM,YAAY,MAAM,qBAAqB,gBAAgB,iBAAiB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,wBAAwB,CAAC;IAI3a;;;;;;;OAOG;yCACwC,MAAM,iBAAiB,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,YAAY,CAAC;IAIzL;;;;;;;;;;;OAWG;+CAC8C,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,WAAW,CAAC;IAIhQ;;;;;;;OAOG;sDACqD,MAAM,WAAW,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,UAAU,CAAC;IAI9L;;;;;;;;;OASG;gDAC+C,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,mBAAmB,CAAC;IAIrO;;;;;;;OAOG;wDACuD,MAAM,YAAY,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,WAAW,CAAC;IAIlM;;;;;;;;;;OAUG;6CAC4C,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,gBAAgB,CAAC;IAI/O;;;;;;;OAOG;kDACiD,MAAM,SAAS,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,eAAe,CAAC;IAI7L;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;0BACyB,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,WAAW,MAAM,aAAa,MAAM,eAAe,MAAM,iBAAiB,MAAM,cAAc,MAAM,QAAQ,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,kBAAkB,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,aAAa,CAAC;IAIvhB;;;;;;;;;;OAUG;+BAC8B,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,eAAe,MAAM,YAAY,kBAAkB,oBAAoB,aAAa,aAAa,MAAM,KAAK,aAAa,YAAY,CAAC;CAKjQ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,mBAA6B,aAAa,aAAa,MAAM,UAAU,aAAa;IAG3G;;;;;;;OAOG;kEAC2D,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,uBAAuB,CAAC;IAGlJ;;;;;;;;;;;;;;;;;OAiBG;qDAC8C,MAAM,gBAAgB,MAAM,kBAAkB,MAAM,oBAAoB,MAAM,UAAU,MAAM,YAAY,MAAM,qBAAqB,gBAAgB,iBAAiB,MAAM,eAAe,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,wBAAwB,CAAC;IAGhW;;;;;;;OAOG;yCACkC,MAAM,iBAAiB,MAAM,YAAY,GAAG,GAAG,aAAa,YAAY,CAAC;IAG9G;;;;;;;;;;;OAWG;+CACwC,MAAM,OAAO,MAAM,cAAc,SAAS,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,WAAW,CAAC;IAGrL;;;;;;;OAOG;sDAC+C,MAAM,WAAW,MAAM,YAAY,GAAG,GAAG,aAAa,UAAU,CAAC;IAGnH;;;;;;;;;OASG;gDACyC,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,mBAAmB,CAAC;IAG1J;;;;;;;OAOG;wDACiD,MAAM,YAAY,MAAM,YAAY,GAAG,GAAG,aAAa,WAAW,CAAC;IAGvH;;;;;;;;;;OAUG;6CACsC,MAAM,UAAU,MAAM,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,gBAAgB,CAAC;IAGpK;;;;;;;OAOG;kDAC2C,MAAM,SAAS,MAAM,YAAY,GAAG,GAAG,aAAa,eAAe,CAAC;IAGlH;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;0BACmB,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,WAAW,MAAM,aAAa,MAAM,eAAe,MAAM,iBAAiB,MAAM,cAAc,MAAM,QAAQ,MAAM,oBAAoB,MAAM,qBAAqB,MAAM,kBAAkB,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAY,GAAG,GAAG,aAAa,aAAa,CAAC;IAG5c;;;;;;;;;;OAUG;+BACwB,MAAM,iBAAiB,MAAM,uBAAuB,OAAO,kBAAkB,MAAM,eAAe,MAAM,YAAY,GAAG,GAAG,aAAa,YAAY,CAAC;CAItL,CAAC;AAEF;;;;GAIG;AACH,MAAM,WAAW,oEAAoE;IACjF;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,uDAAuD;IACpE;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAA;IAEvB;;;;OAIG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAA;IAEzB;;;;OAIG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,gBAAgB,CAAA;IAE5C;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAA;IAE7B;;;;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,2CAA2C;IACxD;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;CACjC;AAED;;;;GAIG;AACH,MAAM,WAAW,iDAAiD;IAC9D;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,SAAS,CAAA;IAE9B;;;;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,wDAAwD;IACrE;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAA;CAC3B;AAED;;;;GAIG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;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,0DAA0D;IACvE;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAA;CAC5B;AAED;;;;GAIG;AACH,MAAM,WAAW,+CAA+C;IAC5D;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;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,oDAAoD;IACjE;;;;OAIG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAA;CACzB;AAED;;;;GAIG;AACH,MAAM,WAAW,kCAAkC;IAC/C;;;;OAIG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAA;IAEpB;;;;OAIG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAA;IAEtB;;;;OAIG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,aAAa,CAAA;IAEtC;;;;OAIG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAA;IAExB;;;;OAIG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAA;IAE1B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;IAE5B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAA;IAE3B;;;;OAIG;IACH,QAAQ,CAAC,GAAG,CAAC,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAA;IAEjC;;;;OAIG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,MAAM,CAAA;IAElC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,OAAO,CAAA;IAE7B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAErC;;;;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,sCAAsC;IACnD;;;;OAIG;IACH,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAA;IAErB;;;;OAIG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAA;IAE9B;;;;OAIG;IACH,QAAQ,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAA;IAErC;;;;OAIG;IACH,QAAQ,CAAC,aAAa,CAAC,EAAE,MAAM,CAAA;IAE/B;;;;OAIG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAA;CAC/B;AAED;;;;;GAKG;AACH,qBAAa,WAAY,SAAQ,OAAO;IACpC;;;;;;;OAOG;IACI,kDAAkD,CAAC,iBAAiB,EAAE,oEAAoE,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI/K;;;;;;;OAOG;IACI,qCAAqC,CAAC,iBAAiB,EAAE,uDAAuD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIrJ;;;;;;;OAOG;IACI,yBAAyB,CAAC,iBAAiB,EAAE,2CAA2C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI7H;;;;;;;OAOG;IACI,+BAA+B,CAAC,iBAAiB,EAAE,iDAAiD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIzI;;;;;;;OAOG;IACI,sCAAsC,CAAC,iBAAiB,EAAE,wDAAwD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIvJ;;;;;;;OAOG;IACI,gCAAgC,CAAC,iBAAiB,EAAE,kDAAkD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI3I;;;;;;;OAOG;IACI,wCAAwC,CAAC,iBAAiB,EAAE,0DAA0D,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI3J;;;;;;;OAOG;IACI,6BAA6B,CAAC,iBAAiB,EAAE,+CAA+C,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIrI;;;;;;;OAOG;IACI,kCAAkC,CAAC,iBAAiB,EAAE,oDAAoD,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAI/I;;;;;;;OAOG;IACI,gBAAgB,CAAC,iBAAiB,GAAE,kCAAuC,EAAE,OAAO,CAAC,EAAE,kBAAkB;IAIhH;;;;;;;OAOG;IACI,oBAAoB,CAAC,iBAAiB,EAAE,sCAAsC,EAAE,OAAO,CAAC,EAAE,kBAAkB;CAGtH"}
|
package/lib/api/articles-api.js
CHANGED
|
@@ -623,10 +623,11 @@ var ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
623
623
|
* @param {string} [languageCode]
|
|
624
624
|
* @param {boolean} [returnDefaultValue]
|
|
625
625
|
* @param {string} [previewSecret]
|
|
626
|
+
* @param {string} [hospitalId]
|
|
626
627
|
* @param {*} [options] Override http request option.
|
|
627
628
|
* @throws {RequiredError}
|
|
628
629
|
*/
|
|
629
|
-
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
630
|
+
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
630
631
|
if (options === void 0) { options = {}; }
|
|
631
632
|
return __awaiter(_this, void 0, void 0, function () {
|
|
632
633
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -651,6 +652,9 @@ var ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
651
652
|
if (previewSecret !== undefined) {
|
|
652
653
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
653
654
|
}
|
|
655
|
+
if (hospitalId !== undefined) {
|
|
656
|
+
localVarQueryParameter['hospitalId'] = hospitalId;
|
|
657
|
+
}
|
|
654
658
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
655
659
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
656
660
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -924,15 +928,16 @@ var ArticlesApiFp = function (configuration) {
|
|
|
924
928
|
* @param {string} [languageCode]
|
|
925
929
|
* @param {boolean} [returnDefaultValue]
|
|
926
930
|
* @param {string} [previewSecret]
|
|
931
|
+
* @param {string} [hospitalId]
|
|
927
932
|
* @param {*} [options] Override http request option.
|
|
928
933
|
* @throws {RequiredError}
|
|
929
934
|
*/
|
|
930
|
-
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
935
|
+
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
931
936
|
return __awaiter(this, void 0, void 0, function () {
|
|
932
937
|
var localVarAxiosArgs;
|
|
933
938
|
return __generator(this, function (_a) {
|
|
934
939
|
switch (_a.label) {
|
|
935
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ArticlesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options)];
|
|
940
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2ArticlesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options)];
|
|
936
941
|
case 1:
|
|
937
942
|
localVarAxiosArgs = _a.sent();
|
|
938
943
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -1103,11 +1108,12 @@ var ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
1103
1108
|
* @param {string} [languageCode]
|
|
1104
1109
|
* @param {boolean} [returnDefaultValue]
|
|
1105
1110
|
* @param {string} [previewSecret]
|
|
1111
|
+
* @param {string} [hospitalId]
|
|
1106
1112
|
* @param {*} [options] Override http request option.
|
|
1107
1113
|
* @throws {RequiredError}
|
|
1108
1114
|
*/
|
|
1109
|
-
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
1110
|
-
return localVarFp.apiV2ArticlesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
1115
|
+
apiV2ArticlesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options) {
|
|
1116
|
+
return localVarFp.apiV2ArticlesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, hospitalId, options).then(function (request) { return request(axios, basePath); });
|
|
1111
1117
|
},
|
|
1112
1118
|
};
|
|
1113
1119
|
};
|
|
@@ -1254,7 +1260,7 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
1254
1260
|
*/
|
|
1255
1261
|
ArticlesApi.prototype.apiV2ArticlesSlugGet = function (requestParameters, options) {
|
|
1256
1262
|
var _this = this;
|
|
1257
|
-
return (0, exports.ArticlesApiFp)(this.configuration).apiV2ArticlesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1263
|
+
return (0, exports.ArticlesApiFp)(this.configuration).apiV2ArticlesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.hospitalId, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1258
1264
|
};
|
|
1259
1265
|
return ArticlesApi;
|
|
1260
1266
|
}(base_1.BaseAPI));
|
|
@@ -13,6 +13,7 @@ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
|
13
13
|
import { Configuration } from '../configuration';
|
|
14
14
|
import { RequestArgs, BaseAPI } from '../base';
|
|
15
15
|
import { AppointmentTimetablesModel } from '../models';
|
|
16
|
+
import { ArticleModel } from '../models';
|
|
16
17
|
import { BankAccountInfoModel } from '../models';
|
|
17
18
|
import { BankAccountInfosModel } from '../models';
|
|
18
19
|
import { ContactType } from '../models';
|
|
@@ -129,6 +130,18 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
129
130
|
* @throws {RequiredError}
|
|
130
131
|
*/
|
|
131
132
|
apiV2HospitalsHospitalIdAppointmenttimetablesGet: (hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
133
|
+
/**
|
|
134
|
+
*
|
|
135
|
+
* @summary Get hospital article by slug
|
|
136
|
+
* @param {string} hospitalId
|
|
137
|
+
* @param {string} slug
|
|
138
|
+
* @param {string} [languageCode]
|
|
139
|
+
* @param {boolean} [returnDefaultValue]
|
|
140
|
+
* @param {string} [previewSecret]
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
apiV2HospitalsHospitalIdArticlesSlugGet: (hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
132
145
|
/**
|
|
133
146
|
*
|
|
134
147
|
* @summary Get bank account info
|
|
@@ -767,6 +780,18 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
|
|
|
767
780
|
* @throws {RequiredError}
|
|
768
781
|
*/
|
|
769
782
|
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>>;
|
|
783
|
+
/**
|
|
784
|
+
*
|
|
785
|
+
* @summary Get hospital article by slug
|
|
786
|
+
* @param {string} hospitalId
|
|
787
|
+
* @param {string} slug
|
|
788
|
+
* @param {string} [languageCode]
|
|
789
|
+
* @param {boolean} [returnDefaultValue]
|
|
790
|
+
* @param {string} [previewSecret]
|
|
791
|
+
* @param {*} [options] Override http request option.
|
|
792
|
+
* @throws {RequiredError}
|
|
793
|
+
*/
|
|
794
|
+
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleModel>>;
|
|
770
795
|
/**
|
|
771
796
|
*
|
|
772
797
|
* @summary Get bank account info
|
|
@@ -1405,6 +1430,18 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
|
|
|
1405
1430
|
* @throws {RequiredError}
|
|
1406
1431
|
*/
|
|
1407
1432
|
apiV2HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, year?: number, month?: number, timeZone?: string, isExternal?: boolean, isOnline?: boolean, appointmentIdExcluded?: string, options?: any): AxiosPromise<AppointmentTimetablesModel>;
|
|
1433
|
+
/**
|
|
1434
|
+
*
|
|
1435
|
+
* @summary Get hospital article by slug
|
|
1436
|
+
* @param {string} hospitalId
|
|
1437
|
+
* @param {string} slug
|
|
1438
|
+
* @param {string} [languageCode]
|
|
1439
|
+
* @param {boolean} [returnDefaultValue]
|
|
1440
|
+
* @param {string} [previewSecret]
|
|
1441
|
+
* @param {*} [options] Override http request option.
|
|
1442
|
+
* @throws {RequiredError}
|
|
1443
|
+
*/
|
|
1444
|
+
apiV2HospitalsHospitalIdArticlesSlugGet(hospitalId: string, slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<ArticleModel>;
|
|
1408
1445
|
/**
|
|
1409
1446
|
*
|
|
1410
1447
|
* @summary Get bank account info
|
|
@@ -2219,6 +2256,43 @@ export interface HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetReq
|
|
|
2219
2256
|
*/
|
|
2220
2257
|
readonly appointmentIdExcluded?: string;
|
|
2221
2258
|
}
|
|
2259
|
+
/**
|
|
2260
|
+
* Request parameters for apiV2HospitalsHospitalIdArticlesSlugGet operation in HospitalsApi.
|
|
2261
|
+
* @export
|
|
2262
|
+
* @interface HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGetRequest
|
|
2263
|
+
*/
|
|
2264
|
+
export interface HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGetRequest {
|
|
2265
|
+
/**
|
|
2266
|
+
*
|
|
2267
|
+
* @type {string}
|
|
2268
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
2269
|
+
*/
|
|
2270
|
+
readonly hospitalId: string;
|
|
2271
|
+
/**
|
|
2272
|
+
*
|
|
2273
|
+
* @type {string}
|
|
2274
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
2275
|
+
*/
|
|
2276
|
+
readonly slug: string;
|
|
2277
|
+
/**
|
|
2278
|
+
*
|
|
2279
|
+
* @type {string}
|
|
2280
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
2281
|
+
*/
|
|
2282
|
+
readonly languageCode?: string;
|
|
2283
|
+
/**
|
|
2284
|
+
*
|
|
2285
|
+
* @type {boolean}
|
|
2286
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
2287
|
+
*/
|
|
2288
|
+
readonly returnDefaultValue?: boolean;
|
|
2289
|
+
/**
|
|
2290
|
+
*
|
|
2291
|
+
* @type {string}
|
|
2292
|
+
* @memberof HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGet
|
|
2293
|
+
*/
|
|
2294
|
+
readonly previewSecret?: string;
|
|
2295
|
+
}
|
|
2222
2296
|
/**
|
|
2223
2297
|
* Request parameters for apiV2HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet operation in HospitalsApi.
|
|
2224
2298
|
* @export
|
|
@@ -4102,6 +4176,15 @@ export declare class HospitalsApi extends BaseAPI {
|
|
|
4102
4176
|
* @memberof HospitalsApi
|
|
4103
4177
|
*/
|
|
4104
4178
|
apiV2HospitalsHospitalIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetablesModel, any>>;
|
|
4179
|
+
/**
|
|
4180
|
+
*
|
|
4181
|
+
* @summary Get hospital article by slug
|
|
4182
|
+
* @param {HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGetRequest} requestParameters Request parameters.
|
|
4183
|
+
* @param {*} [options] Override http request option.
|
|
4184
|
+
* @throws {RequiredError}
|
|
4185
|
+
* @memberof HospitalsApi
|
|
4186
|
+
*/
|
|
4187
|
+
apiV2HospitalsHospitalIdArticlesSlugGet(requestParameters: HospitalsApiApiV2HospitalsHospitalIdArticlesSlugGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ArticleModel, any>>;
|
|
4105
4188
|
/**
|
|
4106
4189
|
*
|
|
4107
4190
|
* @summary Get bank account info
|