File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed
Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ export const zWebhookTest = z.object({
2626
2727export const zWebhookAgentTaskStatusUpdatePayloadMetadata = z . record ( z . string ( ) , z . unknown ( ) ) . optional ( ) ;
2828
29- export const zWebhookAgentTaskStatusUpdatePayloadStatus = z . literal ( [
29+ export const zWebhookAgentTaskStatusUpdatePayloadStatus = z . enum ( [
3030 "initializing" ,
3131 "started" ,
32- "paused" ,
32+ // "paused", // deprecated
3333 "stopped" ,
3434 "finished" ,
3535] ) ;
Original file line number Diff line number Diff line change 22 "extends" : " ./tsconfig.base.json" ,
33 "compilerOptions" : {
44 "module" : " CommonJS" ,
5- "outDir" : " dist/cjs"
5+ "outDir" : " dist/cjs" ,
6+ "isolatedDeclarations" : false
67 },
78 "include" : [" src" ],
89 "exclude" : []
Original file line number Diff line number Diff line change 33 "compilerOptions" : {
44 "module" : " esnext" ,
55 "outDir" : " dist/esm" ,
6- "verbatimModuleSyntax" : true
6+ "verbatimModuleSyntax" : true ,
7+ "isolatedDeclarations" : false
78 },
89 "include" : [" src" ],
910 "exclude" : []
You can’t perform that action at this time.
0 commit comments