@zenstackhq/runtime 3.0.0-alpha.16 → 3.0.0-alpha.18

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.
@@ -1040,6 +1040,9 @@ var PostgresCrudDialect = class extends BaseCrudDialect {
1040
1040
  return `ARRAY[${values.map((v) => typeof v === "string" ? `'${v}'` : v)}]`;
1041
1041
  }
1042
1042
  }
1043
+ get supportInsertWithDefault() {
1044
+ return true;
1045
+ }
1043
1046
  };
1044
1047
 
1045
1048
  // src/client/crud/dialects/sqlite.ts
@@ -1194,6 +1197,9 @@ var SqliteCrudDialect = class extends BaseCrudDialect {
1194
1197
  buildArrayLiteralSQL(_values) {
1195
1198
  throw new Error("SQLite does not support array literals");
1196
1199
  }
1200
+ get supportInsertWithDefault() {
1201
+ return false;
1202
+ }
1197
1203
  };
1198
1204
 
1199
1205
  // src/client/crud/dialects/index.ts