@prisma-next/family-sql 0.5.0-dev.44 → 0.5.0-dev.46
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/control.d.mts +2 -2
- package/dist/control.d.mts.map +1 -1
- package/dist/control.mjs +2 -0
- package/dist/control.mjs.map +1 -1
- package/dist/migration.d.mts +10 -23
- package/dist/migration.d.mts.map +1 -1
- package/dist/migration.mjs +8 -21
- package/dist/migration.mjs.map +1 -1
- package/dist/schema-verify.d.mts +1 -1
- package/dist/{types-gLyIyd2X.d.mts → types-UI3K69S6.d.mts} +12 -13
- package/dist/types-UI3K69S6.d.mts.map +1 -0
- package/dist/verify-sql-schema-Ovz7RXR5.mjs.map +1 -1
- package/package.json +20 -20
- package/src/core/migrations/plan-helpers.ts +2 -0
- package/src/core/migrations/types.ts +9 -14
- package/src/core/sql-migration.ts +10 -23
- package/src/exports/control.ts +0 -1
- package/dist/types-gLyIyd2X.d.mts.map +0 -1
package/dist/migration.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { T as SqlPlanTargetDetails, p as SqlMigrationPlanOperation } from "./types-UI3K69S6.mjs";
|
|
2
2
|
import { Migration } from "@prisma-next/migration-tools/migration";
|
|
3
3
|
|
|
4
4
|
//#region src/core/sql-migration.d.ts
|
|
@@ -6,31 +6,18 @@ import { Migration } from "@prisma-next/migration-tools/migration";
|
|
|
6
6
|
/**
|
|
7
7
|
* Family-owned base class for SQL migrations.
|
|
8
8
|
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* on `SqlMigrationPlanOperation`. The type parameter is narrowed to
|
|
12
|
-
* `SqlPlanTargetDetails` so every target-specific shape must at minimum
|
|
13
|
-
* identify the object being targeted (schema + name); concrete targets
|
|
14
|
-
* extend the shape with their own fields.
|
|
9
|
+
* Generic in `TDetails` (family plan target details, e.g. Postgres vs SQLite)
|
|
10
|
+
* and in `TTargetId` (the literal target identifier, e.g. `'postgres'`).
|
|
15
11
|
*
|
|
16
|
-
*
|
|
17
|
-
* `
|
|
18
|
-
*
|
|
19
|
-
* `
|
|
20
|
-
* belongs on the subclass.
|
|
12
|
+
* Adapters (Postgres, SQLite, …) extend this with a concrete `TDetails` and
|
|
13
|
+
* a fixed `TTargetId` literal, so the public `Migration<TOp>` base sees the
|
|
14
|
+
* fully concrete operation shape. Target-free code in SQL family / tooling
|
|
15
|
+
* parameterises over `TDetails` (and usually `TTargetId = string`).
|
|
21
16
|
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
* target descriptors rather than by family-id lookup, so adding one would
|
|
25
|
-
* be purely decorative. Introducing it later is a non-breaking superset.
|
|
26
|
-
*
|
|
27
|
-
* The operation type parameter is `AnySqlMigrationOperation<TDetails>` — the
|
|
28
|
-
* union of DDL-shaped `SqlMigrationPlanOperation` and `DataTransformOperation`
|
|
29
|
-
* — so subclasses can return a mix of schema operations (e.g. `setNotNull`,
|
|
30
|
-
* `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors
|
|
31
|
-
* `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.
|
|
17
|
+
* Keeps target-free contract/runtime features in the family layer while
|
|
18
|
+
* letting adapters own target shape.
|
|
32
19
|
*/
|
|
33
|
-
declare abstract class SqlMigration<TDetails extends SqlPlanTargetDetails, TTargetId extends string = string> extends Migration<
|
|
20
|
+
declare abstract class SqlMigration<TDetails extends SqlPlanTargetDetails, TTargetId extends string = string> extends Migration<SqlMigrationPlanOperation<TDetails>, 'sql', TTargetId> {
|
|
34
21
|
/**
|
|
35
22
|
* Sorted, deduplicated invariant ids declared by this migration's
|
|
36
23
|
* data-transform ops. Derived from `this.operations` so the field remains
|
package/dist/migration.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migration.d.mts","names":[],"sources":["../src/core/sql-migration.ts"],"sourcesContent":[],"mappings":";;;;;;;
|
|
1
|
+
{"version":3,"file":"migration.d.mts","names":[],"sources":["../src/core/sql-migration.ts"],"sourcesContent":[],"mappings":";;;;;;;AAkBA;;;;;;;;;;;;uBAAsB,8BACH,iEAET,UAAU,0BAA0B,kBAAkB"}
|
package/dist/migration.mjs
CHANGED
|
@@ -5,29 +5,16 @@ import { Migration } from "@prisma-next/migration-tools/migration";
|
|
|
5
5
|
/**
|
|
6
6
|
* Family-owned base class for SQL migrations.
|
|
7
7
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* on `SqlMigrationPlanOperation`. The type parameter is narrowed to
|
|
11
|
-
* `SqlPlanTargetDetails` so every target-specific shape must at minimum
|
|
12
|
-
* identify the object being targeted (schema + name); concrete targets
|
|
13
|
-
* extend the shape with their own fields.
|
|
8
|
+
* Generic in `TDetails` (family plan target details, e.g. Postgres vs SQLite)
|
|
9
|
+
* and in `TTargetId` (the literal target identifier, e.g. `'postgres'`).
|
|
14
10
|
*
|
|
15
|
-
*
|
|
16
|
-
* `
|
|
17
|
-
*
|
|
18
|
-
* `
|
|
19
|
-
* belongs on the subclass.
|
|
11
|
+
* Adapters (Postgres, SQLite, …) extend this with a concrete `TDetails` and
|
|
12
|
+
* a fixed `TTargetId` literal, so the public `Migration<TOp>` base sees the
|
|
13
|
+
* fully concrete operation shape. Target-free code in SQL family / tooling
|
|
14
|
+
* parameterises over `TDetails` (and usually `TTargetId = string`).
|
|
20
15
|
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* target descriptors rather than by family-id lookup, so adding one would
|
|
24
|
-
* be purely decorative. Introducing it later is a non-breaking superset.
|
|
25
|
-
*
|
|
26
|
-
* The operation type parameter is `AnySqlMigrationOperation<TDetails>` — the
|
|
27
|
-
* union of DDL-shaped `SqlMigrationPlanOperation` and `DataTransformOperation`
|
|
28
|
-
* — so subclasses can return a mix of schema operations (e.g. `setNotNull`,
|
|
29
|
-
* `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors
|
|
30
|
-
* `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.
|
|
16
|
+
* Keeps target-free contract/runtime features in the family layer while
|
|
17
|
+
* letting adapters own target shape.
|
|
31
18
|
*/
|
|
32
19
|
var SqlMigration = class extends Migration {
|
|
33
20
|
/**
|
package/dist/migration.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migration.mjs","names":[],"sources":["../src/core/sql-migration.ts"],"sourcesContent":["import { deriveProvidedInvariants } from '@prisma-next/migration-tools/invariants';\nimport { Migration } from '@prisma-next/migration-tools/migration';\nimport type {
|
|
1
|
+
{"version":3,"file":"migration.mjs","names":[],"sources":["../src/core/sql-migration.ts"],"sourcesContent":["import { deriveProvidedInvariants } from '@prisma-next/migration-tools/invariants';\nimport { Migration } from '@prisma-next/migration-tools/migration';\nimport type { SqlMigrationPlanOperation, SqlPlanTargetDetails } from './migrations/types';\n\n/**\n * Family-owned base class for SQL migrations.\n *\n * Generic in `TDetails` (family plan target details, e.g. Postgres vs SQLite)\n * and in `TTargetId` (the literal target identifier, e.g. `'postgres'`).\n *\n * Adapters (Postgres, SQLite, …) extend this with a concrete `TDetails` and\n * a fixed `TTargetId` literal, so the public `Migration<TOp>` base sees the\n * fully concrete operation shape. Target-free code in SQL family / tooling\n * parameterises over `TDetails` (and usually `TTargetId = string`).\n *\n * Keeps target-free contract/runtime features in the family layer while\n * letting adapters own target shape.\n */\nexport abstract class SqlMigration<\n TDetails extends SqlPlanTargetDetails,\n TTargetId extends string = string,\n> extends Migration<SqlMigrationPlanOperation<TDetails>, 'sql', TTargetId> {\n /**\n * Sorted, deduplicated invariant ids declared by this migration's\n * data-transform ops. Derived from `this.operations` so the field remains\n * consistent with the operation list — planner-built plans (`db init`,\n * `db update`) yield `[]` because they emit no data-transform ops.\n *\n * Required by `SqlMigrationPlan.providedInvariants` (tightened from\n * optional at the SQL-family layer); the framework-level\n * `MigrationPlan.providedInvariants?` stays optional.\n */\n get providedInvariants(): readonly string[] {\n return deriveProvidedInvariants(this.operations);\n }\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;AAkBA,IAAsB,eAAtB,cAGU,UAAiE;;;;;;;;;;;CAWzE,IAAI,qBAAwC;AAC1C,SAAO,yBAAyB,KAAK,WAAW"}
|
package/dist/schema-verify.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as verifySqlSchema, n as NativeTypeNormalizer, r as VerifySqlSchemaOptions } from "./verify-sql-schema-_EoNcGIq.mjs";
|
|
2
|
-
import {
|
|
2
|
+
import { i as ComponentDatabaseDependency } from "./types-UI3K69S6.mjs";
|
|
3
3
|
import { SchemaIssue, SchemaVerificationNode } from "@prisma-next/framework-components/control";
|
|
4
4
|
import { SqlIndexIR, SqlSchemaIR, SqlUniqueIR } from "@prisma-next/sql-schema-ir/types";
|
|
5
5
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ControlAdapterDescriptor, ControlDriverInstance, ControlExtensionDescriptor, ControlFamilyInstance, ControlStack,
|
|
1
|
+
import { ControlAdapterDescriptor, ControlDriverInstance, ControlExtensionDescriptor, ControlFamilyInstance, ControlStack, MigratableTargetDescriptor, MigrationOperationPolicy, MigrationPlan, MigrationPlanOperation, MigrationPlannerConflict, MigrationPlannerFailureResult, MigrationPlannerSuccessResult, MigrationRunnerExecutionChecks, MigrationRunnerFailure, MigrationRunnerSuccessValue, OperationContext, OperationPreview, OperationPreviewCapable, PslContractInferCapable, SchemaIssue, SchemaViewCapable, SignDatabaseResult, VerifyDatabaseResult, VerifyDatabaseSchemaResult } from "@prisma-next/framework-components/control";
|
|
2
2
|
import { Result } from "@prisma-next/utils/result";
|
|
3
3
|
import { Contract } from "@prisma-next/contract/types";
|
|
4
4
|
import { SqlSchemaIR } from "@prisma-next/sql-schema-ir/types";
|
|
@@ -146,6 +146,15 @@ interface SqlControlAdapterDescriptor<TTargetId extends string> extends ControlA
|
|
|
146
146
|
interface SqlMigrationPlanOperationStep {
|
|
147
147
|
readonly description: string;
|
|
148
148
|
readonly sql: string;
|
|
149
|
+
/**
|
|
150
|
+
* Optional parameter values bound at execution time. The runner forwards
|
|
151
|
+
* these to `driver.query(sql, params ?? [])`, so step authors can use
|
|
152
|
+
* placeholder syntax (`$1`, `$2`, …) instead of inlining literals into
|
|
153
|
+
* the SQL string. Reuses the driver's parameter binder rather than
|
|
154
|
+
* rolling per-target literal serialization for every type the planner
|
|
155
|
+
* may emit.
|
|
156
|
+
*/
|
|
157
|
+
readonly params?: readonly unknown[];
|
|
149
158
|
readonly meta?: AnyRecord;
|
|
150
159
|
}
|
|
151
160
|
/**
|
|
@@ -171,16 +180,6 @@ interface SqlMigrationPlanOperation<TTargetDetails> extends MigrationPlanOperati
|
|
|
171
180
|
readonly postcheck: readonly SqlMigrationPlanOperationStep[];
|
|
172
181
|
readonly meta?: AnyRecord;
|
|
173
182
|
}
|
|
174
|
-
/**
|
|
175
|
-
* Union of all operation shapes a SQL-family migration may emit: schema-facing
|
|
176
|
-
* `SqlMigrationPlanOperation`s and family-agnostic `DataTransformOperation`s.
|
|
177
|
-
*
|
|
178
|
-
* Mirrors `AnyMongoMigrationOperation` in shape — the runner already handles
|
|
179
|
-
* both branches via `isDataTransformOperation`, and authored `migration.ts`
|
|
180
|
-
* files must be able to intermix `dataTransform(endContract, …)` calls with
|
|
181
|
-
* DDL factory calls (e.g. `setNotNull(…)`) in a single `operations` array.
|
|
182
|
-
*/
|
|
183
|
-
type AnySqlMigrationOperation<TTargetDetails> = SqlMigrationPlanOperation<TTargetDetails> | DataTransformOperation;
|
|
184
183
|
interface SqlMigrationPlanContractInfo {
|
|
185
184
|
readonly storageHash: string;
|
|
186
185
|
readonly profileHash?: string;
|
|
@@ -322,5 +321,5 @@ interface CreateSqlMigrationPlanOptions<TTargetDetails> {
|
|
|
322
321
|
readonly meta?: AnyRecord;
|
|
323
322
|
}
|
|
324
323
|
//#endregion
|
|
325
|
-
export {
|
|
326
|
-
//# sourceMappingURL=types-
|
|
324
|
+
export { SqlPlannerResult as A, SqlMigrationRunnerResult as C, SqlPlannerConflictKind as D, SqlPlannerConflict as E, SchemaVerifyOptions as F, SqlControlFamilyInstance as I, StorageTypePlanResult as M, collectInitDependencies as N, SqlPlannerConflictLocation as O, isDatabaseDependencyProvider as P, SqlMigrationRunnerFailure as S, SqlPlanTargetDetails as T, SqlMigrationPlannerPlanOptions as _, CreateSqlMigrationPlanOptions as a, SqlMigrationRunnerExecuteCallbacks as b, SqlControlAdapterDescriptor as c, SqlMigrationPlan as d, SqlMigrationPlanContractInfo as f, SqlMigrationPlanner as g, SqlMigrationPlanOperationTarget as h, ComponentDatabaseDependency as i, SqlPlannerSuccessResult as j, SqlPlannerFailureResult as k, SqlControlExtensionDescriptor as l, SqlMigrationPlanOperationStep as m, CodecControlHooks as n, ExpandNativeTypeInput as o, SqlMigrationPlanOperation as p, ComponentDatabaseDependencies as r, ResolveIdentityValueInput as s, AnyRecord as t, SqlControlTargetDescriptor as u, SqlMigrationRunner as v, SqlMigrationRunnerSuccessValue as w, SqlMigrationRunnerExecuteOptions as x, SqlMigrationRunnerErrorCode as y };
|
|
325
|
+
//# sourceMappingURL=types-UI3K69S6.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types-UI3K69S6.d.mts","names":[],"sources":["../src/core/control-instance.ts","../src/core/migrations/types.ts"],"sourcesContent":[],"mappings":"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"}
|