plc-prisma 5.8.0 → 5.8.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.
@@ -0,0 +1,68 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+
20
+ // src/scripts/default-index.ts
21
+ var default_index_exports = {};
22
+ __export(default_index_exports, {
23
+ Prisma: () => Prisma,
24
+ PrismaClient: () => PrismaClient,
25
+ default: () => default_index_default
26
+ });
27
+ module.exports = __toCommonJS(default_index_exports);
28
+
29
+ // ../../node_modules/.pnpm/@prisma+engines-version@5.8.0-37.0a83d8541752d7582de2ebc1ece46519ce72a848/node_modules/@prisma/engines-version/package.json
30
+ var prisma = {
31
+ enginesVersion: "0a83d8541752d7582de2ebc1ece46519ce72a848"
32
+ };
33
+
34
+ // package.json
35
+ var version = "0.0.0";
36
+
37
+ // src/runtime/utils/clientVersion.ts
38
+ var clientVersion = version;
39
+
40
+ // src/scripts/default-index.ts
41
+ var PrismaClient = class {
42
+ constructor() {
43
+ throw new Error(
44
+ `@prisma/client did not initialize yet. Please run "prisma generate" and try to import it again.
45
+ In case this error is unexpected for you, please report it in https://github.com/prisma/prisma/issues`
46
+ );
47
+ }
48
+ };
49
+ function defineExtension(ext) {
50
+ if (typeof ext === "function") {
51
+ return ext;
52
+ }
53
+ return (client) => client.$extends(ext);
54
+ }
55
+ function getExtensionContext(that) {
56
+ return that;
57
+ }
58
+ var Prisma = {
59
+ defineExtension,
60
+ getExtensionContext,
61
+ prismaVersion: { client: clientVersion, engine: prisma.enginesVersion }
62
+ };
63
+ var default_index_default = { Prisma };
64
+ // Annotate the CommonJS export names for ESM import in node:
65
+ 0 && (module.exports = {
66
+ Prisma,
67
+ PrismaClient
68
+ });