@a_team/prisma 3.19.0-macos-docker-linux → 3.20.0-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 +177 -0
- 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 +16 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -223,6 +223,11 @@ export type MissionRoleWorkingHours = $Result.DefaultSelection<Prisma.$MissionRo
|
|
|
223
223
|
*
|
|
224
224
|
*/
|
|
225
225
|
export type MissionRoleRemovalRequest = $Result.DefaultSelection<Prisma.$MissionRoleRemovalRequestPayload>
|
|
226
|
+
/**
|
|
227
|
+
* Model MissionRoleCrmData
|
|
228
|
+
*
|
|
229
|
+
*/
|
|
230
|
+
export type MissionRoleCrmData = $Result.DefaultSelection<Prisma.$MissionRoleCrmDataPayload>
|
|
226
231
|
/**
|
|
227
232
|
* Model MissionRole
|
|
228
233
|
*
|
|
@@ -7921,6 +7926,95 @@ export namespace Prisma {
|
|
|
7921
7926
|
}
|
|
7922
7927
|
|
|
7923
7928
|
|
|
7929
|
+
/**
|
|
7930
|
+
* Model MissionRoleCrmData
|
|
7931
|
+
*/
|
|
7932
|
+
|
|
7933
|
+
|
|
7934
|
+
|
|
7935
|
+
|
|
7936
|
+
|
|
7937
|
+
export type MissionRoleCrmDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
7938
|
+
mission_posted_by_tfs_date?: boolean
|
|
7939
|
+
role___closed_lost_from_stage?: boolean
|
|
7940
|
+
role___closed_lost_reason?: boolean
|
|
7941
|
+
role___closed_lost_reason_details?: boolean
|
|
7942
|
+
role___closed_won_reason?: boolean
|
|
7943
|
+
role___closed_won_reason_details?: boolean
|
|
7944
|
+
estimated_engagement_end__churn__date?: boolean
|
|
7945
|
+
engagement_ended__churned__date?: boolean
|
|
7946
|
+
engagement_ended_reason?: boolean
|
|
7947
|
+
engagement_ended__churned__reason_details?: boolean
|
|
7948
|
+
}, ExtArgs["result"]["missionRoleCrmData"]>
|
|
7949
|
+
|
|
7950
|
+
|
|
7951
|
+
export type MissionRoleCrmDataSelectScalar = {
|
|
7952
|
+
mission_posted_by_tfs_date?: boolean
|
|
7953
|
+
role___closed_lost_from_stage?: boolean
|
|
7954
|
+
role___closed_lost_reason?: boolean
|
|
7955
|
+
role___closed_lost_reason_details?: boolean
|
|
7956
|
+
role___closed_won_reason?: boolean
|
|
7957
|
+
role___closed_won_reason_details?: boolean
|
|
7958
|
+
estimated_engagement_end__churn__date?: boolean
|
|
7959
|
+
engagement_ended__churned__date?: boolean
|
|
7960
|
+
engagement_ended_reason?: boolean
|
|
7961
|
+
engagement_ended__churned__reason_details?: boolean
|
|
7962
|
+
}
|
|
7963
|
+
|
|
7964
|
+
|
|
7965
|
+
export type $MissionRoleCrmDataPayload = {
|
|
7966
|
+
name: "MissionRoleCrmData"
|
|
7967
|
+
objects: {}
|
|
7968
|
+
scalars: {
|
|
7969
|
+
mission_posted_by_tfs_date: string | null
|
|
7970
|
+
role___closed_lost_from_stage: string | null
|
|
7971
|
+
role___closed_lost_reason: string | null
|
|
7972
|
+
role___closed_lost_reason_details: string | null
|
|
7973
|
+
role___closed_won_reason: string | null
|
|
7974
|
+
role___closed_won_reason_details: string | null
|
|
7975
|
+
estimated_engagement_end__churn__date: string | null
|
|
7976
|
+
engagement_ended__churned__date: string | null
|
|
7977
|
+
engagement_ended_reason: string | null
|
|
7978
|
+
engagement_ended__churned__reason_details: string | null
|
|
7979
|
+
}
|
|
7980
|
+
composites: {}
|
|
7981
|
+
}
|
|
7982
|
+
|
|
7983
|
+
type MissionRoleCrmDataGetPayload<S extends boolean | null | undefined | MissionRoleCrmDataDefaultArgs> = $Result.GetResult<Prisma.$MissionRoleCrmDataPayload, S>
|
|
7984
|
+
|
|
7985
|
+
|
|
7986
|
+
|
|
7987
|
+
|
|
7988
|
+
|
|
7989
|
+
/**
|
|
7990
|
+
* Fields of the MissionRoleCrmData model
|
|
7991
|
+
*/
|
|
7992
|
+
interface MissionRoleCrmDataFieldRefs {
|
|
7993
|
+
readonly mission_posted_by_tfs_date: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7994
|
+
readonly role___closed_lost_from_stage: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7995
|
+
readonly role___closed_lost_reason: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7996
|
+
readonly role___closed_lost_reason_details: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7997
|
+
readonly role___closed_won_reason: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7998
|
+
readonly role___closed_won_reason_details: FieldRef<"MissionRoleCrmData", 'String'>
|
|
7999
|
+
readonly estimated_engagement_end__churn__date: FieldRef<"MissionRoleCrmData", 'String'>
|
|
8000
|
+
readonly engagement_ended__churned__date: FieldRef<"MissionRoleCrmData", 'String'>
|
|
8001
|
+
readonly engagement_ended_reason: FieldRef<"MissionRoleCrmData", 'String'>
|
|
8002
|
+
readonly engagement_ended__churned__reason_details: FieldRef<"MissionRoleCrmData", 'String'>
|
|
8003
|
+
}
|
|
8004
|
+
|
|
8005
|
+
|
|
8006
|
+
// Custom InputTypes
|
|
8007
|
+
/**
|
|
8008
|
+
* MissionRoleCrmData without action
|
|
8009
|
+
*/
|
|
8010
|
+
export type MissionRoleCrmDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8011
|
+
/**
|
|
8012
|
+
* Select specific fields to fetch from the MissionRoleCrmData
|
|
8013
|
+
*/
|
|
8014
|
+
select?: MissionRoleCrmDataSelect<ExtArgs> | null
|
|
8015
|
+
}
|
|
8016
|
+
|
|
8017
|
+
|
|
7924
8018
|
/**
|
|
7925
8019
|
* Model MissionRole
|
|
7926
8020
|
*/
|
|
@@ -7972,6 +8066,7 @@ export namespace Prisma {
|
|
|
7972
8066
|
isExpansion?: boolean
|
|
7973
8067
|
hiddenFromUserIds?: boolean
|
|
7974
8068
|
hubspotDealId?: boolean
|
|
8069
|
+
crm?: boolean | MissionRoleCrmDataDefaultArgs<ExtArgs>
|
|
7975
8070
|
}, ExtArgs["result"]["missionRole"]>
|
|
7976
8071
|
|
|
7977
8072
|
|
|
@@ -8062,6 +8157,7 @@ export namespace Prisma {
|
|
|
8062
8157
|
visibility: Prisma.$MissionRoleVisibilityPayload | null
|
|
8063
8158
|
workingHours: Prisma.$MissionRoleWorkingHoursPayload | null
|
|
8064
8159
|
removalRequest: Prisma.$MissionRoleRemovalRequestPayload | null
|
|
8160
|
+
crm: Prisma.$MissionRoleCrmDataPayload | null
|
|
8065
8161
|
}
|
|
8066
8162
|
}
|
|
8067
8163
|
|
|
@@ -54731,6 +54827,7 @@ export namespace Prisma {
|
|
|
54731
54827
|
isExpansion?: boolean | null
|
|
54732
54828
|
hiddenFromUserIds?: string[]
|
|
54733
54829
|
hubspotDealId?: string | null
|
|
54830
|
+
crm?: MissionRoleCrmDataObjectEqualityInput | null
|
|
54734
54831
|
}
|
|
54735
54832
|
|
|
54736
54833
|
export type EnumMissionStatusFilter<$PrismaModel = never> = {
|
|
@@ -58403,6 +58500,7 @@ export namespace Prisma {
|
|
|
58403
58500
|
isExpansion?: boolean | null
|
|
58404
58501
|
hiddenFromUserIds?: MissionRoleCreatehiddenFromUserIdsInput | string[]
|
|
58405
58502
|
hubspotDealId?: string | null
|
|
58503
|
+
crm?: MissionRoleCrmDataCreateInput | null
|
|
58406
58504
|
}
|
|
58407
58505
|
|
|
58408
58506
|
export type MissionCreatetalentIndustriesInput = {
|
|
@@ -61759,6 +61857,7 @@ export namespace Prisma {
|
|
|
61759
61857
|
isExpansion?: BoolNullableFilter<"MissionRole"> | boolean | null
|
|
61760
61858
|
hiddenFromUserIds?: StringNullableListFilter<"MissionRole">
|
|
61761
61859
|
hubspotDealId?: StringNullableFilter<"MissionRole"> | string | null
|
|
61860
|
+
crm?: XOR<MissionRoleCrmDataNullableCompositeFilter, MissionRoleCrmDataObjectEqualityInput> | null
|
|
61762
61861
|
}
|
|
61763
61862
|
|
|
61764
61863
|
export type MissionRoleAvailabilityObjectEqualityInput = {
|
|
@@ -61811,6 +61910,19 @@ export namespace Prisma {
|
|
|
61811
61910
|
createdAt: Date | string
|
|
61812
61911
|
}
|
|
61813
61912
|
|
|
61913
|
+
export type MissionRoleCrmDataObjectEqualityInput = {
|
|
61914
|
+
mission_posted_by_tfs_date?: string | null
|
|
61915
|
+
role___closed_lost_from_stage?: string | null
|
|
61916
|
+
role___closed_lost_reason?: string | null
|
|
61917
|
+
role___closed_lost_reason_details?: string | null
|
|
61918
|
+
role___closed_won_reason?: string | null
|
|
61919
|
+
role___closed_won_reason_details?: string | null
|
|
61920
|
+
estimated_engagement_end__churn__date?: string | null
|
|
61921
|
+
engagement_ended__churned__date?: string | null
|
|
61922
|
+
engagement_ended_reason?: string | null
|
|
61923
|
+
engagement_ended__churned__reason_details?: string | null
|
|
61924
|
+
}
|
|
61925
|
+
|
|
61814
61926
|
export type NestedEnumMissionStatusFilter<$PrismaModel = never> = {
|
|
61815
61927
|
equals?: $Enums.MissionStatus | EnumMissionStatusFieldRefInput<$PrismaModel>
|
|
61816
61928
|
in?: $Enums.MissionStatus[] | ListEnumMissionStatusFieldRefInput<$PrismaModel>
|
|
@@ -67543,6 +67655,19 @@ export namespace Prisma {
|
|
|
67543
67655
|
set: string[]
|
|
67544
67656
|
}
|
|
67545
67657
|
|
|
67658
|
+
export type MissionRoleCrmDataCreateInput = {
|
|
67659
|
+
mission_posted_by_tfs_date?: string | null
|
|
67660
|
+
role___closed_lost_from_stage?: string | null
|
|
67661
|
+
role___closed_lost_reason?: string | null
|
|
67662
|
+
role___closed_lost_reason_details?: string | null
|
|
67663
|
+
role___closed_won_reason?: string | null
|
|
67664
|
+
role___closed_won_reason_details?: string | null
|
|
67665
|
+
estimated_engagement_end__churn__date?: string | null
|
|
67666
|
+
engagement_ended__churned__date?: string | null
|
|
67667
|
+
engagement_ended_reason?: string | null
|
|
67668
|
+
engagement_ended__churned__reason_details?: string | null
|
|
67669
|
+
}
|
|
67670
|
+
|
|
67546
67671
|
export type AccountCreateWithoutMissionsInput = {
|
|
67547
67672
|
id?: string
|
|
67548
67673
|
members?: XOR<AccountsMemberListCreateEnvelopeInput, AccountsMemberCreateInput> | AccountsMemberCreateInput[]
|
|
@@ -74465,6 +74590,13 @@ export namespace Prisma {
|
|
|
74465
74590
|
isSet?: boolean
|
|
74466
74591
|
}
|
|
74467
74592
|
|
|
74593
|
+
export type MissionRoleCrmDataNullableCompositeFilter = {
|
|
74594
|
+
equals?: MissionRoleCrmDataObjectEqualityInput | null
|
|
74595
|
+
is?: MissionRoleCrmDataWhereInput | null
|
|
74596
|
+
isNot?: MissionRoleCrmDataWhereInput | null
|
|
74597
|
+
isSet?: boolean
|
|
74598
|
+
}
|
|
74599
|
+
|
|
74468
74600
|
export type FloatFilter<$PrismaModel = never> = {
|
|
74469
74601
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
74470
74602
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
|
@@ -76133,6 +76265,7 @@ export namespace Prisma {
|
|
|
76133
76265
|
isExpansion?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
76134
76266
|
hiddenFromUserIds?: MissionRoleUpdatehiddenFromUserIdsInput | string[]
|
|
76135
76267
|
hubspotDealId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76268
|
+
crm?: XOR<MissionRoleCrmDataNullableUpdateEnvelopeInput, MissionRoleCrmDataCreateInput> | null
|
|
76136
76269
|
}
|
|
76137
76270
|
|
|
76138
76271
|
export type MissionsTestingUpdateInput = {
|
|
@@ -79125,6 +79258,22 @@ export namespace Prisma {
|
|
|
79125
79258
|
createdAt?: DateTimeFilter<"MissionRoleRemovalRequest"> | Date | string
|
|
79126
79259
|
}
|
|
79127
79260
|
|
|
79261
|
+
export type MissionRoleCrmDataWhereInput = {
|
|
79262
|
+
AND?: MissionRoleCrmDataWhereInput | MissionRoleCrmDataWhereInput[]
|
|
79263
|
+
OR?: MissionRoleCrmDataWhereInput[]
|
|
79264
|
+
NOT?: MissionRoleCrmDataWhereInput | MissionRoleCrmDataWhereInput[]
|
|
79265
|
+
mission_posted_by_tfs_date?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79266
|
+
role___closed_lost_from_stage?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79267
|
+
role___closed_lost_reason?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79268
|
+
role___closed_lost_reason_details?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79269
|
+
role___closed_won_reason?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79270
|
+
role___closed_won_reason_details?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79271
|
+
estimated_engagement_end__churn__date?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79272
|
+
engagement_ended__churned__date?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79273
|
+
engagement_ended_reason?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79274
|
+
engagement_ended__churned__reason_details?: StringNullableFilter<"MissionRoleCrmData"> | string | null
|
|
79275
|
+
}
|
|
79276
|
+
|
|
79128
79277
|
export type LocalHourRangeWhereInput = {
|
|
79129
79278
|
AND?: LocalHourRangeWhereInput | LocalHourRangeWhereInput[]
|
|
79130
79279
|
OR?: LocalHourRangeWhereInput[]
|
|
@@ -79446,6 +79595,12 @@ export namespace Prisma {
|
|
|
79446
79595
|
push?: string | string[]
|
|
79447
79596
|
}
|
|
79448
79597
|
|
|
79598
|
+
export type MissionRoleCrmDataNullableUpdateEnvelopeInput = {
|
|
79599
|
+
set?: MissionRoleCrmDataCreateInput | null
|
|
79600
|
+
upsert?: MissionRoleCrmDataUpsertInput
|
|
79601
|
+
unset?: boolean
|
|
79602
|
+
}
|
|
79603
|
+
|
|
79449
79604
|
export type FloatFieldUpdateOperationsInput = {
|
|
79450
79605
|
set?: number
|
|
79451
79606
|
increment?: number
|
|
@@ -79788,6 +79943,11 @@ export namespace Prisma {
|
|
|
79788
79943
|
update: MissionRoleRemovalRequestUpdateInput
|
|
79789
79944
|
}
|
|
79790
79945
|
|
|
79946
|
+
export type MissionRoleCrmDataUpsertInput = {
|
|
79947
|
+
set: MissionRoleCrmDataCreateInput | null
|
|
79948
|
+
update: MissionRoleCrmDataUpdateInput
|
|
79949
|
+
}
|
|
79950
|
+
|
|
79791
79951
|
export type LocalHourRangeUpdateManyInput = {
|
|
79792
79952
|
where: LocalHourRangeWhereInput
|
|
79793
79953
|
data: LocalHourRangeUpdateInput
|
|
@@ -80017,6 +80177,19 @@ export namespace Prisma {
|
|
|
80017
80177
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
80018
80178
|
}
|
|
80019
80179
|
|
|
80180
|
+
export type MissionRoleCrmDataUpdateInput = {
|
|
80181
|
+
mission_posted_by_tfs_date?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80182
|
+
role___closed_lost_from_stage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80183
|
+
role___closed_lost_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80184
|
+
role___closed_lost_reason_details?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80185
|
+
role___closed_won_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80186
|
+
role___closed_won_reason_details?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80187
|
+
estimated_engagement_end__churn__date?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80188
|
+
engagement_ended__churned__date?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80189
|
+
engagement_ended_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80190
|
+
engagement_ended__churned__reason_details?: NullableStringFieldUpdateOperationsInput | string | null
|
|
80191
|
+
}
|
|
80192
|
+
|
|
80020
80193
|
export type LocalHourRangeUpdateInput = {
|
|
80021
80194
|
endTime?: NullableIntFieldUpdateOperationsInput | number | null
|
|
80022
80195
|
startTime?: NullableIntFieldUpdateOperationsInput | number | null
|
|
@@ -80364,6 +80537,10 @@ export namespace Prisma {
|
|
|
80364
80537
|
* @deprecated Use MissionRoleRemovalRequestDefaultArgs instead
|
|
80365
80538
|
*/
|
|
80366
80539
|
export type MissionRoleRemovalRequestArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionRoleRemovalRequestDefaultArgs<ExtArgs>
|
|
80540
|
+
/**
|
|
80541
|
+
* @deprecated Use MissionRoleCrmDataDefaultArgs instead
|
|
80542
|
+
*/
|
|
80543
|
+
export type MissionRoleCrmDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = MissionRoleCrmDataDefaultArgs<ExtArgs>
|
|
80367
80544
|
/**
|
|
80368
80545
|
* @deprecated Use MissionRoleDefaultArgs instead
|
|
80369
80546
|
*/
|