Skip to content

Commit 80708fb

Browse files
Merge pull request #9 from Palbahngmiyine/refactor/remove-unused-exports
refactor: 미사용 export 및 dead file 제거
2 parents 81ab581 + 2faa1d1 commit 80708fb

4 files changed

Lines changed: 0 additions & 58 deletions

File tree

src/models/requests/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ export {
4343
type GetKakaoChannelsRequest,
4444
getKakaoChannelsRequestSchema,
4545
} from './kakao/getKakaoChannelsRequest';
46-
export {
47-
type KakaoOptionRequest,
48-
kakaoOptionRequestSchema,
49-
} from './kakao/kakaoOptionRequest';
5046
export {
5147
type UpdateKakaoAlimtalkTemplateRequest,
5248
updateKakaoAlimtalkTemplateRequestSchema,

src/models/requests/kakao/kakaoOptionRequest.ts

Lines changed: 0 additions & 17 deletions
This file was deleted.

src/types/commonTypes.ts

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,5 @@
11
import {Schema} from 'effect';
22

3-
// --- Operator Types ---
4-
5-
/**
6-
* @description 검색 조건 파라미터
7-
* @see https://developers.solapi.com/references/#operator
8-
*/
9-
export const operatorTypeSchema = Schema.Literal(
10-
'eq',
11-
'gte',
12-
'lte',
13-
'ne',
14-
'in',
15-
'like',
16-
'gt',
17-
'lt',
18-
);
19-
export type OperatorType = Schema.Schema.Type<typeof operatorTypeSchema>;
20-
21-
/**
22-
* @description 날짜 검색 조건 파라미터
23-
* @see https://developers.solapi.com/references/#operator
24-
*/
25-
export const dateOperatorTypeSchema = Schema.Literal(
26-
'eq',
27-
'gte',
28-
'lte',
29-
'gt',
30-
'lt',
31-
);
32-
export type DateOperatorType = Schema.Schema.Type<
33-
typeof dateOperatorTypeSchema
34-
>;
35-
363
// --- Count & Charge Types ---
374

385
export const countSchema = Schema.Struct({

src/types/index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export {
1313
commonCashResponseSchema,
1414
countForChargeSchema,
1515
countSchema,
16-
type DateOperatorType,
17-
dateOperatorTypeSchema,
1816
type Group,
1917
type GroupId,
2018
groupIdSchema,
@@ -25,6 +23,4 @@ export {
2523
logSchema,
2624
type MessageTypeRecord,
2725
messageTypeRecordSchema,
28-
type OperatorType,
29-
operatorTypeSchema,
3026
} from './commonTypes';

0 commit comments

Comments
 (0)