@prisma-next/extension-pgvector 0.13.0-dev.32 → 0.13.0-dev.34
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 +21 -21
- package/src/contract.d.ts +23 -29
package/package.json
CHANGED
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/extension-pgvector",
|
|
3
|
-
"version": "0.13.0-dev.
|
|
3
|
+
"version": "0.13.0-dev.34",
|
|
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.
|
|
17
|
-
"@prisma-next/sql-schema-ir": "0.13.0-dev.
|
|
8
|
+
"@prisma-next/contract": "0.13.0-dev.34",
|
|
9
|
+
"@prisma-next/contract-authoring": "0.13.0-dev.34",
|
|
10
|
+
"@prisma-next/family-sql": "0.13.0-dev.34",
|
|
11
|
+
"@prisma-next/framework-components": "0.13.0-dev.34",
|
|
12
|
+
"@prisma-next/migration-tools": "0.13.0-dev.34",
|
|
13
|
+
"@prisma-next/sql-contract": "0.13.0-dev.34",
|
|
14
|
+
"@prisma-next/sql-operations": "0.13.0-dev.34",
|
|
15
|
+
"@prisma-next/sql-relational-core": "0.13.0-dev.34",
|
|
16
|
+
"@prisma-next/sql-runtime": "0.13.0-dev.34",
|
|
17
|
+
"@prisma-next/sql-schema-ir": "0.13.0-dev.34",
|
|
18
18
|
"@standard-schema/spec": "^1.1.0",
|
|
19
19
|
"arktype": "^2.2.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@prisma-next/adapter-postgres": "0.13.0-dev.
|
|
23
|
-
"@prisma-next/cli": "0.13.0-dev.
|
|
24
|
-
"@prisma-next/operations": "0.13.0-dev.
|
|
25
|
-
"@prisma-next/postgres": "0.13.0-dev.
|
|
26
|
-
"@prisma-next/sql-contract-ts": "0.13.0-dev.
|
|
27
|
-
"@prisma-next/target-postgres": "0.13.0-dev.
|
|
28
|
-
"@prisma-next/test-utils": "0.13.0-dev.
|
|
29
|
-
"@prisma-next/tsconfig": "0.13.0-dev.
|
|
30
|
-
"@prisma-next/tsdown": "0.13.0-dev.
|
|
22
|
+
"@prisma-next/adapter-postgres": "0.13.0-dev.34",
|
|
23
|
+
"@prisma-next/cli": "0.13.0-dev.34",
|
|
24
|
+
"@prisma-next/operations": "0.13.0-dev.34",
|
|
25
|
+
"@prisma-next/postgres": "0.13.0-dev.34",
|
|
26
|
+
"@prisma-next/sql-contract-ts": "0.13.0-dev.34",
|
|
27
|
+
"@prisma-next/target-postgres": "0.13.0-dev.34",
|
|
28
|
+
"@prisma-next/test-utils": "0.13.0-dev.34",
|
|
29
|
+
"@prisma-next/tsconfig": "0.13.0-dev.34",
|
|
30
|
+
"@prisma-next/tsdown": "0.13.0-dev.34",
|
|
31
31
|
"tsdown": "0.22.1",
|
|
32
32
|
"typescript": "5.9.3",
|
|
33
33
|
"vitest": "4.1.8"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
|
-
"@prisma-next/adapter-postgres": "0.13.0-dev.
|
|
36
|
+
"@prisma-next/adapter-postgres": "0.13.0-dev.34",
|
|
37
37
|
"typescript": ">=5.9"
|
|
38
38
|
},
|
|
39
39
|
"peerDependenciesMeta": {
|
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,32 +52,29 @@ 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: 'postgres-unbound-schema';
|
|
60
|
+
readonly entries: { readonly table: {} };
|
|
61
|
+
};
|
|
62
|
+
readonly public: {
|
|
63
|
+
readonly id: 'public';
|
|
64
|
+
readonly kind: 'postgres-schema';
|
|
65
|
+
readonly entries: { readonly table: {} };
|
|
69
66
|
};
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
67
|
+
};
|
|
68
|
+
readonly types: {
|
|
69
|
+
readonly vector: {
|
|
70
|
+
readonly kind: 'codec-instance';
|
|
71
|
+
readonly codecId: 'pg/vector@1';
|
|
72
|
+
readonly nativeType: 'vector';
|
|
73
|
+
readonly typeParams: Record<string, never>;
|
|
77
74
|
};
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
>,
|
|
75
|
+
};
|
|
76
|
+
readonly storageHash: StorageHash;
|
|
77
|
+
}>,
|
|
82
78
|
'roots' | 'domain'
|
|
83
79
|
> & {
|
|
84
80
|
readonly target: 'postgres';
|
|
@@ -113,8 +109,6 @@ type ContractBase = Omit<
|
|
|
113
109
|
readonly profileHash: ProfileHash;
|
|
114
110
|
};
|
|
115
111
|
|
|
116
|
-
export type Models = ContractModelDefinitions<Contract>;
|
|
117
|
-
|
|
118
112
|
export type Contract = ContractWithTypeMaps<ContractBase, TypeMaps>;
|
|
119
113
|
|
|
120
114
|
export type Namespaces = Contract['storage']['namespaces'];
|