@a_team/prisma 3.6.4-win → 3.6.5-linux-debian
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 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -0
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -6220,6 +6220,8 @@ export namespace Prisma {
|
|
|
6220
6220
|
|
|
6221
6221
|
|
|
6222
6222
|
export type ProposalCandidateSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6223
|
+
rid?: boolean
|
|
6224
|
+
aid?: boolean
|
|
6223
6225
|
hourlyRate?: boolean
|
|
6224
6226
|
showHourlyRate?: boolean
|
|
6225
6227
|
monthlyRate?: boolean
|
|
@@ -6238,6 +6240,8 @@ export namespace Prisma {
|
|
|
6238
6240
|
|
|
6239
6241
|
|
|
6240
6242
|
export type ProposalCandidateSelectScalar = {
|
|
6243
|
+
rid?: boolean
|
|
6244
|
+
aid?: boolean
|
|
6241
6245
|
hourlyRate?: boolean
|
|
6242
6246
|
showHourlyRate?: boolean
|
|
6243
6247
|
monthlyRate?: boolean
|
|
@@ -6258,6 +6262,8 @@ export namespace Prisma {
|
|
|
6258
6262
|
name: "ProposalCandidate"
|
|
6259
6263
|
objects: {}
|
|
6260
6264
|
scalars: {
|
|
6265
|
+
rid: string | null
|
|
6266
|
+
aid: string | null
|
|
6261
6267
|
hourlyRate: number | null
|
|
6262
6268
|
showHourlyRate: boolean | null
|
|
6263
6269
|
monthlyRate: number | null
|
|
@@ -6287,6 +6293,8 @@ export namespace Prisma {
|
|
|
6287
6293
|
* Fields of the ProposalCandidate model
|
|
6288
6294
|
*/
|
|
6289
6295
|
interface ProposalCandidateFieldRefs {
|
|
6296
|
+
readonly rid: FieldRef<"ProposalCandidate", 'String'>
|
|
6297
|
+
readonly aid: FieldRef<"ProposalCandidate", 'String'>
|
|
6290
6298
|
readonly hourlyRate: FieldRef<"ProposalCandidate", 'Float'>
|
|
6291
6299
|
readonly showHourlyRate: FieldRef<"ProposalCandidate", 'Boolean'>
|
|
6292
6300
|
readonly monthlyRate: FieldRef<"ProposalCandidate", 'Float'>
|
|
@@ -29310,6 +29318,8 @@ export namespace Prisma {
|
|
|
29310
29318
|
}
|
|
29311
29319
|
|
|
29312
29320
|
export type ProposalCandidateObjectEqualityInput = {
|
|
29321
|
+
rid?: string | null
|
|
29322
|
+
aid?: string | null
|
|
29313
29323
|
hourlyRate?: number | null
|
|
29314
29324
|
showHourlyRate?: boolean | null
|
|
29315
29325
|
monthlyRate?: number | null
|
|
@@ -31192,6 +31202,8 @@ export namespace Prisma {
|
|
|
31192
31202
|
}
|
|
31193
31203
|
|
|
31194
31204
|
export type ProposalCandidateCreateInput = {
|
|
31205
|
+
rid?: string | null
|
|
31206
|
+
aid?: string | null
|
|
31195
31207
|
hourlyRate?: number | null
|
|
31196
31208
|
showHourlyRate?: boolean | null
|
|
31197
31209
|
monthlyRate?: number | null
|
|
@@ -32685,6 +32697,8 @@ export namespace Prisma {
|
|
|
32685
32697
|
AND?: ProposalCandidateWhereInput | ProposalCandidateWhereInput[]
|
|
32686
32698
|
OR?: ProposalCandidateWhereInput[]
|
|
32687
32699
|
NOT?: ProposalCandidateWhereInput | ProposalCandidateWhereInput[]
|
|
32700
|
+
rid?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
32701
|
+
aid?: StringNullableFilter<"ProposalCandidate"> | string | null
|
|
32688
32702
|
hourlyRate?: FloatNullableFilter<"ProposalCandidate"> | number | null
|
|
32689
32703
|
showHourlyRate?: BoolNullableFilter<"ProposalCandidate"> | boolean | null
|
|
32690
32704
|
monthlyRate?: FloatNullableFilter<"ProposalCandidate"> | number | null
|
|
@@ -38815,6 +38829,8 @@ export namespace Prisma {
|
|
|
38815
38829
|
}
|
|
38816
38830
|
|
|
38817
38831
|
export type ProposalCandidateUpdateInput = {
|
|
38832
|
+
rid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
38833
|
+
aid?: NullableStringFieldUpdateOperationsInput | string | null
|
|
38818
38834
|
hourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
38819
38835
|
showHourlyRate?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
38820
38836
|
monthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|