File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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' ;
5046export {
5147 type UpdateKakaoAlimtalkTemplateRequest ,
5248 updateKakaoAlimtalkTemplateRequestSchema ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11import { 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
385export const countSchema = Schema . Struct ( {
Original file line number Diff line number Diff 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' ;
You can’t perform that action at this time.
0 commit comments