ch-admin-api-client-typescript 4.1.8 → 4.1.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.d.ts +8 -16
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -28
- package/package.json +1 -1
- package/src/api.ts +14 -30
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
|
*
|
package/package.json
CHANGED
package/src/api.ts
CHANGED
|
@@ -15589,14 +15589,13 @@ 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]
|
|
15593
15592
|
* @param {number} [page]
|
|
15594
15593
|
* @param {number} [limit]
|
|
15595
15594
|
* @param {Date} [lastRetrieved]
|
|
15596
15595
|
* @param {*} [options] Override http request option.
|
|
15597
15596
|
* @throws {RequiredError}
|
|
15598
15597
|
*/
|
|
15599
|
-
apiV1ArticlesArticleIdContributorsGet: async (articleId: string, articleName?: string, contributorId?: string, contributorName?: string, email?: string, website?: string, contributionType?: ContributionType, languageCode?: string, showHidden?: boolean,
|
|
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> => {
|
|
15600
15599
|
// verify required parameter 'articleId' is not null or undefined
|
|
15601
15600
|
assertParamExists('apiV1ArticlesArticleIdContributorsGet', 'articleId', articleId)
|
|
15602
15601
|
const localVarPath = `/api/v1/articles/{articleId}/contributors`
|
|
@@ -15648,10 +15647,6 @@ export const ArticlesApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
15648
15647
|
localVarQueryParameter['ShowHidden'] = showHidden;
|
|
15649
15648
|
}
|
|
15650
15649
|
|
|
15651
|
-
if (inbound !== undefined) {
|
|
15652
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
15653
|
-
}
|
|
15654
|
-
|
|
15655
15650
|
if (page !== undefined) {
|
|
15656
15651
|
localVarQueryParameter['page'] = page;
|
|
15657
15652
|
}
|
|
@@ -16772,15 +16767,14 @@ export const ArticlesApiFp = function(configuration?: Configuration) {
|
|
|
16772
16767
|
* @param {ContributionType} [contributionType]
|
|
16773
16768
|
* @param {string} [languageCode]
|
|
16774
16769
|
* @param {boolean} [showHidden]
|
|
16775
|
-
* @param {boolean} [inbound]
|
|
16776
16770
|
* @param {number} [page]
|
|
16777
16771
|
* @param {number} [limit]
|
|
16778
16772
|
* @param {Date} [lastRetrieved]
|
|
16779
16773
|
* @param {*} [options] Override http request option.
|
|
16780
16774
|
* @throws {RequiredError}
|
|
16781
16775
|
*/
|
|
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,
|
|
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);
|
|
16784
16778
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
16785
16779
|
},
|
|
16786
16780
|
/**
|
|
@@ -17119,15 +17113,14 @@ export const ArticlesApiFactory = function (configuration?: Configuration, baseP
|
|
|
17119
17113
|
* @param {ContributionType} [contributionType]
|
|
17120
17114
|
* @param {string} [languageCode]
|
|
17121
17115
|
* @param {boolean} [showHidden]
|
|
17122
|
-
* @param {boolean} [inbound]
|
|
17123
17116
|
* @param {number} [page]
|
|
17124
17117
|
* @param {number} [limit]
|
|
17125
17118
|
* @param {Date} [lastRetrieved]
|
|
17126
17119
|
* @param {*} [options] Override http request option.
|
|
17127
17120
|
* @throws {RequiredError}
|
|
17128
17121
|
*/
|
|
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,
|
|
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));
|
|
17131
17124
|
},
|
|
17132
17125
|
/**
|
|
17133
17126
|
*
|
|
@@ -17450,7 +17443,6 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17450
17443
|
* @param {ContributionType} [contributionType]
|
|
17451
17444
|
* @param {string} [languageCode]
|
|
17452
17445
|
* @param {boolean} [showHidden]
|
|
17453
|
-
* @param {boolean} [inbound]
|
|
17454
17446
|
* @param {number} [page]
|
|
17455
17447
|
* @param {number} [limit]
|
|
17456
17448
|
* @param {Date} [lastRetrieved]
|
|
@@ -17458,8 +17450,8 @@ export class ArticlesApi extends BaseAPI {
|
|
|
17458
17450
|
* @throws {RequiredError}
|
|
17459
17451
|
* @memberof ArticlesApi
|
|
17460
17452
|
*/
|
|
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,
|
|
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));
|
|
17463
17455
|
}
|
|
17464
17456
|
|
|
17465
17457
|
/**
|
|
@@ -21263,14 +21255,13 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21263
21255
|
* @param {boolean} [showHidden]
|
|
21264
21256
|
* @param {string} [languageCode]
|
|
21265
21257
|
* @param {boolean} [returnDefaultValue]
|
|
21266
|
-
* @param {boolean} [inbound]
|
|
21267
21258
|
* @param {number} [page]
|
|
21268
21259
|
* @param {number} [limit]
|
|
21269
21260
|
* @param {Date} [lastRetrieved]
|
|
21270
21261
|
* @param {*} [options] Override http request option.
|
|
21271
21262
|
* @throws {RequiredError}
|
|
21272
21263
|
*/
|
|
21273
|
-
apiV1ContributorsGet: async (id?: string, name?: string, email?: string, website?: string, hospitalId?: string, interviewerOnly?: boolean, showHidden?: boolean, languageCode?: string, returnDefaultValue?: boolean,
|
|
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> => {
|
|
21274
21265
|
const localVarPath = `/api/v1/contributors`;
|
|
21275
21266
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
21276
21267
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -21323,10 +21314,6 @@ export const ContributorsApiAxiosParamCreator = function (configuration?: Config
|
|
|
21323
21314
|
localVarQueryParameter['ReturnDefaultValue'] = returnDefaultValue;
|
|
21324
21315
|
}
|
|
21325
21316
|
|
|
21326
|
-
if (inbound !== undefined) {
|
|
21327
|
-
localVarQueryParameter['Inbound'] = inbound;
|
|
21328
|
-
}
|
|
21329
|
-
|
|
21330
21317
|
if (page !== undefined) {
|
|
21331
21318
|
localVarQueryParameter['page'] = page;
|
|
21332
21319
|
}
|
|
@@ -21563,15 +21550,14 @@ export const ContributorsApiFp = function(configuration?: Configuration) {
|
|
|
21563
21550
|
* @param {boolean} [showHidden]
|
|
21564
21551
|
* @param {string} [languageCode]
|
|
21565
21552
|
* @param {boolean} [returnDefaultValue]
|
|
21566
|
-
* @param {boolean} [inbound]
|
|
21567
21553
|
* @param {number} [page]
|
|
21568
21554
|
* @param {number} [limit]
|
|
21569
21555
|
* @param {Date} [lastRetrieved]
|
|
21570
21556
|
* @param {*} [options] Override http request option.
|
|
21571
21557
|
* @throws {RequiredError}
|
|
21572
21558
|
*/
|
|
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,
|
|
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);
|
|
21575
21561
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
21576
21562
|
},
|
|
21577
21563
|
/**
|
|
@@ -21715,15 +21701,14 @@ export const ContributorsApiFactory = function (configuration?: Configuration, b
|
|
|
21715
21701
|
* @param {boolean} [showHidden]
|
|
21716
21702
|
* @param {string} [languageCode]
|
|
21717
21703
|
* @param {boolean} [returnDefaultValue]
|
|
21718
|
-
* @param {boolean} [inbound]
|
|
21719
21704
|
* @param {number} [page]
|
|
21720
21705
|
* @param {number} [limit]
|
|
21721
21706
|
* @param {Date} [lastRetrieved]
|
|
21722
21707
|
* @param {*} [options] Override http request option.
|
|
21723
21708
|
* @throws {RequiredError}
|
|
21724
21709
|
*/
|
|
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,
|
|
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));
|
|
21727
21712
|
},
|
|
21728
21713
|
/**
|
|
21729
21714
|
*
|
|
@@ -21880,7 +21865,6 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21880
21865
|
* @param {boolean} [showHidden]
|
|
21881
21866
|
* @param {string} [languageCode]
|
|
21882
21867
|
* @param {boolean} [returnDefaultValue]
|
|
21883
|
-
* @param {boolean} [inbound]
|
|
21884
21868
|
* @param {number} [page]
|
|
21885
21869
|
* @param {number} [limit]
|
|
21886
21870
|
* @param {Date} [lastRetrieved]
|
|
@@ -21888,8 +21872,8 @@ export class ContributorsApi extends BaseAPI {
|
|
|
21888
21872
|
* @throws {RequiredError}
|
|
21889
21873
|
* @memberof ContributorsApi
|
|
21890
21874
|
*/
|
|
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,
|
|
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));
|
|
21893
21877
|
}
|
|
21894
21878
|
|
|
21895
21879
|
/**
|