@prisma/config 6.6.0-dev.112 → 6.6.0-dev.113

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.
Files changed (2) hide show
  1. package/dist/index.js +13 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -22543,6 +22543,12 @@ var createPrismaStudioConfigShape = () => Schema_exports.Struct({
22543
22543
  */
22544
22544
  adapter: sqlMigrationAwareDriverAdapterFactoryShape()
22545
22545
  });
22546
+ var createPrismaMigrateConfigShape = () => Schema_exports.Struct({
22547
+ /**
22548
+ * Instantiates the Prisma driver adapter to use for Prisma Migrate + Introspect.
22549
+ */
22550
+ adapter: sqlMigrationAwareDriverAdapterFactoryShape()
22551
+ });
22546
22552
  var createPrismaMigrateConfigInternalShape = () => Schema_exports.Struct({
22547
22553
  /**
22548
22554
  * Instantiates the Prisma driver adapter to use for Prisma Migrate + Introspect.
@@ -22555,9 +22561,15 @@ if (false) {
22555
22561
  __testPrismaMigrateConfigShapeValueA;
22556
22562
  __testPrismaMigrateConfigShapeValueB;
22557
22563
  }
22564
+ if (false) {
22565
+ __testPrismaConfig;
22566
+ __testPrismaConfigInternal;
22567
+ }
22558
22568
  var createPrismaConfigShape = () => Schema_exports.Struct({
22559
22569
  earlyAccess: Schema_exports.Literal(true),
22560
- schema: Schema_exports.optional(Schema_exports.String)
22570
+ schema: Schema_exports.optional(Schema_exports.String),
22571
+ studio: Schema_exports.optional(createPrismaStudioConfigShape()),
22572
+ migrate: Schema_exports.optional(createPrismaMigrateConfigShape())
22561
22573
  });
22562
22574
  if (false) {
22563
22575
  __testPrismaConfigValueA;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/config",
3
- "version": "6.6.0-dev.112",
3
+ "version": "6.6.0-dev.113",
4
4
  "description": "Internal package used to define and read Prisma configuration files",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,8 +22,8 @@
22
22
  "esbuild-register": "3.6.0",
23
23
  "jest": "29.7.0",
24
24
  "jest-junit": "16.0.0",
25
- "@prisma/driver-adapter-utils": "6.6.0-dev.112",
26
- "@prisma/get-platform": "6.6.0-dev.112"
25
+ "@prisma/driver-adapter-utils": "6.6.0-dev.113",
26
+ "@prisma/get-platform": "6.6.0-dev.113"
27
27
  },
28
28
  "files": [
29
29
  "dist"