@coze-arch/cli 0.0.1-alpha.f74941 → 0.0.1-beta.6

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.
Files changed (112) hide show
  1. package/lib/__templates__/expo/.cozeproj/scripts/deploy_run.sh +1 -1
  2. package/lib/__templates__/expo/app.json +1 -1
  3. package/lib/__templates__/expo/client/index.js +2 -1
  4. package/lib/__templates__/expo/client/scripts/install-missing-deps.js +36 -12
  5. package/lib/__templates__/expo/metro.config.js +15 -15
  6. package/lib/__templates__/expo/package.json +14 -5
  7. package/lib/__templates__/expo/pnpm-lock.yaml +335 -4
  8. package/lib/__templates__/nextjs/.babelrc +15 -0
  9. package/lib/__templates__/nextjs/README.md +341 -19
  10. package/lib/__templates__/nextjs/components.json +21 -0
  11. package/lib/__templates__/nextjs/package.json +48 -1
  12. package/lib/__templates__/nextjs/pnpm-lock.yaml +6399 -1356
  13. package/lib/__templates__/nextjs/scripts/dev.sh +2 -1
  14. package/lib/__templates__/nextjs/server.mjs +50 -0
  15. package/lib/__templates__/nextjs/src/app/globals.css +99 -8
  16. package/lib/__templates__/nextjs/src/app/layout.tsx +4 -0
  17. package/lib/__templates__/nextjs/src/components/ui/accordion.tsx +66 -0
  18. package/lib/__templates__/nextjs/src/components/ui/alert-dialog.tsx +157 -0
  19. package/lib/__templates__/nextjs/src/components/ui/alert.tsx +66 -0
  20. package/lib/__templates__/nextjs/src/components/ui/aspect-ratio.tsx +11 -0
  21. package/lib/__templates__/nextjs/src/components/ui/avatar.tsx +53 -0
  22. package/lib/__templates__/nextjs/src/components/ui/badge.tsx +46 -0
  23. package/lib/__templates__/nextjs/src/components/ui/breadcrumb.tsx +109 -0
  24. package/lib/__templates__/nextjs/src/components/ui/button-group.tsx +83 -0
  25. package/lib/__templates__/nextjs/src/components/ui/button.tsx +62 -0
  26. package/lib/__templates__/nextjs/src/components/ui/calendar.tsx +220 -0
  27. package/lib/__templates__/nextjs/src/components/ui/card.tsx +92 -0
  28. package/lib/__templates__/nextjs/src/components/ui/carousel.tsx +241 -0
  29. package/lib/__templates__/nextjs/src/components/ui/chart.tsx +357 -0
  30. package/lib/__templates__/nextjs/src/components/ui/checkbox.tsx +32 -0
  31. package/lib/__templates__/nextjs/src/components/ui/collapsible.tsx +33 -0
  32. package/lib/__templates__/nextjs/src/components/ui/command.tsx +184 -0
  33. package/lib/__templates__/nextjs/src/components/ui/context-menu.tsx +252 -0
  34. package/lib/__templates__/nextjs/src/components/ui/dialog.tsx +143 -0
  35. package/lib/__templates__/nextjs/src/components/ui/drawer.tsx +135 -0
  36. package/lib/__templates__/nextjs/src/components/ui/dropdown-menu.tsx +257 -0
  37. package/lib/__templates__/nextjs/src/components/ui/empty.tsx +104 -0
  38. package/lib/__templates__/nextjs/src/components/ui/field.tsx +248 -0
  39. package/lib/__templates__/nextjs/src/components/ui/form.tsx +167 -0
  40. package/lib/__templates__/nextjs/src/components/ui/hover-card.tsx +44 -0
  41. package/lib/__templates__/nextjs/src/components/ui/input-group.tsx +170 -0
  42. package/lib/__templates__/nextjs/src/components/ui/input-otp.tsx +77 -0
  43. package/lib/__templates__/nextjs/src/components/ui/input.tsx +21 -0
  44. package/lib/__templates__/nextjs/src/components/ui/item.tsx +193 -0
  45. package/lib/__templates__/nextjs/src/components/ui/kbd.tsx +28 -0
  46. package/lib/__templates__/nextjs/src/components/ui/label.tsx +24 -0
  47. package/lib/__templates__/nextjs/src/components/ui/menubar.tsx +276 -0
  48. package/lib/__templates__/nextjs/src/components/ui/navigation-menu.tsx +168 -0
  49. package/lib/__templates__/nextjs/src/components/ui/pagination.tsx +127 -0
  50. package/lib/__templates__/nextjs/src/components/ui/popover.tsx +48 -0
  51. package/lib/__templates__/nextjs/src/components/ui/progress.tsx +31 -0
  52. package/lib/__templates__/nextjs/src/components/ui/radio-group.tsx +45 -0
  53. package/lib/__templates__/nextjs/src/components/ui/resizable.tsx +56 -0
  54. package/lib/__templates__/nextjs/src/components/ui/scroll-area.tsx +58 -0
  55. package/lib/__templates__/nextjs/src/components/ui/select.tsx +190 -0
  56. package/lib/__templates__/nextjs/src/components/ui/separator.tsx +28 -0
  57. package/lib/__templates__/nextjs/src/components/ui/sheet.tsx +139 -0
  58. package/lib/__templates__/nextjs/src/components/ui/sidebar.tsx +726 -0
  59. package/lib/__templates__/nextjs/src/components/ui/skeleton.tsx +13 -0
  60. package/lib/__templates__/nextjs/src/components/ui/slider.tsx +63 -0
  61. package/lib/__templates__/nextjs/src/components/ui/sonner.tsx +40 -0
  62. package/lib/__templates__/nextjs/src/components/ui/spinner.tsx +16 -0
  63. package/lib/__templates__/nextjs/src/components/ui/switch.tsx +31 -0
  64. package/lib/__templates__/nextjs/src/components/ui/table.tsx +116 -0
  65. package/lib/__templates__/nextjs/src/components/ui/tabs.tsx +66 -0
  66. package/lib/__templates__/nextjs/src/components/ui/textarea.tsx +18 -0
  67. package/lib/__templates__/nextjs/src/components/ui/toggle-group.tsx +83 -0
  68. package/lib/__templates__/nextjs/src/components/ui/toggle.tsx +47 -0
  69. package/lib/__templates__/nextjs/src/components/ui/tooltip.tsx +61 -0
  70. package/lib/__templates__/nextjs/src/hooks/use-mobile.ts +19 -0
  71. package/lib/__templates__/nextjs/src/lib/utils.ts +6 -0
  72. package/lib/__templates__/nextjs/template.config.js +1 -1
  73. package/lib/__templates__/templates.json +0 -38
  74. package/lib/__templates__/vite/template.config.js +1 -1
  75. package/lib/cli.js +19 -2
  76. package/package.json +2 -2
  77. package/lib/__templates__/react-rsbuild/.coze +0 -11
  78. package/lib/__templates__/react-rsbuild/.vscode/settings.json +0 -121
  79. package/lib/__templates__/react-rsbuild/README.md +0 -61
  80. package/lib/__templates__/react-rsbuild/_gitignore +0 -97
  81. package/lib/__templates__/react-rsbuild/_npmrc +0 -22
  82. package/lib/__templates__/react-rsbuild/package.json +0 -31
  83. package/lib/__templates__/react-rsbuild/pnpm-lock.yaml +0 -997
  84. package/lib/__templates__/react-rsbuild/rsbuild.config.ts +0 -13
  85. package/lib/__templates__/react-rsbuild/scripts/build.sh +0 -14
  86. package/lib/__templates__/react-rsbuild/scripts/dev.sh +0 -51
  87. package/lib/__templates__/react-rsbuild/scripts/start.sh +0 -15
  88. package/lib/__templates__/react-rsbuild/src/App.tsx +0 -60
  89. package/lib/__templates__/react-rsbuild/src/index.css +0 -21
  90. package/lib/__templates__/react-rsbuild/src/index.html +0 -12
  91. package/lib/__templates__/react-rsbuild/src/index.tsx +0 -16
  92. package/lib/__templates__/react-rsbuild/tailwind.config.js +0 -9
  93. package/lib/__templates__/react-rsbuild/template.config.js +0 -54
  94. package/lib/__templates__/react-rsbuild/tsconfig.json +0 -17
  95. package/lib/__templates__/rsbuild/.coze +0 -11
  96. package/lib/__templates__/rsbuild/.vscode/settings.json +0 -7
  97. package/lib/__templates__/rsbuild/README.md +0 -61
  98. package/lib/__templates__/rsbuild/_gitignore +0 -97
  99. package/lib/__templates__/rsbuild/_npmrc +0 -22
  100. package/lib/__templates__/rsbuild/package.json +0 -24
  101. package/lib/__templates__/rsbuild/pnpm-lock.yaml +0 -888
  102. package/lib/__templates__/rsbuild/rsbuild.config.ts +0 -12
  103. package/lib/__templates__/rsbuild/scripts/build.sh +0 -14
  104. package/lib/__templates__/rsbuild/scripts/dev.sh +0 -51
  105. package/lib/__templates__/rsbuild/scripts/start.sh +0 -15
  106. package/lib/__templates__/rsbuild/src/index.css +0 -21
  107. package/lib/__templates__/rsbuild/src/index.html +0 -12
  108. package/lib/__templates__/rsbuild/src/index.ts +0 -5
  109. package/lib/__templates__/rsbuild/src/main.ts +0 -65
  110. package/lib/__templates__/rsbuild/tailwind.config.js +0 -9
  111. package/lib/__templates__/rsbuild/template.config.js +0 -56
  112. package/lib/__templates__/rsbuild/tsconfig.json +0 -16
@@ -8,6 +8,15 @@ importers:
8
8
 
9
9
  .:
10
10
  dependencies:
11
+ '@aws-sdk/client-s3':
12
+ specifier: ^3.958.0
13
+ version: 3.958.0
14
+ '@aws-sdk/lib-storage':
15
+ specifier: ^3.958.0
16
+ version: 3.958.0(@aws-sdk/client-s3@3.958.0)
17
+ '@expo/metro-runtime':
18
+ specifier: ^6.1.2
19
+ version: 6.1.2(expo@54.0.30)(react-dom@19.1.0(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
11
20
  '@expo/vector-icons':
12
21
  specifier: ^15.0.0
13
22
  version: 15.0.3(expo-font@14.0.10(expo@54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
@@ -38,12 +47,24 @@ importers:
38
47
  ajv-formats:
39
48
  specifier: ^3.0.1
40
49
  version: 3.0.1(ajv@8.17.1)
50
+ connect:
51
+ specifier: ^3.7.0
52
+ version: 3.7.0
41
53
  coze-coding-dev-sdk:
42
54
  specifier: 0.5.0
43
- version: 0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
55
+ version: 0.5.0(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3)
44
56
  dayjs:
45
57
  specifier: ^1.11.19
46
58
  version: 1.11.19
59
+ drizzle-kit:
60
+ specifier: ^0.31.8
61
+ version: 0.31.8
62
+ drizzle-orm:
63
+ specifier: ^0.45.1
64
+ version: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
65
+ drizzle-zod:
66
+ specifier: ^0.8.3
67
+ version: 0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2)
47
68
  expo:
48
69
  specifier: ^54.0.7
49
70
  version: 54.0.30(@babel/core@7.28.5)(@expo/metro-runtime@6.1.2)(expo-router@6.0.21)(react-native-webview@13.15.0(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.28.5)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)
@@ -104,6 +125,9 @@ importers:
104
125
  express:
105
126
  specifier: ^4.22.1
106
127
  version: 4.22.1
128
+ pg:
129
+ specifier: ^8.16.3
130
+ version: 8.16.3
107
131
  react:
108
132
  specifier: 19.1.0
109
133
  version: 19.1.0
@@ -165,6 +189,9 @@ importers:
165
189
  '@types/jest':
166
190
  specifier: ^29.5.12
167
191
  version: 29.5.14
192
+ '@types/pg':
193
+ specifier: ^8.16.0
194
+ version: 8.16.0
168
195
  '@types/react':
169
196
  specifier: ~19.1.0
170
197
  version: 19.1.17
@@ -216,6 +243,9 @@ importers:
216
243
  react-test-renderer:
217
244
  specifier: 19.1.0
218
245
  version: 19.1.0(react@19.1.0)
246
+ tsx:
247
+ specifier: ^4.21.0
248
+ version: 4.21.0
219
249
  typescript:
220
250
  specifier: ^5.8.3
221
251
  version: 5.9.3
@@ -941,6 +971,12 @@ packages:
941
971
  cpu: [ppc64]
942
972
  os: [aix]
943
973
 
974
+ '@esbuild/aix-ppc64@0.27.2':
975
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
976
+ engines: {node: '>=18'}
977
+ cpu: [ppc64]
978
+ os: [aix]
979
+
944
980
  '@esbuild/android-arm64@0.18.20':
945
981
  resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
946
982
  engines: {node: '>=12'}
@@ -953,6 +989,12 @@ packages:
953
989
  cpu: [arm64]
954
990
  os: [android]
955
991
 
992
+ '@esbuild/android-arm64@0.27.2':
993
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
994
+ engines: {node: '>=18'}
995
+ cpu: [arm64]
996
+ os: [android]
997
+
956
998
  '@esbuild/android-arm@0.18.20':
957
999
  resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
958
1000
  engines: {node: '>=12'}
@@ -965,6 +1007,12 @@ packages:
965
1007
  cpu: [arm]
966
1008
  os: [android]
967
1009
 
1010
+ '@esbuild/android-arm@0.27.2':
1011
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
1012
+ engines: {node: '>=18'}
1013
+ cpu: [arm]
1014
+ os: [android]
1015
+
968
1016
  '@esbuild/android-x64@0.18.20':
969
1017
  resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
970
1018
  engines: {node: '>=12'}
@@ -977,6 +1025,12 @@ packages:
977
1025
  cpu: [x64]
978
1026
  os: [android]
979
1027
 
1028
+ '@esbuild/android-x64@0.27.2':
1029
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
1030
+ engines: {node: '>=18'}
1031
+ cpu: [x64]
1032
+ os: [android]
1033
+
980
1034
  '@esbuild/darwin-arm64@0.18.20':
981
1035
  resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
982
1036
  engines: {node: '>=12'}
@@ -989,6 +1043,12 @@ packages:
989
1043
  cpu: [arm64]
990
1044
  os: [darwin]
991
1045
 
1046
+ '@esbuild/darwin-arm64@0.27.2':
1047
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
1048
+ engines: {node: '>=18'}
1049
+ cpu: [arm64]
1050
+ os: [darwin]
1051
+
992
1052
  '@esbuild/darwin-x64@0.18.20':
993
1053
  resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
994
1054
  engines: {node: '>=12'}
@@ -1001,6 +1061,12 @@ packages:
1001
1061
  cpu: [x64]
1002
1062
  os: [darwin]
1003
1063
 
1064
+ '@esbuild/darwin-x64@0.27.2':
1065
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
1066
+ engines: {node: '>=18'}
1067
+ cpu: [x64]
1068
+ os: [darwin]
1069
+
1004
1070
  '@esbuild/freebsd-arm64@0.18.20':
1005
1071
  resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
1006
1072
  engines: {node: '>=12'}
@@ -1013,6 +1079,12 @@ packages:
1013
1079
  cpu: [arm64]
1014
1080
  os: [freebsd]
1015
1081
 
1082
+ '@esbuild/freebsd-arm64@0.27.2':
1083
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
1084
+ engines: {node: '>=18'}
1085
+ cpu: [arm64]
1086
+ os: [freebsd]
1087
+
1016
1088
  '@esbuild/freebsd-x64@0.18.20':
1017
1089
  resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
1018
1090
  engines: {node: '>=12'}
@@ -1025,6 +1097,12 @@ packages:
1025
1097
  cpu: [x64]
1026
1098
  os: [freebsd]
1027
1099
 
1100
+ '@esbuild/freebsd-x64@0.27.2':
1101
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
1102
+ engines: {node: '>=18'}
1103
+ cpu: [x64]
1104
+ os: [freebsd]
1105
+
1028
1106
  '@esbuild/linux-arm64@0.18.20':
1029
1107
  resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
1030
1108
  engines: {node: '>=12'}
@@ -1037,6 +1115,12 @@ packages:
1037
1115
  cpu: [arm64]
1038
1116
  os: [linux]
1039
1117
 
1118
+ '@esbuild/linux-arm64@0.27.2':
1119
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
1120
+ engines: {node: '>=18'}
1121
+ cpu: [arm64]
1122
+ os: [linux]
1123
+
1040
1124
  '@esbuild/linux-arm@0.18.20':
1041
1125
  resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
1042
1126
  engines: {node: '>=12'}
@@ -1049,6 +1133,12 @@ packages:
1049
1133
  cpu: [arm]
1050
1134
  os: [linux]
1051
1135
 
1136
+ '@esbuild/linux-arm@0.27.2':
1137
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
1138
+ engines: {node: '>=18'}
1139
+ cpu: [arm]
1140
+ os: [linux]
1141
+
1052
1142
  '@esbuild/linux-ia32@0.18.20':
1053
1143
  resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
1054
1144
  engines: {node: '>=12'}
@@ -1061,6 +1151,12 @@ packages:
1061
1151
  cpu: [ia32]
1062
1152
  os: [linux]
1063
1153
 
1154
+ '@esbuild/linux-ia32@0.27.2':
1155
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
1156
+ engines: {node: '>=18'}
1157
+ cpu: [ia32]
1158
+ os: [linux]
1159
+
1064
1160
  '@esbuild/linux-loong64@0.18.20':
1065
1161
  resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
1066
1162
  engines: {node: '>=12'}
@@ -1073,6 +1169,12 @@ packages:
1073
1169
  cpu: [loong64]
1074
1170
  os: [linux]
1075
1171
 
1172
+ '@esbuild/linux-loong64@0.27.2':
1173
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
1174
+ engines: {node: '>=18'}
1175
+ cpu: [loong64]
1176
+ os: [linux]
1177
+
1076
1178
  '@esbuild/linux-mips64el@0.18.20':
1077
1179
  resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
1078
1180
  engines: {node: '>=12'}
@@ -1085,6 +1187,12 @@ packages:
1085
1187
  cpu: [mips64el]
1086
1188
  os: [linux]
1087
1189
 
1190
+ '@esbuild/linux-mips64el@0.27.2':
1191
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
1192
+ engines: {node: '>=18'}
1193
+ cpu: [mips64el]
1194
+ os: [linux]
1195
+
1088
1196
  '@esbuild/linux-ppc64@0.18.20':
1089
1197
  resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
1090
1198
  engines: {node: '>=12'}
@@ -1097,6 +1205,12 @@ packages:
1097
1205
  cpu: [ppc64]
1098
1206
  os: [linux]
1099
1207
 
1208
+ '@esbuild/linux-ppc64@0.27.2':
1209
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
1210
+ engines: {node: '>=18'}
1211
+ cpu: [ppc64]
1212
+ os: [linux]
1213
+
1100
1214
  '@esbuild/linux-riscv64@0.18.20':
1101
1215
  resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
1102
1216
  engines: {node: '>=12'}
@@ -1109,6 +1223,12 @@ packages:
1109
1223
  cpu: [riscv64]
1110
1224
  os: [linux]
1111
1225
 
1226
+ '@esbuild/linux-riscv64@0.27.2':
1227
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
1228
+ engines: {node: '>=18'}
1229
+ cpu: [riscv64]
1230
+ os: [linux]
1231
+
1112
1232
  '@esbuild/linux-s390x@0.18.20':
1113
1233
  resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
1114
1234
  engines: {node: '>=12'}
@@ -1121,6 +1241,12 @@ packages:
1121
1241
  cpu: [s390x]
1122
1242
  os: [linux]
1123
1243
 
1244
+ '@esbuild/linux-s390x@0.27.2':
1245
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
1246
+ engines: {node: '>=18'}
1247
+ cpu: [s390x]
1248
+ os: [linux]
1249
+
1124
1250
  '@esbuild/linux-x64@0.18.20':
1125
1251
  resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
1126
1252
  engines: {node: '>=12'}
@@ -1133,12 +1259,24 @@ packages:
1133
1259
  cpu: [x64]
1134
1260
  os: [linux]
1135
1261
 
1262
+ '@esbuild/linux-x64@0.27.2':
1263
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
1264
+ engines: {node: '>=18'}
1265
+ cpu: [x64]
1266
+ os: [linux]
1267
+
1136
1268
  '@esbuild/netbsd-arm64@0.25.12':
1137
1269
  resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
1138
1270
  engines: {node: '>=18'}
1139
1271
  cpu: [arm64]
1140
1272
  os: [netbsd]
1141
1273
 
1274
+ '@esbuild/netbsd-arm64@0.27.2':
1275
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
1276
+ engines: {node: '>=18'}
1277
+ cpu: [arm64]
1278
+ os: [netbsd]
1279
+
1142
1280
  '@esbuild/netbsd-x64@0.18.20':
1143
1281
  resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
1144
1282
  engines: {node: '>=12'}
@@ -1151,12 +1289,24 @@ packages:
1151
1289
  cpu: [x64]
1152
1290
  os: [netbsd]
1153
1291
 
1292
+ '@esbuild/netbsd-x64@0.27.2':
1293
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
1294
+ engines: {node: '>=18'}
1295
+ cpu: [x64]
1296
+ os: [netbsd]
1297
+
1154
1298
  '@esbuild/openbsd-arm64@0.25.12':
1155
1299
  resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
1156
1300
  engines: {node: '>=18'}
1157
1301
  cpu: [arm64]
1158
1302
  os: [openbsd]
1159
1303
 
1304
+ '@esbuild/openbsd-arm64@0.27.2':
1305
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
1306
+ engines: {node: '>=18'}
1307
+ cpu: [arm64]
1308
+ os: [openbsd]
1309
+
1160
1310
  '@esbuild/openbsd-x64@0.18.20':
1161
1311
  resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
1162
1312
  engines: {node: '>=12'}
@@ -1169,12 +1319,24 @@ packages:
1169
1319
  cpu: [x64]
1170
1320
  os: [openbsd]
1171
1321
 
1322
+ '@esbuild/openbsd-x64@0.27.2':
1323
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
1324
+ engines: {node: '>=18'}
1325
+ cpu: [x64]
1326
+ os: [openbsd]
1327
+
1172
1328
  '@esbuild/openharmony-arm64@0.25.12':
1173
1329
  resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
1174
1330
  engines: {node: '>=18'}
1175
1331
  cpu: [arm64]
1176
1332
  os: [openharmony]
1177
1333
 
1334
+ '@esbuild/openharmony-arm64@0.27.2':
1335
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
1336
+ engines: {node: '>=18'}
1337
+ cpu: [arm64]
1338
+ os: [openharmony]
1339
+
1178
1340
  '@esbuild/sunos-x64@0.18.20':
1179
1341
  resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
1180
1342
  engines: {node: '>=12'}
@@ -1187,6 +1349,12 @@ packages:
1187
1349
  cpu: [x64]
1188
1350
  os: [sunos]
1189
1351
 
1352
+ '@esbuild/sunos-x64@0.27.2':
1353
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
1354
+ engines: {node: '>=18'}
1355
+ cpu: [x64]
1356
+ os: [sunos]
1357
+
1190
1358
  '@esbuild/win32-arm64@0.18.20':
1191
1359
  resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
1192
1360
  engines: {node: '>=12'}
@@ -1199,6 +1367,12 @@ packages:
1199
1367
  cpu: [arm64]
1200
1368
  os: [win32]
1201
1369
 
1370
+ '@esbuild/win32-arm64@0.27.2':
1371
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
1372
+ engines: {node: '>=18'}
1373
+ cpu: [arm64]
1374
+ os: [win32]
1375
+
1202
1376
  '@esbuild/win32-ia32@0.18.20':
1203
1377
  resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
1204
1378
  engines: {node: '>=12'}
@@ -1211,6 +1385,12 @@ packages:
1211
1385
  cpu: [ia32]
1212
1386
  os: [win32]
1213
1387
 
1388
+ '@esbuild/win32-ia32@0.27.2':
1389
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
1390
+ engines: {node: '>=18'}
1391
+ cpu: [ia32]
1392
+ os: [win32]
1393
+
1214
1394
  '@esbuild/win32-x64@0.18.20':
1215
1395
  resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
1216
1396
  engines: {node: '>=12'}
@@ -1223,6 +1403,12 @@ packages:
1223
1403
  cpu: [x64]
1224
1404
  os: [win32]
1225
1405
 
1406
+ '@esbuild/win32-x64@0.27.2':
1407
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
1408
+ engines: {node: '>=18'}
1409
+ cpu: [x64]
1410
+ os: [win32]
1411
+
1226
1412
  '@eslint-community/eslint-utils@4.9.0':
1227
1413
  resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
1228
1414
  engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -2190,6 +2376,9 @@ packages:
2190
2376
  '@types/parse-json@4.0.2':
2191
2377
  resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
2192
2378
 
2379
+ '@types/pg@8.16.0':
2380
+ resolution: {integrity: sha512-RmhMd/wD+CF8Dfo+cVIy3RR5cl8CyfXQ0tGgW6XBL8L4LM/UTEbNXYRbLwU6w+CgrKBNbrQWt4FUtTfaU5jSYQ==}
2381
+
2193
2382
  '@types/qs@6.14.0':
2194
2383
  resolution: {integrity: sha512-eOunJqu0K1923aExK6y8p6fsihYEn/BYuQ4g0CxAAgFc4b/ZLN4CrsRZ55srTdqoiLzU2B2evC+apEIxprEzkQ==}
2195
2384
 
@@ -3222,6 +3411,12 @@ packages:
3222
3411
  sqlite3:
3223
3412
  optional: true
3224
3413
 
3414
+ drizzle-zod@0.8.3:
3415
+ resolution: {integrity: sha512-66yVOuvGhKJnTdiqj1/Xaaz9/qzOdRJADpDa68enqS6g3t0kpNkwNYjUuaeXgZfO/UWuIM9HIhSlJ6C5ZraMww==}
3416
+ peerDependencies:
3417
+ drizzle-orm: '>=0.36.0'
3418
+ zod: ^3.25.0 || ^4.0.0
3419
+
3225
3420
  dunder-proto@1.0.1:
3226
3421
  resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
3227
3422
  engines: {node: '>= 0.4'}
@@ -3316,6 +3511,11 @@ packages:
3316
3511
  engines: {node: '>=18'}
3317
3512
  hasBin: true
3318
3513
 
3514
+ esbuild@0.27.2:
3515
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
3516
+ engines: {node: '>=18'}
3517
+ hasBin: true
3518
+
3319
3519
  escalade@3.2.0:
3320
3520
  resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
3321
3521
  engines: {node: '>=6'}
@@ -6000,6 +6200,11 @@ packages:
6000
6200
  tslib@2.8.1:
6001
6201
  resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
6002
6202
 
6203
+ tsx@4.21.0:
6204
+ resolution: {integrity: sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==}
6205
+ engines: {node: '>=18.0.0'}
6206
+ hasBin: true
6207
+
6003
6208
  type-check@0.4.0:
6004
6209
  resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
6005
6210
  engines: {node: '>= 0.8.0'}
@@ -7526,147 +7731,225 @@ snapshots:
7526
7731
  '@esbuild/aix-ppc64@0.25.12':
7527
7732
  optional: true
7528
7733
 
7734
+ '@esbuild/aix-ppc64@0.27.2':
7735
+ optional: true
7736
+
7529
7737
  '@esbuild/android-arm64@0.18.20':
7530
7738
  optional: true
7531
7739
 
7532
7740
  '@esbuild/android-arm64@0.25.12':
7533
7741
  optional: true
7534
7742
 
7743
+ '@esbuild/android-arm64@0.27.2':
7744
+ optional: true
7745
+
7535
7746
  '@esbuild/android-arm@0.18.20':
7536
7747
  optional: true
7537
7748
 
7538
7749
  '@esbuild/android-arm@0.25.12':
7539
7750
  optional: true
7540
7751
 
7752
+ '@esbuild/android-arm@0.27.2':
7753
+ optional: true
7754
+
7541
7755
  '@esbuild/android-x64@0.18.20':
7542
7756
  optional: true
7543
7757
 
7544
7758
  '@esbuild/android-x64@0.25.12':
7545
7759
  optional: true
7546
7760
 
7761
+ '@esbuild/android-x64@0.27.2':
7762
+ optional: true
7763
+
7547
7764
  '@esbuild/darwin-arm64@0.18.20':
7548
7765
  optional: true
7549
7766
 
7550
7767
  '@esbuild/darwin-arm64@0.25.12':
7551
7768
  optional: true
7552
7769
 
7770
+ '@esbuild/darwin-arm64@0.27.2':
7771
+ optional: true
7772
+
7553
7773
  '@esbuild/darwin-x64@0.18.20':
7554
7774
  optional: true
7555
7775
 
7556
7776
  '@esbuild/darwin-x64@0.25.12':
7557
7777
  optional: true
7558
7778
 
7779
+ '@esbuild/darwin-x64@0.27.2':
7780
+ optional: true
7781
+
7559
7782
  '@esbuild/freebsd-arm64@0.18.20':
7560
7783
  optional: true
7561
7784
 
7562
7785
  '@esbuild/freebsd-arm64@0.25.12':
7563
7786
  optional: true
7564
7787
 
7788
+ '@esbuild/freebsd-arm64@0.27.2':
7789
+ optional: true
7790
+
7565
7791
  '@esbuild/freebsd-x64@0.18.20':
7566
7792
  optional: true
7567
7793
 
7568
7794
  '@esbuild/freebsd-x64@0.25.12':
7569
7795
  optional: true
7570
7796
 
7797
+ '@esbuild/freebsd-x64@0.27.2':
7798
+ optional: true
7799
+
7571
7800
  '@esbuild/linux-arm64@0.18.20':
7572
7801
  optional: true
7573
7802
 
7574
7803
  '@esbuild/linux-arm64@0.25.12':
7575
7804
  optional: true
7576
7805
 
7806
+ '@esbuild/linux-arm64@0.27.2':
7807
+ optional: true
7808
+
7577
7809
  '@esbuild/linux-arm@0.18.20':
7578
7810
  optional: true
7579
7811
 
7580
7812
  '@esbuild/linux-arm@0.25.12':
7581
7813
  optional: true
7582
7814
 
7815
+ '@esbuild/linux-arm@0.27.2':
7816
+ optional: true
7817
+
7583
7818
  '@esbuild/linux-ia32@0.18.20':
7584
7819
  optional: true
7585
7820
 
7586
7821
  '@esbuild/linux-ia32@0.25.12':
7587
7822
  optional: true
7588
7823
 
7824
+ '@esbuild/linux-ia32@0.27.2':
7825
+ optional: true
7826
+
7589
7827
  '@esbuild/linux-loong64@0.18.20':
7590
7828
  optional: true
7591
7829
 
7592
7830
  '@esbuild/linux-loong64@0.25.12':
7593
7831
  optional: true
7594
7832
 
7833
+ '@esbuild/linux-loong64@0.27.2':
7834
+ optional: true
7835
+
7595
7836
  '@esbuild/linux-mips64el@0.18.20':
7596
7837
  optional: true
7597
7838
 
7598
7839
  '@esbuild/linux-mips64el@0.25.12':
7599
7840
  optional: true
7600
7841
 
7842
+ '@esbuild/linux-mips64el@0.27.2':
7843
+ optional: true
7844
+
7601
7845
  '@esbuild/linux-ppc64@0.18.20':
7602
7846
  optional: true
7603
7847
 
7604
7848
  '@esbuild/linux-ppc64@0.25.12':
7605
7849
  optional: true
7606
7850
 
7851
+ '@esbuild/linux-ppc64@0.27.2':
7852
+ optional: true
7853
+
7607
7854
  '@esbuild/linux-riscv64@0.18.20':
7608
7855
  optional: true
7609
7856
 
7610
7857
  '@esbuild/linux-riscv64@0.25.12':
7611
7858
  optional: true
7612
7859
 
7860
+ '@esbuild/linux-riscv64@0.27.2':
7861
+ optional: true
7862
+
7613
7863
  '@esbuild/linux-s390x@0.18.20':
7614
7864
  optional: true
7615
7865
 
7616
7866
  '@esbuild/linux-s390x@0.25.12':
7617
7867
  optional: true
7618
7868
 
7869
+ '@esbuild/linux-s390x@0.27.2':
7870
+ optional: true
7871
+
7619
7872
  '@esbuild/linux-x64@0.18.20':
7620
7873
  optional: true
7621
7874
 
7622
7875
  '@esbuild/linux-x64@0.25.12':
7623
7876
  optional: true
7624
7877
 
7878
+ '@esbuild/linux-x64@0.27.2':
7879
+ optional: true
7880
+
7625
7881
  '@esbuild/netbsd-arm64@0.25.12':
7626
7882
  optional: true
7627
7883
 
7884
+ '@esbuild/netbsd-arm64@0.27.2':
7885
+ optional: true
7886
+
7628
7887
  '@esbuild/netbsd-x64@0.18.20':
7629
7888
  optional: true
7630
7889
 
7631
7890
  '@esbuild/netbsd-x64@0.25.12':
7632
7891
  optional: true
7633
7892
 
7893
+ '@esbuild/netbsd-x64@0.27.2':
7894
+ optional: true
7895
+
7634
7896
  '@esbuild/openbsd-arm64@0.25.12':
7635
7897
  optional: true
7636
7898
 
7899
+ '@esbuild/openbsd-arm64@0.27.2':
7900
+ optional: true
7901
+
7637
7902
  '@esbuild/openbsd-x64@0.18.20':
7638
7903
  optional: true
7639
7904
 
7640
7905
  '@esbuild/openbsd-x64@0.25.12':
7641
7906
  optional: true
7642
7907
 
7908
+ '@esbuild/openbsd-x64@0.27.2':
7909
+ optional: true
7910
+
7643
7911
  '@esbuild/openharmony-arm64@0.25.12':
7644
7912
  optional: true
7645
7913
 
7914
+ '@esbuild/openharmony-arm64@0.27.2':
7915
+ optional: true
7916
+
7646
7917
  '@esbuild/sunos-x64@0.18.20':
7647
7918
  optional: true
7648
7919
 
7649
7920
  '@esbuild/sunos-x64@0.25.12':
7650
7921
  optional: true
7651
7922
 
7923
+ '@esbuild/sunos-x64@0.27.2':
7924
+ optional: true
7925
+
7652
7926
  '@esbuild/win32-arm64@0.18.20':
7653
7927
  optional: true
7654
7928
 
7655
7929
  '@esbuild/win32-arm64@0.25.12':
7656
7930
  optional: true
7657
7931
 
7932
+ '@esbuild/win32-arm64@0.27.2':
7933
+ optional: true
7934
+
7658
7935
  '@esbuild/win32-ia32@0.18.20':
7659
7936
  optional: true
7660
7937
 
7661
7938
  '@esbuild/win32-ia32@0.25.12':
7662
7939
  optional: true
7663
7940
 
7941
+ '@esbuild/win32-ia32@0.27.2':
7942
+ optional: true
7943
+
7664
7944
  '@esbuild/win32-x64@0.18.20':
7665
7945
  optional: true
7666
7946
 
7667
7947
  '@esbuild/win32-x64@0.25.12':
7668
7948
  optional: true
7669
7949
 
7950
+ '@esbuild/win32-x64@0.27.2':
7951
+ optional: true
7952
+
7670
7953
  '@eslint-community/eslint-utils@4.9.0(eslint@9.39.2)':
7671
7954
  dependencies:
7672
7955
  eslint: 9.39.2
@@ -9117,6 +9400,12 @@ snapshots:
9117
9400
 
9118
9401
  '@types/parse-json@4.0.2': {}
9119
9402
 
9403
+ '@types/pg@8.16.0':
9404
+ dependencies:
9405
+ '@types/node': 25.0.3
9406
+ pg-protocol: 1.10.3
9407
+ pg-types: 2.2.0
9408
+
9120
9409
  '@types/qs@6.14.0': {}
9121
9410
 
9122
9411
  '@types/range-parser@1.2.7': {}
@@ -9959,7 +10248,7 @@ snapshots:
9959
10248
  path-type: 4.0.0
9960
10249
  yaml: 1.10.2
9961
10250
 
9962
- coze-coding-dev-sdk@0.5.0(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
10251
+ coze-coding-dev-sdk@0.5.0(@types/pg@8.16.0)(openai@6.15.0(ws@8.18.3)(zod@4.3.2))(ws@8.18.3):
9963
10252
  dependencies:
9964
10253
  '@aws-sdk/client-s3': 3.958.0
9965
10254
  '@aws-sdk/lib-storage': 3.958.0(@aws-sdk/client-s3@3.958.0)
@@ -9969,7 +10258,7 @@ snapshots:
9969
10258
  chalk: 5.6.2
9970
10259
  commander: 14.0.2
9971
10260
  drizzle-kit: 0.31.8
9972
- drizzle-orm: 0.45.1(pg@8.16.3)
10261
+ drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
9973
10262
  ora: 9.0.0
9974
10263
  pg: 8.16.3
9975
10264
  transitivePeerDependencies:
@@ -10225,10 +10514,16 @@ snapshots:
10225
10514
  transitivePeerDependencies:
10226
10515
  - supports-color
10227
10516
 
10228
- drizzle-orm@0.45.1(pg@8.16.3):
10517
+ drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3):
10229
10518
  optionalDependencies:
10519
+ '@types/pg': 8.16.0
10230
10520
  pg: 8.16.3
10231
10521
 
10522
+ drizzle-zod@0.8.3(drizzle-orm@0.45.1(@types/pg@8.16.0)(pg@8.16.3))(zod@4.3.2):
10523
+ dependencies:
10524
+ drizzle-orm: 0.45.1(@types/pg@8.16.0)(pg@8.16.3)
10525
+ zod: 4.3.2
10526
+
10232
10527
  dunder-proto@1.0.1:
10233
10528
  dependencies:
10234
10529
  call-bind-apply-helpers: 1.0.2
@@ -10425,6 +10720,35 @@ snapshots:
10425
10720
  '@esbuild/win32-ia32': 0.25.12
10426
10721
  '@esbuild/win32-x64': 0.25.12
10427
10722
 
10723
+ esbuild@0.27.2:
10724
+ optionalDependencies:
10725
+ '@esbuild/aix-ppc64': 0.27.2
10726
+ '@esbuild/android-arm': 0.27.2
10727
+ '@esbuild/android-arm64': 0.27.2
10728
+ '@esbuild/android-x64': 0.27.2
10729
+ '@esbuild/darwin-arm64': 0.27.2
10730
+ '@esbuild/darwin-x64': 0.27.2
10731
+ '@esbuild/freebsd-arm64': 0.27.2
10732
+ '@esbuild/freebsd-x64': 0.27.2
10733
+ '@esbuild/linux-arm': 0.27.2
10734
+ '@esbuild/linux-arm64': 0.27.2
10735
+ '@esbuild/linux-ia32': 0.27.2
10736
+ '@esbuild/linux-loong64': 0.27.2
10737
+ '@esbuild/linux-mips64el': 0.27.2
10738
+ '@esbuild/linux-ppc64': 0.27.2
10739
+ '@esbuild/linux-riscv64': 0.27.2
10740
+ '@esbuild/linux-s390x': 0.27.2
10741
+ '@esbuild/linux-x64': 0.27.2
10742
+ '@esbuild/netbsd-arm64': 0.27.2
10743
+ '@esbuild/netbsd-x64': 0.27.2
10744
+ '@esbuild/openbsd-arm64': 0.27.2
10745
+ '@esbuild/openbsd-x64': 0.27.2
10746
+ '@esbuild/openharmony-arm64': 0.27.2
10747
+ '@esbuild/sunos-x64': 0.27.2
10748
+ '@esbuild/win32-arm64': 0.27.2
10749
+ '@esbuild/win32-ia32': 0.27.2
10750
+ '@esbuild/win32-x64': 0.27.2
10751
+
10428
10752
  escalade@3.2.0: {}
10429
10753
 
10430
10754
  escape-html@1.0.3: {}
@@ -13611,6 +13935,13 @@ snapshots:
13611
13935
 
13612
13936
  tslib@2.8.1: {}
13613
13937
 
13938
+ tsx@4.21.0:
13939
+ dependencies:
13940
+ esbuild: 0.27.2
13941
+ get-tsconfig: 4.13.0
13942
+ optionalDependencies:
13943
+ fsevents: 2.3.3
13944
+
13614
13945
  type-check@0.4.0:
13615
13946
  dependencies:
13616
13947
  prelude-ls: 1.2.1