@grapadigital/shared-schemas 1.0.181 → 1.0.182

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.
@@ -30,7 +30,8 @@ export declare enum OrganizationTeam {
30
30
  ADMIN = "admin",
31
31
  ARTISTIC = "artistic",
32
32
  FINANCIAL = "financial",
33
- COMERCIAL = "comercial"
33
+ COMERCIAL = "comercial",
34
+ TECH = "tech"
34
35
  }
35
36
  export declare enum UserRole {
36
37
  ADMIN = "admin",
@@ -19,6 +19,7 @@ var OrganizationTeam;
19
19
  OrganizationTeam["ARTISTIC"] = "artistic";
20
20
  OrganizationTeam["FINANCIAL"] = "financial";
21
21
  OrganizationTeam["COMERCIAL"] = "comercial";
22
+ OrganizationTeam["TECH"] = "tech";
22
23
  })(OrganizationTeam = exports.OrganizationTeam || (exports.OrganizationTeam = {}));
23
24
  var UserRole;
24
25
  (function (UserRole) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grapadigital/shared-schemas",
3
- "version": "1.0.181",
3
+ "version": "1.0.182",
4
4
  "description": "Shared Mongoose Schemas",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,6 +9,7 @@ export enum OrganizationTeam {
9
9
  ARTISTIC = 'artistic',
10
10
  FINANCIAL = 'financial',
11
11
  COMERCIAL = 'comercial',
12
+ TECH = 'tech',
12
13
  }
13
14
 
14
15
  export enum UserRole {