@a_team/prisma 3.13.6-macos-docker-linux → 3.13.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 +11 -4
- package/dist/client/index-browser.js +7 -0
- package/dist/client/index.d.ts +256 -0
- package/dist/client/index.js +13 -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 +19 -0
- package/dist/client/wasm.js +7 -0
- package/package.json +4 -2
|
@@ -683,6 +683,13 @@ exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
|
683
683
|
Net120: 'Net120'
|
|
684
684
|
};
|
|
685
685
|
|
|
686
|
+
exports.ReminderStatus = exports.$Enums.ReminderStatus = {
|
|
687
|
+
scheduled: 'scheduled',
|
|
688
|
+
sent: 'sent',
|
|
689
|
+
failed: 'failed',
|
|
690
|
+
cancelled: 'cancelled'
|
|
691
|
+
};
|
|
692
|
+
|
|
686
693
|
exports.ClientInterviewFeedbackAction = exports.$Enums.ClientInterviewFeedbackAction = {
|
|
687
694
|
Hire: 'Hire',
|
|
688
695
|
BookFollowUpInterview: 'BookFollowUpInterview',
|
package/dist/client/index.d.ts
CHANGED
|
@@ -63,6 +63,11 @@ export type VideoCallData = $Result.DefaultSelection<Prisma.$VideoCallDataPayloa
|
|
|
63
63
|
*
|
|
64
64
|
*/
|
|
65
65
|
export type NotificationChannel = $Result.DefaultSelection<Prisma.$NotificationChannelPayload>
|
|
66
|
+
/**
|
|
67
|
+
* Model ScheduledReminder
|
|
68
|
+
*
|
|
69
|
+
*/
|
|
70
|
+
export type ScheduledReminder = $Result.DefaultSelection<Prisma.$ScheduledReminderPayload>
|
|
66
71
|
/**
|
|
67
72
|
* Model ClientInterviewTranscriptData
|
|
68
73
|
*
|
|
@@ -834,6 +839,16 @@ export const BillingPaymentDue: {
|
|
|
834
839
|
export type BillingPaymentDue = (typeof BillingPaymentDue)[keyof typeof BillingPaymentDue]
|
|
835
840
|
|
|
836
841
|
|
|
842
|
+
export const ReminderStatus: {
|
|
843
|
+
scheduled: 'scheduled',
|
|
844
|
+
sent: 'sent',
|
|
845
|
+
failed: 'failed',
|
|
846
|
+
cancelled: 'cancelled'
|
|
847
|
+
};
|
|
848
|
+
|
|
849
|
+
export type ReminderStatus = (typeof ReminderStatus)[keyof typeof ReminderStatus]
|
|
850
|
+
|
|
851
|
+
|
|
837
852
|
export const ClientInterviewFeedbackAction: {
|
|
838
853
|
Hire: 'Hire',
|
|
839
854
|
BookFollowUpInterview: 'BookFollowUpInterview',
|
|
@@ -1060,6 +1075,10 @@ export type BillingPaymentDue = $Enums.BillingPaymentDue
|
|
|
1060
1075
|
|
|
1061
1076
|
export const BillingPaymentDue: typeof $Enums.BillingPaymentDue
|
|
1062
1077
|
|
|
1078
|
+
export type ReminderStatus = $Enums.ReminderStatus
|
|
1079
|
+
|
|
1080
|
+
export const ReminderStatus: typeof $Enums.ReminderStatus
|
|
1081
|
+
|
|
1063
1082
|
export type ClientInterviewFeedbackAction = $Enums.ClientInterviewFeedbackAction
|
|
1064
1083
|
|
|
1065
1084
|
export const ClientInterviewFeedbackAction: typeof $Enums.ClientInterviewFeedbackAction
|
|
@@ -5041,6 +5060,87 @@ export namespace Prisma {
|
|
|
5041
5060
|
}
|
|
5042
5061
|
|
|
5043
5062
|
|
|
5063
|
+
/**
|
|
5064
|
+
* Model ScheduledReminder
|
|
5065
|
+
*/
|
|
5066
|
+
|
|
5067
|
+
|
|
5068
|
+
|
|
5069
|
+
|
|
5070
|
+
|
|
5071
|
+
export type ScheduledReminderSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5072
|
+
id?: boolean
|
|
5073
|
+
reminderType?: boolean
|
|
5074
|
+
scheduledFor?: boolean
|
|
5075
|
+
status?: boolean
|
|
5076
|
+
jobName?: boolean
|
|
5077
|
+
sentAt?: boolean
|
|
5078
|
+
failureReason?: boolean
|
|
5079
|
+
createdAt?: boolean
|
|
5080
|
+
}, ExtArgs["result"]["scheduledReminder"]>
|
|
5081
|
+
|
|
5082
|
+
|
|
5083
|
+
export type ScheduledReminderSelectScalar = {
|
|
5084
|
+
id?: boolean
|
|
5085
|
+
reminderType?: boolean
|
|
5086
|
+
scheduledFor?: boolean
|
|
5087
|
+
status?: boolean
|
|
5088
|
+
jobName?: boolean
|
|
5089
|
+
sentAt?: boolean
|
|
5090
|
+
failureReason?: boolean
|
|
5091
|
+
createdAt?: boolean
|
|
5092
|
+
}
|
|
5093
|
+
|
|
5094
|
+
|
|
5095
|
+
export type $ScheduledReminderPayload = {
|
|
5096
|
+
name: "ScheduledReminder"
|
|
5097
|
+
objects: {}
|
|
5098
|
+
scalars: {
|
|
5099
|
+
id: string
|
|
5100
|
+
reminderType: string
|
|
5101
|
+
scheduledFor: string
|
|
5102
|
+
status: $Enums.ReminderStatus
|
|
5103
|
+
jobName: string
|
|
5104
|
+
sentAt: Date | null
|
|
5105
|
+
failureReason: string | null
|
|
5106
|
+
createdAt: Date
|
|
5107
|
+
}
|
|
5108
|
+
composites: {}
|
|
5109
|
+
}
|
|
5110
|
+
|
|
5111
|
+
type ScheduledReminderGetPayload<S extends boolean | null | undefined | ScheduledReminderDefaultArgs> = $Result.GetResult<Prisma.$ScheduledReminderPayload, S>
|
|
5112
|
+
|
|
5113
|
+
|
|
5114
|
+
|
|
5115
|
+
|
|
5116
|
+
|
|
5117
|
+
/**
|
|
5118
|
+
* Fields of the ScheduledReminder model
|
|
5119
|
+
*/
|
|
5120
|
+
interface ScheduledReminderFieldRefs {
|
|
5121
|
+
readonly id: FieldRef<"ScheduledReminder", 'String'>
|
|
5122
|
+
readonly reminderType: FieldRef<"ScheduledReminder", 'String'>
|
|
5123
|
+
readonly scheduledFor: FieldRef<"ScheduledReminder", 'String'>
|
|
5124
|
+
readonly status: FieldRef<"ScheduledReminder", 'ReminderStatus'>
|
|
5125
|
+
readonly jobName: FieldRef<"ScheduledReminder", 'String'>
|
|
5126
|
+
readonly sentAt: FieldRef<"ScheduledReminder", 'DateTime'>
|
|
5127
|
+
readonly failureReason: FieldRef<"ScheduledReminder", 'String'>
|
|
5128
|
+
readonly createdAt: FieldRef<"ScheduledReminder", 'DateTime'>
|
|
5129
|
+
}
|
|
5130
|
+
|
|
5131
|
+
|
|
5132
|
+
// Custom InputTypes
|
|
5133
|
+
/**
|
|
5134
|
+
* ScheduledReminder without action
|
|
5135
|
+
*/
|
|
5136
|
+
export type ScheduledReminderDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5137
|
+
/**
|
|
5138
|
+
* Select specific fields to fetch from the ScheduledReminder
|
|
5139
|
+
*/
|
|
5140
|
+
select?: ScheduledReminderSelect<ExtArgs> | null
|
|
5141
|
+
}
|
|
5142
|
+
|
|
5143
|
+
|
|
5044
5144
|
/**
|
|
5045
5145
|
* Model ClientInterviewTranscriptData
|
|
5046
5146
|
*/
|
|
@@ -14874,6 +14974,7 @@ export namespace Prisma {
|
|
|
14874
14974
|
rescheduleReason?: boolean
|
|
14875
14975
|
originalStartTime?: boolean
|
|
14876
14976
|
originalEndTime?: boolean
|
|
14977
|
+
scheduledReminders?: boolean | ScheduledReminderDefaultArgs<ExtArgs>
|
|
14877
14978
|
createdAt?: boolean
|
|
14878
14979
|
updatedAt?: boolean
|
|
14879
14980
|
notificationChannel?: boolean | NotificationChannelDefaultArgs<ExtArgs>
|
|
@@ -14945,6 +15046,7 @@ export namespace Prisma {
|
|
|
14945
15046
|
attendees: Prisma.$AttendeePayload[]
|
|
14946
15047
|
metadata: Prisma.$EventMetadataPayload | null
|
|
14947
15048
|
videoCallData: Prisma.$VideoCallDataPayload | null
|
|
15049
|
+
scheduledReminders: Prisma.$ScheduledReminderPayload[]
|
|
14948
15050
|
notificationChannel: Prisma.$NotificationChannelPayload | null
|
|
14949
15051
|
}
|
|
14950
15052
|
}
|
|
@@ -37397,6 +37499,20 @@ export namespace Prisma {
|
|
|
37397
37499
|
|
|
37398
37500
|
|
|
37399
37501
|
|
|
37502
|
+
/**
|
|
37503
|
+
* Reference to a field of type 'ReminderStatus'
|
|
37504
|
+
*/
|
|
37505
|
+
export type EnumReminderStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ReminderStatus'>
|
|
37506
|
+
|
|
37507
|
+
|
|
37508
|
+
|
|
37509
|
+
/**
|
|
37510
|
+
* Reference to a field of type 'ReminderStatus[]'
|
|
37511
|
+
*/
|
|
37512
|
+
export type ListEnumReminderStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ReminderStatus[]'>
|
|
37513
|
+
|
|
37514
|
+
|
|
37515
|
+
|
|
37400
37516
|
/**
|
|
37401
37517
|
* Reference to a field of type 'ClientInterviewFeedbackAction'
|
|
37402
37518
|
*/
|
|
@@ -37945,6 +38061,7 @@ export namespace Prisma {
|
|
|
37945
38061
|
rescheduleReason?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37946
38062
|
originalStartTime?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
37947
38063
|
originalEndTime?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
38064
|
+
scheduledReminders?: ScheduledReminderCompositeListFilter | ScheduledReminderObjectEqualityInput[]
|
|
37948
38065
|
createdAt?: DateTimeFilter<"CalendarEvent"> | Date | string
|
|
37949
38066
|
updatedAt?: DateTimeFilter<"CalendarEvent"> | Date | string
|
|
37950
38067
|
notificationChannel?: XOR<NotificationChannelNullableCompositeFilter, NotificationChannelObjectEqualityInput> | null
|
|
@@ -37974,6 +38091,7 @@ export namespace Prisma {
|
|
|
37974
38091
|
rescheduleReason?: SortOrder
|
|
37975
38092
|
originalStartTime?: SortOrder
|
|
37976
38093
|
originalEndTime?: SortOrder
|
|
38094
|
+
scheduledReminders?: ScheduledReminderOrderByCompositeAggregateInput
|
|
37977
38095
|
createdAt?: SortOrder
|
|
37978
38096
|
updatedAt?: SortOrder
|
|
37979
38097
|
notificationChannel?: NotificationChannelOrderByInput
|
|
@@ -38006,6 +38124,7 @@ export namespace Prisma {
|
|
|
38006
38124
|
rescheduleReason?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
38007
38125
|
originalStartTime?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
38008
38126
|
originalEndTime?: StringNullableFilter<"CalendarEvent"> | string | null
|
|
38127
|
+
scheduledReminders?: ScheduledReminderCompositeListFilter | ScheduledReminderObjectEqualityInput[]
|
|
38009
38128
|
createdAt?: DateTimeFilter<"CalendarEvent"> | Date | string
|
|
38010
38129
|
updatedAt?: DateTimeFilter<"CalendarEvent"> | Date | string
|
|
38011
38130
|
notificationChannel?: XOR<NotificationChannelNullableCompositeFilter, NotificationChannelObjectEqualityInput> | null
|
|
@@ -40614,6 +40733,7 @@ export namespace Prisma {
|
|
|
40614
40733
|
rescheduleReason?: string | null
|
|
40615
40734
|
originalStartTime?: string | null
|
|
40616
40735
|
originalEndTime?: string | null
|
|
40736
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40617
40737
|
createdAt: Date | string
|
|
40618
40738
|
updatedAt: Date | string
|
|
40619
40739
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40643,6 +40763,7 @@ export namespace Prisma {
|
|
|
40643
40763
|
rescheduleReason?: string | null
|
|
40644
40764
|
originalStartTime?: string | null
|
|
40645
40765
|
originalEndTime?: string | null
|
|
40766
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40646
40767
|
createdAt: Date | string
|
|
40647
40768
|
updatedAt: Date | string
|
|
40648
40769
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40663,6 +40784,7 @@ export namespace Prisma {
|
|
|
40663
40784
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40664
40785
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40665
40786
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40787
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40666
40788
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40667
40789
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40668
40790
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40691,6 +40813,7 @@ export namespace Prisma {
|
|
|
40691
40813
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40692
40814
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40693
40815
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40816
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40694
40817
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40695
40818
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40696
40819
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40716,6 +40839,7 @@ export namespace Prisma {
|
|
|
40716
40839
|
rescheduleReason?: string | null
|
|
40717
40840
|
originalStartTime?: string | null
|
|
40718
40841
|
originalEndTime?: string | null
|
|
40842
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40719
40843
|
createdAt: Date | string
|
|
40720
40844
|
updatedAt: Date | string
|
|
40721
40845
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40735,6 +40859,7 @@ export namespace Prisma {
|
|
|
40735
40859
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40736
40860
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40737
40861
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40862
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40738
40863
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40739
40864
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40740
40865
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -40758,6 +40883,7 @@ export namespace Prisma {
|
|
|
40758
40883
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40759
40884
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40760
40885
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40886
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
40761
40887
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40762
40888
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40763
40889
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -43998,6 +44124,26 @@ export namespace Prisma {
|
|
|
43998
44124
|
password?: string | null
|
|
43999
44125
|
}
|
|
44000
44126
|
|
|
44127
|
+
export type ScheduledReminderCompositeListFilter = {
|
|
44128
|
+
equals?: ScheduledReminderObjectEqualityInput[]
|
|
44129
|
+
every?: ScheduledReminderWhereInput
|
|
44130
|
+
some?: ScheduledReminderWhereInput
|
|
44131
|
+
none?: ScheduledReminderWhereInput
|
|
44132
|
+
isEmpty?: boolean
|
|
44133
|
+
isSet?: boolean
|
|
44134
|
+
}
|
|
44135
|
+
|
|
44136
|
+
export type ScheduledReminderObjectEqualityInput = {
|
|
44137
|
+
id: string
|
|
44138
|
+
reminderType: string
|
|
44139
|
+
scheduledFor: string
|
|
44140
|
+
status: $Enums.ReminderStatus
|
|
44141
|
+
jobName: string
|
|
44142
|
+
sentAt?: Date | string | null
|
|
44143
|
+
failureReason?: string | null
|
|
44144
|
+
createdAt: Date | string
|
|
44145
|
+
}
|
|
44146
|
+
|
|
44001
44147
|
export type NotificationChannelNullableCompositeFilter = {
|
|
44002
44148
|
equals?: NotificationChannelObjectEqualityInput | null
|
|
44003
44149
|
is?: NotificationChannelWhereInput | null
|
|
@@ -44045,6 +44191,10 @@ export namespace Prisma {
|
|
|
44045
44191
|
password?: SortOrder
|
|
44046
44192
|
}
|
|
44047
44193
|
|
|
44194
|
+
export type ScheduledReminderOrderByCompositeAggregateInput = {
|
|
44195
|
+
_count?: SortOrder
|
|
44196
|
+
}
|
|
44197
|
+
|
|
44048
44198
|
export type NotificationChannelOrderByInput = {
|
|
44049
44199
|
channelId?: SortOrder
|
|
44050
44200
|
resourceId?: SortOrder
|
|
@@ -47373,6 +47523,21 @@ export namespace Prisma {
|
|
|
47373
47523
|
password?: string | null
|
|
47374
47524
|
}
|
|
47375
47525
|
|
|
47526
|
+
export type ScheduledReminderListCreateEnvelopeInput = {
|
|
47527
|
+
set?: ScheduledReminderCreateInput | ScheduledReminderCreateInput[]
|
|
47528
|
+
}
|
|
47529
|
+
|
|
47530
|
+
export type ScheduledReminderCreateInput = {
|
|
47531
|
+
id?: string
|
|
47532
|
+
reminderType: string
|
|
47533
|
+
scheduledFor: string
|
|
47534
|
+
status?: $Enums.ReminderStatus
|
|
47535
|
+
jobName: string
|
|
47536
|
+
sentAt?: Date | string | null
|
|
47537
|
+
failureReason?: string | null
|
|
47538
|
+
createdAt?: Date | string
|
|
47539
|
+
}
|
|
47540
|
+
|
|
47376
47541
|
export type NotificationChannelNullableCreateEnvelopeInput = {
|
|
47377
47542
|
set?: NotificationChannelCreateInput | null
|
|
47378
47543
|
}
|
|
@@ -47442,6 +47607,13 @@ export namespace Prisma {
|
|
|
47442
47607
|
unset?: boolean
|
|
47443
47608
|
}
|
|
47444
47609
|
|
|
47610
|
+
export type ScheduledReminderListUpdateEnvelopeInput = {
|
|
47611
|
+
set?: ScheduledReminderCreateInput | ScheduledReminderCreateInput[]
|
|
47612
|
+
push?: ScheduledReminderCreateInput | ScheduledReminderCreateInput[]
|
|
47613
|
+
updateMany?: ScheduledReminderUpdateManyInput
|
|
47614
|
+
deleteMany?: ScheduledReminderDeleteManyInput
|
|
47615
|
+
}
|
|
47616
|
+
|
|
47445
47617
|
export type NotificationChannelNullableUpdateEnvelopeInput = {
|
|
47446
47618
|
set?: NotificationChannelCreateInput | null
|
|
47447
47619
|
upsert?: NotificationChannelUpsertInput
|
|
@@ -50691,6 +50863,20 @@ export namespace Prisma {
|
|
|
50691
50863
|
password?: StringNullableFilter<"VideoCallData"> | string | null
|
|
50692
50864
|
}
|
|
50693
50865
|
|
|
50866
|
+
export type ScheduledReminderWhereInput = {
|
|
50867
|
+
AND?: ScheduledReminderWhereInput | ScheduledReminderWhereInput[]
|
|
50868
|
+
OR?: ScheduledReminderWhereInput[]
|
|
50869
|
+
NOT?: ScheduledReminderWhereInput | ScheduledReminderWhereInput[]
|
|
50870
|
+
id?: StringFilter<"ScheduledReminder"> | string
|
|
50871
|
+
reminderType?: StringFilter<"ScheduledReminder"> | string
|
|
50872
|
+
scheduledFor?: StringFilter<"ScheduledReminder"> | string
|
|
50873
|
+
status?: EnumReminderStatusFilter<"ScheduledReminder"> | $Enums.ReminderStatus
|
|
50874
|
+
jobName?: StringFilter<"ScheduledReminder"> | string
|
|
50875
|
+
sentAt?: DateTimeNullableFilter<"ScheduledReminder"> | Date | string | null
|
|
50876
|
+
failureReason?: StringNullableFilter<"ScheduledReminder"> | string | null
|
|
50877
|
+
createdAt?: DateTimeFilter<"ScheduledReminder"> | Date | string
|
|
50878
|
+
}
|
|
50879
|
+
|
|
50694
50880
|
export type NotificationChannelWhereInput = {
|
|
50695
50881
|
AND?: NotificationChannelWhereInput | NotificationChannelWhereInput[]
|
|
50696
50882
|
OR?: NotificationChannelWhereInput[]
|
|
@@ -52989,6 +53175,7 @@ export namespace Prisma {
|
|
|
52989
53175
|
rescheduleReason?: string | null
|
|
52990
53176
|
originalStartTime?: string | null
|
|
52991
53177
|
originalEndTime?: string | null
|
|
53178
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
52992
53179
|
createdAt: Date | string
|
|
52993
53180
|
updatedAt: Date | string
|
|
52994
53181
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -53016,6 +53203,7 @@ export namespace Prisma {
|
|
|
53016
53203
|
rescheduleReason?: string | null
|
|
53017
53204
|
originalStartTime?: string | null
|
|
53018
53205
|
originalEndTime?: string | null
|
|
53206
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
53019
53207
|
createdAt: Date | string
|
|
53020
53208
|
updatedAt: Date | string
|
|
53021
53209
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -53896,6 +54084,15 @@ export namespace Prisma {
|
|
|
53896
54084
|
update: VideoCallDataUpdateInput
|
|
53897
54085
|
}
|
|
53898
54086
|
|
|
54087
|
+
export type ScheduledReminderUpdateManyInput = {
|
|
54088
|
+
where: ScheduledReminderWhereInput
|
|
54089
|
+
data: ScheduledReminderUpdateInput
|
|
54090
|
+
}
|
|
54091
|
+
|
|
54092
|
+
export type ScheduledReminderDeleteManyInput = {
|
|
54093
|
+
where: ScheduledReminderWhereInput
|
|
54094
|
+
}
|
|
54095
|
+
|
|
53899
54096
|
export type NotificationChannelUpsertInput = {
|
|
53900
54097
|
set: NotificationChannelCreateInput | null
|
|
53901
54098
|
update: NotificationChannelUpdateInput
|
|
@@ -54297,6 +54494,7 @@ export namespace Prisma {
|
|
|
54297
54494
|
rescheduleReason?: string | null
|
|
54298
54495
|
originalStartTime?: string | null
|
|
54299
54496
|
originalEndTime?: string | null
|
|
54497
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
54300
54498
|
createdAt: Date | string
|
|
54301
54499
|
updatedAt: Date | string
|
|
54302
54500
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -54324,6 +54522,7 @@ export namespace Prisma {
|
|
|
54324
54522
|
rescheduleReason?: string | null
|
|
54325
54523
|
originalStartTime?: string | null
|
|
54326
54524
|
originalEndTime?: string | null
|
|
54525
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
54327
54526
|
createdAt: Date | string
|
|
54328
54527
|
updatedAt: Date | string
|
|
54329
54528
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -54996,6 +55195,7 @@ export namespace Prisma {
|
|
|
54996
55195
|
rescheduleReason?: string | null
|
|
54997
55196
|
originalStartTime?: string | null
|
|
54998
55197
|
originalEndTime?: string | null
|
|
55198
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
54999
55199
|
createdAt: Date | string
|
|
55000
55200
|
updatedAt: Date | string
|
|
55001
55201
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -55024,6 +55224,7 @@ export namespace Prisma {
|
|
|
55024
55224
|
rescheduleReason?: string | null
|
|
55025
55225
|
originalStartTime?: string | null
|
|
55026
55226
|
originalEndTime?: string | null
|
|
55227
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
55027
55228
|
createdAt: Date | string
|
|
55028
55229
|
updatedAt: Date | string
|
|
55029
55230
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -55434,6 +55635,7 @@ export namespace Prisma {
|
|
|
55434
55635
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55435
55636
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55436
55637
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55638
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
55437
55639
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
55438
55640
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
55439
55641
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -55461,6 +55663,7 @@ export namespace Prisma {
|
|
|
55461
55663
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55462
55664
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55463
55665
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
55666
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
55464
55667
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
55465
55668
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
55466
55669
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -60754,6 +60957,7 @@ export namespace Prisma {
|
|
|
60754
60957
|
rescheduleReason?: string | null
|
|
60755
60958
|
originalStartTime?: string | null
|
|
60756
60959
|
originalEndTime?: string | null
|
|
60960
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
60757
60961
|
createdAt: Date | string
|
|
60758
60962
|
updatedAt: Date | string
|
|
60759
60963
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -60781,6 +60985,7 @@ export namespace Prisma {
|
|
|
60781
60985
|
rescheduleReason?: string | null
|
|
60782
60986
|
originalStartTime?: string | null
|
|
60783
60987
|
originalEndTime?: string | null
|
|
60988
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
60784
60989
|
createdAt: Date | string
|
|
60785
60990
|
updatedAt: Date | string
|
|
60786
60991
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -60861,6 +61066,7 @@ export namespace Prisma {
|
|
|
60861
61066
|
rescheduleReason?: string | null
|
|
60862
61067
|
originalStartTime?: string | null
|
|
60863
61068
|
originalEndTime?: string | null
|
|
61069
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
60864
61070
|
createdAt: Date | string
|
|
60865
61071
|
updatedAt: Date | string
|
|
60866
61072
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -60888,6 +61094,7 @@ export namespace Prisma {
|
|
|
60888
61094
|
rescheduleReason?: string | null
|
|
60889
61095
|
originalStartTime?: string | null
|
|
60890
61096
|
originalEndTime?: string | null
|
|
61097
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
60891
61098
|
createdAt: Date | string
|
|
60892
61099
|
updatedAt: Date | string
|
|
60893
61100
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -62606,6 +62813,13 @@ export namespace Prisma {
|
|
|
62606
62813
|
not?: NestedEnumBillingPaymentDueFilter<$PrismaModel> | $Enums.BillingPaymentDue
|
|
62607
62814
|
}
|
|
62608
62815
|
|
|
62816
|
+
export type EnumReminderStatusFilter<$PrismaModel = never> = {
|
|
62817
|
+
equals?: $Enums.ReminderStatus | EnumReminderStatusFieldRefInput<$PrismaModel>
|
|
62818
|
+
in?: $Enums.ReminderStatus[] | ListEnumReminderStatusFieldRefInput<$PrismaModel>
|
|
62819
|
+
notIn?: $Enums.ReminderStatus[] | ListEnumReminderStatusFieldRefInput<$PrismaModel>
|
|
62820
|
+
not?: NestedEnumReminderStatusFilter<$PrismaModel> | $Enums.ReminderStatus
|
|
62821
|
+
}
|
|
62822
|
+
|
|
62609
62823
|
export type ClientInterviewRecordingLinkDataNullableCompositeFilter = {
|
|
62610
62824
|
equals?: ClientInterviewRecordingLinkDataObjectEqualityInput | null
|
|
62611
62825
|
is?: ClientInterviewRecordingLinkDataWhereInput | null
|
|
@@ -63639,6 +63853,7 @@ export namespace Prisma {
|
|
|
63639
63853
|
rescheduleReason?: string | null
|
|
63640
63854
|
originalStartTime?: string | null
|
|
63641
63855
|
originalEndTime?: string | null
|
|
63856
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63642
63857
|
createdAt: Date | string
|
|
63643
63858
|
updatedAt: Date | string
|
|
63644
63859
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63658,6 +63873,7 @@ export namespace Prisma {
|
|
|
63658
63873
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63659
63874
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63660
63875
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63876
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63661
63877
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63662
63878
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63663
63879
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63684,6 +63900,7 @@ export namespace Prisma {
|
|
|
63684
63900
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63685
63901
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63686
63902
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63903
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63687
63904
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63688
63905
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63689
63906
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63707,6 +63924,7 @@ export namespace Prisma {
|
|
|
63707
63924
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63708
63925
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63709
63926
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63927
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63710
63928
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63711
63929
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63712
63930
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63737,6 +63955,17 @@ export namespace Prisma {
|
|
|
63737
63955
|
password?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63738
63956
|
}
|
|
63739
63957
|
|
|
63958
|
+
export type ScheduledReminderUpdateInput = {
|
|
63959
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
63960
|
+
reminderType?: StringFieldUpdateOperationsInput | string
|
|
63961
|
+
scheduledFor?: StringFieldUpdateOperationsInput | string
|
|
63962
|
+
status?: EnumReminderStatusFieldUpdateOperationsInput | $Enums.ReminderStatus
|
|
63963
|
+
jobName?: StringFieldUpdateOperationsInput | string
|
|
63964
|
+
sentAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63965
|
+
failureReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63966
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63967
|
+
}
|
|
63968
|
+
|
|
63740
63969
|
export type NotificationChannelUpdateInput = {
|
|
63741
63970
|
channelId?: StringFieldUpdateOperationsInput | string
|
|
63742
63971
|
resourceId?: StringFieldUpdateOperationsInput | string
|
|
@@ -63761,6 +63990,7 @@ export namespace Prisma {
|
|
|
63761
63990
|
rescheduleReason?: string | null
|
|
63762
63991
|
originalStartTime?: string | null
|
|
63763
63992
|
originalEndTime?: string | null
|
|
63993
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63764
63994
|
createdAt: Date | string
|
|
63765
63995
|
updatedAt: Date | string
|
|
63766
63996
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63791,6 +64021,7 @@ export namespace Prisma {
|
|
|
63791
64021
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63792
64022
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63793
64023
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64024
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63794
64025
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63795
64026
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63796
64027
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63817,6 +64048,7 @@ export namespace Prisma {
|
|
|
63817
64048
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63818
64049
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63819
64050
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64051
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63820
64052
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63821
64053
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63822
64054
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -63840,6 +64072,7 @@ export namespace Prisma {
|
|
|
63840
64072
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63841
64073
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63842
64074
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64075
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
63843
64076
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63844
64077
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
63845
64078
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -65328,6 +65561,7 @@ export namespace Prisma {
|
|
|
65328
65561
|
rescheduleReason?: string | null
|
|
65329
65562
|
originalStartTime?: string | null
|
|
65330
65563
|
originalEndTime?: string | null
|
|
65564
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
65331
65565
|
createdAt: Date | string
|
|
65332
65566
|
updatedAt: Date | string
|
|
65333
65567
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -65362,6 +65596,7 @@ export namespace Prisma {
|
|
|
65362
65596
|
rescheduleReason?: string | null
|
|
65363
65597
|
originalStartTime?: string | null
|
|
65364
65598
|
originalEndTime?: string | null
|
|
65599
|
+
scheduledReminders?: XOR<ScheduledReminderListCreateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
65365
65600
|
createdAt: Date | string
|
|
65366
65601
|
updatedAt: Date | string
|
|
65367
65602
|
notificationChannel?: XOR<NotificationChannelNullableCreateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66471,6 +66706,7 @@ export namespace Prisma {
|
|
|
66471
66706
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66472
66707
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66473
66708
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66709
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66474
66710
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66475
66711
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66476
66712
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66497,6 +66733,7 @@ export namespace Prisma {
|
|
|
66497
66733
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66498
66734
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66499
66735
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66736
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66500
66737
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66501
66738
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66502
66739
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66520,6 +66757,7 @@ export namespace Prisma {
|
|
|
66520
66757
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66521
66758
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66522
66759
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66760
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66523
66761
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66524
66762
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66525
66763
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66569,6 +66807,7 @@ export namespace Prisma {
|
|
|
66569
66807
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66570
66808
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66571
66809
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66810
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66572
66811
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66573
66812
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66574
66813
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66595,6 +66834,7 @@ export namespace Prisma {
|
|
|
66595
66834
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66596
66835
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66597
66836
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66837
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66598
66838
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66599
66839
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66600
66840
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66618,6 +66858,7 @@ export namespace Prisma {
|
|
|
66618
66858
|
rescheduleReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66619
66859
|
originalStartTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66620
66860
|
originalEndTime?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66861
|
+
scheduledReminders?: XOR<ScheduledReminderListUpdateEnvelopeInput, ScheduledReminderCreateInput> | ScheduledReminderCreateInput[]
|
|
66621
66862
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66622
66863
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66623
66864
|
notificationChannel?: XOR<NotificationChannelNullableUpdateEnvelopeInput, NotificationChannelCreateInput> | null
|
|
@@ -66922,6 +67163,13 @@ export namespace Prisma {
|
|
|
66922
67163
|
not?: NestedEnumBillingPaymentDueFilter<$PrismaModel> | $Enums.BillingPaymentDue
|
|
66923
67164
|
}
|
|
66924
67165
|
|
|
67166
|
+
export type NestedEnumReminderStatusFilter<$PrismaModel = never> = {
|
|
67167
|
+
equals?: $Enums.ReminderStatus | EnumReminderStatusFieldRefInput<$PrismaModel>
|
|
67168
|
+
in?: $Enums.ReminderStatus[] | ListEnumReminderStatusFieldRefInput<$PrismaModel>
|
|
67169
|
+
notIn?: $Enums.ReminderStatus[] | ListEnumReminderStatusFieldRefInput<$PrismaModel>
|
|
67170
|
+
not?: NestedEnumReminderStatusFilter<$PrismaModel> | $Enums.ReminderStatus
|
|
67171
|
+
}
|
|
67172
|
+
|
|
66925
67173
|
export type ClientInterviewRecordingLinkDataWhereInput = {
|
|
66926
67174
|
AND?: ClientInterviewRecordingLinkDataWhereInput | ClientInterviewRecordingLinkDataWhereInput[]
|
|
66927
67175
|
OR?: ClientInterviewRecordingLinkDataWhereInput[]
|
|
@@ -67247,6 +67495,10 @@ export namespace Prisma {
|
|
|
67247
67495
|
set?: $Enums.BillingPaymentDue
|
|
67248
67496
|
}
|
|
67249
67497
|
|
|
67498
|
+
export type EnumReminderStatusFieldUpdateOperationsInput = {
|
|
67499
|
+
set?: $Enums.ReminderStatus
|
|
67500
|
+
}
|
|
67501
|
+
|
|
67250
67502
|
export type ClientInterviewRecordingLinkDataNullableUpdateEnvelopeInput = {
|
|
67251
67503
|
set?: ClientInterviewRecordingLinkDataCreateInput | null
|
|
67252
67504
|
upsert?: ClientInterviewRecordingLinkDataUpsertInput
|
|
@@ -68085,6 +68337,10 @@ export namespace Prisma {
|
|
|
68085
68337
|
* @deprecated Use NotificationChannelDefaultArgs instead
|
|
68086
68338
|
*/
|
|
68087
68339
|
export type NotificationChannelArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = NotificationChannelDefaultArgs<ExtArgs>
|
|
68340
|
+
/**
|
|
68341
|
+
* @deprecated Use ScheduledReminderDefaultArgs instead
|
|
68342
|
+
*/
|
|
68343
|
+
export type ScheduledReminderArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ScheduledReminderDefaultArgs<ExtArgs>
|
|
68088
68344
|
/**
|
|
68089
68345
|
* @deprecated Use ClientInterviewTranscriptDataDefaultArgs instead
|
|
68090
68346
|
*/
|