@tspvivek/baasix-sdk 0.1.0-alpha.6 → 0.1.0-alpha.7
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/dist/{client-BydI-nYY.d.ts → client-B7CU_tr7.d.ts} +2 -0
- package/dist/{client-BY4L9ASe.d.cts → client-BCNmu9xC.d.cts} +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js.map +1 -1
- package/dist/modules/auth.cjs.map +1 -1
- package/dist/modules/auth.d.cts +1 -1
- package/dist/modules/auth.d.ts +1 -1
- package/dist/modules/auth.js.map +1 -1
- package/dist/modules/files.d.cts +1 -1
- package/dist/modules/files.d.ts +1 -1
- package/dist/modules/items.d.cts +2 -2
- package/dist/modules/items.d.ts +2 -2
- package/dist/modules/schemas.d.cts +1 -1
- package/dist/modules/schemas.d.ts +1 -1
- package/package.json +1 -1
|
@@ -381,6 +381,8 @@ interface IndexDefinition {
|
|
|
381
381
|
name: string;
|
|
382
382
|
fields: string[];
|
|
383
383
|
unique?: boolean;
|
|
384
|
+
/** When true, NULL values are considered equal for unique indexes (PostgreSQL 15+) */
|
|
385
|
+
nullsNotDistinct?: boolean;
|
|
384
386
|
}
|
|
385
387
|
type RelationshipType = "M2O" | "O2M" | "M2M" | "M2A" | "O2O";
|
|
386
388
|
interface RelationshipDefinition {
|
|
@@ -381,6 +381,8 @@ interface IndexDefinition {
|
|
|
381
381
|
name: string;
|
|
382
382
|
fields: string[];
|
|
383
383
|
unique?: boolean;
|
|
384
|
+
/** When true, NULL values are considered equal for unique indexes (PostgreSQL 15+) */
|
|
385
|
+
nullsNotDistinct?: boolean;
|
|
384
386
|
}
|
|
385
387
|
type RelationshipType = "M2O" | "O2M" | "M2M" | "M2A" | "O2O";
|
|
386
388
|
interface RelationshipDefinition {
|