@a_team/prisma 3.30.0-win → 3.30.1-linux-debian
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 -16
- package/dist/client/index-browser.js +0 -12
- package/dist/client/index.d.ts +6 -60
- package/dist/client/index.js +6 -18
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +1 -13
- package/dist/client/wasm.js +0 -12
- package/package.json +2 -2
|
@@ -1148,18 +1148,6 @@ 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
|
-
|
|
1163
1151
|
exports.Prisma.ModelName = {
|
|
1164
1152
|
Account: 'Account',
|
|
1165
1153
|
BillingAccount: 'BillingAccount',
|
package/dist/client/index.d.ts
CHANGED
|
@@ -1462,21 +1462,6 @@ 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
|
-
|
|
1480
1465
|
}
|
|
1481
1466
|
|
|
1482
1467
|
export type BuilderWebsitesSourceType = $Enums.BuilderWebsitesSourceType
|
|
@@ -1707,10 +1692,6 @@ export type EvidenceSourceType = $Enums.EvidenceSourceType
|
|
|
1707
1692
|
|
|
1708
1693
|
export const EvidenceSourceType: typeof $Enums.EvidenceSourceType
|
|
1709
1694
|
|
|
1710
|
-
export type AdminNoteCategory = $Enums.AdminNoteCategory
|
|
1711
|
-
|
|
1712
|
-
export const AdminNoteCategory: typeof $Enums.AdminNoteCategory
|
|
1713
|
-
|
|
1714
1695
|
/**
|
|
1715
1696
|
* ## Prisma Client ʲˢ
|
|
1716
1697
|
*
|
|
@@ -15126,7 +15107,7 @@ export namespace Prisma {
|
|
|
15126
15107
|
objects: {}
|
|
15127
15108
|
scalars: {
|
|
15128
15109
|
text: string
|
|
15129
|
-
category:
|
|
15110
|
+
category: string | null
|
|
15130
15111
|
}
|
|
15131
15112
|
composites: {}
|
|
15132
15113
|
}
|
|
@@ -15142,7 +15123,7 @@ export namespace Prisma {
|
|
|
15142
15123
|
*/
|
|
15143
15124
|
interface AdminNoteFieldRefs {
|
|
15144
15125
|
readonly text: FieldRef<"AdminNote", 'String'>
|
|
15145
|
-
readonly category: FieldRef<"AdminNote", '
|
|
15126
|
+
readonly category: FieldRef<"AdminNote", 'String'>
|
|
15146
15127
|
}
|
|
15147
15128
|
|
|
15148
15129
|
|
|
@@ -59850,20 +59831,6 @@ export namespace Prisma {
|
|
|
59850
59831
|
*/
|
|
59851
59832
|
export type ListEnumEvidenceSourceTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'EvidenceSourceType[]'>
|
|
59852
59833
|
|
|
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
|
-
|
|
59867
59834
|
/**
|
|
59868
59835
|
* Deep Input Types
|
|
59869
59836
|
*/
|
|
@@ -80683,7 +80650,7 @@ export namespace Prisma {
|
|
|
80683
80650
|
|
|
80684
80651
|
export type AdminNoteObjectEqualityInput = {
|
|
80685
80652
|
text: string
|
|
80686
|
-
category?:
|
|
80653
|
+
category?: string | null
|
|
80687
80654
|
}
|
|
80688
80655
|
|
|
80689
80656
|
export type UserTalentSkillAssignmentDataOrderByInput = {
|
|
@@ -91853,7 +91820,7 @@ export namespace Prisma {
|
|
|
91853
91820
|
|
|
91854
91821
|
export type AdminNoteCreateInput = {
|
|
91855
91822
|
text: string
|
|
91856
|
-
category?:
|
|
91823
|
+
category?: string | null
|
|
91857
91824
|
}
|
|
91858
91825
|
|
|
91859
91826
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
@@ -102609,7 +102576,7 @@ export namespace Prisma {
|
|
|
102609
102576
|
OR?: AdminNoteWhereInput[]
|
|
102610
102577
|
NOT?: AdminNoteWhereInput | AdminNoteWhereInput[]
|
|
102611
102578
|
text?: StringFilter<"AdminNote"> | string
|
|
102612
|
-
category?:
|
|
102579
|
+
category?: StringNullableFilter<"AdminNote"> | string | null
|
|
102613
102580
|
}
|
|
102614
102581
|
|
|
102615
102582
|
export type BookingFrequencyWhereInput = {
|
|
@@ -103117,14 +103084,6 @@ export namespace Prisma {
|
|
|
103117
103084
|
isSet?: boolean
|
|
103118
103085
|
}
|
|
103119
103086
|
|
|
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
|
-
|
|
103128
103087
|
export type BillingAccountBillingInfoAddressUpsertInput = {
|
|
103129
103088
|
set: BillingAccountBillingInfoAddressCreateInput | null
|
|
103130
103089
|
update: BillingAccountBillingInfoAddressUpdateInput
|
|
@@ -103488,14 +103447,6 @@ export namespace Prisma {
|
|
|
103488
103447
|
talentIndustryName?: StringNullableFilter<"UserTalentIndustryExperienceView"> | string | null
|
|
103489
103448
|
}
|
|
103490
103449
|
|
|
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
|
-
|
|
103499
103450
|
export type BillingAccountBillingInfoAddressUpdateInput = {
|
|
103500
103451
|
line1?: StringFieldUpdateOperationsInput | string
|
|
103501
103452
|
city?: StringFieldUpdateOperationsInput | string
|
|
@@ -103735,7 +103686,7 @@ export namespace Prisma {
|
|
|
103735
103686
|
|
|
103736
103687
|
export type AdminNoteUpdateInput = {
|
|
103737
103688
|
text?: StringFieldUpdateOperationsInput | string
|
|
103738
|
-
category?:
|
|
103689
|
+
category?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103739
103690
|
}
|
|
103740
103691
|
|
|
103741
103692
|
export type ApolloEnrichmentCompanyDataNullableCompositeFilter = {
|
|
@@ -103835,11 +103786,6 @@ export namespace Prisma {
|
|
|
103835
103786
|
deleteMany?: UserTalentIndustryExperienceViewDeleteManyInput
|
|
103836
103787
|
}
|
|
103837
103788
|
|
|
103838
|
-
export type NullableEnumAdminNoteCategoryFieldUpdateOperationsInput = {
|
|
103839
|
-
set?: $Enums.AdminNoteCategory | null
|
|
103840
|
-
unset?: boolean
|
|
103841
|
-
}
|
|
103842
|
-
|
|
103843
103789
|
export type ApolloEnrichmentCompanyDataWhereInput = {
|
|
103844
103790
|
AND?: ApolloEnrichmentCompanyDataWhereInput | ApolloEnrichmentCompanyDataWhereInput[]
|
|
103845
103791
|
OR?: ApolloEnrichmentCompanyDataWhereInput[]
|