@prisma-next/extension-pgvector 0.1.0-pr.65.10 → 0.1.0-pr.65.12

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.
@@ -16,7 +16,7 @@ var pgvectorPackMeta = {
16
16
  id: "pgvector",
17
17
  familyId: "sql",
18
18
  targetId: "postgres",
19
- version: "1.0.0",
19
+ version: "0.0.1",
20
20
  capabilities: {
21
21
  postgres: {
22
22
  "pgvector/cosine": true
@@ -57,4 +57,4 @@ export {
57
57
  pgvectorPackMeta,
58
58
  pgvectorRuntimeOperation
59
59
  };
60
- //# sourceMappingURL=chunk-YZ7VDBYT.js.map
60
+ //# sourceMappingURL=chunk-QZXQPESZ.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/core/descriptor-meta.ts"],"sourcesContent":["import type { ExtensionPackRef } from '@prisma-next/contract/framework-components';\nimport type { SqlOperationSignature } from '@prisma-next/sql-operations';\n\nconst pgvectorTypeId = 'pg/vector@1' as const;\n\nconst cosineLowering = {\n targetFamily: 'sql',\n strategy: 'function',\n template: '1 - ({{self}} <=> {{arg0}})',\n} as const;\n\n/**\n * Shared operation definition used by both pack metadata and runtime descriptor.\n * Frozen to prevent accidental mutation.\n */\nconst cosineDistanceOperation = Object.freeze({\n method: 'cosineDistance',\n args: [{ kind: 'param' }],\n returns: { kind: 'builtin', type: 'number' },\n lowering: cosineLowering,\n} as const);\n\nexport const pgvectorPackMeta = {\n kind: 'extension',\n id: 'pgvector',\n familyId: 'sql',\n targetId: 'postgres',\n version: '1.0.0',\n capabilities: {\n postgres: {\n 'pgvector/cosine': true,\n },\n },\n types: {\n codecTypes: {\n import: {\n package: '@prisma-next/extension-pgvector/codec-types',\n named: 'CodecTypes',\n alias: 'PgVectorTypes',\n },\n },\n operationTypes: {\n import: {\n package: '@prisma-next/extension-pgvector/operation-types',\n named: 'OperationTypes',\n alias: 'PgVectorOperationTypes',\n },\n },\n storage: [\n { typeId: pgvectorTypeId, familyId: 'sql', targetId: 'postgres', nativeType: 'vector' },\n ],\n },\n operations: [\n {\n for: pgvectorTypeId,\n ...cosineDistanceOperation,\n },\n ],\n} as const satisfies ExtensionPackRef<'sql', 'postgres'>;\n\nexport const pgvectorRuntimeOperation: SqlOperationSignature = {\n forTypeId: pgvectorTypeId,\n ...cosineDistanceOperation,\n};\n"],"mappings":";AAGA,IAAM,iBAAiB;AAEvB,IAAM,iBAAiB;AAAA,EACrB,cAAc;AAAA,EACd,UAAU;AAAA,EACV,UAAU;AACZ;AAMA,IAAM,0BAA0B,OAAO,OAAO;AAAA,EAC5C,QAAQ;AAAA,EACR,MAAM,CAAC,EAAE,MAAM,QAAQ,CAAC;AAAA,EACxB,SAAS,EAAE,MAAM,WAAW,MAAM,SAAS;AAAA,EAC3C,UAAU;AACZ,CAAU;AAEH,IAAM,mBAAmB;AAAA,EAC9B,MAAM;AAAA,EACN,IAAI;AAAA,EACJ,UAAU;AAAA,EACV,UAAU;AAAA,EACV,SAAS;AAAA,EACT,cAAc;AAAA,IACZ,UAAU;AAAA,MACR,mBAAmB;AAAA,IACrB;AAAA,EACF;AAAA,EACA,OAAO;AAAA,IACL,YAAY;AAAA,MACV,QAAQ;AAAA,QACN,SAAS;AAAA,QACT,OAAO;AAAA,QACP,OAAO;AAAA,MACT;AAAA,IACF;AAAA,IACA,gBAAgB;AAAA,MACd,QAAQ;AAAA,QACN,SAAS;AAAA,QACT,OAAO;AAAA,QACP,OAAO;AAAA,MACT;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,EAAE,QAAQ,gBAAgB,UAAU,OAAO,UAAU,YAAY,YAAY,SAAS;AAAA,IACxF;AAAA,EACF;AAAA,EACA,YAAY;AAAA,IACV;AAAA,MACE,KAAK;AAAA,MACL,GAAG;AAAA,IACL;AAAA,EACF;AACF;AAEO,IAAM,2BAAkD;AAAA,EAC7D,WAAW;AAAA,EACX,GAAG;AACL;","names":[]}
1
+ {"version":3,"sources":["../../src/core/descriptor-meta.ts"],"sourcesContent":["import type { ExtensionPackRef } from '@prisma-next/contract/framework-components';\nimport type { SqlOperationSignature } from '@prisma-next/sql-operations';\n\nconst pgvectorTypeId = 'pg/vector@1' as const;\n\nconst cosineLowering = {\n targetFamily: 'sql',\n strategy: 'function',\n template: '1 - ({{self}} <=> {{arg0}})',\n} as const;\n\n/**\n * Shared operation definition used by both pack metadata and runtime descriptor.\n * Frozen to prevent accidental mutation.\n */\nconst cosineDistanceOperation = Object.freeze({\n method: 'cosineDistance',\n args: [{ kind: 'param' }],\n returns: { kind: 'builtin', type: 'number' },\n lowering: cosineLowering,\n} as const);\n\nexport const pgvectorPackMeta = {\n kind: 'extension',\n id: 'pgvector',\n familyId: 'sql',\n targetId: 'postgres',\n version: '0.0.1',\n capabilities: {\n postgres: {\n 'pgvector/cosine': true,\n },\n },\n types: {\n codecTypes: {\n import: {\n package: '@prisma-next/extension-pgvector/codec-types',\n named: 'CodecTypes',\n alias: 'PgVectorTypes',\n },\n },\n operationTypes: {\n import: {\n package: '@prisma-next/extension-pgvector/operation-types',\n named: 'OperationTypes',\n alias: 'PgVectorOperationTypes',\n },\n },\n storage: [\n { typeId: pgvectorTypeId, familyId: 'sql', targetId: 'postgres', nativeType: 'vector' },\n ],\n },\n operations: [\n {\n for: pgvectorTypeId,\n ...cosineDistanceOperation,\n },\n ],\n} as const satisfies ExtensionPackRef<'sql', 'postgres'>;\n\nexport const pgvectorRuntimeOperation: SqlOperationSignature = {\n forTypeId: pgvectorTypeId,\n ...cosineDistanceOperation,\n};\n"],"mappings":";AAGA,IAAM,iBAAiB;AAEvB,IAAM,iBAAiB;AAAA,EACrB,cAAc;AAAA,EACd,UAAU;AAAA,EACV,UAAU;AACZ;AAMA,IAAM,0BAA0B,OAAO,OAAO;AAAA,EAC5C,QAAQ;AAAA,EACR,MAAM,CAAC,EAAE,MAAM,QAAQ,CAAC;AAAA,EACxB,SAAS,EAAE,MAAM,WAAW,MAAM,SAAS;AAAA,EAC3C,UAAU;AACZ,CAAU;AAEH,IAAM,mBAAmB;AAAA,EAC9B,MAAM;AAAA,EACN,IAAI;AAAA,EACJ,UAAU;AAAA,EACV,UAAU;AAAA,EACV,SAAS;AAAA,EACT,cAAc;AAAA,IACZ,UAAU;AAAA,MACR,mBAAmB;AAAA,IACrB;AAAA,EACF;AAAA,EACA,OAAO;AAAA,IACL,YAAY;AAAA,MACV,QAAQ;AAAA,QACN,SAAS;AAAA,QACT,OAAO;AAAA,QACP,OAAO;AAAA,MACT;AAAA,IACF;AAAA,IACA,gBAAgB;AAAA,MACd,QAAQ;AAAA,QACN,SAAS;AAAA,QACT,OAAO;AAAA,QACP,OAAO;AAAA,MACT;AAAA,IACF;AAAA,IACA,SAAS;AAAA,MACP,EAAE,QAAQ,gBAAgB,UAAU,OAAO,UAAU,YAAY,YAAY,SAAS;AAAA,IACxF;AAAA,EACF;AAAA,EACA,YAAY;AAAA,IACV;AAAA,MACE,KAAK;AAAA,MACL,GAAG;AAAA,IACL;AAAA,EACF;AACF;AAEO,IAAM,2BAAkD;AAAA,EAC7D,WAAW;AAAA,EACX,GAAG;AACL;","names":[]}
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  pgvectorPackMeta
3
- } from "./chunk-YZ7VDBYT.js";
3
+ } from "./chunk-QZXQPESZ.js";
4
4
 
5
5
  // src/exports/control.ts
6
6
  function verifyVectorExtensionInstalled(schema) {
@@ -1,5 +1,52 @@
1
- import { ExtensionPackRef } from '@prisma-next/contract/framework-components';
2
-
3
- declare const pgvectorPack: ExtensionPackRef<'sql', 'postgres'>;
1
+ declare const pgvectorPack: {
2
+ readonly kind: "extension";
3
+ readonly id: "pgvector";
4
+ readonly familyId: "sql";
5
+ readonly targetId: "postgres";
6
+ readonly version: "0.0.1";
7
+ readonly capabilities: {
8
+ readonly postgres: {
9
+ readonly 'pgvector/cosine': true;
10
+ };
11
+ };
12
+ readonly types: {
13
+ readonly codecTypes: {
14
+ readonly import: {
15
+ readonly package: "@prisma-next/extension-pgvector/codec-types";
16
+ readonly named: "CodecTypes";
17
+ readonly alias: "PgVectorTypes";
18
+ };
19
+ };
20
+ readonly operationTypes: {
21
+ readonly import: {
22
+ readonly package: "@prisma-next/extension-pgvector/operation-types";
23
+ readonly named: "OperationTypes";
24
+ readonly alias: "PgVectorOperationTypes";
25
+ };
26
+ };
27
+ readonly storage: readonly [{
28
+ readonly typeId: "pg/vector@1";
29
+ readonly familyId: "sql";
30
+ readonly targetId: "postgres";
31
+ readonly nativeType: "vector";
32
+ }];
33
+ };
34
+ readonly operations: readonly [{
35
+ readonly method: "cosineDistance";
36
+ readonly args: readonly [{
37
+ readonly kind: "param";
38
+ }];
39
+ readonly returns: {
40
+ readonly kind: "builtin";
41
+ readonly type: "number";
42
+ };
43
+ readonly lowering: {
44
+ readonly targetFamily: "sql";
45
+ readonly strategy: "function";
46
+ readonly template: "1 - ({{self}} <=> {{arg0}})";
47
+ };
48
+ readonly for: "pg/vector@1";
49
+ }];
50
+ };
4
51
 
5
52
  export { pgvectorPack as default };
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  pgvectorPackMeta
3
- } from "./chunk-YZ7VDBYT.js";
3
+ } from "./chunk-QZXQPESZ.js";
4
4
 
5
5
  // src/exports/pack.ts
6
6
  var pgvectorPack = pgvectorPackMeta;
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/exports/pack.ts"],"sourcesContent":["import type { ExtensionPackRef } from '@prisma-next/contract/framework-components';\nimport { pgvectorPackMeta } from '../core/descriptor-meta';\n\nconst pgvectorPack: ExtensionPackRef<'sql', 'postgres'> = pgvectorPackMeta;\n\nexport default pgvectorPack;\n"],"mappings":";;;;;AAGA,IAAM,eAAoD;AAE1D,IAAO,eAAQ;","names":[]}
1
+ {"version":3,"sources":["../../src/exports/pack.ts"],"sourcesContent":["import { pgvectorPackMeta } from '../core/descriptor-meta';\n\nconst pgvectorPack = pgvectorPackMeta;\n\nexport default pgvectorPack;\n"],"mappings":";;;;;AAEA,IAAM,eAAe;AAErB,IAAO,eAAQ;","names":[]}
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  pgvectorPackMeta,
3
3
  pgvectorRuntimeOperation
4
- } from "./chunk-YZ7VDBYT.js";
4
+ } from "./chunk-QZXQPESZ.js";
5
5
 
6
6
  // src/exports/runtime.ts
7
7
  import { createCodecRegistry } from "@prisma-next/sql-relational-core/ast";
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@prisma-next/extension-pgvector",
3
- "version": "0.1.0-pr.65.10",
3
+ "version": "0.1.0-pr.65.12",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "dependencies": {
7
7
  "arktype": "^2.0.0",
8
- "@prisma-next/cli": "0.1.0-pr.65.10",
9
- "@prisma-next/contract": "0.1.0-pr.65.10",
10
- "@prisma-next/contract-authoring": "0.1.0-pr.65.10",
11
- "@prisma-next/core-control-plane": "0.1.0-pr.65.10",
12
- "@prisma-next/family-sql": "0.1.0-pr.65.10",
13
- "@prisma-next/sql-operations": "0.1.0-pr.65.10",
14
- "@prisma-next/sql-relational-core": "0.1.0-pr.65.10",
15
- "@prisma-next/sql-runtime": "0.1.0-pr.65.10",
16
- "@prisma-next/sql-schema-ir": "0.1.0-pr.65.10"
8
+ "@prisma-next/cli": "0.1.0-pr.65.12",
9
+ "@prisma-next/contract": "0.1.0-pr.65.12",
10
+ "@prisma-next/contract-authoring": "0.1.0-pr.65.12",
11
+ "@prisma-next/core-control-plane": "0.1.0-pr.65.12",
12
+ "@prisma-next/family-sql": "0.1.0-pr.65.12",
13
+ "@prisma-next/sql-operations": "0.1.0-pr.65.12",
14
+ "@prisma-next/sql-relational-core": "0.1.0-pr.65.12",
15
+ "@prisma-next/sql-runtime": "0.1.0-pr.65.12",
16
+ "@prisma-next/sql-schema-ir": "0.1.0-pr.65.12"
17
17
  },
18
18
  "devDependencies": {
19
19
  "@vitest/coverage-v8": "^4.0.0",
@@ -21,12 +21,12 @@
21
21
  "typescript": "^5.9.3",
22
22
  "vite-tsconfig-paths": "^5.1.4",
23
23
  "vitest": "^4.0.16",
24
- "@prisma-next/adapter-postgres": "0.1.0-pr.65.10",
25
- "@prisma-next/operations": "0.1.0-pr.65.10",
26
- "@prisma-next/sql-contract": "0.1.0-pr.65.10",
27
- "@prisma-next/sql-contract-ts": "0.1.0-pr.65.10",
28
- "@prisma-next/sql-lane": "0.1.0-pr.65.10",
29
- "@prisma-next/test-utils": "0.0.1"
24
+ "@prisma-next/adapter-postgres": "0.1.0-pr.65.12",
25
+ "@prisma-next/operations": "0.1.0-pr.65.12",
26
+ "@prisma-next/sql-contract": "0.1.0-pr.65.12",
27
+ "@prisma-next/sql-lane": "0.1.0-pr.65.12",
28
+ "@prisma-next/test-utils": "0.0.1",
29
+ "@prisma-next/sql-contract-ts": "0.1.0-pr.65.12"
30
30
  },
31
31
  "files": [
32
32
  "dist"