@a_team/prisma 3.14.8-macos-docker-linux → 3.15.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 +24 -4
- package/dist/client/index-browser.js +20 -0
- package/dist/client/index.d.ts +1708 -191
- package/dist/client/index.js +26 -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 +27 -0
- package/dist/client/wasm.js +20 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -373,6 +373,11 @@ export type ProposalRoleData = $Result.DefaultSelection<Prisma.$ProposalRoleData
|
|
|
373
373
|
*
|
|
374
374
|
*/
|
|
375
375
|
export type ProposalTfsPitch = $Result.DefaultSelection<Prisma.$ProposalTfsPitchPayload>
|
|
376
|
+
/**
|
|
377
|
+
* Model CallParticipant
|
|
378
|
+
*
|
|
379
|
+
*/
|
|
380
|
+
export type CallParticipant = $Result.DefaultSelection<Prisma.$CallParticipantPayload>
|
|
376
381
|
/**
|
|
377
382
|
* Model Role
|
|
378
383
|
*
|
|
@@ -593,6 +598,11 @@ export type PaymentCycle = $Result.DefaultSelection<Prisma.$PaymentCyclePayload>
|
|
|
593
598
|
*
|
|
594
599
|
*/
|
|
595
600
|
export type Proposal = $Result.DefaultSelection<Prisma.$ProposalPayload>
|
|
601
|
+
/**
|
|
602
|
+
* Model RecordedCall
|
|
603
|
+
*
|
|
604
|
+
*/
|
|
605
|
+
export type RecordedCall = $Result.DefaultSelection<Prisma.$RecordedCallPayload>
|
|
596
606
|
/**
|
|
597
607
|
* Model RoleCategory
|
|
598
608
|
*
|
|
@@ -813,6 +823,14 @@ export const ProposalTemplate: {
|
|
|
813
823
|
export type ProposalTemplate = (typeof ProposalTemplate)[keyof typeof ProposalTemplate]
|
|
814
824
|
|
|
815
825
|
|
|
826
|
+
export const PlatformRecordedOn: {
|
|
827
|
+
Fathom: 'Fathom',
|
|
828
|
+
Gong: 'Gong'
|
|
829
|
+
};
|
|
830
|
+
|
|
831
|
+
export type PlatformRecordedOn = (typeof PlatformRecordedOn)[keyof typeof PlatformRecordedOn]
|
|
832
|
+
|
|
833
|
+
|
|
816
834
|
export const PresetID: {
|
|
817
835
|
custom_team: 'custom_team',
|
|
818
836
|
web_platform: 'web_platform',
|
|
@@ -1126,6 +1144,10 @@ export type ProposalTemplate = $Enums.ProposalTemplate
|
|
|
1126
1144
|
|
|
1127
1145
|
export const ProposalTemplate: typeof $Enums.ProposalTemplate
|
|
1128
1146
|
|
|
1147
|
+
export type PlatformRecordedOn = $Enums.PlatformRecordedOn
|
|
1148
|
+
|
|
1149
|
+
export const PlatformRecordedOn: typeof $Enums.PlatformRecordedOn
|
|
1150
|
+
|
|
1129
1151
|
export type PresetID = $Enums.PresetID
|
|
1130
1152
|
|
|
1131
1153
|
export const PresetID: typeof $Enums.PresetID
|
|
@@ -1494,6 +1516,16 @@ export class PrismaClient<
|
|
|
1494
1516
|
*/
|
|
1495
1517
|
get proposal(): Prisma.ProposalDelegate<ExtArgs>;
|
|
1496
1518
|
|
|
1519
|
+
/**
|
|
1520
|
+
* `prisma.recordedCall`: Exposes CRUD operations for the **RecordedCall** model.
|
|
1521
|
+
* Example usage:
|
|
1522
|
+
* ```ts
|
|
1523
|
+
* // Fetch zero or more RecordedCalls
|
|
1524
|
+
* const recordedCalls = await prisma.recordedCall.findMany()
|
|
1525
|
+
* ```
|
|
1526
|
+
*/
|
|
1527
|
+
get recordedCall(): Prisma.RecordedCallDelegate<ExtArgs>;
|
|
1528
|
+
|
|
1497
1529
|
/**
|
|
1498
1530
|
* `prisma.roleCategory`: Exposes CRUD operations for the **RoleCategory** model.
|
|
1499
1531
|
* Example usage:
|
|
@@ -2023,6 +2055,7 @@ export namespace Prisma {
|
|
|
2023
2055
|
MissionSpec: 'MissionSpec',
|
|
2024
2056
|
PaymentCycle: 'PaymentCycle',
|
|
2025
2057
|
Proposal: 'Proposal',
|
|
2058
|
+
RecordedCall: 'RecordedCall',
|
|
2026
2059
|
RoleCategory: 'RoleCategory',
|
|
2027
2060
|
Solution: 'Solution',
|
|
2028
2061
|
TalentCategory: 'TalentCategory',
|
|
@@ -2045,7 +2078,7 @@ export namespace Prisma {
|
|
|
2045
2078
|
|
|
2046
2079
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2047
2080
|
meta: {
|
|
2048
|
-
modelProps: "account" | "billingAccount" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "roleCategory" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2081
|
+
modelProps: "account" | "billingAccount" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2049
2082
|
txIsolationLevel: never
|
|
2050
2083
|
}
|
|
2051
2084
|
model: {
|
|
@@ -3455,6 +3488,80 @@ export namespace Prisma {
|
|
|
3455
3488
|
}
|
|
3456
3489
|
}
|
|
3457
3490
|
}
|
|
3491
|
+
RecordedCall: {
|
|
3492
|
+
payload: Prisma.$RecordedCallPayload<ExtArgs>
|
|
3493
|
+
fields: Prisma.RecordedCallFieldRefs
|
|
3494
|
+
operations: {
|
|
3495
|
+
findUnique: {
|
|
3496
|
+
args: Prisma.RecordedCallFindUniqueArgs<ExtArgs>
|
|
3497
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload> | null
|
|
3498
|
+
}
|
|
3499
|
+
findUniqueOrThrow: {
|
|
3500
|
+
args: Prisma.RecordedCallFindUniqueOrThrowArgs<ExtArgs>
|
|
3501
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3502
|
+
}
|
|
3503
|
+
findFirst: {
|
|
3504
|
+
args: Prisma.RecordedCallFindFirstArgs<ExtArgs>
|
|
3505
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload> | null
|
|
3506
|
+
}
|
|
3507
|
+
findFirstOrThrow: {
|
|
3508
|
+
args: Prisma.RecordedCallFindFirstOrThrowArgs<ExtArgs>
|
|
3509
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3510
|
+
}
|
|
3511
|
+
findMany: {
|
|
3512
|
+
args: Prisma.RecordedCallFindManyArgs<ExtArgs>
|
|
3513
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>[]
|
|
3514
|
+
}
|
|
3515
|
+
create: {
|
|
3516
|
+
args: Prisma.RecordedCallCreateArgs<ExtArgs>
|
|
3517
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3518
|
+
}
|
|
3519
|
+
createMany: {
|
|
3520
|
+
args: Prisma.RecordedCallCreateManyArgs<ExtArgs>
|
|
3521
|
+
result: BatchPayload
|
|
3522
|
+
}
|
|
3523
|
+
delete: {
|
|
3524
|
+
args: Prisma.RecordedCallDeleteArgs<ExtArgs>
|
|
3525
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3526
|
+
}
|
|
3527
|
+
update: {
|
|
3528
|
+
args: Prisma.RecordedCallUpdateArgs<ExtArgs>
|
|
3529
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3530
|
+
}
|
|
3531
|
+
deleteMany: {
|
|
3532
|
+
args: Prisma.RecordedCallDeleteManyArgs<ExtArgs>
|
|
3533
|
+
result: BatchPayload
|
|
3534
|
+
}
|
|
3535
|
+
updateMany: {
|
|
3536
|
+
args: Prisma.RecordedCallUpdateManyArgs<ExtArgs>
|
|
3537
|
+
result: BatchPayload
|
|
3538
|
+
}
|
|
3539
|
+
upsert: {
|
|
3540
|
+
args: Prisma.RecordedCallUpsertArgs<ExtArgs>
|
|
3541
|
+
result: $Utils.PayloadToResult<Prisma.$RecordedCallPayload>
|
|
3542
|
+
}
|
|
3543
|
+
aggregate: {
|
|
3544
|
+
args: Prisma.RecordedCallAggregateArgs<ExtArgs>
|
|
3545
|
+
result: $Utils.Optional<AggregateRecordedCall>
|
|
3546
|
+
}
|
|
3547
|
+
groupBy: {
|
|
3548
|
+
args: Prisma.RecordedCallGroupByArgs<ExtArgs>
|
|
3549
|
+
result: $Utils.Optional<RecordedCallGroupByOutputType>[]
|
|
3550
|
+
}
|
|
3551
|
+
findRaw: {
|
|
3552
|
+
args: Prisma.RecordedCallFindRawArgs<ExtArgs>
|
|
3553
|
+
result: JsonObject
|
|
3554
|
+
}
|
|
3555
|
+
aggregateRaw: {
|
|
3556
|
+
args: Prisma.RecordedCallAggregateRawArgs<ExtArgs>
|
|
3557
|
+
result: JsonObject
|
|
3558
|
+
}
|
|
3559
|
+
count: {
|
|
3560
|
+
args: Prisma.RecordedCallCountArgs<ExtArgs>
|
|
3561
|
+
result: $Utils.Optional<RecordedCallCountAggregateOutputType> | number
|
|
3562
|
+
}
|
|
3563
|
+
}
|
|
3564
|
+
}
|
|
3458
3565
|
RoleCategory: {
|
|
3459
3566
|
payload: Prisma.$RoleCategoryPayload<ExtArgs>
|
|
3460
3567
|
fields: Prisma.RoleCategoryFieldRefs
|
|
@@ -9644,6 +9751,63 @@ export namespace Prisma {
|
|
|
9644
9751
|
}
|
|
9645
9752
|
|
|
9646
9753
|
|
|
9754
|
+
/**
|
|
9755
|
+
* Model CallParticipant
|
|
9756
|
+
*/
|
|
9757
|
+
|
|
9758
|
+
|
|
9759
|
+
|
|
9760
|
+
|
|
9761
|
+
|
|
9762
|
+
export type CallParticipantSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9763
|
+
name?: boolean
|
|
9764
|
+
email?: boolean
|
|
9765
|
+
}, ExtArgs["result"]["callParticipant"]>
|
|
9766
|
+
|
|
9767
|
+
|
|
9768
|
+
export type CallParticipantSelectScalar = {
|
|
9769
|
+
name?: boolean
|
|
9770
|
+
email?: boolean
|
|
9771
|
+
}
|
|
9772
|
+
|
|
9773
|
+
|
|
9774
|
+
export type $CallParticipantPayload = {
|
|
9775
|
+
name: "CallParticipant"
|
|
9776
|
+
objects: {}
|
|
9777
|
+
scalars: {
|
|
9778
|
+
name: string
|
|
9779
|
+
email: string
|
|
9780
|
+
}
|
|
9781
|
+
composites: {}
|
|
9782
|
+
}
|
|
9783
|
+
|
|
9784
|
+
type CallParticipantGetPayload<S extends boolean | null | undefined | CallParticipantDefaultArgs> = $Result.GetResult<Prisma.$CallParticipantPayload, S>
|
|
9785
|
+
|
|
9786
|
+
|
|
9787
|
+
|
|
9788
|
+
|
|
9789
|
+
|
|
9790
|
+
/**
|
|
9791
|
+
* Fields of the CallParticipant model
|
|
9792
|
+
*/
|
|
9793
|
+
interface CallParticipantFieldRefs {
|
|
9794
|
+
readonly name: FieldRef<"CallParticipant", 'String'>
|
|
9795
|
+
readonly email: FieldRef<"CallParticipant", 'String'>
|
|
9796
|
+
}
|
|
9797
|
+
|
|
9798
|
+
|
|
9799
|
+
// Custom InputTypes
|
|
9800
|
+
/**
|
|
9801
|
+
* CallParticipant without action
|
|
9802
|
+
*/
|
|
9803
|
+
export type CallParticipantDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9804
|
+
/**
|
|
9805
|
+
* Select specific fields to fetch from the CallParticipant
|
|
9806
|
+
*/
|
|
9807
|
+
select?: CallParticipantSelect<ExtArgs> | null
|
|
9808
|
+
}
|
|
9809
|
+
|
|
9810
|
+
|
|
9647
9811
|
/**
|
|
9648
9812
|
* Model Role
|
|
9649
9813
|
*/
|
|
@@ -31970,329 +32134,391 @@ export namespace Prisma {
|
|
|
31970
32134
|
|
|
31971
32135
|
|
|
31972
32136
|
/**
|
|
31973
|
-
* Model
|
|
32137
|
+
* Model RecordedCall
|
|
31974
32138
|
*/
|
|
31975
32139
|
|
|
31976
|
-
export type
|
|
31977
|
-
_count:
|
|
31978
|
-
_min:
|
|
31979
|
-
_max:
|
|
32140
|
+
export type AggregateRecordedCall = {
|
|
32141
|
+
_count: RecordedCallCountAggregateOutputType | null
|
|
32142
|
+
_min: RecordedCallMinAggregateOutputType | null
|
|
32143
|
+
_max: RecordedCallMaxAggregateOutputType | null
|
|
31980
32144
|
}
|
|
31981
32145
|
|
|
31982
|
-
export type
|
|
32146
|
+
export type RecordedCallMinAggregateOutputType = {
|
|
31983
32147
|
id: string | null
|
|
31984
|
-
|
|
31985
|
-
|
|
31986
|
-
|
|
32148
|
+
callMeetingTitle: string | null
|
|
32149
|
+
callUrl: string | null
|
|
32150
|
+
startTime: Date | null
|
|
32151
|
+
endTime: Date | null
|
|
32152
|
+
transcriptUrl: string | null
|
|
32153
|
+
recordedByName: string | null
|
|
32154
|
+
recordedByUrl: string | null
|
|
32155
|
+
platformRecordedOn: $Enums.PlatformRecordedOn | null
|
|
32156
|
+
createdAt: Date | null
|
|
32157
|
+
updatedAt: Date | null
|
|
31987
32158
|
}
|
|
31988
32159
|
|
|
31989
|
-
export type
|
|
32160
|
+
export type RecordedCallMaxAggregateOutputType = {
|
|
31990
32161
|
id: string | null
|
|
31991
|
-
|
|
31992
|
-
|
|
31993
|
-
|
|
32162
|
+
callMeetingTitle: string | null
|
|
32163
|
+
callUrl: string | null
|
|
32164
|
+
startTime: Date | null
|
|
32165
|
+
endTime: Date | null
|
|
32166
|
+
transcriptUrl: string | null
|
|
32167
|
+
recordedByName: string | null
|
|
32168
|
+
recordedByUrl: string | null
|
|
32169
|
+
platformRecordedOn: $Enums.PlatformRecordedOn | null
|
|
32170
|
+
createdAt: Date | null
|
|
32171
|
+
updatedAt: Date | null
|
|
31994
32172
|
}
|
|
31995
32173
|
|
|
31996
|
-
export type
|
|
32174
|
+
export type RecordedCallCountAggregateOutputType = {
|
|
31997
32175
|
id: number
|
|
31998
|
-
|
|
31999
|
-
|
|
32000
|
-
|
|
32001
|
-
|
|
32002
|
-
|
|
32176
|
+
callMeetingTitle: number
|
|
32177
|
+
callUrl: number
|
|
32178
|
+
startTime: number
|
|
32179
|
+
endTime: number
|
|
32180
|
+
transcriptUrl: number
|
|
32181
|
+
recordedByName: number
|
|
32182
|
+
recordedByUrl: number
|
|
32183
|
+
platformRecordedOn: number
|
|
32184
|
+
createdAt: number
|
|
32185
|
+
updatedAt: number
|
|
32003
32186
|
_all: number
|
|
32004
32187
|
}
|
|
32005
32188
|
|
|
32006
32189
|
|
|
32007
|
-
export type
|
|
32190
|
+
export type RecordedCallMinAggregateInputType = {
|
|
32008
32191
|
id?: true
|
|
32009
|
-
|
|
32010
|
-
|
|
32011
|
-
|
|
32192
|
+
callMeetingTitle?: true
|
|
32193
|
+
callUrl?: true
|
|
32194
|
+
startTime?: true
|
|
32195
|
+
endTime?: true
|
|
32196
|
+
transcriptUrl?: true
|
|
32197
|
+
recordedByName?: true
|
|
32198
|
+
recordedByUrl?: true
|
|
32199
|
+
platformRecordedOn?: true
|
|
32200
|
+
createdAt?: true
|
|
32201
|
+
updatedAt?: true
|
|
32012
32202
|
}
|
|
32013
32203
|
|
|
32014
|
-
export type
|
|
32204
|
+
export type RecordedCallMaxAggregateInputType = {
|
|
32015
32205
|
id?: true
|
|
32016
|
-
|
|
32017
|
-
|
|
32018
|
-
|
|
32206
|
+
callMeetingTitle?: true
|
|
32207
|
+
callUrl?: true
|
|
32208
|
+
startTime?: true
|
|
32209
|
+
endTime?: true
|
|
32210
|
+
transcriptUrl?: true
|
|
32211
|
+
recordedByName?: true
|
|
32212
|
+
recordedByUrl?: true
|
|
32213
|
+
platformRecordedOn?: true
|
|
32214
|
+
createdAt?: true
|
|
32215
|
+
updatedAt?: true
|
|
32019
32216
|
}
|
|
32020
32217
|
|
|
32021
|
-
export type
|
|
32218
|
+
export type RecordedCallCountAggregateInputType = {
|
|
32022
32219
|
id?: true
|
|
32023
|
-
|
|
32024
|
-
|
|
32025
|
-
|
|
32026
|
-
|
|
32027
|
-
|
|
32220
|
+
callMeetingTitle?: true
|
|
32221
|
+
callUrl?: true
|
|
32222
|
+
startTime?: true
|
|
32223
|
+
endTime?: true
|
|
32224
|
+
transcriptUrl?: true
|
|
32225
|
+
recordedByName?: true
|
|
32226
|
+
recordedByUrl?: true
|
|
32227
|
+
platformRecordedOn?: true
|
|
32228
|
+
createdAt?: true
|
|
32229
|
+
updatedAt?: true
|
|
32028
32230
|
_all?: true
|
|
32029
32231
|
}
|
|
32030
32232
|
|
|
32031
|
-
export type
|
|
32233
|
+
export type RecordedCallAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32032
32234
|
/**
|
|
32033
|
-
* Filter which
|
|
32235
|
+
* Filter which RecordedCall to aggregate.
|
|
32034
32236
|
*/
|
|
32035
|
-
where?:
|
|
32237
|
+
where?: RecordedCallWhereInput
|
|
32036
32238
|
/**
|
|
32037
32239
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
32038
32240
|
*
|
|
32039
|
-
* Determine the order of
|
|
32241
|
+
* Determine the order of RecordedCalls to fetch.
|
|
32040
32242
|
*/
|
|
32041
|
-
orderBy?:
|
|
32243
|
+
orderBy?: RecordedCallOrderByWithRelationInput | RecordedCallOrderByWithRelationInput[]
|
|
32042
32244
|
/**
|
|
32043
32245
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
32044
32246
|
*
|
|
32045
32247
|
* Sets the start position
|
|
32046
32248
|
*/
|
|
32047
|
-
cursor?:
|
|
32249
|
+
cursor?: RecordedCallWhereUniqueInput
|
|
32048
32250
|
/**
|
|
32049
32251
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32050
32252
|
*
|
|
32051
|
-
* Take `±n`
|
|
32253
|
+
* Take `±n` RecordedCalls from the position of the cursor.
|
|
32052
32254
|
*/
|
|
32053
32255
|
take?: number
|
|
32054
32256
|
/**
|
|
32055
32257
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32056
32258
|
*
|
|
32057
|
-
* Skip the first `n`
|
|
32259
|
+
* Skip the first `n` RecordedCalls.
|
|
32058
32260
|
*/
|
|
32059
32261
|
skip?: number
|
|
32060
32262
|
/**
|
|
32061
32263
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
32062
32264
|
*
|
|
32063
|
-
* Count returned
|
|
32265
|
+
* Count returned RecordedCalls
|
|
32064
32266
|
**/
|
|
32065
|
-
_count?: true |
|
|
32267
|
+
_count?: true | RecordedCallCountAggregateInputType
|
|
32066
32268
|
/**
|
|
32067
32269
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
32068
32270
|
*
|
|
32069
32271
|
* Select which fields to find the minimum value
|
|
32070
32272
|
**/
|
|
32071
|
-
_min?:
|
|
32273
|
+
_min?: RecordedCallMinAggregateInputType
|
|
32072
32274
|
/**
|
|
32073
32275
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
32074
32276
|
*
|
|
32075
32277
|
* Select which fields to find the maximum value
|
|
32076
32278
|
**/
|
|
32077
|
-
_max?:
|
|
32279
|
+
_max?: RecordedCallMaxAggregateInputType
|
|
32078
32280
|
}
|
|
32079
32281
|
|
|
32080
|
-
export type
|
|
32081
|
-
[P in keyof T & keyof
|
|
32282
|
+
export type GetRecordedCallAggregateType<T extends RecordedCallAggregateArgs> = {
|
|
32283
|
+
[P in keyof T & keyof AggregateRecordedCall]: P extends '_count' | 'count'
|
|
32082
32284
|
? T[P] extends true
|
|
32083
32285
|
? number
|
|
32084
|
-
: GetScalarType<T[P],
|
|
32085
|
-
: GetScalarType<T[P],
|
|
32286
|
+
: GetScalarType<T[P], AggregateRecordedCall[P]>
|
|
32287
|
+
: GetScalarType<T[P], AggregateRecordedCall[P]>
|
|
32086
32288
|
}
|
|
32087
32289
|
|
|
32088
32290
|
|
|
32089
32291
|
|
|
32090
32292
|
|
|
32091
|
-
export type
|
|
32092
|
-
where?:
|
|
32093
|
-
orderBy?:
|
|
32094
|
-
by:
|
|
32095
|
-
having?:
|
|
32293
|
+
export type RecordedCallGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32294
|
+
where?: RecordedCallWhereInput
|
|
32295
|
+
orderBy?: RecordedCallOrderByWithAggregationInput | RecordedCallOrderByWithAggregationInput[]
|
|
32296
|
+
by: RecordedCallScalarFieldEnum[] | RecordedCallScalarFieldEnum
|
|
32297
|
+
having?: RecordedCallScalarWhereWithAggregatesInput
|
|
32096
32298
|
take?: number
|
|
32097
32299
|
skip?: number
|
|
32098
|
-
_count?:
|
|
32099
|
-
_min?:
|
|
32100
|
-
_max?:
|
|
32300
|
+
_count?: RecordedCallCountAggregateInputType | true
|
|
32301
|
+
_min?: RecordedCallMinAggregateInputType
|
|
32302
|
+
_max?: RecordedCallMaxAggregateInputType
|
|
32101
32303
|
}
|
|
32102
32304
|
|
|
32103
|
-
export type
|
|
32305
|
+
export type RecordedCallGroupByOutputType = {
|
|
32104
32306
|
id: string
|
|
32105
|
-
|
|
32106
|
-
|
|
32107
|
-
|
|
32108
|
-
|
|
32109
|
-
|
|
32110
|
-
|
|
32111
|
-
|
|
32112
|
-
|
|
32307
|
+
callMeetingTitle: string
|
|
32308
|
+
callUrl: string
|
|
32309
|
+
startTime: Date
|
|
32310
|
+
endTime: Date
|
|
32311
|
+
transcriptUrl: string
|
|
32312
|
+
recordedByName: string
|
|
32313
|
+
recordedByUrl: string
|
|
32314
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
32315
|
+
createdAt: Date
|
|
32316
|
+
updatedAt: Date
|
|
32317
|
+
_count: RecordedCallCountAggregateOutputType | null
|
|
32318
|
+
_min: RecordedCallMinAggregateOutputType | null
|
|
32319
|
+
_max: RecordedCallMaxAggregateOutputType | null
|
|
32113
32320
|
}
|
|
32114
32321
|
|
|
32115
|
-
type
|
|
32322
|
+
type GetRecordedCallGroupByPayload<T extends RecordedCallGroupByArgs> = Prisma.PrismaPromise<
|
|
32116
32323
|
Array<
|
|
32117
|
-
PickEnumerable<
|
|
32324
|
+
PickEnumerable<RecordedCallGroupByOutputType, T['by']> &
|
|
32118
32325
|
{
|
|
32119
|
-
[P in ((keyof T) & (keyof
|
|
32326
|
+
[P in ((keyof T) & (keyof RecordedCallGroupByOutputType))]: P extends '_count'
|
|
32120
32327
|
? T[P] extends boolean
|
|
32121
32328
|
? number
|
|
32122
|
-
: GetScalarType<T[P],
|
|
32123
|
-
: GetScalarType<T[P],
|
|
32329
|
+
: GetScalarType<T[P], RecordedCallGroupByOutputType[P]>
|
|
32330
|
+
: GetScalarType<T[P], RecordedCallGroupByOutputType[P]>
|
|
32124
32331
|
}
|
|
32125
32332
|
>
|
|
32126
32333
|
>
|
|
32127
32334
|
|
|
32128
32335
|
|
|
32129
|
-
export type
|
|
32336
|
+
export type RecordedCallSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
32130
32337
|
id?: boolean
|
|
32131
|
-
|
|
32132
|
-
|
|
32133
|
-
|
|
32134
|
-
|
|
32135
|
-
|
|
32136
|
-
|
|
32338
|
+
callMeetingTitle?: boolean
|
|
32339
|
+
callUrl?: boolean
|
|
32340
|
+
startTime?: boolean
|
|
32341
|
+
endTime?: boolean
|
|
32342
|
+
transcriptUrl?: boolean
|
|
32343
|
+
participants?: boolean | CallParticipantDefaultArgs<ExtArgs>
|
|
32344
|
+
recordedByName?: boolean
|
|
32345
|
+
recordedByUrl?: boolean
|
|
32346
|
+
platformRecordedOn?: boolean
|
|
32347
|
+
createdAt?: boolean
|
|
32348
|
+
updatedAt?: boolean
|
|
32349
|
+
}, ExtArgs["result"]["recordedCall"]>
|
|
32137
32350
|
|
|
32138
32351
|
|
|
32139
|
-
export type
|
|
32352
|
+
export type RecordedCallSelectScalar = {
|
|
32140
32353
|
id?: boolean
|
|
32141
|
-
|
|
32142
|
-
|
|
32143
|
-
|
|
32144
|
-
|
|
32145
|
-
|
|
32354
|
+
callMeetingTitle?: boolean
|
|
32355
|
+
callUrl?: boolean
|
|
32356
|
+
startTime?: boolean
|
|
32357
|
+
endTime?: boolean
|
|
32358
|
+
transcriptUrl?: boolean
|
|
32359
|
+
recordedByName?: boolean
|
|
32360
|
+
recordedByUrl?: boolean
|
|
32361
|
+
platformRecordedOn?: boolean
|
|
32362
|
+
createdAt?: boolean
|
|
32363
|
+
updatedAt?: boolean
|
|
32146
32364
|
}
|
|
32147
32365
|
|
|
32366
|
+
export type RecordedCallInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
32148
32367
|
|
|
32149
|
-
export type $
|
|
32150
|
-
name: "
|
|
32368
|
+
export type $RecordedCallPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32369
|
+
name: "RecordedCall"
|
|
32151
32370
|
objects: {}
|
|
32152
32371
|
scalars: $Extensions.GetPayloadResult<{
|
|
32153
32372
|
id: string
|
|
32154
|
-
|
|
32155
|
-
|
|
32156
|
-
|
|
32157
|
-
|
|
32158
|
-
|
|
32159
|
-
|
|
32160
|
-
|
|
32373
|
+
callMeetingTitle: string
|
|
32374
|
+
callUrl: string
|
|
32375
|
+
startTime: Date
|
|
32376
|
+
endTime: Date
|
|
32377
|
+
transcriptUrl: string
|
|
32378
|
+
recordedByName: string
|
|
32379
|
+
recordedByUrl: string
|
|
32380
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
32381
|
+
createdAt: Date
|
|
32382
|
+
updatedAt: Date
|
|
32383
|
+
}, ExtArgs["result"]["recordedCall"]>
|
|
32384
|
+
composites: {
|
|
32385
|
+
participants: Prisma.$CallParticipantPayload[]
|
|
32386
|
+
}
|
|
32161
32387
|
}
|
|
32162
32388
|
|
|
32163
|
-
type
|
|
32389
|
+
type RecordedCallGetPayload<S extends boolean | null | undefined | RecordedCallDefaultArgs> = $Result.GetResult<Prisma.$RecordedCallPayload, S>
|
|
32164
32390
|
|
|
32165
|
-
type
|
|
32166
|
-
Omit<
|
|
32167
|
-
select?:
|
|
32391
|
+
type RecordedCallCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
32392
|
+
Omit<RecordedCallFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
32393
|
+
select?: RecordedCallCountAggregateInputType | true
|
|
32168
32394
|
}
|
|
32169
32395
|
|
|
32170
|
-
export interface
|
|
32171
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
32396
|
+
export interface RecordedCallDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
32397
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['RecordedCall'], meta: { name: 'RecordedCall' } }
|
|
32172
32398
|
/**
|
|
32173
|
-
* Find zero or one
|
|
32174
|
-
* @param {
|
|
32399
|
+
* Find zero or one RecordedCall that matches the filter.
|
|
32400
|
+
* @param {RecordedCallFindUniqueArgs} args - Arguments to find a RecordedCall
|
|
32175
32401
|
* @example
|
|
32176
|
-
* // Get one
|
|
32177
|
-
* const
|
|
32402
|
+
* // Get one RecordedCall
|
|
32403
|
+
* const recordedCall = await prisma.recordedCall.findUnique({
|
|
32178
32404
|
* where: {
|
|
32179
32405
|
* // ... provide filter here
|
|
32180
32406
|
* }
|
|
32181
32407
|
* })
|
|
32182
32408
|
*/
|
|
32183
|
-
findUnique<T extends
|
|
32409
|
+
findUnique<T extends RecordedCallFindUniqueArgs>(args: SelectSubset<T, RecordedCallFindUniqueArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
32184
32410
|
|
|
32185
32411
|
/**
|
|
32186
|
-
* Find one
|
|
32412
|
+
* Find one RecordedCall that matches the filter or throw an error with `error.code='P2025'`
|
|
32187
32413
|
* if no matches were found.
|
|
32188
|
-
* @param {
|
|
32414
|
+
* @param {RecordedCallFindUniqueOrThrowArgs} args - Arguments to find a RecordedCall
|
|
32189
32415
|
* @example
|
|
32190
|
-
* // Get one
|
|
32191
|
-
* const
|
|
32416
|
+
* // Get one RecordedCall
|
|
32417
|
+
* const recordedCall = await prisma.recordedCall.findUniqueOrThrow({
|
|
32192
32418
|
* where: {
|
|
32193
32419
|
* // ... provide filter here
|
|
32194
32420
|
* }
|
|
32195
32421
|
* })
|
|
32196
32422
|
*/
|
|
32197
|
-
findUniqueOrThrow<T extends
|
|
32423
|
+
findUniqueOrThrow<T extends RecordedCallFindUniqueOrThrowArgs>(args: SelectSubset<T, RecordedCallFindUniqueOrThrowArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
32198
32424
|
|
|
32199
32425
|
/**
|
|
32200
|
-
* Find the first
|
|
32426
|
+
* Find the first RecordedCall that matches the filter.
|
|
32201
32427
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32202
32428
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32203
|
-
* @param {
|
|
32429
|
+
* @param {RecordedCallFindFirstArgs} args - Arguments to find a RecordedCall
|
|
32204
32430
|
* @example
|
|
32205
|
-
* // Get one
|
|
32206
|
-
* const
|
|
32431
|
+
* // Get one RecordedCall
|
|
32432
|
+
* const recordedCall = await prisma.recordedCall.findFirst({
|
|
32207
32433
|
* where: {
|
|
32208
32434
|
* // ... provide filter here
|
|
32209
32435
|
* }
|
|
32210
32436
|
* })
|
|
32211
32437
|
*/
|
|
32212
|
-
findFirst<T extends
|
|
32438
|
+
findFirst<T extends RecordedCallFindFirstArgs>(args?: SelectSubset<T, RecordedCallFindFirstArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
32213
32439
|
|
|
32214
32440
|
/**
|
|
32215
|
-
* Find the first
|
|
32441
|
+
* Find the first RecordedCall that matches the filter or
|
|
32216
32442
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
32217
32443
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32218
32444
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32219
|
-
* @param {
|
|
32445
|
+
* @param {RecordedCallFindFirstOrThrowArgs} args - Arguments to find a RecordedCall
|
|
32220
32446
|
* @example
|
|
32221
|
-
* // Get one
|
|
32222
|
-
* const
|
|
32447
|
+
* // Get one RecordedCall
|
|
32448
|
+
* const recordedCall = await prisma.recordedCall.findFirstOrThrow({
|
|
32223
32449
|
* where: {
|
|
32224
32450
|
* // ... provide filter here
|
|
32225
32451
|
* }
|
|
32226
32452
|
* })
|
|
32227
32453
|
*/
|
|
32228
|
-
findFirstOrThrow<T extends
|
|
32454
|
+
findFirstOrThrow<T extends RecordedCallFindFirstOrThrowArgs>(args?: SelectSubset<T, RecordedCallFindFirstOrThrowArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
32229
32455
|
|
|
32230
32456
|
/**
|
|
32231
|
-
* Find zero or more
|
|
32457
|
+
* Find zero or more RecordedCalls that matches the filter.
|
|
32232
32458
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32233
32459
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32234
|
-
* @param {
|
|
32460
|
+
* @param {RecordedCallFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
32235
32461
|
* @example
|
|
32236
|
-
* // Get all
|
|
32237
|
-
* const
|
|
32462
|
+
* // Get all RecordedCalls
|
|
32463
|
+
* const recordedCalls = await prisma.recordedCall.findMany()
|
|
32238
32464
|
*
|
|
32239
|
-
* // Get first 10
|
|
32240
|
-
* const
|
|
32465
|
+
* // Get first 10 RecordedCalls
|
|
32466
|
+
* const recordedCalls = await prisma.recordedCall.findMany({ take: 10 })
|
|
32241
32467
|
*
|
|
32242
32468
|
* // Only select the `id`
|
|
32243
|
-
* const
|
|
32469
|
+
* const recordedCallWithIdOnly = await prisma.recordedCall.findMany({ select: { id: true } })
|
|
32244
32470
|
*
|
|
32245
32471
|
*/
|
|
32246
|
-
findMany<T extends
|
|
32472
|
+
findMany<T extends RecordedCallFindManyArgs>(args?: SelectSubset<T, RecordedCallFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findMany">>
|
|
32247
32473
|
|
|
32248
32474
|
/**
|
|
32249
|
-
* Create a
|
|
32250
|
-
* @param {
|
|
32475
|
+
* Create a RecordedCall.
|
|
32476
|
+
* @param {RecordedCallCreateArgs} args - Arguments to create a RecordedCall.
|
|
32251
32477
|
* @example
|
|
32252
|
-
* // Create one
|
|
32253
|
-
* const
|
|
32478
|
+
* // Create one RecordedCall
|
|
32479
|
+
* const RecordedCall = await prisma.recordedCall.create({
|
|
32254
32480
|
* data: {
|
|
32255
|
-
* // ... data to create a
|
|
32481
|
+
* // ... data to create a RecordedCall
|
|
32256
32482
|
* }
|
|
32257
32483
|
* })
|
|
32258
32484
|
*
|
|
32259
32485
|
*/
|
|
32260
|
-
create<T extends
|
|
32486
|
+
create<T extends RecordedCallCreateArgs>(args: SelectSubset<T, RecordedCallCreateArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
32261
32487
|
|
|
32262
32488
|
/**
|
|
32263
|
-
* Create many
|
|
32264
|
-
* @param {
|
|
32489
|
+
* Create many RecordedCalls.
|
|
32490
|
+
* @param {RecordedCallCreateManyArgs} args - Arguments to create many RecordedCalls.
|
|
32265
32491
|
* @example
|
|
32266
|
-
* // Create many
|
|
32267
|
-
* const
|
|
32492
|
+
* // Create many RecordedCalls
|
|
32493
|
+
* const recordedCall = await prisma.recordedCall.createMany({
|
|
32268
32494
|
* data: [
|
|
32269
32495
|
* // ... provide data here
|
|
32270
32496
|
* ]
|
|
32271
32497
|
* })
|
|
32272
32498
|
*
|
|
32273
32499
|
*/
|
|
32274
|
-
createMany<T extends
|
|
32500
|
+
createMany<T extends RecordedCallCreateManyArgs>(args?: SelectSubset<T, RecordedCallCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
32275
32501
|
|
|
32276
32502
|
/**
|
|
32277
|
-
* Delete a
|
|
32278
|
-
* @param {
|
|
32503
|
+
* Delete a RecordedCall.
|
|
32504
|
+
* @param {RecordedCallDeleteArgs} args - Arguments to delete one RecordedCall.
|
|
32279
32505
|
* @example
|
|
32280
|
-
* // Delete one
|
|
32281
|
-
* const
|
|
32506
|
+
* // Delete one RecordedCall
|
|
32507
|
+
* const RecordedCall = await prisma.recordedCall.delete({
|
|
32282
32508
|
* where: {
|
|
32283
|
-
* // ... filter to delete one
|
|
32509
|
+
* // ... filter to delete one RecordedCall
|
|
32284
32510
|
* }
|
|
32285
32511
|
* })
|
|
32286
32512
|
*
|
|
32287
32513
|
*/
|
|
32288
|
-
delete<T extends
|
|
32514
|
+
delete<T extends RecordedCallDeleteArgs>(args: SelectSubset<T, RecordedCallDeleteArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
32289
32515
|
|
|
32290
32516
|
/**
|
|
32291
|
-
* Update one
|
|
32292
|
-
* @param {
|
|
32517
|
+
* Update one RecordedCall.
|
|
32518
|
+
* @param {RecordedCallUpdateArgs} args - Arguments to update one RecordedCall.
|
|
32293
32519
|
* @example
|
|
32294
|
-
* // Update one
|
|
32295
|
-
* const
|
|
32520
|
+
* // Update one RecordedCall
|
|
32521
|
+
* const recordedCall = await prisma.recordedCall.update({
|
|
32296
32522
|
* where: {
|
|
32297
32523
|
* // ... provide filter here
|
|
32298
32524
|
* },
|
|
@@ -32302,30 +32528,30 @@ export namespace Prisma {
|
|
|
32302
32528
|
* })
|
|
32303
32529
|
*
|
|
32304
32530
|
*/
|
|
32305
|
-
update<T extends
|
|
32531
|
+
update<T extends RecordedCallUpdateArgs>(args: SelectSubset<T, RecordedCallUpdateArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
32306
32532
|
|
|
32307
32533
|
/**
|
|
32308
|
-
* Delete zero or more
|
|
32309
|
-
* @param {
|
|
32534
|
+
* Delete zero or more RecordedCalls.
|
|
32535
|
+
* @param {RecordedCallDeleteManyArgs} args - Arguments to filter RecordedCalls to delete.
|
|
32310
32536
|
* @example
|
|
32311
|
-
* // Delete a few
|
|
32312
|
-
* const { count } = await prisma.
|
|
32537
|
+
* // Delete a few RecordedCalls
|
|
32538
|
+
* const { count } = await prisma.recordedCall.deleteMany({
|
|
32313
32539
|
* where: {
|
|
32314
32540
|
* // ... provide filter here
|
|
32315
32541
|
* }
|
|
32316
32542
|
* })
|
|
32317
32543
|
*
|
|
32318
32544
|
*/
|
|
32319
|
-
deleteMany<T extends
|
|
32545
|
+
deleteMany<T extends RecordedCallDeleteManyArgs>(args?: SelectSubset<T, RecordedCallDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
32320
32546
|
|
|
32321
32547
|
/**
|
|
32322
|
-
* Update zero or more
|
|
32548
|
+
* Update zero or more RecordedCalls.
|
|
32323
32549
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32324
32550
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32325
|
-
* @param {
|
|
32551
|
+
* @param {RecordedCallUpdateManyArgs} args - Arguments to update one or more rows.
|
|
32326
32552
|
* @example
|
|
32327
|
-
* // Update many
|
|
32328
|
-
* const
|
|
32553
|
+
* // Update many RecordedCalls
|
|
32554
|
+
* const recordedCall = await prisma.recordedCall.updateMany({
|
|
32329
32555
|
* where: {
|
|
32330
32556
|
* // ... provide filter here
|
|
32331
32557
|
* },
|
|
@@ -32335,79 +32561,79 @@ export namespace Prisma {
|
|
|
32335
32561
|
* })
|
|
32336
32562
|
*
|
|
32337
32563
|
*/
|
|
32338
|
-
updateMany<T extends
|
|
32564
|
+
updateMany<T extends RecordedCallUpdateManyArgs>(args: SelectSubset<T, RecordedCallUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
32339
32565
|
|
|
32340
32566
|
/**
|
|
32341
|
-
* Create or update one
|
|
32342
|
-
* @param {
|
|
32567
|
+
* Create or update one RecordedCall.
|
|
32568
|
+
* @param {RecordedCallUpsertArgs} args - Arguments to update or create a RecordedCall.
|
|
32343
32569
|
* @example
|
|
32344
|
-
* // Update or create a
|
|
32345
|
-
* const
|
|
32570
|
+
* // Update or create a RecordedCall
|
|
32571
|
+
* const recordedCall = await prisma.recordedCall.upsert({
|
|
32346
32572
|
* create: {
|
|
32347
|
-
* // ... data to create a
|
|
32573
|
+
* // ... data to create a RecordedCall
|
|
32348
32574
|
* },
|
|
32349
32575
|
* update: {
|
|
32350
32576
|
* // ... in case it already exists, update
|
|
32351
32577
|
* },
|
|
32352
32578
|
* where: {
|
|
32353
|
-
* // ... the filter for the
|
|
32579
|
+
* // ... the filter for the RecordedCall we want to update
|
|
32354
32580
|
* }
|
|
32355
32581
|
* })
|
|
32356
32582
|
*/
|
|
32357
|
-
upsert<T extends
|
|
32583
|
+
upsert<T extends RecordedCallUpsertArgs>(args: SelectSubset<T, RecordedCallUpsertArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
32358
32584
|
|
|
32359
32585
|
/**
|
|
32360
|
-
* Find zero or more
|
|
32361
|
-
* @param {
|
|
32586
|
+
* Find zero or more RecordedCalls that matches the filter.
|
|
32587
|
+
* @param {RecordedCallFindRawArgs} args - Select which filters you would like to apply.
|
|
32362
32588
|
* @example
|
|
32363
|
-
* const
|
|
32589
|
+
* const recordedCall = await prisma.recordedCall.findRaw({
|
|
32364
32590
|
* filter: { age: { $gt: 25 } }
|
|
32365
32591
|
* })
|
|
32366
32592
|
*/
|
|
32367
|
-
findRaw(args?:
|
|
32593
|
+
findRaw(args?: RecordedCallFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
32368
32594
|
|
|
32369
32595
|
/**
|
|
32370
|
-
* Perform aggregation operations on a
|
|
32371
|
-
* @param {
|
|
32596
|
+
* Perform aggregation operations on a RecordedCall.
|
|
32597
|
+
* @param {RecordedCallAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
32372
32598
|
* @example
|
|
32373
|
-
* const
|
|
32599
|
+
* const recordedCall = await prisma.recordedCall.aggregateRaw({
|
|
32374
32600
|
* pipeline: [
|
|
32375
32601
|
* { $match: { status: "registered" } },
|
|
32376
32602
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
32377
32603
|
* ]
|
|
32378
32604
|
* })
|
|
32379
32605
|
*/
|
|
32380
|
-
aggregateRaw(args?:
|
|
32606
|
+
aggregateRaw(args?: RecordedCallAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
32381
32607
|
|
|
32382
32608
|
|
|
32383
32609
|
/**
|
|
32384
|
-
* Count the number of
|
|
32610
|
+
* Count the number of RecordedCalls.
|
|
32385
32611
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32386
32612
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32387
|
-
* @param {
|
|
32613
|
+
* @param {RecordedCallCountArgs} args - Arguments to filter RecordedCalls to count.
|
|
32388
32614
|
* @example
|
|
32389
|
-
* // Count the number of
|
|
32390
|
-
* const count = await prisma.
|
|
32615
|
+
* // Count the number of RecordedCalls
|
|
32616
|
+
* const count = await prisma.recordedCall.count({
|
|
32391
32617
|
* where: {
|
|
32392
|
-
* // ... the filter for the
|
|
32618
|
+
* // ... the filter for the RecordedCalls we want to count
|
|
32393
32619
|
* }
|
|
32394
32620
|
* })
|
|
32395
32621
|
**/
|
|
32396
|
-
count<T extends
|
|
32397
|
-
args?: Subset<T,
|
|
32622
|
+
count<T extends RecordedCallCountArgs>(
|
|
32623
|
+
args?: Subset<T, RecordedCallCountArgs>,
|
|
32398
32624
|
): Prisma.PrismaPromise<
|
|
32399
32625
|
T extends $Utils.Record<'select', any>
|
|
32400
32626
|
? T['select'] extends true
|
|
32401
32627
|
? number
|
|
32402
|
-
: GetScalarType<T['select'],
|
|
32628
|
+
: GetScalarType<T['select'], RecordedCallCountAggregateOutputType>
|
|
32403
32629
|
: number
|
|
32404
32630
|
>
|
|
32405
32631
|
|
|
32406
32632
|
/**
|
|
32407
|
-
* Allows you to perform aggregations operations on a
|
|
32633
|
+
* Allows you to perform aggregations operations on a RecordedCall.
|
|
32408
32634
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32409
32635
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32410
|
-
* @param {
|
|
32636
|
+
* @param {RecordedCallAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
32411
32637
|
* @example
|
|
32412
32638
|
* // Ordered by age ascending
|
|
32413
32639
|
* // Where email contains prisma.io
|
|
@@ -32427,13 +32653,13 @@ export namespace Prisma {
|
|
|
32427
32653
|
* take: 10,
|
|
32428
32654
|
* })
|
|
32429
32655
|
**/
|
|
32430
|
-
aggregate<T extends
|
|
32656
|
+
aggregate<T extends RecordedCallAggregateArgs>(args: Subset<T, RecordedCallAggregateArgs>): Prisma.PrismaPromise<GetRecordedCallAggregateType<T>>
|
|
32431
32657
|
|
|
32432
32658
|
/**
|
|
32433
|
-
* Group by
|
|
32659
|
+
* Group by RecordedCall.
|
|
32434
32660
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
32435
32661
|
* Read more here: https://pris.ly/d/null-undefined
|
|
32436
|
-
* @param {
|
|
32662
|
+
* @param {RecordedCallGroupByArgs} args - Group by arguments.
|
|
32437
32663
|
* @example
|
|
32438
32664
|
* // Group by city, order by createdAt, get count
|
|
32439
32665
|
* const result = await prisma.user.groupBy({
|
|
@@ -32448,14 +32674,944 @@ export namespace Prisma {
|
|
|
32448
32674
|
*
|
|
32449
32675
|
**/
|
|
32450
32676
|
groupBy<
|
|
32451
|
-
T extends
|
|
32677
|
+
T extends RecordedCallGroupByArgs,
|
|
32452
32678
|
HasSelectOrTake extends Or<
|
|
32453
32679
|
Extends<'skip', Keys<T>>,
|
|
32454
32680
|
Extends<'take', Keys<T>>
|
|
32455
32681
|
>,
|
|
32456
32682
|
OrderByArg extends True extends HasSelectOrTake
|
|
32457
|
-
? { orderBy:
|
|
32458
|
-
: { orderBy?:
|
|
32683
|
+
? { orderBy: RecordedCallGroupByArgs['orderBy'] }
|
|
32684
|
+
: { orderBy?: RecordedCallGroupByArgs['orderBy'] },
|
|
32685
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
32686
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
32687
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
32688
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
32689
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
32690
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
32691
|
+
InputErrors extends ByEmpty extends True
|
|
32692
|
+
? `Error: "by" must not be empty.`
|
|
32693
|
+
: HavingValid extends False
|
|
32694
|
+
? {
|
|
32695
|
+
[P in HavingFields]: P extends ByFields
|
|
32696
|
+
? never
|
|
32697
|
+
: P extends string
|
|
32698
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
32699
|
+
: [
|
|
32700
|
+
Error,
|
|
32701
|
+
'Field ',
|
|
32702
|
+
P,
|
|
32703
|
+
` in "having" needs to be provided in "by"`,
|
|
32704
|
+
]
|
|
32705
|
+
}[HavingFields]
|
|
32706
|
+
: 'take' extends Keys<T>
|
|
32707
|
+
? 'orderBy' extends Keys<T>
|
|
32708
|
+
? ByValid extends True
|
|
32709
|
+
? {}
|
|
32710
|
+
: {
|
|
32711
|
+
[P in OrderFields]: P extends ByFields
|
|
32712
|
+
? never
|
|
32713
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
32714
|
+
}[OrderFields]
|
|
32715
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
32716
|
+
: 'skip' extends Keys<T>
|
|
32717
|
+
? 'orderBy' extends Keys<T>
|
|
32718
|
+
? ByValid extends True
|
|
32719
|
+
? {}
|
|
32720
|
+
: {
|
|
32721
|
+
[P in OrderFields]: P extends ByFields
|
|
32722
|
+
? never
|
|
32723
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
32724
|
+
}[OrderFields]
|
|
32725
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
32726
|
+
: ByValid extends True
|
|
32727
|
+
? {}
|
|
32728
|
+
: {
|
|
32729
|
+
[P in OrderFields]: P extends ByFields
|
|
32730
|
+
? never
|
|
32731
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
32732
|
+
}[OrderFields]
|
|
32733
|
+
>(args: SubsetIntersection<T, RecordedCallGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetRecordedCallGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
32734
|
+
/**
|
|
32735
|
+
* Fields of the RecordedCall model
|
|
32736
|
+
*/
|
|
32737
|
+
readonly fields: RecordedCallFieldRefs;
|
|
32738
|
+
}
|
|
32739
|
+
|
|
32740
|
+
/**
|
|
32741
|
+
* The delegate class that acts as a "Promise-like" for RecordedCall.
|
|
32742
|
+
* Why is this prefixed with `Prisma__`?
|
|
32743
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
32744
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
32745
|
+
*/
|
|
32746
|
+
export interface Prisma__RecordedCallClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
32747
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
32748
|
+
/**
|
|
32749
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
32750
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
32751
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
32752
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
32753
|
+
*/
|
|
32754
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
32755
|
+
/**
|
|
32756
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
32757
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
32758
|
+
* @returns A Promise for the completion of the callback.
|
|
32759
|
+
*/
|
|
32760
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
32761
|
+
/**
|
|
32762
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
32763
|
+
* resolved value cannot be modified from the callback.
|
|
32764
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
32765
|
+
* @returns A Promise for the completion of the callback.
|
|
32766
|
+
*/
|
|
32767
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
32768
|
+
}
|
|
32769
|
+
|
|
32770
|
+
|
|
32771
|
+
|
|
32772
|
+
|
|
32773
|
+
/**
|
|
32774
|
+
* Fields of the RecordedCall model
|
|
32775
|
+
*/
|
|
32776
|
+
interface RecordedCallFieldRefs {
|
|
32777
|
+
readonly id: FieldRef<"RecordedCall", 'String'>
|
|
32778
|
+
readonly callMeetingTitle: FieldRef<"RecordedCall", 'String'>
|
|
32779
|
+
readonly callUrl: FieldRef<"RecordedCall", 'String'>
|
|
32780
|
+
readonly startTime: FieldRef<"RecordedCall", 'DateTime'>
|
|
32781
|
+
readonly endTime: FieldRef<"RecordedCall", 'DateTime'>
|
|
32782
|
+
readonly transcriptUrl: FieldRef<"RecordedCall", 'String'>
|
|
32783
|
+
readonly recordedByName: FieldRef<"RecordedCall", 'String'>
|
|
32784
|
+
readonly recordedByUrl: FieldRef<"RecordedCall", 'String'>
|
|
32785
|
+
readonly platformRecordedOn: FieldRef<"RecordedCall", 'PlatformRecordedOn'>
|
|
32786
|
+
readonly createdAt: FieldRef<"RecordedCall", 'DateTime'>
|
|
32787
|
+
readonly updatedAt: FieldRef<"RecordedCall", 'DateTime'>
|
|
32788
|
+
}
|
|
32789
|
+
|
|
32790
|
+
|
|
32791
|
+
// Custom InputTypes
|
|
32792
|
+
/**
|
|
32793
|
+
* RecordedCall findUnique
|
|
32794
|
+
*/
|
|
32795
|
+
export type RecordedCallFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32796
|
+
/**
|
|
32797
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32798
|
+
*/
|
|
32799
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32800
|
+
/**
|
|
32801
|
+
* Choose, which related nodes to fetch as well
|
|
32802
|
+
*/
|
|
32803
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32804
|
+
/**
|
|
32805
|
+
* Filter, which RecordedCall to fetch.
|
|
32806
|
+
*/
|
|
32807
|
+
where: RecordedCallWhereUniqueInput
|
|
32808
|
+
}
|
|
32809
|
+
|
|
32810
|
+
/**
|
|
32811
|
+
* RecordedCall findUniqueOrThrow
|
|
32812
|
+
*/
|
|
32813
|
+
export type RecordedCallFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32814
|
+
/**
|
|
32815
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32816
|
+
*/
|
|
32817
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32818
|
+
/**
|
|
32819
|
+
* Choose, which related nodes to fetch as well
|
|
32820
|
+
*/
|
|
32821
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32822
|
+
/**
|
|
32823
|
+
* Filter, which RecordedCall to fetch.
|
|
32824
|
+
*/
|
|
32825
|
+
where: RecordedCallWhereUniqueInput
|
|
32826
|
+
}
|
|
32827
|
+
|
|
32828
|
+
/**
|
|
32829
|
+
* RecordedCall findFirst
|
|
32830
|
+
*/
|
|
32831
|
+
export type RecordedCallFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32832
|
+
/**
|
|
32833
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32834
|
+
*/
|
|
32835
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32836
|
+
/**
|
|
32837
|
+
* Choose, which related nodes to fetch as well
|
|
32838
|
+
*/
|
|
32839
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32840
|
+
/**
|
|
32841
|
+
* Filter, which RecordedCall to fetch.
|
|
32842
|
+
*/
|
|
32843
|
+
where?: RecordedCallWhereInput
|
|
32844
|
+
/**
|
|
32845
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
32846
|
+
*
|
|
32847
|
+
* Determine the order of RecordedCalls to fetch.
|
|
32848
|
+
*/
|
|
32849
|
+
orderBy?: RecordedCallOrderByWithRelationInput | RecordedCallOrderByWithRelationInput[]
|
|
32850
|
+
/**
|
|
32851
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
32852
|
+
*
|
|
32853
|
+
* Sets the position for searching for RecordedCalls.
|
|
32854
|
+
*/
|
|
32855
|
+
cursor?: RecordedCallWhereUniqueInput
|
|
32856
|
+
/**
|
|
32857
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32858
|
+
*
|
|
32859
|
+
* Take `±n` RecordedCalls from the position of the cursor.
|
|
32860
|
+
*/
|
|
32861
|
+
take?: number
|
|
32862
|
+
/**
|
|
32863
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32864
|
+
*
|
|
32865
|
+
* Skip the first `n` RecordedCalls.
|
|
32866
|
+
*/
|
|
32867
|
+
skip?: number
|
|
32868
|
+
/**
|
|
32869
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
32870
|
+
*
|
|
32871
|
+
* Filter by unique combinations of RecordedCalls.
|
|
32872
|
+
*/
|
|
32873
|
+
distinct?: RecordedCallScalarFieldEnum | RecordedCallScalarFieldEnum[]
|
|
32874
|
+
}
|
|
32875
|
+
|
|
32876
|
+
/**
|
|
32877
|
+
* RecordedCall findFirstOrThrow
|
|
32878
|
+
*/
|
|
32879
|
+
export type RecordedCallFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32880
|
+
/**
|
|
32881
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32882
|
+
*/
|
|
32883
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32884
|
+
/**
|
|
32885
|
+
* Choose, which related nodes to fetch as well
|
|
32886
|
+
*/
|
|
32887
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32888
|
+
/**
|
|
32889
|
+
* Filter, which RecordedCall to fetch.
|
|
32890
|
+
*/
|
|
32891
|
+
where?: RecordedCallWhereInput
|
|
32892
|
+
/**
|
|
32893
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
32894
|
+
*
|
|
32895
|
+
* Determine the order of RecordedCalls to fetch.
|
|
32896
|
+
*/
|
|
32897
|
+
orderBy?: RecordedCallOrderByWithRelationInput | RecordedCallOrderByWithRelationInput[]
|
|
32898
|
+
/**
|
|
32899
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
32900
|
+
*
|
|
32901
|
+
* Sets the position for searching for RecordedCalls.
|
|
32902
|
+
*/
|
|
32903
|
+
cursor?: RecordedCallWhereUniqueInput
|
|
32904
|
+
/**
|
|
32905
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32906
|
+
*
|
|
32907
|
+
* Take `±n` RecordedCalls from the position of the cursor.
|
|
32908
|
+
*/
|
|
32909
|
+
take?: number
|
|
32910
|
+
/**
|
|
32911
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32912
|
+
*
|
|
32913
|
+
* Skip the first `n` RecordedCalls.
|
|
32914
|
+
*/
|
|
32915
|
+
skip?: number
|
|
32916
|
+
/**
|
|
32917
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
32918
|
+
*
|
|
32919
|
+
* Filter by unique combinations of RecordedCalls.
|
|
32920
|
+
*/
|
|
32921
|
+
distinct?: RecordedCallScalarFieldEnum | RecordedCallScalarFieldEnum[]
|
|
32922
|
+
}
|
|
32923
|
+
|
|
32924
|
+
/**
|
|
32925
|
+
* RecordedCall findMany
|
|
32926
|
+
*/
|
|
32927
|
+
export type RecordedCallFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32928
|
+
/**
|
|
32929
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32930
|
+
*/
|
|
32931
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32932
|
+
/**
|
|
32933
|
+
* Choose, which related nodes to fetch as well
|
|
32934
|
+
*/
|
|
32935
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32936
|
+
/**
|
|
32937
|
+
* Filter, which RecordedCalls to fetch.
|
|
32938
|
+
*/
|
|
32939
|
+
where?: RecordedCallWhereInput
|
|
32940
|
+
/**
|
|
32941
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
32942
|
+
*
|
|
32943
|
+
* Determine the order of RecordedCalls to fetch.
|
|
32944
|
+
*/
|
|
32945
|
+
orderBy?: RecordedCallOrderByWithRelationInput | RecordedCallOrderByWithRelationInput[]
|
|
32946
|
+
/**
|
|
32947
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
32948
|
+
*
|
|
32949
|
+
* Sets the position for listing RecordedCalls.
|
|
32950
|
+
*/
|
|
32951
|
+
cursor?: RecordedCallWhereUniqueInput
|
|
32952
|
+
/**
|
|
32953
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32954
|
+
*
|
|
32955
|
+
* Take `±n` RecordedCalls from the position of the cursor.
|
|
32956
|
+
*/
|
|
32957
|
+
take?: number
|
|
32958
|
+
/**
|
|
32959
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
32960
|
+
*
|
|
32961
|
+
* Skip the first `n` RecordedCalls.
|
|
32962
|
+
*/
|
|
32963
|
+
skip?: number
|
|
32964
|
+
distinct?: RecordedCallScalarFieldEnum | RecordedCallScalarFieldEnum[]
|
|
32965
|
+
}
|
|
32966
|
+
|
|
32967
|
+
/**
|
|
32968
|
+
* RecordedCall create
|
|
32969
|
+
*/
|
|
32970
|
+
export type RecordedCallCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32971
|
+
/**
|
|
32972
|
+
* Select specific fields to fetch from the RecordedCall
|
|
32973
|
+
*/
|
|
32974
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
32975
|
+
/**
|
|
32976
|
+
* Choose, which related nodes to fetch as well
|
|
32977
|
+
*/
|
|
32978
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
32979
|
+
/**
|
|
32980
|
+
* The data needed to create a RecordedCall.
|
|
32981
|
+
*/
|
|
32982
|
+
data: XOR<RecordedCallCreateInput, RecordedCallUncheckedCreateInput>
|
|
32983
|
+
}
|
|
32984
|
+
|
|
32985
|
+
/**
|
|
32986
|
+
* RecordedCall createMany
|
|
32987
|
+
*/
|
|
32988
|
+
export type RecordedCallCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32989
|
+
/**
|
|
32990
|
+
* The data used to create many RecordedCalls.
|
|
32991
|
+
*/
|
|
32992
|
+
data: RecordedCallCreateManyInput | RecordedCallCreateManyInput[]
|
|
32993
|
+
}
|
|
32994
|
+
|
|
32995
|
+
/**
|
|
32996
|
+
* RecordedCall update
|
|
32997
|
+
*/
|
|
32998
|
+
export type RecordedCallUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
32999
|
+
/**
|
|
33000
|
+
* Select specific fields to fetch from the RecordedCall
|
|
33001
|
+
*/
|
|
33002
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
33003
|
+
/**
|
|
33004
|
+
* Choose, which related nodes to fetch as well
|
|
33005
|
+
*/
|
|
33006
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
33007
|
+
/**
|
|
33008
|
+
* The data needed to update a RecordedCall.
|
|
33009
|
+
*/
|
|
33010
|
+
data: XOR<RecordedCallUpdateInput, RecordedCallUncheckedUpdateInput>
|
|
33011
|
+
/**
|
|
33012
|
+
* Choose, which RecordedCall to update.
|
|
33013
|
+
*/
|
|
33014
|
+
where: RecordedCallWhereUniqueInput
|
|
33015
|
+
}
|
|
33016
|
+
|
|
33017
|
+
/**
|
|
33018
|
+
* RecordedCall updateMany
|
|
33019
|
+
*/
|
|
33020
|
+
export type RecordedCallUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33021
|
+
/**
|
|
33022
|
+
* The data used to update RecordedCalls.
|
|
33023
|
+
*/
|
|
33024
|
+
data: XOR<RecordedCallUpdateManyMutationInput, RecordedCallUncheckedUpdateManyInput>
|
|
33025
|
+
/**
|
|
33026
|
+
* Filter which RecordedCalls to update
|
|
33027
|
+
*/
|
|
33028
|
+
where?: RecordedCallWhereInput
|
|
33029
|
+
}
|
|
33030
|
+
|
|
33031
|
+
/**
|
|
33032
|
+
* RecordedCall upsert
|
|
33033
|
+
*/
|
|
33034
|
+
export type RecordedCallUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33035
|
+
/**
|
|
33036
|
+
* Select specific fields to fetch from the RecordedCall
|
|
33037
|
+
*/
|
|
33038
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
33039
|
+
/**
|
|
33040
|
+
* Choose, which related nodes to fetch as well
|
|
33041
|
+
*/
|
|
33042
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
33043
|
+
/**
|
|
33044
|
+
* The filter to search for the RecordedCall to update in case it exists.
|
|
33045
|
+
*/
|
|
33046
|
+
where: RecordedCallWhereUniqueInput
|
|
33047
|
+
/**
|
|
33048
|
+
* In case the RecordedCall found by the `where` argument doesn't exist, create a new RecordedCall with this data.
|
|
33049
|
+
*/
|
|
33050
|
+
create: XOR<RecordedCallCreateInput, RecordedCallUncheckedCreateInput>
|
|
33051
|
+
/**
|
|
33052
|
+
* In case the RecordedCall was found with the provided `where` argument, update it with this data.
|
|
33053
|
+
*/
|
|
33054
|
+
update: XOR<RecordedCallUpdateInput, RecordedCallUncheckedUpdateInput>
|
|
33055
|
+
}
|
|
33056
|
+
|
|
33057
|
+
/**
|
|
33058
|
+
* RecordedCall delete
|
|
33059
|
+
*/
|
|
33060
|
+
export type RecordedCallDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33061
|
+
/**
|
|
33062
|
+
* Select specific fields to fetch from the RecordedCall
|
|
33063
|
+
*/
|
|
33064
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
33065
|
+
/**
|
|
33066
|
+
* Choose, which related nodes to fetch as well
|
|
33067
|
+
*/
|
|
33068
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
33069
|
+
/**
|
|
33070
|
+
* Filter which RecordedCall to delete.
|
|
33071
|
+
*/
|
|
33072
|
+
where: RecordedCallWhereUniqueInput
|
|
33073
|
+
}
|
|
33074
|
+
|
|
33075
|
+
/**
|
|
33076
|
+
* RecordedCall deleteMany
|
|
33077
|
+
*/
|
|
33078
|
+
export type RecordedCallDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33079
|
+
/**
|
|
33080
|
+
* Filter which RecordedCalls to delete
|
|
33081
|
+
*/
|
|
33082
|
+
where?: RecordedCallWhereInput
|
|
33083
|
+
}
|
|
33084
|
+
|
|
33085
|
+
/**
|
|
33086
|
+
* RecordedCall findRaw
|
|
33087
|
+
*/
|
|
33088
|
+
export type RecordedCallFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33089
|
+
/**
|
|
33090
|
+
* The query predicate filter. If unspecified, then all documents in the collection will match the predicate. ${@link https://docs.mongodb.com/manual/reference/operator/query MongoDB Docs}.
|
|
33091
|
+
*/
|
|
33092
|
+
filter?: InputJsonValue
|
|
33093
|
+
/**
|
|
33094
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
33095
|
+
*/
|
|
33096
|
+
options?: InputJsonValue
|
|
33097
|
+
}
|
|
33098
|
+
|
|
33099
|
+
/**
|
|
33100
|
+
* RecordedCall aggregateRaw
|
|
33101
|
+
*/
|
|
33102
|
+
export type RecordedCallAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33103
|
+
/**
|
|
33104
|
+
* An array of aggregation stages to process and transform the document stream via the aggregation pipeline. ${@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline MongoDB Docs}.
|
|
33105
|
+
*/
|
|
33106
|
+
pipeline?: InputJsonValue[]
|
|
33107
|
+
/**
|
|
33108
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
33109
|
+
*/
|
|
33110
|
+
options?: InputJsonValue
|
|
33111
|
+
}
|
|
33112
|
+
|
|
33113
|
+
/**
|
|
33114
|
+
* RecordedCall without action
|
|
33115
|
+
*/
|
|
33116
|
+
export type RecordedCallDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33117
|
+
/**
|
|
33118
|
+
* Select specific fields to fetch from the RecordedCall
|
|
33119
|
+
*/
|
|
33120
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
33121
|
+
/**
|
|
33122
|
+
* Choose, which related nodes to fetch as well
|
|
33123
|
+
*/
|
|
33124
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
33125
|
+
}
|
|
33126
|
+
|
|
33127
|
+
|
|
33128
|
+
/**
|
|
33129
|
+
* Model RoleCategory
|
|
33130
|
+
*/
|
|
33131
|
+
|
|
33132
|
+
export type AggregateRoleCategory = {
|
|
33133
|
+
_count: RoleCategoryCountAggregateOutputType | null
|
|
33134
|
+
_min: RoleCategoryMinAggregateOutputType | null
|
|
33135
|
+
_max: RoleCategoryMaxAggregateOutputType | null
|
|
33136
|
+
}
|
|
33137
|
+
|
|
33138
|
+
export type RoleCategoryMinAggregateOutputType = {
|
|
33139
|
+
id: string | null
|
|
33140
|
+
title: string | null
|
|
33141
|
+
deletedAt: Date | null
|
|
33142
|
+
group: string | null
|
|
33143
|
+
}
|
|
33144
|
+
|
|
33145
|
+
export type RoleCategoryMaxAggregateOutputType = {
|
|
33146
|
+
id: string | null
|
|
33147
|
+
title: string | null
|
|
33148
|
+
deletedAt: Date | null
|
|
33149
|
+
group: string | null
|
|
33150
|
+
}
|
|
33151
|
+
|
|
33152
|
+
export type RoleCategoryCountAggregateOutputType = {
|
|
33153
|
+
id: number
|
|
33154
|
+
anchors: number
|
|
33155
|
+
title: number
|
|
33156
|
+
deletedAt: number
|
|
33157
|
+
group: number
|
|
33158
|
+
talentCategoryIds: number
|
|
33159
|
+
_all: number
|
|
33160
|
+
}
|
|
33161
|
+
|
|
33162
|
+
|
|
33163
|
+
export type RoleCategoryMinAggregateInputType = {
|
|
33164
|
+
id?: true
|
|
33165
|
+
title?: true
|
|
33166
|
+
deletedAt?: true
|
|
33167
|
+
group?: true
|
|
33168
|
+
}
|
|
33169
|
+
|
|
33170
|
+
export type RoleCategoryMaxAggregateInputType = {
|
|
33171
|
+
id?: true
|
|
33172
|
+
title?: true
|
|
33173
|
+
deletedAt?: true
|
|
33174
|
+
group?: true
|
|
33175
|
+
}
|
|
33176
|
+
|
|
33177
|
+
export type RoleCategoryCountAggregateInputType = {
|
|
33178
|
+
id?: true
|
|
33179
|
+
anchors?: true
|
|
33180
|
+
title?: true
|
|
33181
|
+
deletedAt?: true
|
|
33182
|
+
group?: true
|
|
33183
|
+
talentCategoryIds?: true
|
|
33184
|
+
_all?: true
|
|
33185
|
+
}
|
|
33186
|
+
|
|
33187
|
+
export type RoleCategoryAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33188
|
+
/**
|
|
33189
|
+
* Filter which RoleCategory to aggregate.
|
|
33190
|
+
*/
|
|
33191
|
+
where?: RoleCategoryWhereInput
|
|
33192
|
+
/**
|
|
33193
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
33194
|
+
*
|
|
33195
|
+
* Determine the order of RoleCategories to fetch.
|
|
33196
|
+
*/
|
|
33197
|
+
orderBy?: RoleCategoryOrderByWithRelationInput | RoleCategoryOrderByWithRelationInput[]
|
|
33198
|
+
/**
|
|
33199
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
33200
|
+
*
|
|
33201
|
+
* Sets the start position
|
|
33202
|
+
*/
|
|
33203
|
+
cursor?: RoleCategoryWhereUniqueInput
|
|
33204
|
+
/**
|
|
33205
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33206
|
+
*
|
|
33207
|
+
* Take `±n` RoleCategories from the position of the cursor.
|
|
33208
|
+
*/
|
|
33209
|
+
take?: number
|
|
33210
|
+
/**
|
|
33211
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
33212
|
+
*
|
|
33213
|
+
* Skip the first `n` RoleCategories.
|
|
33214
|
+
*/
|
|
33215
|
+
skip?: number
|
|
33216
|
+
/**
|
|
33217
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
33218
|
+
*
|
|
33219
|
+
* Count returned RoleCategories
|
|
33220
|
+
**/
|
|
33221
|
+
_count?: true | RoleCategoryCountAggregateInputType
|
|
33222
|
+
/**
|
|
33223
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
33224
|
+
*
|
|
33225
|
+
* Select which fields to find the minimum value
|
|
33226
|
+
**/
|
|
33227
|
+
_min?: RoleCategoryMinAggregateInputType
|
|
33228
|
+
/**
|
|
33229
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
33230
|
+
*
|
|
33231
|
+
* Select which fields to find the maximum value
|
|
33232
|
+
**/
|
|
33233
|
+
_max?: RoleCategoryMaxAggregateInputType
|
|
33234
|
+
}
|
|
33235
|
+
|
|
33236
|
+
export type GetRoleCategoryAggregateType<T extends RoleCategoryAggregateArgs> = {
|
|
33237
|
+
[P in keyof T & keyof AggregateRoleCategory]: P extends '_count' | 'count'
|
|
33238
|
+
? T[P] extends true
|
|
33239
|
+
? number
|
|
33240
|
+
: GetScalarType<T[P], AggregateRoleCategory[P]>
|
|
33241
|
+
: GetScalarType<T[P], AggregateRoleCategory[P]>
|
|
33242
|
+
}
|
|
33243
|
+
|
|
33244
|
+
|
|
33245
|
+
|
|
33246
|
+
|
|
33247
|
+
export type RoleCategoryGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33248
|
+
where?: RoleCategoryWhereInput
|
|
33249
|
+
orderBy?: RoleCategoryOrderByWithAggregationInput | RoleCategoryOrderByWithAggregationInput[]
|
|
33250
|
+
by: RoleCategoryScalarFieldEnum[] | RoleCategoryScalarFieldEnum
|
|
33251
|
+
having?: RoleCategoryScalarWhereWithAggregatesInput
|
|
33252
|
+
take?: number
|
|
33253
|
+
skip?: number
|
|
33254
|
+
_count?: RoleCategoryCountAggregateInputType | true
|
|
33255
|
+
_min?: RoleCategoryMinAggregateInputType
|
|
33256
|
+
_max?: RoleCategoryMaxAggregateInputType
|
|
33257
|
+
}
|
|
33258
|
+
|
|
33259
|
+
export type RoleCategoryGroupByOutputType = {
|
|
33260
|
+
id: string
|
|
33261
|
+
anchors: string[]
|
|
33262
|
+
title: string
|
|
33263
|
+
deletedAt: Date | null
|
|
33264
|
+
group: string | null
|
|
33265
|
+
talentCategoryIds: string[]
|
|
33266
|
+
_count: RoleCategoryCountAggregateOutputType | null
|
|
33267
|
+
_min: RoleCategoryMinAggregateOutputType | null
|
|
33268
|
+
_max: RoleCategoryMaxAggregateOutputType | null
|
|
33269
|
+
}
|
|
33270
|
+
|
|
33271
|
+
type GetRoleCategoryGroupByPayload<T extends RoleCategoryGroupByArgs> = Prisma.PrismaPromise<
|
|
33272
|
+
Array<
|
|
33273
|
+
PickEnumerable<RoleCategoryGroupByOutputType, T['by']> &
|
|
33274
|
+
{
|
|
33275
|
+
[P in ((keyof T) & (keyof RoleCategoryGroupByOutputType))]: P extends '_count'
|
|
33276
|
+
? T[P] extends boolean
|
|
33277
|
+
? number
|
|
33278
|
+
: GetScalarType<T[P], RoleCategoryGroupByOutputType[P]>
|
|
33279
|
+
: GetScalarType<T[P], RoleCategoryGroupByOutputType[P]>
|
|
33280
|
+
}
|
|
33281
|
+
>
|
|
33282
|
+
>
|
|
33283
|
+
|
|
33284
|
+
|
|
33285
|
+
export type RoleCategorySelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
33286
|
+
id?: boolean
|
|
33287
|
+
anchors?: boolean
|
|
33288
|
+
title?: boolean
|
|
33289
|
+
deletedAt?: boolean
|
|
33290
|
+
group?: boolean
|
|
33291
|
+
talentCategoryIds?: boolean
|
|
33292
|
+
}, ExtArgs["result"]["roleCategory"]>
|
|
33293
|
+
|
|
33294
|
+
|
|
33295
|
+
export type RoleCategorySelectScalar = {
|
|
33296
|
+
id?: boolean
|
|
33297
|
+
anchors?: boolean
|
|
33298
|
+
title?: boolean
|
|
33299
|
+
deletedAt?: boolean
|
|
33300
|
+
group?: boolean
|
|
33301
|
+
talentCategoryIds?: boolean
|
|
33302
|
+
}
|
|
33303
|
+
|
|
33304
|
+
|
|
33305
|
+
export type $RoleCategoryPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
33306
|
+
name: "RoleCategory"
|
|
33307
|
+
objects: {}
|
|
33308
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
33309
|
+
id: string
|
|
33310
|
+
anchors: string[]
|
|
33311
|
+
title: string
|
|
33312
|
+
deletedAt: Date | null
|
|
33313
|
+
group: string | null
|
|
33314
|
+
talentCategoryIds: string[]
|
|
33315
|
+
}, ExtArgs["result"]["roleCategory"]>
|
|
33316
|
+
composites: {}
|
|
33317
|
+
}
|
|
33318
|
+
|
|
33319
|
+
type RoleCategoryGetPayload<S extends boolean | null | undefined | RoleCategoryDefaultArgs> = $Result.GetResult<Prisma.$RoleCategoryPayload, S>
|
|
33320
|
+
|
|
33321
|
+
type RoleCategoryCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
33322
|
+
Omit<RoleCategoryFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
33323
|
+
select?: RoleCategoryCountAggregateInputType | true
|
|
33324
|
+
}
|
|
33325
|
+
|
|
33326
|
+
export interface RoleCategoryDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
33327
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['RoleCategory'], meta: { name: 'RoleCategory' } }
|
|
33328
|
+
/**
|
|
33329
|
+
* Find zero or one RoleCategory that matches the filter.
|
|
33330
|
+
* @param {RoleCategoryFindUniqueArgs} args - Arguments to find a RoleCategory
|
|
33331
|
+
* @example
|
|
33332
|
+
* // Get one RoleCategory
|
|
33333
|
+
* const roleCategory = await prisma.roleCategory.findUnique({
|
|
33334
|
+
* where: {
|
|
33335
|
+
* // ... provide filter here
|
|
33336
|
+
* }
|
|
33337
|
+
* })
|
|
33338
|
+
*/
|
|
33339
|
+
findUnique<T extends RoleCategoryFindUniqueArgs>(args: SelectSubset<T, RoleCategoryFindUniqueArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
33340
|
+
|
|
33341
|
+
/**
|
|
33342
|
+
* Find one RoleCategory that matches the filter or throw an error with `error.code='P2025'`
|
|
33343
|
+
* if no matches were found.
|
|
33344
|
+
* @param {RoleCategoryFindUniqueOrThrowArgs} args - Arguments to find a RoleCategory
|
|
33345
|
+
* @example
|
|
33346
|
+
* // Get one RoleCategory
|
|
33347
|
+
* const roleCategory = await prisma.roleCategory.findUniqueOrThrow({
|
|
33348
|
+
* where: {
|
|
33349
|
+
* // ... provide filter here
|
|
33350
|
+
* }
|
|
33351
|
+
* })
|
|
33352
|
+
*/
|
|
33353
|
+
findUniqueOrThrow<T extends RoleCategoryFindUniqueOrThrowArgs>(args: SelectSubset<T, RoleCategoryFindUniqueOrThrowArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
33354
|
+
|
|
33355
|
+
/**
|
|
33356
|
+
* Find the first RoleCategory that matches the filter.
|
|
33357
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33358
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33359
|
+
* @param {RoleCategoryFindFirstArgs} args - Arguments to find a RoleCategory
|
|
33360
|
+
* @example
|
|
33361
|
+
* // Get one RoleCategory
|
|
33362
|
+
* const roleCategory = await prisma.roleCategory.findFirst({
|
|
33363
|
+
* where: {
|
|
33364
|
+
* // ... provide filter here
|
|
33365
|
+
* }
|
|
33366
|
+
* })
|
|
33367
|
+
*/
|
|
33368
|
+
findFirst<T extends RoleCategoryFindFirstArgs>(args?: SelectSubset<T, RoleCategoryFindFirstArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
33369
|
+
|
|
33370
|
+
/**
|
|
33371
|
+
* Find the first RoleCategory that matches the filter or
|
|
33372
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
33373
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33374
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33375
|
+
* @param {RoleCategoryFindFirstOrThrowArgs} args - Arguments to find a RoleCategory
|
|
33376
|
+
* @example
|
|
33377
|
+
* // Get one RoleCategory
|
|
33378
|
+
* const roleCategory = await prisma.roleCategory.findFirstOrThrow({
|
|
33379
|
+
* where: {
|
|
33380
|
+
* // ... provide filter here
|
|
33381
|
+
* }
|
|
33382
|
+
* })
|
|
33383
|
+
*/
|
|
33384
|
+
findFirstOrThrow<T extends RoleCategoryFindFirstOrThrowArgs>(args?: SelectSubset<T, RoleCategoryFindFirstOrThrowArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
33385
|
+
|
|
33386
|
+
/**
|
|
33387
|
+
* Find zero or more RoleCategories that matches the filter.
|
|
33388
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33389
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33390
|
+
* @param {RoleCategoryFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
33391
|
+
* @example
|
|
33392
|
+
* // Get all RoleCategories
|
|
33393
|
+
* const roleCategories = await prisma.roleCategory.findMany()
|
|
33394
|
+
*
|
|
33395
|
+
* // Get first 10 RoleCategories
|
|
33396
|
+
* const roleCategories = await prisma.roleCategory.findMany({ take: 10 })
|
|
33397
|
+
*
|
|
33398
|
+
* // Only select the `id`
|
|
33399
|
+
* const roleCategoryWithIdOnly = await prisma.roleCategory.findMany({ select: { id: true } })
|
|
33400
|
+
*
|
|
33401
|
+
*/
|
|
33402
|
+
findMany<T extends RoleCategoryFindManyArgs>(args?: SelectSubset<T, RoleCategoryFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "findMany">>
|
|
33403
|
+
|
|
33404
|
+
/**
|
|
33405
|
+
* Create a RoleCategory.
|
|
33406
|
+
* @param {RoleCategoryCreateArgs} args - Arguments to create a RoleCategory.
|
|
33407
|
+
* @example
|
|
33408
|
+
* // Create one RoleCategory
|
|
33409
|
+
* const RoleCategory = await prisma.roleCategory.create({
|
|
33410
|
+
* data: {
|
|
33411
|
+
* // ... data to create a RoleCategory
|
|
33412
|
+
* }
|
|
33413
|
+
* })
|
|
33414
|
+
*
|
|
33415
|
+
*/
|
|
33416
|
+
create<T extends RoleCategoryCreateArgs>(args: SelectSubset<T, RoleCategoryCreateArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
33417
|
+
|
|
33418
|
+
/**
|
|
33419
|
+
* Create many RoleCategories.
|
|
33420
|
+
* @param {RoleCategoryCreateManyArgs} args - Arguments to create many RoleCategories.
|
|
33421
|
+
* @example
|
|
33422
|
+
* // Create many RoleCategories
|
|
33423
|
+
* const roleCategory = await prisma.roleCategory.createMany({
|
|
33424
|
+
* data: [
|
|
33425
|
+
* // ... provide data here
|
|
33426
|
+
* ]
|
|
33427
|
+
* })
|
|
33428
|
+
*
|
|
33429
|
+
*/
|
|
33430
|
+
createMany<T extends RoleCategoryCreateManyArgs>(args?: SelectSubset<T, RoleCategoryCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
33431
|
+
|
|
33432
|
+
/**
|
|
33433
|
+
* Delete a RoleCategory.
|
|
33434
|
+
* @param {RoleCategoryDeleteArgs} args - Arguments to delete one RoleCategory.
|
|
33435
|
+
* @example
|
|
33436
|
+
* // Delete one RoleCategory
|
|
33437
|
+
* const RoleCategory = await prisma.roleCategory.delete({
|
|
33438
|
+
* where: {
|
|
33439
|
+
* // ... filter to delete one RoleCategory
|
|
33440
|
+
* }
|
|
33441
|
+
* })
|
|
33442
|
+
*
|
|
33443
|
+
*/
|
|
33444
|
+
delete<T extends RoleCategoryDeleteArgs>(args: SelectSubset<T, RoleCategoryDeleteArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
33445
|
+
|
|
33446
|
+
/**
|
|
33447
|
+
* Update one RoleCategory.
|
|
33448
|
+
* @param {RoleCategoryUpdateArgs} args - Arguments to update one RoleCategory.
|
|
33449
|
+
* @example
|
|
33450
|
+
* // Update one RoleCategory
|
|
33451
|
+
* const roleCategory = await prisma.roleCategory.update({
|
|
33452
|
+
* where: {
|
|
33453
|
+
* // ... provide filter here
|
|
33454
|
+
* },
|
|
33455
|
+
* data: {
|
|
33456
|
+
* // ... provide data here
|
|
33457
|
+
* }
|
|
33458
|
+
* })
|
|
33459
|
+
*
|
|
33460
|
+
*/
|
|
33461
|
+
update<T extends RoleCategoryUpdateArgs>(args: SelectSubset<T, RoleCategoryUpdateArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
33462
|
+
|
|
33463
|
+
/**
|
|
33464
|
+
* Delete zero or more RoleCategories.
|
|
33465
|
+
* @param {RoleCategoryDeleteManyArgs} args - Arguments to filter RoleCategories to delete.
|
|
33466
|
+
* @example
|
|
33467
|
+
* // Delete a few RoleCategories
|
|
33468
|
+
* const { count } = await prisma.roleCategory.deleteMany({
|
|
33469
|
+
* where: {
|
|
33470
|
+
* // ... provide filter here
|
|
33471
|
+
* }
|
|
33472
|
+
* })
|
|
33473
|
+
*
|
|
33474
|
+
*/
|
|
33475
|
+
deleteMany<T extends RoleCategoryDeleteManyArgs>(args?: SelectSubset<T, RoleCategoryDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
33476
|
+
|
|
33477
|
+
/**
|
|
33478
|
+
* Update zero or more RoleCategories.
|
|
33479
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33480
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33481
|
+
* @param {RoleCategoryUpdateManyArgs} args - Arguments to update one or more rows.
|
|
33482
|
+
* @example
|
|
33483
|
+
* // Update many RoleCategories
|
|
33484
|
+
* const roleCategory = await prisma.roleCategory.updateMany({
|
|
33485
|
+
* where: {
|
|
33486
|
+
* // ... provide filter here
|
|
33487
|
+
* },
|
|
33488
|
+
* data: {
|
|
33489
|
+
* // ... provide data here
|
|
33490
|
+
* }
|
|
33491
|
+
* })
|
|
33492
|
+
*
|
|
33493
|
+
*/
|
|
33494
|
+
updateMany<T extends RoleCategoryUpdateManyArgs>(args: SelectSubset<T, RoleCategoryUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
33495
|
+
|
|
33496
|
+
/**
|
|
33497
|
+
* Create or update one RoleCategory.
|
|
33498
|
+
* @param {RoleCategoryUpsertArgs} args - Arguments to update or create a RoleCategory.
|
|
33499
|
+
* @example
|
|
33500
|
+
* // Update or create a RoleCategory
|
|
33501
|
+
* const roleCategory = await prisma.roleCategory.upsert({
|
|
33502
|
+
* create: {
|
|
33503
|
+
* // ... data to create a RoleCategory
|
|
33504
|
+
* },
|
|
33505
|
+
* update: {
|
|
33506
|
+
* // ... in case it already exists, update
|
|
33507
|
+
* },
|
|
33508
|
+
* where: {
|
|
33509
|
+
* // ... the filter for the RoleCategory we want to update
|
|
33510
|
+
* }
|
|
33511
|
+
* })
|
|
33512
|
+
*/
|
|
33513
|
+
upsert<T extends RoleCategoryUpsertArgs>(args: SelectSubset<T, RoleCategoryUpsertArgs<ExtArgs>>): Prisma__RoleCategoryClient<$Result.GetResult<Prisma.$RoleCategoryPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
33514
|
+
|
|
33515
|
+
/**
|
|
33516
|
+
* Find zero or more RoleCategories that matches the filter.
|
|
33517
|
+
* @param {RoleCategoryFindRawArgs} args - Select which filters you would like to apply.
|
|
33518
|
+
* @example
|
|
33519
|
+
* const roleCategory = await prisma.roleCategory.findRaw({
|
|
33520
|
+
* filter: { age: { $gt: 25 } }
|
|
33521
|
+
* })
|
|
33522
|
+
*/
|
|
33523
|
+
findRaw(args?: RoleCategoryFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
33524
|
+
|
|
33525
|
+
/**
|
|
33526
|
+
* Perform aggregation operations on a RoleCategory.
|
|
33527
|
+
* @param {RoleCategoryAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
33528
|
+
* @example
|
|
33529
|
+
* const roleCategory = await prisma.roleCategory.aggregateRaw({
|
|
33530
|
+
* pipeline: [
|
|
33531
|
+
* { $match: { status: "registered" } },
|
|
33532
|
+
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
33533
|
+
* ]
|
|
33534
|
+
* })
|
|
33535
|
+
*/
|
|
33536
|
+
aggregateRaw(args?: RoleCategoryAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
33537
|
+
|
|
33538
|
+
|
|
33539
|
+
/**
|
|
33540
|
+
* Count the number of RoleCategories.
|
|
33541
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33542
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33543
|
+
* @param {RoleCategoryCountArgs} args - Arguments to filter RoleCategories to count.
|
|
33544
|
+
* @example
|
|
33545
|
+
* // Count the number of RoleCategories
|
|
33546
|
+
* const count = await prisma.roleCategory.count({
|
|
33547
|
+
* where: {
|
|
33548
|
+
* // ... the filter for the RoleCategories we want to count
|
|
33549
|
+
* }
|
|
33550
|
+
* })
|
|
33551
|
+
**/
|
|
33552
|
+
count<T extends RoleCategoryCountArgs>(
|
|
33553
|
+
args?: Subset<T, RoleCategoryCountArgs>,
|
|
33554
|
+
): Prisma.PrismaPromise<
|
|
33555
|
+
T extends $Utils.Record<'select', any>
|
|
33556
|
+
? T['select'] extends true
|
|
33557
|
+
? number
|
|
33558
|
+
: GetScalarType<T['select'], RoleCategoryCountAggregateOutputType>
|
|
33559
|
+
: number
|
|
33560
|
+
>
|
|
33561
|
+
|
|
33562
|
+
/**
|
|
33563
|
+
* Allows you to perform aggregations operations on a RoleCategory.
|
|
33564
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33565
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33566
|
+
* @param {RoleCategoryAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
33567
|
+
* @example
|
|
33568
|
+
* // Ordered by age ascending
|
|
33569
|
+
* // Where email contains prisma.io
|
|
33570
|
+
* // Limited to the 10 users
|
|
33571
|
+
* const aggregations = await prisma.user.aggregate({
|
|
33572
|
+
* _avg: {
|
|
33573
|
+
* age: true,
|
|
33574
|
+
* },
|
|
33575
|
+
* where: {
|
|
33576
|
+
* email: {
|
|
33577
|
+
* contains: "prisma.io",
|
|
33578
|
+
* },
|
|
33579
|
+
* },
|
|
33580
|
+
* orderBy: {
|
|
33581
|
+
* age: "asc",
|
|
33582
|
+
* },
|
|
33583
|
+
* take: 10,
|
|
33584
|
+
* })
|
|
33585
|
+
**/
|
|
33586
|
+
aggregate<T extends RoleCategoryAggregateArgs>(args: Subset<T, RoleCategoryAggregateArgs>): Prisma.PrismaPromise<GetRoleCategoryAggregateType<T>>
|
|
33587
|
+
|
|
33588
|
+
/**
|
|
33589
|
+
* Group by RoleCategory.
|
|
33590
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
33591
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
33592
|
+
* @param {RoleCategoryGroupByArgs} args - Group by arguments.
|
|
33593
|
+
* @example
|
|
33594
|
+
* // Group by city, order by createdAt, get count
|
|
33595
|
+
* const result = await prisma.user.groupBy({
|
|
33596
|
+
* by: ['city', 'createdAt'],
|
|
33597
|
+
* orderBy: {
|
|
33598
|
+
* createdAt: true
|
|
33599
|
+
* },
|
|
33600
|
+
* _count: {
|
|
33601
|
+
* _all: true
|
|
33602
|
+
* },
|
|
33603
|
+
* })
|
|
33604
|
+
*
|
|
33605
|
+
**/
|
|
33606
|
+
groupBy<
|
|
33607
|
+
T extends RoleCategoryGroupByArgs,
|
|
33608
|
+
HasSelectOrTake extends Or<
|
|
33609
|
+
Extends<'skip', Keys<T>>,
|
|
33610
|
+
Extends<'take', Keys<T>>
|
|
33611
|
+
>,
|
|
33612
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
33613
|
+
? { orderBy: RoleCategoryGroupByArgs['orderBy'] }
|
|
33614
|
+
: { orderBy?: RoleCategoryGroupByArgs['orderBy'] },
|
|
32459
33615
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
32460
33616
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
32461
33617
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -39576,6 +40732,23 @@ export namespace Prisma {
|
|
|
39576
40732
|
export type ProposalScalarFieldEnum = (typeof ProposalScalarFieldEnum)[keyof typeof ProposalScalarFieldEnum]
|
|
39577
40733
|
|
|
39578
40734
|
|
|
40735
|
+
export const RecordedCallScalarFieldEnum: {
|
|
40736
|
+
id: 'id',
|
|
40737
|
+
callMeetingTitle: 'callMeetingTitle',
|
|
40738
|
+
callUrl: 'callUrl',
|
|
40739
|
+
startTime: 'startTime',
|
|
40740
|
+
endTime: 'endTime',
|
|
40741
|
+
transcriptUrl: 'transcriptUrl',
|
|
40742
|
+
recordedByName: 'recordedByName',
|
|
40743
|
+
recordedByUrl: 'recordedByUrl',
|
|
40744
|
+
platformRecordedOn: 'platformRecordedOn',
|
|
40745
|
+
createdAt: 'createdAt',
|
|
40746
|
+
updatedAt: 'updatedAt'
|
|
40747
|
+
};
|
|
40748
|
+
|
|
40749
|
+
export type RecordedCallScalarFieldEnum = (typeof RecordedCallScalarFieldEnum)[keyof typeof RecordedCallScalarFieldEnum]
|
|
40750
|
+
|
|
40751
|
+
|
|
39579
40752
|
export const RoleCategoryScalarFieldEnum: {
|
|
39580
40753
|
id: 'id',
|
|
39581
40754
|
anchors: 'anchors',
|
|
@@ -40016,6 +41189,20 @@ export namespace Prisma {
|
|
|
40016
41189
|
|
|
40017
41190
|
|
|
40018
41191
|
|
|
41192
|
+
/**
|
|
41193
|
+
* Reference to a field of type 'PlatformRecordedOn'
|
|
41194
|
+
*/
|
|
41195
|
+
export type EnumPlatformRecordedOnFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PlatformRecordedOn'>
|
|
41196
|
+
|
|
41197
|
+
|
|
41198
|
+
|
|
41199
|
+
/**
|
|
41200
|
+
* Reference to a field of type 'PlatformRecordedOn[]'
|
|
41201
|
+
*/
|
|
41202
|
+
export type ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'PlatformRecordedOn[]'>
|
|
41203
|
+
|
|
41204
|
+
|
|
41205
|
+
|
|
40019
41206
|
/**
|
|
40020
41207
|
* Reference to a field of type 'PresetID'
|
|
40021
41208
|
*/
|
|
@@ -42557,6 +43744,91 @@ export namespace Prisma {
|
|
|
42557
43744
|
teamAdvisorId?: StringNullableWithAggregatesFilter<"Proposal"> | string | null
|
|
42558
43745
|
}
|
|
42559
43746
|
|
|
43747
|
+
export type RecordedCallWhereInput = {
|
|
43748
|
+
AND?: RecordedCallWhereInput | RecordedCallWhereInput[]
|
|
43749
|
+
OR?: RecordedCallWhereInput[]
|
|
43750
|
+
NOT?: RecordedCallWhereInput | RecordedCallWhereInput[]
|
|
43751
|
+
id?: StringFilter<"RecordedCall"> | string
|
|
43752
|
+
callMeetingTitle?: StringFilter<"RecordedCall"> | string
|
|
43753
|
+
callUrl?: StringFilter<"RecordedCall"> | string
|
|
43754
|
+
startTime?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43755
|
+
endTime?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43756
|
+
transcriptUrl?: StringFilter<"RecordedCall"> | string
|
|
43757
|
+
participants?: CallParticipantCompositeListFilter | CallParticipantObjectEqualityInput[]
|
|
43758
|
+
recordedByName?: StringFilter<"RecordedCall"> | string
|
|
43759
|
+
recordedByUrl?: StringFilter<"RecordedCall"> | string
|
|
43760
|
+
platformRecordedOn?: EnumPlatformRecordedOnFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43761
|
+
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43762
|
+
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43763
|
+
}
|
|
43764
|
+
|
|
43765
|
+
export type RecordedCallOrderByWithRelationInput = {
|
|
43766
|
+
id?: SortOrder
|
|
43767
|
+
callMeetingTitle?: SortOrder
|
|
43768
|
+
callUrl?: SortOrder
|
|
43769
|
+
startTime?: SortOrder
|
|
43770
|
+
endTime?: SortOrder
|
|
43771
|
+
transcriptUrl?: SortOrder
|
|
43772
|
+
participants?: CallParticipantOrderByCompositeAggregateInput
|
|
43773
|
+
recordedByName?: SortOrder
|
|
43774
|
+
recordedByUrl?: SortOrder
|
|
43775
|
+
platformRecordedOn?: SortOrder
|
|
43776
|
+
createdAt?: SortOrder
|
|
43777
|
+
updatedAt?: SortOrder
|
|
43778
|
+
}
|
|
43779
|
+
|
|
43780
|
+
export type RecordedCallWhereUniqueInput = Prisma.AtLeast<{
|
|
43781
|
+
id?: string
|
|
43782
|
+
AND?: RecordedCallWhereInput | RecordedCallWhereInput[]
|
|
43783
|
+
OR?: RecordedCallWhereInput[]
|
|
43784
|
+
NOT?: RecordedCallWhereInput | RecordedCallWhereInput[]
|
|
43785
|
+
callMeetingTitle?: StringFilter<"RecordedCall"> | string
|
|
43786
|
+
callUrl?: StringFilter<"RecordedCall"> | string
|
|
43787
|
+
startTime?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43788
|
+
endTime?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43789
|
+
transcriptUrl?: StringFilter<"RecordedCall"> | string
|
|
43790
|
+
participants?: CallParticipantCompositeListFilter | CallParticipantObjectEqualityInput[]
|
|
43791
|
+
recordedByName?: StringFilter<"RecordedCall"> | string
|
|
43792
|
+
recordedByUrl?: StringFilter<"RecordedCall"> | string
|
|
43793
|
+
platformRecordedOn?: EnumPlatformRecordedOnFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43794
|
+
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43795
|
+
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43796
|
+
}, "id">
|
|
43797
|
+
|
|
43798
|
+
export type RecordedCallOrderByWithAggregationInput = {
|
|
43799
|
+
id?: SortOrder
|
|
43800
|
+
callMeetingTitle?: SortOrder
|
|
43801
|
+
callUrl?: SortOrder
|
|
43802
|
+
startTime?: SortOrder
|
|
43803
|
+
endTime?: SortOrder
|
|
43804
|
+
transcriptUrl?: SortOrder
|
|
43805
|
+
recordedByName?: SortOrder
|
|
43806
|
+
recordedByUrl?: SortOrder
|
|
43807
|
+
platformRecordedOn?: SortOrder
|
|
43808
|
+
createdAt?: SortOrder
|
|
43809
|
+
updatedAt?: SortOrder
|
|
43810
|
+
_count?: RecordedCallCountOrderByAggregateInput
|
|
43811
|
+
_max?: RecordedCallMaxOrderByAggregateInput
|
|
43812
|
+
_min?: RecordedCallMinOrderByAggregateInput
|
|
43813
|
+
}
|
|
43814
|
+
|
|
43815
|
+
export type RecordedCallScalarWhereWithAggregatesInput = {
|
|
43816
|
+
AND?: RecordedCallScalarWhereWithAggregatesInput | RecordedCallScalarWhereWithAggregatesInput[]
|
|
43817
|
+
OR?: RecordedCallScalarWhereWithAggregatesInput[]
|
|
43818
|
+
NOT?: RecordedCallScalarWhereWithAggregatesInput | RecordedCallScalarWhereWithAggregatesInput[]
|
|
43819
|
+
id?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43820
|
+
callMeetingTitle?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43821
|
+
callUrl?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43822
|
+
startTime?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43823
|
+
endTime?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43824
|
+
transcriptUrl?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43825
|
+
recordedByName?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43826
|
+
recordedByUrl?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43827
|
+
platformRecordedOn?: EnumPlatformRecordedOnWithAggregatesFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43828
|
+
createdAt?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43829
|
+
updatedAt?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43830
|
+
}
|
|
43831
|
+
|
|
42560
43832
|
export type RoleCategoryWhereInput = {
|
|
42561
43833
|
AND?: RoleCategoryWhereInput | RoleCategoryWhereInput[]
|
|
42562
43834
|
OR?: RoleCategoryWhereInput[]
|
|
@@ -45843,6 +47115,107 @@ export namespace Prisma {
|
|
|
45843
47115
|
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
45844
47116
|
}
|
|
45845
47117
|
|
|
47118
|
+
export type RecordedCallCreateInput = {
|
|
47119
|
+
id?: string
|
|
47120
|
+
callMeetingTitle: string
|
|
47121
|
+
callUrl: string
|
|
47122
|
+
startTime: Date | string
|
|
47123
|
+
endTime: Date | string
|
|
47124
|
+
transcriptUrl: string
|
|
47125
|
+
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47126
|
+
recordedByName: string
|
|
47127
|
+
recordedByUrl: string
|
|
47128
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47129
|
+
createdAt?: Date | string
|
|
47130
|
+
updatedAt?: Date | string
|
|
47131
|
+
}
|
|
47132
|
+
|
|
47133
|
+
export type RecordedCallUncheckedCreateInput = {
|
|
47134
|
+
id?: string
|
|
47135
|
+
callMeetingTitle: string
|
|
47136
|
+
callUrl: string
|
|
47137
|
+
startTime: Date | string
|
|
47138
|
+
endTime: Date | string
|
|
47139
|
+
transcriptUrl: string
|
|
47140
|
+
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47141
|
+
recordedByName: string
|
|
47142
|
+
recordedByUrl: string
|
|
47143
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47144
|
+
createdAt?: Date | string
|
|
47145
|
+
updatedAt?: Date | string
|
|
47146
|
+
}
|
|
47147
|
+
|
|
47148
|
+
export type RecordedCallUpdateInput = {
|
|
47149
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
47150
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
47151
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47152
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47153
|
+
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47154
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47155
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47156
|
+
recordedByUrl?: StringFieldUpdateOperationsInput | string
|
|
47157
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47158
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47159
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47160
|
+
}
|
|
47161
|
+
|
|
47162
|
+
export type RecordedCallUncheckedUpdateInput = {
|
|
47163
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
47164
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
47165
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47166
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47167
|
+
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47168
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47169
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47170
|
+
recordedByUrl?: StringFieldUpdateOperationsInput | string
|
|
47171
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47172
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47173
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47174
|
+
}
|
|
47175
|
+
|
|
47176
|
+
export type RecordedCallCreateManyInput = {
|
|
47177
|
+
id?: string
|
|
47178
|
+
callMeetingTitle: string
|
|
47179
|
+
callUrl: string
|
|
47180
|
+
startTime: Date | string
|
|
47181
|
+
endTime: Date | string
|
|
47182
|
+
transcriptUrl: string
|
|
47183
|
+
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47184
|
+
recordedByName: string
|
|
47185
|
+
recordedByUrl: string
|
|
47186
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47187
|
+
createdAt?: Date | string
|
|
47188
|
+
updatedAt?: Date | string
|
|
47189
|
+
}
|
|
47190
|
+
|
|
47191
|
+
export type RecordedCallUpdateManyMutationInput = {
|
|
47192
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
47193
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
47194
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47195
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47196
|
+
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47197
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47198
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47199
|
+
recordedByUrl?: StringFieldUpdateOperationsInput | string
|
|
47200
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47201
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47202
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47203
|
+
}
|
|
47204
|
+
|
|
47205
|
+
export type RecordedCallUncheckedUpdateManyInput = {
|
|
47206
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
47207
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
47208
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47209
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47210
|
+
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47211
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47212
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47213
|
+
recordedByUrl?: StringFieldUpdateOperationsInput | string
|
|
47214
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47215
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47216
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47217
|
+
}
|
|
47218
|
+
|
|
45846
47219
|
export type RoleCategoryCreateInput = {
|
|
45847
47220
|
id?: string
|
|
45848
47221
|
anchors?: RoleCategoryCreateanchorsInput | string[]
|
|
@@ -49471,6 +50844,83 @@ export namespace Prisma {
|
|
|
49471
50844
|
isSet?: boolean
|
|
49472
50845
|
}
|
|
49473
50846
|
|
|
50847
|
+
export type CallParticipantCompositeListFilter = {
|
|
50848
|
+
equals?: CallParticipantObjectEqualityInput[]
|
|
50849
|
+
every?: CallParticipantWhereInput
|
|
50850
|
+
some?: CallParticipantWhereInput
|
|
50851
|
+
none?: CallParticipantWhereInput
|
|
50852
|
+
isEmpty?: boolean
|
|
50853
|
+
isSet?: boolean
|
|
50854
|
+
}
|
|
50855
|
+
|
|
50856
|
+
export type CallParticipantObjectEqualityInput = {
|
|
50857
|
+
name: string
|
|
50858
|
+
email: string
|
|
50859
|
+
}
|
|
50860
|
+
|
|
50861
|
+
export type EnumPlatformRecordedOnFilter<$PrismaModel = never> = {
|
|
50862
|
+
equals?: $Enums.PlatformRecordedOn | EnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50863
|
+
in?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50864
|
+
notIn?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50865
|
+
not?: NestedEnumPlatformRecordedOnFilter<$PrismaModel> | $Enums.PlatformRecordedOn
|
|
50866
|
+
}
|
|
50867
|
+
|
|
50868
|
+
export type CallParticipantOrderByCompositeAggregateInput = {
|
|
50869
|
+
_count?: SortOrder
|
|
50870
|
+
}
|
|
50871
|
+
|
|
50872
|
+
export type RecordedCallCountOrderByAggregateInput = {
|
|
50873
|
+
id?: SortOrder
|
|
50874
|
+
callMeetingTitle?: SortOrder
|
|
50875
|
+
callUrl?: SortOrder
|
|
50876
|
+
startTime?: SortOrder
|
|
50877
|
+
endTime?: SortOrder
|
|
50878
|
+
transcriptUrl?: SortOrder
|
|
50879
|
+
recordedByName?: SortOrder
|
|
50880
|
+
recordedByUrl?: SortOrder
|
|
50881
|
+
platformRecordedOn?: SortOrder
|
|
50882
|
+
createdAt?: SortOrder
|
|
50883
|
+
updatedAt?: SortOrder
|
|
50884
|
+
}
|
|
50885
|
+
|
|
50886
|
+
export type RecordedCallMaxOrderByAggregateInput = {
|
|
50887
|
+
id?: SortOrder
|
|
50888
|
+
callMeetingTitle?: SortOrder
|
|
50889
|
+
callUrl?: SortOrder
|
|
50890
|
+
startTime?: SortOrder
|
|
50891
|
+
endTime?: SortOrder
|
|
50892
|
+
transcriptUrl?: SortOrder
|
|
50893
|
+
recordedByName?: SortOrder
|
|
50894
|
+
recordedByUrl?: SortOrder
|
|
50895
|
+
platformRecordedOn?: SortOrder
|
|
50896
|
+
createdAt?: SortOrder
|
|
50897
|
+
updatedAt?: SortOrder
|
|
50898
|
+
}
|
|
50899
|
+
|
|
50900
|
+
export type RecordedCallMinOrderByAggregateInput = {
|
|
50901
|
+
id?: SortOrder
|
|
50902
|
+
callMeetingTitle?: SortOrder
|
|
50903
|
+
callUrl?: SortOrder
|
|
50904
|
+
startTime?: SortOrder
|
|
50905
|
+
endTime?: SortOrder
|
|
50906
|
+
transcriptUrl?: SortOrder
|
|
50907
|
+
recordedByName?: SortOrder
|
|
50908
|
+
recordedByUrl?: SortOrder
|
|
50909
|
+
platformRecordedOn?: SortOrder
|
|
50910
|
+
createdAt?: SortOrder
|
|
50911
|
+
updatedAt?: SortOrder
|
|
50912
|
+
}
|
|
50913
|
+
|
|
50914
|
+
export type EnumPlatformRecordedOnWithAggregatesFilter<$PrismaModel = never> = {
|
|
50915
|
+
equals?: $Enums.PlatformRecordedOn | EnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50916
|
+
in?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50917
|
+
notIn?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
50918
|
+
not?: NestedEnumPlatformRecordedOnWithAggregatesFilter<$PrismaModel> | $Enums.PlatformRecordedOn
|
|
50919
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
50920
|
+
_min?: NestedEnumPlatformRecordedOnFilter<$PrismaModel>
|
|
50921
|
+
_max?: NestedEnumPlatformRecordedOnFilter<$PrismaModel>
|
|
50922
|
+
}
|
|
50923
|
+
|
|
49474
50924
|
export type RoleCategoryCountOrderByAggregateInput = {
|
|
49475
50925
|
id?: SortOrder
|
|
49476
50926
|
anchors?: SortOrder
|
|
@@ -52722,6 +54172,26 @@ export namespace Prisma {
|
|
|
52722
54172
|
deleteMany?: ClientInterviewScalarWhereInput | ClientInterviewScalarWhereInput[]
|
|
52723
54173
|
}
|
|
52724
54174
|
|
|
54175
|
+
export type CallParticipantListCreateEnvelopeInput = {
|
|
54176
|
+
set?: CallParticipantCreateInput | CallParticipantCreateInput[]
|
|
54177
|
+
}
|
|
54178
|
+
|
|
54179
|
+
export type CallParticipantCreateInput = {
|
|
54180
|
+
name: string
|
|
54181
|
+
email: string
|
|
54182
|
+
}
|
|
54183
|
+
|
|
54184
|
+
export type CallParticipantListUpdateEnvelopeInput = {
|
|
54185
|
+
set?: CallParticipantCreateInput | CallParticipantCreateInput[]
|
|
54186
|
+
push?: CallParticipantCreateInput | CallParticipantCreateInput[]
|
|
54187
|
+
updateMany?: CallParticipantUpdateManyInput
|
|
54188
|
+
deleteMany?: CallParticipantDeleteManyInput
|
|
54189
|
+
}
|
|
54190
|
+
|
|
54191
|
+
export type EnumPlatformRecordedOnFieldUpdateOperationsInput = {
|
|
54192
|
+
set?: $Enums.PlatformRecordedOn
|
|
54193
|
+
}
|
|
54194
|
+
|
|
52725
54195
|
export type RoleCategoryCreateanchorsInput = {
|
|
52726
54196
|
set: string[]
|
|
52727
54197
|
}
|
|
@@ -55273,6 +56743,31 @@ export namespace Prisma {
|
|
|
55273
56743
|
isSet?: boolean
|
|
55274
56744
|
}
|
|
55275
56745
|
|
|
56746
|
+
export type CallParticipantWhereInput = {
|
|
56747
|
+
AND?: CallParticipantWhereInput | CallParticipantWhereInput[]
|
|
56748
|
+
OR?: CallParticipantWhereInput[]
|
|
56749
|
+
NOT?: CallParticipantWhereInput | CallParticipantWhereInput[]
|
|
56750
|
+
name?: StringFilter<"CallParticipant"> | string
|
|
56751
|
+
email?: StringFilter<"CallParticipant"> | string
|
|
56752
|
+
}
|
|
56753
|
+
|
|
56754
|
+
export type NestedEnumPlatformRecordedOnFilter<$PrismaModel = never> = {
|
|
56755
|
+
equals?: $Enums.PlatformRecordedOn | EnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56756
|
+
in?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56757
|
+
notIn?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56758
|
+
not?: NestedEnumPlatformRecordedOnFilter<$PrismaModel> | $Enums.PlatformRecordedOn
|
|
56759
|
+
}
|
|
56760
|
+
|
|
56761
|
+
export type NestedEnumPlatformRecordedOnWithAggregatesFilter<$PrismaModel = never> = {
|
|
56762
|
+
equals?: $Enums.PlatformRecordedOn | EnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56763
|
+
in?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56764
|
+
notIn?: $Enums.PlatformRecordedOn[] | ListEnumPlatformRecordedOnFieldRefInput<$PrismaModel>
|
|
56765
|
+
not?: NestedEnumPlatformRecordedOnWithAggregatesFilter<$PrismaModel> | $Enums.PlatformRecordedOn
|
|
56766
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
56767
|
+
_min?: NestedEnumPlatformRecordedOnFilter<$PrismaModel>
|
|
56768
|
+
_max?: NestedEnumPlatformRecordedOnFilter<$PrismaModel>
|
|
56769
|
+
}
|
|
56770
|
+
|
|
55276
56771
|
export type NestedEnumPresetIDFilter<$PrismaModel = never> = {
|
|
55277
56772
|
equals?: $Enums.PresetID | EnumPresetIDFieldRefInput<$PrismaModel>
|
|
55278
56773
|
in?: $Enums.PresetID[] | ListEnumPresetIDFieldRefInput<$PrismaModel>
|
|
@@ -63663,6 +65158,15 @@ export namespace Prisma {
|
|
|
63663
65158
|
data: XOR<ClientInterviewUpdateManyMutationInput, ClientInterviewUncheckedUpdateManyWithoutProposalInput>
|
|
63664
65159
|
}
|
|
63665
65160
|
|
|
65161
|
+
export type CallParticipantUpdateManyInput = {
|
|
65162
|
+
where: CallParticipantWhereInput
|
|
65163
|
+
data: CallParticipantUpdateInput
|
|
65164
|
+
}
|
|
65165
|
+
|
|
65166
|
+
export type CallParticipantDeleteManyInput = {
|
|
65167
|
+
where: CallParticipantWhereInput
|
|
65168
|
+
}
|
|
65169
|
+
|
|
63666
65170
|
export type RoleUpdateManyInput = {
|
|
63667
65171
|
where: RoleWhereInput
|
|
63668
65172
|
data: RoleUpdateInput
|
|
@@ -68778,6 +70282,11 @@ export namespace Prisma {
|
|
|
68778
70282
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
68779
70283
|
}
|
|
68780
70284
|
|
|
70285
|
+
export type CallParticipantUpdateInput = {
|
|
70286
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
70287
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
70288
|
+
}
|
|
70289
|
+
|
|
68781
70290
|
export type RoleUpdateInput = {
|
|
68782
70291
|
category?: StringFieldUpdateOperationsInput | string
|
|
68783
70292
|
}
|
|
@@ -72155,6 +73664,10 @@ export namespace Prisma {
|
|
|
72155
73664
|
* @deprecated Use ProposalTfsPitchDefaultArgs instead
|
|
72156
73665
|
*/
|
|
72157
73666
|
export type ProposalTfsPitchArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ProposalTfsPitchDefaultArgs<ExtArgs>
|
|
73667
|
+
/**
|
|
73668
|
+
* @deprecated Use CallParticipantDefaultArgs instead
|
|
73669
|
+
*/
|
|
73670
|
+
export type CallParticipantArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = CallParticipantDefaultArgs<ExtArgs>
|
|
72158
73671
|
/**
|
|
72159
73672
|
* @deprecated Use RoleDefaultArgs instead
|
|
72160
73673
|
*/
|
|
@@ -72331,6 +73844,10 @@ export namespace Prisma {
|
|
|
72331
73844
|
* @deprecated Use ProposalDefaultArgs instead
|
|
72332
73845
|
*/
|
|
72333
73846
|
export type ProposalArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ProposalDefaultArgs<ExtArgs>
|
|
73847
|
+
/**
|
|
73848
|
+
* @deprecated Use RecordedCallDefaultArgs instead
|
|
73849
|
+
*/
|
|
73850
|
+
export type RecordedCallArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RecordedCallDefaultArgs<ExtArgs>
|
|
72334
73851
|
/**
|
|
72335
73852
|
* @deprecated Use RoleCategoryDefaultArgs instead
|
|
72336
73853
|
*/
|