@adaptware/eagles-db 0.1.70 → 0.1.71

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-bfa67cb2f529884672d895a98871f1753c661b00b32e02ae580760449b013167",
2
+ "name": "prisma-client-b0fefa7c0add1e8056f76ae529281c7e31c374c00b639bfc7af7dee55488fedb",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -1029,15 +1029,16 @@ enum OrganisationSize {
1029
1029
  }
1030
1030
 
1031
1031
  model Organisation {
1032
- id String @id @default(uuid())
1033
- name String @unique
1034
- industry String
1035
- about String
1036
- website String
1037
- size OrganisationSize @default(ONE_TO_TEN)
1038
- phone String
1039
- address String
1040
- company_values Json[]
1032
+ id String @id @default(uuid())
1033
+ name String @unique
1034
+ industry String
1035
+ about String
1036
+ website String
1037
+ size OrganisationSize @default(ONE_TO_TEN)
1038
+ phone String
1039
+ address String
1040
+ company_values Json[]
1041
+ allowed_email_domains String[]
1041
1042
 
1042
1043
  interviewers User[]
1043
1044
  created_at DateTime @default(now())
package/client/wasm.js CHANGED
@@ -673,6 +673,7 @@ exports.Prisma.OrganisationScalarFieldEnum = {
673
673
  phone: 'phone',
674
674
  address: 'address',
675
675
  company_values: 'company_values',
676
+ allowed_email_domains: 'allowed_email_domains',
676
677
  created_at: 'created_at',
677
678
  updated_at: 'updated_at',
678
679
  created_by: 'created_by',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptware/eagles-db",
3
- "version": "0.1.70",
3
+ "version": "0.1.71",
4
4
  "description": "A Prisma client package for Treadspace database operations",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -7,15 +7,16 @@ enum OrganisationSize {
7
7
  }
8
8
 
9
9
  model Organisation {
10
- id String @id @default(uuid())
11
- name String @unique
12
- industry String
13
- about String
14
- website String
15
- size OrganisationSize @default(ONE_TO_TEN)
16
- phone String
17
- address String
18
- company_values Json[]
10
+ id String @id @default(uuid())
11
+ name String @unique
12
+ industry String
13
+ about String
14
+ website String
15
+ size OrganisationSize @default(ONE_TO_TEN)
16
+ phone String
17
+ address String
18
+ company_values Json[]
19
+ allowed_email_domains String[]
19
20
 
20
21
  interviewers User[]
21
22
  created_at DateTime @default(now())