@a_team/prisma 3.15.1-macos-docker-linux → 3.15.2-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 +6 -5
- package/dist/client/index-browser.js +2 -1
- package/dist/client/index.d.ts +54 -27
- package/dist/client/index.js +8 -7
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +13 -12
- package/dist/client/wasm.js +2 -1
- package/package.json +4 -2
|
@@ -457,8 +457,9 @@ exports.Prisma.RecordedCallScalarFieldEnum = {
|
|
|
457
457
|
endTime: 'endTime',
|
|
458
458
|
transcriptUrl: 'transcriptUrl',
|
|
459
459
|
recordedByName: 'recordedByName',
|
|
460
|
-
|
|
460
|
+
recordedByEmail: 'recordedByEmail',
|
|
461
461
|
platformRecordedOn: 'platformRecordedOn',
|
|
462
|
+
callCreatedAtTimestamp: 'callCreatedAtTimestamp',
|
|
462
463
|
createdAt: 'createdAt',
|
|
463
464
|
updatedAt: 'updatedAt'
|
|
464
465
|
};
|
package/dist/client/index.d.ts
CHANGED
|
@@ -32151,8 +32151,9 @@ export namespace Prisma {
|
|
|
32151
32151
|
endTime: Date | null
|
|
32152
32152
|
transcriptUrl: string | null
|
|
32153
32153
|
recordedByName: string | null
|
|
32154
|
-
|
|
32154
|
+
recordedByEmail: string | null
|
|
32155
32155
|
platformRecordedOn: $Enums.PlatformRecordedOn | null
|
|
32156
|
+
callCreatedAtTimestamp: Date | null
|
|
32156
32157
|
createdAt: Date | null
|
|
32157
32158
|
updatedAt: Date | null
|
|
32158
32159
|
}
|
|
@@ -32165,8 +32166,9 @@ export namespace Prisma {
|
|
|
32165
32166
|
endTime: Date | null
|
|
32166
32167
|
transcriptUrl: string | null
|
|
32167
32168
|
recordedByName: string | null
|
|
32168
|
-
|
|
32169
|
+
recordedByEmail: string | null
|
|
32169
32170
|
platformRecordedOn: $Enums.PlatformRecordedOn | null
|
|
32171
|
+
callCreatedAtTimestamp: Date | null
|
|
32170
32172
|
createdAt: Date | null
|
|
32171
32173
|
updatedAt: Date | null
|
|
32172
32174
|
}
|
|
@@ -32179,8 +32181,9 @@ export namespace Prisma {
|
|
|
32179
32181
|
endTime: number
|
|
32180
32182
|
transcriptUrl: number
|
|
32181
32183
|
recordedByName: number
|
|
32182
|
-
|
|
32184
|
+
recordedByEmail: number
|
|
32183
32185
|
platformRecordedOn: number
|
|
32186
|
+
callCreatedAtTimestamp: number
|
|
32184
32187
|
createdAt: number
|
|
32185
32188
|
updatedAt: number
|
|
32186
32189
|
_all: number
|
|
@@ -32195,8 +32198,9 @@ export namespace Prisma {
|
|
|
32195
32198
|
endTime?: true
|
|
32196
32199
|
transcriptUrl?: true
|
|
32197
32200
|
recordedByName?: true
|
|
32198
|
-
|
|
32201
|
+
recordedByEmail?: true
|
|
32199
32202
|
platformRecordedOn?: true
|
|
32203
|
+
callCreatedAtTimestamp?: true
|
|
32200
32204
|
createdAt?: true
|
|
32201
32205
|
updatedAt?: true
|
|
32202
32206
|
}
|
|
@@ -32209,8 +32213,9 @@ export namespace Prisma {
|
|
|
32209
32213
|
endTime?: true
|
|
32210
32214
|
transcriptUrl?: true
|
|
32211
32215
|
recordedByName?: true
|
|
32212
|
-
|
|
32216
|
+
recordedByEmail?: true
|
|
32213
32217
|
platformRecordedOn?: true
|
|
32218
|
+
callCreatedAtTimestamp?: true
|
|
32214
32219
|
createdAt?: true
|
|
32215
32220
|
updatedAt?: true
|
|
32216
32221
|
}
|
|
@@ -32223,8 +32228,9 @@ export namespace Prisma {
|
|
|
32223
32228
|
endTime?: true
|
|
32224
32229
|
transcriptUrl?: true
|
|
32225
32230
|
recordedByName?: true
|
|
32226
|
-
|
|
32231
|
+
recordedByEmail?: true
|
|
32227
32232
|
platformRecordedOn?: true
|
|
32233
|
+
callCreatedAtTimestamp?: true
|
|
32228
32234
|
createdAt?: true
|
|
32229
32235
|
updatedAt?: true
|
|
32230
32236
|
_all?: true
|
|
@@ -32310,8 +32316,9 @@ export namespace Prisma {
|
|
|
32310
32316
|
endTime: Date
|
|
32311
32317
|
transcriptUrl: string
|
|
32312
32318
|
recordedByName: string
|
|
32313
|
-
|
|
32319
|
+
recordedByEmail: string
|
|
32314
32320
|
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
32321
|
+
callCreatedAtTimestamp: Date
|
|
32315
32322
|
createdAt: Date
|
|
32316
32323
|
updatedAt: Date
|
|
32317
32324
|
_count: RecordedCallCountAggregateOutputType | null
|
|
@@ -32342,8 +32349,9 @@ export namespace Prisma {
|
|
|
32342
32349
|
transcriptUrl?: boolean
|
|
32343
32350
|
participants?: boolean | CallParticipantDefaultArgs<ExtArgs>
|
|
32344
32351
|
recordedByName?: boolean
|
|
32345
|
-
|
|
32352
|
+
recordedByEmail?: boolean
|
|
32346
32353
|
platformRecordedOn?: boolean
|
|
32354
|
+
callCreatedAtTimestamp?: boolean
|
|
32347
32355
|
createdAt?: boolean
|
|
32348
32356
|
updatedAt?: boolean
|
|
32349
32357
|
}, ExtArgs["result"]["recordedCall"]>
|
|
@@ -32357,8 +32365,9 @@ export namespace Prisma {
|
|
|
32357
32365
|
endTime?: boolean
|
|
32358
32366
|
transcriptUrl?: boolean
|
|
32359
32367
|
recordedByName?: boolean
|
|
32360
|
-
|
|
32368
|
+
recordedByEmail?: boolean
|
|
32361
32369
|
platformRecordedOn?: boolean
|
|
32370
|
+
callCreatedAtTimestamp?: boolean
|
|
32362
32371
|
createdAt?: boolean
|
|
32363
32372
|
updatedAt?: boolean
|
|
32364
32373
|
}
|
|
@@ -32376,8 +32385,9 @@ export namespace Prisma {
|
|
|
32376
32385
|
endTime: Date
|
|
32377
32386
|
transcriptUrl: string
|
|
32378
32387
|
recordedByName: string
|
|
32379
|
-
|
|
32388
|
+
recordedByEmail: string
|
|
32380
32389
|
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
32390
|
+
callCreatedAtTimestamp: Date
|
|
32381
32391
|
createdAt: Date
|
|
32382
32392
|
updatedAt: Date
|
|
32383
32393
|
}, ExtArgs["result"]["recordedCall"]>
|
|
@@ -32781,8 +32791,9 @@ export namespace Prisma {
|
|
|
32781
32791
|
readonly endTime: FieldRef<"RecordedCall", 'DateTime'>
|
|
32782
32792
|
readonly transcriptUrl: FieldRef<"RecordedCall", 'String'>
|
|
32783
32793
|
readonly recordedByName: FieldRef<"RecordedCall", 'String'>
|
|
32784
|
-
readonly
|
|
32794
|
+
readonly recordedByEmail: FieldRef<"RecordedCall", 'String'>
|
|
32785
32795
|
readonly platformRecordedOn: FieldRef<"RecordedCall", 'PlatformRecordedOn'>
|
|
32796
|
+
readonly callCreatedAtTimestamp: FieldRef<"RecordedCall", 'DateTime'>
|
|
32786
32797
|
readonly createdAt: FieldRef<"RecordedCall", 'DateTime'>
|
|
32787
32798
|
readonly updatedAt: FieldRef<"RecordedCall", 'DateTime'>
|
|
32788
32799
|
}
|
|
@@ -40740,8 +40751,9 @@ export namespace Prisma {
|
|
|
40740
40751
|
endTime: 'endTime',
|
|
40741
40752
|
transcriptUrl: 'transcriptUrl',
|
|
40742
40753
|
recordedByName: 'recordedByName',
|
|
40743
|
-
|
|
40754
|
+
recordedByEmail: 'recordedByEmail',
|
|
40744
40755
|
platformRecordedOn: 'platformRecordedOn',
|
|
40756
|
+
callCreatedAtTimestamp: 'callCreatedAtTimestamp',
|
|
40745
40757
|
createdAt: 'createdAt',
|
|
40746
40758
|
updatedAt: 'updatedAt'
|
|
40747
40759
|
};
|
|
@@ -43756,8 +43768,9 @@ export namespace Prisma {
|
|
|
43756
43768
|
transcriptUrl?: StringFilter<"RecordedCall"> | string
|
|
43757
43769
|
participants?: CallParticipantCompositeListFilter | CallParticipantObjectEqualityInput[]
|
|
43758
43770
|
recordedByName?: StringFilter<"RecordedCall"> | string
|
|
43759
|
-
|
|
43771
|
+
recordedByEmail?: StringFilter<"RecordedCall"> | string
|
|
43760
43772
|
platformRecordedOn?: EnumPlatformRecordedOnFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43773
|
+
callCreatedAtTimestamp?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43761
43774
|
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43762
43775
|
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43763
43776
|
}
|
|
@@ -43771,8 +43784,9 @@ export namespace Prisma {
|
|
|
43771
43784
|
transcriptUrl?: SortOrder
|
|
43772
43785
|
participants?: CallParticipantOrderByCompositeAggregateInput
|
|
43773
43786
|
recordedByName?: SortOrder
|
|
43774
|
-
|
|
43787
|
+
recordedByEmail?: SortOrder
|
|
43775
43788
|
platformRecordedOn?: SortOrder
|
|
43789
|
+
callCreatedAtTimestamp?: SortOrder
|
|
43776
43790
|
createdAt?: SortOrder
|
|
43777
43791
|
updatedAt?: SortOrder
|
|
43778
43792
|
}
|
|
@@ -43789,8 +43803,9 @@ export namespace Prisma {
|
|
|
43789
43803
|
transcriptUrl?: StringFilter<"RecordedCall"> | string
|
|
43790
43804
|
participants?: CallParticipantCompositeListFilter | CallParticipantObjectEqualityInput[]
|
|
43791
43805
|
recordedByName?: StringFilter<"RecordedCall"> | string
|
|
43792
|
-
|
|
43806
|
+
recordedByEmail?: StringFilter<"RecordedCall"> | string
|
|
43793
43807
|
platformRecordedOn?: EnumPlatformRecordedOnFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43808
|
+
callCreatedAtTimestamp?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43794
43809
|
createdAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43795
43810
|
updatedAt?: DateTimeFilter<"RecordedCall"> | Date | string
|
|
43796
43811
|
}, "id">
|
|
@@ -43803,8 +43818,9 @@ export namespace Prisma {
|
|
|
43803
43818
|
endTime?: SortOrder
|
|
43804
43819
|
transcriptUrl?: SortOrder
|
|
43805
43820
|
recordedByName?: SortOrder
|
|
43806
|
-
|
|
43821
|
+
recordedByEmail?: SortOrder
|
|
43807
43822
|
platformRecordedOn?: SortOrder
|
|
43823
|
+
callCreatedAtTimestamp?: SortOrder
|
|
43808
43824
|
createdAt?: SortOrder
|
|
43809
43825
|
updatedAt?: SortOrder
|
|
43810
43826
|
_count?: RecordedCallCountOrderByAggregateInput
|
|
@@ -43823,8 +43839,9 @@ export namespace Prisma {
|
|
|
43823
43839
|
endTime?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43824
43840
|
transcriptUrl?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43825
43841
|
recordedByName?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43826
|
-
|
|
43842
|
+
recordedByEmail?: StringWithAggregatesFilter<"RecordedCall"> | string
|
|
43827
43843
|
platformRecordedOn?: EnumPlatformRecordedOnWithAggregatesFilter<"RecordedCall"> | $Enums.PlatformRecordedOn
|
|
43844
|
+
callCreatedAtTimestamp?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43828
43845
|
createdAt?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43829
43846
|
updatedAt?: DateTimeWithAggregatesFilter<"RecordedCall"> | Date | string
|
|
43830
43847
|
}
|
|
@@ -47124,8 +47141,9 @@ export namespace Prisma {
|
|
|
47124
47141
|
transcriptUrl: string
|
|
47125
47142
|
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47126
47143
|
recordedByName: string
|
|
47127
|
-
|
|
47144
|
+
recordedByEmail: string
|
|
47128
47145
|
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47146
|
+
callCreatedAtTimestamp: Date | string
|
|
47129
47147
|
createdAt?: Date | string
|
|
47130
47148
|
updatedAt?: Date | string
|
|
47131
47149
|
}
|
|
@@ -47139,8 +47157,9 @@ export namespace Prisma {
|
|
|
47139
47157
|
transcriptUrl: string
|
|
47140
47158
|
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47141
47159
|
recordedByName: string
|
|
47142
|
-
|
|
47160
|
+
recordedByEmail: string
|
|
47143
47161
|
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47162
|
+
callCreatedAtTimestamp: Date | string
|
|
47144
47163
|
createdAt?: Date | string
|
|
47145
47164
|
updatedAt?: Date | string
|
|
47146
47165
|
}
|
|
@@ -47153,8 +47172,9 @@ export namespace Prisma {
|
|
|
47153
47172
|
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47154
47173
|
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47155
47174
|
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47156
|
-
|
|
47175
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
47157
47176
|
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47177
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47158
47178
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47159
47179
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47160
47180
|
}
|
|
@@ -47167,8 +47187,9 @@ export namespace Prisma {
|
|
|
47167
47187
|
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47168
47188
|
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47169
47189
|
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47170
|
-
|
|
47190
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
47171
47191
|
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47192
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47172
47193
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47173
47194
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47174
47195
|
}
|
|
@@ -47182,8 +47203,9 @@ export namespace Prisma {
|
|
|
47182
47203
|
transcriptUrl: string
|
|
47183
47204
|
participants?: XOR<CallParticipantListCreateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47184
47205
|
recordedByName: string
|
|
47185
|
-
|
|
47206
|
+
recordedByEmail: string
|
|
47186
47207
|
platformRecordedOn: $Enums.PlatformRecordedOn
|
|
47208
|
+
callCreatedAtTimestamp: Date | string
|
|
47187
47209
|
createdAt?: Date | string
|
|
47188
47210
|
updatedAt?: Date | string
|
|
47189
47211
|
}
|
|
@@ -47196,8 +47218,9 @@ export namespace Prisma {
|
|
|
47196
47218
|
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47197
47219
|
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47198
47220
|
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47199
|
-
|
|
47221
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
47200
47222
|
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47223
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47201
47224
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47202
47225
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47203
47226
|
}
|
|
@@ -47210,8 +47233,9 @@ export namespace Prisma {
|
|
|
47210
47233
|
transcriptUrl?: StringFieldUpdateOperationsInput | string
|
|
47211
47234
|
participants?: XOR<CallParticipantListUpdateEnvelopeInput, CallParticipantCreateInput> | CallParticipantCreateInput[]
|
|
47212
47235
|
recordedByName?: StringFieldUpdateOperationsInput | string
|
|
47213
|
-
|
|
47236
|
+
recordedByEmail?: StringFieldUpdateOperationsInput | string
|
|
47214
47237
|
platformRecordedOn?: EnumPlatformRecordedOnFieldUpdateOperationsInput | $Enums.PlatformRecordedOn
|
|
47238
|
+
callCreatedAtTimestamp?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47215
47239
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47216
47240
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
47217
47241
|
}
|
|
@@ -50877,8 +50901,9 @@ export namespace Prisma {
|
|
|
50877
50901
|
endTime?: SortOrder
|
|
50878
50902
|
transcriptUrl?: SortOrder
|
|
50879
50903
|
recordedByName?: SortOrder
|
|
50880
|
-
|
|
50904
|
+
recordedByEmail?: SortOrder
|
|
50881
50905
|
platformRecordedOn?: SortOrder
|
|
50906
|
+
callCreatedAtTimestamp?: SortOrder
|
|
50882
50907
|
createdAt?: SortOrder
|
|
50883
50908
|
updatedAt?: SortOrder
|
|
50884
50909
|
}
|
|
@@ -50891,8 +50916,9 @@ export namespace Prisma {
|
|
|
50891
50916
|
endTime?: SortOrder
|
|
50892
50917
|
transcriptUrl?: SortOrder
|
|
50893
50918
|
recordedByName?: SortOrder
|
|
50894
|
-
|
|
50919
|
+
recordedByEmail?: SortOrder
|
|
50895
50920
|
platformRecordedOn?: SortOrder
|
|
50921
|
+
callCreatedAtTimestamp?: SortOrder
|
|
50896
50922
|
createdAt?: SortOrder
|
|
50897
50923
|
updatedAt?: SortOrder
|
|
50898
50924
|
}
|
|
@@ -50905,8 +50931,9 @@ export namespace Prisma {
|
|
|
50905
50931
|
endTime?: SortOrder
|
|
50906
50932
|
transcriptUrl?: SortOrder
|
|
50907
50933
|
recordedByName?: SortOrder
|
|
50908
|
-
|
|
50934
|
+
recordedByEmail?: SortOrder
|
|
50909
50935
|
platformRecordedOn?: SortOrder
|
|
50936
|
+
callCreatedAtTimestamp?: SortOrder
|
|
50910
50937
|
createdAt?: SortOrder
|
|
50911
50938
|
updatedAt?: SortOrder
|
|
50912
50939
|
}
|