ch-admin-api-client-typescript 4.8.2 → 4.8.3
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 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +14 -7
- package/package.json +1 -1
package/lib/api.js
CHANGED
|
@@ -20967,11 +20967,12 @@ var GroupChannelsApiAxiosParamCreator = function (configuration) {
|
|
|
20967
20967
|
* @summary Get group channel list
|
|
20968
20968
|
* @param {string} [nextToken]
|
|
20969
20969
|
* @param {string} [userId]
|
|
20970
|
+
* @param {string} [customType]
|
|
20970
20971
|
* @param {number} [limit]
|
|
20971
20972
|
* @param {*} [options] Override http request option.
|
|
20972
20973
|
* @throws {RequiredError}
|
|
20973
20974
|
*/
|
|
20974
|
-
apiV1GroupchannelsGet: function (nextToken, userId, limit, options) {
|
|
20975
|
+
apiV1GroupchannelsGet: function (nextToken, userId, customType, limit, options) {
|
|
20975
20976
|
if (options === void 0) { options = {}; }
|
|
20976
20977
|
return __awaiter(_this, void 0, void 0, function () {
|
|
20977
20978
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -20999,6 +21000,9 @@ var GroupChannelsApiAxiosParamCreator = function (configuration) {
|
|
|
20999
21000
|
if (userId !== undefined) {
|
|
21000
21001
|
localVarQueryParameter['UserId'] = userId;
|
|
21001
21002
|
}
|
|
21003
|
+
if (customType !== undefined) {
|
|
21004
|
+
localVarQueryParameter['CustomType'] = customType;
|
|
21005
|
+
}
|
|
21002
21006
|
if (limit !== undefined) {
|
|
21003
21007
|
localVarQueryParameter['Limit'] = limit;
|
|
21004
21008
|
}
|
|
@@ -21049,16 +21053,17 @@ var GroupChannelsApiFp = function (configuration) {
|
|
|
21049
21053
|
* @summary Get group channel list
|
|
21050
21054
|
* @param {string} [nextToken]
|
|
21051
21055
|
* @param {string} [userId]
|
|
21056
|
+
* @param {string} [customType]
|
|
21052
21057
|
* @param {number} [limit]
|
|
21053
21058
|
* @param {*} [options] Override http request option.
|
|
21054
21059
|
* @throws {RequiredError}
|
|
21055
21060
|
*/
|
|
21056
|
-
apiV1GroupchannelsGet: function (nextToken, userId, limit, options) {
|
|
21061
|
+
apiV1GroupchannelsGet: function (nextToken, userId, customType, limit, options) {
|
|
21057
21062
|
return __awaiter(this, void 0, void 0, function () {
|
|
21058
21063
|
var localVarAxiosArgs;
|
|
21059
21064
|
return __generator(this, function (_a) {
|
|
21060
21065
|
switch (_a.label) {
|
|
21061
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1GroupchannelsGet(nextToken, userId, limit, options)];
|
|
21066
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.apiV1GroupchannelsGet(nextToken, userId, customType, limit, options)];
|
|
21062
21067
|
case 1:
|
|
21063
21068
|
localVarAxiosArgs = _a.sent();
|
|
21064
21069
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -21092,12 +21097,13 @@ var GroupChannelsApiFactory = function (configuration, basePath, axios) {
|
|
|
21092
21097
|
* @summary Get group channel list
|
|
21093
21098
|
* @param {string} [nextToken]
|
|
21094
21099
|
* @param {string} [userId]
|
|
21100
|
+
* @param {string} [customType]
|
|
21095
21101
|
* @param {number} [limit]
|
|
21096
21102
|
* @param {*} [options] Override http request option.
|
|
21097
21103
|
* @throws {RequiredError}
|
|
21098
21104
|
*/
|
|
21099
|
-
apiV1GroupchannelsGet: function (nextToken, userId, limit, options) {
|
|
21100
|
-
return localVarFp.apiV1GroupchannelsGet(nextToken, userId, limit, options).then(function (request) { return request(axios, basePath); });
|
|
21105
|
+
apiV1GroupchannelsGet: function (nextToken, userId, customType, limit, options) {
|
|
21106
|
+
return localVarFp.apiV1GroupchannelsGet(nextToken, userId, customType, limit, options).then(function (request) { return request(axios, basePath); });
|
|
21101
21107
|
},
|
|
21102
21108
|
};
|
|
21103
21109
|
};
|
|
@@ -21131,14 +21137,15 @@ var GroupChannelsApi = /** @class */ (function (_super) {
|
|
|
21131
21137
|
* @summary Get group channel list
|
|
21132
21138
|
* @param {string} [nextToken]
|
|
21133
21139
|
* @param {string} [userId]
|
|
21140
|
+
* @param {string} [customType]
|
|
21134
21141
|
* @param {number} [limit]
|
|
21135
21142
|
* @param {*} [options] Override http request option.
|
|
21136
21143
|
* @throws {RequiredError}
|
|
21137
21144
|
* @memberof GroupChannelsApi
|
|
21138
21145
|
*/
|
|
21139
|
-
GroupChannelsApi.prototype.apiV1GroupchannelsGet = function (nextToken, userId, limit, options) {
|
|
21146
|
+
GroupChannelsApi.prototype.apiV1GroupchannelsGet = function (nextToken, userId, customType, limit, options) {
|
|
21140
21147
|
var _this = this;
|
|
21141
|
-
return (0, exports.GroupChannelsApiFp)(this.configuration).apiV1GroupchannelsGet(nextToken, userId, limit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21148
|
+
return (0, exports.GroupChannelsApiFp)(this.configuration).apiV1GroupchannelsGet(nextToken, userId, customType, limit, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21142
21149
|
};
|
|
21143
21150
|
return GroupChannelsApi;
|
|
21144
21151
|
}(base_1.BaseAPI));
|