@a_team/prisma 3.12.6-macos-docker-linux → 3.12.7-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 +6 -4
- package/dist/client/index-browser.js +2 -0
- package/dist/client/index.d.ts +104 -0
- package/dist/client/index.js +8 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.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 +2 -0
- package/dist/client/wasm.js +2 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -160,6 +160,8 @@ model CalendarEvent {
|
|
|
160
160
|
status EventStatus
|
|
161
161
|
startTime DateTime
|
|
162
162
|
endTime DateTime
|
|
163
|
+
summary String?
|
|
164
|
+
description String?
|
|
163
165
|
callUrl String? // URL of the daily.co or any video call provider
|
|
164
166
|
callId String? // id of the call link e.g. daily.co room id
|
|
165
167
|
clientRecordingOptOut Boolean @default(false)
|
package/dist/client/wasm.js
CHANGED
|
@@ -164,6 +164,8 @@ exports.Prisma.CalendarEventScalarFieldEnum = {
|
|
|
164
164
|
status: 'status',
|
|
165
165
|
startTime: 'startTime',
|
|
166
166
|
endTime: 'endTime',
|
|
167
|
+
summary: 'summary',
|
|
168
|
+
description: 'description',
|
|
167
169
|
callUrl: 'callUrl',
|
|
168
170
|
callId: 'callId',
|
|
169
171
|
clientRecordingOptOut: 'clientRecordingOptOut',
|