@a_team/prisma 3.2.4-win → 3.2.5-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 +23 -4
- package/dist/client/index-browser.js +19 -0
- package/dist/client/index.d.ts +1419 -119
- package/dist/client/index.js +25 -6
- package/dist/client/{query_engine-windows.dll.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 +25 -0
- package/dist/client/wasm.js +19 -0
- package/package.json +2 -2
|
@@ -251,6 +251,12 @@ exports.Prisma.RoleCategoryScalarFieldEnum = {
|
|
|
251
251
|
talentCategoryIds: 'talentCategoryIds'
|
|
252
252
|
};
|
|
253
253
|
|
|
254
|
+
exports.Prisma.SolutionScalarFieldEnum = {
|
|
255
|
+
id: 'id',
|
|
256
|
+
preset: 'preset',
|
|
257
|
+
title: 'title'
|
|
258
|
+
};
|
|
259
|
+
|
|
254
260
|
exports.Prisma.TalentCategoryScalarFieldEnum = {
|
|
255
261
|
id: 'id',
|
|
256
262
|
textId: 'textId',
|
|
@@ -332,6 +338,18 @@ exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
|
|
|
332
338
|
published: 'published'
|
|
333
339
|
};
|
|
334
340
|
|
|
341
|
+
exports.PresetID = exports.$Enums.PresetID = {
|
|
342
|
+
custom_team: 'custom_team',
|
|
343
|
+
web_platform: 'web_platform',
|
|
344
|
+
mobile_app: 'mobile_app',
|
|
345
|
+
collaboration_tool: 'collaboration_tool',
|
|
346
|
+
marketing_website: 'marketing_website',
|
|
347
|
+
prototype: 'prototype',
|
|
348
|
+
data: 'data',
|
|
349
|
+
growth: 'growth',
|
|
350
|
+
ai: 'ai'
|
|
351
|
+
};
|
|
352
|
+
|
|
335
353
|
exports.ContractPartyType = exports.$Enums.ContractPartyType = {
|
|
336
354
|
BillingCustomer: 'BillingCustomer',
|
|
337
355
|
MissionRole: 'MissionRole'
|
|
@@ -366,6 +384,7 @@ exports.Prisma.ModelName = {
|
|
|
366
384
|
MissionPrefill: 'MissionPrefill',
|
|
367
385
|
MissionSpec: 'MissionSpec',
|
|
368
386
|
RoleCategory: 'RoleCategory',
|
|
387
|
+
Solution: 'Solution',
|
|
369
388
|
TalentCategory: 'TalentCategory',
|
|
370
389
|
TalentIndustry: 'TalentIndustry',
|
|
371
390
|
User: 'User'
|