@a_team/prisma 3.12.5-macos-docker-linux → 3.12.6-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 +4 -4
- package/dist/client/index.d.ts +36 -36
- package/dist/client/index.js +6 -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 +1 -1
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -14501,7 +14501,7 @@ export namespace Prisma {
|
|
|
14501
14501
|
|
|
14502
14502
|
export type CalendarEventGroupByOutputType = {
|
|
14503
14503
|
id: string
|
|
14504
|
-
calendarEventId: string
|
|
14504
|
+
calendarEventId: string | null
|
|
14505
14505
|
userId: string
|
|
14506
14506
|
calendarId: string
|
|
14507
14507
|
eventTypeId: string
|
|
@@ -14593,7 +14593,7 @@ export namespace Prisma {
|
|
|
14593
14593
|
}
|
|
14594
14594
|
scalars: $Extensions.GetPayloadResult<{
|
|
14595
14595
|
id: string
|
|
14596
|
-
calendarEventId: string
|
|
14596
|
+
calendarEventId: string | null
|
|
14597
14597
|
userId: string
|
|
14598
14598
|
calendarId: string
|
|
14599
14599
|
eventTypeId: string
|
|
@@ -37499,7 +37499,7 @@ export namespace Prisma {
|
|
|
37499
37499
|
OR?: CalendarEventWhereInput[]
|
|
37500
37500
|
NOT?: CalendarEventWhereInput | CalendarEventWhereInput[]
|
|
37501
37501
|
id?: StringFilter<"CalendarEvent"> | string
|
|
37502
|
-
calendarEventId?:
|
|
37502
|
+
calendarEventId?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37503
37503
|
userId?: StringFilter<"CalendarEvent"> | string
|
|
37504
37504
|
calendarId?: StringFilter<"CalendarEvent"> | string
|
|
37505
37505
|
eventTypeId?: StringFilter<"CalendarEvent"> | string
|
|
@@ -37595,7 +37595,7 @@ export namespace Prisma {
|
|
|
37595
37595
|
OR?: CalendarEventScalarWhereWithAggregatesInput[]
|
|
37596
37596
|
NOT?: CalendarEventScalarWhereWithAggregatesInput | CalendarEventScalarWhereWithAggregatesInput[]
|
|
37597
37597
|
id?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37598
|
-
calendarEventId?:
|
|
37598
|
+
calendarEventId?: StringNullableWithAggregatesFilter<"CalendarEvent"> | string | null
|
|
37599
37599
|
userId?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37600
37600
|
calendarId?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37601
37601
|
eventTypeId?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
@@ -40126,7 +40126,7 @@ export namespace Prisma {
|
|
|
40126
40126
|
|
|
40127
40127
|
export type CalendarEventCreateInput = {
|
|
40128
40128
|
id?: string
|
|
40129
|
-
calendarEventId
|
|
40129
|
+
calendarEventId?: string | null
|
|
40130
40130
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40131
40131
|
status: $Enums.EventStatus
|
|
40132
40132
|
startTime: Date | string
|
|
@@ -40145,7 +40145,7 @@ export namespace Prisma {
|
|
|
40145
40145
|
|
|
40146
40146
|
export type CalendarEventUncheckedCreateInput = {
|
|
40147
40147
|
id?: string
|
|
40148
|
-
calendarEventId
|
|
40148
|
+
calendarEventId?: string | null
|
|
40149
40149
|
userId: string
|
|
40150
40150
|
calendarId: string
|
|
40151
40151
|
eventTypeId: string
|
|
@@ -40163,7 +40163,7 @@ export namespace Prisma {
|
|
|
40163
40163
|
}
|
|
40164
40164
|
|
|
40165
40165
|
export type CalendarEventUpdateInput = {
|
|
40166
|
-
calendarEventId?:
|
|
40166
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40167
40167
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40168
40168
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40169
40169
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -40181,7 +40181,7 @@ export namespace Prisma {
|
|
|
40181
40181
|
}
|
|
40182
40182
|
|
|
40183
40183
|
export type CalendarEventUncheckedUpdateInput = {
|
|
40184
|
-
calendarEventId?:
|
|
40184
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40185
40185
|
userId?: StringFieldUpdateOperationsInput | string
|
|
40186
40186
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
40187
40187
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
@@ -40200,7 +40200,7 @@ export namespace Prisma {
|
|
|
40200
40200
|
|
|
40201
40201
|
export type CalendarEventCreateManyInput = {
|
|
40202
40202
|
id?: string
|
|
40203
|
-
calendarEventId
|
|
40203
|
+
calendarEventId?: string | null
|
|
40204
40204
|
userId: string
|
|
40205
40205
|
calendarId: string
|
|
40206
40206
|
eventTypeId: string
|
|
@@ -40218,7 +40218,7 @@ export namespace Prisma {
|
|
|
40218
40218
|
}
|
|
40219
40219
|
|
|
40220
40220
|
export type CalendarEventUpdateManyMutationInput = {
|
|
40221
|
-
calendarEventId?:
|
|
40221
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40222
40222
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40223
40223
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40224
40224
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -40232,7 +40232,7 @@ export namespace Prisma {
|
|
|
40232
40232
|
}
|
|
40233
40233
|
|
|
40234
40234
|
export type CalendarEventUncheckedUpdateManyInput = {
|
|
40235
|
-
calendarEventId?:
|
|
40235
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40236
40236
|
userId?: StringFieldUpdateOperationsInput | string
|
|
40237
40237
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
40238
40238
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
@@ -52120,7 +52120,7 @@ export namespace Prisma {
|
|
|
52120
52120
|
|
|
52121
52121
|
export type CalendarEventCreateWithoutCalendarInput = {
|
|
52122
52122
|
id?: string
|
|
52123
|
-
calendarEventId
|
|
52123
|
+
calendarEventId?: string | null
|
|
52124
52124
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
52125
52125
|
status: $Enums.EventStatus
|
|
52126
52126
|
startTime: Date | string
|
|
@@ -52138,7 +52138,7 @@ export namespace Prisma {
|
|
|
52138
52138
|
|
|
52139
52139
|
export type CalendarEventUncheckedCreateWithoutCalendarInput = {
|
|
52140
52140
|
id?: string
|
|
52141
|
-
calendarEventId
|
|
52141
|
+
calendarEventId?: string | null
|
|
52142
52142
|
userId: string
|
|
52143
52143
|
eventTypeId: string
|
|
52144
52144
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -52310,7 +52310,7 @@ export namespace Prisma {
|
|
|
52310
52310
|
OR?: CalendarEventScalarWhereInput[]
|
|
52311
52311
|
NOT?: CalendarEventScalarWhereInput | CalendarEventScalarWhereInput[]
|
|
52312
52312
|
id?: StringFilter<"CalendarEvent"> | string
|
|
52313
|
-
calendarEventId?:
|
|
52313
|
+
calendarEventId?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
52314
52314
|
userId?: StringFilter<"CalendarEvent"> | string
|
|
52315
52315
|
calendarId?: StringFilter<"CalendarEvent"> | string
|
|
52316
52316
|
eventTypeId?: StringFilter<"CalendarEvent"> | string
|
|
@@ -53217,7 +53217,7 @@ export namespace Prisma {
|
|
|
53217
53217
|
|
|
53218
53218
|
export type CalendarEventCreateWithoutEventTypeInput = {
|
|
53219
53219
|
id?: string
|
|
53220
|
-
calendarEventId
|
|
53220
|
+
calendarEventId?: string | null
|
|
53221
53221
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
53222
53222
|
status: $Enums.EventStatus
|
|
53223
53223
|
startTime: Date | string
|
|
@@ -53235,7 +53235,7 @@ export namespace Prisma {
|
|
|
53235
53235
|
|
|
53236
53236
|
export type CalendarEventUncheckedCreateWithoutEventTypeInput = {
|
|
53237
53237
|
id?: string
|
|
53238
|
-
calendarEventId
|
|
53238
|
+
calendarEventId?: string | null
|
|
53239
53239
|
userId: string
|
|
53240
53240
|
calendarId: string
|
|
53241
53241
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -59454,7 +59454,7 @@ export namespace Prisma {
|
|
|
59454
59454
|
|
|
59455
59455
|
export type CalendarEventCreateWithoutEventOwnerInput = {
|
|
59456
59456
|
id?: string
|
|
59457
|
-
calendarEventId
|
|
59457
|
+
calendarEventId?: string | null
|
|
59458
59458
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
59459
59459
|
status: $Enums.EventStatus
|
|
59460
59460
|
startTime: Date | string
|
|
@@ -59472,7 +59472,7 @@ export namespace Prisma {
|
|
|
59472
59472
|
|
|
59473
59473
|
export type CalendarEventUncheckedCreateWithoutEventOwnerInput = {
|
|
59474
59474
|
id?: string
|
|
59475
|
-
calendarEventId
|
|
59475
|
+
calendarEventId?: string | null
|
|
59476
59476
|
calendarId: string
|
|
59477
59477
|
eventTypeId: string
|
|
59478
59478
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -59549,7 +59549,7 @@ export namespace Prisma {
|
|
|
59549
59549
|
|
|
59550
59550
|
export type CalendarEventCreateWithoutReschedulingUserInput = {
|
|
59551
59551
|
id?: string
|
|
59552
|
-
calendarEventId
|
|
59552
|
+
calendarEventId?: string | null
|
|
59553
59553
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
59554
59554
|
status: $Enums.EventStatus
|
|
59555
59555
|
startTime: Date | string
|
|
@@ -59567,7 +59567,7 @@ export namespace Prisma {
|
|
|
59567
59567
|
|
|
59568
59568
|
export type CalendarEventUncheckedCreateWithoutReschedulingUserInput = {
|
|
59569
59569
|
id?: string
|
|
59570
|
-
calendarEventId
|
|
59570
|
+
calendarEventId?: string | null
|
|
59571
59571
|
userId: string
|
|
59572
59572
|
calendarId: string
|
|
59573
59573
|
eventTypeId: string
|
|
@@ -62258,7 +62258,7 @@ export namespace Prisma {
|
|
|
62258
62258
|
|
|
62259
62259
|
export type CalendarEventCreateManyCalendarInput = {
|
|
62260
62260
|
id?: string
|
|
62261
|
-
calendarEventId
|
|
62261
|
+
calendarEventId?: string | null
|
|
62262
62262
|
userId: string
|
|
62263
62263
|
eventTypeId: string
|
|
62264
62264
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -62275,7 +62275,7 @@ export namespace Prisma {
|
|
|
62275
62275
|
}
|
|
62276
62276
|
|
|
62277
62277
|
export type CalendarEventUpdateWithoutCalendarInput = {
|
|
62278
|
-
calendarEventId?:
|
|
62278
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62279
62279
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
62280
62280
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
62281
62281
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -62292,7 +62292,7 @@ export namespace Prisma {
|
|
|
62292
62292
|
}
|
|
62293
62293
|
|
|
62294
62294
|
export type CalendarEventUncheckedUpdateWithoutCalendarInput = {
|
|
62295
|
-
calendarEventId?:
|
|
62295
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62296
62296
|
userId?: StringFieldUpdateOperationsInput | string
|
|
62297
62297
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
62298
62298
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -62309,7 +62309,7 @@ export namespace Prisma {
|
|
|
62309
62309
|
}
|
|
62310
62310
|
|
|
62311
62311
|
export type CalendarEventUncheckedUpdateManyWithoutCalendarInput = {
|
|
62312
|
-
calendarEventId?:
|
|
62312
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62313
62313
|
userId?: StringFieldUpdateOperationsInput | string
|
|
62314
62314
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
62315
62315
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -62333,7 +62333,7 @@ export namespace Prisma {
|
|
|
62333
62333
|
|
|
62334
62334
|
export type CalendarEventCreateManyEventTypeInput = {
|
|
62335
62335
|
id?: string
|
|
62336
|
-
calendarEventId
|
|
62336
|
+
calendarEventId?: string | null
|
|
62337
62337
|
userId: string
|
|
62338
62338
|
calendarId: string
|
|
62339
62339
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -62361,7 +62361,7 @@ export namespace Prisma {
|
|
|
62361
62361
|
}
|
|
62362
62362
|
|
|
62363
62363
|
export type CalendarEventUpdateWithoutEventTypeInput = {
|
|
62364
|
-
calendarEventId?:
|
|
62364
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62365
62365
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
62366
62366
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
62367
62367
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -62378,7 +62378,7 @@ export namespace Prisma {
|
|
|
62378
62378
|
}
|
|
62379
62379
|
|
|
62380
62380
|
export type CalendarEventUncheckedUpdateWithoutEventTypeInput = {
|
|
62381
|
-
calendarEventId?:
|
|
62381
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62382
62382
|
userId?: StringFieldUpdateOperationsInput | string
|
|
62383
62383
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
62384
62384
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -62395,7 +62395,7 @@ export namespace Prisma {
|
|
|
62395
62395
|
}
|
|
62396
62396
|
|
|
62397
62397
|
export type CalendarEventUncheckedUpdateManyWithoutEventTypeInput = {
|
|
62398
|
-
calendarEventId?:
|
|
62398
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62399
62399
|
userId?: StringFieldUpdateOperationsInput | string
|
|
62400
62400
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
62401
62401
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -63874,7 +63874,7 @@ export namespace Prisma {
|
|
|
63874
63874
|
|
|
63875
63875
|
export type CalendarEventCreateManyEventOwnerInput = {
|
|
63876
63876
|
id?: string
|
|
63877
|
-
calendarEventId
|
|
63877
|
+
calendarEventId?: string | null
|
|
63878
63878
|
calendarId: string
|
|
63879
63879
|
eventTypeId: string
|
|
63880
63880
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -63903,7 +63903,7 @@ export namespace Prisma {
|
|
|
63903
63903
|
|
|
63904
63904
|
export type CalendarEventCreateManyReschedulingUserInput = {
|
|
63905
63905
|
id?: string
|
|
63906
|
-
calendarEventId
|
|
63906
|
+
calendarEventId?: string | null
|
|
63907
63907
|
userId: string
|
|
63908
63908
|
calendarId: string
|
|
63909
63909
|
eventTypeId: string
|
|
@@ -65001,7 +65001,7 @@ export namespace Prisma {
|
|
|
65001
65001
|
}
|
|
65002
65002
|
|
|
65003
65003
|
export type CalendarEventUpdateWithoutEventOwnerInput = {
|
|
65004
|
-
calendarEventId?:
|
|
65004
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65005
65005
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65006
65006
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65007
65007
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -65018,7 +65018,7 @@ export namespace Prisma {
|
|
|
65018
65018
|
}
|
|
65019
65019
|
|
|
65020
65020
|
export type CalendarEventUncheckedUpdateWithoutEventOwnerInput = {
|
|
65021
|
-
calendarEventId?:
|
|
65021
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65022
65022
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
65023
65023
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
65024
65024
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -65035,7 +65035,7 @@ export namespace Prisma {
|
|
|
65035
65035
|
}
|
|
65036
65036
|
|
|
65037
65037
|
export type CalendarEventUncheckedUpdateManyWithoutEventOwnerInput = {
|
|
65038
|
-
calendarEventId?:
|
|
65038
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65039
65039
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
65040
65040
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
65041
65041
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
@@ -65082,7 +65082,7 @@ export namespace Prisma {
|
|
|
65082
65082
|
}
|
|
65083
65083
|
|
|
65084
65084
|
export type CalendarEventUpdateWithoutReschedulingUserInput = {
|
|
65085
|
-
calendarEventId?:
|
|
65085
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65086
65086
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65087
65087
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65088
65088
|
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -65099,7 +65099,7 @@ export namespace Prisma {
|
|
|
65099
65099
|
}
|
|
65100
65100
|
|
|
65101
65101
|
export type CalendarEventUncheckedUpdateWithoutReschedulingUserInput = {
|
|
65102
|
-
calendarEventId?:
|
|
65102
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65103
65103
|
userId?: StringFieldUpdateOperationsInput | string
|
|
65104
65104
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
65105
65105
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
@@ -65116,7 +65116,7 @@ export namespace Prisma {
|
|
|
65116
65116
|
}
|
|
65117
65117
|
|
|
65118
65118
|
export type CalendarEventUncheckedUpdateManyWithoutReschedulingUserInput = {
|
|
65119
|
-
calendarEventId?:
|
|
65119
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65120
65120
|
userId?: StringFieldUpdateOperationsInput | string
|
|
65121
65121
|
calendarId?: StringFieldUpdateOperationsInput | string
|
|
65122
65122
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|