@prisma/client-generator-ts 6.19.0-integration-feat-remove-library-engine.4 → 6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1

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,5 +1,5 @@
1
- export declare const supportedInternalRuntimes: readonly ["nodejs", "workerd", "vercel-edge", "deno"];
2
- declare const supportedPublicRuntimes: readonly ["nodejs", "deno", "bun", "workerd", "cloudflare", "vercel-edge", "edge-light"];
1
+ export declare const supportedInternalRuntimes: readonly ["nodejs", "workerd", "vercel-edge", "deno", "react-native"];
2
+ declare const supportedPublicRuntimes: readonly ["nodejs", "deno", "bun", "workerd", "cloudflare", "vercel-edge", "edge-light", "react-native"];
3
3
  /**
4
4
  * The user-facing `runtime` attribute for the `prisma-client` generator.
5
5
  */
@@ -8,5 +8,5 @@ export type RuntimeTarget = (typeof supportedPublicRuntimes)[number];
8
8
  * The internal representation of the `runtime` attribute for the `prisma-client` generator.
9
9
  */
10
10
  export type RuntimeTargetInternal = (typeof supportedInternalRuntimes)[number];
11
- export declare function parseRuntimeTargetFromUnknown(target: unknown): "nodejs" | "workerd" | "vercel-edge" | "deno";
11
+ export declare function parseRuntimeTargetFromUnknown(target: unknown): "nodejs" | "workerd" | "vercel-edge" | "deno" | "react-native";
12
12
  export {};
@@ -0,0 +1,11 @@
1
+ import type { BinaryTarget } from '@prisma/get-platform';
2
+ import { ClientEngineType } from '@prisma/internals';
3
+ /**
4
+ * Build bundler-like annotations so that Vercel automatically uploads the
5
+ * prisma schema as well as the query engine binaries to the deployments.
6
+ * @param engineType the client engine in use
7
+ * @param binaryTargets the targeted binaryTargets
8
+ * @param relativeOutdir outdir relative to root
9
+ * @returns
10
+ */
11
+ export declare function buildNFTAnnotations(noEngine: boolean, engineType: ClientEngineType, binaryTargets: BinaryTarget[] | undefined, relativeOutdir: string): string;
@@ -0,0 +1 @@
1
+ export {};
@@ -1,4 +1,11 @@
1
1
  import * as ts from '@prisma/ts-builders';
2
2
  type RuntimeExport = keyof typeof import('@prisma/client/runtime/library') & string;
3
+ /**
4
+ * Helps to ensure that when we want to refer to a type or value, imported from runtime Module
5
+ * we are referring to the name, that is actually exported
6
+ *
7
+ * @param name imported name
8
+ */
9
+ export declare function runtimeImport(name: RuntimeExport): string;
3
10
  export declare function runtimeImportedType(name: RuntimeExport): ts.NamedType;
4
11
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/client-generator-ts",
3
- "version": "6.19.0-integration-feat-remove-library-engine.4",
3
+ "version": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
4
4
  "description": "This package is intended for Prisma's internal use",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "dependencies": {
27
27
  "@antfu/ni": "0.21.12",
28
- "@prisma/engines-version": "6.19.0-29.next-ac95b5893b3c05bf39a2431fc1a748dd46152ab4",
28
+ "@prisma/engines-version": "6.19.0-31.next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23",
29
29
  "ci-info": "4.2.0",
30
30
  "fast-glob": "3.3.3",
31
31
  "get-tsconfig": "4.10.0",
@@ -34,14 +34,14 @@
34
34
  "package-up": "5.0.0",
35
35
  "pluralize": "8.0.0",
36
36
  "ts-pattern": "5.6.2",
37
- "@prisma/client-common": "6.19.0-integration-feat-remove-library-engine.4",
38
- "@prisma/dmmf": "6.19.0-integration-feat-remove-library-engine.4",
39
- "@prisma/debug": "6.19.0-integration-feat-remove-library-engine.4",
40
- "@prisma/fetch-engine": "6.19.0-integration-feat-remove-library-engine.4",
41
- "@prisma/generator": "6.19.0-integration-feat-remove-library-engine.4",
42
- "@prisma/get-platform": "6.19.0-integration-feat-remove-library-engine.4",
43
- "@prisma/ts-builders": "6.19.0-integration-feat-remove-library-engine.4",
44
- "@prisma/internals": "6.19.0-integration-feat-remove-library-engine.4"
37
+ "@prisma/client-common": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
38
+ "@prisma/debug": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
39
+ "@prisma/dmmf": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
40
+ "@prisma/fetch-engine": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
41
+ "@prisma/get-platform": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
42
+ "@prisma/generator": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
43
+ "@prisma/ts-builders": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1",
44
+ "@prisma/internals": "6.19.0-integration-engines-6-19-0-31-next-6f525e2b254a97a9c547ae5f2b29c54a171f6b23.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/pluralize": "0.0.33",