@a_team/prisma 3.6.0-win → 3.6.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.
@@ -4162,6 +4162,8 @@ export namespace Prisma {
4162
4162
  collectMonthlyRate?: boolean
4163
4163
  isFullTimeRetainer?: boolean
4164
4164
  removalRequest?: boolean | MissionRoleRemovalRequestDefaultArgs<ExtArgs>
4165
+ productOfferings?: boolean
4166
+ roleDealType?: boolean
4165
4167
  }, ExtArgs["result"]["missionRole"]>
4166
4168
 
4167
4169
 
@@ -4194,6 +4196,8 @@ export namespace Prisma {
4194
4196
  builderMonthlyRateMax?: boolean
4195
4197
  collectMonthlyRate?: boolean
4196
4198
  isFullTimeRetainer?: boolean
4199
+ productOfferings?: boolean
4200
+ roleDealType?: boolean
4197
4201
  }
4198
4202
 
4199
4203
  export type MissionRoleInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
@@ -4230,6 +4234,8 @@ export namespace Prisma {
4230
4234
  builderMonthlyRateMax: number | null
4231
4235
  collectMonthlyRate: boolean | null
4232
4236
  isFullTimeRetainer: boolean | null
4237
+ productOfferings: string[]
4238
+ roleDealType: string | null
4233
4239
  }
4234
4240
  composites: {
4235
4241
  availability: Prisma.$MissionRoleAvailabilityPayload | null
@@ -4281,6 +4287,8 @@ export namespace Prisma {
4281
4287
  readonly builderMonthlyRateMax: FieldRef<"MissionRole", 'Float'>
4282
4288
  readonly collectMonthlyRate: FieldRef<"MissionRole", 'Boolean'>
4283
4289
  readonly isFullTimeRetainer: FieldRef<"MissionRole", 'Boolean'>
4290
+ readonly productOfferings: FieldRef<"MissionRole", 'String[]'>
4291
+ readonly roleDealType: FieldRef<"MissionRole", 'String'>
4284
4292
  }
4285
4293
 
4286
4294
 
@@ -25970,6 +25978,8 @@ export namespace Prisma {
25970
25978
  collectMonthlyRate?: boolean | null
25971
25979
  isFullTimeRetainer?: boolean | null
25972
25980
  removalRequest?: MissionRoleRemovalRequestObjectEqualityInput | null
25981
+ productOfferings?: string[]
25982
+ roleDealType?: string | null
25973
25983
  }
25974
25984
 
25975
25985
  export type EnumMissionStatusFilter<$PrismaModel = never> = {
@@ -27757,6 +27767,8 @@ export namespace Prisma {
27757
27767
  collectMonthlyRate?: boolean | null
27758
27768
  isFullTimeRetainer?: boolean | null
27759
27769
  removalRequest?: MissionRoleRemovalRequestCreateInput | null
27770
+ productOfferings?: MissionRoleCreateproductOfferingsInput | string[]
27771
+ roleDealType?: string | null
27760
27772
  }
27761
27773
 
27762
27774
  export type MissionCreatetalentIndustriesInput = {
@@ -29270,6 +29282,8 @@ export namespace Prisma {
29270
29282
  collectMonthlyRate?: BoolNullableFilter<"MissionRole"> | boolean | null
29271
29283
  isFullTimeRetainer?: BoolNullableFilter<"MissionRole"> | boolean | null
29272
29284
  removalRequest?: XOR<MissionRoleRemovalRequestNullableCompositeFilter, MissionRoleRemovalRequestObjectEqualityInput> | null
29285
+ productOfferings?: StringNullableListFilter<"MissionRole">
29286
+ roleDealType?: StringNullableFilter<"MissionRole"> | string | null
29273
29287
  }
29274
29288
 
29275
29289
  export type MissionRoleAvailabilityObjectEqualityInput = {
@@ -30909,6 +30923,10 @@ export namespace Prisma {
30909
30923
  createdAt?: Date | string
30910
30924
  }
30911
30925
 
30926
+ export type MissionRoleCreateproductOfferingsInput = {
30927
+ set: string[]
30928
+ }
30929
+
30912
30930
  export type AccountCreateWithoutMissionsInput = {
30913
30931
  id?: string
30914
30932
  members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
@@ -34175,6 +34193,8 @@ export namespace Prisma {
34175
34193
  collectMonthlyRate?: NullableBoolFieldUpdateOperationsInput | boolean | null
34176
34194
  isFullTimeRetainer?: NullableBoolFieldUpdateOperationsInput | boolean | null
34177
34195
  removalRequest?: XOR<MissionRoleRemovalRequestNullableUpdateEnvelopeInput, MissionRoleRemovalRequestCreateInput> | null
34196
+ productOfferings?: MissionRoleUpdateproductOfferingsInput | string[]
34197
+ roleDealType?: NullableStringFieldUpdateOperationsInput | string | null
34178
34198
  }
34179
34199
 
34180
34200
  export type MissionsTestingUpdateInput = {
@@ -35476,6 +35496,11 @@ export namespace Prisma {
35476
35496
  unset?: boolean
35477
35497
  }
35478
35498
 
35499
+ export type MissionRoleUpdateproductOfferingsInput = {
35500
+ set?: string[]
35501
+ push?: string | string[]
35502
+ }
35503
+
35479
35504
  export type FloatFieldUpdateOperationsInput = {
35480
35505
  set?: number
35481
35506
  increment?: number