@a_team/prisma 3.29.3-macos-docker-linux → 3.30.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 +16 -4
- package/dist/client/index-browser.js +12 -0
- package/dist/client/index.d.ts +60 -6
- package/dist/client/index.js +18 -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 +13 -1
- package/dist/client/wasm.js +12 -0
- package/package.json +4 -2
|
@@ -1148,6 +1148,18 @@ exports.EvidenceSourceType = exports.$Enums.EvidenceSourceType = {
|
|
|
1148
1148
|
Application: 'Application'
|
|
1149
1149
|
};
|
|
1150
1150
|
|
|
1151
|
+
exports.AdminNoteCategory = exports.$Enums.AdminNoteCategory = {
|
|
1152
|
+
admin: 'admin',
|
|
1153
|
+
migration: 'migration',
|
|
1154
|
+
team_pulse: 'team_pulse',
|
|
1155
|
+
proposal_feedback: 'proposal_feedback',
|
|
1156
|
+
application_review: 'application_review',
|
|
1157
|
+
vetting: 'vetting',
|
|
1158
|
+
proposal_blurb: 'proposal_blurb',
|
|
1159
|
+
mission_feedback: 'mission_feedback',
|
|
1160
|
+
interview_feedback: 'interview_feedback'
|
|
1161
|
+
};
|
|
1162
|
+
|
|
1151
1163
|
exports.Prisma.ModelName = {
|
|
1152
1164
|
Account: 'Account',
|
|
1153
1165
|
BillingAccount: 'BillingAccount',
|
package/dist/client/index.d.ts
CHANGED
|
@@ -1462,6 +1462,21 @@ export const EvidenceSourceType: {
|
|
|
1462
1462
|
|
|
1463
1463
|
export type EvidenceSourceType = (typeof EvidenceSourceType)[keyof typeof EvidenceSourceType]
|
|
1464
1464
|
|
|
1465
|
+
|
|
1466
|
+
export const AdminNoteCategory: {
|
|
1467
|
+
admin: 'admin',
|
|
1468
|
+
migration: 'migration',
|
|
1469
|
+
team_pulse: 'team_pulse',
|
|
1470
|
+
proposal_feedback: 'proposal_feedback',
|
|
1471
|
+
application_review: 'application_review',
|
|
1472
|
+
vetting: 'vetting',
|
|
1473
|
+
proposal_blurb: 'proposal_blurb',
|
|
1474
|
+
mission_feedback: 'mission_feedback',
|
|
1475
|
+
interview_feedback: 'interview_feedback'
|
|
1476
|
+
};
|
|
1477
|
+
|
|
1478
|
+
export type AdminNoteCategory = (typeof AdminNoteCategory)[keyof typeof AdminNoteCategory]
|
|
1479
|
+
|
|
1465
1480
|
}
|
|
1466
1481
|
|
|
1467
1482
|
export type BuilderWebsitesSourceType = $Enums.BuilderWebsitesSourceType
|
|
@@ -1692,6 +1707,10 @@ export type EvidenceSourceType = $Enums.EvidenceSourceType
|
|
|
1692
1707
|
|
|
1693
1708
|
export const EvidenceSourceType: typeof $Enums.EvidenceSourceType
|
|
1694
1709
|
|
|
1710
|
+
export type AdminNoteCategory = $Enums.AdminNoteCategory
|
|
1711
|
+
|
|
1712
|
+
export const AdminNoteCategory: typeof $Enums.AdminNoteCategory
|
|
1713
|
+
|
|
1695
1714
|
/**
|
|
1696
1715
|
* ## Prisma Client ʲˢ
|
|
1697
1716
|
*
|
|
@@ -15107,7 +15126,7 @@ export namespace Prisma {
|
|
|
15107
15126
|
objects: {}
|
|
15108
15127
|
scalars: {
|
|
15109
15128
|
text: string
|
|
15110
|
-
category:
|
|
15129
|
+
category: $Enums.AdminNoteCategory | null
|
|
15111
15130
|
}
|
|
15112
15131
|
composites: {}
|
|
15113
15132
|
}
|
|
@@ -15123,7 +15142,7 @@ export namespace Prisma {
|
|
|
15123
15142
|
*/
|
|
15124
15143
|
interface AdminNoteFieldRefs {
|
|
15125
15144
|
readonly text: FieldRef<"AdminNote", 'String'>
|
|
15126
|
-
readonly category: FieldRef<"AdminNote", '
|
|
15145
|
+
readonly category: FieldRef<"AdminNote", 'AdminNoteCategory'>
|
|
15127
15146
|
}
|
|
15128
15147
|
|
|
15129
15148
|
|
|
@@ -59831,6 +59850,20 @@ export namespace Prisma {
|
|
|
59831
59850
|
*/
|
|
59832
59851
|
export type ListEnumEvidenceSourceTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'EvidenceSourceType[]'>
|
|
59833
59852
|
|
|
59853
|
+
|
|
59854
|
+
|
|
59855
|
+
/**
|
|
59856
|
+
* Reference to a field of type 'AdminNoteCategory'
|
|
59857
|
+
*/
|
|
59858
|
+
export type EnumAdminNoteCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AdminNoteCategory'>
|
|
59859
|
+
|
|
59860
|
+
|
|
59861
|
+
|
|
59862
|
+
/**
|
|
59863
|
+
* Reference to a field of type 'AdminNoteCategory[]'
|
|
59864
|
+
*/
|
|
59865
|
+
export type ListEnumAdminNoteCategoryFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'AdminNoteCategory[]'>
|
|
59866
|
+
|
|
59834
59867
|
/**
|
|
59835
59868
|
* Deep Input Types
|
|
59836
59869
|
*/
|
|
@@ -80650,7 +80683,7 @@ export namespace Prisma {
|
|
|
80650
80683
|
|
|
80651
80684
|
export type AdminNoteObjectEqualityInput = {
|
|
80652
80685
|
text: string
|
|
80653
|
-
category?:
|
|
80686
|
+
category?: $Enums.AdminNoteCategory | null
|
|
80654
80687
|
}
|
|
80655
80688
|
|
|
80656
80689
|
export type UserTalentSkillAssignmentDataOrderByInput = {
|
|
@@ -91820,7 +91853,7 @@ export namespace Prisma {
|
|
|
91820
91853
|
|
|
91821
91854
|
export type AdminNoteCreateInput = {
|
|
91822
91855
|
text: string
|
|
91823
|
-
category?:
|
|
91856
|
+
category?: $Enums.AdminNoteCategory | null
|
|
91824
91857
|
}
|
|
91825
91858
|
|
|
91826
91859
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
@@ -102576,7 +102609,7 @@ export namespace Prisma {
|
|
|
102576
102609
|
OR?: AdminNoteWhereInput[]
|
|
102577
102610
|
NOT?: AdminNoteWhereInput | AdminNoteWhereInput[]
|
|
102578
102611
|
text?: StringFilter<"AdminNote"> | string
|
|
102579
|
-
category?:
|
|
102612
|
+
category?: EnumAdminNoteCategoryNullableFilter<"AdminNote"> | $Enums.AdminNoteCategory | null
|
|
102580
102613
|
}
|
|
102581
102614
|
|
|
102582
102615
|
export type BookingFrequencyWhereInput = {
|
|
@@ -103084,6 +103117,14 @@ export namespace Prisma {
|
|
|
103084
103117
|
isSet?: boolean
|
|
103085
103118
|
}
|
|
103086
103119
|
|
|
103120
|
+
export type EnumAdminNoteCategoryNullableFilter<$PrismaModel = never> = {
|
|
103121
|
+
equals?: $Enums.AdminNoteCategory | EnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103122
|
+
in?: $Enums.AdminNoteCategory[] | ListEnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103123
|
+
notIn?: $Enums.AdminNoteCategory[] | ListEnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103124
|
+
not?: NestedEnumAdminNoteCategoryNullableFilter<$PrismaModel> | $Enums.AdminNoteCategory | null
|
|
103125
|
+
isSet?: boolean
|
|
103126
|
+
}
|
|
103127
|
+
|
|
103087
103128
|
export type BillingAccountBillingInfoAddressUpsertInput = {
|
|
103088
103129
|
set: BillingAccountBillingInfoAddressCreateInput | null
|
|
103089
103130
|
update: BillingAccountBillingInfoAddressUpdateInput
|
|
@@ -103447,6 +103488,14 @@ export namespace Prisma {
|
|
|
103447
103488
|
talentIndustryName?: StringNullableFilter<"UserTalentIndustryExperienceView"> | string | null
|
|
103448
103489
|
}
|
|
103449
103490
|
|
|
103491
|
+
export type NestedEnumAdminNoteCategoryNullableFilter<$PrismaModel = never> = {
|
|
103492
|
+
equals?: $Enums.AdminNoteCategory | EnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103493
|
+
in?: $Enums.AdminNoteCategory[] | ListEnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103494
|
+
notIn?: $Enums.AdminNoteCategory[] | ListEnumAdminNoteCategoryFieldRefInput<$PrismaModel> | null
|
|
103495
|
+
not?: NestedEnumAdminNoteCategoryNullableFilter<$PrismaModel> | $Enums.AdminNoteCategory | null
|
|
103496
|
+
isSet?: boolean
|
|
103497
|
+
}
|
|
103498
|
+
|
|
103450
103499
|
export type BillingAccountBillingInfoAddressUpdateInput = {
|
|
103451
103500
|
line1?: StringFieldUpdateOperationsInput | string
|
|
103452
103501
|
city?: StringFieldUpdateOperationsInput | string
|
|
@@ -103686,7 +103735,7 @@ export namespace Prisma {
|
|
|
103686
103735
|
|
|
103687
103736
|
export type AdminNoteUpdateInput = {
|
|
103688
103737
|
text?: StringFieldUpdateOperationsInput | string
|
|
103689
|
-
category?:
|
|
103738
|
+
category?: NullableEnumAdminNoteCategoryFieldUpdateOperationsInput | $Enums.AdminNoteCategory | null
|
|
103690
103739
|
}
|
|
103691
103740
|
|
|
103692
103741
|
export type ApolloEnrichmentCompanyDataNullableCompositeFilter = {
|
|
@@ -103786,6 +103835,11 @@ export namespace Prisma {
|
|
|
103786
103835
|
deleteMany?: UserTalentIndustryExperienceViewDeleteManyInput
|
|
103787
103836
|
}
|
|
103788
103837
|
|
|
103838
|
+
export type NullableEnumAdminNoteCategoryFieldUpdateOperationsInput = {
|
|
103839
|
+
set?: $Enums.AdminNoteCategory | null
|
|
103840
|
+
unset?: boolean
|
|
103841
|
+
}
|
|
103842
|
+
|
|
103789
103843
|
export type ApolloEnrichmentCompanyDataWhereInput = {
|
|
103790
103844
|
AND?: ApolloEnrichmentCompanyDataWhereInput | ApolloEnrichmentCompanyDataWhereInput[]
|
|
103791
103845
|
OR?: ApolloEnrichmentCompanyDataWhereInput[]
|