ch-admin-api-client-typescript 4.1.8 → 4.2.2
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 +12 -74
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +18 -32
- package/package.json +1 -1
- package/src/api.ts +18 -88
package/lib/api.js
CHANGED
|
@@ -2166,14 +2166,13 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2166
2166
|
* @param {ContributionType} [contributionType]
|
|
2167
2167
|
* @param {string} [languageCode]
|
|
2168
2168
|
* @param {boolean} [showHidden]
|
|
2169
|
-
* @param {boolean} [inbound]
|
|
2170
2169
|
* @param {number} [page]
|
|
2171
2170
|
* @param {number} [limit]
|
|
2172
2171
|
* @param {Date} [lastRetrieved]
|
|
2173
2172
|
* @param {*} [options] Override http request option.
|
|
2174
2173
|
* @throws {RequiredError}
|
|
2175
2174
|
*/
|
|
2176
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
2175
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2177
2176
|
if (options === void 0) { options = {}; }
|
|
2178
2177
|
return __awaiter(_this, void 0, void 0, function () {
|
|
2179
2178
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -2222,9 +2221,6 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2222
2221
|
if (showHidden !== undefined) {
|
|
2223
2222
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
2224
2223
|
}
|
|
2225
|
-
if (inbound !== undefined) {
|
|
2226
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
2227
|
-
}
|
|
2228
2224
|
if (page !== undefined) {
|
|
2229
2225
|
localVarQueryParameter['page'] = page;
|
|
2230
2226
|
}
|
|
@@ -3430,19 +3426,18 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
3430
3426
|
* @param {ContributionType} [contributionType]
|
|
3431
3427
|
* @param {string} [languageCode]
|
|
3432
3428
|
* @param {boolean} [showHidden]
|
|
3433
|
-
* @param {boolean} [inbound]
|
|
3434
3429
|
* @param {number} [page]
|
|
3435
3430
|
* @param {number} [limit]
|
|
3436
3431
|
* @param {Date} [lastRetrieved]
|
|
3437
3432
|
* @param {*} [options] Override http request option.
|
|
3438
3433
|
* @throws {RequiredError}
|
|
3439
3434
|
*/
|
|
3440
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
3435
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
3441
3436
|
return __awaiter(this, void 0, void 0, function () {
|
|
3442
3437
|
var localVarAxiosArgs;
|
|
3443
3438
|
return __generator(this, function (_a) {
|
|
3444
3439
|
switch (_a.label) {
|
|
3445
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
3440
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
3446
3441
|
case 1:
|
|
3447
3442
|
localVarAxiosArgs = _a.sent();
|
|
3448
3443
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -3974,15 +3969,14 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
3974
3969
|
* @param {ContributionType} [contributionType]
|
|
3975
3970
|
* @param {string} [languageCode]
|
|
3976
3971
|
* @param {boolean} [showHidden]
|
|
3977
|
-
* @param {boolean} [inbound]
|
|
3978
3972
|
* @param {number} [page]
|
|
3979
3973
|
* @param {number} [limit]
|
|
3980
3974
|
* @param {Date} [lastRetrieved]
|
|
3981
3975
|
* @param {*} [options] Override http request option.
|
|
3982
3976
|
* @throws {RequiredError}
|
|
3983
3977
|
*/
|
|
3984
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
3985
|
-
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
3978
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
3979
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
3986
3980
|
},
|
|
3987
3981
|
/**
|
|
3988
3982
|
*
|
|
@@ -4308,7 +4302,6 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4308
4302
|
* @param {ContributionType} [contributionType]
|
|
4309
4303
|
* @param {string} [languageCode]
|
|
4310
4304
|
* @param {boolean} [showHidden]
|
|
4311
|
-
* @param {boolean} [inbound]
|
|
4312
4305
|
* @param {number} [page]
|
|
4313
4306
|
* @param {number} [limit]
|
|
4314
4307
|
* @param {Date} [lastRetrieved]
|
|
@@ -4316,9 +4309,9 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4316
4309
|
* @throws {RequiredError}
|
|
4317
4310
|
* @memberof ArticlesApi
|
|
4318
4311
|
*/
|
|
4319
|
-
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
4312
|
+
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4320
4313
|
var _this = this;
|
|
4321
|
-
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
4314
|
+
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4322
4315
|
};
|
|
4323
4316
|
/**
|
|
4324
4317
|
*
|
|
@@ -8554,14 +8547,13 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
8554
8547
|
* @param {boolean} [showHidden]
|
|
8555
8548
|
* @param {string} [languageCode]
|
|
8556
8549
|
* @param {boolean} [returnDefaultValue]
|
|
8557
|
-
* @param {boolean} [inbound]
|
|
8558
8550
|
* @param {number} [page]
|
|
8559
8551
|
* @param {number} [limit]
|
|
8560
8552
|
* @param {Date} [lastRetrieved]
|
|
8561
8553
|
* @param {*} [options] Override http request option.
|
|
8562
8554
|
* @throws {RequiredError}
|
|
8563
8555
|
*/
|
|
8564
|
-
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
8556
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
8565
8557
|
if (options === void 0) { options = {}; }
|
|
8566
8558
|
return __awaiter(_this, void 0, void 0, function () {
|
|
8567
8559
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -8610,9 +8602,6 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
8610
8602
|
if (returnDefaultValue !== undefined) {
|
|
8611
8603
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
8612
8604
|
}
|
|
8613
|
-
if (inbound !== undefined) {
|
|
8614
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
8615
|
-
}
|
|
8616
8605
|
if (page !== undefined) {
|
|
8617
8606
|
localVarQueryParameter['page'] = page;
|
|
8618
8607
|
}
|
|
@@ -8924,19 +8913,18 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
8924
8913
|
* @param {boolean} [showHidden]
|
|
8925
8914
|
* @param {string} [languageCode]
|
|
8926
8915
|
* @param {boolean} [returnDefaultValue]
|
|
8927
|
-
* @param {boolean} [inbound]
|
|
8928
8916
|
* @param {number} [page]
|
|
8929
8917
|
* @param {number} [limit]
|
|
8930
8918
|
* @param {Date} [lastRetrieved]
|
|
8931
8919
|
* @param {*} [options] Override http request option.
|
|
8932
8920
|
* @throws {RequiredError}
|
|
8933
8921
|
*/
|
|
8934
|
-
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
8922
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
8935
8923
|
return __awaiter(this, void 0, void 0, function () {
|
|
8936
8924
|
var localVarAxiosArgs;
|
|
8937
8925
|
return __generator(this, function (_a) {
|
|
8938
8926
|
switch (_a.label) {
|
|
8939
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
8927
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
8940
8928
|
case 1:
|
|
8941
8929
|
localVarAxiosArgs = _a.sent();
|
|
8942
8930
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -9102,15 +9090,14 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
9102
9090
|
* @param {boolean} [showHidden]
|
|
9103
9091
|
* @param {string} [languageCode]
|
|
9104
9092
|
* @param {boolean} [returnDefaultValue]
|
|
9105
|
-
* @param {boolean} [inbound]
|
|
9106
9093
|
* @param {number} [page]
|
|
9107
9094
|
* @param {number} [limit]
|
|
9108
9095
|
* @param {Date} [lastRetrieved]
|
|
9109
9096
|
* @param {*} [options] Override http request option.
|
|
9110
9097
|
* @throws {RequiredError}
|
|
9111
9098
|
*/
|
|
9112
|
-
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
9113
|
-
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
9099
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
9100
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
9114
9101
|
},
|
|
9115
9102
|
/**
|
|
9116
9103
|
*
|
|
@@ -9270,7 +9257,6 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
9270
9257
|
* @param {boolean} [showHidden]
|
|
9271
9258
|
* @param {string} [languageCode]
|
|
9272
9259
|
* @param {boolean} [returnDefaultValue]
|
|
9273
|
-
* @param {boolean} [inbound]
|
|
9274
9260
|
* @param {number} [page]
|
|
9275
9261
|
* @param {number} [limit]
|
|
9276
9262
|
* @param {Date} [lastRetrieved]
|
|
@@ -9278,9 +9264,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
9278
9264
|
* @throws {RequiredError}
|
|
9279
9265
|
* @memberof ContributorsApi
|
|
9280
9266
|
*/
|
|
9281
|
-
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
9267
|
+
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
9282
9268
|
var _this = this;
|
|
9283
|
-
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
9269
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9284
9270
|
};
|
|
9285
9271
|
/**
|
|
9286
9272
|
*
|
|
@@ -13095,7 +13081,7 @@ exports.DoctorAffiliationsApiAxiosParamCreator = function (configuration) {
|
|
|
13095
13081
|
},
|
|
13096
13082
|
/**
|
|
13097
13083
|
*
|
|
13098
|
-
* @summary Update
|
|
13084
|
+
* @summary Update doctor affiliation.
|
|
13099
13085
|
* @param {string} id
|
|
13100
13086
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
13101
13087
|
* @param {*} [options] Override http request option.
|
|
@@ -13372,7 +13358,7 @@ exports.DoctorAffiliationsApiFp = function (configuration) {
|
|
|
13372
13358
|
},
|
|
13373
13359
|
/**
|
|
13374
13360
|
*
|
|
13375
|
-
* @summary Update
|
|
13361
|
+
* @summary Update doctor affiliation.
|
|
13376
13362
|
* @param {string} id
|
|
13377
13363
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
13378
13364
|
* @param {*} [options] Override http request option.
|
|
@@ -13522,7 +13508,7 @@ exports.DoctorAffiliationsApiFactory = function (configuration, basePath, axios)
|
|
|
13522
13508
|
},
|
|
13523
13509
|
/**
|
|
13524
13510
|
*
|
|
13525
|
-
* @summary Update
|
|
13511
|
+
* @summary Update doctor affiliation.
|
|
13526
13512
|
* @param {string} id
|
|
13527
13513
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
13528
13514
|
* @param {*} [options] Override http request option.
|
|
@@ -13672,7 +13658,7 @@ var DoctorAffiliationsApi = /** @class */ (function (_super) {
|
|
|
13672
13658
|
};
|
|
13673
13659
|
/**
|
|
13674
13660
|
*
|
|
13675
|
-
* @summary Update
|
|
13661
|
+
* @summary Update doctor affiliation.
|
|
13676
13662
|
* @param {string} id
|
|
13677
13663
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
13678
13664
|
* @param {*} [options] Override http request option.
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -7462,18 +7462,6 @@ export interface HospitalEquipmentItemModel {
|
|
|
7462
7462
|
* @memberof HospitalEquipmentItemModel
|
|
7463
7463
|
*/
|
|
7464
7464
|
'description'?: string | null;
|
|
7465
|
-
/**
|
|
7466
|
-
*
|
|
7467
|
-
* @type {string}
|
|
7468
|
-
* @memberof HospitalEquipmentItemModel
|
|
7469
|
-
*/
|
|
7470
|
-
'hospitalId'?: string;
|
|
7471
|
-
/**
|
|
7472
|
-
*
|
|
7473
|
-
* @type {string}
|
|
7474
|
-
* @memberof HospitalEquipmentItemModel
|
|
7475
|
-
*/
|
|
7476
|
-
'hospitalName'?: string | null;
|
|
7477
7465
|
/**
|
|
7478
7466
|
*
|
|
7479
7467
|
* @type {Array<MediaModel>}
|
|
@@ -7511,18 +7499,6 @@ export interface HospitalEquipmentModel {
|
|
|
7511
7499
|
* @memberof HospitalEquipmentModel
|
|
7512
7500
|
*/
|
|
7513
7501
|
'description'?: string | null;
|
|
7514
|
-
/**
|
|
7515
|
-
*
|
|
7516
|
-
* @type {string}
|
|
7517
|
-
* @memberof HospitalEquipmentModel
|
|
7518
|
-
*/
|
|
7519
|
-
'hospitalId'?: string;
|
|
7520
|
-
/**
|
|
7521
|
-
*
|
|
7522
|
-
* @type {string}
|
|
7523
|
-
* @memberof HospitalEquipmentModel
|
|
7524
|
-
*/
|
|
7525
|
-
'hospitalName'?: string | null;
|
|
7526
7502
|
/**
|
|
7527
7503
|
*
|
|
7528
7504
|
* @type {Array<MediaModel>}
|
|
@@ -7567,18 +7543,6 @@ export interface HospitalEvaluationItemModel {
|
|
|
7567
7543
|
* @memberof HospitalEvaluationItemModel
|
|
7568
7544
|
*/
|
|
7569
7545
|
'id'?: string;
|
|
7570
|
-
/**
|
|
7571
|
-
*
|
|
7572
|
-
* @type {string}
|
|
7573
|
-
* @memberof HospitalEvaluationItemModel
|
|
7574
|
-
*/
|
|
7575
|
-
'hospitalId'?: string;
|
|
7576
|
-
/**
|
|
7577
|
-
*
|
|
7578
|
-
* @type {string}
|
|
7579
|
-
* @memberof HospitalEvaluationItemModel
|
|
7580
|
-
*/
|
|
7581
|
-
'hospitalName'?: string | null;
|
|
7582
7546
|
/**
|
|
7583
7547
|
*
|
|
7584
7548
|
* @type {string}
|
|
@@ -7616,18 +7580,6 @@ export interface HospitalEvaluationModel {
|
|
|
7616
7580
|
* @memberof HospitalEvaluationModel
|
|
7617
7581
|
*/
|
|
7618
7582
|
'id'?: string;
|
|
7619
|
-
/**
|
|
7620
|
-
*
|
|
7621
|
-
* @type {string}
|
|
7622
|
-
* @memberof HospitalEvaluationModel
|
|
7623
|
-
*/
|
|
7624
|
-
'hospitalId'?: string;
|
|
7625
|
-
/**
|
|
7626
|
-
*
|
|
7627
|
-
* @type {string}
|
|
7628
|
-
* @memberof HospitalEvaluationModel
|
|
7629
|
-
*/
|
|
7630
|
-
'hospitalName'?: string | null;
|
|
7631
7583
|
/**
|
|
7632
7584
|
*
|
|
7633
7585
|
* @type {string}
|
|
@@ -12873,12 +12825,6 @@ export interface UpdateHospitalEquipmentCommand {
|
|
|
12873
12825
|
* @memberof UpdateHospitalEquipmentCommand
|
|
12874
12826
|
*/
|
|
12875
12827
|
'description'?: string | null;
|
|
12876
|
-
/**
|
|
12877
|
-
*
|
|
12878
|
-
* @type {string}
|
|
12879
|
-
* @memberof UpdateHospitalEquipmentCommand
|
|
12880
|
-
*/
|
|
12881
|
-
'hospitalName'?: string | null;
|
|
12882
12828
|
/**
|
|
12883
12829
|
*
|
|
12884
12830
|
* @type {Array<MediaModel>}
|
|
@@ -15589,14 +15535,13 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15589
15535
|
* @param {ContributionType} [contributionType]
|
|
15590
15536
|
* @param {string} [languageCode]
|
|
15591
15537
|
* @param {boolean} [showHidden]
|
|
15592
|
-
* @param {boolean} [inbound]
|
|
15593
15538
|
* @param {number} [page]
|
|
15594
15539
|
* @param {number} [limit]
|
|
15595
15540
|
* @param {Date} [lastRetrieved]
|
|
15596
15541
|
* @param {*} [options] Override http request option.
|
|
15597
15542
|
* @throws {RequiredError}
|
|
15598
15543
|
*/
|
|
15599
|
-
apiV1ArticlesArticleIdContributorsGet: async (articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
15544
|
+
apiV1ArticlesArticleIdContributorsGet: async (articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15600
15545
|
// verify required parameter 'articleId' is not null or undefined
|
|
15601
15546
|
assertParamExists('apiV1ArticlesArticleIdContributorsGet', 'articleId', articleId)
|
|
15602
15547
|
const localVarPath = `/api/v1/articles/{articleId}/contributors`
|
|
@@ -15648,10 +15593,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15648
15593
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
15649
15594
|
}
|
|
15650
15595
|
|
|
15651
|
-
if (inbound !== undefined) {
|
|
15652
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
15653
|
-
}
|
|
15654
|
-
|
|
15655
15596
|
if (page !== undefined) {
|
|
15656
15597
|
localVarQueryParameter['page'] = page;
|
|
15657
15598
|
}
|
|
@@ -16772,15 +16713,14 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
16772
16713
|
* @param {ContributionType} [contributionType]
|
|
16773
16714
|
* @param {string} [languageCode]
|
|
16774
16715
|
* @param {boolean} [showHidden]
|
|
16775
|
-
* @param {boolean} [inbound]
|
|
16776
16716
|
* @param {number} [page]
|
|
16777
16717
|
* @param {number} [limit]
|
|
16778
16718
|
* @param {Date} [lastRetrieved]
|
|
16779
16719
|
* @param {*} [options] Override http request option.
|
|
16780
16720
|
* @throws {RequiredError}
|
|
16781
16721
|
*/
|
|
16782
|
-
async apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
16783
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
16722
|
+
async apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleContributorsModel>> {
|
|
16723
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
16784
16724
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16785
16725
|
},
|
|
16786
16726
|
/**
|
|
@@ -17119,15 +17059,14 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
17119
17059
|
* @param {ContributionType} [contributionType]
|
|
17120
17060
|
* @param {string} [languageCode]
|
|
17121
17061
|
* @param {boolean} [showHidden]
|
|
17122
|
-
* @param {boolean} [inbound]
|
|
17123
17062
|
* @param {number} [page]
|
|
17124
17063
|
* @param {number} [limit]
|
|
17125
17064
|
* @param {Date} [lastRetrieved]
|
|
17126
17065
|
* @param {*} [options] Override http request option.
|
|
17127
17066
|
* @throws {RequiredError}
|
|
17128
17067
|
*/
|
|
17129
|
-
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
17130
|
-
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
17068
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticleContributorsModel> {
|
|
17069
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
17131
17070
|
},
|
|
17132
17071
|
/**
|
|
17133
17072
|
*
|
|
@@ -17450,7 +17389,6 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17450
17389
|
* @param {ContributionType} [contributionType]
|
|
17451
17390
|
* @param {string} [languageCode]
|
|
17452
17391
|
* @param {boolean} [showHidden]
|
|
17453
|
-
* @param {boolean} [inbound]
|
|
17454
17392
|
* @param {number} [page]
|
|
17455
17393
|
* @param {number} [limit]
|
|
17456
17394
|
* @param {Date} [lastRetrieved]
|
|
@@ -17458,8 +17396,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17458
17396
|
* @throws {RequiredError}
|
|
17459
17397
|
* @memberof ArticlesApi
|
|
17460
17398
|
*/
|
|
17461
|
-
public apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
17462
|
-
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden,
|
|
17399
|
+
public apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17400
|
+
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17463
17401
|
}
|
|
17464
17402
|
|
|
17465
17403
|
/**
|
|
@@ -21263,14 +21201,13 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21263
21201
|
* @param {boolean} [showHidden]
|
|
21264
21202
|
* @param {string} [languageCode]
|
|
21265
21203
|
* @param {boolean} [returnDefaultValue]
|
|
21266
|
-
* @param {boolean} [inbound]
|
|
21267
21204
|
* @param {number} [page]
|
|
21268
21205
|
* @param {number} [limit]
|
|
21269
21206
|
* @param {Date} [lastRetrieved]
|
|
21270
21207
|
* @param {*} [options] Override http request option.
|
|
21271
21208
|
* @throws {RequiredError}
|
|
21272
21209
|
*/
|
|
21273
|
-
apiV1ContributorsGet: async (id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
21210
|
+
apiV1ContributorsGet: async (id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
21274
21211
|
const localVarPath = `/api/v1/contributors`;
|
|
21275
21212
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21276
21213
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -21323,10 +21260,6 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21323
21260
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21324
21261
|
}
|
|
21325
21262
|
|
|
21326
|
-
if (inbound !== undefined) {
|
|
21327
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
21328
|
-
}
|
|
21329
|
-
|
|
21330
21263
|
if (page !== undefined) {
|
|
21331
21264
|
localVarQueryParameter['page'] = page;
|
|
21332
21265
|
}
|
|
@@ -21563,15 +21496,14 @@ export const ContributorsApiFp = function(configuration?: Configuration) {
|
|
|
21563
21496
|
* @param {boolean} [showHidden]
|
|
21564
21497
|
* @param {string} [languageCode]
|
|
21565
21498
|
* @param {boolean} [returnDefaultValue]
|
|
21566
|
-
* @param {boolean} [inbound]
|
|
21567
21499
|
* @param {number} [page]
|
|
21568
21500
|
* @param {number} [limit]
|
|
21569
21501
|
* @param {Date} [lastRetrieved]
|
|
21570
21502
|
* @param {*} [options] Override http request option.
|
|
21571
21503
|
* @throws {RequiredError}
|
|
21572
21504
|
*/
|
|
21573
|
-
async apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
21574
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
21505
|
+
async apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContributorsModel>> {
|
|
21506
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options);
|
|
21575
21507
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
21576
21508
|
},
|
|
21577
21509
|
/**
|
|
@@ -21715,15 +21647,14 @@ export const ContributorsApiFactory = function (configuration?: Configuration, b
|
|
|
21715
21647
|
* @param {boolean} [showHidden]
|
|
21716
21648
|
* @param {string} [languageCode]
|
|
21717
21649
|
* @param {boolean} [returnDefaultValue]
|
|
21718
|
-
* @param {boolean} [inbound]
|
|
21719
21650
|
* @param {number} [page]
|
|
21720
21651
|
* @param {number} [limit]
|
|
21721
21652
|
* @param {Date} [lastRetrieved]
|
|
21722
21653
|
* @param {*} [options] Override http request option.
|
|
21723
21654
|
* @throws {RequiredError}
|
|
21724
21655
|
*/
|
|
21725
|
-
apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
21726
|
-
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
21656
|
+
apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ContributorsModel> {
|
|
21657
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21727
21658
|
},
|
|
21728
21659
|
/**
|
|
21729
21660
|
*
|
|
@@ -21880,7 +21811,6 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21880
21811
|
* @param {boolean} [showHidden]
|
|
21881
21812
|
* @param {string} [languageCode]
|
|
21882
21813
|
* @param {boolean} [returnDefaultValue]
|
|
21883
|
-
* @param {boolean} [inbound]
|
|
21884
21814
|
* @param {number} [page]
|
|
21885
21815
|
* @param {number} [limit]
|
|
21886
21816
|
* @param {Date} [lastRetrieved]
|
|
@@ -21888,8 +21818,8 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21888
21818
|
* @throws {RequiredError}
|
|
21889
21819
|
* @memberof ContributorsApi
|
|
21890
21820
|
*/
|
|
21891
|
-
public apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
21892
|
-
return ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue,
|
|
21821
|
+
public apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
21822
|
+
return ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
21893
21823
|
}
|
|
21894
21824
|
|
|
21895
21825
|
/**
|
|
@@ -25345,7 +25275,7 @@ export const DoctorAffiliationsApiAxiosParamCreator = function (configuration?:
|
|
|
25345
25275
|
},
|
|
25346
25276
|
/**
|
|
25347
25277
|
*
|
|
25348
|
-
* @summary Update
|
|
25278
|
+
* @summary Update doctor affiliation.
|
|
25349
25279
|
* @param {string} id
|
|
25350
25280
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
25351
25281
|
* @param {*} [options] Override http request option.
|
|
@@ -25543,7 +25473,7 @@ export const DoctorAffiliationsApiFp = function(configuration?: Configuration) {
|
|
|
25543
25473
|
},
|
|
25544
25474
|
/**
|
|
25545
25475
|
*
|
|
25546
|
-
* @summary Update
|
|
25476
|
+
* @summary Update doctor affiliation.
|
|
25547
25477
|
* @param {string} id
|
|
25548
25478
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
25549
25479
|
* @param {*} [options] Override http request option.
|
|
@@ -25676,7 +25606,7 @@ export const DoctorAffiliationsApiFactory = function (configuration?: Configurat
|
|
|
25676
25606
|
},
|
|
25677
25607
|
/**
|
|
25678
25608
|
*
|
|
25679
|
-
* @summary Update
|
|
25609
|
+
* @summary Update doctor affiliation.
|
|
25680
25610
|
* @param {string} id
|
|
25681
25611
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
25682
25612
|
* @param {*} [options] Override http request option.
|
|
@@ -25823,7 +25753,7 @@ export class DoctorAffiliationsApi extends BaseAPI {
|
|
|
25823
25753
|
|
|
25824
25754
|
/**
|
|
25825
25755
|
*
|
|
25826
|
-
* @summary Update
|
|
25756
|
+
* @summary Update doctor affiliation.
|
|
25827
25757
|
* @param {string} id
|
|
25828
25758
|
* @param {UpdateDoctorAffiliationCommand} [updateDoctorAffiliationCommand]
|
|
25829
25759
|
* @param {*} [options] Override http request option.
|