@a_team/prisma 3.13.4-win → 3.13.5-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 +136 -0
- package/dist/client/index.js +6 -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 +15 -9
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -43,6 +43,11 @@ export type BillingAccountPaymentTerms = $Result.DefaultSelection<Prisma.$Billin
|
|
|
43
43
|
*
|
|
44
44
|
*/
|
|
45
45
|
export type CalendarCredentials = $Result.DefaultSelection<Prisma.$CalendarCredentialsPayload>
|
|
46
|
+
/**
|
|
47
|
+
* Model NotificationChannel
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
export type NotificationChannel = $Result.DefaultSelection<Prisma.$NotificationChannelPayload>
|
|
46
51
|
/**
|
|
47
52
|
* Model Attendee
|
|
48
53
|
*
|
|
@@ -4764,6 +4769,63 @@ export namespace Prisma {
|
|
|
4764
4769
|
}
|
|
4765
4770
|
|
|
4766
4771
|
|
|
4772
|
+
/**
|
|
4773
|
+
* Model NotificationChannel
|
|
4774
|
+
*/
|
|
4775
|
+
|
|
4776
|
+
|
|
4777
|
+
|
|
4778
|
+
|
|
4779
|
+
|
|
4780
|
+
export type NotificationChannelSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4781
|
+
channelId?: boolean
|
|
4782
|
+
resourceId?: boolean
|
|
4783
|
+
}, ExtArgs["result"]["notificationChannel"]>
|
|
4784
|
+
|
|
4785
|
+
|
|
4786
|
+
export type NotificationChannelSelectScalar = {
|
|
4787
|
+
channelId?: boolean
|
|
4788
|
+
resourceId?: boolean
|
|
4789
|
+
}
|
|
4790
|
+
|
|
4791
|
+
|
|
4792
|
+
export type $NotificationChannelPayload = {
|
|
4793
|
+
name: "NotificationChannel"
|
|
4794
|
+
objects: {}
|
|
4795
|
+
scalars: {
|
|
4796
|
+
channelId: string
|
|
4797
|
+
resourceId: string
|
|
4798
|
+
}
|
|
4799
|
+
composites: {}
|
|
4800
|
+
}
|
|
4801
|
+
|
|
4802
|
+
type NotificationChannelGetPayload<S extends boolean | null | undefined | NotificationChannelDefaultArgs> = $Result.GetResult<Prisma.$NotificationChannelPayload, S>
|
|
4803
|
+
|
|
4804
|
+
|
|
4805
|
+
|
|
4806
|
+
|
|
4807
|
+
|
|
4808
|
+
/**
|
|
4809
|
+
* Fields of the NotificationChannel model
|
|
4810
|
+
*/
|
|
4811
|
+
interface NotificationChannelFieldRefs {
|
|
4812
|
+
readonly channelId: FieldRef<"NotificationChannel", 'String'>
|
|
4813
|
+
readonly resourceId: FieldRef<"NotificationChannel", 'String'>
|
|
4814
|
+
}
|
|
4815
|
+
|
|
4816
|
+
|
|
4817
|
+
// Custom InputTypes
|
|
4818
|
+
/**
|
|
4819
|
+
* NotificationChannel without action
|
|
4820
|
+
*/
|
|
4821
|
+
export type NotificationChannelDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4822
|
+
/**
|
|
4823
|
+
* Select specific fields to fetch from the NotificationChannel
|
|
4824
|
+
*/
|
|
4825
|
+
select?: NotificationChannelSelect<ExtArgs> | null
|
|
4826
|
+
}
|
|
4827
|
+
|
|
4828
|
+
|
|
4767
4829
|
/**
|
|
4768
4830
|
* Model Attendee
|
|
4769
4831
|
*/
|
|
@@ -12744,6 +12806,7 @@ export namespace Prisma {
|
|
|
12744
12806
|
userId?: boolean
|
|
12745
12807
|
createdAt?: boolean
|
|
12746
12808
|
updatedAt?: boolean
|
|
12809
|
+
notificationChannel?: boolean | NotificationChannelDefaultArgs<ExtArgs>
|
|
12747
12810
|
calendarUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
12748
12811
|
events?: boolean | Calendar$eventsArgs<ExtArgs>
|
|
12749
12812
|
_count?: boolean | CalendarCountOutputTypeDefaultArgs<ExtArgs>
|
|
@@ -12781,6 +12844,7 @@ export namespace Prisma {
|
|
|
12781
12844
|
}, ExtArgs["result"]["calendar"]>
|
|
12782
12845
|
composites: {
|
|
12783
12846
|
credentials: Prisma.$CalendarCredentialsPayload
|
|
12847
|
+
notificationChannel: Prisma.$NotificationChannelPayload | null
|
|
12784
12848
|
}
|
|
12785
12849
|
}
|
|
12786
12850
|
|
|
@@ -37719,6 +37783,7 @@ export namespace Prisma {
|
|
|
37719
37783
|
userId?: StringFilter<"Calendar"> | string
|
|
37720
37784
|
createdAt?: DateTimeFilter<"Calendar"> | Date | string
|
|
37721
37785
|
updatedAt?: DateTimeFilter<"Calendar"> | Date | string
|
|
37786
|
+
notificationChannel?: XOR<NotificationChannelNullableCompositeFilter, NotificationChannelObjectEqualityInput> | null
|
|
37722
37787
|
calendarUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
37723
37788
|
events?: CalendarEventListRelationFilter
|
|
37724
37789
|
}
|
|
@@ -37731,6 +37796,7 @@ export namespace Prisma {
|
|
|
37731
37796
|
userId?: SortOrder
|
|
37732
37797
|
createdAt?: SortOrder
|
|
37733
37798
|
updatedAt?: SortOrder
|
|
37799
|
+
notificationChannel?: NotificationChannelOrderByInput
|
|
37734
37800
|
calendarUser?: UserOrderByWithRelationInput
|
|
37735
37801
|
events?: CalendarEventOrderByRelationAggregateInput
|
|
37736
37802
|
}
|
|
@@ -37747,6 +37813,7 @@ export namespace Prisma {
|
|
|
37747
37813
|
provider?: EnumCalendarProviderFilter<"Calendar"> | $Enums.CalendarProvider
|
|
37748
37814
|
createdAt?: DateTimeFilter<"Calendar"> | Date | string
|
|
37749
37815
|
updatedAt?: DateTimeFilter<"Calendar"> | Date | string
|
|
37816
|
+
notificationChannel?: XOR<NotificationChannelNullableCompositeFilter, NotificationChannelObjectEqualityInput> | null
|
|
37750
37817
|
calendarUser?: XOR<UserRelationFilter, UserWhereInput>
|
|
37751
37818
|
events?: CalendarEventListRelationFilter
|
|
37752
37819
|
}, "id" | "userId" | "userId_provider">
|
|
@@ -40388,6 +40455,7 @@ export namespace Prisma {
|
|
|
40388
40455
|
provider: $Enums.CalendarProvider
|
|
40389
40456
|
createdAt?: Date | string
|
|
40390
40457
|
updatedAt?: Date | string
|
|
40458
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40391
40459
|
calendarUser: UserCreateNestedOneWithoutCalendarInput
|
|
40392
40460
|
events?: CalendarEventCreateNestedManyWithoutCalendarInput
|
|
40393
40461
|
}
|
|
@@ -40400,6 +40468,7 @@ export namespace Prisma {
|
|
|
40400
40468
|
userId: string
|
|
40401
40469
|
createdAt?: Date | string
|
|
40402
40470
|
updatedAt?: Date | string
|
|
40471
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40403
40472
|
events?: CalendarEventUncheckedCreateNestedManyWithoutCalendarInput
|
|
40404
40473
|
}
|
|
40405
40474
|
|
|
@@ -40409,6 +40478,7 @@ export namespace Prisma {
|
|
|
40409
40478
|
provider?: EnumCalendarProviderFieldUpdateOperationsInput | $Enums.CalendarProvider
|
|
40410
40479
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40411
40480
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40481
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40412
40482
|
calendarUser?: UserUpdateOneRequiredWithoutCalendarNestedInput
|
|
40413
40483
|
events?: CalendarEventUpdateManyWithoutCalendarNestedInput
|
|
40414
40484
|
}
|
|
@@ -40420,6 +40490,7 @@ export namespace Prisma {
|
|
|
40420
40490
|
userId?: StringFieldUpdateOperationsInput | string
|
|
40421
40491
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40422
40492
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40493
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40423
40494
|
events?: CalendarEventUncheckedUpdateManyWithoutCalendarNestedInput
|
|
40424
40495
|
}
|
|
40425
40496
|
|
|
@@ -40431,6 +40502,7 @@ export namespace Prisma {
|
|
|
40431
40502
|
userId: string
|
|
40432
40503
|
createdAt?: Date | string
|
|
40433
40504
|
updatedAt?: Date | string
|
|
40505
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40434
40506
|
}
|
|
40435
40507
|
|
|
40436
40508
|
export type CalendarUpdateManyMutationInput = {
|
|
@@ -40439,6 +40511,7 @@ export namespace Prisma {
|
|
|
40439
40511
|
provider?: EnumCalendarProviderFieldUpdateOperationsInput | $Enums.CalendarProvider
|
|
40440
40512
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40441
40513
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40514
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40442
40515
|
}
|
|
40443
40516
|
|
|
40444
40517
|
export type CalendarUncheckedUpdateManyInput = {
|
|
@@ -40448,6 +40521,7 @@ export namespace Prisma {
|
|
|
40448
40521
|
userId?: StringFieldUpdateOperationsInput | string
|
|
40449
40522
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40450
40523
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40524
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
40451
40525
|
}
|
|
40452
40526
|
|
|
40453
40527
|
export type CalendarAvailabilityCreateInput = {
|
|
@@ -43728,6 +43802,18 @@ export namespace Prisma {
|
|
|
43728
43802
|
not?: NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
43729
43803
|
}
|
|
43730
43804
|
|
|
43805
|
+
export type NotificationChannelNullableCompositeFilter = {
|
|
43806
|
+
equals?: NotificationChannelObjectEqualityInput | null
|
|
43807
|
+
is?: NotificationChannelWhereInput | null
|
|
43808
|
+
isNot?: NotificationChannelWhereInput | null
|
|
43809
|
+
isSet?: boolean
|
|
43810
|
+
}
|
|
43811
|
+
|
|
43812
|
+
export type NotificationChannelObjectEqualityInput = {
|
|
43813
|
+
channelId: string
|
|
43814
|
+
resourceId: string
|
|
43815
|
+
}
|
|
43816
|
+
|
|
43731
43817
|
export type UserRelationFilter = {
|
|
43732
43818
|
is?: UserWhereInput
|
|
43733
43819
|
isNot?: UserWhereInput
|
|
@@ -43750,6 +43836,11 @@ export namespace Prisma {
|
|
|
43750
43836
|
ext_expires_in?: SortOrder
|
|
43751
43837
|
}
|
|
43752
43838
|
|
|
43839
|
+
export type NotificationChannelOrderByInput = {
|
|
43840
|
+
channelId?: SortOrder
|
|
43841
|
+
resourceId?: SortOrder
|
|
43842
|
+
}
|
|
43843
|
+
|
|
43753
43844
|
export type CalendarEventOrderByRelationAggregateInput = {
|
|
43754
43845
|
_count?: SortOrder
|
|
43755
43846
|
}
|
|
@@ -47129,6 +47220,15 @@ export namespace Prisma {
|
|
|
47129
47220
|
ext_expires_in?: number | null
|
|
47130
47221
|
}
|
|
47131
47222
|
|
|
47223
|
+
export type NotificationChannelNullableCreateEnvelopeInput = {
|
|
47224
|
+
set?: NotificationChannelCreateInput | null
|
|
47225
|
+
}
|
|
47226
|
+
|
|
47227
|
+
export type NotificationChannelCreateInput = {
|
|
47228
|
+
channelId: string
|
|
47229
|
+
resourceId: string
|
|
47230
|
+
}
|
|
47231
|
+
|
|
47132
47232
|
export type UserCreateNestedOneWithoutCalendarInput = {
|
|
47133
47233
|
create?: XOR<UserCreateWithoutCalendarInput, UserUncheckedCreateWithoutCalendarInput>
|
|
47134
47234
|
connectOrCreate?: UserCreateOrConnectWithoutCalendarInput
|
|
@@ -47166,6 +47266,12 @@ export namespace Prisma {
|
|
|
47166
47266
|
set?: Date | string
|
|
47167
47267
|
}
|
|
47168
47268
|
|
|
47269
|
+
export type NotificationChannelNullableUpdateEnvelopeInput = {
|
|
47270
|
+
set?: NotificationChannelCreateInput | null
|
|
47271
|
+
upsert?: NotificationChannelUpsertInput
|
|
47272
|
+
unset?: boolean
|
|
47273
|
+
}
|
|
47274
|
+
|
|
47169
47275
|
export type UserUpdateOneRequiredWithoutCalendarNestedInput = {
|
|
47170
47276
|
create?: XOR<UserCreateWithoutCalendarInput, UserUncheckedCreateWithoutCalendarInput>
|
|
47171
47277
|
connectOrCreate?: UserCreateOrConnectWithoutCalendarInput
|
|
@@ -50513,6 +50619,14 @@ export namespace Prisma {
|
|
|
50513
50619
|
not?: NestedDateTimeFilter<$PrismaModel> | Date | string
|
|
50514
50620
|
}
|
|
50515
50621
|
|
|
50622
|
+
export type NotificationChannelWhereInput = {
|
|
50623
|
+
AND?: NotificationChannelWhereInput | NotificationChannelWhereInput[]
|
|
50624
|
+
OR?: NotificationChannelWhereInput[]
|
|
50625
|
+
NOT?: NotificationChannelWhereInput | NotificationChannelWhereInput[]
|
|
50626
|
+
channelId?: StringFilter<"NotificationChannel"> | string
|
|
50627
|
+
resourceId?: StringFilter<"NotificationChannel"> | string
|
|
50628
|
+
}
|
|
50629
|
+
|
|
50516
50630
|
export type NestedEnumCalendarProviderWithAggregatesFilter<$PrismaModel = never> = {
|
|
50517
50631
|
equals?: $Enums.CalendarProvider | EnumCalendarProviderFieldRefInput<$PrismaModel>
|
|
50518
50632
|
in?: $Enums.CalendarProvider[] | ListEnumCalendarProviderFieldRefInput<$PrismaModel>
|
|
@@ -52918,6 +53032,11 @@ export namespace Prisma {
|
|
|
52918
53032
|
ext_expires_in?: NullableIntFieldUpdateOperationsInput | number | null
|
|
52919
53033
|
}
|
|
52920
53034
|
|
|
53035
|
+
export type NotificationChannelUpsertInput = {
|
|
53036
|
+
set: NotificationChannelCreateInput | null
|
|
53037
|
+
update: NotificationChannelUpdateInput
|
|
53038
|
+
}
|
|
53039
|
+
|
|
52921
53040
|
export type UserUpsertWithoutCalendarInput = {
|
|
52922
53041
|
update: XOR<UserUpdateWithoutCalendarInput, UserUncheckedUpdateWithoutCalendarInput>
|
|
52923
53042
|
create: XOR<UserCreateWithoutCalendarInput, UserUncheckedCreateWithoutCalendarInput>
|
|
@@ -53553,6 +53672,7 @@ export namespace Prisma {
|
|
|
53553
53672
|
provider: $Enums.CalendarProvider
|
|
53554
53673
|
createdAt?: Date | string
|
|
53555
53674
|
updatedAt?: Date | string
|
|
53675
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
53556
53676
|
calendarUser: UserCreateNestedOneWithoutCalendarInput
|
|
53557
53677
|
}
|
|
53558
53678
|
|
|
@@ -53564,6 +53684,7 @@ export namespace Prisma {
|
|
|
53564
53684
|
userId: string
|
|
53565
53685
|
createdAt?: Date | string
|
|
53566
53686
|
updatedAt?: Date | string
|
|
53687
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
53567
53688
|
}
|
|
53568
53689
|
|
|
53569
53690
|
export type CalendarCreateOrConnectWithoutEventsInput = {
|
|
@@ -53951,6 +54072,7 @@ export namespace Prisma {
|
|
|
53951
54072
|
provider?: EnumCalendarProviderFieldUpdateOperationsInput | $Enums.CalendarProvider
|
|
53952
54073
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53953
54074
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54075
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
53954
54076
|
calendarUser?: UserUpdateOneRequiredWithoutCalendarNestedInput
|
|
53955
54077
|
}
|
|
53956
54078
|
|
|
@@ -53961,6 +54083,7 @@ export namespace Prisma {
|
|
|
53961
54083
|
userId?: StringFieldUpdateOperationsInput | string
|
|
53962
54084
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53963
54085
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54086
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
53964
54087
|
}
|
|
53965
54088
|
|
|
53966
54089
|
export type UserUpsertWithoutRescheduledInterviewsInput = {
|
|
@@ -60586,6 +60709,7 @@ export namespace Prisma {
|
|
|
60586
60709
|
provider: $Enums.CalendarProvider
|
|
60587
60710
|
createdAt?: Date | string
|
|
60588
60711
|
updatedAt?: Date | string
|
|
60712
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
60589
60713
|
events?: CalendarEventCreateNestedManyWithoutCalendarInput
|
|
60590
60714
|
}
|
|
60591
60715
|
|
|
@@ -60596,6 +60720,7 @@ export namespace Prisma {
|
|
|
60596
60720
|
provider: $Enums.CalendarProvider
|
|
60597
60721
|
createdAt?: Date | string
|
|
60598
60722
|
updatedAt?: Date | string
|
|
60723
|
+
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
60599
60724
|
events?: CalendarEventUncheckedCreateNestedManyWithoutCalendarInput
|
|
60600
60725
|
}
|
|
60601
60726
|
|
|
@@ -61303,6 +61428,7 @@ export namespace Prisma {
|
|
|
61303
61428
|
provider?: EnumCalendarProviderFieldUpdateOperationsInput | $Enums.CalendarProvider
|
|
61304
61429
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61305
61430
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61431
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
61306
61432
|
events?: CalendarEventUpdateManyWithoutCalendarNestedInput
|
|
61307
61433
|
}
|
|
61308
61434
|
|
|
@@ -61312,6 +61438,7 @@ export namespace Prisma {
|
|
|
61312
61438
|
provider?: EnumCalendarProviderFieldUpdateOperationsInput | $Enums.CalendarProvider
|
|
61313
61439
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61314
61440
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61441
|
+
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
61315
61442
|
events?: CalendarEventUncheckedUpdateManyWithoutCalendarNestedInput
|
|
61316
61443
|
}
|
|
61317
61444
|
|
|
@@ -63504,6 +63631,11 @@ export namespace Prisma {
|
|
|
63504
63631
|
updatedAt: Date | string
|
|
63505
63632
|
}
|
|
63506
63633
|
|
|
63634
|
+
export type NotificationChannelUpdateInput = {
|
|
63635
|
+
channelId?: StringFieldUpdateOperationsInput | string
|
|
63636
|
+
resourceId?: StringFieldUpdateOperationsInput | string
|
|
63637
|
+
}
|
|
63638
|
+
|
|
63507
63639
|
export type CalendarEventUpdateWithoutCalendarInput = {
|
|
63508
63640
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63509
63641
|
title?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -67908,6 +68040,10 @@ export namespace Prisma {
|
|
|
67908
68040
|
* @deprecated Use CalendarCredentialsDefaultArgs instead
|
|
67909
68041
|
*/
|
|
67910
68042
|
export type CalendarCredentialsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CalendarCredentialsDefaultArgs<ExtArgs>
|
|
68043
|
+
/**
|
|
68044
|
+
* @deprecated Use NotificationChannelDefaultArgs instead
|
|
68045
|
+
*/
|
|
68046
|
+
export type NotificationChannelArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = NotificationChannelDefaultArgs<ExtArgs>
|
|
67911
68047
|
/**
|
|
67912
68048
|
* @deprecated Use AttendeeDefaultArgs instead
|
|
67913
68049
|
*/
|