@a_team/prisma 3.23.0-win → 3.23.1-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 +10 -4
- package/dist/client/index-browser.js +6 -0
- package/dist/client/index.d.ts +248 -0
- package/dist/client/index.js +12 -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 +6 -0
- package/dist/client/wasm.js +6 -0
- package/package.json +4 -4
|
@@ -583,6 +583,12 @@ exports.Prisma.TranscriptScalarFieldEnum = {
|
|
|
583
583
|
callbackRef: 'callbackRef',
|
|
584
584
|
jobStatus: 'jobStatus',
|
|
585
585
|
transcriptCallType: 'transcriptCallType',
|
|
586
|
+
outputBucket: 'outputBucket',
|
|
587
|
+
transcriptKey: 'transcriptKey',
|
|
588
|
+
mediaKey: 'mediaKey',
|
|
589
|
+
duration: 'duration',
|
|
590
|
+
shortDuration: 'shortDuration',
|
|
591
|
+
error: 'error',
|
|
586
592
|
createdAt: 'createdAt',
|
|
587
593
|
updatedAt: 'updatedAt'
|
|
588
594
|
};
|
package/dist/client/index.d.ts
CHANGED
|
@@ -45150,10 +45150,20 @@ export namespace Prisma {
|
|
|
45150
45150
|
|
|
45151
45151
|
export type AggregateTranscript = {
|
|
45152
45152
|
_count: TranscriptCountAggregateOutputType | null
|
|
45153
|
+
_avg: TranscriptAvgAggregateOutputType | null
|
|
45154
|
+
_sum: TranscriptSumAggregateOutputType | null
|
|
45153
45155
|
_min: TranscriptMinAggregateOutputType | null
|
|
45154
45156
|
_max: TranscriptMaxAggregateOutputType | null
|
|
45155
45157
|
}
|
|
45156
45158
|
|
|
45159
|
+
export type TranscriptAvgAggregateOutputType = {
|
|
45160
|
+
duration: number | null
|
|
45161
|
+
}
|
|
45162
|
+
|
|
45163
|
+
export type TranscriptSumAggregateOutputType = {
|
|
45164
|
+
duration: number | null
|
|
45165
|
+
}
|
|
45166
|
+
|
|
45157
45167
|
export type TranscriptMinAggregateOutputType = {
|
|
45158
45168
|
id: string | null
|
|
45159
45169
|
recordedCallId: string | null
|
|
@@ -45165,6 +45175,12 @@ export namespace Prisma {
|
|
|
45165
45175
|
callbackRef: string | null
|
|
45166
45176
|
jobStatus: string | null
|
|
45167
45177
|
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45178
|
+
outputBucket: string | null
|
|
45179
|
+
transcriptKey: string | null
|
|
45180
|
+
mediaKey: string | null
|
|
45181
|
+
duration: number | null
|
|
45182
|
+
shortDuration: boolean | null
|
|
45183
|
+
error: string | null
|
|
45168
45184
|
createdAt: Date | null
|
|
45169
45185
|
updatedAt: Date | null
|
|
45170
45186
|
}
|
|
@@ -45180,6 +45196,12 @@ export namespace Prisma {
|
|
|
45180
45196
|
callbackRef: string | null
|
|
45181
45197
|
jobStatus: string | null
|
|
45182
45198
|
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45199
|
+
outputBucket: string | null
|
|
45200
|
+
transcriptKey: string | null
|
|
45201
|
+
mediaKey: string | null
|
|
45202
|
+
duration: number | null
|
|
45203
|
+
shortDuration: boolean | null
|
|
45204
|
+
error: string | null
|
|
45183
45205
|
createdAt: Date | null
|
|
45184
45206
|
updatedAt: Date | null
|
|
45185
45207
|
}
|
|
@@ -45195,12 +45217,26 @@ export namespace Prisma {
|
|
|
45195
45217
|
callbackRef: number
|
|
45196
45218
|
jobStatus: number
|
|
45197
45219
|
transcriptCallType: number
|
|
45220
|
+
outputBucket: number
|
|
45221
|
+
transcriptKey: number
|
|
45222
|
+
mediaKey: number
|
|
45223
|
+
duration: number
|
|
45224
|
+
shortDuration: number
|
|
45225
|
+
error: number
|
|
45198
45226
|
createdAt: number
|
|
45199
45227
|
updatedAt: number
|
|
45200
45228
|
_all: number
|
|
45201
45229
|
}
|
|
45202
45230
|
|
|
45203
45231
|
|
|
45232
|
+
export type TranscriptAvgAggregateInputType = {
|
|
45233
|
+
duration?: true
|
|
45234
|
+
}
|
|
45235
|
+
|
|
45236
|
+
export type TranscriptSumAggregateInputType = {
|
|
45237
|
+
duration?: true
|
|
45238
|
+
}
|
|
45239
|
+
|
|
45204
45240
|
export type TranscriptMinAggregateInputType = {
|
|
45205
45241
|
id?: true
|
|
45206
45242
|
recordedCallId?: true
|
|
@@ -45212,6 +45248,12 @@ export namespace Prisma {
|
|
|
45212
45248
|
callbackRef?: true
|
|
45213
45249
|
jobStatus?: true
|
|
45214
45250
|
transcriptCallType?: true
|
|
45251
|
+
outputBucket?: true
|
|
45252
|
+
transcriptKey?: true
|
|
45253
|
+
mediaKey?: true
|
|
45254
|
+
duration?: true
|
|
45255
|
+
shortDuration?: true
|
|
45256
|
+
error?: true
|
|
45215
45257
|
createdAt?: true
|
|
45216
45258
|
updatedAt?: true
|
|
45217
45259
|
}
|
|
@@ -45227,6 +45269,12 @@ export namespace Prisma {
|
|
|
45227
45269
|
callbackRef?: true
|
|
45228
45270
|
jobStatus?: true
|
|
45229
45271
|
transcriptCallType?: true
|
|
45272
|
+
outputBucket?: true
|
|
45273
|
+
transcriptKey?: true
|
|
45274
|
+
mediaKey?: true
|
|
45275
|
+
duration?: true
|
|
45276
|
+
shortDuration?: true
|
|
45277
|
+
error?: true
|
|
45230
45278
|
createdAt?: true
|
|
45231
45279
|
updatedAt?: true
|
|
45232
45280
|
}
|
|
@@ -45242,6 +45290,12 @@ export namespace Prisma {
|
|
|
45242
45290
|
callbackRef?: true
|
|
45243
45291
|
jobStatus?: true
|
|
45244
45292
|
transcriptCallType?: true
|
|
45293
|
+
outputBucket?: true
|
|
45294
|
+
transcriptKey?: true
|
|
45295
|
+
mediaKey?: true
|
|
45296
|
+
duration?: true
|
|
45297
|
+
shortDuration?: true
|
|
45298
|
+
error?: true
|
|
45245
45299
|
createdAt?: true
|
|
45246
45300
|
updatedAt?: true
|
|
45247
45301
|
_all?: true
|
|
@@ -45282,6 +45336,18 @@ export namespace Prisma {
|
|
|
45282
45336
|
* Count returned Transcripts
|
|
45283
45337
|
**/
|
|
45284
45338
|
_count?: true | TranscriptCountAggregateInputType
|
|
45339
|
+
/**
|
|
45340
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45341
|
+
*
|
|
45342
|
+
* Select which fields to average
|
|
45343
|
+
**/
|
|
45344
|
+
_avg?: TranscriptAvgAggregateInputType
|
|
45345
|
+
/**
|
|
45346
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45347
|
+
*
|
|
45348
|
+
* Select which fields to sum
|
|
45349
|
+
**/
|
|
45350
|
+
_sum?: TranscriptSumAggregateInputType
|
|
45285
45351
|
/**
|
|
45286
45352
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45287
45353
|
*
|
|
@@ -45315,6 +45381,8 @@ export namespace Prisma {
|
|
|
45315
45381
|
take?: number
|
|
45316
45382
|
skip?: number
|
|
45317
45383
|
_count?: TranscriptCountAggregateInputType | true
|
|
45384
|
+
_avg?: TranscriptAvgAggregateInputType
|
|
45385
|
+
_sum?: TranscriptSumAggregateInputType
|
|
45318
45386
|
_min?: TranscriptMinAggregateInputType
|
|
45319
45387
|
_max?: TranscriptMaxAggregateInputType
|
|
45320
45388
|
}
|
|
@@ -45330,9 +45398,17 @@ export namespace Prisma {
|
|
|
45330
45398
|
callbackRef: string | null
|
|
45331
45399
|
jobStatus: string
|
|
45332
45400
|
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45401
|
+
outputBucket: string | null
|
|
45402
|
+
transcriptKey: string | null
|
|
45403
|
+
mediaKey: string | null
|
|
45404
|
+
duration: number | null
|
|
45405
|
+
shortDuration: boolean | null
|
|
45406
|
+
error: string | null
|
|
45333
45407
|
createdAt: Date
|
|
45334
45408
|
updatedAt: Date
|
|
45335
45409
|
_count: TranscriptCountAggregateOutputType | null
|
|
45410
|
+
_avg: TranscriptAvgAggregateOutputType | null
|
|
45411
|
+
_sum: TranscriptSumAggregateOutputType | null
|
|
45336
45412
|
_min: TranscriptMinAggregateOutputType | null
|
|
45337
45413
|
_max: TranscriptMaxAggregateOutputType | null
|
|
45338
45414
|
}
|
|
@@ -45362,6 +45438,12 @@ export namespace Prisma {
|
|
|
45362
45438
|
callbackRef?: boolean
|
|
45363
45439
|
jobStatus?: boolean
|
|
45364
45440
|
transcriptCallType?: boolean
|
|
45441
|
+
outputBucket?: boolean
|
|
45442
|
+
transcriptKey?: boolean
|
|
45443
|
+
mediaKey?: boolean
|
|
45444
|
+
duration?: boolean
|
|
45445
|
+
shortDuration?: boolean
|
|
45446
|
+
error?: boolean
|
|
45365
45447
|
createdAt?: boolean
|
|
45366
45448
|
updatedAt?: boolean
|
|
45367
45449
|
recordedCall?: boolean | Transcript$recordedCallArgs<ExtArgs>
|
|
@@ -45379,6 +45461,12 @@ export namespace Prisma {
|
|
|
45379
45461
|
callbackRef?: boolean
|
|
45380
45462
|
jobStatus?: boolean
|
|
45381
45463
|
transcriptCallType?: boolean
|
|
45464
|
+
outputBucket?: boolean
|
|
45465
|
+
transcriptKey?: boolean
|
|
45466
|
+
mediaKey?: boolean
|
|
45467
|
+
duration?: boolean
|
|
45468
|
+
shortDuration?: boolean
|
|
45469
|
+
error?: boolean
|
|
45382
45470
|
createdAt?: boolean
|
|
45383
45471
|
updatedAt?: boolean
|
|
45384
45472
|
}
|
|
@@ -45403,6 +45491,12 @@ export namespace Prisma {
|
|
|
45403
45491
|
callbackRef: string | null
|
|
45404
45492
|
jobStatus: string
|
|
45405
45493
|
transcriptCallType: $Enums.TranscriptCallType | null
|
|
45494
|
+
outputBucket: string | null
|
|
45495
|
+
transcriptKey: string | null
|
|
45496
|
+
mediaKey: string | null
|
|
45497
|
+
duration: number | null
|
|
45498
|
+
shortDuration: boolean | null
|
|
45499
|
+
error: string | null
|
|
45406
45500
|
createdAt: Date
|
|
45407
45501
|
updatedAt: Date
|
|
45408
45502
|
}, ExtArgs["result"]["transcript"]>
|
|
@@ -45808,6 +45902,12 @@ export namespace Prisma {
|
|
|
45808
45902
|
readonly callbackRef: FieldRef<"Transcript", 'String'>
|
|
45809
45903
|
readonly jobStatus: FieldRef<"Transcript", 'String'>
|
|
45810
45904
|
readonly transcriptCallType: FieldRef<"Transcript", 'TranscriptCallType'>
|
|
45905
|
+
readonly outputBucket: FieldRef<"Transcript", 'String'>
|
|
45906
|
+
readonly transcriptKey: FieldRef<"Transcript", 'String'>
|
|
45907
|
+
readonly mediaKey: FieldRef<"Transcript", 'String'>
|
|
45908
|
+
readonly duration: FieldRef<"Transcript", 'Float'>
|
|
45909
|
+
readonly shortDuration: FieldRef<"Transcript", 'Boolean'>
|
|
45910
|
+
readonly error: FieldRef<"Transcript", 'String'>
|
|
45811
45911
|
readonly createdAt: FieldRef<"Transcript", 'DateTime'>
|
|
45812
45912
|
readonly updatedAt: FieldRef<"Transcript", 'DateTime'>
|
|
45813
45913
|
}
|
|
@@ -50413,6 +50513,12 @@ export namespace Prisma {
|
|
|
50413
50513
|
callbackRef: 'callbackRef',
|
|
50414
50514
|
jobStatus: 'jobStatus',
|
|
50415
50515
|
transcriptCallType: 'transcriptCallType',
|
|
50516
|
+
outputBucket: 'outputBucket',
|
|
50517
|
+
transcriptKey: 'transcriptKey',
|
|
50518
|
+
mediaKey: 'mediaKey',
|
|
50519
|
+
duration: 'duration',
|
|
50520
|
+
shortDuration: 'shortDuration',
|
|
50521
|
+
error: 'error',
|
|
50416
50522
|
createdAt: 'createdAt',
|
|
50417
50523
|
updatedAt: 'updatedAt'
|
|
50418
50524
|
};
|
|
@@ -54311,6 +54417,12 @@ export namespace Prisma {
|
|
|
54311
54417
|
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
54312
54418
|
jobStatus?: StringFilter<"Transcript"> | string
|
|
54313
54419
|
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54420
|
+
outputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
54421
|
+
transcriptKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54422
|
+
mediaKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54423
|
+
duration?: FloatNullableFilter<"Transcript"> | number | null
|
|
54424
|
+
shortDuration?: BoolNullableFilter<"Transcript"> | boolean | null
|
|
54425
|
+
error?: StringNullableFilter<"Transcript"> | string | null
|
|
54314
54426
|
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54315
54427
|
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54316
54428
|
recordedCall?: XOR<RecordedCallNullableRelationFilter, RecordedCallWhereInput> | null
|
|
@@ -54327,6 +54439,12 @@ export namespace Prisma {
|
|
|
54327
54439
|
callbackRef?: SortOrder
|
|
54328
54440
|
jobStatus?: SortOrder
|
|
54329
54441
|
transcriptCallType?: SortOrder
|
|
54442
|
+
outputBucket?: SortOrder
|
|
54443
|
+
transcriptKey?: SortOrder
|
|
54444
|
+
mediaKey?: SortOrder
|
|
54445
|
+
duration?: SortOrder
|
|
54446
|
+
shortDuration?: SortOrder
|
|
54447
|
+
error?: SortOrder
|
|
54330
54448
|
createdAt?: SortOrder
|
|
54331
54449
|
updatedAt?: SortOrder
|
|
54332
54450
|
recordedCall?: RecordedCallOrderByWithRelationInput
|
|
@@ -54346,6 +54464,12 @@ export namespace Prisma {
|
|
|
54346
54464
|
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
54347
54465
|
jobStatus?: StringFilter<"Transcript"> | string
|
|
54348
54466
|
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54467
|
+
outputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
54468
|
+
transcriptKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54469
|
+
mediaKey?: StringNullableFilter<"Transcript"> | string | null
|
|
54470
|
+
duration?: FloatNullableFilter<"Transcript"> | number | null
|
|
54471
|
+
shortDuration?: BoolNullableFilter<"Transcript"> | boolean | null
|
|
54472
|
+
error?: StringNullableFilter<"Transcript"> | string | null
|
|
54349
54473
|
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54350
54474
|
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
54351
54475
|
recordedCall?: XOR<RecordedCallNullableRelationFilter, RecordedCallWhereInput> | null
|
|
@@ -54362,11 +54486,19 @@ export namespace Prisma {
|
|
|
54362
54486
|
callbackRef?: SortOrder
|
|
54363
54487
|
jobStatus?: SortOrder
|
|
54364
54488
|
transcriptCallType?: SortOrder
|
|
54489
|
+
outputBucket?: SortOrder
|
|
54490
|
+
transcriptKey?: SortOrder
|
|
54491
|
+
mediaKey?: SortOrder
|
|
54492
|
+
duration?: SortOrder
|
|
54493
|
+
shortDuration?: SortOrder
|
|
54494
|
+
error?: SortOrder
|
|
54365
54495
|
createdAt?: SortOrder
|
|
54366
54496
|
updatedAt?: SortOrder
|
|
54367
54497
|
_count?: TranscriptCountOrderByAggregateInput
|
|
54498
|
+
_avg?: TranscriptAvgOrderByAggregateInput
|
|
54368
54499
|
_max?: TranscriptMaxOrderByAggregateInput
|
|
54369
54500
|
_min?: TranscriptMinOrderByAggregateInput
|
|
54501
|
+
_sum?: TranscriptSumOrderByAggregateInput
|
|
54370
54502
|
}
|
|
54371
54503
|
|
|
54372
54504
|
export type TranscriptScalarWhereWithAggregatesInput = {
|
|
@@ -54383,6 +54515,12 @@ export namespace Prisma {
|
|
|
54383
54515
|
callbackRef?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54384
54516
|
jobStatus?: StringWithAggregatesFilter<"Transcript"> | string
|
|
54385
54517
|
transcriptCallType?: EnumTranscriptCallTypeNullableWithAggregatesFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
54518
|
+
outputBucket?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54519
|
+
transcriptKey?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54520
|
+
mediaKey?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54521
|
+
duration?: FloatNullableWithAggregatesFilter<"Transcript"> | number | null
|
|
54522
|
+
shortDuration?: BoolNullableWithAggregatesFilter<"Transcript"> | boolean | null
|
|
54523
|
+
error?: StringNullableWithAggregatesFilter<"Transcript"> | string | null
|
|
54386
54524
|
createdAt?: DateTimeWithAggregatesFilter<"Transcript"> | Date | string
|
|
54387
54525
|
updatedAt?: DateTimeWithAggregatesFilter<"Transcript"> | Date | string
|
|
54388
54526
|
}
|
|
@@ -58358,6 +58496,12 @@ export namespace Prisma {
|
|
|
58358
58496
|
callbackRef?: string | null
|
|
58359
58497
|
jobStatus: string
|
|
58360
58498
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58499
|
+
outputBucket?: string | null
|
|
58500
|
+
transcriptKey?: string | null
|
|
58501
|
+
mediaKey?: string | null
|
|
58502
|
+
duration?: number | null
|
|
58503
|
+
shortDuration?: boolean | null
|
|
58504
|
+
error?: string | null
|
|
58361
58505
|
createdAt?: Date | string
|
|
58362
58506
|
updatedAt?: Date | string
|
|
58363
58507
|
recordedCall?: RecordedCallCreateNestedOneWithoutTranscriptsInput
|
|
@@ -58374,6 +58518,12 @@ export namespace Prisma {
|
|
|
58374
58518
|
callbackRef?: string | null
|
|
58375
58519
|
jobStatus: string
|
|
58376
58520
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58521
|
+
outputBucket?: string | null
|
|
58522
|
+
transcriptKey?: string | null
|
|
58523
|
+
mediaKey?: string | null
|
|
58524
|
+
duration?: number | null
|
|
58525
|
+
shortDuration?: boolean | null
|
|
58526
|
+
error?: string | null
|
|
58377
58527
|
createdAt?: Date | string
|
|
58378
58528
|
updatedAt?: Date | string
|
|
58379
58529
|
}
|
|
@@ -58387,6 +58537,12 @@ export namespace Prisma {
|
|
|
58387
58537
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58388
58538
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58389
58539
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58540
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58541
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58542
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58543
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58544
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
58545
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58390
58546
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58391
58547
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58392
58548
|
recordedCall?: RecordedCallUpdateOneWithoutTranscriptsNestedInput
|
|
@@ -58402,6 +58558,12 @@ export namespace Prisma {
|
|
|
58402
58558
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58403
58559
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58404
58560
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58561
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58562
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58563
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58564
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58565
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
58566
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58405
58567
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58406
58568
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58407
58569
|
}
|
|
@@ -58417,6 +58579,12 @@ export namespace Prisma {
|
|
|
58417
58579
|
callbackRef?: string | null
|
|
58418
58580
|
jobStatus: string
|
|
58419
58581
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
58582
|
+
outputBucket?: string | null
|
|
58583
|
+
transcriptKey?: string | null
|
|
58584
|
+
mediaKey?: string | null
|
|
58585
|
+
duration?: number | null
|
|
58586
|
+
shortDuration?: boolean | null
|
|
58587
|
+
error?: string | null
|
|
58420
58588
|
createdAt?: Date | string
|
|
58421
58589
|
updatedAt?: Date | string
|
|
58422
58590
|
}
|
|
@@ -58430,6 +58598,12 @@ export namespace Prisma {
|
|
|
58430
58598
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58431
58599
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58432
58600
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58601
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58602
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58603
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58604
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58605
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
58606
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58433
58607
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58434
58608
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58435
58609
|
}
|
|
@@ -58444,6 +58618,12 @@ export namespace Prisma {
|
|
|
58444
58618
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58445
58619
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
58446
58620
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
58621
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58622
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58623
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58624
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
58625
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
58626
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
58447
58627
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58448
58628
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
58449
58629
|
}
|
|
@@ -62629,10 +62809,20 @@ export namespace Prisma {
|
|
|
62629
62809
|
callbackRef?: SortOrder
|
|
62630
62810
|
jobStatus?: SortOrder
|
|
62631
62811
|
transcriptCallType?: SortOrder
|
|
62812
|
+
outputBucket?: SortOrder
|
|
62813
|
+
transcriptKey?: SortOrder
|
|
62814
|
+
mediaKey?: SortOrder
|
|
62815
|
+
duration?: SortOrder
|
|
62816
|
+
shortDuration?: SortOrder
|
|
62817
|
+
error?: SortOrder
|
|
62632
62818
|
createdAt?: SortOrder
|
|
62633
62819
|
updatedAt?: SortOrder
|
|
62634
62820
|
}
|
|
62635
62821
|
|
|
62822
|
+
export type TranscriptAvgOrderByAggregateInput = {
|
|
62823
|
+
duration?: SortOrder
|
|
62824
|
+
}
|
|
62825
|
+
|
|
62636
62826
|
export type TranscriptMaxOrderByAggregateInput = {
|
|
62637
62827
|
id?: SortOrder
|
|
62638
62828
|
recordedCallId?: SortOrder
|
|
@@ -62644,6 +62834,12 @@ export namespace Prisma {
|
|
|
62644
62834
|
callbackRef?: SortOrder
|
|
62645
62835
|
jobStatus?: SortOrder
|
|
62646
62836
|
transcriptCallType?: SortOrder
|
|
62837
|
+
outputBucket?: SortOrder
|
|
62838
|
+
transcriptKey?: SortOrder
|
|
62839
|
+
mediaKey?: SortOrder
|
|
62840
|
+
duration?: SortOrder
|
|
62841
|
+
shortDuration?: SortOrder
|
|
62842
|
+
error?: SortOrder
|
|
62647
62843
|
createdAt?: SortOrder
|
|
62648
62844
|
updatedAt?: SortOrder
|
|
62649
62845
|
}
|
|
@@ -62659,10 +62855,20 @@ export namespace Prisma {
|
|
|
62659
62855
|
callbackRef?: SortOrder
|
|
62660
62856
|
jobStatus?: SortOrder
|
|
62661
62857
|
transcriptCallType?: SortOrder
|
|
62858
|
+
outputBucket?: SortOrder
|
|
62859
|
+
transcriptKey?: SortOrder
|
|
62860
|
+
mediaKey?: SortOrder
|
|
62861
|
+
duration?: SortOrder
|
|
62862
|
+
shortDuration?: SortOrder
|
|
62863
|
+
error?: SortOrder
|
|
62662
62864
|
createdAt?: SortOrder
|
|
62663
62865
|
updatedAt?: SortOrder
|
|
62664
62866
|
}
|
|
62665
62867
|
|
|
62868
|
+
export type TranscriptSumOrderByAggregateInput = {
|
|
62869
|
+
duration?: SortOrder
|
|
62870
|
+
}
|
|
62871
|
+
|
|
62666
62872
|
export type EnumTranscriptCallTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
62667
62873
|
equals?: $Enums.TranscriptCallType | EnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
62668
62874
|
in?: $Enums.TranscriptCallType[] | ListEnumTranscriptCallTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -78601,6 +78807,12 @@ export namespace Prisma {
|
|
|
78601
78807
|
callbackRef?: string | null
|
|
78602
78808
|
jobStatus: string
|
|
78603
78809
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
78810
|
+
outputBucket?: string | null
|
|
78811
|
+
transcriptKey?: string | null
|
|
78812
|
+
mediaKey?: string | null
|
|
78813
|
+
duration?: number | null
|
|
78814
|
+
shortDuration?: boolean | null
|
|
78815
|
+
error?: string | null
|
|
78604
78816
|
createdAt?: Date | string
|
|
78605
78817
|
updatedAt?: Date | string
|
|
78606
78818
|
}
|
|
@@ -78615,6 +78827,12 @@ export namespace Prisma {
|
|
|
78615
78827
|
callbackRef?: string | null
|
|
78616
78828
|
jobStatus: string
|
|
78617
78829
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
78830
|
+
outputBucket?: string | null
|
|
78831
|
+
transcriptKey?: string | null
|
|
78832
|
+
mediaKey?: string | null
|
|
78833
|
+
duration?: number | null
|
|
78834
|
+
shortDuration?: boolean | null
|
|
78835
|
+
error?: string | null
|
|
78618
78836
|
createdAt?: Date | string
|
|
78619
78837
|
updatedAt?: Date | string
|
|
78620
78838
|
}
|
|
@@ -78667,6 +78885,12 @@ export namespace Prisma {
|
|
|
78667
78885
|
callbackRef?: StringNullableFilter<"Transcript"> | string | null
|
|
78668
78886
|
jobStatus?: StringFilter<"Transcript"> | string
|
|
78669
78887
|
transcriptCallType?: EnumTranscriptCallTypeNullableFilter<"Transcript"> | $Enums.TranscriptCallType | null
|
|
78888
|
+
outputBucket?: StringNullableFilter<"Transcript"> | string | null
|
|
78889
|
+
transcriptKey?: StringNullableFilter<"Transcript"> | string | null
|
|
78890
|
+
mediaKey?: StringNullableFilter<"Transcript"> | string | null
|
|
78891
|
+
duration?: FloatNullableFilter<"Transcript"> | number | null
|
|
78892
|
+
shortDuration?: BoolNullableFilter<"Transcript"> | boolean | null
|
|
78893
|
+
error?: StringNullableFilter<"Transcript"> | string | null
|
|
78670
78894
|
createdAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
78671
78895
|
updatedAt?: DateTimeFilter<"Transcript"> | Date | string
|
|
78672
78896
|
}
|
|
@@ -84477,6 +84701,12 @@ export namespace Prisma {
|
|
|
84477
84701
|
callbackRef?: string | null
|
|
84478
84702
|
jobStatus: string
|
|
84479
84703
|
transcriptCallType?: $Enums.TranscriptCallType | null
|
|
84704
|
+
outputBucket?: string | null
|
|
84705
|
+
transcriptKey?: string | null
|
|
84706
|
+
mediaKey?: string | null
|
|
84707
|
+
duration?: number | null
|
|
84708
|
+
shortDuration?: boolean | null
|
|
84709
|
+
error?: string | null
|
|
84480
84710
|
createdAt?: Date | string
|
|
84481
84711
|
updatedAt?: Date | string
|
|
84482
84712
|
}
|
|
@@ -84495,6 +84725,12 @@ export namespace Prisma {
|
|
|
84495
84725
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84496
84726
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84497
84727
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84728
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84729
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84730
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84731
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
84732
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
84733
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84498
84734
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84499
84735
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84500
84736
|
}
|
|
@@ -84508,6 +84744,12 @@ export namespace Prisma {
|
|
|
84508
84744
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84509
84745
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84510
84746
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84747
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84748
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84749
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84750
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
84751
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
84752
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84511
84753
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84512
84754
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84513
84755
|
}
|
|
@@ -84521,6 +84763,12 @@ export namespace Prisma {
|
|
|
84521
84763
|
callbackRef?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84522
84764
|
jobStatus?: StringFieldUpdateOperationsInput | string
|
|
84523
84765
|
transcriptCallType?: NullableEnumTranscriptCallTypeFieldUpdateOperationsInput | $Enums.TranscriptCallType | null
|
|
84766
|
+
outputBucket?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84767
|
+
transcriptKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84768
|
+
mediaKey?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84769
|
+
duration?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
84770
|
+
shortDuration?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
84771
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
84524
84772
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84525
84773
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
84526
84774
|
}
|