@a_team/prisma 3.16.6-macos-docker-linux → 3.17.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 +29 -4
- package/dist/client/index-browser.js +25 -0
- package/dist/client/index.d.ts +2164 -205
- package/dist/client/index.js +31 -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 +27 -0
- package/dist/client/wasm.js +25 -0
- package/package.json +4 -2
|
@@ -133,6 +133,18 @@ exports.Prisma.BillingAccountScalarFieldEnum = {
|
|
|
133
133
|
updatedAt: 'updatedAt'
|
|
134
134
|
};
|
|
135
135
|
|
|
136
|
+
exports.Prisma.BuilderWebsitesDataScalarFieldEnum = {
|
|
137
|
+
id: 'id',
|
|
138
|
+
builderId: 'builderId',
|
|
139
|
+
sourceType: 'sourceType',
|
|
140
|
+
sourceUrl: 'sourceUrl',
|
|
141
|
+
error: 'error',
|
|
142
|
+
dataType: 'dataType',
|
|
143
|
+
data: 'data',
|
|
144
|
+
createdAt: 'createdAt',
|
|
145
|
+
updatedAt: 'updatedAt'
|
|
146
|
+
};
|
|
147
|
+
|
|
136
148
|
exports.Prisma.CalendarScalarFieldEnum = {
|
|
137
149
|
id: 'id',
|
|
138
150
|
calendarId: 'calendarId',
|
|
@@ -576,6 +588,18 @@ exports.Prisma.QueryMode = {
|
|
|
576
588
|
default: 'default',
|
|
577
589
|
insensitive: 'insensitive'
|
|
578
590
|
};
|
|
591
|
+
exports.BuilderWebsitesSourceType = exports.$Enums.BuilderWebsitesSourceType = {
|
|
592
|
+
GitHub: 'GitHub',
|
|
593
|
+
LinkedIn: 'LinkedIn',
|
|
594
|
+
PersonalWebsite: 'PersonalWebsite'
|
|
595
|
+
};
|
|
596
|
+
|
|
597
|
+
exports.BuilderWebsitesSourceDataType = exports.$Enums.BuilderWebsitesSourceDataType = {
|
|
598
|
+
HTML: 'HTML',
|
|
599
|
+
JSON: 'JSON',
|
|
600
|
+
Markdown: 'Markdown'
|
|
601
|
+
};
|
|
602
|
+
|
|
579
603
|
exports.CalendarProvider = exports.$Enums.CalendarProvider = {
|
|
580
604
|
google: 'google',
|
|
581
605
|
apple: 'apple',
|
|
@@ -895,6 +919,7 @@ exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus
|
|
|
895
919
|
exports.Prisma.ModelName = {
|
|
896
920
|
Account: 'Account',
|
|
897
921
|
BillingAccount: 'BillingAccount',
|
|
922
|
+
BuilderWebsitesData: 'BuilderWebsitesData',
|
|
898
923
|
Calendar: 'Calendar',
|
|
899
924
|
CalendarAvailability: 'CalendarAvailability',
|
|
900
925
|
CalendarEvent: 'CalendarEvent',
|