@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
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -2134,9 +2134,21 @@ type DefaultRates {
|
|
|
2134
2134
|
monthlyRate Float?
|
|
2135
2135
|
}
|
|
2136
2136
|
|
|
2137
|
+
enum AdminNoteCategory {
|
|
2138
|
+
admin
|
|
2139
|
+
migration
|
|
2140
|
+
team_pulse @map("team-pulse")
|
|
2141
|
+
proposal_feedback @map("proposal-feedback")
|
|
2142
|
+
application_review @map("application-review")
|
|
2143
|
+
vetting
|
|
2144
|
+
proposal_blurb @map("proposal-blurb")
|
|
2145
|
+
mission_feedback @map("mission-feedback")
|
|
2146
|
+
interview_feedback @map("interview-feedback")
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2137
2149
|
type AdminNote {
|
|
2138
2150
|
text String
|
|
2139
|
-
category
|
|
2151
|
+
category AdminNoteCategory?
|
|
2140
2152
|
}
|
|
2141
2153
|
|
|
2142
2154
|
type AdminNotesObject {
|
package/dist/client/wasm.js
CHANGED
|
@@ -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',
|