@a_team/prisma 3.2.9-win → 3.2.10-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.
@@ -359,7 +359,8 @@ exports.PresetID = exports.$Enums.PresetID = {
359
359
 
360
360
  exports.ContractPartyType = exports.$Enums.ContractPartyType = {
361
361
  BillingCustomer: 'BillingCustomer',
362
- MissionRole: 'MissionRole'
362
+ MissionRole: 'MissionRole',
363
+ ATeam: 'ATeam'
363
364
  };
364
365
 
365
366
  exports.MissionRoleStatus = exports.$Enums.MissionRoleStatus = {
@@ -58,6 +58,11 @@ export type CompanyEnrichment = $Result.DefaultSelection<Prisma.$CompanyEnrichme
58
58
  *
59
59
  */
60
60
  export type ContractParty = $Result.DefaultSelection<Prisma.$ContractPartyPayload>
61
+ /**
62
+ * Model PandadocRecipient
63
+ *
64
+ */
65
+ export type PandadocRecipient = $Result.DefaultSelection<Prisma.$PandadocRecipientPayload>
61
66
  /**
62
67
  * Model PandadocMetadata
63
68
  *
@@ -306,7 +311,8 @@ export type PresetID = (typeof PresetID)[keyof typeof PresetID]
306
311
 
307
312
  export const ContractPartyType: {
308
313
  BillingCustomer: 'BillingCustomer',
309
- MissionRole: 'MissionRole'
314
+ MissionRole: 'MissionRole',
315
+ ATeam: 'ATeam'
310
316
  };
311
317
 
312
318
  export type ContractPartyType = (typeof ContractPartyType)[keyof typeof ContractPartyType]
@@ -2884,6 +2890,67 @@ export namespace Prisma {
2884
2890
  }
2885
2891
 
2886
2892
 
2893
+ /**
2894
+ * Model PandadocRecipient
2895
+ */
2896
+
2897
+
2898
+
2899
+
2900
+
2901
+ export type PandadocRecipientSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
2902
+ id?: boolean
2903
+ email?: boolean
2904
+ role?: boolean
2905
+ }, ExtArgs["result"]["pandadocRecipient"]>
2906
+
2907
+
2908
+ export type PandadocRecipientSelectScalar = {
2909
+ id?: boolean
2910
+ email?: boolean
2911
+ role?: boolean
2912
+ }
2913
+
2914
+
2915
+ export type $PandadocRecipientPayload = {
2916
+ name: "PandadocRecipient"
2917
+ objects: {}
2918
+ scalars: {
2919
+ id: string
2920
+ email: string
2921
+ role: string | null
2922
+ }
2923
+ composites: {}
2924
+ }
2925
+
2926
+ type PandadocRecipientGetPayload<S extends boolean | null | undefined | PandadocRecipientDefaultArgs> = $Result.GetResult<Prisma.$PandadocRecipientPayload, S>
2927
+
2928
+
2929
+
2930
+
2931
+
2932
+ /**
2933
+ * Fields of the PandadocRecipient model
2934
+ */
2935
+ interface PandadocRecipientFieldRefs {
2936
+ readonly id: FieldRef<"PandadocRecipient", 'String'>
2937
+ readonly email: FieldRef<"PandadocRecipient", 'String'>
2938
+ readonly role: FieldRef<"PandadocRecipient", 'String'>
2939
+ }
2940
+
2941
+
2942
+ // Custom InputTypes
2943
+ /**
2944
+ * PandadocRecipient without action
2945
+ */
2946
+ export type PandadocRecipientDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2947
+ /**
2948
+ * Select specific fields to fetch from the PandadocRecipient
2949
+ */
2950
+ select?: PandadocRecipientSelect<ExtArgs> | null
2951
+ }
2952
+
2953
+
2887
2954
  /**
2888
2955
  * Model PandadocMetadata
2889
2956
  */
@@ -2896,6 +2963,8 @@ export namespace Prisma {
2896
2963
  id?: boolean
2897
2964
  hubspotDealId?: boolean
2898
2965
  hubspotCompanyId?: boolean
2966
+ recipients?: boolean | PandadocRecipientDefaultArgs<ExtArgs>
2967
+ isDocumentSent?: boolean
2899
2968
  }, ExtArgs["result"]["pandadocMetadata"]>
2900
2969
 
2901
2970
 
@@ -2903,8 +2972,10 @@ export namespace Prisma {
2903
2972
  id?: boolean
2904
2973
  hubspotDealId?: boolean
2905
2974
  hubspotCompanyId?: boolean
2975
+ isDocumentSent?: boolean
2906
2976
  }
2907
2977
 
2978
+ export type PandadocMetadataInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
2908
2979
 
2909
2980
  export type $PandadocMetadataPayload = {
2910
2981
  name: "PandadocMetadata"
@@ -2913,8 +2984,11 @@ export namespace Prisma {
2913
2984
  id: string
2914
2985
  hubspotDealId: string | null
2915
2986
  hubspotCompanyId: string | null
2987
+ isDocumentSent: boolean
2988
+ }
2989
+ composites: {
2990
+ recipients: Prisma.$PandadocRecipientPayload[]
2916
2991
  }
2917
- composites: {}
2918
2992
  }
2919
2993
 
2920
2994
  type PandadocMetadataGetPayload<S extends boolean | null | undefined | PandadocMetadataDefaultArgs> = $Result.GetResult<Prisma.$PandadocMetadataPayload, S>
@@ -2930,6 +3004,7 @@ export namespace Prisma {
2930
3004
  readonly id: FieldRef<"PandadocMetadata", 'String'>
2931
3005
  readonly hubspotDealId: FieldRef<"PandadocMetadata", 'String'>
2932
3006
  readonly hubspotCompanyId: FieldRef<"PandadocMetadata", 'String'>
3007
+ readonly isDocumentSent: FieldRef<"PandadocMetadata", 'Boolean'>
2933
3008
  }
2934
3009
 
2935
3010
 
@@ -2942,6 +3017,10 @@ export namespace Prisma {
2942
3017
  * Select specific fields to fetch from the PandadocMetadata
2943
3018
  */
2944
3019
  select?: PandadocMetadataSelect<ExtArgs> | null
3020
+ /**
3021
+ * Choose, which related nodes to fetch as well
3022
+ */
3023
+ include?: PandadocMetadataInclude<ExtArgs> | null
2945
3024
  }
2946
3025
 
2947
3026
 
@@ -20404,6 +20483,8 @@ export namespace Prisma {
20404
20483
  id: string
20405
20484
  hubspotDealId?: string | null
20406
20485
  hubspotCompanyId?: string | null
20486
+ recipients?: PandadocRecipientObjectEqualityInput[]
20487
+ isDocumentSent: boolean
20407
20488
  }
20408
20489
 
20409
20490
  export type EnumContractSourceNullableFilter<$PrismaModel = never> = {
@@ -20432,6 +20513,8 @@ export namespace Prisma {
20432
20513
  id?: SortOrder
20433
20514
  hubspotDealId?: SortOrder
20434
20515
  hubspotCompanyId?: SortOrder
20516
+ recipients?: PandadocRecipientOrderByCompositeAggregateInput
20517
+ isDocumentSent?: SortOrder
20435
20518
  }
20436
20519
 
20437
20520
  export type ContractCountOrderByAggregateInput = {
@@ -21828,6 +21911,8 @@ export namespace Prisma {
21828
21911
  id: string
21829
21912
  hubspotDealId?: string | null
21830
21913
  hubspotCompanyId?: string | null
21914
+ recipients?: PandadocRecipientCreateInput | PandadocRecipientCreateInput[]
21915
+ isDocumentSent?: boolean
21831
21916
  }
21832
21917
 
21833
21918
  export type MissionCreateNestedOneWithoutContractsInput = {
@@ -22964,6 +23049,14 @@ export namespace Prisma {
22964
23049
  id?: StringFilter<"PandadocMetadata"> | string
22965
23050
  hubspotDealId?: StringNullableFilter<"PandadocMetadata"> | string | null
22966
23051
  hubspotCompanyId?: StringNullableFilter<"PandadocMetadata"> | string | null
23052
+ recipients?: PandadocRecipientCompositeListFilter | PandadocRecipientObjectEqualityInput[]
23053
+ isDocumentSent?: BoolFilter<"PandadocMetadata"> | boolean
23054
+ }
23055
+
23056
+ export type PandadocRecipientObjectEqualityInput = {
23057
+ id: string
23058
+ email: string
23059
+ role?: string | null
22967
23060
  }
22968
23061
 
22969
23062
  export type NestedEnumContractSourceNullableFilter<$PrismaModel = never> = {
@@ -22974,6 +23067,10 @@ export namespace Prisma {
22974
23067
  isSet?: boolean
22975
23068
  }
22976
23069
 
23070
+ export type PandadocRecipientOrderByCompositeAggregateInput = {
23071
+ _count?: SortOrder
23072
+ }
23073
+
22977
23074
  export type NestedEnumContractStatusWithAggregatesFilter<$PrismaModel = never> = {
22978
23075
  equals?: $Enums.ContractStatus | EnumContractStatusFieldRefInput<$PrismaModel>
22979
23076
  in?: $Enums.ContractStatus[] | ListEnumContractStatusFieldRefInput<$PrismaModel>
@@ -24134,6 +24231,12 @@ export namespace Prisma {
24134
24231
  data: XOR<AccountUpdateManyMutationInput, AccountUncheckedUpdateManyWithoutCompanyInput>
24135
24232
  }
24136
24233
 
24234
+ export type PandadocRecipientCreateInput = {
24235
+ id: string
24236
+ email: string
24237
+ role?: string | null
24238
+ }
24239
+
24137
24240
  export type MissionCreateWithoutContractsInput = {
24138
24241
  mid?: string
24139
24242
  applyStatus?: string | null
@@ -26216,6 +26319,15 @@ export namespace Prisma {
26216
26319
  not?: NestedEnumContractPartyTypeFilter<$PrismaModel> | $Enums.ContractPartyType
26217
26320
  }
26218
26321
 
26322
+ export type PandadocRecipientCompositeListFilter = {
26323
+ equals?: PandadocRecipientObjectEqualityInput[]
26324
+ every?: PandadocRecipientWhereInput
26325
+ some?: PandadocRecipientWhereInput
26326
+ none?: PandadocRecipientWhereInput
26327
+ isEmpty?: boolean
26328
+ isSet?: boolean
26329
+ }
26330
+
26219
26331
  export type MissionRoleAvailabilityNullableCompositeFilter = {
26220
26332
  equals?: MissionRoleAvailabilityObjectEqualityInput | null
26221
26333
  is?: MissionRoleAvailabilityWhereInput | null
@@ -26941,6 +27053,8 @@ export namespace Prisma {
26941
27053
  id?: StringFieldUpdateOperationsInput | string
26942
27054
  hubspotDealId?: NullableStringFieldUpdateOperationsInput | string | null
26943
27055
  hubspotCompanyId?: NullableStringFieldUpdateOperationsInput | string | null
27056
+ recipients?: XOR<PandadocRecipientListUpdateEnvelopeInput, PandadocRecipientCreateInput> | PandadocRecipientCreateInput[]
27057
+ isDocumentSent?: BoolFieldUpdateOperationsInput | boolean
26944
27058
  }
26945
27059
 
26946
27060
  export type TimezoneObjectCreateInput = {
@@ -27834,6 +27948,15 @@ export namespace Prisma {
27834
27948
  not?: NestedEnumContractPartyTypeFilter<$PrismaModel> | $Enums.ContractPartyType
27835
27949
  }
27836
27950
 
27951
+ export type PandadocRecipientWhereInput = {
27952
+ AND?: PandadocRecipientWhereInput | PandadocRecipientWhereInput[]
27953
+ OR?: PandadocRecipientWhereInput[]
27954
+ NOT?: PandadocRecipientWhereInput | PandadocRecipientWhereInput[]
27955
+ id?: StringFilter<"PandadocRecipient"> | string
27956
+ email?: StringFilter<"PandadocRecipient"> | string
27957
+ role?: StringNullableFilter<"PandadocRecipient"> | string | null
27958
+ }
27959
+
27837
27960
  export type MissionRoleAvailabilityWhereInput = {
27838
27961
  AND?: MissionRoleAvailabilityWhereInput | MissionRoleAvailabilityWhereInput[]
27839
27962
  OR?: MissionRoleAvailabilityWhereInput[]
@@ -27961,6 +28084,13 @@ export namespace Prisma {
27961
28084
  set?: $Enums.ContractPartyType
27962
28085
  }
27963
28086
 
28087
+ export type PandadocRecipientListUpdateEnvelopeInput = {
28088
+ set?: PandadocRecipientCreateInput | PandadocRecipientCreateInput[]
28089
+ push?: PandadocRecipientCreateInput | PandadocRecipientCreateInput[]
28090
+ updateMany?: PandadocRecipientUpdateManyInput
28091
+ deleteMany?: PandadocRecipientDeleteManyInput
28092
+ }
28093
+
27964
28094
  export type MissionRoleAvailabilityNullableUpdateEnvelopeInput = {
27965
28095
  set?: MissionRoleAvailabilityCreateInput | null
27966
28096
  upsert?: MissionRoleAvailabilityUpsertInput
@@ -28103,6 +28233,15 @@ export namespace Prisma {
28103
28233
  data?: InputJsonValue | InputJsonValue | null
28104
28234
  }
28105
28235
 
28236
+ export type PandadocRecipientUpdateManyInput = {
28237
+ where: PandadocRecipientWhereInput
28238
+ data: PandadocRecipientUpdateInput
28239
+ }
28240
+
28241
+ export type PandadocRecipientDeleteManyInput = {
28242
+ where: PandadocRecipientWhereInput
28243
+ }
28244
+
28106
28245
  export type MissionRoleAvailabilityUpsertInput = {
28107
28246
  set: MissionRoleAvailabilityCreateInput | null
28108
28247
  update: MissionRoleAvailabilityUpdateInput
@@ -28181,6 +28320,12 @@ export namespace Prisma {
28181
28320
  push?: string | string[]
28182
28321
  }
28183
28322
 
28323
+ export type PandadocRecipientUpdateInput = {
28324
+ id?: StringFieldUpdateOperationsInput | string
28325
+ email?: StringFieldUpdateOperationsInput | string
28326
+ role?: NullableStringFieldUpdateOperationsInput | string | null
28327
+ }
28328
+
28184
28329
  export type MissionRoleAvailabilityUpdateInput = {
28185
28330
  date?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
28186
28331
  scheduledEndDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
@@ -28324,6 +28469,10 @@ export namespace Prisma {
28324
28469
  * @deprecated Use ContractPartyDefaultArgs instead
28325
28470
  */
28326
28471
  export type ContractPartyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ContractPartyDefaultArgs<ExtArgs>
28472
+ /**
28473
+ * @deprecated Use PandadocRecipientDefaultArgs instead
28474
+ */
28475
+ export type PandadocRecipientArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = PandadocRecipientDefaultArgs<ExtArgs>
28327
28476
  /**
28328
28477
  * @deprecated Use PandadocMetadataDefaultArgs instead
28329
28478
  */