@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.
- package/client/edge.js +4 -3
- package/client/index-browser.js +1 -0
- package/client/index.d.ts +105 -1
- package/client/index.js +4 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +10 -9
- package/client/wasm.js +1 -0
- package/package.json +1 -1
- package/prisma/schema/organisation.prisma +10 -9
package/client/package.json
CHANGED
package/client/schema.prisma
CHANGED
|
@@ -1029,15 +1029,16 @@ enum OrganisationSize {
|
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
model Organisation {
|
|
1032
|
-
id
|
|
1033
|
-
name
|
|
1034
|
-
industry
|
|
1035
|
-
about
|
|
1036
|
-
website
|
|
1037
|
-
size
|
|
1038
|
-
phone
|
|
1039
|
-
address
|
|
1040
|
-
company_values
|
|
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
|
@@ -7,15 +7,16 @@ enum OrganisationSize {
|
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
model Organisation {
|
|
10
|
-
id
|
|
11
|
-
name
|
|
12
|
-
industry
|
|
13
|
-
about
|
|
14
|
-
website
|
|
15
|
-
size
|
|
16
|
-
phone
|
|
17
|
-
address
|
|
18
|
-
company_values
|
|
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())
|