@a_team/prisma 3.17.5-macos-docker-linux → 3.17.6-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 +4 -4
- package/dist/client/index.d.ts +16 -8
- package/dist/client/index.js +6 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -1
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -10175,19 +10175,21 @@ export namespace Prisma {
|
|
|
10175
10175
|
|
|
10176
10176
|
|
|
10177
10177
|
export type CriteriaItemSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
10178
|
-
|
|
10178
|
+
id?: boolean
|
|
10179
10179
|
description?: boolean
|
|
10180
10180
|
type?: boolean
|
|
10181
10181
|
priority?: boolean
|
|
10182
|
+
createdAt?: boolean
|
|
10182
10183
|
updatedAt?: boolean
|
|
10183
10184
|
}, ExtArgs["result"]["criteriaItem"]>
|
|
10184
10185
|
|
|
10185
10186
|
|
|
10186
10187
|
export type CriteriaItemSelectScalar = {
|
|
10187
|
-
|
|
10188
|
+
id?: boolean
|
|
10188
10189
|
description?: boolean
|
|
10189
10190
|
type?: boolean
|
|
10190
10191
|
priority?: boolean
|
|
10192
|
+
createdAt?: boolean
|
|
10191
10193
|
updatedAt?: boolean
|
|
10192
10194
|
}
|
|
10193
10195
|
|
|
@@ -10196,10 +10198,11 @@ export namespace Prisma {
|
|
|
10196
10198
|
name: "CriteriaItem"
|
|
10197
10199
|
objects: {}
|
|
10198
10200
|
scalars: {
|
|
10199
|
-
|
|
10201
|
+
id: string
|
|
10200
10202
|
description: string
|
|
10201
10203
|
type: $Enums.CriteriaItemType
|
|
10202
10204
|
priority: $Enums.Priority
|
|
10205
|
+
createdAt: Date | null
|
|
10203
10206
|
updatedAt: Date | null
|
|
10204
10207
|
}
|
|
10205
10208
|
composites: {}
|
|
@@ -10215,10 +10218,11 @@ export namespace Prisma {
|
|
|
10215
10218
|
* Fields of the CriteriaItem model
|
|
10216
10219
|
*/
|
|
10217
10220
|
interface CriteriaItemFieldRefs {
|
|
10218
|
-
readonly
|
|
10221
|
+
readonly id: FieldRef<"CriteriaItem", 'String'>
|
|
10219
10222
|
readonly description: FieldRef<"CriteriaItem", 'String'>
|
|
10220
10223
|
readonly type: FieldRef<"CriteriaItem", 'CriteriaItemType'>
|
|
10221
10224
|
readonly priority: FieldRef<"CriteriaItem", 'Priority'>
|
|
10225
|
+
readonly createdAt: FieldRef<"CriteriaItem", 'DateTime'>
|
|
10222
10226
|
readonly updatedAt: FieldRef<"CriteriaItem", 'DateTime'>
|
|
10223
10227
|
}
|
|
10224
10228
|
|
|
@@ -54051,10 +54055,11 @@ export namespace Prisma {
|
|
|
54051
54055
|
}
|
|
54052
54056
|
|
|
54053
54057
|
export type CriteriaItemObjectEqualityInput = {
|
|
54054
|
-
|
|
54058
|
+
id: string
|
|
54055
54059
|
description: string
|
|
54056
54060
|
type: $Enums.CriteriaItemType
|
|
54057
54061
|
priority: $Enums.Priority
|
|
54062
|
+
createdAt?: Date | string | null
|
|
54058
54063
|
updatedAt?: Date | string | null
|
|
54059
54064
|
}
|
|
54060
54065
|
|
|
@@ -57451,10 +57456,11 @@ export namespace Prisma {
|
|
|
57451
57456
|
}
|
|
57452
57457
|
|
|
57453
57458
|
export type CriteriaItemCreateInput = {
|
|
57454
|
-
|
|
57459
|
+
id: string
|
|
57455
57460
|
description: string
|
|
57456
57461
|
type: $Enums.CriteriaItemType
|
|
57457
57462
|
priority: $Enums.Priority
|
|
57463
|
+
createdAt?: Date | string | null
|
|
57458
57464
|
updatedAt?: Date | string | null
|
|
57459
57465
|
}
|
|
57460
57466
|
|
|
@@ -60187,10 +60193,11 @@ export namespace Prisma {
|
|
|
60187
60193
|
AND?: CriteriaItemWhereInput | CriteriaItemWhereInput[]
|
|
60188
60194
|
OR?: CriteriaItemWhereInput[]
|
|
60189
60195
|
NOT?: CriteriaItemWhereInput | CriteriaItemWhereInput[]
|
|
60190
|
-
|
|
60196
|
+
id?: StringFilter<"CriteriaItem"> | string
|
|
60191
60197
|
description?: StringFilter<"CriteriaItem"> | string
|
|
60192
60198
|
type?: EnumCriteriaItemTypeFilter<"CriteriaItem"> | $Enums.CriteriaItemType
|
|
60193
60199
|
priority?: EnumPriorityFilter<"CriteriaItem"> | $Enums.Priority
|
|
60200
|
+
createdAt?: DateTimeNullableFilter<"CriteriaItem"> | Date | string | null
|
|
60194
60201
|
updatedAt?: DateTimeNullableFilter<"CriteriaItem"> | Date | string | null
|
|
60195
60202
|
}
|
|
60196
60203
|
|
|
@@ -74532,10 +74539,11 @@ export namespace Prisma {
|
|
|
74532
74539
|
}
|
|
74533
74540
|
|
|
74534
74541
|
export type CriteriaItemUpdateInput = {
|
|
74535
|
-
|
|
74542
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
74536
74543
|
description?: StringFieldUpdateOperationsInput | string
|
|
74537
74544
|
type?: EnumCriteriaItemTypeFieldUpdateOperationsInput | $Enums.CriteriaItemType
|
|
74538
74545
|
priority?: EnumPriorityFieldUpdateOperationsInput | $Enums.Priority
|
|
74546
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
74539
74547
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
74540
74548
|
}
|
|
74541
74549
|
|