@a_team/prisma 3.23.0-win → 3.23.1-linux
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/client/edge.js +10 -4
- package/dist/client/index-browser.js +6 -0
- package/dist/client/index.d.ts +248 -0
- package/dist/client/index.js +12 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +6 -0
- package/dist/client/wasm.js +6 -0
- package/package.json +4 -4
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1757,6 +1757,12 @@ model Transcript {
|
|
|
1757
1757
|
callbackRef String?
|
|
1758
1758
|
jobStatus String
|
|
1759
1759
|
transcriptCallType TranscriptCallType?
|
|
1760
|
+
outputBucket String?
|
|
1761
|
+
transcriptKey String?
|
|
1762
|
+
mediaKey String?
|
|
1763
|
+
duration Float?
|
|
1764
|
+
shortDuration Boolean?
|
|
1765
|
+
error String?
|
|
1760
1766
|
createdAt DateTime @default(now()) @db.Date
|
|
1761
1767
|
updatedAt DateTime @updatedAt @db.Date
|
|
1762
1768
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -583,6 +583,12 @@ exports.Prisma.TranscriptScalarFieldEnum = {
|
|
|
583
583
|
callbackRef: 'callbackRef',
|
|
584
584
|
jobStatus: 'jobStatus',
|
|
585
585
|
transcriptCallType: 'transcriptCallType',
|
|
586
|
+
outputBucket: 'outputBucket',
|
|
587
|
+
transcriptKey: 'transcriptKey',
|
|
588
|
+
mediaKey: 'mediaKey',
|
|
589
|
+
duration: 'duration',
|
|
590
|
+
shortDuration: 'shortDuration',
|
|
591
|
+
error: 'error',
|
|
586
592
|
createdAt: 'createdAt',
|
|
587
593
|
updatedAt: 'updatedAt'
|
|
588
594
|
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a_team/prisma",
|
|
3
|
-
"version": "3.23.
|
|
3
|
+
"version": "3.23.1-linux",
|
|
4
4
|
"os": [
|
|
5
|
-
"
|
|
5
|
+
"linux"
|
|
6
6
|
],
|
|
7
7
|
"cpu": [],
|
|
8
8
|
"keywords": [],
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "rm -rf ./dist && yarn run generate",
|
|
14
14
|
"postbuild": "sleep 5 && tsc && cp -R ./src/client ./dist/client && cp -R ./node_modules/@prisma/instrumentation dist/",
|
|
15
|
-
"generate": "
|
|
16
|
-
"format": "
|
|
15
|
+
"generate": "prisma generate",
|
|
16
|
+
"format": "prisma format"
|
|
17
17
|
},
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|