ch-admin-api-client-typescript 4.1.5 → 4.1.8
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 +16 -8
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +28 -14
- package/package.json +1 -1
- package/src/api.ts +30 -14
package/lib/api.js
CHANGED
|
@@ -2166,13 +2166,14 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2166
2166
|
* @param {ContributionType} [contributionType]
|
|
2167
2167
|
* @param {string} [languageCode]
|
|
2168
2168
|
* @param {boolean} [showHidden]
|
|
2169
|
+
* @param {boolean} [inbound]
|
|
2169
2170
|
* @param {number} [page]
|
|
2170
2171
|
* @param {number} [limit]
|
|
2171
2172
|
* @param {Date} [lastRetrieved]
|
|
2172
2173
|
* @param {*} [options] Override http request option.
|
|
2173
2174
|
* @throws {RequiredError}
|
|
2174
2175
|
*/
|
|
2175
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
2176
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options) {
|
|
2176
2177
|
if (options === void 0) { options = {}; }
|
|
2177
2178
|
return __awaiter(_this, void 0, void 0, function () {
|
|
2178
2179
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -2221,6 +2222,9 @@ exports.ArticlesApiAxiosParamCreator = function (configuration) {
|
|
|
2221
2222
|
if (showHidden !== undefined) {
|
|
2222
2223
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
2223
2224
|
}
|
|
2225
|
+
if (inbound !== undefined) {
|
|
2226
|
+
localVarQueryParameter['Inbound'] = inbound;
|
|
2227
|
+
}
|
|
2224
2228
|
if (page !== undefined) {
|
|
2225
2229
|
localVarQueryParameter['page'] = page;
|
|
2226
2230
|
}
|
|
@@ -3426,18 +3430,19 @@ exports.ArticlesApiFp = function (configuration) {
|
|
|
3426
3430
|
* @param {ContributionType} [contributionType]
|
|
3427
3431
|
* @param {string} [languageCode]
|
|
3428
3432
|
* @param {boolean} [showHidden]
|
|
3433
|
+
* @param {boolean} [inbound]
|
|
3429
3434
|
* @param {number} [page]
|
|
3430
3435
|
* @param {number} [limit]
|
|
3431
3436
|
* @param {Date} [lastRetrieved]
|
|
3432
3437
|
* @param {*} [options] Override http request option.
|
|
3433
3438
|
* @throws {RequiredError}
|
|
3434
3439
|
*/
|
|
3435
|
-
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
3440
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options) {
|
|
3436
3441
|
return __awaiter(this, void 0, void 0, function () {
|
|
3437
3442
|
var localVarAxiosArgs;
|
|
3438
3443
|
return __generator(this, function (_a) {
|
|
3439
3444
|
switch (_a.label) {
|
|
3440
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options)];
|
|
3445
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options)];
|
|
3441
3446
|
case 1:
|
|
3442
3447
|
localVarAxiosArgs = _a.sent();
|
|
3443
3448
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -3969,14 +3974,15 @@ exports.ArticlesApiFactory = function (configuration, basePath, axios) {
|
|
|
3969
3974
|
* @param {ContributionType} [contributionType]
|
|
3970
3975
|
* @param {string} [languageCode]
|
|
3971
3976
|
* @param {boolean} [showHidden]
|
|
3977
|
+
* @param {boolean} [inbound]
|
|
3972
3978
|
* @param {number} [page]
|
|
3973
3979
|
* @param {number} [limit]
|
|
3974
3980
|
* @param {Date} [lastRetrieved]
|
|
3975
3981
|
* @param {*} [options] Override http request option.
|
|
3976
3982
|
* @throws {RequiredError}
|
|
3977
3983
|
*/
|
|
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); });
|
|
3984
|
+
apiV1ArticlesArticleIdContributorsGet: function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options) {
|
|
3985
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
3980
3986
|
},
|
|
3981
3987
|
/**
|
|
3982
3988
|
*
|
|
@@ -4302,6 +4308,7 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4302
4308
|
* @param {ContributionType} [contributionType]
|
|
4303
4309
|
* @param {string} [languageCode]
|
|
4304
4310
|
* @param {boolean} [showHidden]
|
|
4311
|
+
* @param {boolean} [inbound]
|
|
4305
4312
|
* @param {number} [page]
|
|
4306
4313
|
* @param {number} [limit]
|
|
4307
4314
|
* @param {Date} [lastRetrieved]
|
|
@@ -4309,9 +4316,9 @@ var ArticlesApi = /** @class */ (function (_super) {
|
|
|
4309
4316
|
* @throws {RequiredError}
|
|
4310
4317
|
* @memberof ArticlesApi
|
|
4311
4318
|
*/
|
|
4312
|
-
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options) {
|
|
4319
|
+
ArticlesApi.prototype.apiV1ArticlesArticleIdContributorsGet = function (articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options) {
|
|
4313
4320
|
var _this = this;
|
|
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); });
|
|
4321
|
+
return exports.ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
4315
4322
|
};
|
|
4316
4323
|
/**
|
|
4317
4324
|
*
|
|
@@ -8547,13 +8554,14 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
8547
8554
|
* @param {boolean} [showHidden]
|
|
8548
8555
|
* @param {string} [languageCode]
|
|
8549
8556
|
* @param {boolean} [returnDefaultValue]
|
|
8557
|
+
* @param {boolean} [inbound]
|
|
8550
8558
|
* @param {number} [page]
|
|
8551
8559
|
* @param {number} [limit]
|
|
8552
8560
|
* @param {Date} [lastRetrieved]
|
|
8553
8561
|
* @param {*} [options] Override http request option.
|
|
8554
8562
|
* @throws {RequiredError}
|
|
8555
8563
|
*/
|
|
8556
|
-
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
8564
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options) {
|
|
8557
8565
|
if (options === void 0) { options = {}; }
|
|
8558
8566
|
return __awaiter(_this, void 0, void 0, function () {
|
|
8559
8567
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -8602,6 +8610,9 @@ exports.ContributorsApiAxiosParamCreator = function (configuration) {
|
|
|
8602
8610
|
if (returnDefaultValue !== undefined) {
|
|
8603
8611
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
8604
8612
|
}
|
|
8613
|
+
if (inbound !== undefined) {
|
|
8614
|
+
localVarQueryParameter['Inbound'] = inbound;
|
|
8615
|
+
}
|
|
8605
8616
|
if (page !== undefined) {
|
|
8606
8617
|
localVarQueryParameter['page'] = page;
|
|
8607
8618
|
}
|
|
@@ -8913,18 +8924,19 @@ exports.ContributorsApiFp = function (configuration) {
|
|
|
8913
8924
|
* @param {boolean} [showHidden]
|
|
8914
8925
|
* @param {string} [languageCode]
|
|
8915
8926
|
* @param {boolean} [returnDefaultValue]
|
|
8927
|
+
* @param {boolean} [inbound]
|
|
8916
8928
|
* @param {number} [page]
|
|
8917
8929
|
* @param {number} [limit]
|
|
8918
8930
|
* @param {Date} [lastRetrieved]
|
|
8919
8931
|
* @param {*} [options] Override http request option.
|
|
8920
8932
|
* @throws {RequiredError}
|
|
8921
8933
|
*/
|
|
8922
|
-
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
8934
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options) {
|
|
8923
8935
|
return __awaiter(this, void 0, void 0, function () {
|
|
8924
8936
|
var localVarAxiosArgs;
|
|
8925
8937
|
return __generator(this, function (_a) {
|
|
8926
8938
|
switch (_a.label) {
|
|
8927
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options)];
|
|
8939
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options)];
|
|
8928
8940
|
case 1:
|
|
8929
8941
|
localVarAxiosArgs = _a.sent();
|
|
8930
8942
|
return [2 /*return*/, common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -9090,14 +9102,15 @@ exports.ContributorsApiFactory = function (configuration, basePath, axios) {
|
|
|
9090
9102
|
* @param {boolean} [showHidden]
|
|
9091
9103
|
* @param {string} [languageCode]
|
|
9092
9104
|
* @param {boolean} [returnDefaultValue]
|
|
9105
|
+
* @param {boolean} [inbound]
|
|
9093
9106
|
* @param {number} [page]
|
|
9094
9107
|
* @param {number} [limit]
|
|
9095
9108
|
* @param {Date} [lastRetrieved]
|
|
9096
9109
|
* @param {*} [options] Override http request option.
|
|
9097
9110
|
* @throws {RequiredError}
|
|
9098
9111
|
*/
|
|
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); });
|
|
9112
|
+
apiV1ContributorsGet: function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options) {
|
|
9113
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options).then(function (request) { return request(axios, basePath); });
|
|
9101
9114
|
},
|
|
9102
9115
|
/**
|
|
9103
9116
|
*
|
|
@@ -9257,6 +9270,7 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
9257
9270
|
* @param {boolean} [showHidden]
|
|
9258
9271
|
* @param {string} [languageCode]
|
|
9259
9272
|
* @param {boolean} [returnDefaultValue]
|
|
9273
|
+
* @param {boolean} [inbound]
|
|
9260
9274
|
* @param {number} [page]
|
|
9261
9275
|
* @param {number} [limit]
|
|
9262
9276
|
* @param {Date} [lastRetrieved]
|
|
@@ -9264,9 +9278,9 @@ var ContributorsApi = /** @class */ (function (_super) {
|
|
|
9264
9278
|
* @throws {RequiredError}
|
|
9265
9279
|
* @memberof ContributorsApi
|
|
9266
9280
|
*/
|
|
9267
|
-
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options) {
|
|
9281
|
+
ContributorsApi.prototype.apiV1ContributorsGet = function (id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options) {
|
|
9268
9282
|
var _this = this;
|
|
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); });
|
|
9283
|
+
return exports.ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
9270
9284
|
};
|
|
9271
9285
|
/**
|
|
9272
9286
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -15589,13 +15589,14 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15589
15589
|
* @param {ContributionType} [contributionType]
|
|
15590
15590
|
* @param {string} [languageCode]
|
|
15591
15591
|
* @param {boolean} [showHidden]
|
|
15592
|
+
* @param {boolean} [inbound]
|
|
15592
15593
|
* @param {number} [page]
|
|
15593
15594
|
* @param {number} [limit]
|
|
15594
15595
|
* @param {Date} [lastRetrieved]
|
|
15595
15596
|
* @param {*} [options] Override http request option.
|
|
15596
15597
|
* @throws {RequiredError}
|
|
15597
15598
|
*/
|
|
15598
|
-
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> => {
|
|
15599
|
+
apiV1ArticlesArticleIdContributorsGet: async (articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
15599
15600
|
// verify required parameter 'articleId' is not null or undefined
|
|
15600
15601
|
assertParamExists('apiV1ArticlesArticleIdContributorsGet', 'articleId', articleId)
|
|
15601
15602
|
const localVarPath = `/api/v1/articles/{articleId}/contributors`
|
|
@@ -15647,6 +15648,10 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15647
15648
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
15648
15649
|
}
|
|
15649
15650
|
|
|
15651
|
+
if (inbound !== undefined) {
|
|
15652
|
+
localVarQueryParameter['Inbound'] = inbound;
|
|
15653
|
+
}
|
|
15654
|
+
|
|
15650
15655
|
if (page !== undefined) {
|
|
15651
15656
|
localVarQueryParameter['page'] = page;
|
|
15652
15657
|
}
|
|
@@ -16767,14 +16772,15 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
16767
16772
|
* @param {ContributionType} [contributionType]
|
|
16768
16773
|
* @param {string} [languageCode]
|
|
16769
16774
|
* @param {boolean} [showHidden]
|
|
16775
|
+
* @param {boolean} [inbound]
|
|
16770
16776
|
* @param {number} [page]
|
|
16771
16777
|
* @param {number} [limit]
|
|
16772
16778
|
* @param {Date} [lastRetrieved]
|
|
16773
16779
|
* @param {*} [options] Override http request option.
|
|
16774
16780
|
* @throws {RequiredError}
|
|
16775
16781
|
*/
|
|
16776
|
-
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>> {
|
|
16777
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options);
|
|
16782
|
+
async apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ArticleContributorsModel>> {
|
|
16783
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options);
|
|
16778
16784
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16779
16785
|
},
|
|
16780
16786
|
/**
|
|
@@ -17113,14 +17119,15 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
17113
17119
|
* @param {ContributionType} [contributionType]
|
|
17114
17120
|
* @param {string} [languageCode]
|
|
17115
17121
|
* @param {boolean} [showHidden]
|
|
17122
|
+
* @param {boolean} [inbound]
|
|
17116
17123
|
* @param {number} [page]
|
|
17117
17124
|
* @param {number} [limit]
|
|
17118
17125
|
* @param {Date} [lastRetrieved]
|
|
17119
17126
|
* @param {*} [options] Override http request option.
|
|
17120
17127
|
* @throws {RequiredError}
|
|
17121
17128
|
*/
|
|
17122
|
-
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> {
|
|
17123
|
-
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
17129
|
+
apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ArticleContributorsModel> {
|
|
17130
|
+
return localVarFp.apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
17124
17131
|
},
|
|
17125
17132
|
/**
|
|
17126
17133
|
*
|
|
@@ -17443,6 +17450,7 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17443
17450
|
* @param {ContributionType} [contributionType]
|
|
17444
17451
|
* @param {string} [languageCode]
|
|
17445
17452
|
* @param {boolean} [showHidden]
|
|
17453
|
+
* @param {boolean} [inbound]
|
|
17446
17454
|
* @param {number} [page]
|
|
17447
17455
|
* @param {number} [limit]
|
|
17448
17456
|
* @param {Date} [lastRetrieved]
|
|
@@ -17450,8 +17458,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17450
17458
|
* @throws {RequiredError}
|
|
17451
17459
|
* @memberof ArticlesApi
|
|
17452
17460
|
*/
|
|
17453
|
-
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) {
|
|
17454
|
-
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));
|
|
17461
|
+
public apiV1ArticlesArticleIdContributorsGet(articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
17462
|
+
return ArticlesApiFp(this.configuration).apiV1ArticlesArticleIdContributorsGet(articleId, articleName, contributorId, contributorName, email, website, contributionType, languageCode, showHidden, inbound, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17455
17463
|
}
|
|
17456
17464
|
|
|
17457
17465
|
/**
|
|
@@ -21255,13 +21263,14 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21255
21263
|
* @param {boolean} [showHidden]
|
|
21256
21264
|
* @param {string} [languageCode]
|
|
21257
21265
|
* @param {boolean} [returnDefaultValue]
|
|
21266
|
+
* @param {boolean} [inbound]
|
|
21258
21267
|
* @param {number} [page]
|
|
21259
21268
|
* @param {number} [limit]
|
|
21260
21269
|
* @param {Date} [lastRetrieved]
|
|
21261
21270
|
* @param {*} [options] Override http request option.
|
|
21262
21271
|
* @throws {RequiredError}
|
|
21263
21272
|
*/
|
|
21264
|
-
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> => {
|
|
21273
|
+
apiV1ContributorsGet: async (id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
21265
21274
|
const localVarPath = `/api/v1/contributors`;
|
|
21266
21275
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21267
21276
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -21314,6 +21323,10 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21314
21323
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21315
21324
|
}
|
|
21316
21325
|
|
|
21326
|
+
if (inbound !== undefined) {
|
|
21327
|
+
localVarQueryParameter['Inbound'] = inbound;
|
|
21328
|
+
}
|
|
21329
|
+
|
|
21317
21330
|
if (page !== undefined) {
|
|
21318
21331
|
localVarQueryParameter['page'] = page;
|
|
21319
21332
|
}
|
|
@@ -21550,14 +21563,15 @@ export const ContributorsApiFp = function(configuration?: Configuration) {
|
|
|
21550
21563
|
* @param {boolean} [showHidden]
|
|
21551
21564
|
* @param {string} [languageCode]
|
|
21552
21565
|
* @param {boolean} [returnDefaultValue]
|
|
21566
|
+
* @param {boolean} [inbound]
|
|
21553
21567
|
* @param {number} [page]
|
|
21554
21568
|
* @param {number} [limit]
|
|
21555
21569
|
* @param {Date} [lastRetrieved]
|
|
21556
21570
|
* @param {*} [options] Override http request option.
|
|
21557
21571
|
* @throws {RequiredError}
|
|
21558
21572
|
*/
|
|
21559
|
-
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>> {
|
|
21560
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options);
|
|
21573
|
+
async apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContributorsModel>> {
|
|
21574
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options);
|
|
21561
21575
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
21562
21576
|
},
|
|
21563
21577
|
/**
|
|
@@ -21701,14 +21715,15 @@ export const ContributorsApiFactory = function (configuration?: Configuration, b
|
|
|
21701
21715
|
* @param {boolean} [showHidden]
|
|
21702
21716
|
* @param {string} [languageCode]
|
|
21703
21717
|
* @param {boolean} [returnDefaultValue]
|
|
21718
|
+
* @param {boolean} [inbound]
|
|
21704
21719
|
* @param {number} [page]
|
|
21705
21720
|
* @param {number} [limit]
|
|
21706
21721
|
* @param {Date} [lastRetrieved]
|
|
21707
21722
|
* @param {*} [options] Override http request option.
|
|
21708
21723
|
* @throws {RequiredError}
|
|
21709
21724
|
*/
|
|
21710
|
-
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> {
|
|
21711
|
-
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21725
|
+
apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<ContributorsModel> {
|
|
21726
|
+
return localVarFp.apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
21712
21727
|
},
|
|
21713
21728
|
/**
|
|
21714
21729
|
*
|
|
@@ -21865,6 +21880,7 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21865
21880
|
* @param {boolean} [showHidden]
|
|
21866
21881
|
* @param {string} [languageCode]
|
|
21867
21882
|
* @param {boolean} [returnDefaultValue]
|
|
21883
|
+
* @param {boolean} [inbound]
|
|
21868
21884
|
* @param {number} [page]
|
|
21869
21885
|
* @param {number} [limit]
|
|
21870
21886
|
* @param {Date} [lastRetrieved]
|
|
@@ -21872,8 +21888,8 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21872
21888
|
* @throws {RequiredError}
|
|
21873
21889
|
* @memberof ContributorsApi
|
|
21874
21890
|
*/
|
|
21875
|
-
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) {
|
|
21876
|
-
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));
|
|
21891
|
+
public apiV1ContributorsGet(id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean, inbound?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) {
|
|
21892
|
+
return ContributorsApiFp(this.configuration).apiV1ContributorsGet(id, name, email, website, hospitalId, interviewerOnly, showHidden, languageCode, returnDefaultValue, inbound, page, limit, lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
21877
21893
|
}
|
|
21878
21894
|
|
|
21879
21895
|
/**
|