@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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-1915a251eee5fbab10bf0bc910de72afb903428cb38ae84cfef359e73b53d1de",
2
+ "name": "prisma-client-043bb04ba39cf3d0fedb54a6e1d8bafe610c17e4cf7fdd23511db29cef9dc0b2",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -507,6 +507,31 @@ generator client {
507
507
  output = "../../src/client"
508
508
  }
509
509
 
510
+ type Role {
511
+ category String @db.ObjectId
512
+ }
513
+
514
+ enum PresetID {
515
+ custom_team
516
+ web_platform
517
+ mobile_app
518
+ collaboration_tool
519
+ marketing_website
520
+ prototype
521
+ data
522
+ growth
523
+ ai
524
+ }
525
+
526
+ model Solution {
527
+ id String @id @default(auto()) @map("_id") @db.ObjectId
528
+ preset PresetID
529
+ title String
530
+ roles Role[]
531
+
532
+ @@map("solutions")
533
+ }
534
+
510
535
  model TalentCategory {
511
536
  id String @id @default(auto()) @map("_id") @db.ObjectId
512
537
  textId String
@@ -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'
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.2.4-win",
3
+ "version": "3.2.5-linux",
4
4
  "os": [
5
- "win32"
5
+ "linux"
6
6
  ],
7
7
  "cpu": [],
8
8
  "keywords": [],