@a_team/prisma 3.12.8-macos-docker-linux → 3.12.9-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 +9 -4
- package/dist/client/index-browser.js +5 -0
- package/dist/client/index.d.ts +390 -0
- package/dist/client/index.js +11 -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 +14 -0
- package/dist/client/wasm.js +5 -0
- package/package.json +4 -2
|
@@ -769,6 +769,11 @@ exports.HiringTimeline = exports.$Enums.HiringTimeline = {
|
|
|
769
769
|
exploring: 'exploring'
|
|
770
770
|
};
|
|
771
771
|
|
|
772
|
+
exports.TOSVersion = exports.$Enums.TOSVersion = {
|
|
773
|
+
v1: 'v1',
|
|
774
|
+
v2: 'v2'
|
|
775
|
+
};
|
|
776
|
+
|
|
772
777
|
exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus = {
|
|
773
778
|
OnlyAdmin: 'OnlyAdmin',
|
|
774
779
|
All: 'All'
|