kitcn 0.33.1 → 0.33.3
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.
- package/CHANGELOG.md +19 -0
- package/dist/aggregate/index.d.ts +1 -1
- package/dist/auth/client/index.js +1 -1
- package/dist/auth/generated/index.d.ts +1 -1
- package/dist/auth/index.d.ts +19 -19
- package/dist/auth/nextjs/index.d.ts +2 -2
- package/dist/auth/nextjs/index.js +2 -2
- package/dist/auth/start/server/index.d.ts +2 -2
- package/dist/auth/start/server/index.js +2 -2
- package/dist/{auth-store-BnsWs1xd.js → auth-store-x3_wvhTR.js} +17 -2
- package/dist/{caller-factory-C-N540BC.js → caller-factory-CEKbQdGY.js} +1 -1
- package/dist/cli.mjs +48 -7
- package/dist/crpc/index.d.ts +9 -5
- package/dist/crpc/index.js +1 -1
- package/dist/{error-Dyqhgbf6.js → error-CLgc9khF.js} +18 -3
- package/dist/{generated-contract-disabled-B_EaHGCP.d.ts → generated-contract-disabled-BPjuEPZD.d.ts} +43 -43
- package/dist/{http-types-8FBr10yl.d.ts → http-types-BhhPZtwa.d.ts} +79 -3
- package/dist/{middleware-D2hKJuSZ.d.ts → middleware-BBS7oLtT.d.ts} +1 -1
- package/dist/orm/index.d.ts +1 -1
- package/dist/orm/migrations/index.d.ts +1 -1
- package/dist/plugins/index.d.ts +1 -1
- package/dist/{procedure-name-kn-awLk1.d.ts → procedure-name-DRSOwAJY.d.ts} +139 -5
- package/dist/ratelimit/index.d.ts +2 -2
- package/dist/react/index.js +1 -1
- package/dist/rsc/index.d.ts +3 -4
- package/dist/rsc/index.js +1 -1
- package/dist/server/index.d.ts +4 -5
- package/dist/server/index.js +1 -1
- package/dist/solid/index.js +17 -2
- package/dist/{types-Cl0utsTL.d.ts → types-C7JkpfeY.d.ts} +1 -2
- package/dist/{where-clause-compiler-CoPVAVDO.d.ts → where-clause-compiler-jhCEPHxi.d.ts} +129 -129
- package/package.json +1 -1
- package/dist/caller-factory-C3pcbzo0.d.ts +0 -140
- package/dist/transformer-BEkxlnss.d.ts +0 -78
- /package/dist/{context-utils-ax351iFc.d.ts → context-utils-Cbv4r0AA.d.ts} +0 -0
- /package/dist/{token-CZpDQUHd.d.ts → token-tlbNKQS0.d.ts} +0 -0
- /package/dist/{types-CzGsrLrY.d.ts → types-Bkeicpo6.d.ts} +0 -0
|
@@ -89,7 +89,7 @@ declare const migrationStorageTables: {
|
|
|
89
89
|
readonly migration_state: ConvexTableWithColumns<{
|
|
90
90
|
name: "migration_state";
|
|
91
91
|
columns: {
|
|
92
|
-
|
|
92
|
+
status: ConvexTextBuilderInitial<""> & {
|
|
93
93
|
_: {
|
|
94
94
|
notNull: true;
|
|
95
95
|
};
|
|
@@ -99,23 +99,28 @@ declare const migrationStorageTables: {
|
|
|
99
99
|
};
|
|
100
100
|
} & {
|
|
101
101
|
_: {
|
|
102
|
-
fieldName: "
|
|
102
|
+
fieldName: "status";
|
|
103
103
|
};
|
|
104
104
|
};
|
|
105
|
-
|
|
105
|
+
cursor: ConvexTextBuilderInitial<""> & {
|
|
106
106
|
_: {
|
|
107
|
-
|
|
107
|
+
tableName: "migration_state";
|
|
108
108
|
};
|
|
109
109
|
} & {
|
|
110
|
+
_: {
|
|
111
|
+
fieldName: "cursor";
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
direction: ConvexTextBuilderInitial<""> & {
|
|
110
115
|
_: {
|
|
111
116
|
tableName: "migration_state";
|
|
112
117
|
};
|
|
113
118
|
} & {
|
|
114
119
|
_: {
|
|
115
|
-
fieldName: "
|
|
120
|
+
fieldName: "direction";
|
|
116
121
|
};
|
|
117
122
|
};
|
|
118
|
-
|
|
123
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
119
124
|
_: {
|
|
120
125
|
notNull: true;
|
|
121
126
|
};
|
|
@@ -125,10 +130,10 @@ declare const migrationStorageTables: {
|
|
|
125
130
|
};
|
|
126
131
|
} & {
|
|
127
132
|
_: {
|
|
128
|
-
fieldName: "
|
|
133
|
+
fieldName: "updatedAt";
|
|
129
134
|
};
|
|
130
135
|
};
|
|
131
|
-
|
|
136
|
+
processed: ConvexNumberBuilderInitial<""> & {
|
|
132
137
|
_: {
|
|
133
138
|
notNull: true;
|
|
134
139
|
};
|
|
@@ -138,37 +143,37 @@ declare const migrationStorageTables: {
|
|
|
138
143
|
};
|
|
139
144
|
} & {
|
|
140
145
|
_: {
|
|
141
|
-
fieldName: "
|
|
146
|
+
fieldName: "processed";
|
|
142
147
|
};
|
|
143
148
|
};
|
|
144
|
-
|
|
149
|
+
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
145
150
|
_: {
|
|
146
151
|
tableName: "migration_state";
|
|
147
152
|
};
|
|
148
153
|
} & {
|
|
149
154
|
_: {
|
|
150
|
-
fieldName: "
|
|
155
|
+
fieldName: "startedAt";
|
|
151
156
|
};
|
|
152
157
|
};
|
|
153
|
-
|
|
158
|
+
completedAt: ConvexNumberBuilderInitial<""> & {
|
|
154
159
|
_: {
|
|
155
160
|
tableName: "migration_state";
|
|
156
161
|
};
|
|
157
162
|
} & {
|
|
158
163
|
_: {
|
|
159
|
-
fieldName: "
|
|
164
|
+
fieldName: "completedAt";
|
|
160
165
|
};
|
|
161
166
|
};
|
|
162
|
-
|
|
167
|
+
lastError: ConvexTextBuilderInitial<""> & {
|
|
163
168
|
_: {
|
|
164
169
|
tableName: "migration_state";
|
|
165
170
|
};
|
|
166
171
|
} & {
|
|
167
172
|
_: {
|
|
168
|
-
fieldName: "
|
|
173
|
+
fieldName: "lastError";
|
|
169
174
|
};
|
|
170
175
|
};
|
|
171
|
-
|
|
176
|
+
migrationId: ConvexTextBuilderInitial<""> & {
|
|
172
177
|
_: {
|
|
173
178
|
notNull: true;
|
|
174
179
|
};
|
|
@@ -178,19 +183,10 @@ declare const migrationStorageTables: {
|
|
|
178
183
|
};
|
|
179
184
|
} & {
|
|
180
185
|
_: {
|
|
181
|
-
fieldName: "
|
|
182
|
-
};
|
|
183
|
-
};
|
|
184
|
-
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
185
|
-
_: {
|
|
186
|
-
tableName: "migration_state";
|
|
187
|
-
};
|
|
188
|
-
} & {
|
|
189
|
-
_: {
|
|
190
|
-
fieldName: "startedAt";
|
|
186
|
+
fieldName: "migrationId";
|
|
191
187
|
};
|
|
192
188
|
};
|
|
193
|
-
|
|
189
|
+
checksum: ConvexTextBuilderInitial<""> & {
|
|
194
190
|
_: {
|
|
195
191
|
notNull: true;
|
|
196
192
|
};
|
|
@@ -200,25 +196,29 @@ declare const migrationStorageTables: {
|
|
|
200
196
|
};
|
|
201
197
|
} & {
|
|
202
198
|
_: {
|
|
203
|
-
fieldName: "
|
|
199
|
+
fieldName: "checksum";
|
|
204
200
|
};
|
|
205
201
|
};
|
|
206
|
-
|
|
202
|
+
applied: ConvexBooleanBuilderInitial<""> & {
|
|
203
|
+
_: {
|
|
204
|
+
notNull: true;
|
|
205
|
+
};
|
|
206
|
+
} & {
|
|
207
207
|
_: {
|
|
208
208
|
tableName: "migration_state";
|
|
209
209
|
};
|
|
210
210
|
} & {
|
|
211
211
|
_: {
|
|
212
|
-
fieldName: "
|
|
212
|
+
fieldName: "applied";
|
|
213
213
|
};
|
|
214
214
|
};
|
|
215
|
-
|
|
215
|
+
runId: ConvexTextBuilderInitial<""> & {
|
|
216
216
|
_: {
|
|
217
217
|
tableName: "migration_state";
|
|
218
218
|
};
|
|
219
219
|
} & {
|
|
220
220
|
_: {
|
|
221
|
-
fieldName: "
|
|
221
|
+
fieldName: "runId";
|
|
222
222
|
};
|
|
223
223
|
};
|
|
224
224
|
writeMode: ConvexTextBuilderInitial<""> & {
|
|
@@ -269,7 +269,7 @@ declare const migrationStorageTables: {
|
|
|
269
269
|
fieldName: "direction";
|
|
270
270
|
};
|
|
271
271
|
};
|
|
272
|
-
|
|
272
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
273
273
|
_: {
|
|
274
274
|
notNull: true;
|
|
275
275
|
};
|
|
@@ -279,7 +279,7 @@ declare const migrationStorageTables: {
|
|
|
279
279
|
};
|
|
280
280
|
} & {
|
|
281
281
|
_: {
|
|
282
|
-
fieldName: "
|
|
282
|
+
fieldName: "updatedAt";
|
|
283
283
|
};
|
|
284
284
|
};
|
|
285
285
|
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
@@ -295,35 +295,35 @@ declare const migrationStorageTables: {
|
|
|
295
295
|
fieldName: "startedAt";
|
|
296
296
|
};
|
|
297
297
|
};
|
|
298
|
-
|
|
299
|
-
_: {
|
|
300
|
-
notNull: true;
|
|
301
|
-
};
|
|
302
|
-
} & {
|
|
298
|
+
completedAt: ConvexNumberBuilderInitial<""> & {
|
|
303
299
|
_: {
|
|
304
300
|
tableName: "migration_run";
|
|
305
301
|
};
|
|
306
302
|
} & {
|
|
307
303
|
_: {
|
|
308
|
-
fieldName: "
|
|
304
|
+
fieldName: "completedAt";
|
|
309
305
|
};
|
|
310
306
|
};
|
|
311
|
-
|
|
307
|
+
lastError: ConvexTextBuilderInitial<""> & {
|
|
312
308
|
_: {
|
|
313
309
|
tableName: "migration_run";
|
|
314
310
|
};
|
|
315
311
|
} & {
|
|
316
312
|
_: {
|
|
317
|
-
fieldName: "
|
|
313
|
+
fieldName: "lastError";
|
|
318
314
|
};
|
|
319
315
|
};
|
|
320
|
-
|
|
316
|
+
runId: ConvexTextBuilderInitial<""> & {
|
|
317
|
+
_: {
|
|
318
|
+
notNull: true;
|
|
319
|
+
};
|
|
320
|
+
} & {
|
|
321
321
|
_: {
|
|
322
322
|
tableName: "migration_run";
|
|
323
323
|
};
|
|
324
324
|
} & {
|
|
325
325
|
_: {
|
|
326
|
-
fieldName: "
|
|
326
|
+
fieldName: "runId";
|
|
327
327
|
};
|
|
328
328
|
};
|
|
329
329
|
dryRun: ConvexBooleanBuilderInitial<""> & {
|
|
@@ -1011,7 +1011,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1011
1011
|
readonly aggregate_bucket: ConvexTableWithColumns<{
|
|
1012
1012
|
name: "aggregate_bucket";
|
|
1013
1013
|
columns: {
|
|
1014
|
-
|
|
1014
|
+
count: ConvexNumberBuilderInitial<""> & {
|
|
1015
1015
|
_: {
|
|
1016
1016
|
notNull: true;
|
|
1017
1017
|
};
|
|
@@ -1021,10 +1021,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1021
1021
|
};
|
|
1022
1022
|
} & {
|
|
1023
1023
|
_: {
|
|
1024
|
-
fieldName: "
|
|
1024
|
+
fieldName: "count";
|
|
1025
1025
|
};
|
|
1026
1026
|
};
|
|
1027
|
-
|
|
1027
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1028
1028
|
_: {
|
|
1029
1029
|
notNull: true;
|
|
1030
1030
|
};
|
|
@@ -1034,7 +1034,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1034
1034
|
};
|
|
1035
1035
|
} & {
|
|
1036
1036
|
_: {
|
|
1037
|
-
fieldName: "
|
|
1037
|
+
fieldName: "updatedAt";
|
|
1038
1038
|
};
|
|
1039
1039
|
};
|
|
1040
1040
|
indexName: ConvexTextBuilderInitial<""> & {
|
|
@@ -1136,7 +1136,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1136
1136
|
readonly aggregate_member: ConvexTableWithColumns<{
|
|
1137
1137
|
name: "aggregate_member";
|
|
1138
1138
|
columns: {
|
|
1139
|
-
|
|
1139
|
+
kind: ConvexTextBuilderInitial<""> & {
|
|
1140
1140
|
_: {
|
|
1141
1141
|
notNull: true;
|
|
1142
1142
|
};
|
|
@@ -1146,10 +1146,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1146
1146
|
};
|
|
1147
1147
|
} & {
|
|
1148
1148
|
_: {
|
|
1149
|
-
fieldName: "
|
|
1149
|
+
fieldName: "kind";
|
|
1150
1150
|
};
|
|
1151
1151
|
};
|
|
1152
|
-
|
|
1152
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1153
1153
|
_: {
|
|
1154
1154
|
notNull: true;
|
|
1155
1155
|
};
|
|
@@ -1159,7 +1159,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1159
1159
|
};
|
|
1160
1160
|
} & {
|
|
1161
1161
|
_: {
|
|
1162
|
-
fieldName: "
|
|
1162
|
+
fieldName: "updatedAt";
|
|
1163
1163
|
};
|
|
1164
1164
|
};
|
|
1165
1165
|
indexName: ConvexTextBuilderInitial<""> & {
|
|
@@ -1326,7 +1326,11 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1326
1326
|
readonly aggregate_extrema: ConvexTableWithColumns<{
|
|
1327
1327
|
name: "aggregate_extrema";
|
|
1328
1328
|
columns: {
|
|
1329
|
-
|
|
1329
|
+
value: ConvexCustomBuilderInitial<"", convex_values0.VAny<any, "required", string>> & {
|
|
1330
|
+
_: {
|
|
1331
|
+
$type: convex_values0.Value;
|
|
1332
|
+
};
|
|
1333
|
+
} & {
|
|
1330
1334
|
_: {
|
|
1331
1335
|
notNull: true;
|
|
1332
1336
|
};
|
|
@@ -1336,14 +1340,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1336
1340
|
};
|
|
1337
1341
|
} & {
|
|
1338
1342
|
_: {
|
|
1339
|
-
fieldName: "
|
|
1343
|
+
fieldName: "value";
|
|
1340
1344
|
};
|
|
1341
1345
|
};
|
|
1342
|
-
|
|
1343
|
-
_: {
|
|
1344
|
-
$type: convex_values0.Value;
|
|
1345
|
-
};
|
|
1346
|
-
} & {
|
|
1346
|
+
count: ConvexNumberBuilderInitial<""> & {
|
|
1347
1347
|
_: {
|
|
1348
1348
|
notNull: true;
|
|
1349
1349
|
};
|
|
@@ -1353,10 +1353,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1353
1353
|
};
|
|
1354
1354
|
} & {
|
|
1355
1355
|
_: {
|
|
1356
|
-
fieldName: "
|
|
1356
|
+
fieldName: "count";
|
|
1357
1357
|
};
|
|
1358
1358
|
};
|
|
1359
|
-
|
|
1359
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1360
1360
|
_: {
|
|
1361
1361
|
notNull: true;
|
|
1362
1362
|
};
|
|
@@ -1366,7 +1366,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1366
1366
|
};
|
|
1367
1367
|
} & {
|
|
1368
1368
|
_: {
|
|
1369
|
-
fieldName: "
|
|
1369
|
+
fieldName: "updatedAt";
|
|
1370
1370
|
};
|
|
1371
1371
|
};
|
|
1372
1372
|
indexName: ConvexTextBuilderInitial<""> & {
|
|
@@ -1605,7 +1605,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1605
1605
|
fieldName: "cursor";
|
|
1606
1606
|
};
|
|
1607
1607
|
};
|
|
1608
|
-
|
|
1608
|
+
kind: ConvexTextBuilderInitial<""> & {
|
|
1609
1609
|
_: {
|
|
1610
1610
|
notNull: true;
|
|
1611
1611
|
};
|
|
@@ -1615,10 +1615,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1615
1615
|
};
|
|
1616
1616
|
} & {
|
|
1617
1617
|
_: {
|
|
1618
|
-
fieldName: "
|
|
1618
|
+
fieldName: "kind";
|
|
1619
1619
|
};
|
|
1620
1620
|
};
|
|
1621
|
-
|
|
1621
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1622
1622
|
_: {
|
|
1623
1623
|
notNull: true;
|
|
1624
1624
|
};
|
|
@@ -1628,10 +1628,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1628
1628
|
};
|
|
1629
1629
|
} & {
|
|
1630
1630
|
_: {
|
|
1631
|
-
fieldName: "
|
|
1631
|
+
fieldName: "updatedAt";
|
|
1632
1632
|
};
|
|
1633
1633
|
};
|
|
1634
|
-
|
|
1634
|
+
indexName: ConvexTextBuilderInitial<""> & {
|
|
1635
1635
|
_: {
|
|
1636
1636
|
notNull: true;
|
|
1637
1637
|
};
|
|
@@ -1641,28 +1641,23 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1641
1641
|
};
|
|
1642
1642
|
} & {
|
|
1643
1643
|
_: {
|
|
1644
|
-
fieldName: "
|
|
1644
|
+
fieldName: "indexName";
|
|
1645
1645
|
};
|
|
1646
1646
|
};
|
|
1647
|
-
|
|
1647
|
+
keyDefinitionHash: ConvexTextBuilderInitial<""> & {
|
|
1648
1648
|
_: {
|
|
1649
|
-
|
|
1649
|
+
notNull: true;
|
|
1650
1650
|
};
|
|
1651
1651
|
} & {
|
|
1652
|
-
_: {
|
|
1653
|
-
fieldName: "completedAt";
|
|
1654
|
-
};
|
|
1655
|
-
};
|
|
1656
|
-
lastError: ConvexTextBuilderInitial<""> & {
|
|
1657
1652
|
_: {
|
|
1658
1653
|
tableName: "aggregate_state";
|
|
1659
1654
|
};
|
|
1660
1655
|
} & {
|
|
1661
1656
|
_: {
|
|
1662
|
-
fieldName: "
|
|
1657
|
+
fieldName: "keyDefinitionHash";
|
|
1663
1658
|
};
|
|
1664
1659
|
};
|
|
1665
|
-
|
|
1660
|
+
metricDefinitionHash: ConvexTextBuilderInitial<""> & {
|
|
1666
1661
|
_: {
|
|
1667
1662
|
notNull: true;
|
|
1668
1663
|
};
|
|
@@ -1672,10 +1667,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1672
1667
|
};
|
|
1673
1668
|
} & {
|
|
1674
1669
|
_: {
|
|
1675
|
-
fieldName: "
|
|
1670
|
+
fieldName: "metricDefinitionHash";
|
|
1676
1671
|
};
|
|
1677
1672
|
};
|
|
1678
|
-
|
|
1673
|
+
processed: ConvexNumberBuilderInitial<""> & {
|
|
1679
1674
|
_: {
|
|
1680
1675
|
notNull: true;
|
|
1681
1676
|
};
|
|
@@ -1685,10 +1680,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1685
1680
|
};
|
|
1686
1681
|
} & {
|
|
1687
1682
|
_: {
|
|
1688
|
-
fieldName: "
|
|
1683
|
+
fieldName: "processed";
|
|
1689
1684
|
};
|
|
1690
1685
|
};
|
|
1691
|
-
|
|
1686
|
+
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
1692
1687
|
_: {
|
|
1693
1688
|
notNull: true;
|
|
1694
1689
|
};
|
|
@@ -1698,20 +1693,25 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1698
1693
|
};
|
|
1699
1694
|
} & {
|
|
1700
1695
|
_: {
|
|
1701
|
-
fieldName: "
|
|
1696
|
+
fieldName: "startedAt";
|
|
1702
1697
|
};
|
|
1703
1698
|
};
|
|
1704
|
-
|
|
1699
|
+
completedAt: ConvexNumberBuilderInitial<""> & {
|
|
1705
1700
|
_: {
|
|
1706
|
-
|
|
1701
|
+
tableName: "aggregate_state";
|
|
1707
1702
|
};
|
|
1708
1703
|
} & {
|
|
1704
|
+
_: {
|
|
1705
|
+
fieldName: "completedAt";
|
|
1706
|
+
};
|
|
1707
|
+
};
|
|
1708
|
+
lastError: ConvexTextBuilderInitial<""> & {
|
|
1709
1709
|
_: {
|
|
1710
1710
|
tableName: "aggregate_state";
|
|
1711
1711
|
};
|
|
1712
1712
|
} & {
|
|
1713
1713
|
_: {
|
|
1714
|
-
fieldName: "
|
|
1714
|
+
fieldName: "lastError";
|
|
1715
1715
|
};
|
|
1716
1716
|
};
|
|
1717
1717
|
tableKey: ConvexTextBuilderInitial<""> & {
|
|
@@ -1738,7 +1738,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1738
1738
|
readonly migration_state: ConvexTableWithColumns<{
|
|
1739
1739
|
name: "migration_state";
|
|
1740
1740
|
columns: {
|
|
1741
|
-
|
|
1741
|
+
status: ConvexTextBuilderInitial<""> & {
|
|
1742
1742
|
_: {
|
|
1743
1743
|
notNull: true;
|
|
1744
1744
|
};
|
|
@@ -1748,23 +1748,28 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1748
1748
|
};
|
|
1749
1749
|
} & {
|
|
1750
1750
|
_: {
|
|
1751
|
-
fieldName: "
|
|
1751
|
+
fieldName: "status";
|
|
1752
1752
|
};
|
|
1753
1753
|
};
|
|
1754
|
-
|
|
1754
|
+
cursor: ConvexTextBuilderInitial<""> & {
|
|
1755
1755
|
_: {
|
|
1756
|
-
|
|
1756
|
+
tableName: "migration_state";
|
|
1757
1757
|
};
|
|
1758
1758
|
} & {
|
|
1759
|
+
_: {
|
|
1760
|
+
fieldName: "cursor";
|
|
1761
|
+
};
|
|
1762
|
+
};
|
|
1763
|
+
direction: ConvexTextBuilderInitial<""> & {
|
|
1759
1764
|
_: {
|
|
1760
1765
|
tableName: "migration_state";
|
|
1761
1766
|
};
|
|
1762
1767
|
} & {
|
|
1763
1768
|
_: {
|
|
1764
|
-
fieldName: "
|
|
1769
|
+
fieldName: "direction";
|
|
1765
1770
|
};
|
|
1766
1771
|
};
|
|
1767
|
-
|
|
1772
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1768
1773
|
_: {
|
|
1769
1774
|
notNull: true;
|
|
1770
1775
|
};
|
|
@@ -1774,10 +1779,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1774
1779
|
};
|
|
1775
1780
|
} & {
|
|
1776
1781
|
_: {
|
|
1777
|
-
fieldName: "
|
|
1782
|
+
fieldName: "updatedAt";
|
|
1778
1783
|
};
|
|
1779
1784
|
};
|
|
1780
|
-
|
|
1785
|
+
processed: ConvexNumberBuilderInitial<""> & {
|
|
1781
1786
|
_: {
|
|
1782
1787
|
notNull: true;
|
|
1783
1788
|
};
|
|
@@ -1787,37 +1792,37 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1787
1792
|
};
|
|
1788
1793
|
} & {
|
|
1789
1794
|
_: {
|
|
1790
|
-
fieldName: "
|
|
1795
|
+
fieldName: "processed";
|
|
1791
1796
|
};
|
|
1792
1797
|
};
|
|
1793
|
-
|
|
1798
|
+
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
1794
1799
|
_: {
|
|
1795
1800
|
tableName: "migration_state";
|
|
1796
1801
|
};
|
|
1797
1802
|
} & {
|
|
1798
1803
|
_: {
|
|
1799
|
-
fieldName: "
|
|
1804
|
+
fieldName: "startedAt";
|
|
1800
1805
|
};
|
|
1801
1806
|
};
|
|
1802
|
-
|
|
1807
|
+
completedAt: ConvexNumberBuilderInitial<""> & {
|
|
1803
1808
|
_: {
|
|
1804
1809
|
tableName: "migration_state";
|
|
1805
1810
|
};
|
|
1806
1811
|
} & {
|
|
1807
1812
|
_: {
|
|
1808
|
-
fieldName: "
|
|
1813
|
+
fieldName: "completedAt";
|
|
1809
1814
|
};
|
|
1810
1815
|
};
|
|
1811
|
-
|
|
1816
|
+
lastError: ConvexTextBuilderInitial<""> & {
|
|
1812
1817
|
_: {
|
|
1813
1818
|
tableName: "migration_state";
|
|
1814
1819
|
};
|
|
1815
1820
|
} & {
|
|
1816
1821
|
_: {
|
|
1817
|
-
fieldName: "
|
|
1822
|
+
fieldName: "lastError";
|
|
1818
1823
|
};
|
|
1819
1824
|
};
|
|
1820
|
-
|
|
1825
|
+
migrationId: ConvexTextBuilderInitial<""> & {
|
|
1821
1826
|
_: {
|
|
1822
1827
|
notNull: true;
|
|
1823
1828
|
};
|
|
@@ -1827,19 +1832,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1827
1832
|
};
|
|
1828
1833
|
} & {
|
|
1829
1834
|
_: {
|
|
1830
|
-
fieldName: "
|
|
1831
|
-
};
|
|
1832
|
-
};
|
|
1833
|
-
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
1834
|
-
_: {
|
|
1835
|
-
tableName: "migration_state";
|
|
1836
|
-
};
|
|
1837
|
-
} & {
|
|
1838
|
-
_: {
|
|
1839
|
-
fieldName: "startedAt";
|
|
1835
|
+
fieldName: "migrationId";
|
|
1840
1836
|
};
|
|
1841
1837
|
};
|
|
1842
|
-
|
|
1838
|
+
checksum: ConvexTextBuilderInitial<""> & {
|
|
1843
1839
|
_: {
|
|
1844
1840
|
notNull: true;
|
|
1845
1841
|
};
|
|
@@ -1849,25 +1845,29 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1849
1845
|
};
|
|
1850
1846
|
} & {
|
|
1851
1847
|
_: {
|
|
1852
|
-
fieldName: "
|
|
1848
|
+
fieldName: "checksum";
|
|
1853
1849
|
};
|
|
1854
1850
|
};
|
|
1855
|
-
|
|
1851
|
+
applied: ConvexBooleanBuilderInitial<""> & {
|
|
1852
|
+
_: {
|
|
1853
|
+
notNull: true;
|
|
1854
|
+
};
|
|
1855
|
+
} & {
|
|
1856
1856
|
_: {
|
|
1857
1857
|
tableName: "migration_state";
|
|
1858
1858
|
};
|
|
1859
1859
|
} & {
|
|
1860
1860
|
_: {
|
|
1861
|
-
fieldName: "
|
|
1861
|
+
fieldName: "applied";
|
|
1862
1862
|
};
|
|
1863
1863
|
};
|
|
1864
|
-
|
|
1864
|
+
runId: ConvexTextBuilderInitial<""> & {
|
|
1865
1865
|
_: {
|
|
1866
1866
|
tableName: "migration_state";
|
|
1867
1867
|
};
|
|
1868
1868
|
} & {
|
|
1869
1869
|
_: {
|
|
1870
|
-
fieldName: "
|
|
1870
|
+
fieldName: "runId";
|
|
1871
1871
|
};
|
|
1872
1872
|
};
|
|
1873
1873
|
writeMode: ConvexTextBuilderInitial<""> & {
|
|
@@ -1918,7 +1918,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1918
1918
|
fieldName: "direction";
|
|
1919
1919
|
};
|
|
1920
1920
|
};
|
|
1921
|
-
|
|
1921
|
+
updatedAt: ConvexNumberBuilderInitial<""> & {
|
|
1922
1922
|
_: {
|
|
1923
1923
|
notNull: true;
|
|
1924
1924
|
};
|
|
@@ -1928,7 +1928,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1928
1928
|
};
|
|
1929
1929
|
} & {
|
|
1930
1930
|
_: {
|
|
1931
|
-
fieldName: "
|
|
1931
|
+
fieldName: "updatedAt";
|
|
1932
1932
|
};
|
|
1933
1933
|
};
|
|
1934
1934
|
startedAt: ConvexNumberBuilderInitial<""> & {
|
|
@@ -1944,35 +1944,35 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
|
|
|
1944
1944
|
fieldName: "startedAt";
|
|
1945
1945
|
};
|
|
1946
1946
|
};
|
|
1947
|
-
|
|
1948
|
-
_: {
|
|
1949
|
-
notNull: true;
|
|
1950
|
-
};
|
|
1951
|
-
} & {
|
|
1947
|
+
completedAt: ConvexNumberBuilderInitial<""> & {
|
|
1952
1948
|
_: {
|
|
1953
1949
|
tableName: "migration_run";
|
|
1954
1950
|
};
|
|
1955
1951
|
} & {
|
|
1956
1952
|
_: {
|
|
1957
|
-
fieldName: "
|
|
1953
|
+
fieldName: "completedAt";
|
|
1958
1954
|
};
|
|
1959
1955
|
};
|
|
1960
|
-
|
|
1956
|
+
lastError: ConvexTextBuilderInitial<""> & {
|
|
1961
1957
|
_: {
|
|
1962
1958
|
tableName: "migration_run";
|
|
1963
1959
|
};
|
|
1964
1960
|
} & {
|
|
1965
1961
|
_: {
|
|
1966
|
-
fieldName: "
|
|
1962
|
+
fieldName: "lastError";
|
|
1967
1963
|
};
|
|
1968
1964
|
};
|
|
1969
|
-
|
|
1965
|
+
runId: ConvexTextBuilderInitial<""> & {
|
|
1966
|
+
_: {
|
|
1967
|
+
notNull: true;
|
|
1968
|
+
};
|
|
1969
|
+
} & {
|
|
1970
1970
|
_: {
|
|
1971
1971
|
tableName: "migration_run";
|
|
1972
1972
|
};
|
|
1973
1973
|
} & {
|
|
1974
1974
|
_: {
|
|
1975
|
-
fieldName: "
|
|
1975
|
+
fieldName: "runId";
|
|
1976
1976
|
};
|
|
1977
1977
|
};
|
|
1978
1978
|
dryRun: ConvexBooleanBuilderInitial<""> & {
|