@ject-4-vs-team/api-client 2026.517.1 → 2026.525.1
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/dist/api/chat-api.d.ts +4 -4
- package/dist/api/chat-api.js +10 -10
- package/dist/api/default-api.d.ts +1280 -0
- package/dist/api/default-api.js +2490 -0
- package/dist/api.d.ts +1 -7
- package/dist/api.js +1 -7
- package/dist/models/emoji-response.d.ts +2 -4
- package/dist/models/emoji-summary.d.ts +18 -0
- package/dist/models/free-votes-response.d.ts +2 -1
- package/dist/models/gender-detail.d.ts +15 -0
- package/dist/models/gender-detail.js +15 -0
- package/dist/models/gender-distribution-response.d.ts +5 -2
- package/dist/models/home-hot-topic-response.d.ts +15 -0
- package/dist/models/home-hot-topic-response.js +15 -0
- package/dist/models/home-recommendation-response.d.ts +15 -0
- package/dist/models/home-recommendation-response.js +15 -0
- package/dist/models/home-vote-list-response.d.ts +17 -0
- package/dist/models/home-vote-list-response.js +15 -0
- package/dist/models/{feed-item.d.ts → hot-topic-item.d.ts} +5 -6
- package/dist/models/hot-topic-item.js +15 -0
- package/dist/models/immersive-feed-response.d.ts +2 -2
- package/dist/models/immersive-live-response.d.ts +3 -4
- package/dist/models/index.d.ts +23 -1
- package/dist/models/index.js +23 -1
- package/dist/models/my-participated-vote-response.d.ts +16 -0
- package/dist/models/my-participated-vote-response.js +15 -0
- package/dist/models/my-vote.d.ts +15 -0
- package/dist/models/my-vote.js +15 -0
- package/dist/models/notification-item.d.ts +25 -0
- package/dist/models/notification-item.js +19 -0
- package/dist/models/notification-list-response.d.ts +17 -0
- package/dist/models/notification-list-response.js +15 -0
- package/dist/models/notification-setting-response.d.ts +16 -0
- package/dist/models/notification-setting-response.js +15 -0
- package/dist/models/prompt-status-response.d.ts +15 -0
- package/dist/models/prompt-status-response.js +15 -0
- package/dist/models/read-all-response.d.ts +14 -0
- package/dist/models/read-all-response.js +15 -0
- package/dist/models/recommendation-item.d.ts +18 -0
- package/dist/models/recommendation-item.js +15 -0
- package/dist/models/register-push-token-request.d.ts +20 -0
- package/dist/models/register-push-token-request.js +20 -0
- package/dist/models/result-options.d.ts +15 -0
- package/dist/models/result-options.js +15 -0
- package/dist/models/share-link-response.d.ts +3 -1
- package/dist/models/unread-count-response.d.ts +14 -0
- package/dist/models/unread-count-response.js +15 -0
- package/dist/models/update-notification-setting-request.d.ts +14 -0
- package/dist/models/update-notification-setting-request.js +15 -0
- package/dist/models/user-delete-req.d.ts +15 -0
- package/dist/models/user-delete-req.js +15 -0
- package/dist/models/user-modify-info-request.d.ts +22 -0
- package/dist/models/user-modify-info-request.js +22 -0
- package/dist/models/vote-detail-response.d.ts +6 -6
- package/dist/models/vote-element.d.ts +19 -0
- package/dist/models/vote-element.js +15 -0
- package/dist/models/vote-item.d.ts +27 -0
- package/dist/models/vote-item.js +15 -0
- package/dist/models/vote-list-item.d.ts +24 -0
- package/dist/models/vote-list-item.js +20 -0
- package/dist/models/vote-result-response.d.ts +7 -3
- package/package.json +1 -1
- package/dist/api/auth-controller-api.d.ts +0 -65
- package/dist/api/auth-controller-api.js +0 -118
- package/dist/api/guest-free-vote-controller-api.d.ts +0 -70
- package/dist/api/guest-free-vote-controller-api.js +0 -127
- package/dist/api/immersive-vote-controller-api.d.ts +0 -147
- package/dist/api/immersive-vote-controller-api.js +0 -282
- package/dist/api/user-controller-api.d.ts +0 -183
- package/dist/api/user-controller-api.js +0 -362
- package/dist/api/vote-controller-api.d.ts +0 -173
- package/dist/api/vote-controller-api.js +0 -338
- package/dist/api/vote-emoji-controller-api.d.ts +0 -116
- package/dist/api/vote-emoji-controller-api.js +0 -221
- package/dist/api/vote-result-controller-api.d.ts +0 -100
- package/dist/api/vote-result-controller-api.js +0 -187
- /package/dist/models/{feed-item.js → emoji-summary.js} +0 -0
package/dist/api/chat-api.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export declare const ChatApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
66
66
|
* @param {*} [options] Override http request option.
|
|
67
67
|
* @throws {RequiredError}
|
|
68
68
|
*/
|
|
69
|
-
|
|
69
|
+
markAsRead1: (voteId: number, markAsReadRequest: MarkAsReadRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
70
70
|
/**
|
|
71
71
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|
|
72
72
|
* @summary 채팅 메시지 전송
|
|
@@ -124,7 +124,7 @@ export declare const ChatApiFp: (configuration?: Configuration) => {
|
|
|
124
124
|
* @param {*} [options] Override http request option.
|
|
125
125
|
* @throws {RequiredError}
|
|
126
126
|
*/
|
|
127
|
-
|
|
127
|
+
markAsRead1(voteId: number, markAsReadRequest: MarkAsReadRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
128
128
|
/**
|
|
129
129
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|
|
130
130
|
* @summary 채팅 메시지 전송
|
|
@@ -182,7 +182,7 @@ export declare const ChatApiFactory: (configuration?: Configuration, basePath?:
|
|
|
182
182
|
* @param {*} [options] Override http request option.
|
|
183
183
|
* @throws {RequiredError}
|
|
184
184
|
*/
|
|
185
|
-
|
|
185
|
+
markAsRead1(voteId: number, markAsReadRequest: MarkAsReadRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
186
186
|
/**
|
|
187
187
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|
|
188
188
|
* @summary 채팅 메시지 전송
|
|
@@ -247,7 +247,7 @@ export declare class ChatApi extends BaseAPI {
|
|
|
247
247
|
* @throws {RequiredError}
|
|
248
248
|
* @memberof ChatApi
|
|
249
249
|
*/
|
|
250
|
-
|
|
250
|
+
markAsRead1(voteId: number, markAsReadRequest: MarkAsReadRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
251
251
|
/**
|
|
252
252
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|
|
253
253
|
* @summary 채팅 메시지 전송
|
package/dist/api/chat-api.js
CHANGED
|
@@ -175,11 +175,11 @@ const ChatApiAxiosParamCreator = function (configuration) {
|
|
|
175
175
|
* @param {*} [options] Override http request option.
|
|
176
176
|
* @throws {RequiredError}
|
|
177
177
|
*/
|
|
178
|
-
|
|
178
|
+
markAsRead1: async (voteId, markAsReadRequest, options = {}) => {
|
|
179
179
|
// verify required parameter 'voteId' is not null or undefined
|
|
180
|
-
(0, common_1.assertParamExists)('
|
|
180
|
+
(0, common_1.assertParamExists)('markAsRead1', 'voteId', voteId);
|
|
181
181
|
// verify required parameter 'markAsReadRequest' is not null or undefined
|
|
182
|
-
(0, common_1.assertParamExists)('
|
|
182
|
+
(0, common_1.assertParamExists)('markAsRead1', 'markAsReadRequest', markAsReadRequest);
|
|
183
183
|
const localVarPath = `/api/chats/{voteId}/read`
|
|
184
184
|
.replace(`{${"voteId"}}`, encodeURIComponent(String(voteId)));
|
|
185
185
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -313,10 +313,10 @@ const ChatApiFp = function (configuration) {
|
|
|
313
313
|
* @param {*} [options] Override http request option.
|
|
314
314
|
* @throws {RequiredError}
|
|
315
315
|
*/
|
|
316
|
-
async
|
|
317
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.
|
|
316
|
+
async markAsRead1(voteId, markAsReadRequest, options) {
|
|
317
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.markAsRead1(voteId, markAsReadRequest, options);
|
|
318
318
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
319
|
-
const localVarOperationServerBasePath = base_1.operationServerMap['ChatApi.
|
|
319
|
+
const localVarOperationServerBasePath = base_1.operationServerMap['ChatApi.markAsRead1']?.[localVarOperationServerIndex]?.url;
|
|
320
320
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
321
321
|
},
|
|
322
322
|
/**
|
|
@@ -393,8 +393,8 @@ const ChatApiFactory = function (configuration, basePath, axios) {
|
|
|
393
393
|
* @param {*} [options] Override http request option.
|
|
394
394
|
* @throws {RequiredError}
|
|
395
395
|
*/
|
|
396
|
-
|
|
397
|
-
return localVarFp.
|
|
396
|
+
markAsRead1(voteId, markAsReadRequest, options) {
|
|
397
|
+
return localVarFp.markAsRead1(voteId, markAsReadRequest, options).then((request) => request(axios, basePath));
|
|
398
398
|
},
|
|
399
399
|
/**
|
|
400
400
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|
|
@@ -472,8 +472,8 @@ class ChatApi extends base_1.BaseAPI {
|
|
|
472
472
|
* @throws {RequiredError}
|
|
473
473
|
* @memberof ChatApi
|
|
474
474
|
*/
|
|
475
|
-
|
|
476
|
-
return (0, exports.ChatApiFp)(this.configuration).
|
|
475
|
+
markAsRead1(voteId, markAsReadRequest, options) {
|
|
476
|
+
return (0, exports.ChatApiFp)(this.configuration).markAsRead1(voteId, markAsReadRequest, options).then((request) => request(this.axios, this.basePath));
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* 채팅방에 새 메시지를 전송하고 저장된 메시지 정보를 반환합니다.
|