@prisma-next/sql-contract-ts 0.10.0-dev.12 → 0.10.0-dev.14
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/contract-builder.d.mts +2 -2
- package/package.json +10 -10
- package/src/contract-types.ts +2 -2
|
@@ -665,13 +665,13 @@ type BuiltStorage<Definition> = {
|
|
|
665
665
|
readonly namespaces: {
|
|
666
666
|
readonly __unbound__: {
|
|
667
667
|
readonly id: '__unbound__';
|
|
668
|
-
readonly kind
|
|
668
|
+
readonly kind: string;
|
|
669
669
|
readonly tables: BuiltStorageTables<Definition>;
|
|
670
670
|
readonly types?: Readonly<Record<string, PostgresEnumStorageEntry>>;
|
|
671
671
|
};
|
|
672
672
|
} & { readonly [Ns in Exclude<DefinitionNamespaces<Definition>, '__unbound__'>]: {
|
|
673
673
|
readonly id: Ns;
|
|
674
|
-
readonly kind
|
|
674
|
+
readonly kind: string;
|
|
675
675
|
readonly tables: Record<never, never>;
|
|
676
676
|
readonly types?: Readonly<Record<string, PostgresEnumStorageEntry>>;
|
|
677
677
|
} };
|
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/sql-contract-ts",
|
|
3
|
-
"version": "0.10.0-dev.
|
|
3
|
+
"version": "0.10.0-dev.14",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"description": "SQL-specific TypeScript contract authoring surface for Prisma Next",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@prisma-next/config": "0.10.0-dev.
|
|
10
|
-
"@prisma-next/contract": "0.10.0-dev.
|
|
11
|
-
"@prisma-next/contract-authoring": "0.10.0-dev.
|
|
12
|
-
"@prisma-next/framework-components": "0.10.0-dev.
|
|
13
|
-
"@prisma-next/sql-contract": "0.10.0-dev.
|
|
14
|
-
"@prisma-next/utils": "0.10.0-dev.
|
|
9
|
+
"@prisma-next/config": "0.10.0-dev.14",
|
|
10
|
+
"@prisma-next/contract": "0.10.0-dev.14",
|
|
11
|
+
"@prisma-next/contract-authoring": "0.10.0-dev.14",
|
|
12
|
+
"@prisma-next/framework-components": "0.10.0-dev.14",
|
|
13
|
+
"@prisma-next/sql-contract": "0.10.0-dev.14",
|
|
14
|
+
"@prisma-next/utils": "0.10.0-dev.14",
|
|
15
15
|
"arktype": "^2.2.0",
|
|
16
16
|
"pathe": "^2.0.3",
|
|
17
17
|
"ts-toolbelt": "^9.6.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@prisma-next/test-utils": "0.10.0-dev.
|
|
21
|
-
"@prisma-next/tsconfig": "0.10.0-dev.
|
|
20
|
+
"@prisma-next/test-utils": "0.10.0-dev.14",
|
|
21
|
+
"@prisma-next/tsconfig": "0.10.0-dev.14",
|
|
22
22
|
"@types/pg": "8.20.0",
|
|
23
23
|
"pg": "8.20.0",
|
|
24
|
-
"@prisma-next/tsdown": "0.10.0-dev.
|
|
24
|
+
"@prisma-next/tsdown": "0.10.0-dev.14",
|
|
25
25
|
"tsdown": "0.22.0",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
27
|
"vitest": "4.1.6"
|
package/src/contract-types.ts
CHANGED
|
@@ -559,14 +559,14 @@ type BuiltStorage<Definition> = {
|
|
|
559
559
|
readonly namespaces: {
|
|
560
560
|
readonly __unbound__: {
|
|
561
561
|
readonly id: '__unbound__';
|
|
562
|
-
readonly kind
|
|
562
|
+
readonly kind: string;
|
|
563
563
|
readonly tables: BuiltStorageTables<Definition>;
|
|
564
564
|
readonly types?: Readonly<Record<string, PostgresEnumStorageEntry>>;
|
|
565
565
|
};
|
|
566
566
|
} & {
|
|
567
567
|
readonly [Ns in Exclude<DefinitionNamespaces<Definition>, '__unbound__'>]: {
|
|
568
568
|
readonly id: Ns;
|
|
569
|
-
readonly kind
|
|
569
|
+
readonly kind: string;
|
|
570
570
|
readonly tables: Record<never, never>;
|
|
571
571
|
readonly types?: Readonly<Record<string, PostgresEnumStorageEntry>>;
|
|
572
572
|
};
|