ch-api-client-typescript2 5.91.4 → 5.91.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/api/articles-api.d.ts +42 -6
- package/lib/api/articles-api.d.ts.map +1 -1
- package/lib/api/articles-api.js +42 -18
- package/lib/api/deals-api.d.ts +42 -6
- package/lib/api/deals-api.d.ts.map +1 -1
- package/lib/api/deals-api.js +42 -18
- package/lib/api/doctor-affiliations-api.d.ts +42 -6
- package/lib/api/doctor-affiliations-api.d.ts.map +1 -1
- package/lib/api/doctor-affiliations-api.js +42 -18
- package/lib/api/general-articles-api.d.ts +42 -6
- package/lib/api/general-articles-api.d.ts.map +1 -1
- package/lib/api/general-articles-api.js +42 -18
- package/lib/api/hospitals-api.d.ts +234 -36
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +240 -108
- package/lib/api/specialties-api.d.ts +24 -6
- package/lib/api/specialties-api.d.ts.map +1 -1
- package/lib/api/specialties-api.js +30 -18
- package/lib/api/specialty-types-api.d.ts +24 -6
- package/lib/api/specialty-types-api.d.ts.map +1 -1
- package/lib/api/specialty-types-api.js +30 -18
- package/package.json +1 -1
|
@@ -73,20 +73,22 @@ export declare const SpecialtiesApiAxiosParamCreator: (configuration?: Configura
|
|
|
73
73
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
74
74
|
* @param {boolean} [returnDefaultValue]
|
|
75
75
|
* @param {string} [previewSecret]
|
|
76
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
76
77
|
* @param {*} [options] Override http request option.
|
|
77
78
|
* @throws {RequiredError}
|
|
78
79
|
*/
|
|
79
|
-
apiV2SpecialtiesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
|
+
apiV2SpecialtiesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
81
|
/**
|
|
81
82
|
*
|
|
82
83
|
* @summary Get specialty by id
|
|
83
84
|
* @param {string} specialtyId
|
|
84
85
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
85
86
|
* @param {boolean} [returnDefaultValue]
|
|
87
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
86
88
|
* @param {*} [options] Override http request option.
|
|
87
89
|
* @throws {RequiredError}
|
|
88
90
|
*/
|
|
89
|
-
apiV2SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
91
|
+
apiV2SpecialtiesSpecialtyIdGet: (specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
90
92
|
/**
|
|
91
93
|
*
|
|
92
94
|
* @summary Get all SpecialtyMedias.
|
|
@@ -164,20 +166,22 @@ export declare const SpecialtiesApiFp: (configuration?: Configuration) => {
|
|
|
164
166
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
165
167
|
* @param {boolean} [returnDefaultValue]
|
|
166
168
|
* @param {string} [previewSecret]
|
|
169
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
167
170
|
* @param {*} [options] Override http request option.
|
|
168
171
|
* @throws {RequiredError}
|
|
169
172
|
*/
|
|
170
|
-
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
173
|
+
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
171
174
|
/**
|
|
172
175
|
*
|
|
173
176
|
* @summary Get specialty by id
|
|
174
177
|
* @param {string} specialtyId
|
|
175
178
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
176
179
|
* @param {boolean} [returnDefaultValue]
|
|
180
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
177
181
|
* @param {*} [options] Override http request option.
|
|
178
182
|
* @throws {RequiredError}
|
|
179
183
|
*/
|
|
180
|
-
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
184
|
+
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyModel>>;
|
|
181
185
|
/**
|
|
182
186
|
*
|
|
183
187
|
* @summary Get all SpecialtyMedias.
|
|
@@ -255,20 +259,22 @@ export declare const SpecialtiesApiFactory: (configuration?: Configuration, base
|
|
|
255
259
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
256
260
|
* @param {boolean} [returnDefaultValue]
|
|
257
261
|
* @param {string} [previewSecret]
|
|
262
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
258
263
|
* @param {*} [options] Override http request option.
|
|
259
264
|
* @throws {RequiredError}
|
|
260
265
|
*/
|
|
261
|
-
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<SpecialtyModel>;
|
|
266
|
+
apiV2SpecialtiesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: any): AxiosPromise<SpecialtyModel>;
|
|
262
267
|
/**
|
|
263
268
|
*
|
|
264
269
|
* @summary Get specialty by id
|
|
265
270
|
* @param {string} specialtyId
|
|
266
271
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
267
272
|
* @param {boolean} [returnDefaultValue]
|
|
273
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
268
274
|
* @param {*} [options] Override http request option.
|
|
269
275
|
* @throws {RequiredError}
|
|
270
276
|
*/
|
|
271
|
-
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyModel>;
|
|
277
|
+
apiV2SpecialtiesSpecialtyIdGet(specialtyId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: any): AxiosPromise<SpecialtyModel>;
|
|
272
278
|
/**
|
|
273
279
|
*
|
|
274
280
|
* @summary Get all SpecialtyMedias.
|
|
@@ -504,6 +510,12 @@ export interface SpecialtiesApiApiV2SpecialtiesSlugGetRequest {
|
|
|
504
510
|
* @memberof SpecialtiesApiApiV2SpecialtiesSlugGet
|
|
505
511
|
*/
|
|
506
512
|
readonly previewSecret?: string;
|
|
513
|
+
/**
|
|
514
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
515
|
+
* @type {number}
|
|
516
|
+
* @memberof SpecialtiesApiApiV2SpecialtiesSlugGet
|
|
517
|
+
*/
|
|
518
|
+
readonly platformFaqLimit?: number;
|
|
507
519
|
}
|
|
508
520
|
/**
|
|
509
521
|
* Request parameters for apiV2SpecialtiesSpecialtyIdGet operation in SpecialtiesApi.
|
|
@@ -529,6 +541,12 @@ export interface SpecialtiesApiApiV2SpecialtiesSpecialtyIdGetRequest {
|
|
|
529
541
|
* @memberof SpecialtiesApiApiV2SpecialtiesSpecialtyIdGet
|
|
530
542
|
*/
|
|
531
543
|
readonly returnDefaultValue?: boolean;
|
|
544
|
+
/**
|
|
545
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
546
|
+
* @type {number}
|
|
547
|
+
* @memberof SpecialtiesApiApiV2SpecialtiesSpecialtyIdGet
|
|
548
|
+
*/
|
|
549
|
+
readonly platformFaqLimit?: number;
|
|
532
550
|
}
|
|
533
551
|
/**
|
|
534
552
|
* Request parameters for apiV2SpecialtiesSpecialtyIdMediasGet operation in SpecialtiesApi.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"specialties-api.d.ts","sourceRoot":"","sources":["../../src/api/specialties-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,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,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAE7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AAEnD,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAC3C;;;GAGG;AACH,eAAO,MAAM,+BAA+B,mBAA6B,aAAa;IAE9E;;;;;;;;;;;;;;;;;;;OAmBG;mDACkD,MAAM,OAAO,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAoFnY;;;;;;;;;;;;;;;;;;;OAmBG;yDACwD,MAAM,OAAO,MAAM,SAAS,MAAM,gBAAgB,MAAM,oBAAoB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,iBAAiB,MAAM,QAAQ,KAAK,CAAC,MAAM,CAAC,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAoFzY
|
|
1
|
+
{"version":3,"file":"specialties-api.d.ts","sourceRoot":"","sources":["../../src/api/specialties-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -294,15 +294,16 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
|
|
|
294
294
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
295
295
|
* @param {boolean} [returnDefaultValue]
|
|
296
296
|
* @param {string} [previewSecret]
|
|
297
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
297
298
|
* @param {*} [options] Override http request option.
|
|
298
299
|
* @throws {RequiredError}
|
|
299
300
|
*/
|
|
300
|
-
apiV2SpecialtiesSlugGet: function (slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
301
|
+
apiV2SpecialtiesSlugGet: function (slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, platformFaqLimit_1) {
|
|
301
302
|
var args_1 = [];
|
|
302
|
-
for (var _i =
|
|
303
|
-
args_1[_i -
|
|
303
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
304
|
+
args_1[_i - 5] = arguments[_i];
|
|
304
305
|
}
|
|
305
|
-
return __awaiter(_this, __spreadArray([slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
306
|
+
return __awaiter(_this, __spreadArray([slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, platformFaqLimit_1], args_1, true), void 0, function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
306
307
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
307
308
|
if (options === void 0) { options = {}; }
|
|
308
309
|
return __generator(this, function (_a) {
|
|
@@ -326,6 +327,9 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
|
|
|
326
327
|
if (previewSecret !== undefined) {
|
|
327
328
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
328
329
|
}
|
|
330
|
+
if (platformFaqLimit !== undefined) {
|
|
331
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
332
|
+
}
|
|
329
333
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
330
334
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
331
335
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -342,15 +346,16 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
|
|
|
342
346
|
* @param {string} specialtyId
|
|
343
347
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
344
348
|
* @param {boolean} [returnDefaultValue]
|
|
349
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
345
350
|
* @param {*} [options] Override http request option.
|
|
346
351
|
* @throws {RequiredError}
|
|
347
352
|
*/
|
|
348
|
-
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId_1, languageCode_1, returnDefaultValue_1) {
|
|
353
|
+
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId_1, languageCode_1, returnDefaultValue_1, platformFaqLimit_1) {
|
|
349
354
|
var args_1 = [];
|
|
350
|
-
for (var _i =
|
|
351
|
-
args_1[_i -
|
|
355
|
+
for (var _i = 4; _i < arguments.length; _i++) {
|
|
356
|
+
args_1[_i - 4] = arguments[_i];
|
|
352
357
|
}
|
|
353
|
-
return __awaiter(_this, __spreadArray([specialtyId_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (specialtyId, languageCode, returnDefaultValue, options) {
|
|
358
|
+
return __awaiter(_this, __spreadArray([specialtyId_1, languageCode_1, returnDefaultValue_1, platformFaqLimit_1], args_1, true), void 0, function (specialtyId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
354
359
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
355
360
|
if (options === void 0) { options = {}; }
|
|
356
361
|
return __generator(this, function (_a) {
|
|
@@ -371,6 +376,9 @@ var SpecialtiesApiAxiosParamCreator = function (configuration) {
|
|
|
371
376
|
if (returnDefaultValue !== undefined) {
|
|
372
377
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
373
378
|
}
|
|
379
|
+
if (platformFaqLimit !== undefined) {
|
|
380
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
381
|
+
}
|
|
374
382
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
375
383
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
376
384
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -564,15 +572,16 @@ var SpecialtiesApiFp = function (configuration) {
|
|
|
564
572
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
565
573
|
* @param {boolean} [returnDefaultValue]
|
|
566
574
|
* @param {string} [previewSecret]
|
|
575
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
567
576
|
* @param {*} [options] Override http request option.
|
|
568
577
|
* @throws {RequiredError}
|
|
569
578
|
*/
|
|
570
|
-
apiV2SpecialtiesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
579
|
+
apiV2SpecialtiesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
571
580
|
return __awaiter(this, void 0, void 0, function () {
|
|
572
581
|
var localVarAxiosArgs;
|
|
573
582
|
return __generator(this, function (_a) {
|
|
574
583
|
switch (_a.label) {
|
|
575
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options)];
|
|
584
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options)];
|
|
576
585
|
case 1:
|
|
577
586
|
localVarAxiosArgs = _a.sent();
|
|
578
587
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -586,15 +595,16 @@ var SpecialtiesApiFp = function (configuration) {
|
|
|
586
595
|
* @param {string} specialtyId
|
|
587
596
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
588
597
|
* @param {boolean} [returnDefaultValue]
|
|
598
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
589
599
|
* @param {*} [options] Override http request option.
|
|
590
600
|
* @throws {RequiredError}
|
|
591
601
|
*/
|
|
592
|
-
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId, languageCode, returnDefaultValue, options) {
|
|
602
|
+
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
593
603
|
return __awaiter(this, void 0, void 0, function () {
|
|
594
604
|
var localVarAxiosArgs;
|
|
595
605
|
return __generator(this, function (_a) {
|
|
596
606
|
switch (_a.label) {
|
|
597
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSpecialtyIdGet(specialtyId, languageCode, returnDefaultValue, options)];
|
|
607
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtiesSpecialtyIdGet(specialtyId, languageCode, returnDefaultValue, platformFaqLimit, options)];
|
|
598
608
|
case 1:
|
|
599
609
|
localVarAxiosArgs = _a.sent();
|
|
600
610
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -711,11 +721,12 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
|
|
|
711
721
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
712
722
|
* @param {boolean} [returnDefaultValue]
|
|
713
723
|
* @param {string} [previewSecret]
|
|
724
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
714
725
|
* @param {*} [options] Override http request option.
|
|
715
726
|
* @throws {RequiredError}
|
|
716
727
|
*/
|
|
717
|
-
apiV2SpecialtiesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
718
|
-
return localVarFp.apiV2SpecialtiesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
728
|
+
apiV2SpecialtiesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
729
|
+
return localVarFp.apiV2SpecialtiesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
719
730
|
},
|
|
720
731
|
/**
|
|
721
732
|
*
|
|
@@ -723,11 +734,12 @@ var SpecialtiesApiFactory = function (configuration, basePath, axios) {
|
|
|
723
734
|
* @param {string} specialtyId
|
|
724
735
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
725
736
|
* @param {boolean} [returnDefaultValue]
|
|
737
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
726
738
|
* @param {*} [options] Override http request option.
|
|
727
739
|
* @throws {RequiredError}
|
|
728
740
|
*/
|
|
729
|
-
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId, languageCode, returnDefaultValue, options) {
|
|
730
|
-
return localVarFp.apiV2SpecialtiesSpecialtyIdGet(specialtyId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
741
|
+
apiV2SpecialtiesSpecialtyIdGet: function (specialtyId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
742
|
+
return localVarFp.apiV2SpecialtiesSpecialtyIdGet(specialtyId, languageCode, returnDefaultValue, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
731
743
|
},
|
|
732
744
|
/**
|
|
733
745
|
*
|
|
@@ -805,7 +817,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
|
|
|
805
817
|
*/
|
|
806
818
|
SpecialtiesApi.prototype.apiV2SpecialtiesSlugGet = function (requestParameters, options) {
|
|
807
819
|
var _this = this;
|
|
808
|
-
return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
820
|
+
return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
809
821
|
};
|
|
810
822
|
/**
|
|
811
823
|
*
|
|
@@ -817,7 +829,7 @@ var SpecialtiesApi = /** @class */ (function (_super) {
|
|
|
817
829
|
*/
|
|
818
830
|
SpecialtiesApi.prototype.apiV2SpecialtiesSpecialtyIdGet = function (requestParameters, options) {
|
|
819
831
|
var _this = this;
|
|
820
|
-
return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSpecialtyIdGet(requestParameters.specialtyId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
832
|
+
return (0, exports.SpecialtiesApiFp)(this.configuration).apiV2SpecialtiesSpecialtyIdGet(requestParameters.specialtyId, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
821
833
|
};
|
|
822
834
|
/**
|
|
823
835
|
*
|
|
@@ -86,20 +86,22 @@ export declare const SpecialtyTypesApiAxiosParamCreator: (configuration?: Config
|
|
|
86
86
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
87
87
|
* @param {boolean} [returnDefaultValue]
|
|
88
88
|
* @param {string} [previewSecret]
|
|
89
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
89
90
|
* @param {*} [options] Override http request option.
|
|
90
91
|
* @throws {RequiredError}
|
|
91
92
|
*/
|
|
92
|
-
apiV2SpecialtytypesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
93
|
+
apiV2SpecialtytypesSlugGet: (slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
93
94
|
/**
|
|
94
95
|
*
|
|
95
96
|
* @summary Get specialtyType by id
|
|
96
97
|
* @param {string} specialtyTypeId
|
|
97
98
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
98
99
|
* @param {boolean} [returnDefaultValue]
|
|
100
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
99
101
|
* @param {*} [options] Override http request option.
|
|
100
102
|
* @throws {RequiredError}
|
|
101
103
|
*/
|
|
102
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
104
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet: (specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
103
105
|
/**
|
|
104
106
|
*
|
|
105
107
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -188,20 +190,22 @@ export declare const SpecialtyTypesApiFp: (configuration?: Configuration) => {
|
|
|
188
190
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
189
191
|
* @param {boolean} [returnDefaultValue]
|
|
190
192
|
* @param {string} [previewSecret]
|
|
193
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
191
194
|
* @param {*} [options] Override http request option.
|
|
192
195
|
* @throws {RequiredError}
|
|
193
196
|
*/
|
|
194
|
-
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
197
|
+
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
195
198
|
/**
|
|
196
199
|
*
|
|
197
200
|
* @summary Get specialtyType by id
|
|
198
201
|
* @param {string} specialtyTypeId
|
|
199
202
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
200
203
|
* @param {boolean} [returnDefaultValue]
|
|
204
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
201
205
|
* @param {*} [options] Override http request option.
|
|
202
206
|
* @throws {RequiredError}
|
|
203
207
|
*/
|
|
204
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
208
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpecialtyTypeModel>>;
|
|
205
209
|
/**
|
|
206
210
|
*
|
|
207
211
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -290,20 +294,22 @@ export declare const SpecialtyTypesApiFactory: (configuration?: Configuration, b
|
|
|
290
294
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
291
295
|
* @param {boolean} [returnDefaultValue]
|
|
292
296
|
* @param {string} [previewSecret]
|
|
297
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
293
298
|
* @param {*} [options] Override http request option.
|
|
294
299
|
* @throws {RequiredError}
|
|
295
300
|
*/
|
|
296
|
-
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
301
|
+
apiV2SpecialtytypesSlugGet(slug: string, languageCode?: string, returnDefaultValue?: boolean, previewSecret?: string, platformFaqLimit?: number, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
297
302
|
/**
|
|
298
303
|
*
|
|
299
304
|
* @summary Get specialtyType by id
|
|
300
305
|
* @param {string} specialtyTypeId
|
|
301
306
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
302
307
|
* @param {boolean} [returnDefaultValue]
|
|
308
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
303
309
|
* @param {*} [options] Override http request option.
|
|
304
310
|
* @throws {RequiredError}
|
|
305
311
|
*/
|
|
306
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
312
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId: string, languageCode?: string, returnDefaultValue?: boolean, platformFaqLimit?: number, options?: any): AxiosPromise<SpecialtyTypeModel>;
|
|
307
313
|
/**
|
|
308
314
|
*
|
|
309
315
|
* @summary Get all SpecialtyTypeMedias.
|
|
@@ -564,6 +570,12 @@ export interface SpecialtyTypesApiApiV2SpecialtytypesSlugGetRequest {
|
|
|
564
570
|
* @memberof SpecialtyTypesApiApiV2SpecialtytypesSlugGet
|
|
565
571
|
*/
|
|
566
572
|
readonly previewSecret?: string;
|
|
573
|
+
/**
|
|
574
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
575
|
+
* @type {number}
|
|
576
|
+
* @memberof SpecialtyTypesApiApiV2SpecialtytypesSlugGet
|
|
577
|
+
*/
|
|
578
|
+
readonly platformFaqLimit?: number;
|
|
567
579
|
}
|
|
568
580
|
/**
|
|
569
581
|
* Request parameters for apiV2SpecialtytypesSpecialtyTypeIdGet operation in SpecialtyTypesApi.
|
|
@@ -589,6 +601,12 @@ export interface SpecialtyTypesApiApiV2SpecialtytypesSpecialtyTypeIdGetRequest {
|
|
|
589
601
|
* @memberof SpecialtyTypesApiApiV2SpecialtytypesSpecialtyTypeIdGet
|
|
590
602
|
*/
|
|
591
603
|
readonly returnDefaultValue?: boolean;
|
|
604
|
+
/**
|
|
605
|
+
* Number of platform FAQ items to return (1-200, default 6).
|
|
606
|
+
* @type {number}
|
|
607
|
+
* @memberof SpecialtyTypesApiApiV2SpecialtytypesSpecialtyTypeIdGet
|
|
608
|
+
*/
|
|
609
|
+
readonly platformFaqLimit?: number;
|
|
592
610
|
}
|
|
593
611
|
/**
|
|
594
612
|
* Request parameters for apiV2SpecialtytypesSpecialtyTypeIdMediasGet operation in SpecialtyTypesApi.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"specialty-types-api.d.ts","sourceRoot":"","sources":["../../src/api/specialty-types-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,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;AAIxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,WAAW,CAAC;AAEhD,OAAO,EAAE,yBAAyB,EAAE,MAAM,WAAW,CAAC;AAEtD,OAAO,EAAE,4CAA4C,EAAE,MAAM,WAAW,CAAC;AAEzE,OAAO,EAAE,4BAA4B,EAAE,MAAM,WAAW,CAAC;AACzD;;;GAGG;AACH,eAAO,MAAM,kCAAkC,mBAA6B,aAAa;IAEjF;;;;;;;OAOG;sFACqF,4CAA4C,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IA2B7L;;;;;;;;;;;;;;;;;;;;OAoBG;sDACqD,MAAM,OAAO,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,QAAQ,KAAK,CAAC,MAAM,CAAC,4BAA4B,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAwFpa;;;;;;;;;;;;;;;;;;;;OAoBG;4DAC2D,MAAM,OAAO,MAAM,SAAS,MAAM,gBAAgB,MAAM,kBAAkB,aAAa,eAAe,MAAM,YAAY,IAAI,QAAQ,KAAK,CAAC,MAAM,CAAC,4BAA4B,MAAM,iBAAiB,MAAM,eAAe,OAAO,uBAAuB,OAAO,SAAS,MAAM,UAAU,MAAM,kBAAkB,IAAI,YAAW,kBAAkB,KAAQ,OAAO,CAAC,WAAW,CAAC;IAwF1a
|
|
1
|
+
{"version":3,"file":"specialty-types-api.d.ts","sourceRoot":"","sources":["../../src/api/specialty-types-api.ts"],"names":[],"mappings":"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"}
|
|
@@ -339,15 +339,16 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
339
339
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
340
340
|
* @param {boolean} [returnDefaultValue]
|
|
341
341
|
* @param {string} [previewSecret]
|
|
342
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
342
343
|
* @param {*} [options] Override http request option.
|
|
343
344
|
* @throws {RequiredError}
|
|
344
345
|
*/
|
|
345
|
-
apiV2SpecialtytypesSlugGet: function (slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1) {
|
|
346
|
+
apiV2SpecialtytypesSlugGet: function (slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, platformFaqLimit_1) {
|
|
346
347
|
var args_1 = [];
|
|
347
|
-
for (var _i =
|
|
348
|
-
args_1[_i -
|
|
348
|
+
for (var _i = 5; _i < arguments.length; _i++) {
|
|
349
|
+
args_1[_i - 5] = arguments[_i];
|
|
349
350
|
}
|
|
350
|
-
return __awaiter(_this, __spreadArray([slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1], args_1, true), void 0, function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
351
|
+
return __awaiter(_this, __spreadArray([slug_1, languageCode_1, returnDefaultValue_1, previewSecret_1, platformFaqLimit_1], args_1, true), void 0, function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
351
352
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
352
353
|
if (options === void 0) { options = {}; }
|
|
353
354
|
return __generator(this, function (_a) {
|
|
@@ -371,6 +372,9 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
371
372
|
if (previewSecret !== undefined) {
|
|
372
373
|
localVarQueryParameter['previewSecret'] = previewSecret;
|
|
373
374
|
}
|
|
375
|
+
if (platformFaqLimit !== undefined) {
|
|
376
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
377
|
+
}
|
|
374
378
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
375
379
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
376
380
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -387,15 +391,16 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
387
391
|
* @param {string} specialtyTypeId
|
|
388
392
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
389
393
|
* @param {boolean} [returnDefaultValue]
|
|
394
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
390
395
|
* @param {*} [options] Override http request option.
|
|
391
396
|
* @throws {RequiredError}
|
|
392
397
|
*/
|
|
393
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId_1, languageCode_1, returnDefaultValue_1) {
|
|
398
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId_1, languageCode_1, returnDefaultValue_1, platformFaqLimit_1) {
|
|
394
399
|
var args_1 = [];
|
|
395
|
-
for (var _i =
|
|
396
|
-
args_1[_i -
|
|
400
|
+
for (var _i = 4; _i < arguments.length; _i++) {
|
|
401
|
+
args_1[_i - 4] = arguments[_i];
|
|
397
402
|
}
|
|
398
|
-
return __awaiter(_this, __spreadArray([specialtyTypeId_1, languageCode_1, returnDefaultValue_1], args_1, true), void 0, function (specialtyTypeId, languageCode, returnDefaultValue, options) {
|
|
403
|
+
return __awaiter(_this, __spreadArray([specialtyTypeId_1, languageCode_1, returnDefaultValue_1, platformFaqLimit_1], args_1, true), void 0, function (specialtyTypeId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
399
404
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
400
405
|
if (options === void 0) { options = {}; }
|
|
401
406
|
return __generator(this, function (_a) {
|
|
@@ -416,6 +421,9 @@ var SpecialtyTypesApiAxiosParamCreator = function (configuration) {
|
|
|
416
421
|
if (returnDefaultValue !== undefined) {
|
|
417
422
|
localVarQueryParameter['returnDefaultValue'] = returnDefaultValue;
|
|
418
423
|
}
|
|
424
|
+
if (platformFaqLimit !== undefined) {
|
|
425
|
+
localVarQueryParameter['platformFaqLimit'] = platformFaqLimit;
|
|
426
|
+
}
|
|
419
427
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
420
428
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
421
429
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -632,15 +640,16 @@ var SpecialtyTypesApiFp = function (configuration) {
|
|
|
632
640
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
633
641
|
* @param {boolean} [returnDefaultValue]
|
|
634
642
|
* @param {string} [previewSecret]
|
|
643
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
635
644
|
* @param {*} [options] Override http request option.
|
|
636
645
|
* @throws {RequiredError}
|
|
637
646
|
*/
|
|
638
|
-
apiV2SpecialtytypesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
647
|
+
apiV2SpecialtytypesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
639
648
|
return __awaiter(this, void 0, void 0, function () {
|
|
640
649
|
var localVarAxiosArgs;
|
|
641
650
|
return __generator(this, function (_a) {
|
|
642
651
|
switch (_a.label) {
|
|
643
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options)];
|
|
652
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options)];
|
|
644
653
|
case 1:
|
|
645
654
|
localVarAxiosArgs = _a.sent();
|
|
646
655
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -654,15 +663,16 @@ var SpecialtyTypesApiFp = function (configuration) {
|
|
|
654
663
|
* @param {string} specialtyTypeId
|
|
655
664
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
656
665
|
* @param {boolean} [returnDefaultValue]
|
|
666
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
657
667
|
* @param {*} [options] Override http request option.
|
|
658
668
|
* @throws {RequiredError}
|
|
659
669
|
*/
|
|
660
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId, languageCode, returnDefaultValue, options) {
|
|
670
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
661
671
|
return __awaiter(this, void 0, void 0, function () {
|
|
662
672
|
var localVarAxiosArgs;
|
|
663
673
|
return __generator(this, function (_a) {
|
|
664
674
|
switch (_a.label) {
|
|
665
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId, languageCode, returnDefaultValue, options)];
|
|
675
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId, languageCode, returnDefaultValue, platformFaqLimit, options)];
|
|
666
676
|
case 1:
|
|
667
677
|
localVarAxiosArgs = _a.sent();
|
|
668
678
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -792,11 +802,12 @@ var SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
792
802
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
793
803
|
* @param {boolean} [returnDefaultValue]
|
|
794
804
|
* @param {string} [previewSecret]
|
|
805
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
795
806
|
* @param {*} [options] Override http request option.
|
|
796
807
|
* @throws {RequiredError}
|
|
797
808
|
*/
|
|
798
|
-
apiV2SpecialtytypesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, options) {
|
|
799
|
-
return localVarFp.apiV2SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, options).then(function (request) { return request(axios, basePath); });
|
|
809
|
+
apiV2SpecialtytypesSlugGet: function (slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options) {
|
|
810
|
+
return localVarFp.apiV2SpecialtytypesSlugGet(slug, languageCode, returnDefaultValue, previewSecret, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
800
811
|
},
|
|
801
812
|
/**
|
|
802
813
|
*
|
|
@@ -804,11 +815,12 @@ var SpecialtyTypesApiFactory = function (configuration, basePath, axios) {
|
|
|
804
815
|
* @param {string} specialtyTypeId
|
|
805
816
|
* @param {string} [languageCode] Language code. Accepts either `en` (ISO 639-1 two-letter) or `en-US` (locale) format.
|
|
806
817
|
* @param {boolean} [returnDefaultValue]
|
|
818
|
+
* @param {number} [platformFaqLimit] Number of platform FAQ items to return (1-200, default 6).
|
|
807
819
|
* @param {*} [options] Override http request option.
|
|
808
820
|
* @throws {RequiredError}
|
|
809
821
|
*/
|
|
810
|
-
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId, languageCode, returnDefaultValue, options) {
|
|
811
|
-
return localVarFp.apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId, languageCode, returnDefaultValue, options).then(function (request) { return request(axios, basePath); });
|
|
822
|
+
apiV2SpecialtytypesSpecialtyTypeIdGet: function (specialtyTypeId, languageCode, returnDefaultValue, platformFaqLimit, options) {
|
|
823
|
+
return localVarFp.apiV2SpecialtytypesSpecialtyTypeIdGet(specialtyTypeId, languageCode, returnDefaultValue, platformFaqLimit, options).then(function (request) { return request(axios, basePath); });
|
|
812
824
|
},
|
|
813
825
|
/**
|
|
814
826
|
*
|
|
@@ -900,7 +912,7 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
|
|
|
900
912
|
*/
|
|
901
913
|
SpecialtyTypesApi.prototype.apiV2SpecialtytypesSlugGet = function (requestParameters, options) {
|
|
902
914
|
var _this = this;
|
|
903
|
-
return (0, exports.SpecialtyTypesApiFp)(this.configuration).apiV2SpecialtytypesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
915
|
+
return (0, exports.SpecialtyTypesApiFp)(this.configuration).apiV2SpecialtytypesSlugGet(requestParameters.slug, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.previewSecret, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
904
916
|
};
|
|
905
917
|
/**
|
|
906
918
|
*
|
|
@@ -912,7 +924,7 @@ var SpecialtyTypesApi = /** @class */ (function (_super) {
|
|
|
912
924
|
*/
|
|
913
925
|
SpecialtyTypesApi.prototype.apiV2SpecialtytypesSpecialtyTypeIdGet = function (requestParameters, options) {
|
|
914
926
|
var _this = this;
|
|
915
|
-
return (0, exports.SpecialtyTypesApiFp)(this.configuration).apiV2SpecialtytypesSpecialtyTypeIdGet(requestParameters.specialtyTypeId, requestParameters.languageCode, requestParameters.returnDefaultValue, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
927
|
+
return (0, exports.SpecialtyTypesApiFp)(this.configuration).apiV2SpecialtytypesSpecialtyTypeIdGet(requestParameters.specialtyTypeId, requestParameters.languageCode, requestParameters.returnDefaultValue, requestParameters.platformFaqLimit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
916
928
|
};
|
|
917
929
|
/**
|
|
918
930
|
*
|