@a_team/prisma 3.14.0-macos-docker-linux → 3.14.1-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 -5
- package/dist/client/index-browser.js +5 -1
- package/dist/client/index.d.ts +5 -1
- package/dist/client/index.js +11 -7
- 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 +4 -0
- package/dist/client/wasm.js +5 -1
- package/package.json +4 -2
|
@@ -604,7 +604,11 @@ exports.ContractSource = exports.$Enums.ContractSource = {
|
|
|
604
604
|
|
|
605
605
|
exports.ExperienceType = exports.$Enums.ExperienceType = {
|
|
606
606
|
job: 'job',
|
|
607
|
-
project: 'project'
|
|
607
|
+
project: 'project',
|
|
608
|
+
award: 'award',
|
|
609
|
+
article: 'article',
|
|
610
|
+
interview: 'interview',
|
|
611
|
+
education: 'education'
|
|
608
612
|
};
|
|
609
613
|
|
|
610
614
|
exports.InvoiceType = exports.$Enums.InvoiceType = {
|
package/dist/client/index.d.ts
CHANGED
|
@@ -713,7 +713,11 @@ export type ContractSource = (typeof ContractSource)[keyof typeof ContractSource
|
|
|
713
713
|
|
|
714
714
|
export const ExperienceType: {
|
|
715
715
|
job: 'job',
|
|
716
|
-
project: 'project'
|
|
716
|
+
project: 'project',
|
|
717
|
+
award: 'award',
|
|
718
|
+
article: 'article',
|
|
719
|
+
interview: 'interview',
|
|
720
|
+
education: 'education'
|
|
717
721
|
};
|
|
718
722
|
|
|
719
723
|
export type ExperienceType = (typeof ExperienceType)[keyof typeof ExperienceType]
|