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.d.ts
CHANGED
|
@@ -26120,11 +26120,12 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
|
|
|
26120
26120
|
* @summary Get group channel list
|
|
26121
26121
|
* @param {string} [nextToken]
|
|
26122
26122
|
* @param {string} [userId]
|
|
26123
|
+
* @param {string} [customType]
|
|
26123
26124
|
* @param {number} [limit]
|
|
26124
26125
|
* @param {*} [options] Override http request option.
|
|
26125
26126
|
* @throws {RequiredError}
|
|
26126
26127
|
*/
|
|
26127
|
-
apiV1GroupchannelsGet: (nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26128
|
+
apiV1GroupchannelsGet: (nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26128
26129
|
};
|
|
26129
26130
|
/**
|
|
26130
26131
|
* GroupChannelsApi - functional programming interface
|
|
@@ -26145,11 +26146,12 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration) => {
|
|
|
26145
26146
|
* @summary Get group channel list
|
|
26146
26147
|
* @param {string} [nextToken]
|
|
26147
26148
|
* @param {string} [userId]
|
|
26149
|
+
* @param {string} [customType]
|
|
26148
26150
|
* @param {number} [limit]
|
|
26149
26151
|
* @param {*} [options] Override http request option.
|
|
26150
26152
|
* @throws {RequiredError}
|
|
26151
26153
|
*/
|
|
26152
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupChannelList>>;
|
|
26154
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupChannelList>>;
|
|
26153
26155
|
};
|
|
26154
26156
|
/**
|
|
26155
26157
|
* GroupChannelsApi - factory interface
|
|
@@ -26170,11 +26172,12 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration, ba
|
|
|
26170
26172
|
* @summary Get group channel list
|
|
26171
26173
|
* @param {string} [nextToken]
|
|
26172
26174
|
* @param {string} [userId]
|
|
26175
|
+
* @param {string} [customType]
|
|
26173
26176
|
* @param {number} [limit]
|
|
26174
26177
|
* @param {*} [options] Override http request option.
|
|
26175
26178
|
* @throws {RequiredError}
|
|
26176
26179
|
*/
|
|
26177
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: any): AxiosPromise<GroupChannelList>;
|
|
26180
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: any): AxiosPromise<GroupChannelList>;
|
|
26178
26181
|
};
|
|
26179
26182
|
/**
|
|
26180
26183
|
* GroupChannelsApi - object-oriented interface
|
|
@@ -26198,12 +26201,13 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
26198
26201
|
* @summary Get group channel list
|
|
26199
26202
|
* @param {string} [nextToken]
|
|
26200
26203
|
* @param {string} [userId]
|
|
26204
|
+
* @param {string} [customType]
|
|
26201
26205
|
* @param {number} [limit]
|
|
26202
26206
|
* @param {*} [options] Override http request option.
|
|
26203
26207
|
* @throws {RequiredError}
|
|
26204
26208
|
* @memberof GroupChannelsApi
|
|
26205
26209
|
*/
|
|
26206
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupChannelList, any>>;
|
|
26210
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupChannelList, any>>;
|
|
26207
26211
|
}
|
|
26208
26212
|
/**
|
|
26209
26213
|
* HeaderNavigationsApi - axios parameter creator
|