document-drive 4.1.0-dev.79 → 4.1.0-dev.80

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.
@@ -3,7 +3,7 @@
3
3
 
4
4
  generator client {
5
5
  provider = "prisma-client-js"
6
- binaryTargets = ["native", "linux-musl"]
6
+ binaryTargets = ["native", "linux-musl", "debian-openssl-3.0.x"]
7
7
  output = "../src/storage/prisma/client"
8
8
  }
9
9
 
@@ -207,6 +207,10 @@ const config = {
207
207
  {
208
208
  "fromEnvVar": null,
209
209
  "value": "linux-musl"
210
+ },
211
+ {
212
+ "fromEnvVar": null,
213
+ "value": "debian-openssl-3.0.x"
210
214
  }
211
215
  ],
212
216
  "previewFeatures": [],
@@ -233,8 +237,8 @@ const config = {
233
237
  }
234
238
  }
235
239
  },
236
- "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
237
- "inlineSchemaHash": "def9250859812e8f340f32ed129ff919181a0536056618a496218e59a3582c17",
240
+ "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\", \"debian-openssl-3.0.x\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
241
+ "inlineSchemaHash": "b973e57265383a7127dec57811ef41ddf1192f30398c1d32ee1a425c026d13a8",
238
242
  "copyEngine": true
239
243
  }
240
244
  config.dirname = '/'
@@ -208,6 +208,10 @@ const config = {
208
208
  {
209
209
  "fromEnvVar": null,
210
210
  "value": "linux-musl"
211
+ },
212
+ {
213
+ "fromEnvVar": null,
214
+ "value": "debian-openssl-3.0.x"
211
215
  }
212
216
  ],
213
217
  "previewFeatures": [],
@@ -234,8 +238,8 @@ const config = {
234
238
  }
235
239
  }
236
240
  },
237
- "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
238
- "inlineSchemaHash": "def9250859812e8f340f32ed129ff919181a0536056618a496218e59a3582c17",
241
+ "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\", \"debian-openssl-3.0.x\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
242
+ "inlineSchemaHash": "b973e57265383a7127dec57811ef41ddf1192f30398c1d32ee1a425c026d13a8",
239
243
  "copyEngine": true
240
244
  }
241
245
 
@@ -279,6 +283,10 @@ path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-darwin-arm64
279
283
  // file annotations for bundling tools to include these files
280
284
  path.join(__dirname, "libquery_engine-linux-musl.so.node");
281
285
  path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-linux-musl.so.node")
286
+
287
+ // file annotations for bundling tools to include these files
288
+ path.join(__dirname, "libquery_engine-debian-openssl-3.0.x.so.node");
289
+ path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-debian-openssl-3.0.x.so.node")
282
290
  // file annotations for bundling tools to include these files
283
291
  path.join(__dirname, "schema.prisma");
284
292
  path.join(process.cwd(), "src/storage/prisma/client/schema.prisma")
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-05604ebf51bc2eef819d3a63b651320d25c4a1131e37c6bff38a73ffc43aed32",
2
+ "name": "prisma-client-87eef47cf87e7d3b9562add1bab1d5a437656bc3182df380f222a796813f9c78",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -3,7 +3,7 @@
3
3
 
4
4
  generator client {
5
5
  provider = "prisma-client-js"
6
- binaryTargets = ["native", "linux-musl"]
6
+ binaryTargets = ["native", "linux-musl", "debian-openssl-3.0.x"]
7
7
  output = "../src/storage/prisma/client"
8
8
  }
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document-drive",
3
- "version": "4.1.0-dev.79",
3
+ "version": "4.1.0-dev.80",
4
4
  "license": "AGPL-3.0-only",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -68,8 +68,8 @@
68
68
  "sqlite3": "^5.1.7",
69
69
  "uuid": "^11.0.5",
70
70
  "zod": "^3.24.3",
71
- "document-model": "4.1.0-dev.79",
72
- "@powerhousedao/config": "4.1.0-dev.79"
71
+ "document-model": "4.1.0-dev.80",
72
+ "@powerhousedao/config": "4.1.0-dev.80"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@anatine/zod-mock": "^3.14.0",
@@ -3,7 +3,7 @@
3
3
 
4
4
  generator client {
5
5
  provider = "prisma-client-js"
6
- binaryTargets = ["native", "linux-musl"]
6
+ binaryTargets = ["native", "linux-musl", "debian-openssl-3.0.x"]
7
7
  output = "../src/storage/prisma/client"
8
8
  }
9
9
 
@@ -207,6 +207,10 @@ const config = {
207
207
  {
208
208
  "fromEnvVar": null,
209
209
  "value": "linux-musl"
210
+ },
211
+ {
212
+ "fromEnvVar": null,
213
+ "value": "debian-openssl-3.0.x"
210
214
  }
211
215
  ],
212
216
  "previewFeatures": [],
@@ -233,8 +237,8 @@ const config = {
233
237
  }
234
238
  }
235
239
  },
236
- "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
237
- "inlineSchemaHash": "def9250859812e8f340f32ed129ff919181a0536056618a496218e59a3582c17",
240
+ "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\", \"debian-openssl-3.0.x\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
241
+ "inlineSchemaHash": "b973e57265383a7127dec57811ef41ddf1192f30398c1d32ee1a425c026d13a8",
238
242
  "copyEngine": true
239
243
  }
240
244
  config.dirname = '/'
@@ -208,6 +208,10 @@ const config = {
208
208
  {
209
209
  "fromEnvVar": null,
210
210
  "value": "linux-musl"
211
+ },
212
+ {
213
+ "fromEnvVar": null,
214
+ "value": "debian-openssl-3.0.x"
211
215
  }
212
216
  ],
213
217
  "previewFeatures": [],
@@ -234,8 +238,8 @@ const config = {
234
238
  }
235
239
  }
236
240
  },
237
- "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
238
- "inlineSchemaHash": "def9250859812e8f340f32ed129ff919181a0536056618a496218e59a3582c17",
241
+ "inlineSchema": "// This is your Prisma schema file,\n// learn more about it in the docs: https://pris.ly/d/prisma-schema\n\ngenerator client {\n provider = \"prisma-client-js\"\n binaryTargets = [\"native\", \"linux-musl\", \"debian-openssl-3.0.x\"]\n output = \"../src/storage/prisma/client\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n}\n\nmodel Drive {\n id String @id\n driveDocuments DriveDocument[]\n}\n\nmodel Document {\n id String @id\n // ordinal used only for paging\n ordinal Int @unique @default(autoincrement())\n created DateTime @default(now())\n lastModified DateTime @default(now())\n slug String? @unique\n revision String\n name String?\n operations Operation[]\n initialState String // json object with the scope as keys of the root object\n documentType String\n meta String?\n synchronizationUnits SynchronizationUnit[]\n scopes String[]\n}\n\n// Model to map the many-to-many relationship between drives and documents\nmodel DriveDocument {\n driveId String\n documentId String\n drive Drive @relation(fields: [driveId], references: [id], onDelete: Cascade)\n\n @@id([driveId, documentId])\n @@index([driveId])\n @@index([documentId])\n}\n\nmodel Operation {\n id String @id @default(uuid())\n opId String?\n Document Document? @relation(fields: [documentId], references: [id], onDelete: Cascade)\n documentId String\n scope String\n branch String\n index Int\n skip Int\n hash String\n timestamp DateTime\n actionId String\n input String\n type String\n attachments Attachment[]\n syncId String?\n clipboard Boolean? @default(false)\n context Json?\n resultingState Bytes?\n\n SynchronizationUnit SynchronizationUnit? @relation(fields: [syncId], references: [id], onDelete: Cascade)\n\n @@unique([documentId, scope, branch, index(sort: Asc)], name: \"unique_operation\")\n}\n\nmodel SynchronizationUnit {\n id String @id\n documentId String\n\n Document Document @relation(fields: [documentId], references: [id], onDelete: Cascade)\n scope String\n branch String\n operations Operation[]\n}\n\nmodel Attachment {\n id String @id @default(uuid())\n operationId String\n Operation Operation @relation(fields: [operationId], references: [id], onDelete: Cascade)\n\n mimeType String\n data String\n filename String?\n extension String?\n hash String\n}\n",
242
+ "inlineSchemaHash": "b973e57265383a7127dec57811ef41ddf1192f30398c1d32ee1a425c026d13a8",
239
243
  "copyEngine": true
240
244
  }
241
245
 
@@ -279,6 +283,10 @@ path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-darwin-arm64
279
283
  // file annotations for bundling tools to include these files
280
284
  path.join(__dirname, "libquery_engine-linux-musl.so.node");
281
285
  path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-linux-musl.so.node")
286
+
287
+ // file annotations for bundling tools to include these files
288
+ path.join(__dirname, "libquery_engine-debian-openssl-3.0.x.so.node");
289
+ path.join(process.cwd(), "src/storage/prisma/client/libquery_engine-debian-openssl-3.0.x.so.node")
282
290
  // file annotations for bundling tools to include these files
283
291
  path.join(__dirname, "schema.prisma");
284
292
  path.join(process.cwd(), "src/storage/prisma/client/schema.prisma")
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-05604ebf51bc2eef819d3a63b651320d25c4a1131e37c6bff38a73ffc43aed32",
2
+ "name": "prisma-client-87eef47cf87e7d3b9562add1bab1d5a437656bc3182df380f222a796813f9c78",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -3,7 +3,7 @@
3
3
 
4
4
  generator client {
5
5
  provider = "prisma-client-js"
6
- binaryTargets = ["native", "linux-musl"]
6
+ binaryTargets = ["native", "linux-musl", "debian-openssl-3.0.x"]
7
7
  output = "../src/storage/prisma/client"
8
8
  }
9
9