@a_team/prisma 3.22.3-win → 3.23.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 +26 -4
- package/dist/client/index-browser.js +22 -0
- package/dist/client/index.d.ts +1790 -3
- package/dist/client/index.js +28 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +25 -0
- package/dist/client/wasm.js +22 -0
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -738,6 +738,11 @@ export type TalentCategory = $Result.DefaultSelection<Prisma.$TalentCategoryPayl
|
|
|
738
738
|
*
|
|
739
739
|
*/
|
|
740
740
|
export type TalentIndustry = $Result.DefaultSelection<Prisma.$TalentIndustryPayload>
|
|
741
|
+
/**
|
|
742
|
+
* Model Transcript
|
|
743
|
+
*
|
|
744
|
+
*/
|
|
745
|
+
export type Transcript = $Result.DefaultSelection<Prisma.$TranscriptPayload>
|
|
741
746
|
/**
|
|
742
747
|
* Model User
|
|
743
748
|
*
|
|
@@ -1010,6 +1015,15 @@ export const PresetID: {
|
|
|
1010
1015
|
export type PresetID = (typeof PresetID)[keyof typeof PresetID]
|
|
1011
1016
|
|
|
1012
1017
|
|
|
1018
|
+
export const TranscriptCallType: {
|
|
1019
|
+
evaluation: 'evaluation',
|
|
1020
|
+
missionSuccess: 'missionSuccess',
|
|
1021
|
+
clientInterview: 'clientInterview'
|
|
1022
|
+
};
|
|
1023
|
+
|
|
1024
|
+
export type TranscriptCallType = (typeof TranscriptCallType)[keyof typeof TranscriptCallType]
|
|
1025
|
+
|
|
1026
|
+
|
|
1013
1027
|
export const UserStatus: {
|
|
1014
1028
|
Registered: 'Registered',
|
|
1015
1029
|
Active: 'Active',
|
|
@@ -1360,6 +1374,10 @@ export type PresetID = $Enums.PresetID
|
|
|
1360
1374
|
|
|
1361
1375
|
export const PresetID: typeof $Enums.PresetID
|
|
1362
1376
|
|
|
1377
|
+
export type TranscriptCallType = $Enums.TranscriptCallType
|
|
1378
|
+
|
|
1379
|
+
export const TranscriptCallType: typeof $Enums.TranscriptCallType
|
|
1380
|
+
|
|
1363
1381
|
export type UserStatus = $Enums.UserStatus
|
|
1364
1382
|
|
|
1365
1383
|
export const UserStatus: typeof $Enums.UserStatus
|
|
@@ -1846,6 +1864,16 @@ export class PrismaClient<
|
|
|
1846
1864
|
*/
|
|
1847
1865
|
get talentIndustry(): Prisma.TalentIndustryDelegate<ExtArgs>;
|
|
1848
1866
|
|
|
1867
|
+
/**
|
|
1868
|
+
* `prisma.transcript`: Exposes CRUD operations for the **Transcript** model.
|
|
1869
|
+
* Example usage:
|
|
1870
|
+
* ```ts
|
|
1871
|
+
* // Fetch zero or more Transcripts
|
|
1872
|
+
* const transcripts = await prisma.transcript.findMany()
|
|
1873
|
+
* ```
|
|
1874
|
+
*/
|
|
1875
|
+
get transcript(): Prisma.TranscriptDelegate<ExtArgs>;
|
|
1876
|
+
|
|
1849
1877
|
/**
|
|
1850
1878
|
* `prisma.user`: Exposes CRUD operations for the **User** model.
|
|
1851
1879
|
* Example usage:
|
|
@@ -2346,6 +2374,7 @@ export namespace Prisma {
|
|
|
2346
2374
|
Solution: 'Solution',
|
|
2347
2375
|
TalentCategory: 'TalentCategory',
|
|
2348
2376
|
TalentIndustry: 'TalentIndustry',
|
|
2377
|
+
Transcript: 'Transcript',
|
|
2349
2378
|
User: 'User',
|
|
2350
2379
|
UserPreference: 'UserPreference',
|
|
2351
2380
|
UserReview: 'UserReview'
|
|
@@ -2364,7 +2393,7 @@ export namespace Prisma {
|
|
|
2364
2393
|
|
|
2365
2394
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2366
2395
|
meta: {
|
|
2367
|
-
modelProps: "account" | "billingAccount" | "builderWebsitesData" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mapperIndustryTitleToTalentIndustry" | "mapperRoleTitleToRoleCategory" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "parsedResume" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "roleHiringCriteria" | "roleRevision" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2396
|
+
modelProps: "account" | "billingAccount" | "builderWebsitesData" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mapperIndustryTitleToTalentIndustry" | "mapperRoleTitleToRoleCategory" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "parsedResume" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "roleHiringCriteria" | "roleRevision" | "solution" | "talentCategory" | "talentIndustry" | "transcript" | "user" | "userPreference" | "userReview"
|
|
2368
2397
|
txIsolationLevel: never
|
|
2369
2398
|
}
|
|
2370
2399
|
model: {
|
|
@@ -4588,6 +4617,80 @@ export namespace Prisma {
|
|
|
4588
4617
|
}
|
|
4589
4618
|
}
|
|
4590
4619
|
}
|
|
4620
|
+
Transcript: {
|
|
4621
|
+
payload: Prisma.$TranscriptPayload<ExtArgs>
|
|
4622
|
+
fields: Prisma.TranscriptFieldRefs
|
|
4623
|
+
operations: {
|
|
4624
|
+
findUnique: {
|
|
4625
|
+
args: Prisma.TranscriptFindUniqueArgs<ExtArgs>
|
|
4626
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload> | null
|
|
4627
|
+
}
|
|
4628
|
+
findUniqueOrThrow: {
|
|
4629
|
+
args: Prisma.TranscriptFindUniqueOrThrowArgs<ExtArgs>
|
|
4630
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4631
|
+
}
|
|
4632
|
+
findFirst: {
|
|
4633
|
+
args: Prisma.TranscriptFindFirstArgs<ExtArgs>
|
|
4634
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload> | null
|
|
4635
|
+
}
|
|
4636
|
+
findFirstOrThrow: {
|
|
4637
|
+
args: Prisma.TranscriptFindFirstOrThrowArgs<ExtArgs>
|
|
4638
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4639
|
+
}
|
|
4640
|
+
findMany: {
|
|
4641
|
+
args: Prisma.TranscriptFindManyArgs<ExtArgs>
|
|
4642
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>[]
|
|
4643
|
+
}
|
|
4644
|
+
create: {
|
|
4645
|
+
args: Prisma.TranscriptCreateArgs<ExtArgs>
|
|
4646
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4647
|
+
}
|
|
4648
|
+
createMany: {
|
|
4649
|
+
args: Prisma.TranscriptCreateManyArgs<ExtArgs>
|
|
4650
|
+
result: BatchPayload
|
|
4651
|
+
}
|
|
4652
|
+
delete: {
|
|
4653
|
+
args: Prisma.TranscriptDeleteArgs<ExtArgs>
|
|
4654
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4655
|
+
}
|
|
4656
|
+
update: {
|
|
4657
|
+
args: Prisma.TranscriptUpdateArgs<ExtArgs>
|
|
4658
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4659
|
+
}
|
|
4660
|
+
deleteMany: {
|
|
4661
|
+
args: Prisma.TranscriptDeleteManyArgs<ExtArgs>
|
|
4662
|
+
result: BatchPayload
|
|
4663
|
+
}
|
|
4664
|
+
updateMany: {
|
|
4665
|
+
args: Prisma.TranscriptUpdateManyArgs<ExtArgs>
|
|
4666
|
+
result: BatchPayload
|
|
4667
|
+
}
|
|
4668
|
+
upsert: {
|
|
4669
|
+
args: Prisma.TranscriptUpsertArgs<ExtArgs>
|
|
4670
|
+
result: $Utils.PayloadToResult<Prisma.$TranscriptPayload>
|
|
4671
|
+
}
|
|
4672
|
+
aggregate: {
|
|
4673
|
+
args: Prisma.TranscriptAggregateArgs<ExtArgs>
|
|
4674
|
+
result: $Utils.Optional<AggregateTranscript>
|
|
4675
|
+
}
|
|
4676
|
+
groupBy: {
|
|
4677
|
+
args: Prisma.TranscriptGroupByArgs<ExtArgs>
|
|
4678
|
+
result: $Utils.Optional<TranscriptGroupByOutputType>[]
|
|
4679
|
+
}
|
|
4680
|
+
findRaw: {
|
|
4681
|
+
args: Prisma.TranscriptFindRawArgs<ExtArgs>
|
|
4682
|
+
result: JsonObject
|
|
4683
|
+
}
|
|
4684
|
+
aggregateRaw: {
|
|
4685
|
+
args: Prisma.TranscriptAggregateRawArgs<ExtArgs>
|
|
4686
|
+
result: JsonObject
|
|
4687
|
+
}
|
|
4688
|
+
count: {
|
|
4689
|
+
args: Prisma.TranscriptCountArgs<ExtArgs>
|
|
4690
|
+
result: $Utils.Optional<TranscriptCountAggregateOutputType> | number
|
|
4691
|
+
}
|
|
4692
|
+
}
|
|
4693
|
+
}
|
|
4591
4694
|
User: {
|
|
4592
4695
|
payload: Prisma.$UserPayload<ExtArgs>
|
|
4593
4696
|
fields: Prisma.UserFieldRefs
|
|
@@ -5313,6 +5416,37 @@ export namespace Prisma {
|
|
|
5313
5416
|
}
|
|
5314
5417
|
|
|
5315
5418
|
|
|
5419
|
+
/**
|
|
5420
|
+
* Count Type RecordedCallCountOutputType
|
|
5421
|
+
*/
|
|
5422
|
+
|
|
5423
|
+
export type RecordedCallCountOutputType = {
|
|
5424
|
+
transcripts: number
|
|
5425
|
+
}
|
|
5426
|
+
|
|
5427
|
+
export type RecordedCallCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5428
|
+
transcripts?: boolean | RecordedCallCountOutputTypeCountTranscriptsArgs
|
|
5429
|
+
}
|
|
5430
|
+
|
|
5431
|
+
// Custom InputTypes
|
|
5432
|
+
/**
|
|
5433
|
+
* RecordedCallCountOutputType without action
|
|
5434
|
+
*/
|
|
5435
|
+
export type RecordedCallCountOutputTypeDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5436
|
+
/**
|
|
5437
|
+
* Select specific fields to fetch from the RecordedCallCountOutputType
|
|
5438
|
+
*/
|
|
5439
|
+
select?: RecordedCallCountOutputTypeSelect<ExtArgs> | null
|
|
5440
|
+
}
|
|
5441
|
+
|
|
5442
|
+
/**
|
|
5443
|
+
* RecordedCallCountOutputType without action
|
|
5444
|
+
*/
|
|
5445
|
+
export type RecordedCallCountOutputTypeCountTranscriptsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5446
|
+
where?: TranscriptWhereInput
|
|
5447
|
+
}
|
|
5448
|
+
|
|
5449
|
+
|
|
5316
5450
|
/**
|
|
5317
5451
|
* Count Type RoleCategoryCountOutputType
|
|
5318
5452
|
*/
|
|
@@ -38374,6 +38508,8 @@ export namespace Prisma {
|
|
|
38374
38508
|
createdAt?: boolean
|
|
38375
38509
|
updatedAt?: boolean
|
|
38376
38510
|
calendarEventVideoCallDataId?: boolean
|
|
38511
|
+
transcripts?: boolean | RecordedCall$transcriptsArgs<ExtArgs>
|
|
38512
|
+
_count?: boolean | RecordedCallCountOutputTypeDefaultArgs<ExtArgs>
|
|
38377
38513
|
}, ExtArgs["result"]["recordedCall"]>
|
|
38378
38514
|
|
|
38379
38515
|
|
|
@@ -38393,11 +38529,16 @@ export namespace Prisma {
|
|
|
38393
38529
|
calendarEventVideoCallDataId?: boolean
|
|
38394
38530
|
}
|
|
38395
38531
|
|
|
38396
|
-
export type RecordedCallInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38532
|
+
export type RecordedCallInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38533
|
+
transcripts?: boolean | RecordedCall$transcriptsArgs<ExtArgs>
|
|
38534
|
+
_count?: boolean | RecordedCallCountOutputTypeDefaultArgs<ExtArgs>
|
|
38535
|
+
}
|
|
38397
38536
|
|
|
38398
38537
|
export type $RecordedCallPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
38399
38538
|
name: "RecordedCall"
|
|
38400
|
-
objects: {
|
|
38539
|
+
objects: {
|
|
38540
|
+
transcripts: Prisma.$TranscriptPayload<ExtArgs>[]
|
|
38541
|
+
}
|
|
38401
38542
|
scalars: $Extensions.GetPayloadResult<{
|
|
38402
38543
|
id: string
|
|
38403
38544
|
callMeetingTitle: string
|
|
@@ -38777,6 +38918,7 @@ export namespace Prisma {
|
|
|
38777
38918
|
*/
|
|
38778
38919
|
export interface Prisma__RecordedCallClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
38779
38920
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
38921
|
+
transcripts<T extends RecordedCall$transcriptsArgs<ExtArgs> = {}>(args?: Subset<T, RecordedCall$transcriptsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findMany"> | Null>
|
|
38780
38922
|
/**
|
|
38781
38923
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
38782
38924
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -39144,6 +39286,26 @@ export namespace Prisma {
|
|
|
39144
39286
|
options?: InputJsonValue
|
|
39145
39287
|
}
|
|
39146
39288
|
|
|
39289
|
+
/**
|
|
39290
|
+
* RecordedCall.transcripts
|
|
39291
|
+
*/
|
|
39292
|
+
export type RecordedCall$transcriptsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
39293
|
+
/**
|
|
39294
|
+
* Select specific fields to fetch from the Transcript
|
|
39295
|
+
*/
|
|
39296
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
39297
|
+
/**
|
|
39298
|
+
* Choose, which related nodes to fetch as well
|
|
39299
|
+
*/
|
|
39300
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
39301
|
+
where?: TranscriptWhereInput
|
|
39302
|
+
orderBy?: TranscriptOrderByWithRelationInput | TranscriptOrderByWithRelationInput[]
|
|
39303
|
+
cursor?: TranscriptWhereUniqueInput
|
|
39304
|
+
take?: number
|
|
39305
|
+
skip?: number
|
|
39306
|
+
distinct?: TranscriptScalarFieldEnum | TranscriptScalarFieldEnum[]
|
|
39307
|
+
}
|
|
39308
|
+
|
|
39147
39309
|
/**
|
|
39148
39310
|
* RecordedCall without action
|
|
39149
39311
|
*/
|
|
@@ -44982,6 +45144,1027 @@ export namespace Prisma {
|
|
|
44982
45144
|
}
|
|
44983
45145
|
|
|
44984
45146
|
|
|
45147
|
+
/**
|
|
45148
|
+
* Model Transcript
|
|
45149
|
+
*/
|
|
45150
|
+
|
|
45151
|
+
export type AggregateTranscript = {
|
|
45152
|
+
_count: TranscriptCountAggregateOutputType | null
|
|
45153
|
+
_min: TranscriptMinAggregateOutputType | null
|
|
45154
|
+
_max: TranscriptMaxAggregateOutputType | null
|
|
45155
|
+
}
|
|
45156
|
+
|
|
45157
|
+
export type TranscriptMinAggregateOutputType = {
|
|
45158
|
+
id: string | null
|
|
45159
|
+
recordedCallId: string | null
|
|
45160
|
+
inputBucket: string | null
|
|
45161
|
+
inputKey: string | null
|
|
45162
|
+
inputRegion: string | null
|
|
45163
|
+
inputUrl: string | null
|
|
45164
|
+
callbackUrl: string | null
|
|
45165
|
+
callbackRef: string | null
|
|
45166
|
+
jobStatus: string | null
|
|
45167
|
+
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45168
|
+
createdAt: Date | null
|
|
45169
|
+
updatedAt: Date | null
|
|
45170
|
+
}
|
|
45171
|
+
|
|
45172
|
+
export type TranscriptMaxAggregateOutputType = {
|
|
45173
|
+
id: string | null
|
|
45174
|
+
recordedCallId: string | null
|
|
45175
|
+
inputBucket: string | null
|
|
45176
|
+
inputKey: string | null
|
|
45177
|
+
inputRegion: string | null
|
|
45178
|
+
inputUrl: string | null
|
|
45179
|
+
callbackUrl: string | null
|
|
45180
|
+
callbackRef: string | null
|
|
45181
|
+
jobStatus: string | null
|
|
45182
|
+
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45183
|
+
createdAt: Date | null
|
|
45184
|
+
updatedAt: Date | null
|
|
45185
|
+
}
|
|
45186
|
+
|
|
45187
|
+
export type TranscriptCountAggregateOutputType = {
|
|
45188
|
+
id: number
|
|
45189
|
+
recordedCallId: number
|
|
45190
|
+
inputBucket: number
|
|
45191
|
+
inputKey: number
|
|
45192
|
+
inputRegion: number
|
|
45193
|
+
inputUrl: number
|
|
45194
|
+
callbackUrl: number
|
|
45195
|
+
callbackRef: number
|
|
45196
|
+
jobStatus: number
|
|
45197
|
+
transcriptCallType: number
|
|
45198
|
+
createdAt: number
|
|
45199
|
+
updatedAt: number
|
|
45200
|
+
_all: number
|
|
45201
|
+
}
|
|
45202
|
+
|
|
45203
|
+
|
|
45204
|
+
export type TranscriptMinAggregateInputType = {
|
|
45205
|
+
id?: true
|
|
45206
|
+
recordedCallId?: true
|
|
45207
|
+
inputBucket?: true
|
|
45208
|
+
inputKey?: true
|
|
45209
|
+
inputRegion?: true
|
|
45210
|
+
inputUrl?: true
|
|
45211
|
+
callbackUrl?: true
|
|
45212
|
+
callbackRef?: true
|
|
45213
|
+
jobStatus?: true
|
|
45214
|
+
transcriptCallType?: true
|
|
45215
|
+
createdAt?: true
|
|
45216
|
+
updatedAt?: true
|
|
45217
|
+
}
|
|
45218
|
+
|
|
45219
|
+
export type TranscriptMaxAggregateInputType = {
|
|
45220
|
+
id?: true
|
|
45221
|
+
recordedCallId?: true
|
|
45222
|
+
inputBucket?: true
|
|
45223
|
+
inputKey?: true
|
|
45224
|
+
inputRegion?: true
|
|
45225
|
+
inputUrl?: true
|
|
45226
|
+
callbackUrl?: true
|
|
45227
|
+
callbackRef?: true
|
|
45228
|
+
jobStatus?: true
|
|
45229
|
+
transcriptCallType?: true
|
|
45230
|
+
createdAt?: true
|
|
45231
|
+
updatedAt?: true
|
|
45232
|
+
}
|
|
45233
|
+
|
|
45234
|
+
export type TranscriptCountAggregateInputType = {
|
|
45235
|
+
id?: true
|
|
45236
|
+
recordedCallId?: true
|
|
45237
|
+
inputBucket?: true
|
|
45238
|
+
inputKey?: true
|
|
45239
|
+
inputRegion?: true
|
|
45240
|
+
inputUrl?: true
|
|
45241
|
+
callbackUrl?: true
|
|
45242
|
+
callbackRef?: true
|
|
45243
|
+
jobStatus?: true
|
|
45244
|
+
transcriptCallType?: true
|
|
45245
|
+
createdAt?: true
|
|
45246
|
+
updatedAt?: true
|
|
45247
|
+
_all?: true
|
|
45248
|
+
}
|
|
45249
|
+
|
|
45250
|
+
export type TranscriptAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45251
|
+
/**
|
|
45252
|
+
* Filter which Transcript to aggregate.
|
|
45253
|
+
*/
|
|
45254
|
+
where?: TranscriptWhereInput
|
|
45255
|
+
/**
|
|
45256
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
45257
|
+
*
|
|
45258
|
+
* Determine the order of Transcripts to fetch.
|
|
45259
|
+
*/
|
|
45260
|
+
orderBy?: TranscriptOrderByWithRelationInput | TranscriptOrderByWithRelationInput[]
|
|
45261
|
+
/**
|
|
45262
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
45263
|
+
*
|
|
45264
|
+
* Sets the start position
|
|
45265
|
+
*/
|
|
45266
|
+
cursor?: TranscriptWhereUniqueInput
|
|
45267
|
+
/**
|
|
45268
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45269
|
+
*
|
|
45270
|
+
* Take `±n` Transcripts from the position of the cursor.
|
|
45271
|
+
*/
|
|
45272
|
+
take?: number
|
|
45273
|
+
/**
|
|
45274
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45275
|
+
*
|
|
45276
|
+
* Skip the first `n` Transcripts.
|
|
45277
|
+
*/
|
|
45278
|
+
skip?: number
|
|
45279
|
+
/**
|
|
45280
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45281
|
+
*
|
|
45282
|
+
* Count returned Transcripts
|
|
45283
|
+
**/
|
|
45284
|
+
_count?: true | TranscriptCountAggregateInputType
|
|
45285
|
+
/**
|
|
45286
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45287
|
+
*
|
|
45288
|
+
* Select which fields to find the minimum value
|
|
45289
|
+
**/
|
|
45290
|
+
_min?: TranscriptMinAggregateInputType
|
|
45291
|
+
/**
|
|
45292
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45293
|
+
*
|
|
45294
|
+
* Select which fields to find the maximum value
|
|
45295
|
+
**/
|
|
45296
|
+
_max?: TranscriptMaxAggregateInputType
|
|
45297
|
+
}
|
|
45298
|
+
|
|
45299
|
+
export type GetTranscriptAggregateType<T extends TranscriptAggregateArgs> = {
|
|
45300
|
+
[P in keyof T & keyof AggregateTranscript]: P extends '_count' | 'count'
|
|
45301
|
+
? T[P] extends true
|
|
45302
|
+
? number
|
|
45303
|
+
: GetScalarType<T[P], AggregateTranscript[P]>
|
|
45304
|
+
: GetScalarType<T[P], AggregateTranscript[P]>
|
|
45305
|
+
}
|
|
45306
|
+
|
|
45307
|
+
|
|
45308
|
+
|
|
45309
|
+
|
|
45310
|
+
export type TranscriptGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45311
|
+
where?: TranscriptWhereInput
|
|
45312
|
+
orderBy?: TranscriptOrderByWithAggregationInput | TranscriptOrderByWithAggregationInput[]
|
|
45313
|
+
by: TranscriptScalarFieldEnum[] | TranscriptScalarFieldEnum
|
|
45314
|
+
having?: TranscriptScalarWhereWithAggregatesInput
|
|
45315
|
+
take?: number
|
|
45316
|
+
skip?: number
|
|
45317
|
+
_count?: TranscriptCountAggregateInputType | true
|
|
45318
|
+
_min?: TranscriptMinAggregateInputType
|
|
45319
|
+
_max?: TranscriptMaxAggregateInputType
|
|
45320
|
+
}
|
|
45321
|
+
|
|
45322
|
+
export type TranscriptGroupByOutputType = {
|
|
45323
|
+
id: string
|
|
45324
|
+
recordedCallId: string | null
|
|
45325
|
+
inputBucket: string | null
|
|
45326
|
+
inputKey: string | null
|
|
45327
|
+
inputRegion: string | null
|
|
45328
|
+
inputUrl: string | null
|
|
45329
|
+
callbackUrl: string | null
|
|
45330
|
+
callbackRef: string | null
|
|
45331
|
+
jobStatus: string
|
|
45332
|
+
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45333
|
+
createdAt: Date
|
|
45334
|
+
updatedAt: Date
|
|
45335
|
+
_count: TranscriptCountAggregateOutputType | null
|
|
45336
|
+
_min: TranscriptMinAggregateOutputType | null
|
|
45337
|
+
_max: TranscriptMaxAggregateOutputType | null
|
|
45338
|
+
}
|
|
45339
|
+
|
|
45340
|
+
type GetTranscriptGroupByPayload<T extends TranscriptGroupByArgs> = Prisma.PrismaPromise<
|
|
45341
|
+
Array<
|
|
45342
|
+
PickEnumerable<TranscriptGroupByOutputType, T['by']> &
|
|
45343
|
+
{
|
|
45344
|
+
[P in ((keyof T) & (keyof TranscriptGroupByOutputType))]: P extends '_count'
|
|
45345
|
+
? T[P] extends boolean
|
|
45346
|
+
? number
|
|
45347
|
+
: GetScalarType<T[P], TranscriptGroupByOutputType[P]>
|
|
45348
|
+
: GetScalarType<T[P], TranscriptGroupByOutputType[P]>
|
|
45349
|
+
}
|
|
45350
|
+
>
|
|
45351
|
+
>
|
|
45352
|
+
|
|
45353
|
+
|
|
45354
|
+
export type TranscriptSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
45355
|
+
id?: boolean
|
|
45356
|
+
recordedCallId?: boolean
|
|
45357
|
+
inputBucket?: boolean
|
|
45358
|
+
inputKey?: boolean
|
|
45359
|
+
inputRegion?: boolean
|
|
45360
|
+
inputUrl?: boolean
|
|
45361
|
+
callbackUrl?: boolean
|
|
45362
|
+
callbackRef?: boolean
|
|
45363
|
+
jobStatus?: boolean
|
|
45364
|
+
transcriptCallType?: boolean
|
|
45365
|
+
createdAt?: boolean
|
|
45366
|
+
updatedAt?: boolean
|
|
45367
|
+
recordedCall?: boolean | Transcript$recordedCallArgs<ExtArgs>
|
|
45368
|
+
}, ExtArgs["result"]["transcript"]>
|
|
45369
|
+
|
|
45370
|
+
|
|
45371
|
+
export type TranscriptSelectScalar = {
|
|
45372
|
+
id?: boolean
|
|
45373
|
+
recordedCallId?: boolean
|
|
45374
|
+
inputBucket?: boolean
|
|
45375
|
+
inputKey?: boolean
|
|
45376
|
+
inputRegion?: boolean
|
|
45377
|
+
inputUrl?: boolean
|
|
45378
|
+
callbackUrl?: boolean
|
|
45379
|
+
callbackRef?: boolean
|
|
45380
|
+
jobStatus?: boolean
|
|
45381
|
+
transcriptCallType?: boolean
|
|
45382
|
+
createdAt?: boolean
|
|
45383
|
+
updatedAt?: boolean
|
|
45384
|
+
}
|
|
45385
|
+
|
|
45386
|
+
export type TranscriptInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45387
|
+
recordedCall?: boolean | Transcript$recordedCallArgs<ExtArgs>
|
|
45388
|
+
}
|
|
45389
|
+
|
|
45390
|
+
export type $TranscriptPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45391
|
+
name: "Transcript"
|
|
45392
|
+
objects: {
|
|
45393
|
+
recordedCall: Prisma.$RecordedCallPayload<ExtArgs> | null
|
|
45394
|
+
}
|
|
45395
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
45396
|
+
id: string
|
|
45397
|
+
recordedCallId: string | null
|
|
45398
|
+
inputBucket: string | null
|
|
45399
|
+
inputKey: string | null
|
|
45400
|
+
inputRegion: string | null
|
|
45401
|
+
inputUrl: string | null
|
|
45402
|
+
callbackUrl: string | null
|
|
45403
|
+
callbackRef: string | null
|
|
45404
|
+
jobStatus: string
|
|
45405
|
+
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45406
|
+
createdAt: Date
|
|
45407
|
+
updatedAt: Date
|
|
45408
|
+
}, ExtArgs["result"]["transcript"]>
|
|
45409
|
+
composites: {}
|
|
45410
|
+
}
|
|
45411
|
+
|
|
45412
|
+
type TranscriptGetPayload<S extends boolean | null | undefined | TranscriptDefaultArgs> = $Result.GetResult<Prisma.$TranscriptPayload, S>
|
|
45413
|
+
|
|
45414
|
+
type TranscriptCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
45415
|
+
Omit<TranscriptFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
45416
|
+
select?: TranscriptCountAggregateInputType | true
|
|
45417
|
+
}
|
|
45418
|
+
|
|
45419
|
+
export interface TranscriptDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
45420
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Transcript'], meta: { name: 'Transcript' } }
|
|
45421
|
+
/**
|
|
45422
|
+
* Find zero or one Transcript that matches the filter.
|
|
45423
|
+
* @param {TranscriptFindUniqueArgs} args - Arguments to find a Transcript
|
|
45424
|
+
* @example
|
|
45425
|
+
* // Get one Transcript
|
|
45426
|
+
* const transcript = await prisma.transcript.findUnique({
|
|
45427
|
+
* where: {
|
|
45428
|
+
* // ... provide filter here
|
|
45429
|
+
* }
|
|
45430
|
+
* })
|
|
45431
|
+
*/
|
|
45432
|
+
findUnique<T extends TranscriptFindUniqueArgs>(args: SelectSubset<T, TranscriptFindUniqueArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
45433
|
+
|
|
45434
|
+
/**
|
|
45435
|
+
* Find one Transcript that matches the filter or throw an error with `error.code='P2025'`
|
|
45436
|
+
* if no matches were found.
|
|
45437
|
+
* @param {TranscriptFindUniqueOrThrowArgs} args - Arguments to find a Transcript
|
|
45438
|
+
* @example
|
|
45439
|
+
* // Get one Transcript
|
|
45440
|
+
* const transcript = await prisma.transcript.findUniqueOrThrow({
|
|
45441
|
+
* where: {
|
|
45442
|
+
* // ... provide filter here
|
|
45443
|
+
* }
|
|
45444
|
+
* })
|
|
45445
|
+
*/
|
|
45446
|
+
findUniqueOrThrow<T extends TranscriptFindUniqueOrThrowArgs>(args: SelectSubset<T, TranscriptFindUniqueOrThrowArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
45447
|
+
|
|
45448
|
+
/**
|
|
45449
|
+
* Find the first Transcript that matches the filter.
|
|
45450
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45451
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45452
|
+
* @param {TranscriptFindFirstArgs} args - Arguments to find a Transcript
|
|
45453
|
+
* @example
|
|
45454
|
+
* // Get one Transcript
|
|
45455
|
+
* const transcript = await prisma.transcript.findFirst({
|
|
45456
|
+
* where: {
|
|
45457
|
+
* // ... provide filter here
|
|
45458
|
+
* }
|
|
45459
|
+
* })
|
|
45460
|
+
*/
|
|
45461
|
+
findFirst<T extends TranscriptFindFirstArgs>(args?: SelectSubset<T, TranscriptFindFirstArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
45462
|
+
|
|
45463
|
+
/**
|
|
45464
|
+
* Find the first Transcript that matches the filter or
|
|
45465
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
45466
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45467
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45468
|
+
* @param {TranscriptFindFirstOrThrowArgs} args - Arguments to find a Transcript
|
|
45469
|
+
* @example
|
|
45470
|
+
* // Get one Transcript
|
|
45471
|
+
* const transcript = await prisma.transcript.findFirstOrThrow({
|
|
45472
|
+
* where: {
|
|
45473
|
+
* // ... provide filter here
|
|
45474
|
+
* }
|
|
45475
|
+
* })
|
|
45476
|
+
*/
|
|
45477
|
+
findFirstOrThrow<T extends TranscriptFindFirstOrThrowArgs>(args?: SelectSubset<T, TranscriptFindFirstOrThrowArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
45478
|
+
|
|
45479
|
+
/**
|
|
45480
|
+
* Find zero or more Transcripts that matches the filter.
|
|
45481
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45482
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45483
|
+
* @param {TranscriptFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
45484
|
+
* @example
|
|
45485
|
+
* // Get all Transcripts
|
|
45486
|
+
* const transcripts = await prisma.transcript.findMany()
|
|
45487
|
+
*
|
|
45488
|
+
* // Get first 10 Transcripts
|
|
45489
|
+
* const transcripts = await prisma.transcript.findMany({ take: 10 })
|
|
45490
|
+
*
|
|
45491
|
+
* // Only select the `id`
|
|
45492
|
+
* const transcriptWithIdOnly = await prisma.transcript.findMany({ select: { id: true } })
|
|
45493
|
+
*
|
|
45494
|
+
*/
|
|
45495
|
+
findMany<T extends TranscriptFindManyArgs>(args?: SelectSubset<T, TranscriptFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "findMany">>
|
|
45496
|
+
|
|
45497
|
+
/**
|
|
45498
|
+
* Create a Transcript.
|
|
45499
|
+
* @param {TranscriptCreateArgs} args - Arguments to create a Transcript.
|
|
45500
|
+
* @example
|
|
45501
|
+
* // Create one Transcript
|
|
45502
|
+
* const Transcript = await prisma.transcript.create({
|
|
45503
|
+
* data: {
|
|
45504
|
+
* // ... data to create a Transcript
|
|
45505
|
+
* }
|
|
45506
|
+
* })
|
|
45507
|
+
*
|
|
45508
|
+
*/
|
|
45509
|
+
create<T extends TranscriptCreateArgs>(args: SelectSubset<T, TranscriptCreateArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
45510
|
+
|
|
45511
|
+
/**
|
|
45512
|
+
* Create many Transcripts.
|
|
45513
|
+
* @param {TranscriptCreateManyArgs} args - Arguments to create many Transcripts.
|
|
45514
|
+
* @example
|
|
45515
|
+
* // Create many Transcripts
|
|
45516
|
+
* const transcript = await prisma.transcript.createMany({
|
|
45517
|
+
* data: [
|
|
45518
|
+
* // ... provide data here
|
|
45519
|
+
* ]
|
|
45520
|
+
* })
|
|
45521
|
+
*
|
|
45522
|
+
*/
|
|
45523
|
+
createMany<T extends TranscriptCreateManyArgs>(args?: SelectSubset<T, TranscriptCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
45524
|
+
|
|
45525
|
+
/**
|
|
45526
|
+
* Delete a Transcript.
|
|
45527
|
+
* @param {TranscriptDeleteArgs} args - Arguments to delete one Transcript.
|
|
45528
|
+
* @example
|
|
45529
|
+
* // Delete one Transcript
|
|
45530
|
+
* const Transcript = await prisma.transcript.delete({
|
|
45531
|
+
* where: {
|
|
45532
|
+
* // ... filter to delete one Transcript
|
|
45533
|
+
* }
|
|
45534
|
+
* })
|
|
45535
|
+
*
|
|
45536
|
+
*/
|
|
45537
|
+
delete<T extends TranscriptDeleteArgs>(args: SelectSubset<T, TranscriptDeleteArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
45538
|
+
|
|
45539
|
+
/**
|
|
45540
|
+
* Update one Transcript.
|
|
45541
|
+
* @param {TranscriptUpdateArgs} args - Arguments to update one Transcript.
|
|
45542
|
+
* @example
|
|
45543
|
+
* // Update one Transcript
|
|
45544
|
+
* const transcript = await prisma.transcript.update({
|
|
45545
|
+
* where: {
|
|
45546
|
+
* // ... provide filter here
|
|
45547
|
+
* },
|
|
45548
|
+
* data: {
|
|
45549
|
+
* // ... provide data here
|
|
45550
|
+
* }
|
|
45551
|
+
* })
|
|
45552
|
+
*
|
|
45553
|
+
*/
|
|
45554
|
+
update<T extends TranscriptUpdateArgs>(args: SelectSubset<T, TranscriptUpdateArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
45555
|
+
|
|
45556
|
+
/**
|
|
45557
|
+
* Delete zero or more Transcripts.
|
|
45558
|
+
* @param {TranscriptDeleteManyArgs} args - Arguments to filter Transcripts to delete.
|
|
45559
|
+
* @example
|
|
45560
|
+
* // Delete a few Transcripts
|
|
45561
|
+
* const { count } = await prisma.transcript.deleteMany({
|
|
45562
|
+
* where: {
|
|
45563
|
+
* // ... provide filter here
|
|
45564
|
+
* }
|
|
45565
|
+
* })
|
|
45566
|
+
*
|
|
45567
|
+
*/
|
|
45568
|
+
deleteMany<T extends TranscriptDeleteManyArgs>(args?: SelectSubset<T, TranscriptDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
45569
|
+
|
|
45570
|
+
/**
|
|
45571
|
+
* Update zero or more Transcripts.
|
|
45572
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45573
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45574
|
+
* @param {TranscriptUpdateManyArgs} args - Arguments to update one or more rows.
|
|
45575
|
+
* @example
|
|
45576
|
+
* // Update many Transcripts
|
|
45577
|
+
* const transcript = await prisma.transcript.updateMany({
|
|
45578
|
+
* where: {
|
|
45579
|
+
* // ... provide filter here
|
|
45580
|
+
* },
|
|
45581
|
+
* data: {
|
|
45582
|
+
* // ... provide data here
|
|
45583
|
+
* }
|
|
45584
|
+
* })
|
|
45585
|
+
*
|
|
45586
|
+
*/
|
|
45587
|
+
updateMany<T extends TranscriptUpdateManyArgs>(args: SelectSubset<T, TranscriptUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
45588
|
+
|
|
45589
|
+
/**
|
|
45590
|
+
* Create or update one Transcript.
|
|
45591
|
+
* @param {TranscriptUpsertArgs} args - Arguments to update or create a Transcript.
|
|
45592
|
+
* @example
|
|
45593
|
+
* // Update or create a Transcript
|
|
45594
|
+
* const transcript = await prisma.transcript.upsert({
|
|
45595
|
+
* create: {
|
|
45596
|
+
* // ... data to create a Transcript
|
|
45597
|
+
* },
|
|
45598
|
+
* update: {
|
|
45599
|
+
* // ... in case it already exists, update
|
|
45600
|
+
* },
|
|
45601
|
+
* where: {
|
|
45602
|
+
* // ... the filter for the Transcript we want to update
|
|
45603
|
+
* }
|
|
45604
|
+
* })
|
|
45605
|
+
*/
|
|
45606
|
+
upsert<T extends TranscriptUpsertArgs>(args: SelectSubset<T, TranscriptUpsertArgs<ExtArgs>>): Prisma__TranscriptClient<$Result.GetResult<Prisma.$TranscriptPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
45607
|
+
|
|
45608
|
+
/**
|
|
45609
|
+
* Find zero or more Transcripts that matches the filter.
|
|
45610
|
+
* @param {TranscriptFindRawArgs} args - Select which filters you would like to apply.
|
|
45611
|
+
* @example
|
|
45612
|
+
* const transcript = await prisma.transcript.findRaw({
|
|
45613
|
+
* filter: { age: { $gt: 25 } }
|
|
45614
|
+
* })
|
|
45615
|
+
*/
|
|
45616
|
+
findRaw(args?: TranscriptFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
45617
|
+
|
|
45618
|
+
/**
|
|
45619
|
+
* Perform aggregation operations on a Transcript.
|
|
45620
|
+
* @param {TranscriptAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
45621
|
+
* @example
|
|
45622
|
+
* const transcript = await prisma.transcript.aggregateRaw({
|
|
45623
|
+
* pipeline: [
|
|
45624
|
+
* { $match: { status: "registered" } },
|
|
45625
|
+
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
45626
|
+
* ]
|
|
45627
|
+
* })
|
|
45628
|
+
*/
|
|
45629
|
+
aggregateRaw(args?: TranscriptAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
45630
|
+
|
|
45631
|
+
|
|
45632
|
+
/**
|
|
45633
|
+
* Count the number of Transcripts.
|
|
45634
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45635
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45636
|
+
* @param {TranscriptCountArgs} args - Arguments to filter Transcripts to count.
|
|
45637
|
+
* @example
|
|
45638
|
+
* // Count the number of Transcripts
|
|
45639
|
+
* const count = await prisma.transcript.count({
|
|
45640
|
+
* where: {
|
|
45641
|
+
* // ... the filter for the Transcripts we want to count
|
|
45642
|
+
* }
|
|
45643
|
+
* })
|
|
45644
|
+
**/
|
|
45645
|
+
count<T extends TranscriptCountArgs>(
|
|
45646
|
+
args?: Subset<T, TranscriptCountArgs>,
|
|
45647
|
+
): Prisma.PrismaPromise<
|
|
45648
|
+
T extends $Utils.Record<'select', any>
|
|
45649
|
+
? T['select'] extends true
|
|
45650
|
+
? number
|
|
45651
|
+
: GetScalarType<T['select'], TranscriptCountAggregateOutputType>
|
|
45652
|
+
: number
|
|
45653
|
+
>
|
|
45654
|
+
|
|
45655
|
+
/**
|
|
45656
|
+
* Allows you to perform aggregations operations on a Transcript.
|
|
45657
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45658
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45659
|
+
* @param {TranscriptAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
45660
|
+
* @example
|
|
45661
|
+
* // Ordered by age ascending
|
|
45662
|
+
* // Where email contains prisma.io
|
|
45663
|
+
* // Limited to the 10 users
|
|
45664
|
+
* const aggregations = await prisma.user.aggregate({
|
|
45665
|
+
* _avg: {
|
|
45666
|
+
* age: true,
|
|
45667
|
+
* },
|
|
45668
|
+
* where: {
|
|
45669
|
+
* email: {
|
|
45670
|
+
* contains: "prisma.io",
|
|
45671
|
+
* },
|
|
45672
|
+
* },
|
|
45673
|
+
* orderBy: {
|
|
45674
|
+
* age: "asc",
|
|
45675
|
+
* },
|
|
45676
|
+
* take: 10,
|
|
45677
|
+
* })
|
|
45678
|
+
**/
|
|
45679
|
+
aggregate<T extends TranscriptAggregateArgs>(args: Subset<T, TranscriptAggregateArgs>): Prisma.PrismaPromise<GetTranscriptAggregateType<T>>
|
|
45680
|
+
|
|
45681
|
+
/**
|
|
45682
|
+
* Group by Transcript.
|
|
45683
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45684
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45685
|
+
* @param {TranscriptGroupByArgs} args - Group by arguments.
|
|
45686
|
+
* @example
|
|
45687
|
+
* // Group by city, order by createdAt, get count
|
|
45688
|
+
* const result = await prisma.user.groupBy({
|
|
45689
|
+
* by: ['city', 'createdAt'],
|
|
45690
|
+
* orderBy: {
|
|
45691
|
+
* createdAt: true
|
|
45692
|
+
* },
|
|
45693
|
+
* _count: {
|
|
45694
|
+
* _all: true
|
|
45695
|
+
* },
|
|
45696
|
+
* })
|
|
45697
|
+
*
|
|
45698
|
+
**/
|
|
45699
|
+
groupBy<
|
|
45700
|
+
T extends TranscriptGroupByArgs,
|
|
45701
|
+
HasSelectOrTake extends Or<
|
|
45702
|
+
Extends<'skip', Keys<T>>,
|
|
45703
|
+
Extends<'take', Keys<T>>
|
|
45704
|
+
>,
|
|
45705
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
45706
|
+
? { orderBy: TranscriptGroupByArgs['orderBy'] }
|
|
45707
|
+
: { orderBy?: TranscriptGroupByArgs['orderBy'] },
|
|
45708
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
45709
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
45710
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
45711
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
45712
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
45713
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
45714
|
+
InputErrors extends ByEmpty extends True
|
|
45715
|
+
? `Error: "by" must not be empty.`
|
|
45716
|
+
: HavingValid extends False
|
|
45717
|
+
? {
|
|
45718
|
+
[P in HavingFields]: P extends ByFields
|
|
45719
|
+
? never
|
|
45720
|
+
: P extends string
|
|
45721
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
45722
|
+
: [
|
|
45723
|
+
Error,
|
|
45724
|
+
'Field ',
|
|
45725
|
+
P,
|
|
45726
|
+
` in "having" needs to be provided in "by"`,
|
|
45727
|
+
]
|
|
45728
|
+
}[HavingFields]
|
|
45729
|
+
: 'take' extends Keys<T>
|
|
45730
|
+
? 'orderBy' extends Keys<T>
|
|
45731
|
+
? ByValid extends True
|
|
45732
|
+
? {}
|
|
45733
|
+
: {
|
|
45734
|
+
[P in OrderFields]: P extends ByFields
|
|
45735
|
+
? never
|
|
45736
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
45737
|
+
}[OrderFields]
|
|
45738
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
45739
|
+
: 'skip' extends Keys<T>
|
|
45740
|
+
? 'orderBy' extends Keys<T>
|
|
45741
|
+
? ByValid extends True
|
|
45742
|
+
? {}
|
|
45743
|
+
: {
|
|
45744
|
+
[P in OrderFields]: P extends ByFields
|
|
45745
|
+
? never
|
|
45746
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
45747
|
+
}[OrderFields]
|
|
45748
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
45749
|
+
: ByValid extends True
|
|
45750
|
+
? {}
|
|
45751
|
+
: {
|
|
45752
|
+
[P in OrderFields]: P extends ByFields
|
|
45753
|
+
? never
|
|
45754
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
45755
|
+
}[OrderFields]
|
|
45756
|
+
>(args: SubsetIntersection<T, TranscriptGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetTranscriptGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
45757
|
+
/**
|
|
45758
|
+
* Fields of the Transcript model
|
|
45759
|
+
*/
|
|
45760
|
+
readonly fields: TranscriptFieldRefs;
|
|
45761
|
+
}
|
|
45762
|
+
|
|
45763
|
+
/**
|
|
45764
|
+
* The delegate class that acts as a "Promise-like" for Transcript.
|
|
45765
|
+
* Why is this prefixed with `Prisma__`?
|
|
45766
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
45767
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
45768
|
+
*/
|
|
45769
|
+
export interface Prisma__TranscriptClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
45770
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
45771
|
+
recordedCall<T extends Transcript$recordedCallArgs<ExtArgs> = {}>(args?: Subset<T, Transcript$recordedCallArgs<ExtArgs>>): Prisma__RecordedCallClient<$Result.GetResult<Prisma.$RecordedCallPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
45772
|
+
/**
|
|
45773
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
45774
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
45775
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
45776
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
45777
|
+
*/
|
|
45778
|
+
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>
|
|
45779
|
+
/**
|
|
45780
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
45781
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
45782
|
+
* @returns A Promise for the completion of the callback.
|
|
45783
|
+
*/
|
|
45784
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
45785
|
+
/**
|
|
45786
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
45787
|
+
* resolved value cannot be modified from the callback.
|
|
45788
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
45789
|
+
* @returns A Promise for the completion of the callback.
|
|
45790
|
+
*/
|
|
45791
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
45792
|
+
}
|
|
45793
|
+
|
|
45794
|
+
|
|
45795
|
+
|
|
45796
|
+
|
|
45797
|
+
/**
|
|
45798
|
+
* Fields of the Transcript model
|
|
45799
|
+
*/
|
|
45800
|
+
interface TranscriptFieldRefs {
|
|
45801
|
+
readonly id: FieldRef<"Transcript", 'String'>
|
|
45802
|
+
readonly recordedCallId: FieldRef<"Transcript", 'String'>
|
|
45803
|
+
readonly inputBucket: FieldRef<"Transcript", 'String'>
|
|
45804
|
+
readonly inputKey: FieldRef<"Transcript", 'String'>
|
|
45805
|
+
readonly inputRegion: FieldRef<"Transcript", 'String'>
|
|
45806
|
+
readonly inputUrl: FieldRef<"Transcript", 'String'>
|
|
45807
|
+
readonly callbackUrl: FieldRef<"Transcript", 'String'>
|
|
45808
|
+
readonly callbackRef: FieldRef<"Transcript", 'String'>
|
|
45809
|
+
readonly jobStatus: FieldRef<"Transcript", 'String'>
|
|
45810
|
+
readonly transcriptCallType: FieldRef<"Transcript", 'TranscriptCallType'>
|
|
45811
|
+
readonly createdAt: FieldRef<"Transcript", 'DateTime'>
|
|
45812
|
+
readonly updatedAt: FieldRef<"Transcript", 'DateTime'>
|
|
45813
|
+
}
|
|
45814
|
+
|
|
45815
|
+
|
|
45816
|
+
// Custom InputTypes
|
|
45817
|
+
/**
|
|
45818
|
+
* Transcript findUnique
|
|
45819
|
+
*/
|
|
45820
|
+
export type TranscriptFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45821
|
+
/**
|
|
45822
|
+
* Select specific fields to fetch from the Transcript
|
|
45823
|
+
*/
|
|
45824
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
45825
|
+
/**
|
|
45826
|
+
* Choose, which related nodes to fetch as well
|
|
45827
|
+
*/
|
|
45828
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
45829
|
+
/**
|
|
45830
|
+
* Filter, which Transcript to fetch.
|
|
45831
|
+
*/
|
|
45832
|
+
where: TranscriptWhereUniqueInput
|
|
45833
|
+
}
|
|
45834
|
+
|
|
45835
|
+
/**
|
|
45836
|
+
* Transcript findUniqueOrThrow
|
|
45837
|
+
*/
|
|
45838
|
+
export type TranscriptFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45839
|
+
/**
|
|
45840
|
+
* Select specific fields to fetch from the Transcript
|
|
45841
|
+
*/
|
|
45842
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
45843
|
+
/**
|
|
45844
|
+
* Choose, which related nodes to fetch as well
|
|
45845
|
+
*/
|
|
45846
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
45847
|
+
/**
|
|
45848
|
+
* Filter, which Transcript to fetch.
|
|
45849
|
+
*/
|
|
45850
|
+
where: TranscriptWhereUniqueInput
|
|
45851
|
+
}
|
|
45852
|
+
|
|
45853
|
+
/**
|
|
45854
|
+
* Transcript findFirst
|
|
45855
|
+
*/
|
|
45856
|
+
export type TranscriptFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45857
|
+
/**
|
|
45858
|
+
* Select specific fields to fetch from the Transcript
|
|
45859
|
+
*/
|
|
45860
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
45861
|
+
/**
|
|
45862
|
+
* Choose, which related nodes to fetch as well
|
|
45863
|
+
*/
|
|
45864
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
45865
|
+
/**
|
|
45866
|
+
* Filter, which Transcript to fetch.
|
|
45867
|
+
*/
|
|
45868
|
+
where?: TranscriptWhereInput
|
|
45869
|
+
/**
|
|
45870
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
45871
|
+
*
|
|
45872
|
+
* Determine the order of Transcripts to fetch.
|
|
45873
|
+
*/
|
|
45874
|
+
orderBy?: TranscriptOrderByWithRelationInput | TranscriptOrderByWithRelationInput[]
|
|
45875
|
+
/**
|
|
45876
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
45877
|
+
*
|
|
45878
|
+
* Sets the position for searching for Transcripts.
|
|
45879
|
+
*/
|
|
45880
|
+
cursor?: TranscriptWhereUniqueInput
|
|
45881
|
+
/**
|
|
45882
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45883
|
+
*
|
|
45884
|
+
* Take `±n` Transcripts from the position of the cursor.
|
|
45885
|
+
*/
|
|
45886
|
+
take?: number
|
|
45887
|
+
/**
|
|
45888
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45889
|
+
*
|
|
45890
|
+
* Skip the first `n` Transcripts.
|
|
45891
|
+
*/
|
|
45892
|
+
skip?: number
|
|
45893
|
+
/**
|
|
45894
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
45895
|
+
*
|
|
45896
|
+
* Filter by unique combinations of Transcripts.
|
|
45897
|
+
*/
|
|
45898
|
+
distinct?: TranscriptScalarFieldEnum | TranscriptScalarFieldEnum[]
|
|
45899
|
+
}
|
|
45900
|
+
|
|
45901
|
+
/**
|
|
45902
|
+
* Transcript findFirstOrThrow
|
|
45903
|
+
*/
|
|
45904
|
+
export type TranscriptFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45905
|
+
/**
|
|
45906
|
+
* Select specific fields to fetch from the Transcript
|
|
45907
|
+
*/
|
|
45908
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
45909
|
+
/**
|
|
45910
|
+
* Choose, which related nodes to fetch as well
|
|
45911
|
+
*/
|
|
45912
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
45913
|
+
/**
|
|
45914
|
+
* Filter, which Transcript to fetch.
|
|
45915
|
+
*/
|
|
45916
|
+
where?: TranscriptWhereInput
|
|
45917
|
+
/**
|
|
45918
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
45919
|
+
*
|
|
45920
|
+
* Determine the order of Transcripts to fetch.
|
|
45921
|
+
*/
|
|
45922
|
+
orderBy?: TranscriptOrderByWithRelationInput | TranscriptOrderByWithRelationInput[]
|
|
45923
|
+
/**
|
|
45924
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
45925
|
+
*
|
|
45926
|
+
* Sets the position for searching for Transcripts.
|
|
45927
|
+
*/
|
|
45928
|
+
cursor?: TranscriptWhereUniqueInput
|
|
45929
|
+
/**
|
|
45930
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45931
|
+
*
|
|
45932
|
+
* Take `±n` Transcripts from the position of the cursor.
|
|
45933
|
+
*/
|
|
45934
|
+
take?: number
|
|
45935
|
+
/**
|
|
45936
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45937
|
+
*
|
|
45938
|
+
* Skip the first `n` Transcripts.
|
|
45939
|
+
*/
|
|
45940
|
+
skip?: number
|
|
45941
|
+
/**
|
|
45942
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
45943
|
+
*
|
|
45944
|
+
* Filter by unique combinations of Transcripts.
|
|
45945
|
+
*/
|
|
45946
|
+
distinct?: TranscriptScalarFieldEnum | TranscriptScalarFieldEnum[]
|
|
45947
|
+
}
|
|
45948
|
+
|
|
45949
|
+
/**
|
|
45950
|
+
* Transcript findMany
|
|
45951
|
+
*/
|
|
45952
|
+
export type TranscriptFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45953
|
+
/**
|
|
45954
|
+
* Select specific fields to fetch from the Transcript
|
|
45955
|
+
*/
|
|
45956
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
45957
|
+
/**
|
|
45958
|
+
* Choose, which related nodes to fetch as well
|
|
45959
|
+
*/
|
|
45960
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
45961
|
+
/**
|
|
45962
|
+
* Filter, which Transcripts to fetch.
|
|
45963
|
+
*/
|
|
45964
|
+
where?: TranscriptWhereInput
|
|
45965
|
+
/**
|
|
45966
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
45967
|
+
*
|
|
45968
|
+
* Determine the order of Transcripts to fetch.
|
|
45969
|
+
*/
|
|
45970
|
+
orderBy?: TranscriptOrderByWithRelationInput | TranscriptOrderByWithRelationInput[]
|
|
45971
|
+
/**
|
|
45972
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
45973
|
+
*
|
|
45974
|
+
* Sets the position for listing Transcripts.
|
|
45975
|
+
*/
|
|
45976
|
+
cursor?: TranscriptWhereUniqueInput
|
|
45977
|
+
/**
|
|
45978
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45979
|
+
*
|
|
45980
|
+
* Take `±n` Transcripts from the position of the cursor.
|
|
45981
|
+
*/
|
|
45982
|
+
take?: number
|
|
45983
|
+
/**
|
|
45984
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45985
|
+
*
|
|
45986
|
+
* Skip the first `n` Transcripts.
|
|
45987
|
+
*/
|
|
45988
|
+
skip?: number
|
|
45989
|
+
distinct?: TranscriptScalarFieldEnum | TranscriptScalarFieldEnum[]
|
|
45990
|
+
}
|
|
45991
|
+
|
|
45992
|
+
/**
|
|
45993
|
+
* Transcript create
|
|
45994
|
+
*/
|
|
45995
|
+
export type TranscriptCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45996
|
+
/**
|
|
45997
|
+
* Select specific fields to fetch from the Transcript
|
|
45998
|
+
*/
|
|
45999
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
46000
|
+
/**
|
|
46001
|
+
* Choose, which related nodes to fetch as well
|
|
46002
|
+
*/
|
|
46003
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
46004
|
+
/**
|
|
46005
|
+
* The data needed to create a Transcript.
|
|
46006
|
+
*/
|
|
46007
|
+
data: XOR<TranscriptCreateInput, TranscriptUncheckedCreateInput>
|
|
46008
|
+
}
|
|
46009
|
+
|
|
46010
|
+
/**
|
|
46011
|
+
* Transcript createMany
|
|
46012
|
+
*/
|
|
46013
|
+
export type TranscriptCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46014
|
+
/**
|
|
46015
|
+
* The data used to create many Transcripts.
|
|
46016
|
+
*/
|
|
46017
|
+
data: TranscriptCreateManyInput | TranscriptCreateManyInput[]
|
|
46018
|
+
}
|
|
46019
|
+
|
|
46020
|
+
/**
|
|
46021
|
+
* Transcript update
|
|
46022
|
+
*/
|
|
46023
|
+
export type TranscriptUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46024
|
+
/**
|
|
46025
|
+
* Select specific fields to fetch from the Transcript
|
|
46026
|
+
*/
|
|
46027
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
46028
|
+
/**
|
|
46029
|
+
* Choose, which related nodes to fetch as well
|
|
46030
|
+
*/
|
|
46031
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
46032
|
+
/**
|
|
46033
|
+
* The data needed to update a Transcript.
|
|
46034
|
+
*/
|
|
46035
|
+
data: XOR<TranscriptUpdateInput, TranscriptUncheckedUpdateInput>
|
|
46036
|
+
/**
|
|
46037
|
+
* Choose, which Transcript to update.
|
|
46038
|
+
*/
|
|
46039
|
+
where: TranscriptWhereUniqueInput
|
|
46040
|
+
}
|
|
46041
|
+
|
|
46042
|
+
/**
|
|
46043
|
+
* Transcript updateMany
|
|
46044
|
+
*/
|
|
46045
|
+
export type TranscriptUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46046
|
+
/**
|
|
46047
|
+
* The data used to update Transcripts.
|
|
46048
|
+
*/
|
|
46049
|
+
data: XOR<TranscriptUpdateManyMutationInput, TranscriptUncheckedUpdateManyInput>
|
|
46050
|
+
/**
|
|
46051
|
+
* Filter which Transcripts to update
|
|
46052
|
+
*/
|
|
46053
|
+
where?: TranscriptWhereInput
|
|
46054
|
+
}
|
|
46055
|
+
|
|
46056
|
+
/**
|
|
46057
|
+
* Transcript upsert
|
|
46058
|
+
*/
|
|
46059
|
+
export type TranscriptUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46060
|
+
/**
|
|
46061
|
+
* Select specific fields to fetch from the Transcript
|
|
46062
|
+
*/
|
|
46063
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
46064
|
+
/**
|
|
46065
|
+
* Choose, which related nodes to fetch as well
|
|
46066
|
+
*/
|
|
46067
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
46068
|
+
/**
|
|
46069
|
+
* The filter to search for the Transcript to update in case it exists.
|
|
46070
|
+
*/
|
|
46071
|
+
where: TranscriptWhereUniqueInput
|
|
46072
|
+
/**
|
|
46073
|
+
* In case the Transcript found by the `where` argument doesn't exist, create a new Transcript with this data.
|
|
46074
|
+
*/
|
|
46075
|
+
create: XOR<TranscriptCreateInput, TranscriptUncheckedCreateInput>
|
|
46076
|
+
/**
|
|
46077
|
+
* In case the Transcript was found with the provided `where` argument, update it with this data.
|
|
46078
|
+
*/
|
|
46079
|
+
update: XOR<TranscriptUpdateInput, TranscriptUncheckedUpdateInput>
|
|
46080
|
+
}
|
|
46081
|
+
|
|
46082
|
+
/**
|
|
46083
|
+
* Transcript delete
|
|
46084
|
+
*/
|
|
46085
|
+
export type TranscriptDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46086
|
+
/**
|
|
46087
|
+
* Select specific fields to fetch from the Transcript
|
|
46088
|
+
*/
|
|
46089
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
46090
|
+
/**
|
|
46091
|
+
* Choose, which related nodes to fetch as well
|
|
46092
|
+
*/
|
|
46093
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
46094
|
+
/**
|
|
46095
|
+
* Filter which Transcript to delete.
|
|
46096
|
+
*/
|
|
46097
|
+
where: TranscriptWhereUniqueInput
|
|
46098
|
+
}
|
|
46099
|
+
|
|
46100
|
+
/**
|
|
46101
|
+
* Transcript deleteMany
|
|
46102
|
+
*/
|
|
46103
|
+
export type TranscriptDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46104
|
+
/**
|
|
46105
|
+
* Filter which Transcripts to delete
|
|
46106
|
+
*/
|
|
46107
|
+
where?: TranscriptWhereInput
|
|
46108
|
+
}
|
|
46109
|
+
|
|
46110
|
+
/**
|
|
46111
|
+
* Transcript findRaw
|
|
46112
|
+
*/
|
|
46113
|
+
export type TranscriptFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46114
|
+
/**
|
|
46115
|
+
* 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}.
|
|
46116
|
+
*/
|
|
46117
|
+
filter?: InputJsonValue
|
|
46118
|
+
/**
|
|
46119
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
46120
|
+
*/
|
|
46121
|
+
options?: InputJsonValue
|
|
46122
|
+
}
|
|
46123
|
+
|
|
46124
|
+
/**
|
|
46125
|
+
* Transcript aggregateRaw
|
|
46126
|
+
*/
|
|
46127
|
+
export type TranscriptAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46128
|
+
/**
|
|
46129
|
+
* 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}.
|
|
46130
|
+
*/
|
|
46131
|
+
pipeline?: InputJsonValue[]
|
|
46132
|
+
/**
|
|
46133
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
46134
|
+
*/
|
|
46135
|
+
options?: InputJsonValue
|
|
46136
|
+
}
|
|
46137
|
+
|
|
46138
|
+
/**
|
|
46139
|
+
* Transcript.recordedCall
|
|
46140
|
+
*/
|
|
46141
|
+
export type Transcript$recordedCallArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46142
|
+
/**
|
|
46143
|
+
* Select specific fields to fetch from the RecordedCall
|
|
46144
|
+
*/
|
|
46145
|
+
select?: RecordedCallSelect<ExtArgs> | null
|
|
46146
|
+
/**
|
|
46147
|
+
* Choose, which related nodes to fetch as well
|
|
46148
|
+
*/
|
|
46149
|
+
include?: RecordedCallInclude<ExtArgs> | null
|
|
46150
|
+
where?: RecordedCallWhereInput
|
|
46151
|
+
}
|
|
46152
|
+
|
|
46153
|
+
/**
|
|
46154
|
+
* Transcript without action
|
|
46155
|
+
*/
|
|
46156
|
+
export type TranscriptDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46157
|
+
/**
|
|
46158
|
+
* Select specific fields to fetch from the Transcript
|
|
46159
|
+
*/
|
|
46160
|
+
select?: TranscriptSelect<ExtArgs> | null
|
|
46161
|
+
/**
|
|
46162
|
+
* Choose, which related nodes to fetch as well
|
|
46163
|
+
*/
|
|
46164
|
+
include?: TranscriptInclude<ExtArgs> | null
|
|
46165
|
+
}
|
|
46166
|
+
|
|
46167
|
+
|
|
44985
46168
|
/**
|
|
44986
46169
|
* Model User
|
|
44987
46170
|
*/
|
|
@@ -49219,6 +50402,24 @@ export namespace Prisma {
|
|
|
49219
50402
|
export type TalentIndustryScalarFieldEnum = (typeof TalentIndustryScalarFieldEnum)[keyof typeof TalentIndustryScalarFieldEnum]
|
|
49220
50403
|
|
|
49221
50404
|
|
|
50405
|
+
export const TranscriptScalarFieldEnum: {
|
|
50406
|
+
id: 'id',
|
|
50407
|
+
recordedCallId: 'recordedCallId',
|
|
50408
|
+
inputBucket: 'inputBucket',
|
|
50409
|
+
inputKey: 'inputKey',
|
|
50410
|
+
inputRegion: 'inputRegion',
|
|
50411
|
+
inputUrl: 'inputUrl',
|
|
50412
|
+
callbackUrl: 'callbackUrl',
|
|
50413
|
+
callbackRef: 'callbackRef',
|
|
50414
|
+
jobStatus: 'jobStatus',
|
|
50415
|
+
transcriptCallType: 'transcriptCallType',
|
|
50416
|
+
createdAt: 'createdAt',
|
|
50417
|
+
updatedAt: 'updatedAt'
|
|
50418
|
+
};
|
|
50419
|
+
|
|
50420
|
+
export type TranscriptScalarFieldEnum = (typeof TranscriptScalarFieldEnum)[keyof typeof TranscriptScalarFieldEnum]
|
|
50421
|
+
|
|
50422
|
+
|
|
49222
50423
|
export const UserScalarFieldEnum: {
|
|
49223
50424
|
id: 'id',
|
|
49224
50425
|
firstName: 'firstName',
|
|
@@ -49711,6 +50912,20 @@ export namespace Prisma {
|
|
|
49711
50912
|
|
|
49712
50913
|
|
|
49713
50914
|
|
|
50915
|
+
/**
|
|
50916
|
+
* Reference to a field of type 'TranscriptCallType'
|
|
50917
|
+
*/
|
|
50918
|
+
export type EnumTranscriptCallTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TranscriptCallType'>
|
|
50919
|
+
|
|
50920
|
+
|
|
50921
|
+
|
|
50922
|
+
/**
|
|
50923
|
+
* Reference to a field of type 'TranscriptCallType[]'
|
|
50924
|
+
*/
|
|
50925
|
+
export type ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'TranscriptCallType[]'>
|
|
50926
|
+
|
|
50927
|
+
|
|
50928
|
+
|
|
49714
50929
|
/**
|
|
49715
50930
|
* Reference to a field of type 'UserStatus'
|
|
49716
50931
|
*/
|
|
@@ -52580,6 +53795,7 @@ export namespace Prisma {
|
|
|
52580
53795
|
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
52581
53796
|
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
52582
53797
|
calendarEventVideoCallDataId?: StringNullableFilter<"RecordedCall"> | string | null
|
|
53798
|
+
transcripts?: TranscriptListRelationFilter
|
|
52583
53799
|
}
|
|
52584
53800
|
|
|
52585
53801
|
export type RecordedCallOrderByWithRelationInput = {
|
|
@@ -52597,6 +53813,7 @@ export namespace Prisma {
|
|
|
52597
53813
|
createdAt?: SortOrder
|
|
52598
53814
|
updatedAt?: SortOrder
|
|
52599
53815
|
calendarEventVideoCallDataId?: SortOrder
|
|
53816
|
+
transcripts?: TranscriptOrderByRelationAggregateInput
|
|
52600
53817
|
}
|
|
52601
53818
|
|
|
52602
53819
|
export type RecordedCallWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -52617,6 +53834,7 @@ export namespace Prisma {
|
|
|
52617
53834
|
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
52618
53835
|
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
52619
53836
|
calendarEventVideoCallDataId?: StringNullableFilter<"RecordedCall"> | string | null
|
|
53837
|
+
transcripts?: TranscriptListRelationFilter
|
|
52620
53838
|
}, "id">
|
|
52621
53839
|
|
|
52622
53840
|
export type RecordedCallOrderByWithAggregationInput = {
|
|
@@ -53079,6 +54297,96 @@ export namespace Prisma {
|
|
|
53079
54297
|
textId?: StringWithAggregatesFilter<"TalentIndustry"> | string
|
|
53080
54298
|
}
|
|
53081
54299
|
|
|
54300
|
+
export type TranscriptWhereInput = {
|
|
54301
|
+
AND?: TranscriptWhereInput | TranscriptWhereInput[]
|
|
54302
|
+
OR?: TranscriptWhereInput[]
|
|
54303
|
+
NOT?: TranscriptWhereInput | TranscriptWhereInput[]
|
|
54304
|
+
id?: StringFilter<"Transcript"> | string
|
|
54305
|
+
recordedCallId?: StringNullableFilter<"Transcript"> | string | null
|
|
54306
|
+
inputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
54307
|
+
inputKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54308
|
+
inputRegion?: StringNullableFilter<"Transcript"> | string | null
|
|
54309
|
+
inputUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
54310
|
+
callbackUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
54311
|
+
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
54312
|
+
jobStatus?: StringFilter<"Transcript"> | string
|
|
54313
|
+
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54314
|
+
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54315
|
+
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54316
|
+
recordedCall?: XOR<RecordedCallNullableRelationFilter, RecordedCallWhereInput> | null
|
|
54317
|
+
}
|
|
54318
|
+
|
|
54319
|
+
export type TranscriptOrderByWithRelationInput = {
|
|
54320
|
+
id?: SortOrder
|
|
54321
|
+
recordedCallId?: SortOrder
|
|
54322
|
+
inputBucket?: SortOrder
|
|
54323
|
+
inputKey?: SortOrder
|
|
54324
|
+
inputRegion?: SortOrder
|
|
54325
|
+
inputUrl?: SortOrder
|
|
54326
|
+
callbackUrl?: SortOrder
|
|
54327
|
+
callbackRef?: SortOrder
|
|
54328
|
+
jobStatus?: SortOrder
|
|
54329
|
+
transcriptCallType?: SortOrder
|
|
54330
|
+
createdAt?: SortOrder
|
|
54331
|
+
updatedAt?: SortOrder
|
|
54332
|
+
recordedCall?: RecordedCallOrderByWithRelationInput
|
|
54333
|
+
}
|
|
54334
|
+
|
|
54335
|
+
export type TranscriptWhereUniqueInput = Prisma.AtLeast<{
|
|
54336
|
+
id?: string
|
|
54337
|
+
AND?: TranscriptWhereInput | TranscriptWhereInput[]
|
|
54338
|
+
OR?: TranscriptWhereInput[]
|
|
54339
|
+
NOT?: TranscriptWhereInput | TranscriptWhereInput[]
|
|
54340
|
+
recordedCallId?: StringNullableFilter<"Transcript"> | string | null
|
|
54341
|
+
inputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
54342
|
+
inputKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54343
|
+
inputRegion?: StringNullableFilter<"Transcript"> | string | null
|
|
54344
|
+
inputUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
54345
|
+
callbackUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
54346
|
+
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
54347
|
+
jobStatus?: StringFilter<"Transcript"> | string
|
|
54348
|
+
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54349
|
+
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54350
|
+
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54351
|
+
recordedCall?: XOR<RecordedCallNullableRelationFilter, RecordedCallWhereInput> | null
|
|
54352
|
+
}, "id">
|
|
54353
|
+
|
|
54354
|
+
export type TranscriptOrderByWithAggregationInput = {
|
|
54355
|
+
id?: SortOrder
|
|
54356
|
+
recordedCallId?: SortOrder
|
|
54357
|
+
inputBucket?: SortOrder
|
|
54358
|
+
inputKey?: SortOrder
|
|
54359
|
+
inputRegion?: SortOrder
|
|
54360
|
+
inputUrl?: SortOrder
|
|
54361
|
+
callbackUrl?: SortOrder
|
|
54362
|
+
callbackRef?: SortOrder
|
|
54363
|
+
jobStatus?: SortOrder
|
|
54364
|
+
transcriptCallType?: SortOrder
|
|
54365
|
+
createdAt?: SortOrder
|
|
54366
|
+
updatedAt?: SortOrder
|
|
54367
|
+
_count?: TranscriptCountOrderByAggregateInput
|
|
54368
|
+
_max?: TranscriptMaxOrderByAggregateInput
|
|
54369
|
+
_min?: TranscriptMinOrderByAggregateInput
|
|
54370
|
+
}
|
|
54371
|
+
|
|
54372
|
+
export type TranscriptScalarWhereWithAggregatesInput = {
|
|
54373
|
+
AND?: TranscriptScalarWhereWithAggregatesInput | TranscriptScalarWhereWithAggregatesInput[]
|
|
54374
|
+
OR?: TranscriptScalarWhereWithAggregatesInput[]
|
|
54375
|
+
NOT?: TranscriptScalarWhereWithAggregatesInput | TranscriptScalarWhereWithAggregatesInput[]
|
|
54376
|
+
id?: StringWithAggregatesFilter<"Transcript"> | string
|
|
54377
|
+
recordedCallId?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54378
|
+
inputBucket?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54379
|
+
inputKey?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54380
|
+
inputRegion?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54381
|
+
inputUrl?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54382
|
+
callbackUrl?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54383
|
+
callbackRef?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54384
|
+
jobStatus?: StringWithAggregatesFilter<"Transcript"> | string
|
|
54385
|
+
transcriptCallType?: EnumTranscriptCallTypeNullableWithAggregatesFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54386
|
+
createdAt?: DateTimeWithAggregatesFilter<"Transcript"> | Date | string
|
|
54387
|
+
updatedAt?: DateTimeWithAggregatesFilter<"Transcript"> | Date | string
|
|
54388
|
+
}
|
|
54389
|
+
|
|
53082
54390
|
export type UserWhereInput = {
|
|
53083
54391
|
AND?: UserWhereInput | UserWhereInput[]
|
|
53084
54392
|
OR?: UserWhereInput[]
|
|
@@ -56465,6 +57773,7 @@ export namespace Prisma {
|
|
|
56465
57773
|
createdAt?: Date | string
|
|
56466
57774
|
updatedAt?: Date | string
|
|
56467
57775
|
calendarEventVideoCallDataId?: string | null
|
|
57776
|
+
transcripts?: TranscriptCreateNestedManyWithoutRecordedCallInput
|
|
56468
57777
|
}
|
|
56469
57778
|
|
|
56470
57779
|
export type RecordedCallUncheckedCreateInput = {
|
|
@@ -56482,6 +57791,7 @@ export namespace Prisma {
|
|
|
56482
57791
|
createdAt?: Date | string
|
|
56483
57792
|
updatedAt?: Date | string
|
|
56484
57793
|
calendarEventVideoCallDataId?: string | null
|
|
57794
|
+
transcripts?: TranscriptUncheckedCreateNestedManyWithoutRecordedCallInput
|
|
56485
57795
|
}
|
|
56486
57796
|
|
|
56487
57797
|
export type RecordedCallUpdateInput = {
|
|
@@ -56498,6 +57808,7 @@ export namespace Prisma {
|
|
|
56498
57808
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
56499
57809
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
56500
57810
|
calendarEventVideoCallDataId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57811
|
+
transcripts?: TranscriptUpdateManyWithoutRecordedCallNestedInput
|
|
56501
57812
|
}
|
|
56502
57813
|
|
|
56503
57814
|
export type RecordedCallUncheckedUpdateInput = {
|
|
@@ -56514,6 +57825,7 @@ export namespace Prisma {
|
|
|
56514
57825
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
56515
57826
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
56516
57827
|
calendarEventVideoCallDataId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
57828
|
+
transcripts?: TranscriptUncheckedUpdateManyWithoutRecordedCallNestedInput
|
|
56517
57829
|
}
|
|
56518
57830
|
|
|
56519
57831
|
export type RecordedCallCreateManyInput = {
|
|
@@ -57036,6 +58348,106 @@ export namespace Prisma {
|
|
|
57036
58348
|
textId?: StringFieldUpdateOperationsInput | string
|
|
57037
58349
|
}
|
|
57038
58350
|
|
|
58351
|
+
export type TranscriptCreateInput = {
|
|
58352
|
+
id?: string
|
|
58353
|
+
inputBucket?: string | null
|
|
58354
|
+
inputKey?: string | null
|
|
58355
|
+
inputRegion?: string | null
|
|
58356
|
+
inputUrl?: string | null
|
|
58357
|
+
callbackUrl?: string | null
|
|
58358
|
+
callbackRef?: string | null
|
|
58359
|
+
jobStatus: string
|
|
58360
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58361
|
+
createdAt?: Date | string
|
|
58362
|
+
updatedAt?: Date | string
|
|
58363
|
+
recordedCall?: RecordedCallCreateNestedOneWithoutTranscriptsInput
|
|
58364
|
+
}
|
|
58365
|
+
|
|
58366
|
+
export type TranscriptUncheckedCreateInput = {
|
|
58367
|
+
id?: string
|
|
58368
|
+
recordedCallId?: string | null
|
|
58369
|
+
inputBucket?: string | null
|
|
58370
|
+
inputKey?: string | null
|
|
58371
|
+
inputRegion?: string | null
|
|
58372
|
+
inputUrl?: string | null
|
|
58373
|
+
callbackUrl?: string | null
|
|
58374
|
+
callbackRef?: string | null
|
|
58375
|
+
jobStatus: string
|
|
58376
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58377
|
+
createdAt?: Date | string
|
|
58378
|
+
updatedAt?: Date | string
|
|
58379
|
+
}
|
|
58380
|
+
|
|
58381
|
+
export type TranscriptUpdateInput = {
|
|
58382
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58383
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58384
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58385
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58386
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58387
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58388
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58389
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58390
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58391
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58392
|
+
recordedCall?: RecordedCallUpdateOneWithoutTranscriptsNestedInput
|
|
58393
|
+
}
|
|
58394
|
+
|
|
58395
|
+
export type TranscriptUncheckedUpdateInput = {
|
|
58396
|
+
recordedCallId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58397
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58398
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58399
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58400
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58401
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58402
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58403
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58404
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58405
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58406
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58407
|
+
}
|
|
58408
|
+
|
|
58409
|
+
export type TranscriptCreateManyInput = {
|
|
58410
|
+
id?: string
|
|
58411
|
+
recordedCallId?: string | null
|
|
58412
|
+
inputBucket?: string | null
|
|
58413
|
+
inputKey?: string | null
|
|
58414
|
+
inputRegion?: string | null
|
|
58415
|
+
inputUrl?: string | null
|
|
58416
|
+
callbackUrl?: string | null
|
|
58417
|
+
callbackRef?: string | null
|
|
58418
|
+
jobStatus: string
|
|
58419
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58420
|
+
createdAt?: Date | string
|
|
58421
|
+
updatedAt?: Date | string
|
|
58422
|
+
}
|
|
58423
|
+
|
|
58424
|
+
export type TranscriptUpdateManyMutationInput = {
|
|
58425
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58426
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58427
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58428
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58429
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58430
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58431
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58432
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58433
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58434
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58435
|
+
}
|
|
58436
|
+
|
|
58437
|
+
export type TranscriptUncheckedUpdateManyInput = {
|
|
58438
|
+
recordedCallId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58439
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58440
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58441
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58442
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58443
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58444
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58445
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58446
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58447
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58448
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58449
|
+
}
|
|
58450
|
+
|
|
57039
58451
|
export type UserCreateInput = {
|
|
57040
58452
|
id?: string
|
|
57041
58453
|
firstName?: string | null
|
|
@@ -60733,10 +62145,20 @@ export namespace Prisma {
|
|
|
60733
62145
|
not?: NestedEnumPlatformRecordedOnFilter<$PrismaModel> | $Enums.PlatformRecordedOn
|
|
60734
62146
|
}
|
|
60735
62147
|
|
|
62148
|
+
export type TranscriptListRelationFilter = {
|
|
62149
|
+
every?: TranscriptWhereInput
|
|
62150
|
+
some?: TranscriptWhereInput
|
|
62151
|
+
none?: TranscriptWhereInput
|
|
62152
|
+
}
|
|
62153
|
+
|
|
60736
62154
|
export type CallParticipantOrderByCompositeAggregateInput = {
|
|
60737
62155
|
_count?: SortOrder
|
|
60738
62156
|
}
|
|
60739
62157
|
|
|
62158
|
+
export type TranscriptOrderByRelationAggregateInput = {
|
|
62159
|
+
_count?: SortOrder
|
|
62160
|
+
}
|
|
62161
|
+
|
|
60740
62162
|
export type RecordedCallCountOrderByAggregateInput = {
|
|
60741
62163
|
id?: SortOrder
|
|
60742
62164
|
callMeetingTitle?: SortOrder
|
|
@@ -61183,6 +62605,75 @@ export namespace Prisma {
|
|
|
61183
62605
|
textId?: SortOrder
|
|
61184
62606
|
}
|
|
61185
62607
|
|
|
62608
|
+
export type EnumTranscriptCallTypeNullableFilter<$PrismaModel = never> = {
|
|
62609
|
+
equals?: $Enums.TranscriptCallType | EnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62610
|
+
in?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62611
|
+
notIn?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62612
|
+
not?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel> | $Enums.TranscriptCallType | null
|
|
62613
|
+
isSet?: boolean
|
|
62614
|
+
}
|
|
62615
|
+
|
|
62616
|
+
export type RecordedCallNullableRelationFilter = {
|
|
62617
|
+
is?: RecordedCallWhereInput | null
|
|
62618
|
+
isNot?: RecordedCallWhereInput | null
|
|
62619
|
+
}
|
|
62620
|
+
|
|
62621
|
+
export type TranscriptCountOrderByAggregateInput = {
|
|
62622
|
+
id?: SortOrder
|
|
62623
|
+
recordedCallId?: SortOrder
|
|
62624
|
+
inputBucket?: SortOrder
|
|
62625
|
+
inputKey?: SortOrder
|
|
62626
|
+
inputRegion?: SortOrder
|
|
62627
|
+
inputUrl?: SortOrder
|
|
62628
|
+
callbackUrl?: SortOrder
|
|
62629
|
+
callbackRef?: SortOrder
|
|
62630
|
+
jobStatus?: SortOrder
|
|
62631
|
+
transcriptCallType?: SortOrder
|
|
62632
|
+
createdAt?: SortOrder
|
|
62633
|
+
updatedAt?: SortOrder
|
|
62634
|
+
}
|
|
62635
|
+
|
|
62636
|
+
export type TranscriptMaxOrderByAggregateInput = {
|
|
62637
|
+
id?: SortOrder
|
|
62638
|
+
recordedCallId?: SortOrder
|
|
62639
|
+
inputBucket?: SortOrder
|
|
62640
|
+
inputKey?: SortOrder
|
|
62641
|
+
inputRegion?: SortOrder
|
|
62642
|
+
inputUrl?: SortOrder
|
|
62643
|
+
callbackUrl?: SortOrder
|
|
62644
|
+
callbackRef?: SortOrder
|
|
62645
|
+
jobStatus?: SortOrder
|
|
62646
|
+
transcriptCallType?: SortOrder
|
|
62647
|
+
createdAt?: SortOrder
|
|
62648
|
+
updatedAt?: SortOrder
|
|
62649
|
+
}
|
|
62650
|
+
|
|
62651
|
+
export type TranscriptMinOrderByAggregateInput = {
|
|
62652
|
+
id?: SortOrder
|
|
62653
|
+
recordedCallId?: SortOrder
|
|
62654
|
+
inputBucket?: SortOrder
|
|
62655
|
+
inputKey?: SortOrder
|
|
62656
|
+
inputRegion?: SortOrder
|
|
62657
|
+
inputUrl?: SortOrder
|
|
62658
|
+
callbackUrl?: SortOrder
|
|
62659
|
+
callbackRef?: SortOrder
|
|
62660
|
+
jobStatus?: SortOrder
|
|
62661
|
+
transcriptCallType?: SortOrder
|
|
62662
|
+
createdAt?: SortOrder
|
|
62663
|
+
updatedAt?: SortOrder
|
|
62664
|
+
}
|
|
62665
|
+
|
|
62666
|
+
export type EnumTranscriptCallTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
62667
|
+
equals?: $Enums.TranscriptCallType | EnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62668
|
+
in?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62669
|
+
notIn?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62670
|
+
not?: NestedEnumTranscriptCallTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.TranscriptCallType | null
|
|
62671
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
62672
|
+
_min?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel>
|
|
62673
|
+
_max?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel>
|
|
62674
|
+
isSet?: boolean
|
|
62675
|
+
}
|
|
62676
|
+
|
|
61186
62677
|
export type EnumUserStatusFilter<$PrismaModel = never> = {
|
|
61187
62678
|
equals?: $Enums.UserStatus | EnumUserStatusFieldRefInput<$PrismaModel>
|
|
61188
62679
|
in?: $Enums.UserStatus[] | ListEnumUserStatusFieldRefInput<$PrismaModel>
|
|
@@ -64489,6 +65980,20 @@ export namespace Prisma {
|
|
|
64489
65980
|
email: string
|
|
64490
65981
|
}
|
|
64491
65982
|
|
|
65983
|
+
export type TranscriptCreateNestedManyWithoutRecordedCallInput = {
|
|
65984
|
+
create?: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput> | TranscriptCreateWithoutRecordedCallInput[] | TranscriptUncheckedCreateWithoutRecordedCallInput[]
|
|
65985
|
+
connectOrCreate?: TranscriptCreateOrConnectWithoutRecordedCallInput | TranscriptCreateOrConnectWithoutRecordedCallInput[]
|
|
65986
|
+
createMany?: TranscriptCreateManyRecordedCallInputEnvelope
|
|
65987
|
+
connect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
65988
|
+
}
|
|
65989
|
+
|
|
65990
|
+
export type TranscriptUncheckedCreateNestedManyWithoutRecordedCallInput = {
|
|
65991
|
+
create?: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput> | TranscriptCreateWithoutRecordedCallInput[] | TranscriptUncheckedCreateWithoutRecordedCallInput[]
|
|
65992
|
+
connectOrCreate?: TranscriptCreateOrConnectWithoutRecordedCallInput | TranscriptCreateOrConnectWithoutRecordedCallInput[]
|
|
65993
|
+
createMany?: TranscriptCreateManyRecordedCallInputEnvelope
|
|
65994
|
+
connect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
65995
|
+
}
|
|
65996
|
+
|
|
64492
65997
|
export type CallParticipantListUpdateEnvelopeInput = {
|
|
64493
65998
|
set?: CallParticipantCreateInput | CallParticipantCreateInput[]
|
|
64494
65999
|
push?: CallParticipantCreateInput | CallParticipantCreateInput[]
|
|
@@ -64500,6 +66005,34 @@ export namespace Prisma {
|
|
|
64500
66005
|
set?: $Enums.PlatformRecordedOn
|
|
64501
66006
|
}
|
|
64502
66007
|
|
|
66008
|
+
export type TranscriptUpdateManyWithoutRecordedCallNestedInput = {
|
|
66009
|
+
create?: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput> | TranscriptCreateWithoutRecordedCallInput[] | TranscriptUncheckedCreateWithoutRecordedCallInput[]
|
|
66010
|
+
connectOrCreate?: TranscriptCreateOrConnectWithoutRecordedCallInput | TranscriptCreateOrConnectWithoutRecordedCallInput[]
|
|
66011
|
+
upsert?: TranscriptUpsertWithWhereUniqueWithoutRecordedCallInput | TranscriptUpsertWithWhereUniqueWithoutRecordedCallInput[]
|
|
66012
|
+
createMany?: TranscriptCreateManyRecordedCallInputEnvelope
|
|
66013
|
+
set?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66014
|
+
disconnect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66015
|
+
delete?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66016
|
+
connect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66017
|
+
update?: TranscriptUpdateWithWhereUniqueWithoutRecordedCallInput | TranscriptUpdateWithWhereUniqueWithoutRecordedCallInput[]
|
|
66018
|
+
updateMany?: TranscriptUpdateManyWithWhereWithoutRecordedCallInput | TranscriptUpdateManyWithWhereWithoutRecordedCallInput[]
|
|
66019
|
+
deleteMany?: TranscriptScalarWhereInput | TranscriptScalarWhereInput[]
|
|
66020
|
+
}
|
|
66021
|
+
|
|
66022
|
+
export type TranscriptUncheckedUpdateManyWithoutRecordedCallNestedInput = {
|
|
66023
|
+
create?: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput> | TranscriptCreateWithoutRecordedCallInput[] | TranscriptUncheckedCreateWithoutRecordedCallInput[]
|
|
66024
|
+
connectOrCreate?: TranscriptCreateOrConnectWithoutRecordedCallInput | TranscriptCreateOrConnectWithoutRecordedCallInput[]
|
|
66025
|
+
upsert?: TranscriptUpsertWithWhereUniqueWithoutRecordedCallInput | TranscriptUpsertWithWhereUniqueWithoutRecordedCallInput[]
|
|
66026
|
+
createMany?: TranscriptCreateManyRecordedCallInputEnvelope
|
|
66027
|
+
set?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66028
|
+
disconnect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66029
|
+
delete?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66030
|
+
connect?: TranscriptWhereUniqueInput | TranscriptWhereUniqueInput[]
|
|
66031
|
+
update?: TranscriptUpdateWithWhereUniqueWithoutRecordedCallInput | TranscriptUpdateWithWhereUniqueWithoutRecordedCallInput[]
|
|
66032
|
+
updateMany?: TranscriptUpdateManyWithWhereWithoutRecordedCallInput | TranscriptUpdateManyWithWhereWithoutRecordedCallInput[]
|
|
66033
|
+
deleteMany?: TranscriptScalarWhereInput | TranscriptScalarWhereInput[]
|
|
66034
|
+
}
|
|
66035
|
+
|
|
64503
66036
|
export type RoleCategoryCreateanchorsInput = {
|
|
64504
66037
|
set: string[]
|
|
64505
66038
|
}
|
|
@@ -64771,6 +66304,27 @@ export namespace Prisma {
|
|
|
64771
66304
|
deleteMany?: MapperIndustryTitleToTalentIndustryScalarWhereInput | MapperIndustryTitleToTalentIndustryScalarWhereInput[]
|
|
64772
66305
|
}
|
|
64773
66306
|
|
|
66307
|
+
export type RecordedCallCreateNestedOneWithoutTranscriptsInput = {
|
|
66308
|
+
create?: XOR<RecordedCallCreateWithoutTranscriptsInput, RecordedCallUncheckedCreateWithoutTranscriptsInput>
|
|
66309
|
+
connectOrCreate?: RecordedCallCreateOrConnectWithoutTranscriptsInput
|
|
66310
|
+
connect?: RecordedCallWhereUniqueInput
|
|
66311
|
+
}
|
|
66312
|
+
|
|
66313
|
+
export type NullableEnumTranscriptCallTypeFieldUpdateOperationsInput = {
|
|
66314
|
+
set?: $Enums.TranscriptCallType | null
|
|
66315
|
+
unset?: boolean
|
|
66316
|
+
}
|
|
66317
|
+
|
|
66318
|
+
export type RecordedCallUpdateOneWithoutTranscriptsNestedInput = {
|
|
66319
|
+
create?: XOR<RecordedCallCreateWithoutTranscriptsInput, RecordedCallUncheckedCreateWithoutTranscriptsInput>
|
|
66320
|
+
connectOrCreate?: RecordedCallCreateOrConnectWithoutTranscriptsInput
|
|
66321
|
+
upsert?: RecordedCallUpsertWithoutTranscriptsInput
|
|
66322
|
+
disconnect?: boolean
|
|
66323
|
+
delete?: RecordedCallWhereInput | boolean
|
|
66324
|
+
connect?: RecordedCallWhereUniqueInput
|
|
66325
|
+
update?: XOR<XOR<RecordedCallUpdateToOneWithWhereWithoutTranscriptsInput, RecordedCallUpdateWithoutTranscriptsInput>, RecordedCallUncheckedUpdateWithoutTranscriptsInput>
|
|
66326
|
+
}
|
|
66327
|
+
|
|
64774
66328
|
export type UserCreatetitlesInput = {
|
|
64775
66329
|
set: string[]
|
|
64776
66330
|
}
|
|
@@ -67673,6 +69227,25 @@ export namespace Prisma {
|
|
|
67673
69227
|
_max?: NestedEnumPresetIDFilter<$PrismaModel>
|
|
67674
69228
|
}
|
|
67675
69229
|
|
|
69230
|
+
export type NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel = never> = {
|
|
69231
|
+
equals?: $Enums.TranscriptCallType | EnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69232
|
+
in?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69233
|
+
notIn?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69234
|
+
not?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel> | $Enums.TranscriptCallType | null
|
|
69235
|
+
isSet?: boolean
|
|
69236
|
+
}
|
|
69237
|
+
|
|
69238
|
+
export type NestedEnumTranscriptCallTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
69239
|
+
equals?: $Enums.TranscriptCallType | EnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69240
|
+
in?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69241
|
+
notIn?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
69242
|
+
not?: NestedEnumTranscriptCallTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.TranscriptCallType | null
|
|
69243
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
69244
|
+
_min?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel>
|
|
69245
|
+
_max?: NestedEnumTranscriptCallTypeNullableFilter<$PrismaModel>
|
|
69246
|
+
isSet?: boolean
|
|
69247
|
+
}
|
|
69248
|
+
|
|
67676
69249
|
export type NestedEnumUserStatusFilter<$PrismaModel = never> = {
|
|
67677
69250
|
equals?: $Enums.UserStatus | EnumUserStatusFieldRefInput<$PrismaModel>
|
|
67678
69251
|
in?: $Enums.UserStatus[] | ListEnumUserStatusFieldRefInput<$PrismaModel>
|
|
@@ -77018,6 +78591,43 @@ export namespace Prisma {
|
|
|
77018
78591
|
data: XOR<ClientInterviewUpdateManyMutationInput, ClientInterviewUncheckedUpdateManyWithoutProposalInput>
|
|
77019
78592
|
}
|
|
77020
78593
|
|
|
78594
|
+
export type TranscriptCreateWithoutRecordedCallInput = {
|
|
78595
|
+
id?: string
|
|
78596
|
+
inputBucket?: string | null
|
|
78597
|
+
inputKey?: string | null
|
|
78598
|
+
inputRegion?: string | null
|
|
78599
|
+
inputUrl?: string | null
|
|
78600
|
+
callbackUrl?: string | null
|
|
78601
|
+
callbackRef?: string | null
|
|
78602
|
+
jobStatus: string
|
|
78603
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
78604
|
+
createdAt?: Date | string
|
|
78605
|
+
updatedAt?: Date | string
|
|
78606
|
+
}
|
|
78607
|
+
|
|
78608
|
+
export type TranscriptUncheckedCreateWithoutRecordedCallInput = {
|
|
78609
|
+
id?: string
|
|
78610
|
+
inputBucket?: string | null
|
|
78611
|
+
inputKey?: string | null
|
|
78612
|
+
inputRegion?: string | null
|
|
78613
|
+
inputUrl?: string | null
|
|
78614
|
+
callbackUrl?: string | null
|
|
78615
|
+
callbackRef?: string | null
|
|
78616
|
+
jobStatus: string
|
|
78617
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
78618
|
+
createdAt?: Date | string
|
|
78619
|
+
updatedAt?: Date | string
|
|
78620
|
+
}
|
|
78621
|
+
|
|
78622
|
+
export type TranscriptCreateOrConnectWithoutRecordedCallInput = {
|
|
78623
|
+
where: TranscriptWhereUniqueInput
|
|
78624
|
+
create: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput>
|
|
78625
|
+
}
|
|
78626
|
+
|
|
78627
|
+
export type TranscriptCreateManyRecordedCallInputEnvelope = {
|
|
78628
|
+
data: TranscriptCreateManyRecordedCallInput | TranscriptCreateManyRecordedCallInput[]
|
|
78629
|
+
}
|
|
78630
|
+
|
|
77021
78631
|
export type CallParticipantUpdateManyInput = {
|
|
77022
78632
|
where: CallParticipantWhereInput
|
|
77023
78633
|
data: CallParticipantUpdateInput
|
|
@@ -77027,6 +78637,40 @@ export namespace Prisma {
|
|
|
77027
78637
|
where: CallParticipantWhereInput
|
|
77028
78638
|
}
|
|
77029
78639
|
|
|
78640
|
+
export type TranscriptUpsertWithWhereUniqueWithoutRecordedCallInput = {
|
|
78641
|
+
where: TranscriptWhereUniqueInput
|
|
78642
|
+
update: XOR<TranscriptUpdateWithoutRecordedCallInput, TranscriptUncheckedUpdateWithoutRecordedCallInput>
|
|
78643
|
+
create: XOR<TranscriptCreateWithoutRecordedCallInput, TranscriptUncheckedCreateWithoutRecordedCallInput>
|
|
78644
|
+
}
|
|
78645
|
+
|
|
78646
|
+
export type TranscriptUpdateWithWhereUniqueWithoutRecordedCallInput = {
|
|
78647
|
+
where: TranscriptWhereUniqueInput
|
|
78648
|
+
data: XOR<TranscriptUpdateWithoutRecordedCallInput, TranscriptUncheckedUpdateWithoutRecordedCallInput>
|
|
78649
|
+
}
|
|
78650
|
+
|
|
78651
|
+
export type TranscriptUpdateManyWithWhereWithoutRecordedCallInput = {
|
|
78652
|
+
where: TranscriptScalarWhereInput
|
|
78653
|
+
data: XOR<TranscriptUpdateManyMutationInput, TranscriptUncheckedUpdateManyWithoutRecordedCallInput>
|
|
78654
|
+
}
|
|
78655
|
+
|
|
78656
|
+
export type TranscriptScalarWhereInput = {
|
|
78657
|
+
AND?: TranscriptScalarWhereInput | TranscriptScalarWhereInput[]
|
|
78658
|
+
OR?: TranscriptScalarWhereInput[]
|
|
78659
|
+
NOT?: TranscriptScalarWhereInput | TranscriptScalarWhereInput[]
|
|
78660
|
+
id?: StringFilter<"Transcript"> | string
|
|
78661
|
+
recordedCallId?: StringNullableFilter<"Transcript"> | string | null
|
|
78662
|
+
inputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
78663
|
+
inputKey?: StringNullableFilter<"Transcript"> | string | null
|
|
78664
|
+
inputRegion?: StringNullableFilter<"Transcript"> | string | null
|
|
78665
|
+
inputUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
78666
|
+
callbackUrl?: StringNullableFilter<"Transcript"> | string | null
|
|
78667
|
+
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
78668
|
+
jobStatus?: StringFilter<"Transcript"> | string
|
|
78669
|
+
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
78670
|
+
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
78671
|
+
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
78672
|
+
}
|
|
78673
|
+
|
|
77030
78674
|
export type MapperRoleTitleToRoleCategoryCreateWithoutRoleCategoryInput = {
|
|
77031
78675
|
id?: string
|
|
77032
78676
|
roleTitle: string
|
|
@@ -77308,6 +78952,88 @@ export namespace Prisma {
|
|
|
77308
78952
|
updatedAt?: DateTimeNullableFilter<"MapperIndustryTitleToTalentIndustry"> | Date | string | null
|
|
77309
78953
|
}
|
|
77310
78954
|
|
|
78955
|
+
export type RecordedCallCreateWithoutTranscriptsInput = {
|
|
78956
|
+
id?: string
|
|
78957
|
+
callMeetingTitle: string
|
|
78958
|
+
callUrl: string
|
|
78959
|
+
startTime: Date | string
|
|
78960
|
+
endTime: Date | string
|
|
78961
|
+
s3TranscriptKey: string
|
|
78962
|
+
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
78963
|
+
recordedByName: string
|
|
78964
|
+
recordedByEmail: string
|
|
78965
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
78966
|
+
callCreatedAtTimestamp: Date | string
|
|
78967
|
+
createdAt?: Date | string
|
|
78968
|
+
updatedAt?: Date | string
|
|
78969
|
+
calendarEventVideoCallDataId?: string | null
|
|
78970
|
+
}
|
|
78971
|
+
|
|
78972
|
+
export type RecordedCallUncheckedCreateWithoutTranscriptsInput = {
|
|
78973
|
+
id?: string
|
|
78974
|
+
callMeetingTitle: string
|
|
78975
|
+
callUrl: string
|
|
78976
|
+
startTime: Date | string
|
|
78977
|
+
endTime: Date | string
|
|
78978
|
+
s3TranscriptKey: string
|
|
78979
|
+
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
78980
|
+
recordedByName: string
|
|
78981
|
+
recordedByEmail: string
|
|
78982
|
+
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
78983
|
+
callCreatedAtTimestamp: Date | string
|
|
78984
|
+
createdAt?: Date | string
|
|
78985
|
+
updatedAt?: Date | string
|
|
78986
|
+
calendarEventVideoCallDataId?: string | null
|
|
78987
|
+
}
|
|
78988
|
+
|
|
78989
|
+
export type RecordedCallCreateOrConnectWithoutTranscriptsInput = {
|
|
78990
|
+
where: RecordedCallWhereUniqueInput
|
|
78991
|
+
create: XOR<RecordedCallCreateWithoutTranscriptsInput, RecordedCallUncheckedCreateWithoutTranscriptsInput>
|
|
78992
|
+
}
|
|
78993
|
+
|
|
78994
|
+
export type RecordedCallUpsertWithoutTranscriptsInput = {
|
|
78995
|
+
update: XOR<RecordedCallUpdateWithoutTranscriptsInput, RecordedCallUncheckedUpdateWithoutTranscriptsInput>
|
|
78996
|
+
create: XOR<RecordedCallCreateWithoutTranscriptsInput, RecordedCallUncheckedCreateWithoutTranscriptsInput>
|
|
78997
|
+
where?: RecordedCallWhereInput
|
|
78998
|
+
}
|
|
78999
|
+
|
|
79000
|
+
export type RecordedCallUpdateToOneWithWhereWithoutTranscriptsInput = {
|
|
79001
|
+
where?: RecordedCallWhereInput
|
|
79002
|
+
data: XOR<RecordedCallUpdateWithoutTranscriptsInput, RecordedCallUncheckedUpdateWithoutTranscriptsInput>
|
|
79003
|
+
}
|
|
79004
|
+
|
|
79005
|
+
export type RecordedCallUpdateWithoutTranscriptsInput = {
|
|
79006
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
79007
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
79008
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79009
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79010
|
+
s3TranscriptKey?: StringFieldUpdateOperationsInput | string
|
|
79011
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
79012
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
79013
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
79014
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
79015
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79016
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79017
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79018
|
+
calendarEventVideoCallDataId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79019
|
+
}
|
|
79020
|
+
|
|
79021
|
+
export type RecordedCallUncheckedUpdateWithoutTranscriptsInput = {
|
|
79022
|
+
callMeetingTitle?: StringFieldUpdateOperationsInput | string
|
|
79023
|
+
callUrl?: StringFieldUpdateOperationsInput | string
|
|
79024
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79025
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79026
|
+
s3TranscriptKey?: StringFieldUpdateOperationsInput | string
|
|
79027
|
+
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
79028
|
+
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
79029
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
79030
|
+
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
79031
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79032
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79033
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
79034
|
+
calendarEventVideoCallDataId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
79035
|
+
}
|
|
79036
|
+
|
|
77311
79037
|
export type ClientRegistrationCreaterequestRolesInput = {
|
|
77312
79038
|
set: string[]
|
|
77313
79039
|
}
|
|
@@ -82741,11 +84467,64 @@ export namespace Prisma {
|
|
|
82741
84467
|
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
82742
84468
|
}
|
|
82743
84469
|
|
|
84470
|
+
export type TranscriptCreateManyRecordedCallInput = {
|
|
84471
|
+
id?: string
|
|
84472
|
+
inputBucket?: string | null
|
|
84473
|
+
inputKey?: string | null
|
|
84474
|
+
inputRegion?: string | null
|
|
84475
|
+
inputUrl?: string | null
|
|
84476
|
+
callbackUrl?: string | null
|
|
84477
|
+
callbackRef?: string | null
|
|
84478
|
+
jobStatus: string
|
|
84479
|
+
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
84480
|
+
createdAt?: Date | string
|
|
84481
|
+
updatedAt?: Date | string
|
|
84482
|
+
}
|
|
84483
|
+
|
|
82744
84484
|
export type CallParticipantUpdateInput = {
|
|
82745
84485
|
name?: StringFieldUpdateOperationsInput | string
|
|
82746
84486
|
email?: StringFieldUpdateOperationsInput | string
|
|
82747
84487
|
}
|
|
82748
84488
|
|
|
84489
|
+
export type TranscriptUpdateWithoutRecordedCallInput = {
|
|
84490
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84491
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84492
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84493
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84494
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84495
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84496
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84497
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84498
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84499
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84500
|
+
}
|
|
84501
|
+
|
|
84502
|
+
export type TranscriptUncheckedUpdateWithoutRecordedCallInput = {
|
|
84503
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84504
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84505
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84506
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84507
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84508
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84509
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84510
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84511
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84512
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84513
|
+
}
|
|
84514
|
+
|
|
84515
|
+
export type TranscriptUncheckedUpdateManyWithoutRecordedCallInput = {
|
|
84516
|
+
inputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84517
|
+
inputKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84518
|
+
inputRegion?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84519
|
+
inputUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84520
|
+
callbackUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84521
|
+
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84522
|
+
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84523
|
+
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84524
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84525
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84526
|
+
}
|
|
84527
|
+
|
|
82749
84528
|
export type MapperRoleTitleToRoleCategoryCreateManyRoleCategoryInput = {
|
|
82750
84529
|
id?: string
|
|
82751
84530
|
roleTitle: string
|
|
@@ -86641,6 +88420,10 @@ export namespace Prisma {
|
|
|
86641
88420
|
* @deprecated Use ProposalCountOutputTypeDefaultArgs instead
|
|
86642
88421
|
*/
|
|
86643
88422
|
export type ProposalCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ProposalCountOutputTypeDefaultArgs<ExtArgs>
|
|
88423
|
+
/**
|
|
88424
|
+
* @deprecated Use RecordedCallCountOutputTypeDefaultArgs instead
|
|
88425
|
+
*/
|
|
88426
|
+
export type RecordedCallCountOutputTypeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = RecordedCallCountOutputTypeDefaultArgs<ExtArgs>
|
|
86644
88427
|
/**
|
|
86645
88428
|
* @deprecated Use RoleCategoryCountOutputTypeDefaultArgs instead
|
|
86646
88429
|
*/
|
|
@@ -87233,6 +89016,10 @@ export namespace Prisma {
|
|
|
87233
89016
|
* @deprecated Use TalentIndustryDefaultArgs instead
|
|
87234
89017
|
*/
|
|
87235
89018
|
export type TalentIndustryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TalentIndustryDefaultArgs<ExtArgs>
|
|
89019
|
+
/**
|
|
89020
|
+
* @deprecated Use TranscriptDefaultArgs instead
|
|
89021
|
+
*/
|
|
89022
|
+
export type TranscriptArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TranscriptDefaultArgs<ExtArgs>
|
|
87236
89023
|
/**
|
|
87237
89024
|
* @deprecated Use UserDefaultArgs instead
|
|
87238
89025
|
*/
|