@prisma-next/sql-operations 0.11.0-dev.11 → 0.11.0-dev.13

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;UAQiB,eAAA;EAAA,SACN,YAAA;EAAA,SACA,QAAA;EAAA,SACA,QAAA;AAAA;;;;;;;AAUX;KAAY,iBAAA,GAAoB,uBAAA;AAAA,KAEpB,sBAAA,GAAyB,mBAAA,CAAoB,iBAAA;AAAA,KAE7C,uBAAA,GAA0B,oBAAA,CAAqB,iBAAA;AAAA,KAE/C,oBAAA,GAAuB,iBAAA,CAAkB,iBAAA;AAAA,iBAErC,0BAAA,CAAA,GAA8B,oBAAA"}
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"mappings":";;;;UAQiB,eAAA;EAAA,SACN,YAAA;EAAA,SACA,QAAA;EAAA,SACA,QAAA;AAAA;;;;;;AAAQ;AAUnB;KAAY,iBAAA,GAAoB,uBAAuB;AAAA,KAE3C,sBAAA,GAAyB,mBAAmB,CAAC,iBAAA;AAAA,KAE7C,uBAAA,GAA0B,oBAAoB,CAAC,iBAAA;AAAA,KAE/C,oBAAA,GAAuB,iBAAiB,CAAC,iBAAA;AAAA,iBAErC,0BAAA,CAAA,GAA8B,oBAAoB"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type {\n OperationDescriptor,\n OperationDescriptors,\n OperationRegistry,\n} from '@prisma-next/operations';\nimport { createOperationRegistry } from '@prisma-next/operations';\nimport type { QueryOperationTypeEntry } from '@prisma-next/sql-contract/types';\n\nexport interface SqlLoweringSpec {\n readonly targetFamily: 'sql';\n readonly strategy: 'infix' | 'function';\n readonly template: string;\n}\n\n/**\n * Runtime shape of a SQL operation entry — tightened beyond the framework's\n * target-agnostic `OperationEntry` so `impl` returns a codec-exact\n * `QueryOperationReturn` instead of `unknown`. Consumers (ORM column helper,\n * sql-builder `fns` dispatch) can read `result.returnType.codecId` without a\n * cast.\n */\nexport type SqlOperationEntry = QueryOperationTypeEntry;\n\nexport type SqlOperationDescriptor = OperationDescriptor<SqlOperationEntry>;\n\nexport type SqlOperationDescriptors = OperationDescriptors<SqlOperationEntry>;\n\nexport type SqlOperationRegistry = OperationRegistry<SqlOperationEntry>;\n\nexport function createSqlOperationRegistry(): SqlOperationRegistry {\n return createOperationRegistry<SqlOperationEntry>();\n}\n"],"mappings":";;AA6BA,SAAgB,6BAAmD;CACjE,OAAO,yBAA4C"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type {\n OperationDescriptor,\n OperationDescriptors,\n OperationRegistry,\n} from '@prisma-next/operations';\nimport { createOperationRegistry } from '@prisma-next/operations';\nimport type { QueryOperationTypeEntry } from '@prisma-next/sql-contract/types';\n\nexport interface SqlLoweringSpec {\n readonly targetFamily: 'sql';\n readonly strategy: 'infix' | 'function';\n readonly template: string;\n}\n\n/**\n * Runtime shape of a SQL operation entry — tightened beyond the framework's\n * target-agnostic `OperationEntry` so `impl` returns a codec-exact\n * `QueryOperationReturn` instead of `unknown`. Consumers (ORM column helper,\n * sql-builder `fns` dispatch) can read `result.returnType.codecId` without a\n * cast.\n */\nexport type SqlOperationEntry = QueryOperationTypeEntry;\n\nexport type SqlOperationDescriptor = OperationDescriptor<SqlOperationEntry>;\n\nexport type SqlOperationDescriptors = OperationDescriptors<SqlOperationEntry>;\n\nexport type SqlOperationRegistry = OperationRegistry<SqlOperationEntry>;\n\nexport function createSqlOperationRegistry(): SqlOperationRegistry {\n return createOperationRegistry<SqlOperationEntry>();\n}\n"],"mappings":";;AA6BA,SAAgB,6BAAmD;CACjE,OAAO,wBAA2C;AACpD"}
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@prisma-next/sql-operations",
3
- "version": "0.11.0-dev.11",
3
+ "version": "0.11.0-dev.13",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "sideEffects": false,
7
7
  "description": "SQL-specific operations for Prisma Next",
8
8
  "dependencies": {
9
- "@prisma-next/operations": "0.11.0-dev.11",
10
- "@prisma-next/sql-contract": "0.11.0-dev.11",
9
+ "@prisma-next/operations": "0.11.0-dev.13",
10
+ "@prisma-next/sql-contract": "0.11.0-dev.13",
11
11
  "arktype": "^2.2.0"
12
12
  },
13
13
  "devDependencies": {
14
- "@prisma-next/emitter": "0.11.0-dev.11",
15
- "@prisma-next/test-utils": "0.11.0-dev.11",
16
- "@prisma-next/tsconfig": "0.11.0-dev.11",
17
- "@prisma-next/tsdown": "0.11.0-dev.11",
14
+ "@prisma-next/emitter": "0.11.0-dev.13",
15
+ "@prisma-next/test-utils": "0.11.0-dev.13",
16
+ "@prisma-next/tsconfig": "0.11.0-dev.13",
17
+ "@prisma-next/tsdown": "0.11.0-dev.13",
18
18
  "tsdown": "0.22.0",
19
19
  "typescript": "5.9.3",
20
20
  "vitest": "4.1.6"