@a_team/prisma 3.31.1-macos-docker-linux → 3.31.2-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/CHANGELOG.md +10 -0
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +144 -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 +11 -2
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -638,6 +638,11 @@ export type UserPortfolio = $Result.DefaultSelection<Prisma.$UserPortfolioPayloa
|
|
|
638
638
|
*
|
|
639
639
|
*/
|
|
640
640
|
export type DefaultRates = $Result.DefaultSelection<Prisma.$DefaultRatesPayload>
|
|
641
|
+
/**
|
|
642
|
+
* Model AdminNoteAuthor
|
|
643
|
+
*
|
|
644
|
+
*/
|
|
645
|
+
export type AdminNoteAuthor = $Result.DefaultSelection<Prisma.$AdminNoteAuthorPayload>
|
|
641
646
|
/**
|
|
642
647
|
* Model AdminNote
|
|
643
648
|
*
|
|
@@ -15247,6 +15252,67 @@ export namespace Prisma {
|
|
|
15247
15252
|
}
|
|
15248
15253
|
|
|
15249
15254
|
|
|
15255
|
+
/**
|
|
15256
|
+
* Model AdminNoteAuthor
|
|
15257
|
+
*/
|
|
15258
|
+
|
|
15259
|
+
|
|
15260
|
+
|
|
15261
|
+
|
|
15262
|
+
|
|
15263
|
+
export type AdminNoteAuthorSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
15264
|
+
fullName?: boolean
|
|
15265
|
+
username?: boolean
|
|
15266
|
+
pictureUrl?: boolean
|
|
15267
|
+
}, ExtArgs["result"]["adminNoteAuthor"]>
|
|
15268
|
+
|
|
15269
|
+
|
|
15270
|
+
export type AdminNoteAuthorSelectScalar = {
|
|
15271
|
+
fullName?: boolean
|
|
15272
|
+
username?: boolean
|
|
15273
|
+
pictureUrl?: boolean
|
|
15274
|
+
}
|
|
15275
|
+
|
|
15276
|
+
|
|
15277
|
+
export type $AdminNoteAuthorPayload = {
|
|
15278
|
+
name: "AdminNoteAuthor"
|
|
15279
|
+
objects: {}
|
|
15280
|
+
scalars: {
|
|
15281
|
+
fullName: string | null
|
|
15282
|
+
username: string | null
|
|
15283
|
+
pictureUrl: string | null
|
|
15284
|
+
}
|
|
15285
|
+
composites: {}
|
|
15286
|
+
}
|
|
15287
|
+
|
|
15288
|
+
type AdminNoteAuthorGetPayload<S extends boolean | null | undefined | AdminNoteAuthorDefaultArgs> = $Result.GetResult<Prisma.$AdminNoteAuthorPayload, S>
|
|
15289
|
+
|
|
15290
|
+
|
|
15291
|
+
|
|
15292
|
+
|
|
15293
|
+
|
|
15294
|
+
/**
|
|
15295
|
+
* Fields of the AdminNoteAuthor model
|
|
15296
|
+
*/
|
|
15297
|
+
interface AdminNoteAuthorFieldRefs {
|
|
15298
|
+
readonly fullName: FieldRef<"AdminNoteAuthor", 'String'>
|
|
15299
|
+
readonly username: FieldRef<"AdminNoteAuthor", 'String'>
|
|
15300
|
+
readonly pictureUrl: FieldRef<"AdminNoteAuthor", 'String'>
|
|
15301
|
+
}
|
|
15302
|
+
|
|
15303
|
+
|
|
15304
|
+
// Custom InputTypes
|
|
15305
|
+
/**
|
|
15306
|
+
* AdminNoteAuthor without action
|
|
15307
|
+
*/
|
|
15308
|
+
export type AdminNoteAuthorDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15309
|
+
/**
|
|
15310
|
+
* Select specific fields to fetch from the AdminNoteAuthor
|
|
15311
|
+
*/
|
|
15312
|
+
select?: AdminNoteAuthorSelect<ExtArgs> | null
|
|
15313
|
+
}
|
|
15314
|
+
|
|
15315
|
+
|
|
15250
15316
|
/**
|
|
15251
15317
|
* Model AdminNote
|
|
15252
15318
|
*/
|
|
@@ -15258,14 +15324,20 @@ export namespace Prisma {
|
|
|
15258
15324
|
export type AdminNoteSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
15259
15325
|
text?: boolean
|
|
15260
15326
|
category?: boolean
|
|
15327
|
+
createdAt?: boolean
|
|
15328
|
+
updatedAt?: boolean
|
|
15329
|
+
author?: boolean | AdminNoteAuthorDefaultArgs<ExtArgs>
|
|
15261
15330
|
}, ExtArgs["result"]["adminNote"]>
|
|
15262
15331
|
|
|
15263
15332
|
|
|
15264
15333
|
export type AdminNoteSelectScalar = {
|
|
15265
15334
|
text?: boolean
|
|
15266
15335
|
category?: boolean
|
|
15336
|
+
createdAt?: boolean
|
|
15337
|
+
updatedAt?: boolean
|
|
15267
15338
|
}
|
|
15268
15339
|
|
|
15340
|
+
export type AdminNoteInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
15269
15341
|
|
|
15270
15342
|
export type $AdminNotePayload = {
|
|
15271
15343
|
name: "AdminNote"
|
|
@@ -15273,8 +15345,12 @@ export namespace Prisma {
|
|
|
15273
15345
|
scalars: {
|
|
15274
15346
|
text: string
|
|
15275
15347
|
category: string | null
|
|
15348
|
+
createdAt: Date | null
|
|
15349
|
+
updatedAt: Date | null
|
|
15350
|
+
}
|
|
15351
|
+
composites: {
|
|
15352
|
+
author: Prisma.$AdminNoteAuthorPayload | null
|
|
15276
15353
|
}
|
|
15277
|
-
composites: {}
|
|
15278
15354
|
}
|
|
15279
15355
|
|
|
15280
15356
|
type AdminNoteGetPayload<S extends boolean | null | undefined | AdminNoteDefaultArgs> = $Result.GetResult<Prisma.$AdminNotePayload, S>
|
|
@@ -15289,6 +15365,8 @@ export namespace Prisma {
|
|
|
15289
15365
|
interface AdminNoteFieldRefs {
|
|
15290
15366
|
readonly text: FieldRef<"AdminNote", 'String'>
|
|
15291
15367
|
readonly category: FieldRef<"AdminNote", 'String'>
|
|
15368
|
+
readonly createdAt: FieldRef<"AdminNote", 'DateTime'>
|
|
15369
|
+
readonly updatedAt: FieldRef<"AdminNote", 'DateTime'>
|
|
15292
15370
|
}
|
|
15293
15371
|
|
|
15294
15372
|
|
|
@@ -15301,6 +15379,10 @@ export namespace Prisma {
|
|
|
15301
15379
|
* Select specific fields to fetch from the AdminNote
|
|
15302
15380
|
*/
|
|
15303
15381
|
select?: AdminNoteSelect<ExtArgs> | null
|
|
15382
|
+
/**
|
|
15383
|
+
* Choose, which related nodes to fetch as well
|
|
15384
|
+
*/
|
|
15385
|
+
include?: AdminNoteInclude<ExtArgs> | null
|
|
15304
15386
|
}
|
|
15305
15387
|
|
|
15306
15388
|
|
|
@@ -82588,6 +82670,9 @@ export namespace Prisma {
|
|
|
82588
82670
|
export type AdminNoteObjectEqualityInput = {
|
|
82589
82671
|
text: string
|
|
82590
82672
|
category?: string | null
|
|
82673
|
+
createdAt?: Date | string | null
|
|
82674
|
+
updatedAt?: Date | string | null
|
|
82675
|
+
author?: AdminNoteAuthorObjectEqualityInput | null
|
|
82591
82676
|
}
|
|
82592
82677
|
|
|
82593
82678
|
export type UserTalentSkillAssignmentDataOrderByInput = {
|
|
@@ -94000,6 +94085,9 @@ export namespace Prisma {
|
|
|
94000
94085
|
export type AdminNoteCreateInput = {
|
|
94001
94086
|
text: string
|
|
94002
94087
|
category?: string | null
|
|
94088
|
+
createdAt?: Date | string | null
|
|
94089
|
+
updatedAt?: Date | string | null
|
|
94090
|
+
author?: AdminNoteAuthorCreateInput | null
|
|
94003
94091
|
}
|
|
94004
94092
|
|
|
94005
94093
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
@@ -99727,6 +99815,12 @@ export namespace Prisma {
|
|
|
99727
99815
|
isSet?: boolean
|
|
99728
99816
|
}
|
|
99729
99817
|
|
|
99818
|
+
export type AdminNoteAuthorObjectEqualityInput = {
|
|
99819
|
+
fullName?: string | null
|
|
99820
|
+
username?: string | null
|
|
99821
|
+
pictureUrl?: string | null
|
|
99822
|
+
}
|
|
99823
|
+
|
|
99730
99824
|
export type UserTalentSkillAssignmentOrderByCompositeAggregateInput = {
|
|
99731
99825
|
_count?: SortOrder
|
|
99732
99826
|
}
|
|
@@ -102445,6 +102539,12 @@ export namespace Prisma {
|
|
|
102445
102539
|
talentIndustryName?: string | null
|
|
102446
102540
|
}
|
|
102447
102541
|
|
|
102542
|
+
export type AdminNoteAuthorCreateInput = {
|
|
102543
|
+
fullName?: string | null
|
|
102544
|
+
username?: string | null
|
|
102545
|
+
pictureUrl?: string | null
|
|
102546
|
+
}
|
|
102547
|
+
|
|
102448
102548
|
export type MissionCreateManyCreatorModelInput = {
|
|
102449
102549
|
mid?: string
|
|
102450
102550
|
accountId?: string | null
|
|
@@ -105559,6 +105659,9 @@ export namespace Prisma {
|
|
|
105559
105659
|
NOT?: AdminNoteWhereInput | AdminNoteWhereInput[]
|
|
105560
105660
|
text?: StringFilter<"AdminNote"> | string
|
|
105561
105661
|
category?: StringNullableFilter<"AdminNote"> | string | null
|
|
105662
|
+
createdAt?: DateTimeNullableFilter<"AdminNote"> | Date | string | null
|
|
105663
|
+
updatedAt?: DateTimeNullableFilter<"AdminNote"> | Date | string | null
|
|
105664
|
+
author?: XOR<AdminNoteAuthorNullableCompositeFilter, AdminNoteAuthorObjectEqualityInput> | null
|
|
105562
105665
|
}
|
|
105563
105666
|
|
|
105564
105667
|
export type BookingFrequencyWhereInput = {
|
|
@@ -106068,6 +106171,13 @@ export namespace Prisma {
|
|
|
106068
106171
|
isSet?: boolean
|
|
106069
106172
|
}
|
|
106070
106173
|
|
|
106174
|
+
export type AdminNoteAuthorNullableCompositeFilter = {
|
|
106175
|
+
equals?: AdminNoteAuthorObjectEqualityInput | null
|
|
106176
|
+
is?: AdminNoteAuthorWhereInput | null
|
|
106177
|
+
isNot?: AdminNoteAuthorWhereInput | null
|
|
106178
|
+
isSet?: boolean
|
|
106179
|
+
}
|
|
106180
|
+
|
|
106071
106181
|
export type BillingAccountBillingInfoAddressUpsertInput = {
|
|
106072
106182
|
set: BillingAccountBillingInfoAddressCreateInput | null
|
|
106073
106183
|
update: BillingAccountBillingInfoAddressUpdateInput
|
|
@@ -106433,6 +106543,15 @@ export namespace Prisma {
|
|
|
106433
106543
|
talentIndustryName?: StringNullableFilter<"UserTalentIndustryExperienceView"> | string | null
|
|
106434
106544
|
}
|
|
106435
106545
|
|
|
106546
|
+
export type AdminNoteAuthorWhereInput = {
|
|
106547
|
+
AND?: AdminNoteAuthorWhereInput | AdminNoteAuthorWhereInput[]
|
|
106548
|
+
OR?: AdminNoteAuthorWhereInput[]
|
|
106549
|
+
NOT?: AdminNoteAuthorWhereInput | AdminNoteAuthorWhereInput[]
|
|
106550
|
+
fullName?: StringNullableFilter<"AdminNoteAuthor"> | string | null
|
|
106551
|
+
username?: StringNullableFilter<"AdminNoteAuthor"> | string | null
|
|
106552
|
+
pictureUrl?: StringNullableFilter<"AdminNoteAuthor"> | string | null
|
|
106553
|
+
}
|
|
106554
|
+
|
|
106436
106555
|
export type BillingAccountBillingInfoAddressUpdateInput = {
|
|
106437
106556
|
line1?: StringFieldUpdateOperationsInput | string
|
|
106438
106557
|
city?: StringFieldUpdateOperationsInput | string
|
|
@@ -106673,6 +106792,9 @@ export namespace Prisma {
|
|
|
106673
106792
|
export type AdminNoteUpdateInput = {
|
|
106674
106793
|
text?: StringFieldUpdateOperationsInput | string
|
|
106675
106794
|
category?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106795
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106796
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
106797
|
+
author?: XOR<AdminNoteAuthorNullableUpdateEnvelopeInput, AdminNoteAuthorCreateInput> | null
|
|
106676
106798
|
}
|
|
106677
106799
|
|
|
106678
106800
|
export type ApolloEnrichmentCompanyDataNullableCompositeFilter = {
|
|
@@ -106772,6 +106894,12 @@ export namespace Prisma {
|
|
|
106772
106894
|
deleteMany?: UserTalentIndustryExperienceViewDeleteManyInput
|
|
106773
106895
|
}
|
|
106774
106896
|
|
|
106897
|
+
export type AdminNoteAuthorNullableUpdateEnvelopeInput = {
|
|
106898
|
+
set?: AdminNoteAuthorCreateInput | null
|
|
106899
|
+
upsert?: AdminNoteAuthorUpsertInput
|
|
106900
|
+
unset?: boolean
|
|
106901
|
+
}
|
|
106902
|
+
|
|
106775
106903
|
export type ApolloEnrichmentCompanyDataWhereInput = {
|
|
106776
106904
|
AND?: ApolloEnrichmentCompanyDataWhereInput | ApolloEnrichmentCompanyDataWhereInput[]
|
|
106777
106905
|
OR?: ApolloEnrichmentCompanyDataWhereInput[]
|
|
@@ -106842,6 +106970,11 @@ export namespace Prisma {
|
|
|
106842
106970
|
where: UserTalentIndustryExperienceViewWhereInput
|
|
106843
106971
|
}
|
|
106844
106972
|
|
|
106973
|
+
export type AdminNoteAuthorUpsertInput = {
|
|
106974
|
+
set: AdminNoteAuthorCreateInput | null
|
|
106975
|
+
update: AdminNoteAuthorUpdateInput
|
|
106976
|
+
}
|
|
106977
|
+
|
|
106845
106978
|
export type ApolloEnrichmentDataUpdateInput = {
|
|
106846
106979
|
company?: XOR<ApolloEnrichmentCompanyDataNullableUpdateEnvelopeInput, ApolloEnrichmentCompanyDataCreateInput> | null
|
|
106847
106980
|
}
|
|
@@ -106866,6 +106999,12 @@ export namespace Prisma {
|
|
|
106866
106999
|
talentIndustryName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106867
107000
|
}
|
|
106868
107001
|
|
|
107002
|
+
export type AdminNoteAuthorUpdateInput = {
|
|
107003
|
+
fullName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107004
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107005
|
+
pictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107006
|
+
}
|
|
107007
|
+
|
|
106869
107008
|
export type ApolloEnrichmentCompanyDataNullableUpdateEnvelopeInput = {
|
|
106870
107009
|
set?: ApolloEnrichmentCompanyDataCreateInput | null
|
|
106871
107010
|
upsert?: ApolloEnrichmentCompanyDataUpsertInput
|
|
@@ -107466,6 +107605,10 @@ export namespace Prisma {
|
|
|
107466
107605
|
* @deprecated Use DefaultRatesDefaultArgs instead
|
|
107467
107606
|
*/
|
|
107468
107607
|
export type DefaultRatesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = DefaultRatesDefaultArgs<ExtArgs>
|
|
107608
|
+
/**
|
|
107609
|
+
* @deprecated Use AdminNoteAuthorDefaultArgs instead
|
|
107610
|
+
*/
|
|
107611
|
+
export type AdminNoteAuthorArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = AdminNoteAuthorDefaultArgs<ExtArgs>
|
|
107469
107612
|
/**
|
|
107470
107613
|
* @deprecated Use AdminNoteDefaultArgs instead
|
|
107471
107614
|
*/
|