@ject-4-vs-team/api-client 2026.527.6 → 2026.529.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.
@@ -36,6 +36,7 @@ import type { UnreadCountResponse } from '../models';
36
36
  import type { UpdateNotificationSettingRequest } from '../models';
37
37
  import type { UserDeleteReq } from '../models';
38
38
  import type { UserExtraInfo } from '../models';
39
+ import type { UserImageResponse } from '../models';
39
40
  import type { UserModifyInfoRequest } from '../models';
40
41
  import type { UserNicknameRec } from '../models';
41
42
  import type { UserProfileDefaultResponse } from '../models';
@@ -111,6 +112,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
111
112
  * @throws {RequiredError}
112
113
  */
113
114
  getHotTopics: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
115
+ /**
116
+ *
117
+ * @param {*} [options] Override http request option.
118
+ * @throws {RequiredError}
119
+ */
120
+ getImageColor: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
114
121
  /**
115
122
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
116
123
  * @summary 알림 목록 조회
@@ -411,6 +418,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
411
418
  * @throws {RequiredError}
412
419
  */
413
420
  getHotTopics(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HomeHotTopicResponse>>;
421
+ /**
422
+ *
423
+ * @param {*} [options] Override http request option.
424
+ * @throws {RequiredError}
425
+ */
426
+ getImageColor(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserImageResponse>>;
414
427
  /**
415
428
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
416
429
  * @summary 알림 목록 조회
@@ -711,6 +724,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
711
724
  * @throws {RequiredError}
712
725
  */
713
726
  getHotTopics(options?: RawAxiosRequestConfig): AxiosPromise<HomeHotTopicResponse>;
727
+ /**
728
+ *
729
+ * @param {*} [options] Override http request option.
730
+ * @throws {RequiredError}
731
+ */
732
+ getImageColor(options?: RawAxiosRequestConfig): AxiosPromise<UserImageResponse>;
714
733
  /**
715
734
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
716
735
  * @summary 알림 목록 조회
@@ -1021,6 +1040,13 @@ export declare class DefaultApi extends BaseAPI {
1021
1040
  * @memberof DefaultApi
1022
1041
  */
1023
1042
  getHotTopics(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HomeHotTopicResponse, any, {}>>;
1043
+ /**
1044
+ *
1045
+ * @param {*} [options] Override http request option.
1046
+ * @throws {RequiredError}
1047
+ * @memberof DefaultApi
1048
+ */
1049
+ getImageColor(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserImageResponse, any, {}>>;
1024
1050
  /**
1025
1051
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
1026
1052
  * @summary 알림 목록 조회
@@ -278,6 +278,33 @@ const DefaultApiAxiosParamCreator = function (configuration) {
278
278
  options: localVarRequestOptions,
279
279
  };
280
280
  },
281
+ /**
282
+ *
283
+ * @param {*} [options] Override http request option.
284
+ * @throws {RequiredError}
285
+ */
286
+ getImageColor: async (options = {}) => {
287
+ const localVarPath = `/api/users/imagecolor/suggest`;
288
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
289
+ const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
290
+ let baseOptions;
291
+ if (configuration) {
292
+ baseOptions = configuration.baseOptions;
293
+ }
294
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options };
295
+ const localVarHeaderParameter = {};
296
+ const localVarQueryParameter = {};
297
+ // authentication bearerAuth required
298
+ // http bearer authentication required
299
+ await (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
300
+ (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
301
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
302
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
303
+ return {
304
+ url: (0, common_1.toPathString)(localVarUrlObj),
305
+ options: localVarRequestOptions,
306
+ };
307
+ },
281
308
  /**
282
309
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
283
310
  * @summary 알림 목록 조회
@@ -1348,6 +1375,17 @@ const DefaultApiFp = function (configuration) {
1348
1375
  const localVarOperationServerBasePath = base_1.operationServerMap['DefaultApi.getHotTopics']?.[localVarOperationServerIndex]?.url;
1349
1376
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1350
1377
  },
1378
+ /**
1379
+ *
1380
+ * @param {*} [options] Override http request option.
1381
+ * @throws {RequiredError}
1382
+ */
1383
+ async getImageColor(options) {
1384
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getImageColor(options);
1385
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
1386
+ const localVarOperationServerBasePath = base_1.operationServerMap['DefaultApi.getImageColor']?.[localVarOperationServerIndex]?.url;
1387
+ return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
1388
+ },
1351
1389
  /**
1352
1390
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
1353
1391
  * @summary 알림 목록 조회
@@ -1818,6 +1856,14 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
1818
1856
  getHotTopics(options) {
1819
1857
  return localVarFp.getHotTopics(options).then((request) => request(axios, basePath));
1820
1858
  },
1859
+ /**
1860
+ *
1861
+ * @param {*} [options] Override http request option.
1862
+ * @throws {RequiredError}
1863
+ */
1864
+ getImageColor(options) {
1865
+ return localVarFp.getImageColor(options).then((request) => request(axios, basePath));
1866
+ },
1821
1867
  /**
1822
1868
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
1823
1869
  * @summary 알림 목록 조회
@@ -2206,6 +2252,15 @@ class DefaultApi extends base_1.BaseAPI {
2206
2252
  getHotTopics(options) {
2207
2253
  return (0, exports.DefaultApiFp)(this.configuration).getHotTopics(options).then((request) => request(this.axios, this.basePath));
2208
2254
  }
2255
+ /**
2256
+ *
2257
+ * @param {*} [options] Override http request option.
2258
+ * @throws {RequiredError}
2259
+ * @memberof DefaultApi
2260
+ */
2261
+ getImageColor(options) {
2262
+ return (0, exports.DefaultApiFp)(this.configuration).getImageColor(options).then((request) => request(this.axios, this.basePath));
2263
+ }
2209
2264
  /**
2210
2265
  * 알림 목록을 조회합니다. 커서 기반 페이지네이션을 지원합니다.
2211
2266
  * @summary 알림 목록 조회
@@ -43,6 +43,7 @@ export * from './unread-count-response';
43
43
  export * from './update-notification-setting-request';
44
44
  export * from './user-delete-req';
45
45
  export * from './user-extra-info';
46
+ export * from './user-image-response';
46
47
  export * from './user-modify-info-request';
47
48
  export * from './user-nickname-rec';
48
49
  export * from './user-profile-default-response';
@@ -59,6 +59,7 @@ __exportStar(require("./unread-count-response"), exports);
59
59
  __exportStar(require("./update-notification-setting-request"), exports);
60
60
  __exportStar(require("./user-delete-req"), exports);
61
61
  __exportStar(require("./user-extra-info"), exports);
62
+ __exportStar(require("./user-image-response"), exports);
62
63
  __exportStar(require("./user-modify-info-request"), exports);
63
64
  __exportStar(require("./user-nickname-rec"), exports);
64
65
  __exportStar(require("./user-profile-default-response"), exports);
@@ -0,0 +1,21 @@
1
+ /**
2
+ * VS Server API
3
+ * JECT 4기 2팀 VS Server API
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ export interface UserImageResponse {
13
+ imageColor?: UserImageResponseImageColorEnum;
14
+ }
15
+ export declare const UserImageResponseImageColorEnum: {
16
+ readonly Green: "GREEN";
17
+ readonly Red: "RED";
18
+ readonly Blue: "BLUE";
19
+ readonly Yellow: "YELLOW";
20
+ };
21
+ export type UserImageResponseImageColorEnum = typeof UserImageResponseImageColorEnum[keyof typeof UserImageResponseImageColorEnum];
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * VS Server API
6
+ * JECT 4기 2팀 VS Server API
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UserImageResponseImageColorEnum = void 0;
17
+ exports.UserImageResponseImageColorEnum = {
18
+ Green: 'GREEN',
19
+ Red: 'RED',
20
+ Blue: 'BLUE',
21
+ Yellow: 'YELLOW'
22
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ject-4-vs-team/api-client",
3
- "version": "2026.0527.6",
3
+ "version": "2026.0529.1",
4
4
  "description": "VS Server API client generated from OpenAPI spec",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",