@a_team/prisma 3.8.3-win → 3.8.4-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 +10 -10
- package/dist/client/index.js +6 -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 +2 -2
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -6179,8 +6179,8 @@ export namespace Prisma {
|
|
|
6179
6179
|
objects: {}
|
|
6180
6180
|
scalars: {
|
|
6181
6181
|
status: $Enums.ProposalReviewStatus
|
|
6182
|
-
reviewedBy: string
|
|
6183
|
-
reviewedAt: Date
|
|
6182
|
+
reviewedBy: string | null
|
|
6183
|
+
reviewedAt: Date | null
|
|
6184
6184
|
rejectionReason: string | null
|
|
6185
6185
|
rejectionNote: string | null
|
|
6186
6186
|
}
|
|
@@ -29520,8 +29520,8 @@ export namespace Prisma {
|
|
|
29520
29520
|
|
|
29521
29521
|
export type ProposalReviewObjectEqualityInput = {
|
|
29522
29522
|
status: $Enums.ProposalReviewStatus
|
|
29523
|
-
reviewedBy
|
|
29524
|
-
reviewedAt
|
|
29523
|
+
reviewedBy?: string | null
|
|
29524
|
+
reviewedAt?: Date | string | null
|
|
29525
29525
|
rejectionReason?: string | null
|
|
29526
29526
|
rejectionNote?: string | null
|
|
29527
29527
|
}
|
|
@@ -31439,8 +31439,8 @@ export namespace Prisma {
|
|
|
31439
31439
|
|
|
31440
31440
|
export type ProposalReviewCreateInput = {
|
|
31441
31441
|
status: $Enums.ProposalReviewStatus
|
|
31442
|
-
reviewedBy
|
|
31443
|
-
reviewedAt
|
|
31442
|
+
reviewedBy?: string | null
|
|
31443
|
+
reviewedAt?: Date | string | null
|
|
31444
31444
|
rejectionReason?: string | null
|
|
31445
31445
|
rejectionNote?: string | null
|
|
31446
31446
|
}
|
|
@@ -32958,8 +32958,8 @@ export namespace Prisma {
|
|
|
32958
32958
|
OR?: ProposalReviewWhereInput[]
|
|
32959
32959
|
NOT?: ProposalReviewWhereInput | ProposalReviewWhereInput[]
|
|
32960
32960
|
status?: EnumProposalReviewStatusFilter<"ProposalReview"> | $Enums.ProposalReviewStatus
|
|
32961
|
-
reviewedBy?:
|
|
32962
|
-
reviewedAt?:
|
|
32961
|
+
reviewedBy?: StringNullableFilter<"ProposalReview"> | string | null
|
|
32962
|
+
reviewedAt?: DateTimeNullableFilter<"ProposalReview"> | Date | string | null
|
|
32963
32963
|
rejectionReason?: StringNullableFilter<"ProposalReview"> | string | null
|
|
32964
32964
|
rejectionNote?: StringNullableFilter<"ProposalReview"> | string | null
|
|
32965
32965
|
}
|
|
@@ -39281,8 +39281,8 @@ export namespace Prisma {
|
|
|
39281
39281
|
|
|
39282
39282
|
export type ProposalReviewUpdateInput = {
|
|
39283
39283
|
status?: EnumProposalReviewStatusFieldUpdateOperationsInput | $Enums.ProposalReviewStatus
|
|
39284
|
-
reviewedBy?:
|
|
39285
|
-
reviewedAt?:
|
|
39284
|
+
reviewedBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
39285
|
+
reviewedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
39286
39286
|
rejectionReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
39287
39287
|
rejectionNote?: NullableStringFieldUpdateOperationsInput | string | null
|
|
39288
39288
|
}
|