@a_team/prisma 3.16.3-macos-docker-linux → 3.16.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 +162 -1
- 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 +10 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -28,6 +28,11 @@ export type AccountsWorkspace = $Result.DefaultSelection<Prisma.$AccountsWorkspa
|
|
|
28
28
|
*
|
|
29
29
|
*/
|
|
30
30
|
export type BillingAccountBillingInfo = $Result.DefaultSelection<Prisma.$BillingAccountBillingInfoPayload>
|
|
31
|
+
/**
|
|
32
|
+
* Model BillingAccountBillingInfoAddress
|
|
33
|
+
*
|
|
34
|
+
*/
|
|
35
|
+
export type BillingAccountBillingInfoAddress = $Result.DefaultSelection<Prisma.$BillingAccountBillingInfoAddressPayload>
|
|
31
36
|
/**
|
|
32
37
|
* Model BillingAccountStripeInfo
|
|
33
38
|
*
|
|
@@ -5037,6 +5042,7 @@ export namespace Prisma {
|
|
|
5037
5042
|
contactName?: boolean
|
|
5038
5043
|
contactEmail?: boolean
|
|
5039
5044
|
tin?: boolean
|
|
5045
|
+
address?: boolean | BillingAccountBillingInfoAddressDefaultArgs<ExtArgs>
|
|
5040
5046
|
}, ExtArgs["result"]["billingAccountBillingInfo"]>
|
|
5041
5047
|
|
|
5042
5048
|
|
|
@@ -5047,6 +5053,7 @@ export namespace Prisma {
|
|
|
5047
5053
|
tin?: boolean
|
|
5048
5054
|
}
|
|
5049
5055
|
|
|
5056
|
+
export type BillingAccountBillingInfoInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
5050
5057
|
|
|
5051
5058
|
export type $BillingAccountBillingInfoPayload = {
|
|
5052
5059
|
name: "BillingAccountBillingInfo"
|
|
@@ -5057,7 +5064,9 @@ export namespace Prisma {
|
|
|
5057
5064
|
contactEmail: string | null
|
|
5058
5065
|
tin: string | null
|
|
5059
5066
|
}
|
|
5060
|
-
composites: {
|
|
5067
|
+
composites: {
|
|
5068
|
+
address: Prisma.$BillingAccountBillingInfoAddressPayload | null
|
|
5069
|
+
}
|
|
5061
5070
|
}
|
|
5062
5071
|
|
|
5063
5072
|
type BillingAccountBillingInfoGetPayload<S extends boolean | null | undefined | BillingAccountBillingInfoDefaultArgs> = $Result.GetResult<Prisma.$BillingAccountBillingInfoPayload, S>
|
|
@@ -5086,6 +5095,83 @@ export namespace Prisma {
|
|
|
5086
5095
|
* Select specific fields to fetch from the BillingAccountBillingInfo
|
|
5087
5096
|
*/
|
|
5088
5097
|
select?: BillingAccountBillingInfoSelect<ExtArgs> | null
|
|
5098
|
+
/**
|
|
5099
|
+
* Choose, which related nodes to fetch as well
|
|
5100
|
+
*/
|
|
5101
|
+
include?: BillingAccountBillingInfoInclude<ExtArgs> | null
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
|
|
5105
|
+
/**
|
|
5106
|
+
* Model BillingAccountBillingInfoAddress
|
|
5107
|
+
*/
|
|
5108
|
+
|
|
5109
|
+
|
|
5110
|
+
|
|
5111
|
+
|
|
5112
|
+
|
|
5113
|
+
export type BillingAccountBillingInfoAddressSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5114
|
+
line1?: boolean
|
|
5115
|
+
city?: boolean
|
|
5116
|
+
countryCode?: boolean
|
|
5117
|
+
line2?: boolean
|
|
5118
|
+
postalCode?: boolean
|
|
5119
|
+
state?: boolean
|
|
5120
|
+
}, ExtArgs["result"]["billingAccountBillingInfoAddress"]>
|
|
5121
|
+
|
|
5122
|
+
|
|
5123
|
+
export type BillingAccountBillingInfoAddressSelectScalar = {
|
|
5124
|
+
line1?: boolean
|
|
5125
|
+
city?: boolean
|
|
5126
|
+
countryCode?: boolean
|
|
5127
|
+
line2?: boolean
|
|
5128
|
+
postalCode?: boolean
|
|
5129
|
+
state?: boolean
|
|
5130
|
+
}
|
|
5131
|
+
|
|
5132
|
+
|
|
5133
|
+
export type $BillingAccountBillingInfoAddressPayload = {
|
|
5134
|
+
name: "BillingAccountBillingInfoAddress"
|
|
5135
|
+
objects: {}
|
|
5136
|
+
scalars: {
|
|
5137
|
+
line1: string
|
|
5138
|
+
city: string
|
|
5139
|
+
countryCode: string
|
|
5140
|
+
line2: string | null
|
|
5141
|
+
postalCode: string | null
|
|
5142
|
+
state: string | null
|
|
5143
|
+
}
|
|
5144
|
+
composites: {}
|
|
5145
|
+
}
|
|
5146
|
+
|
|
5147
|
+
type BillingAccountBillingInfoAddressGetPayload<S extends boolean | null | undefined | BillingAccountBillingInfoAddressDefaultArgs> = $Result.GetResult<Prisma.$BillingAccountBillingInfoAddressPayload, S>
|
|
5148
|
+
|
|
5149
|
+
|
|
5150
|
+
|
|
5151
|
+
|
|
5152
|
+
|
|
5153
|
+
/**
|
|
5154
|
+
* Fields of the BillingAccountBillingInfoAddress model
|
|
5155
|
+
*/
|
|
5156
|
+
interface BillingAccountBillingInfoAddressFieldRefs {
|
|
5157
|
+
readonly line1: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5158
|
+
readonly city: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5159
|
+
readonly countryCode: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5160
|
+
readonly line2: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5161
|
+
readonly postalCode: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5162
|
+
readonly state: FieldRef<"BillingAccountBillingInfoAddress", 'String'>
|
|
5163
|
+
}
|
|
5164
|
+
|
|
5165
|
+
|
|
5166
|
+
// Custom InputTypes
|
|
5167
|
+
/**
|
|
5168
|
+
* BillingAccountBillingInfoAddress without action
|
|
5169
|
+
*/
|
|
5170
|
+
export type BillingAccountBillingInfoAddressDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5171
|
+
/**
|
|
5172
|
+
* Select specific fields to fetch from the BillingAccountBillingInfoAddress
|
|
5173
|
+
*/
|
|
5174
|
+
select?: BillingAccountBillingInfoAddressSelect<ExtArgs> | null
|
|
5089
5175
|
}
|
|
5090
5176
|
|
|
5091
5177
|
|
|
@@ -49980,6 +50066,7 @@ export namespace Prisma {
|
|
|
49980
50066
|
contactName?: string | null
|
|
49981
50067
|
contactEmail?: string | null
|
|
49982
50068
|
tin?: string | null
|
|
50069
|
+
address?: BillingAccountBillingInfoAddressObjectEqualityInput | null
|
|
49983
50070
|
}
|
|
49984
50071
|
|
|
49985
50072
|
export type BillingAccountStripeInfoNullableCompositeFilter = {
|
|
@@ -50015,6 +50102,7 @@ export namespace Prisma {
|
|
|
50015
50102
|
contactName?: SortOrder
|
|
50016
50103
|
contactEmail?: SortOrder
|
|
50017
50104
|
tin?: SortOrder
|
|
50105
|
+
address?: BillingAccountBillingInfoAddressOrderByInput
|
|
50018
50106
|
}
|
|
50019
50107
|
|
|
50020
50108
|
export type BillingAccountStripeInfoOrderByInput = {
|
|
@@ -53829,6 +53917,7 @@ export namespace Prisma {
|
|
|
53829
53917
|
contactName?: string | null
|
|
53830
53918
|
contactEmail?: string | null
|
|
53831
53919
|
tin?: string | null
|
|
53920
|
+
address?: BillingAccountBillingInfoAddressCreateInput | null
|
|
53832
53921
|
}
|
|
53833
53922
|
|
|
53834
53923
|
export type BillingAccountStripeInfoNullableCreateEnvelopeInput = {
|
|
@@ -57588,6 +57677,16 @@ export namespace Prisma {
|
|
|
57588
57677
|
contactName?: StringNullableFilter<"BillingAccountBillingInfo"> | string | null
|
|
57589
57678
|
contactEmail?: StringNullableFilter<"BillingAccountBillingInfo"> | string | null
|
|
57590
57679
|
tin?: StringNullableFilter<"BillingAccountBillingInfo"> | string | null
|
|
57680
|
+
address?: XOR<BillingAccountBillingInfoAddressNullableCompositeFilter, BillingAccountBillingInfoAddressObjectEqualityInput> | null
|
|
57681
|
+
}
|
|
57682
|
+
|
|
57683
|
+
export type BillingAccountBillingInfoAddressObjectEqualityInput = {
|
|
57684
|
+
line1: string
|
|
57685
|
+
city: string
|
|
57686
|
+
countryCode: string
|
|
57687
|
+
line2?: string | null
|
|
57688
|
+
postalCode?: string | null
|
|
57689
|
+
state?: string | null
|
|
57591
57690
|
}
|
|
57592
57691
|
|
|
57593
57692
|
export type BillingAccountStripeInfoWhereInput = {
|
|
@@ -57604,6 +57703,15 @@ export namespace Prisma {
|
|
|
57604
57703
|
due?: EnumBillingPaymentDueFilter<"BillingAccountPaymentTerms"> | $Enums.BillingPaymentDue
|
|
57605
57704
|
}
|
|
57606
57705
|
|
|
57706
|
+
export type BillingAccountBillingInfoAddressOrderByInput = {
|
|
57707
|
+
line1?: SortOrder
|
|
57708
|
+
city?: SortOrder
|
|
57709
|
+
countryCode?: SortOrder
|
|
57710
|
+
line2?: SortOrder
|
|
57711
|
+
postalCode?: SortOrder
|
|
57712
|
+
state?: SortOrder
|
|
57713
|
+
}
|
|
57714
|
+
|
|
57607
57715
|
export type CalendarCredentialsWhereInput = {
|
|
57608
57716
|
AND?: CalendarCredentialsWhereInput | CalendarCredentialsWhereInput[]
|
|
57609
57717
|
OR?: CalendarCredentialsWhereInput[]
|
|
@@ -59862,6 +59970,15 @@ export namespace Prisma {
|
|
|
59862
59970
|
calendarEventId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
59863
59971
|
}
|
|
59864
59972
|
|
|
59973
|
+
export type BillingAccountBillingInfoAddressCreateInput = {
|
|
59974
|
+
line1: string
|
|
59975
|
+
city: string
|
|
59976
|
+
countryCode: string
|
|
59977
|
+
line2?: string | null
|
|
59978
|
+
postalCode?: string | null
|
|
59979
|
+
state?: string | null
|
|
59980
|
+
}
|
|
59981
|
+
|
|
59865
59982
|
export type ClientCompanyCreateWithoutBillingAccountInput = {
|
|
59866
59983
|
id?: string
|
|
59867
59984
|
createdAt?: Date | string | null
|
|
@@ -70291,6 +70408,13 @@ export namespace Prisma {
|
|
|
70291
70408
|
proposals?: ProposalUncheckedUpdateManyWithoutMissionNestedInput
|
|
70292
70409
|
}
|
|
70293
70410
|
|
|
70411
|
+
export type BillingAccountBillingInfoAddressNullableCompositeFilter = {
|
|
70412
|
+
equals?: BillingAccountBillingInfoAddressObjectEqualityInput | null
|
|
70413
|
+
is?: BillingAccountBillingInfoAddressWhereInput | null
|
|
70414
|
+
isNot?: BillingAccountBillingInfoAddressWhereInput | null
|
|
70415
|
+
isSet?: boolean
|
|
70416
|
+
}
|
|
70417
|
+
|
|
70294
70418
|
export type EnumBillingPaymentDueFilter<$PrismaModel = never> = {
|
|
70295
70419
|
equals?: $Enums.BillingPaymentDue | EnumBillingPaymentDueFieldRefInput<$PrismaModel>
|
|
70296
70420
|
in?: $Enums.BillingPaymentDue[] | ListEnumBillingPaymentDueFieldRefInput<$PrismaModel>
|
|
@@ -71285,6 +71409,7 @@ export namespace Prisma {
|
|
|
71285
71409
|
contactName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71286
71410
|
contactEmail?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71287
71411
|
tin?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71412
|
+
address?: XOR<BillingAccountBillingInfoAddressNullableUpdateEnvelopeInput, BillingAccountBillingInfoAddressCreateInput> | null
|
|
71288
71413
|
}
|
|
71289
71414
|
|
|
71290
71415
|
export type BillingAccountStripeInfoUpdateInput = {
|
|
@@ -74780,6 +74905,18 @@ export namespace Prisma {
|
|
|
74780
74905
|
lastChance?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
74781
74906
|
}
|
|
74782
74907
|
|
|
74908
|
+
export type BillingAccountBillingInfoAddressWhereInput = {
|
|
74909
|
+
AND?: BillingAccountBillingInfoAddressWhereInput | BillingAccountBillingInfoAddressWhereInput[]
|
|
74910
|
+
OR?: BillingAccountBillingInfoAddressWhereInput[]
|
|
74911
|
+
NOT?: BillingAccountBillingInfoAddressWhereInput | BillingAccountBillingInfoAddressWhereInput[]
|
|
74912
|
+
line1?: StringFilter<"BillingAccountBillingInfoAddress"> | string
|
|
74913
|
+
city?: StringFilter<"BillingAccountBillingInfoAddress"> | string
|
|
74914
|
+
countryCode?: StringFilter<"BillingAccountBillingInfoAddress"> | string
|
|
74915
|
+
line2?: StringNullableFilter<"BillingAccountBillingInfoAddress"> | string | null
|
|
74916
|
+
postalCode?: StringNullableFilter<"BillingAccountBillingInfoAddress"> | string | null
|
|
74917
|
+
state?: StringNullableFilter<"BillingAccountBillingInfoAddress"> | string | null
|
|
74918
|
+
}
|
|
74919
|
+
|
|
74783
74920
|
export type NestedEnumBillingPaymentDueFilter<$PrismaModel = never> = {
|
|
74784
74921
|
equals?: $Enums.BillingPaymentDue | EnumBillingPaymentDueFieldRefInput<$PrismaModel>
|
|
74785
74922
|
in?: $Enums.BillingPaymentDue[] | ListEnumBillingPaymentDueFieldRefInput<$PrismaModel>
|
|
@@ -75129,6 +75266,12 @@ export namespace Prisma {
|
|
|
75129
75266
|
perWeek?: IntFilter<"BookingFrequency"> | number
|
|
75130
75267
|
}
|
|
75131
75268
|
|
|
75269
|
+
export type BillingAccountBillingInfoAddressNullableUpdateEnvelopeInput = {
|
|
75270
|
+
set?: BillingAccountBillingInfoAddressCreateInput | null
|
|
75271
|
+
upsert?: BillingAccountBillingInfoAddressUpsertInput
|
|
75272
|
+
unset?: boolean
|
|
75273
|
+
}
|
|
75274
|
+
|
|
75132
75275
|
export type EnumBillingPaymentDueFieldUpdateOperationsInput = {
|
|
75133
75276
|
set?: $Enums.BillingPaymentDue
|
|
75134
75277
|
}
|
|
@@ -75486,6 +75629,11 @@ export namespace Prisma {
|
|
|
75486
75629
|
isSet?: boolean
|
|
75487
75630
|
}
|
|
75488
75631
|
|
|
75632
|
+
export type BillingAccountBillingInfoAddressUpsertInput = {
|
|
75633
|
+
set: BillingAccountBillingInfoAddressCreateInput | null
|
|
75634
|
+
update: BillingAccountBillingInfoAddressUpdateInput
|
|
75635
|
+
}
|
|
75636
|
+
|
|
75489
75637
|
export type ClientInterviewRecordingLinkDataUpsertInput = {
|
|
75490
75638
|
set: ClientInterviewRecordingLinkDataCreateInput | null
|
|
75491
75639
|
update: ClientInterviewRecordingLinkDataUpdateInput
|
|
@@ -75693,6 +75841,15 @@ export namespace Prisma {
|
|
|
75693
75841
|
talentIndustryName?: StringNullableFilter<"UserTalentIndustryExperienceView"> | string | null
|
|
75694
75842
|
}
|
|
75695
75843
|
|
|
75844
|
+
export type BillingAccountBillingInfoAddressUpdateInput = {
|
|
75845
|
+
line1?: StringFieldUpdateOperationsInput | string
|
|
75846
|
+
city?: StringFieldUpdateOperationsInput | string
|
|
75847
|
+
countryCode?: StringFieldUpdateOperationsInput | string
|
|
75848
|
+
line2?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75849
|
+
postalCode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75850
|
+
state?: NullableStringFieldUpdateOperationsInput | string | null
|
|
75851
|
+
}
|
|
75852
|
+
|
|
75696
75853
|
export type ClientInterviewRecordingLinkDataUpdateInput = {
|
|
75697
75854
|
download_link?: StringFieldUpdateOperationsInput | string
|
|
75698
75855
|
expires?: IntFieldUpdateOperationsInput | number
|
|
@@ -75955,6 +76112,10 @@ export namespace Prisma {
|
|
|
75955
76112
|
* @deprecated Use BillingAccountBillingInfoDefaultArgs instead
|
|
75956
76113
|
*/
|
|
75957
76114
|
export type BillingAccountBillingInfoArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = BillingAccountBillingInfoDefaultArgs<ExtArgs>
|
|
76115
|
+
/**
|
|
76116
|
+
* @deprecated Use BillingAccountBillingInfoAddressDefaultArgs instead
|
|
76117
|
+
*/
|
|
76118
|
+
export type BillingAccountBillingInfoAddressArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = BillingAccountBillingInfoAddressDefaultArgs<ExtArgs>
|
|
75958
76119
|
/**
|
|
75959
76120
|
* @deprecated Use BillingAccountStripeInfoDefaultArgs instead
|
|
75960
76121
|
*/
|