ch-admin-api-client-typescript 2.5.5 → 2.5.7
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.d.ts +158 -38
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +56 -28
- package/package.json +1 -1
- package/src/api.ts +187 -51
package/lib/api.js
CHANGED
|
@@ -6153,13 +6153,14 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
6153
6153
|
* @param {boolean} [isOpen]
|
|
6154
6154
|
* @param {boolean} [isCompleted]
|
|
6155
6155
|
* @param {ConsultationStatus} [status]
|
|
6156
|
+
* @param {ConsultationType} [consultationType]
|
|
6156
6157
|
* @param {number} [page]
|
|
6157
6158
|
* @param {number} [limit]
|
|
6158
6159
|
* @param {Date} [lastRetrieved]
|
|
6159
6160
|
* @param {*} [options] Override http request option.
|
|
6160
6161
|
* @throws {RequiredError}
|
|
6161
6162
|
*/
|
|
6162
|
-
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options) {
|
|
6163
|
+
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options) {
|
|
6163
6164
|
if (options === void 0) { options = {}; }
|
|
6164
6165
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6165
6166
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6193,6 +6194,9 @@ exports.ConsultationsApiAxiosParamCreator = function (configuration) {
|
|
|
6193
6194
|
if (status !== undefined) {
|
|
6194
6195
|
localVarQueryParameter['Status'] = status;
|
|
6195
6196
|
}
|
|
6197
|
+
if (consultationType !== undefined) {
|
|
6198
|
+
localVarQueryParameter['ConsultationType'] = consultationType;
|
|
6199
|
+
}
|
|
6196
6200
|
if (page !== undefined) {
|
|
6197
6201
|
localVarQueryParameter['page'] = page;
|
|
6198
6202
|
}
|
|
@@ -6333,18 +6337,19 @@ exports.ConsultationsApiFp = function (configuration) {
|
|
|
6333
6337
|
* @param {boolean} [isOpen]
|
|
6334
6338
|
* @param {boolean} [isCompleted]
|
|
6335
6339
|
* @param {ConsultationStatus} [status]
|
|
6340
|
+
* @param {ConsultationType} [consultationType]
|
|
6336
6341
|
* @param {number} [page]
|
|
6337
6342
|
* @param {number} [limit]
|
|
6338
6343
|
* @param {Date} [lastRetrieved]
|
|
6339
6344
|
* @param {*} [options] Override http request option.
|
|
6340
6345
|
* @throws {RequiredError}
|
|
6341
6346
|
*/
|
|
6342
|
-
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options) {
|
|
6347
|
+
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options) {
|
|
6343
6348
|
return __awaiter(this, void 0, void 0, function () {
|
|
6344
6349
|
var localVarAxiosArgs;
|
|
6345
6350
|
return __generator(this, function (_a) {
|
|
6346
6351
|
switch (_a.label) {
|
|
6347
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options)];
|
|
6352
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options)];
|
|
6348
6353
|
case 1:
|
|
6349
6354
|
localVarAxiosArgs = _a.sent();
|
|
6350
6355
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -6420,14 +6425,15 @@ exports.ConsultationsApiFactory = function (configuration, basePath, axios) {
|
|
|
6420
6425
|
* @param {boolean} [isOpen]
|
|
6421
6426
|
* @param {boolean} [isCompleted]
|
|
6422
6427
|
* @param {ConsultationStatus} [status]
|
|
6428
|
+
* @param {ConsultationType} [consultationType]
|
|
6423
6429
|
* @param {number} [page]
|
|
6424
6430
|
* @param {number} [limit]
|
|
6425
6431
|
* @param {Date} [lastRetrieved]
|
|
6426
6432
|
* @param {*} [options] Override http request option.
|
|
6427
6433
|
* @throws {RequiredError}
|
|
6428
6434
|
*/
|
|
6429
|
-
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options) {
|
|
6430
|
-
return localVarFp.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
6435
|
+
apiV1ConsultationsGet: function (searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options) {
|
|
6436
|
+
return localVarFp.apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
6431
6437
|
},
|
|
6432
6438
|
};
|
|
6433
6439
|
};
|
|
@@ -6511,6 +6517,7 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
6511
6517
|
* @param {boolean} [isOpen]
|
|
6512
6518
|
* @param {boolean} [isCompleted]
|
|
6513
6519
|
* @param {ConsultationStatus} [status]
|
|
6520
|
+
* @param {ConsultationType} [consultationType]
|
|
6514
6521
|
* @param {number} [page]
|
|
6515
6522
|
* @param {number} [limit]
|
|
6516
6523
|
* @param {Date} [lastRetrieved]
|
|
@@ -6518,9 +6525,9 @@ var ConsultationsApi = /** @class */ (function (_super) {
|
|
|
6518
6525
|
* @throws {RequiredError}
|
|
6519
6526
|
* @memberof ConsultationsApi
|
|
6520
6527
|
*/
|
|
6521
|
-
ConsultationsApi.prototype.apiV1ConsultationsGet = function (searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options) {
|
|
6528
|
+
ConsultationsApi.prototype.apiV1ConsultationsGet = function (searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options) {
|
|
6522
6529
|
var _this = this;
|
|
6523
|
-
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6530
|
+
return exports.ConsultationsApiFp(this.configuration).apiV1ConsultationsGet(searchString, isOpen, isCompleted, status, consultationType, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
6524
6531
|
};
|
|
6525
6532
|
return ConsultationsApi;
|
|
6526
6533
|
}(base_1.BaseAPI));
|
|
@@ -6939,9 +6946,9 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6939
6946
|
* @param {string} [email]
|
|
6940
6947
|
* @param {string} [description]
|
|
6941
6948
|
* @param {string} [website]
|
|
6942
|
-
* @param {string} [languageCode]
|
|
6943
6949
|
* @param {string} [hospitalId]
|
|
6944
6950
|
* @param {boolean} [interviewerOnly]
|
|
6951
|
+
* @param {string} [languageCode]
|
|
6945
6952
|
* @param {boolean} [showHidden]
|
|
6946
6953
|
* @param {number} [page]
|
|
6947
6954
|
* @param {number} [limit]
|
|
@@ -6949,7 +6956,7 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6949
6956
|
* @param {*} [options] Override http request option.
|
|
6950
6957
|
* @throws {RequiredError}
|
|
6951
6958
|
*/
|
|
6952
|
-
apiV1ContributorsGet: function (id, name, email, description, website,
|
|
6959
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
6953
6960
|
if (options === void 0) { options = {}; }
|
|
6954
6961
|
return __awaiter(_this, void 0, void 0, function () {
|
|
6955
6962
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -6986,15 +6993,15 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
6986
6993
|
if (website !== undefined) {
|
|
6987
6994
|
localVarQueryParameter['Website'] = website;
|
|
6988
6995
|
}
|
|
6989
|
-
if (languageCode !== undefined) {
|
|
6990
|
-
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
6991
|
-
}
|
|
6992
6996
|
if (hospitalId !== undefined) {
|
|
6993
6997
|
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
6994
6998
|
}
|
|
6995
6999
|
if (interviewerOnly !== undefined) {
|
|
6996
7000
|
localVarQueryParameter['InterviewerOnly'] = interviewerOnly;
|
|
6997
7001
|
}
|
|
7002
|
+
if (languageCode !== undefined) {
|
|
7003
|
+
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
7004
|
+
}
|
|
6998
7005
|
if (showHidden !== undefined) {
|
|
6999
7006
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
7000
7007
|
}
|
|
@@ -7300,9 +7307,9 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
7300
7307
|
* @param {string} [email]
|
|
7301
7308
|
* @param {string} [description]
|
|
7302
7309
|
* @param {string} [website]
|
|
7303
|
-
* @param {string} [languageCode]
|
|
7304
7310
|
* @param {string} [hospitalId]
|
|
7305
7311
|
* @param {boolean} [interviewerOnly]
|
|
7312
|
+
* @param {string} [languageCode]
|
|
7306
7313
|
* @param {boolean} [showHidden]
|
|
7307
7314
|
* @param {number} [page]
|
|
7308
7315
|
* @param {number} [limit]
|
|
@@ -7310,12 +7317,12 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
7310
7317
|
* @param {*} [options] Override http request option.
|
|
7311
7318
|
* @throws {RequiredError}
|
|
7312
7319
|
*/
|
|
7313
|
-
apiV1ContributorsGet: function (id, name, email, description, website,
|
|
7320
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7314
7321
|
return __awaiter(this, void 0, void 0, function () {
|
|
7315
7322
|
var localVarAxiosArgs;
|
|
7316
7323
|
return __generator(this, function (_a) {
|
|
7317
7324
|
switch (_a.label) {
|
|
7318
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, description, website,
|
|
7325
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
7319
7326
|
case 1:
|
|
7320
7327
|
localVarAxiosArgs = _a.sent();
|
|
7321
7328
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -7475,9 +7482,9 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7475
7482
|
* @param {string} [email]
|
|
7476
7483
|
* @param {string} [description]
|
|
7477
7484
|
* @param {string} [website]
|
|
7478
|
-
* @param {string} [languageCode]
|
|
7479
7485
|
* @param {string} [hospitalId]
|
|
7480
7486
|
* @param {boolean} [interviewerOnly]
|
|
7487
|
+
* @param {string} [languageCode]
|
|
7481
7488
|
* @param {boolean} [showHidden]
|
|
7482
7489
|
* @param {number} [page]
|
|
7483
7490
|
* @param {number} [limit]
|
|
@@ -7485,8 +7492,8 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
7485
7492
|
* @param {*} [options] Override http request option.
|
|
7486
7493
|
* @throws {RequiredError}
|
|
7487
7494
|
*/
|
|
7488
|
-
apiV1ContributorsGet: function (id, name, email, description, website,
|
|
7489
|
-
return localVarFp.apiV1ContributorsGet(id, name, email, description, website,
|
|
7495
|
+
apiV1ContributorsGet: function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7496
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
7490
7497
|
},
|
|
7491
7498
|
/**
|
|
7492
7499
|
*
|
|
@@ -7640,9 +7647,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7640
7647
|
* @param {string} [email]
|
|
7641
7648
|
* @param {string} [description]
|
|
7642
7649
|
* @param {string} [website]
|
|
7643
|
-
* @param {string} [languageCode]
|
|
7644
7650
|
* @param {string} [hospitalId]
|
|
7645
7651
|
* @param {boolean} [interviewerOnly]
|
|
7652
|
+
* @param {string} [languageCode]
|
|
7646
7653
|
* @param {boolean} [showHidden]
|
|
7647
7654
|
* @param {number} [page]
|
|
7648
7655
|
* @param {number} [limit]
|
|
@@ -7651,9 +7658,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
7651
7658
|
* @throws {RequiredError}
|
|
7652
7659
|
* @memberof ContributorsApi
|
|
7653
7660
|
*/
|
|
7654
|
-
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, description, website,
|
|
7661
|
+
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
7655
7662
|
var _this = this;
|
|
7656
|
-
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, description, website,
|
|
7663
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, description, website, hospitalId, interviewerOnly, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
7657
7664
|
};
|
|
7658
7665
|
/**
|
|
7659
7666
|
*
|
|
@@ -15825,14 +15832,17 @@ exports.FaqsApiAxiosParamCreator = function (configuration) {
|
|
|
15825
15832
|
* @param {string} [title]
|
|
15826
15833
|
* @param {string} [content]
|
|
15827
15834
|
* @param {string} [categoryId]
|
|
15835
|
+
* @param {string} [hospitalId]
|
|
15836
|
+
* @param {string} [hospitalName]
|
|
15828
15837
|
* @param {string} [languageCode]
|
|
15838
|
+
* @param {boolean} [showHidden]
|
|
15829
15839
|
* @param {number} [page]
|
|
15830
15840
|
* @param {number} [limit]
|
|
15831
15841
|
* @param {Date} [lastRetrieved]
|
|
15832
15842
|
* @param {*} [options] Override http request option.
|
|
15833
15843
|
* @throws {RequiredError}
|
|
15834
15844
|
*/
|
|
15835
|
-
apiV1FaqsGet: function (id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options) {
|
|
15845
|
+
apiV1FaqsGet: function (id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
15836
15846
|
if (options === void 0) { options = {}; }
|
|
15837
15847
|
return __awaiter(_this, void 0, void 0, function () {
|
|
15838
15848
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -15866,9 +15876,18 @@ exports.FaqsApiAxiosParamCreator = function (configuration) {
|
|
|
15866
15876
|
if (categoryId !== undefined) {
|
|
15867
15877
|
localVarQueryParameter['CategoryId'] = categoryId;
|
|
15868
15878
|
}
|
|
15879
|
+
if (hospitalId !== undefined) {
|
|
15880
|
+
localVarQueryParameter['HospitalId'] = hospitalId;
|
|
15881
|
+
}
|
|
15882
|
+
if (hospitalName !== undefined) {
|
|
15883
|
+
localVarQueryParameter['HospitalName'] = hospitalName;
|
|
15884
|
+
}
|
|
15869
15885
|
if (languageCode !== undefined) {
|
|
15870
15886
|
localVarQueryParameter['LanguageCode'] = languageCode;
|
|
15871
15887
|
}
|
|
15888
|
+
if (showHidden !== undefined) {
|
|
15889
|
+
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
15890
|
+
}
|
|
15872
15891
|
if (page !== undefined) {
|
|
15873
15892
|
localVarQueryParameter['page'] = page;
|
|
15874
15893
|
}
|
|
@@ -16168,19 +16187,22 @@ exports.FaqsApiFp = function (configuration) {
|
|
|
16168
16187
|
* @param {string} [title]
|
|
16169
16188
|
* @param {string} [content]
|
|
16170
16189
|
* @param {string} [categoryId]
|
|
16190
|
+
* @param {string} [hospitalId]
|
|
16191
|
+
* @param {string} [hospitalName]
|
|
16171
16192
|
* @param {string} [languageCode]
|
|
16193
|
+
* @param {boolean} [showHidden]
|
|
16172
16194
|
* @param {number} [page]
|
|
16173
16195
|
* @param {number} [limit]
|
|
16174
16196
|
* @param {Date} [lastRetrieved]
|
|
16175
16197
|
* @param {*} [options] Override http request option.
|
|
16176
16198
|
* @throws {RequiredError}
|
|
16177
16199
|
*/
|
|
16178
|
-
apiV1FaqsGet: function (id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options) {
|
|
16200
|
+
apiV1FaqsGet: function (id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16179
16201
|
return __awaiter(this, void 0, void 0, function () {
|
|
16180
16202
|
var localVarAxiosArgs;
|
|
16181
16203
|
return __generator(this, function (_a) {
|
|
16182
16204
|
switch (_a.label) {
|
|
16183
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1FaqsGet(id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options)];
|
|
16205
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
16184
16206
|
case 1:
|
|
16185
16207
|
localVarAxiosArgs = _a.sent();
|
|
16186
16208
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -16337,15 +16359,18 @@ exports.FaqsApiFactory = function (configuration, basePath, axios) {
|
|
|
16337
16359
|
* @param {string} [title]
|
|
16338
16360
|
* @param {string} [content]
|
|
16339
16361
|
* @param {string} [categoryId]
|
|
16362
|
+
* @param {string} [hospitalId]
|
|
16363
|
+
* @param {string} [hospitalName]
|
|
16340
16364
|
* @param {string} [languageCode]
|
|
16365
|
+
* @param {boolean} [showHidden]
|
|
16341
16366
|
* @param {number} [page]
|
|
16342
16367
|
* @param {number} [limit]
|
|
16343
16368
|
* @param {Date} [lastRetrieved]
|
|
16344
16369
|
* @param {*} [options] Override http request option.
|
|
16345
16370
|
* @throws {RequiredError}
|
|
16346
16371
|
*/
|
|
16347
|
-
apiV1FaqsGet: function (id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options) {
|
|
16348
|
-
return localVarFp.apiV1FaqsGet(id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
16372
|
+
apiV1FaqsGet: function (id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16373
|
+
return localVarFp.apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
16349
16374
|
},
|
|
16350
16375
|
/**
|
|
16351
16376
|
*
|
|
@@ -16496,7 +16521,10 @@ var FaqsApi = /** @class */ (function (_super) {
|
|
|
16496
16521
|
* @param {string} [title]
|
|
16497
16522
|
* @param {string} [content]
|
|
16498
16523
|
* @param {string} [categoryId]
|
|
16524
|
+
* @param {string} [hospitalId]
|
|
16525
|
+
* @param {string} [hospitalName]
|
|
16499
16526
|
* @param {string} [languageCode]
|
|
16527
|
+
* @param {boolean} [showHidden]
|
|
16500
16528
|
* @param {number} [page]
|
|
16501
16529
|
* @param {number} [limit]
|
|
16502
16530
|
* @param {Date} [lastRetrieved]
|
|
@@ -16504,9 +16532,9 @@ var FaqsApi = /** @class */ (function (_super) {
|
|
|
16504
16532
|
* @throws {RequiredError}
|
|
16505
16533
|
* @memberof FaqsApi
|
|
16506
16534
|
*/
|
|
16507
|
-
FaqsApi.prototype.apiV1FaqsGet = function (id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options) {
|
|
16535
|
+
FaqsApi.prototype.apiV1FaqsGet = function (id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
16508
16536
|
var _this = this;
|
|
16509
|
-
return exports.FaqsApiFp(this.configuration).apiV1FaqsGet(id, title, content, categoryId, languageCode, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16537
|
+
return exports.FaqsApiFp(this.configuration).apiV1FaqsGet(id, title, content, categoryId, hospitalId, hospitalName, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
16510
16538
|
};
|
|
16511
16539
|
/**
|
|
16512
16540
|
*
|