@prisma-next/family-sql 0.5.0-dev.35 → 0.5.0-dev.37
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 +1 -1
- package/dist/control.d.mts.map +1 -1
- package/dist/control.mjs +1 -0
- package/dist/control.mjs.map +1 -1
- package/dist/migration.d.mts +14 -2
- package/dist/migration.d.mts.map +1 -1
- package/dist/migration.mjs +16 -1
- package/dist/migration.mjs.map +1 -1
- package/dist/schema-verify.d.mts +1 -1
- package/dist/{types-DhhBX-xv.d.mts → types-gLyIyd2X.d.mts} +16 -7
- package/dist/types-gLyIyd2X.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 +1 -0
- package/src/core/migrations/types.ts +15 -6
- package/src/core/sql-migration.ts +16 -1
- package/dist/types-DhhBX-xv.d.mts.map +0 -1
package/dist/migration.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { E as SqlPlanTargetDetails, n as AnySqlMigrationOperation } from "./types-
|
|
1
|
+
import { E as SqlPlanTargetDetails, n as AnySqlMigrationOperation } from "./types-gLyIyd2X.mjs";
|
|
2
2
|
import { Migration } from "@prisma-next/migration-tools/migration";
|
|
3
3
|
|
|
4
4
|
//#region src/core/sql-migration.d.ts
|
|
@@ -30,7 +30,19 @@ import { Migration } from "@prisma-next/migration-tools/migration";
|
|
|
30
30
|
* `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors
|
|
31
31
|
* `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.
|
|
32
32
|
*/
|
|
33
|
-
declare abstract class SqlMigration<TDetails extends SqlPlanTargetDetails, TTargetId extends string = string> extends Migration<AnySqlMigrationOperation<TDetails>, 'sql', TTargetId> {
|
|
33
|
+
declare abstract class SqlMigration<TDetails extends SqlPlanTargetDetails, TTargetId extends string = string> extends Migration<AnySqlMigrationOperation<TDetails>, 'sql', TTargetId> {
|
|
34
|
+
/**
|
|
35
|
+
* Sorted, deduplicated invariant ids declared by this migration's
|
|
36
|
+
* data-transform ops. Derived from `this.operations` so the field remains
|
|
37
|
+
* consistent with the operation list — planner-built plans (`db init`,
|
|
38
|
+
* `db update`) yield `[]` because they emit no data-transform ops.
|
|
39
|
+
*
|
|
40
|
+
* Required by `SqlMigrationPlan.providedInvariants` (tightened from
|
|
41
|
+
* optional at the SQL-family layer); the framework-level
|
|
42
|
+
* `MigrationPlan.providedInvariants?` stays optional.
|
|
43
|
+
*/
|
|
44
|
+
get providedInvariants(): readonly string[];
|
|
45
|
+
}
|
|
34
46
|
//#endregion
|
|
35
47
|
export { SqlMigration as Migration };
|
|
36
48
|
//# sourceMappingURL=migration.d.mts.map
|
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":";;;;;;;AA+BA;;;;;;;;;;;;;;;;;;;;;;;;;uBAAsB,8BACH,iEAET,UAAU,yBAAyB,kBAAkB"}
|
package/dist/migration.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { deriveProvidedInvariants } from "@prisma-next/migration-tools/invariants";
|
|
1
2
|
import { Migration } from "@prisma-next/migration-tools/migration";
|
|
2
3
|
|
|
3
4
|
//#region src/core/sql-migration.ts
|
|
@@ -28,7 +29,21 @@ import { Migration } from "@prisma-next/migration-tools/migration";
|
|
|
28
29
|
* `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors
|
|
29
30
|
* `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.
|
|
30
31
|
*/
|
|
31
|
-
var SqlMigration = class extends Migration {
|
|
32
|
+
var SqlMigration = class extends Migration {
|
|
33
|
+
/**
|
|
34
|
+
* Sorted, deduplicated invariant ids declared by this migration's
|
|
35
|
+
* data-transform ops. Derived from `this.operations` so the field remains
|
|
36
|
+
* consistent with the operation list — planner-built plans (`db init`,
|
|
37
|
+
* `db update`) yield `[]` because they emit no data-transform ops.
|
|
38
|
+
*
|
|
39
|
+
* Required by `SqlMigrationPlan.providedInvariants` (tightened from
|
|
40
|
+
* optional at the SQL-family layer); the framework-level
|
|
41
|
+
* `MigrationPlan.providedInvariants?` stays optional.
|
|
42
|
+
*/
|
|
43
|
+
get providedInvariants() {
|
|
44
|
+
return deriveProvidedInvariants(this.operations);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
32
47
|
|
|
33
48
|
//#endregion
|
|
34
49
|
export { SqlMigration as Migration };
|
package/dist/migration.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"migration.mjs","names":[],"sources":["../src/core/sql-migration.ts"],"sourcesContent":["import { Migration } from '@prisma-next/migration-tools/migration';\nimport type { AnySqlMigrationOperation, SqlPlanTargetDetails } from './migrations/types';\n\n/**\n * Family-owned base class for SQL migrations.\n *\n * Parameterized on the target-details shape because SQL-family targets\n * (Postgres, MySQL, SQLite, …) each carry their own `target.details` payload\n * on `SqlMigrationPlanOperation`. The type parameter is narrowed to\n * `SqlPlanTargetDetails` so every target-specific shape must at minimum\n * identify the object being targeted (schema + name); concrete targets\n * extend the shape with their own fields.\n *\n * Each concrete target-side subclass (e.g. Postgres's\n * `TypeScriptRenderablePostgresMigration`) fixes `targetId` to its own\n * target-id string literal, since SQL can't hardcode a single `targetId`:\n * `targetId` is a target-level identity, not a family-level one, and\n * belongs on the subclass.\n *\n * `familyId` is intentionally not declared here. The SQL family has no\n * family-scoped runtime identity today — consumers reach the family via\n * target descriptors rather than by family-id lookup, so adding one would\n * be purely decorative. Introducing it later is a non-breaking superset.\n *\n * The operation type parameter is `AnySqlMigrationOperation<TDetails>` — the\n * union of DDL-shaped `SqlMigrationPlanOperation` and `DataTransformOperation`\n * — so subclasses can return a mix of schema operations (e.g. `setNotNull`,\n * `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors\n * `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.\n */\nexport abstract class SqlMigration<\n TDetails extends SqlPlanTargetDetails,\n TTargetId extends string = string,\n> extends Migration<AnySqlMigrationOperation<TDetails>, 'sql', TTargetId> {}\n"],"mappings":"
|
|
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 { AnySqlMigrationOperation, SqlPlanTargetDetails } from './migrations/types';\n\n/**\n * Family-owned base class for SQL migrations.\n *\n * Parameterized on the target-details shape because SQL-family targets\n * (Postgres, MySQL, SQLite, …) each carry their own `target.details` payload\n * on `SqlMigrationPlanOperation`. The type parameter is narrowed to\n * `SqlPlanTargetDetails` so every target-specific shape must at minimum\n * identify the object being targeted (schema + name); concrete targets\n * extend the shape with their own fields.\n *\n * Each concrete target-side subclass (e.g. Postgres's\n * `TypeScriptRenderablePostgresMigration`) fixes `targetId` to its own\n * target-id string literal, since SQL can't hardcode a single `targetId`:\n * `targetId` is a target-level identity, not a family-level one, and\n * belongs on the subclass.\n *\n * `familyId` is intentionally not declared here. The SQL family has no\n * family-scoped runtime identity today — consumers reach the family via\n * target descriptors rather than by family-id lookup, so adding one would\n * be purely decorative. Introducing it later is a non-breaking superset.\n *\n * The operation type parameter is `AnySqlMigrationOperation<TDetails>` — the\n * union of DDL-shaped `SqlMigrationPlanOperation` and `DataTransformOperation`\n * — so subclasses can return a mix of schema operations (e.g. `setNotNull`,\n * `addColumn`) and data-transform operations (e.g. `dataTransform`). Mirrors\n * `MongoMigration`'s parameterization on `AnyMongoMigrationOperation`.\n */\nexport abstract class SqlMigration<\n TDetails extends SqlPlanTargetDetails,\n TTargetId extends string = string,\n> extends Migration<AnySqlMigrationOperation<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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+BA,IAAsB,eAAtB,cAGU,UAAgE;;;;;;;;;;;CAWxE,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 { a as ComponentDatabaseDependency } from "./types-
|
|
2
|
+
import { a as ComponentDatabaseDependency } from "./types-gLyIyd2X.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
|
|
|
@@ -196,6 +196,15 @@ interface SqlMigrationPlan<TTargetDetails> extends MigrationPlan {
|
|
|
196
196
|
*/
|
|
197
197
|
readonly destination: SqlMigrationPlanContractInfo;
|
|
198
198
|
readonly operations: readonly SqlMigrationPlanOperation<TTargetDetails>[];
|
|
199
|
+
/**
|
|
200
|
+
* Sorted, deduplicated invariant ids declared by this plan's data-transform
|
|
201
|
+
* ops. Required at the SQL-family layer (the SQL runners consume this as
|
|
202
|
+
* the source of truth for marker writes and self-edge no-op checks); the
|
|
203
|
+
* framework-level {@link MigrationPlan.providedInvariants} stays optional
|
|
204
|
+
* because `db init` / `db update` plans don't have a corresponding
|
|
205
|
+
* migration manifest.
|
|
206
|
+
*/
|
|
207
|
+
readonly providedInvariants: readonly string[];
|
|
199
208
|
readonly meta?: AnyRecord;
|
|
200
209
|
}
|
|
201
210
|
type SqlPlannerConflictKind = 'typeMismatch' | 'nullabilityConflict' | 'indexIncompatible' | 'foreignKeyConflict' | 'missingButNonAdditive' | 'unsupportedOperation';
|
|
@@ -283,12 +292,6 @@ interface SqlMigrationRunnerExecuteOptions<TTargetDetails> {
|
|
|
283
292
|
* All components must have matching familyId ('sql') and targetId.
|
|
284
293
|
*/
|
|
285
294
|
readonly frameworkComponents: ReadonlyArray<TargetBoundComponentDescriptor<'sql', string>>;
|
|
286
|
-
/**
|
|
287
|
-
* Invariant ids contributed by this apply (the migration's `providedInvariants`).
|
|
288
|
-
* The runner unions these into `marker.invariants` atomically with the marker write.
|
|
289
|
-
* Defaults to `[]` for marker-only flows (`db update`, `db init`).
|
|
290
|
-
*/
|
|
291
|
-
readonly invariants?: readonly string[];
|
|
292
295
|
}
|
|
293
296
|
type SqlMigrationRunnerErrorCode = 'DESTINATION_CONTRACT_MISMATCH' | 'MARKER_ORIGIN_MISMATCH' | 'POLICY_VIOLATION' | 'PRECHECK_FAILED' | 'POSTCHECK_FAILED' | 'SCHEMA_VERIFY_FAILED' | 'FOREIGN_KEY_VIOLATION' | 'EXECUTION_FAILED';
|
|
294
297
|
interface SqlMigrationRunnerFailure extends MigrationRunnerFailure {
|
|
@@ -310,8 +313,14 @@ interface CreateSqlMigrationPlanOptions<TTargetDetails> {
|
|
|
310
313
|
readonly origin?: SqlMigrationPlanContractInfo | null;
|
|
311
314
|
readonly destination: SqlMigrationPlanContractInfo;
|
|
312
315
|
readonly operations: readonly SqlMigrationPlanOperation<TTargetDetails>[];
|
|
316
|
+
/**
|
|
317
|
+
* Sorted, deduplicated invariant ids for this plan; mirrors the required
|
|
318
|
+
* field on {@link SqlMigrationPlan}. Callers without a migration manifest
|
|
319
|
+
* (`db init`, `db update`, planner-built plans) pass `[]`.
|
|
320
|
+
*/
|
|
321
|
+
readonly providedInvariants: readonly string[];
|
|
313
322
|
readonly meta?: AnyRecord;
|
|
314
323
|
}
|
|
315
324
|
//#endregion
|
|
316
325
|
export { SqlPlannerFailureResult as A, SqlMigrationRunnerFailure as C, SqlPlannerConflict as D, SqlPlanTargetDetails as E, isDatabaseDependencyProvider as F, SchemaVerifyOptions as I, SqlControlFamilyInstance as L, SqlPlannerSuccessResult as M, StorageTypePlanResult as N, SqlPlannerConflictKind as O, collectInitDependencies as P, SqlMigrationRunnerExecuteOptions as S, SqlMigrationRunnerSuccessValue as T, SqlMigrationPlanner as _, ComponentDatabaseDependency as a, SqlMigrationRunnerErrorCode as b, ResolveIdentityValueInput as c, SqlControlTargetDescriptor as d, SqlMigrationPlan as f, SqlMigrationPlanOperationTarget as g, SqlMigrationPlanOperationStep as h, ComponentDatabaseDependencies as i, SqlPlannerResult as j, SqlPlannerConflictLocation as k, SqlControlAdapterDescriptor as l, SqlMigrationPlanOperation as m, AnySqlMigrationOperation as n, CreateSqlMigrationPlanOptions as o, SqlMigrationPlanContractInfo as p, CodecControlHooks as r, ExpandNativeTypeInput as s, AnyRecord as t, SqlControlExtensionDescriptor as u, SqlMigrationPlannerPlanOptions as v, SqlMigrationRunnerResult as w, SqlMigrationRunnerExecuteCallbacks as x, SqlMigrationRunner as y };
|
|
317
|
-
//# sourceMappingURL=types-
|
|
326
|
+
//# sourceMappingURL=types-gLyIyd2X.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types-gLyIyd2X.d.mts","names":[],"sources":["../src/core/control-instance.ts","../src/core/migrations/types.ts"],"sourcesContent":[],"mappings":"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"}
|