kitcn 0.27.5 → 0.28.0

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.
@@ -1323,7 +1323,11 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
1323
1323
  readonly aggregate_extrema: ConvexTableWithColumns<{
1324
1324
  name: "aggregate_extrema";
1325
1325
  columns: {
1326
- count: ConvexNumberBuilderInitial<""> & {
1326
+ value: ConvexCustomBuilderInitial<"", convex_values0.VAny<any, "required", string>> & {
1327
+ _: {
1328
+ $type: convex_values0.Value;
1329
+ };
1330
+ } & {
1327
1331
  _: {
1328
1332
  notNull: true;
1329
1333
  };
@@ -1333,14 +1337,10 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
1333
1337
  };
1334
1338
  } & {
1335
1339
  _: {
1336
- fieldName: "count";
1340
+ fieldName: "value";
1337
1341
  };
1338
1342
  };
1339
- value: ConvexCustomBuilderInitial<"", convex_values0.VAny<any, "required", string>> & {
1340
- _: {
1341
- $type: convex_values0.Value;
1342
- };
1343
- } & {
1343
+ count: ConvexNumberBuilderInitial<""> & {
1344
1344
  _: {
1345
1345
  notNull: true;
1346
1346
  };
@@ -1350,7 +1350,7 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
1350
1350
  };
1351
1351
  } & {
1352
1352
  _: {
1353
- fieldName: "value";
1353
+ fieldName: "count";
1354
1354
  };
1355
1355
  };
1356
1356
  updatedAt: ConvexNumberBuilderInitial<""> & {
@@ -1589,26 +1589,26 @@ declare const BUILTIN_SCHEMA_EXTENSIONS: readonly [SchemaExtension<{
1589
1589
  fieldName: "status";
1590
1590
  };
1591
1591
  };
1592
- kind: ConvexTextBuilderInitial<""> & {
1593
- _: {
1594
- notNull: true;
1595
- };
1596
- } & {
1592
+ cursor: ConvexTextBuilderInitial<""> & {
1597
1593
  _: {
1598
1594
  tableName: "aggregate_state";
1599
1595
  };
1600
1596
  } & {
1601
1597
  _: {
1602
- fieldName: "kind";
1598
+ fieldName: "cursor";
1603
1599
  };
1604
1600
  };
1605
- cursor: ConvexTextBuilderInitial<""> & {
1601
+ kind: ConvexTextBuilderInitial<""> & {
1602
+ _: {
1603
+ notNull: true;
1604
+ };
1605
+ } & {
1606
1606
  _: {
1607
1607
  tableName: "aggregate_state";
1608
1608
  };
1609
1609
  } & {
1610
1610
  _: {
1611
- fieldName: "cursor";
1611
+ fieldName: "kind";
1612
1612
  };
1613
1613
  };
1614
1614
  updatedAt: ConvexNumberBuilderInitial<""> & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kitcn",
3
- "version": "0.27.5",
3
+ "version": "0.28.0",
4
4
  "description": "kitcn - React Query integration and CLI tools for Convex",
5
5
  "keywords": [
6
6
  "convex",
@@ -95,7 +95,7 @@
95
95
  "@tanstack/react-query": ">=5",
96
96
  "@tanstack/react-start": ">=1",
97
97
  "@tanstack/solid-query": ">=5",
98
- "better-auth": ">=1.6.11 <1.7.0",
98
+ "better-auth": ">=1.7.0 <1.8.0",
99
99
  "convex": ">=1.42 <1.45.0",
100
100
  "hono": "4.12.9",
101
101
  "next": ">=14",