@a_team/prisma 3.12.9-macos-docker-linux → 3.13.0-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 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +132 -97
- package/dist/client/index.js +8 -7
- 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 +4 -3
- package/dist/client/wasm.js +2 -1
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -4767,14 +4767,14 @@ export namespace Prisma {
|
|
|
4767
4767
|
export type AttendeeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4768
4768
|
email?: boolean
|
|
4769
4769
|
name?: boolean
|
|
4770
|
-
|
|
4770
|
+
timezone?: boolean
|
|
4771
4771
|
}, ExtArgs["result"]["attendee"]>
|
|
4772
4772
|
|
|
4773
4773
|
|
|
4774
4774
|
export type AttendeeSelectScalar = {
|
|
4775
4775
|
email?: boolean
|
|
4776
4776
|
name?: boolean
|
|
4777
|
-
|
|
4777
|
+
timezone?: boolean
|
|
4778
4778
|
}
|
|
4779
4779
|
|
|
4780
4780
|
|
|
@@ -4784,7 +4784,7 @@ export namespace Prisma {
|
|
|
4784
4784
|
scalars: {
|
|
4785
4785
|
email: string
|
|
4786
4786
|
name: string | null
|
|
4787
|
-
|
|
4787
|
+
timezone: string | null
|
|
4788
4788
|
}
|
|
4789
4789
|
composites: {}
|
|
4790
4790
|
}
|
|
@@ -4801,7 +4801,7 @@ export namespace Prisma {
|
|
|
4801
4801
|
interface AttendeeFieldRefs {
|
|
4802
4802
|
readonly email: FieldRef<"Attendee", 'String'>
|
|
4803
4803
|
readonly name: FieldRef<"Attendee", 'String'>
|
|
4804
|
-
readonly
|
|
4804
|
+
readonly timezone: FieldRef<"Attendee", 'String'>
|
|
4805
4805
|
}
|
|
4806
4806
|
|
|
4807
4807
|
|
|
@@ -14407,8 +14407,8 @@ export namespace Prisma {
|
|
|
14407
14407
|
eventTypeId: string | null
|
|
14408
14408
|
rescheduledBy: string | null
|
|
14409
14409
|
status: $Enums.EventStatus | null
|
|
14410
|
-
startTime:
|
|
14411
|
-
endTime:
|
|
14410
|
+
startTime: string | null
|
|
14411
|
+
endTime: string | null
|
|
14412
14412
|
summary: string | null
|
|
14413
14413
|
description: string | null
|
|
14414
14414
|
callUrl: string | null
|
|
@@ -14427,8 +14427,8 @@ export namespace Prisma {
|
|
|
14427
14427
|
eventTypeId: string | null
|
|
14428
14428
|
rescheduledBy: string | null
|
|
14429
14429
|
status: $Enums.EventStatus | null
|
|
14430
|
-
startTime:
|
|
14431
|
-
endTime:
|
|
14430
|
+
startTime: string | null
|
|
14431
|
+
endTime: string | null
|
|
14432
14432
|
summary: string | null
|
|
14433
14433
|
description: string | null
|
|
14434
14434
|
callUrl: string | null
|
|
@@ -14602,8 +14602,8 @@ export namespace Prisma {
|
|
|
14602
14602
|
eventTypeId: string
|
|
14603
14603
|
rescheduledBy: string | null
|
|
14604
14604
|
status: $Enums.EventStatus
|
|
14605
|
-
startTime:
|
|
14606
|
-
endTime:
|
|
14605
|
+
startTime: string
|
|
14606
|
+
endTime: string
|
|
14607
14607
|
summary: string | null
|
|
14608
14608
|
description: string | null
|
|
14609
14609
|
callUrl: string | null
|
|
@@ -14703,8 +14703,8 @@ export namespace Prisma {
|
|
|
14703
14703
|
eventTypeId: string
|
|
14704
14704
|
rescheduledBy: string | null
|
|
14705
14705
|
status: $Enums.EventStatus
|
|
14706
|
-
startTime:
|
|
14707
|
-
endTime:
|
|
14706
|
+
startTime: string
|
|
14707
|
+
endTime: string
|
|
14708
14708
|
summary: string | null
|
|
14709
14709
|
description: string | null
|
|
14710
14710
|
callUrl: string | null
|
|
@@ -15119,8 +15119,8 @@ export namespace Prisma {
|
|
|
15119
15119
|
readonly eventTypeId: FieldRef<"CalendarEvent", 'String'>
|
|
15120
15120
|
readonly rescheduledBy: FieldRef<"CalendarEvent", 'String'>
|
|
15121
15121
|
readonly status: FieldRef<"CalendarEvent", 'EventStatus'>
|
|
15122
|
-
readonly startTime: FieldRef<"CalendarEvent", '
|
|
15123
|
-
readonly endTime: FieldRef<"CalendarEvent", '
|
|
15122
|
+
readonly startTime: FieldRef<"CalendarEvent", 'String'>
|
|
15123
|
+
readonly endTime: FieldRef<"CalendarEvent", 'String'>
|
|
15124
15124
|
readonly summary: FieldRef<"CalendarEvent", 'String'>
|
|
15125
15125
|
readonly description: FieldRef<"CalendarEvent", 'String'>
|
|
15126
15126
|
readonly callUrl: FieldRef<"CalendarEvent", 'String'>
|
|
@@ -15540,6 +15540,7 @@ export namespace Prisma {
|
|
|
15540
15540
|
autoConfirm: boolean | null
|
|
15541
15541
|
createdAt: Date | null
|
|
15542
15542
|
updatedAt: Date | null
|
|
15543
|
+
description: string | null
|
|
15543
15544
|
}
|
|
15544
15545
|
|
|
15545
15546
|
export type CalendarEventTypeMaxAggregateOutputType = {
|
|
@@ -15553,6 +15554,7 @@ export namespace Prisma {
|
|
|
15553
15554
|
autoConfirm: boolean | null
|
|
15554
15555
|
createdAt: Date | null
|
|
15555
15556
|
updatedAt: Date | null
|
|
15557
|
+
description: string | null
|
|
15556
15558
|
}
|
|
15557
15559
|
|
|
15558
15560
|
export type CalendarEventTypeCountAggregateOutputType = {
|
|
@@ -15567,6 +15569,7 @@ export namespace Prisma {
|
|
|
15567
15569
|
autoConfirm: number
|
|
15568
15570
|
createdAt: number
|
|
15569
15571
|
updatedAt: number
|
|
15572
|
+
description: number
|
|
15570
15573
|
_all: number
|
|
15571
15574
|
}
|
|
15572
15575
|
|
|
@@ -15600,6 +15603,7 @@ export namespace Prisma {
|
|
|
15600
15603
|
autoConfirm?: true
|
|
15601
15604
|
createdAt?: true
|
|
15602
15605
|
updatedAt?: true
|
|
15606
|
+
description?: true
|
|
15603
15607
|
}
|
|
15604
15608
|
|
|
15605
15609
|
export type CalendarEventTypeMaxAggregateInputType = {
|
|
@@ -15613,6 +15617,7 @@ export namespace Prisma {
|
|
|
15613
15617
|
autoConfirm?: true
|
|
15614
15618
|
createdAt?: true
|
|
15615
15619
|
updatedAt?: true
|
|
15620
|
+
description?: true
|
|
15616
15621
|
}
|
|
15617
15622
|
|
|
15618
15623
|
export type CalendarEventTypeCountAggregateInputType = {
|
|
@@ -15627,6 +15632,7 @@ export namespace Prisma {
|
|
|
15627
15632
|
autoConfirm?: true
|
|
15628
15633
|
createdAt?: true
|
|
15629
15634
|
updatedAt?: true
|
|
15635
|
+
description?: true
|
|
15630
15636
|
_all?: true
|
|
15631
15637
|
}
|
|
15632
15638
|
|
|
@@ -15728,6 +15734,7 @@ export namespace Prisma {
|
|
|
15728
15734
|
autoConfirm: boolean
|
|
15729
15735
|
createdAt: Date
|
|
15730
15736
|
updatedAt: Date
|
|
15737
|
+
description: string | null
|
|
15731
15738
|
_count: CalendarEventTypeCountAggregateOutputType | null
|
|
15732
15739
|
_avg: CalendarEventTypeAvgAggregateOutputType | null
|
|
15733
15740
|
_sum: CalendarEventTypeSumAggregateOutputType | null
|
|
@@ -15761,6 +15768,7 @@ export namespace Prisma {
|
|
|
15761
15768
|
autoConfirm?: boolean
|
|
15762
15769
|
createdAt?: boolean
|
|
15763
15770
|
updatedAt?: boolean
|
|
15771
|
+
description?: boolean
|
|
15764
15772
|
events?: boolean | CalendarEventType$eventsArgs<ExtArgs>
|
|
15765
15773
|
availabilities?: boolean | CalendarEventType$availabilitiesArgs<ExtArgs>
|
|
15766
15774
|
_count?: boolean | CalendarEventTypeCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -15779,6 +15787,7 @@ export namespace Prisma {
|
|
|
15779
15787
|
autoConfirm?: boolean
|
|
15780
15788
|
createdAt?: boolean
|
|
15781
15789
|
updatedAt?: boolean
|
|
15790
|
+
description?: boolean
|
|
15782
15791
|
}
|
|
15783
15792
|
|
|
15784
15793
|
export type CalendarEventTypeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -15805,6 +15814,7 @@ export namespace Prisma {
|
|
|
15805
15814
|
autoConfirm: boolean
|
|
15806
15815
|
createdAt: Date
|
|
15807
15816
|
updatedAt: Date
|
|
15817
|
+
description: string | null
|
|
15808
15818
|
}, ExtArgs["result"]["calendarEventType"]>
|
|
15809
15819
|
composites: {}
|
|
15810
15820
|
}
|
|
@@ -16210,6 +16220,7 @@ export namespace Prisma {
|
|
|
16210
16220
|
readonly autoConfirm: FieldRef<"CalendarEventType", 'Boolean'>
|
|
16211
16221
|
readonly createdAt: FieldRef<"CalendarEventType", 'DateTime'>
|
|
16212
16222
|
readonly updatedAt: FieldRef<"CalendarEventType", 'DateTime'>
|
|
16223
|
+
readonly description: FieldRef<"CalendarEventType", 'String'>
|
|
16213
16224
|
}
|
|
16214
16225
|
|
|
16215
16226
|
|
|
@@ -36394,7 +36405,8 @@ export namespace Prisma {
|
|
|
36394
36405
|
bookingWindow: 'bookingWindow',
|
|
36395
36406
|
autoConfirm: 'autoConfirm',
|
|
36396
36407
|
createdAt: 'createdAt',
|
|
36397
|
-
updatedAt: 'updatedAt'
|
|
36408
|
+
updatedAt: 'updatedAt',
|
|
36409
|
+
description: 'description'
|
|
36398
36410
|
};
|
|
36399
36411
|
|
|
36400
36412
|
export type CalendarEventTypeScalarFieldEnum = (typeof CalendarEventTypeScalarFieldEnum)[keyof typeof CalendarEventTypeScalarFieldEnum]
|
|
@@ -37681,8 +37693,8 @@ export namespace Prisma {
|
|
|
37681
37693
|
attendees?: AttendeeCompositeListFilter | AttendeeObjectEqualityInput[]
|
|
37682
37694
|
rescheduledBy?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37683
37695
|
status?: EnumEventStatusFilter<"CalendarEvent"> | $Enums.EventStatus
|
|
37684
|
-
startTime?:
|
|
37685
|
-
endTime?:
|
|
37696
|
+
startTime?: StringFilter<"CalendarEvent"> | string
|
|
37697
|
+
endTime?: StringFilter<"CalendarEvent"> | string
|
|
37686
37698
|
summary?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37687
37699
|
description?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37688
37700
|
callUrl?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
@@ -37736,8 +37748,8 @@ export namespace Prisma {
|
|
|
37736
37748
|
attendees?: AttendeeCompositeListFilter | AttendeeObjectEqualityInput[]
|
|
37737
37749
|
rescheduledBy?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37738
37750
|
status?: EnumEventStatusFilter<"CalendarEvent"> | $Enums.EventStatus
|
|
37739
|
-
startTime?:
|
|
37740
|
-
endTime?:
|
|
37751
|
+
startTime?: StringFilter<"CalendarEvent"> | string
|
|
37752
|
+
endTime?: StringFilter<"CalendarEvent"> | string
|
|
37741
37753
|
summary?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37742
37754
|
description?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37743
37755
|
callUrl?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
@@ -37787,8 +37799,8 @@ export namespace Prisma {
|
|
|
37787
37799
|
eventTypeId?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37788
37800
|
rescheduledBy?: StringNullableWithAggregatesFilter<"CalendarEvent"> | string | null
|
|
37789
37801
|
status?: EnumEventStatusWithAggregatesFilter<"CalendarEvent"> | $Enums.EventStatus
|
|
37790
|
-
startTime?:
|
|
37791
|
-
endTime?:
|
|
37802
|
+
startTime?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37803
|
+
endTime?: StringWithAggregatesFilter<"CalendarEvent"> | string
|
|
37792
37804
|
summary?: StringNullableWithAggregatesFilter<"CalendarEvent"> | string | null
|
|
37793
37805
|
description?: StringNullableWithAggregatesFilter<"CalendarEvent"> | string | null
|
|
37794
37806
|
callUrl?: StringNullableWithAggregatesFilter<"CalendarEvent"> | string | null
|
|
@@ -37814,6 +37826,7 @@ export namespace Prisma {
|
|
|
37814
37826
|
autoConfirm?: BoolFilter<"CalendarEventType"> | boolean
|
|
37815
37827
|
createdAt?: DateTimeFilter<"CalendarEventType"> | Date | string
|
|
37816
37828
|
updatedAt?: DateTimeFilter<"CalendarEventType"> | Date | string
|
|
37829
|
+
description?: StringNullableFilter<"CalendarEventType"> | string | null
|
|
37817
37830
|
events?: CalendarEventListRelationFilter
|
|
37818
37831
|
availabilities?: CalendarAvailabilityListRelationFilter
|
|
37819
37832
|
}
|
|
@@ -37830,6 +37843,7 @@ export namespace Prisma {
|
|
|
37830
37843
|
autoConfirm?: SortOrder
|
|
37831
37844
|
createdAt?: SortOrder
|
|
37832
37845
|
updatedAt?: SortOrder
|
|
37846
|
+
description?: SortOrder
|
|
37833
37847
|
events?: CalendarEventOrderByRelationAggregateInput
|
|
37834
37848
|
availabilities?: CalendarAvailabilityOrderByRelationAggregateInput
|
|
37835
37849
|
}
|
|
@@ -37849,6 +37863,7 @@ export namespace Prisma {
|
|
|
37849
37863
|
autoConfirm?: BoolFilter<"CalendarEventType"> | boolean
|
|
37850
37864
|
createdAt?: DateTimeFilter<"CalendarEventType"> | Date | string
|
|
37851
37865
|
updatedAt?: DateTimeFilter<"CalendarEventType"> | Date | string
|
|
37866
|
+
description?: StringNullableFilter<"CalendarEventType"> | string | null
|
|
37852
37867
|
events?: CalendarEventListRelationFilter
|
|
37853
37868
|
availabilities?: CalendarAvailabilityListRelationFilter
|
|
37854
37869
|
}, "id" | "type">
|
|
@@ -37865,6 +37880,7 @@ export namespace Prisma {
|
|
|
37865
37880
|
autoConfirm?: SortOrder
|
|
37866
37881
|
createdAt?: SortOrder
|
|
37867
37882
|
updatedAt?: SortOrder
|
|
37883
|
+
description?: SortOrder
|
|
37868
37884
|
_count?: CalendarEventTypeCountOrderByAggregateInput
|
|
37869
37885
|
_avg?: CalendarEventTypeAvgOrderByAggregateInput
|
|
37870
37886
|
_max?: CalendarEventTypeMaxOrderByAggregateInput
|
|
@@ -37887,6 +37903,7 @@ export namespace Prisma {
|
|
|
37887
37903
|
autoConfirm?: BoolWithAggregatesFilter<"CalendarEventType"> | boolean
|
|
37888
37904
|
createdAt?: DateTimeWithAggregatesFilter<"CalendarEventType"> | Date | string
|
|
37889
37905
|
updatedAt?: DateTimeWithAggregatesFilter<"CalendarEventType"> | Date | string
|
|
37906
|
+
description?: StringNullableWithAggregatesFilter<"CalendarEventType"> | string | null
|
|
37890
37907
|
}
|
|
37891
37908
|
|
|
37892
37909
|
export type ClientCompanyWhereInput = {
|
|
@@ -40331,8 +40348,8 @@ export namespace Prisma {
|
|
|
40331
40348
|
calendarEventId?: string | null
|
|
40332
40349
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40333
40350
|
status: $Enums.EventStatus
|
|
40334
|
-
startTime:
|
|
40335
|
-
endTime:
|
|
40351
|
+
startTime: string
|
|
40352
|
+
endTime: string
|
|
40336
40353
|
summary?: string | null
|
|
40337
40354
|
description?: string | null
|
|
40338
40355
|
callUrl?: string | null
|
|
@@ -40357,8 +40374,8 @@ export namespace Prisma {
|
|
|
40357
40374
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40358
40375
|
rescheduledBy?: string | null
|
|
40359
40376
|
status: $Enums.EventStatus
|
|
40360
|
-
startTime:
|
|
40361
|
-
endTime:
|
|
40377
|
+
startTime: string
|
|
40378
|
+
endTime: string
|
|
40362
40379
|
summary?: string | null
|
|
40363
40380
|
description?: string | null
|
|
40364
40381
|
callUrl?: string | null
|
|
@@ -40374,8 +40391,8 @@ export namespace Prisma {
|
|
|
40374
40391
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40375
40392
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40376
40393
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40377
|
-
startTime?:
|
|
40378
|
-
endTime?:
|
|
40394
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
40395
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
40379
40396
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40380
40397
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40381
40398
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -40399,8 +40416,8 @@ export namespace Prisma {
|
|
|
40399
40416
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40400
40417
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40401
40418
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40402
|
-
startTime?:
|
|
40403
|
-
endTime?:
|
|
40419
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
40420
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
40404
40421
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40405
40422
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40406
40423
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -40421,8 +40438,8 @@ export namespace Prisma {
|
|
|
40421
40438
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40422
40439
|
rescheduledBy?: string | null
|
|
40423
40440
|
status: $Enums.EventStatus
|
|
40424
|
-
startTime:
|
|
40425
|
-
endTime:
|
|
40441
|
+
startTime: string
|
|
40442
|
+
endTime: string
|
|
40426
40443
|
summary?: string | null
|
|
40427
40444
|
description?: string | null
|
|
40428
40445
|
callUrl?: string | null
|
|
@@ -40437,8 +40454,8 @@ export namespace Prisma {
|
|
|
40437
40454
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40438
40455
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40439
40456
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40440
|
-
startTime?:
|
|
40441
|
-
endTime?:
|
|
40457
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
40458
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
40442
40459
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40443
40460
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40444
40461
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -40457,8 +40474,8 @@ export namespace Prisma {
|
|
|
40457
40474
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
40458
40475
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40459
40476
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
40460
|
-
startTime?:
|
|
40461
|
-
endTime?:
|
|
40477
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
40478
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
40462
40479
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40463
40480
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40464
40481
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -40481,6 +40498,7 @@ export namespace Prisma {
|
|
|
40481
40498
|
autoConfirm?: boolean
|
|
40482
40499
|
createdAt: Date | string
|
|
40483
40500
|
updatedAt: Date | string
|
|
40501
|
+
description?: string | null
|
|
40484
40502
|
events?: CalendarEventCreateNestedManyWithoutEventTypeInput
|
|
40485
40503
|
availabilities?: CalendarAvailabilityCreateNestedManyWithoutEventTypeInput
|
|
40486
40504
|
}
|
|
@@ -40497,6 +40515,7 @@ export namespace Prisma {
|
|
|
40497
40515
|
autoConfirm?: boolean
|
|
40498
40516
|
createdAt: Date | string
|
|
40499
40517
|
updatedAt: Date | string
|
|
40518
|
+
description?: string | null
|
|
40500
40519
|
events?: CalendarEventUncheckedCreateNestedManyWithoutEventTypeInput
|
|
40501
40520
|
availabilities?: CalendarAvailabilityUncheckedCreateNestedManyWithoutEventTypeInput
|
|
40502
40521
|
}
|
|
@@ -40512,6 +40531,7 @@ export namespace Prisma {
|
|
|
40512
40531
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
40513
40532
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40514
40533
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40534
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40515
40535
|
events?: CalendarEventUpdateManyWithoutEventTypeNestedInput
|
|
40516
40536
|
availabilities?: CalendarAvailabilityUpdateManyWithoutEventTypeNestedInput
|
|
40517
40537
|
}
|
|
@@ -40527,6 +40547,7 @@ export namespace Prisma {
|
|
|
40527
40547
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
40528
40548
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40529
40549
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40550
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40530
40551
|
events?: CalendarEventUncheckedUpdateManyWithoutEventTypeNestedInput
|
|
40531
40552
|
availabilities?: CalendarAvailabilityUncheckedUpdateManyWithoutEventTypeNestedInput
|
|
40532
40553
|
}
|
|
@@ -40543,6 +40564,7 @@ export namespace Prisma {
|
|
|
40543
40564
|
autoConfirm?: boolean
|
|
40544
40565
|
createdAt: Date | string
|
|
40545
40566
|
updatedAt: Date | string
|
|
40567
|
+
description?: string | null
|
|
40546
40568
|
}
|
|
40547
40569
|
|
|
40548
40570
|
export type CalendarEventTypeUpdateManyMutationInput = {
|
|
@@ -40556,6 +40578,7 @@ export namespace Prisma {
|
|
|
40556
40578
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
40557
40579
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40558
40580
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40581
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40559
40582
|
}
|
|
40560
40583
|
|
|
40561
40584
|
export type CalendarEventTypeUncheckedUpdateManyInput = {
|
|
@@ -40569,6 +40592,7 @@ export namespace Prisma {
|
|
|
40569
40592
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
40570
40593
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40571
40594
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40595
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40572
40596
|
}
|
|
40573
40597
|
|
|
40574
40598
|
export type ClientCompanyCreateInput = {
|
|
@@ -43647,7 +43671,7 @@ export namespace Prisma {
|
|
|
43647
43671
|
export type AttendeeObjectEqualityInput = {
|
|
43648
43672
|
email: string
|
|
43649
43673
|
name?: string | null
|
|
43650
|
-
|
|
43674
|
+
timezone?: string | null
|
|
43651
43675
|
}
|
|
43652
43676
|
|
|
43653
43677
|
export type EnumEventStatusFilter<$PrismaModel = never> = {
|
|
@@ -43799,6 +43823,7 @@ export namespace Prisma {
|
|
|
43799
43823
|
autoConfirm?: SortOrder
|
|
43800
43824
|
createdAt?: SortOrder
|
|
43801
43825
|
updatedAt?: SortOrder
|
|
43826
|
+
description?: SortOrder
|
|
43802
43827
|
}
|
|
43803
43828
|
|
|
43804
43829
|
export type CalendarEventTypeAvgOrderByAggregateInput = {
|
|
@@ -43821,6 +43846,7 @@ export namespace Prisma {
|
|
|
43821
43846
|
autoConfirm?: SortOrder
|
|
43822
43847
|
createdAt?: SortOrder
|
|
43823
43848
|
updatedAt?: SortOrder
|
|
43849
|
+
description?: SortOrder
|
|
43824
43850
|
}
|
|
43825
43851
|
|
|
43826
43852
|
export type CalendarEventTypeMinOrderByAggregateInput = {
|
|
@@ -43834,6 +43860,7 @@ export namespace Prisma {
|
|
|
43834
43860
|
autoConfirm?: SortOrder
|
|
43835
43861
|
createdAt?: SortOrder
|
|
43836
43862
|
updatedAt?: SortOrder
|
|
43863
|
+
description?: SortOrder
|
|
43837
43864
|
}
|
|
43838
43865
|
|
|
43839
43866
|
export type CalendarEventTypeSumOrderByAggregateInput = {
|
|
@@ -46962,7 +46989,7 @@ export namespace Prisma {
|
|
|
46962
46989
|
export type AttendeeCreateInput = {
|
|
46963
46990
|
email: string
|
|
46964
46991
|
name?: string | null
|
|
46965
|
-
|
|
46992
|
+
timezone?: string | null
|
|
46966
46993
|
}
|
|
46967
46994
|
|
|
46968
46995
|
export type UserCreateNestedOneWithoutInterviewsInput = {
|
|
@@ -50220,7 +50247,7 @@ export namespace Prisma {
|
|
|
50220
50247
|
NOT?: AttendeeWhereInput | AttendeeWhereInput[]
|
|
50221
50248
|
email?: StringFilter<"Attendee"> | string
|
|
50222
50249
|
name?: StringNullableFilter<"Attendee"> | string | null
|
|
50223
|
-
|
|
50250
|
+
timezone?: StringNullableFilter<"Attendee"> | string | null
|
|
50224
50251
|
}
|
|
50225
50252
|
|
|
50226
50253
|
export type NestedEnumEventStatusFilter<$PrismaModel = never> = {
|
|
@@ -52509,8 +52536,8 @@ export namespace Prisma {
|
|
|
52509
52536
|
calendarEventId?: string | null
|
|
52510
52537
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
52511
52538
|
status: $Enums.EventStatus
|
|
52512
|
-
startTime:
|
|
52513
|
-
endTime:
|
|
52539
|
+
startTime: string
|
|
52540
|
+
endTime: string
|
|
52514
52541
|
summary?: string | null
|
|
52515
52542
|
description?: string | null
|
|
52516
52543
|
callUrl?: string | null
|
|
@@ -52533,8 +52560,8 @@ export namespace Prisma {
|
|
|
52533
52560
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
52534
52561
|
rescheduledBy?: string | null
|
|
52535
52562
|
status: $Enums.EventStatus
|
|
52536
|
-
startTime:
|
|
52537
|
-
endTime:
|
|
52563
|
+
startTime: string
|
|
52564
|
+
endTime: string
|
|
52538
52565
|
summary?: string | null
|
|
52539
52566
|
description?: string | null
|
|
52540
52567
|
callUrl?: string | null
|
|
@@ -52712,8 +52739,8 @@ export namespace Prisma {
|
|
|
52712
52739
|
eventTypeId?: StringFilter<"CalendarEvent"> | string
|
|
52713
52740
|
rescheduledBy?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
52714
52741
|
status?: EnumEventStatusFilter<"CalendarEvent"> | $Enums.EventStatus
|
|
52715
|
-
startTime?:
|
|
52716
|
-
endTime?:
|
|
52742
|
+
startTime?: StringFilter<"CalendarEvent"> | string
|
|
52743
|
+
endTime?: StringFilter<"CalendarEvent"> | string
|
|
52717
52744
|
summary?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
52718
52745
|
description?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
52719
52746
|
callUrl?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
@@ -52851,6 +52878,7 @@ export namespace Prisma {
|
|
|
52851
52878
|
autoConfirm?: boolean
|
|
52852
52879
|
createdAt: Date | string
|
|
52853
52880
|
updatedAt: Date | string
|
|
52881
|
+
description?: string | null
|
|
52854
52882
|
events?: CalendarEventCreateNestedManyWithoutEventTypeInput
|
|
52855
52883
|
}
|
|
52856
52884
|
|
|
@@ -52866,6 +52894,7 @@ export namespace Prisma {
|
|
|
52866
52894
|
autoConfirm?: boolean
|
|
52867
52895
|
createdAt: Date | string
|
|
52868
52896
|
updatedAt: Date | string
|
|
52897
|
+
description?: string | null
|
|
52869
52898
|
events?: CalendarEventUncheckedCreateNestedManyWithoutEventTypeInput
|
|
52870
52899
|
}
|
|
52871
52900
|
|
|
@@ -53015,6 +53044,7 @@ export namespace Prisma {
|
|
|
53015
53044
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
53016
53045
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53017
53046
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53047
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53018
53048
|
events?: CalendarEventUpdateManyWithoutEventTypeNestedInput
|
|
53019
53049
|
}
|
|
53020
53050
|
|
|
@@ -53029,6 +53059,7 @@ export namespace Prisma {
|
|
|
53029
53059
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
53030
53060
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53031
53061
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53062
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53032
53063
|
events?: CalendarEventUncheckedUpdateManyWithoutEventTypeNestedInput
|
|
53033
53064
|
}
|
|
53034
53065
|
|
|
@@ -53184,6 +53215,7 @@ export namespace Prisma {
|
|
|
53184
53215
|
autoConfirm?: boolean
|
|
53185
53216
|
createdAt: Date | string
|
|
53186
53217
|
updatedAt: Date | string
|
|
53218
|
+
description?: string | null
|
|
53187
53219
|
availabilities?: CalendarAvailabilityCreateNestedManyWithoutEventTypeInput
|
|
53188
53220
|
}
|
|
53189
53221
|
|
|
@@ -53199,6 +53231,7 @@ export namespace Prisma {
|
|
|
53199
53231
|
autoConfirm?: boolean
|
|
53200
53232
|
createdAt: Date | string
|
|
53201
53233
|
updatedAt: Date | string
|
|
53234
|
+
description?: string | null
|
|
53202
53235
|
availabilities?: CalendarAvailabilityUncheckedCreateNestedManyWithoutEventTypeInput
|
|
53203
53236
|
}
|
|
53204
53237
|
|
|
@@ -53568,6 +53601,7 @@ export namespace Prisma {
|
|
|
53568
53601
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
53569
53602
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53570
53603
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53604
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53571
53605
|
availabilities?: CalendarAvailabilityUpdateManyWithoutEventTypeNestedInput
|
|
53572
53606
|
}
|
|
53573
53607
|
|
|
@@ -53582,6 +53616,7 @@ export namespace Prisma {
|
|
|
53582
53616
|
autoConfirm?: BoolFieldUpdateOperationsInput | boolean
|
|
53583
53617
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53584
53618
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53619
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53585
53620
|
availabilities?: CalendarAvailabilityUncheckedUpdateManyWithoutEventTypeNestedInput
|
|
53586
53621
|
}
|
|
53587
53622
|
|
|
@@ -53780,8 +53815,8 @@ export namespace Prisma {
|
|
|
53780
53815
|
calendarEventId?: string | null
|
|
53781
53816
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
53782
53817
|
status: $Enums.EventStatus
|
|
53783
|
-
startTime:
|
|
53784
|
-
endTime:
|
|
53818
|
+
startTime: string
|
|
53819
|
+
endTime: string
|
|
53785
53820
|
summary?: string | null
|
|
53786
53821
|
description?: string | null
|
|
53787
53822
|
callUrl?: string | null
|
|
@@ -53804,8 +53839,8 @@ export namespace Prisma {
|
|
|
53804
53839
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
53805
53840
|
rescheduledBy?: string | null
|
|
53806
53841
|
status: $Enums.EventStatus
|
|
53807
|
-
startTime:
|
|
53808
|
-
endTime:
|
|
53842
|
+
startTime: string
|
|
53843
|
+
endTime: string
|
|
53809
53844
|
summary?: string | null
|
|
53810
53845
|
description?: string | null
|
|
53811
53846
|
callUrl?: string | null
|
|
@@ -54473,8 +54508,8 @@ export namespace Prisma {
|
|
|
54473
54508
|
calendarEventId?: string | null
|
|
54474
54509
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54475
54510
|
status: $Enums.EventStatus
|
|
54476
|
-
startTime:
|
|
54477
|
-
endTime:
|
|
54511
|
+
startTime: string
|
|
54512
|
+
endTime: string
|
|
54478
54513
|
summary?: string | null
|
|
54479
54514
|
description?: string | null
|
|
54480
54515
|
callUrl?: string | null
|
|
@@ -54498,8 +54533,8 @@ export namespace Prisma {
|
|
|
54498
54533
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54499
54534
|
rescheduledBy?: string | null
|
|
54500
54535
|
status: $Enums.EventStatus
|
|
54501
|
-
startTime:
|
|
54502
|
-
endTime:
|
|
54536
|
+
startTime: string
|
|
54537
|
+
endTime: string
|
|
54503
54538
|
summary?: string | null
|
|
54504
54539
|
description?: string | null
|
|
54505
54540
|
callUrl?: string | null
|
|
@@ -54905,8 +54940,8 @@ export namespace Prisma {
|
|
|
54905
54940
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54906
54941
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54907
54942
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
54908
|
-
startTime?:
|
|
54909
|
-
endTime?:
|
|
54943
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
54944
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
54910
54945
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54911
54946
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54912
54947
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -54929,8 +54964,8 @@ export namespace Prisma {
|
|
|
54929
54964
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54930
54965
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54931
54966
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
54932
|
-
startTime?:
|
|
54933
|
-
endTime?:
|
|
54967
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
54968
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
54934
54969
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54935
54970
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54936
54971
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -60219,8 +60254,8 @@ export namespace Prisma {
|
|
|
60219
60254
|
calendarEventId?: string | null
|
|
60220
60255
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
60221
60256
|
status: $Enums.EventStatus
|
|
60222
|
-
startTime:
|
|
60223
|
-
endTime:
|
|
60257
|
+
startTime: string
|
|
60258
|
+
endTime: string
|
|
60224
60259
|
summary?: string | null
|
|
60225
60260
|
description?: string | null
|
|
60226
60261
|
callUrl?: string | null
|
|
@@ -60243,8 +60278,8 @@ export namespace Prisma {
|
|
|
60243
60278
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
60244
60279
|
rescheduledBy?: string | null
|
|
60245
60280
|
status: $Enums.EventStatus
|
|
60246
|
-
startTime:
|
|
60247
|
-
endTime:
|
|
60281
|
+
startTime: string
|
|
60282
|
+
endTime: string
|
|
60248
60283
|
summary?: string | null
|
|
60249
60284
|
description?: string | null
|
|
60250
60285
|
callUrl?: string | null
|
|
@@ -60320,8 +60355,8 @@ export namespace Prisma {
|
|
|
60320
60355
|
calendarEventId?: string | null
|
|
60321
60356
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
60322
60357
|
status: $Enums.EventStatus
|
|
60323
|
-
startTime:
|
|
60324
|
-
endTime:
|
|
60358
|
+
startTime: string
|
|
60359
|
+
endTime: string
|
|
60325
60360
|
summary?: string | null
|
|
60326
60361
|
description?: string | null
|
|
60327
60362
|
callUrl?: string | null
|
|
@@ -60344,8 +60379,8 @@ export namespace Prisma {
|
|
|
60344
60379
|
eventTypeId: string
|
|
60345
60380
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
60346
60381
|
status: $Enums.EventStatus
|
|
60347
|
-
startTime:
|
|
60348
|
-
endTime:
|
|
60382
|
+
startTime: string
|
|
60383
|
+
endTime: string
|
|
60349
60384
|
summary?: string | null
|
|
60350
60385
|
description?: string | null
|
|
60351
60386
|
callUrl?: string | null
|
|
@@ -63092,8 +63127,8 @@ export namespace Prisma {
|
|
|
63092
63127
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63093
63128
|
rescheduledBy?: string | null
|
|
63094
63129
|
status: $Enums.EventStatus
|
|
63095
|
-
startTime:
|
|
63096
|
-
endTime:
|
|
63130
|
+
startTime: string
|
|
63131
|
+
endTime: string
|
|
63097
63132
|
summary?: string | null
|
|
63098
63133
|
description?: string | null
|
|
63099
63134
|
callUrl?: string | null
|
|
@@ -63108,8 +63143,8 @@ export namespace Prisma {
|
|
|
63108
63143
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63109
63144
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63110
63145
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63111
|
-
startTime?:
|
|
63112
|
-
endTime?:
|
|
63146
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63147
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63113
63148
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63114
63149
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63115
63150
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63131,8 +63166,8 @@ export namespace Prisma {
|
|
|
63131
63166
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63132
63167
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63133
63168
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63134
|
-
startTime?:
|
|
63135
|
-
endTime?:
|
|
63169
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63170
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63136
63171
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63137
63172
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63138
63173
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63151,8 +63186,8 @@ export namespace Prisma {
|
|
|
63151
63186
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63152
63187
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63153
63188
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63154
|
-
startTime?:
|
|
63155
|
-
endTime?:
|
|
63189
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63190
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63156
63191
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63157
63192
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63158
63193
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63166,7 +63201,7 @@ export namespace Prisma {
|
|
|
63166
63201
|
export type AttendeeUpdateInput = {
|
|
63167
63202
|
email?: StringFieldUpdateOperationsInput | string
|
|
63168
63203
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63169
|
-
|
|
63204
|
+
timezone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63170
63205
|
}
|
|
63171
63206
|
|
|
63172
63207
|
export type CalendarEventCreateManyEventTypeInput = {
|
|
@@ -63177,8 +63212,8 @@ export namespace Prisma {
|
|
|
63177
63212
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63178
63213
|
rescheduledBy?: string | null
|
|
63179
63214
|
status: $Enums.EventStatus
|
|
63180
|
-
startTime:
|
|
63181
|
-
endTime:
|
|
63215
|
+
startTime: string
|
|
63216
|
+
endTime: string
|
|
63182
63217
|
summary?: string | null
|
|
63183
63218
|
description?: string | null
|
|
63184
63219
|
callUrl?: string | null
|
|
@@ -63204,8 +63239,8 @@ export namespace Prisma {
|
|
|
63204
63239
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63205
63240
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63206
63241
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63207
|
-
startTime?:
|
|
63208
|
-
endTime?:
|
|
63242
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63243
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63209
63244
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63210
63245
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63211
63246
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63227,8 +63262,8 @@ export namespace Prisma {
|
|
|
63227
63262
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63228
63263
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63229
63264
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63230
|
-
startTime?:
|
|
63231
|
-
endTime?:
|
|
63265
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63266
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63232
63267
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63233
63268
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63234
63269
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -63247,8 +63282,8 @@ export namespace Prisma {
|
|
|
63247
63282
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
63248
63283
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63249
63284
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
63250
|
-
startTime?:
|
|
63251
|
-
endTime?:
|
|
63285
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
63286
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
63252
63287
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63253
63288
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63254
63289
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -64732,8 +64767,8 @@ export namespace Prisma {
|
|
|
64732
64767
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
64733
64768
|
rescheduledBy?: string | null
|
|
64734
64769
|
status: $Enums.EventStatus
|
|
64735
|
-
startTime:
|
|
64736
|
-
endTime:
|
|
64770
|
+
startTime: string
|
|
64771
|
+
endTime: string
|
|
64737
64772
|
summary?: string | null
|
|
64738
64773
|
description?: string | null
|
|
64739
64774
|
callUrl?: string | null
|
|
@@ -64763,8 +64798,8 @@ export namespace Prisma {
|
|
|
64763
64798
|
eventTypeId: string
|
|
64764
64799
|
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
64765
64800
|
status: $Enums.EventStatus
|
|
64766
|
-
startTime:
|
|
64767
|
-
endTime:
|
|
64801
|
+
startTime: string
|
|
64802
|
+
endTime: string
|
|
64768
64803
|
summary?: string | null
|
|
64769
64804
|
description?: string | null
|
|
64770
64805
|
callUrl?: string | null
|
|
@@ -65869,8 +65904,8 @@ export namespace Prisma {
|
|
|
65869
65904
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65870
65905
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65871
65906
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65872
|
-
startTime?:
|
|
65873
|
-
endTime?:
|
|
65907
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
65908
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
65874
65909
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65875
65910
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65876
65911
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -65892,8 +65927,8 @@ export namespace Prisma {
|
|
|
65892
65927
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65893
65928
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65894
65929
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65895
|
-
startTime?:
|
|
65896
|
-
endTime?:
|
|
65930
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
65931
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
65897
65932
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65898
65933
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65899
65934
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -65912,8 +65947,8 @@ export namespace Prisma {
|
|
|
65912
65947
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65913
65948
|
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65914
65949
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65915
|
-
startTime?:
|
|
65916
|
-
endTime?:
|
|
65950
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
65951
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
65917
65952
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65918
65953
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65919
65954
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -65958,8 +65993,8 @@ export namespace Prisma {
|
|
|
65958
65993
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65959
65994
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65960
65995
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65961
|
-
startTime?:
|
|
65962
|
-
endTime?:
|
|
65996
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
65997
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
65963
65998
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65964
65999
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65965
66000
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -65981,8 +66016,8 @@ export namespace Prisma {
|
|
|
65981
66016
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
65982
66017
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
65983
66018
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
65984
|
-
startTime?:
|
|
65985
|
-
endTime?:
|
|
66019
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
66020
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
65986
66021
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65987
66022
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65988
66023
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -66001,8 +66036,8 @@ export namespace Prisma {
|
|
|
66001
66036
|
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
66002
66037
|
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
66003
66038
|
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
66004
|
-
startTime?:
|
|
66005
|
-
endTime?:
|
|
66039
|
+
startTime?: StringFieldUpdateOperationsInput | string
|
|
66040
|
+
endTime?: StringFieldUpdateOperationsInput | string
|
|
66006
66041
|
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66007
66042
|
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66008
66043
|
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|