@prisma-next/extension-paradedb 0.13.0-dev.31 → 0.13.0-dev.33
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/package.json +18 -18
- package/src/contract.d.ts +16 -22
package/package.json
CHANGED
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/extension-paradedb",
|
|
3
|
-
"version": "0.13.0-dev.
|
|
3
|
+
"version": "0.13.0-dev.33",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@prisma-next/contract": "0.13.0-dev.
|
|
9
|
-
"@prisma-next/contract-authoring": "0.13.0-dev.
|
|
10
|
-
"@prisma-next/family-sql": "0.13.0-dev.
|
|
11
|
-
"@prisma-next/framework-components": "0.13.0-dev.
|
|
12
|
-
"@prisma-next/migration-tools": "0.13.0-dev.
|
|
13
|
-
"@prisma-next/sql-contract": "0.13.0-dev.
|
|
14
|
-
"@prisma-next/sql-operations": "0.13.0-dev.
|
|
15
|
-
"@prisma-next/sql-relational-core": "0.13.0-dev.
|
|
16
|
-
"@prisma-next/sql-runtime": "0.13.0-dev.
|
|
8
|
+
"@prisma-next/contract": "0.13.0-dev.33",
|
|
9
|
+
"@prisma-next/contract-authoring": "0.13.0-dev.33",
|
|
10
|
+
"@prisma-next/family-sql": "0.13.0-dev.33",
|
|
11
|
+
"@prisma-next/framework-components": "0.13.0-dev.33",
|
|
12
|
+
"@prisma-next/migration-tools": "0.13.0-dev.33",
|
|
13
|
+
"@prisma-next/sql-contract": "0.13.0-dev.33",
|
|
14
|
+
"@prisma-next/sql-operations": "0.13.0-dev.33",
|
|
15
|
+
"@prisma-next/sql-relational-core": "0.13.0-dev.33",
|
|
16
|
+
"@prisma-next/sql-runtime": "0.13.0-dev.33",
|
|
17
17
|
"arktype": "^2.2.0"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@prisma-next/adapter-postgres": "0.13.0-dev.
|
|
21
|
-
"@prisma-next/cli": "0.13.0-dev.
|
|
22
|
-
"@prisma-next/operations": "0.13.0-dev.
|
|
23
|
-
"@prisma-next/sql-contract-ts": "0.13.0-dev.
|
|
24
|
-
"@prisma-next/target-postgres": "0.13.0-dev.
|
|
25
|
-
"@prisma-next/test-utils": "0.13.0-dev.
|
|
26
|
-
"@prisma-next/tsconfig": "0.13.0-dev.
|
|
27
|
-
"@prisma-next/tsdown": "0.13.0-dev.
|
|
20
|
+
"@prisma-next/adapter-postgres": "0.13.0-dev.33",
|
|
21
|
+
"@prisma-next/cli": "0.13.0-dev.33",
|
|
22
|
+
"@prisma-next/operations": "0.13.0-dev.33",
|
|
23
|
+
"@prisma-next/sql-contract-ts": "0.13.0-dev.33",
|
|
24
|
+
"@prisma-next/target-postgres": "0.13.0-dev.33",
|
|
25
|
+
"@prisma-next/test-utils": "0.13.0-dev.33",
|
|
26
|
+
"@prisma-next/tsconfig": "0.13.0-dev.33",
|
|
27
|
+
"@prisma-next/tsdown": "0.13.0-dev.33",
|
|
28
28
|
"tsdown": "0.22.1",
|
|
29
29
|
"typescript": "5.9.3",
|
|
30
30
|
"vitest": "4.1.8"
|
package/src/contract.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ import type {
|
|
|
23
23
|
} from '@prisma-next/sql-contract/types';
|
|
24
24
|
import type {
|
|
25
25
|
Contract as ContractType,
|
|
26
|
-
ContractModelDefinitions,
|
|
27
26
|
ExecutionHashBase,
|
|
28
27
|
NamespaceId,
|
|
29
28
|
ProfileHashBase,
|
|
@@ -43,8 +42,8 @@ type DefaultLiteralValue<CodecId extends string, _Encoded> = CodecId extends key
|
|
|
43
42
|
? CodecTypes[CodecId]['output']
|
|
44
43
|
: _Encoded;
|
|
45
44
|
|
|
46
|
-
export type FieldOutputTypes = Record<string, never
|
|
47
|
-
export type FieldInputTypes = Record<string, never
|
|
45
|
+
export type FieldOutputTypes = { readonly public: Record<string, never> };
|
|
46
|
+
export type FieldInputTypes = { readonly public: Record<string, never> };
|
|
48
47
|
export type TypeMaps = TypeMapsType<
|
|
49
48
|
CodecTypes,
|
|
50
49
|
QueryOperationTypes,
|
|
@@ -53,24 +52,21 @@ export type TypeMaps = TypeMapsType<
|
|
|
53
52
|
>;
|
|
54
53
|
|
|
55
54
|
type ContractBase = Omit<
|
|
56
|
-
ContractType<
|
|
57
|
-
{
|
|
58
|
-
readonly
|
|
59
|
-
readonly
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
readonly
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
readonly entries: { readonly table: {} };
|
|
68
|
-
};
|
|
55
|
+
ContractType<{
|
|
56
|
+
readonly namespaces: {
|
|
57
|
+
readonly __unbound__: {
|
|
58
|
+
readonly id: '__unbound__';
|
|
59
|
+
readonly kind: 'sql-namespace';
|
|
60
|
+
readonly entries: { readonly table: {} };
|
|
61
|
+
};
|
|
62
|
+
readonly public: {
|
|
63
|
+
readonly id: 'public';
|
|
64
|
+
readonly kind: 'sql-namespace';
|
|
65
|
+
readonly entries: { readonly table: {} };
|
|
69
66
|
};
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
>,
|
|
67
|
+
};
|
|
68
|
+
readonly storageHash: StorageHash;
|
|
69
|
+
}>,
|
|
74
70
|
'roots' | 'domain'
|
|
75
71
|
> & {
|
|
76
72
|
readonly target: 'postgres';
|
|
@@ -105,8 +101,6 @@ type ContractBase = Omit<
|
|
|
105
101
|
readonly profileHash: ProfileHash;
|
|
106
102
|
};
|
|
107
103
|
|
|
108
|
-
export type Models = ContractModelDefinitions<Contract>;
|
|
109
|
-
|
|
110
104
|
export type Contract = ContractWithTypeMaps<ContractBase, TypeMaps>;
|
|
111
105
|
|
|
112
106
|
export type Namespaces = Contract['storage']['namespaces'];
|