@volontariapp/shared 0.1.2 → 0.2.0-snap-00ed881

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/CHANGELOG.md ADDED
@@ -0,0 +1,27 @@
1
+ # Changelog
2
+
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Add UserRoles enum
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - bump: enums to have the string value
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - feat: added tagsEnum
20
+
21
+ All notable changes to this project will be documented in this file.
22
+
23
+ ## 0.1.0
24
+
25
+ ### Minor Changes
26
+
27
+ - Initial package scaffold.
@@ -1,2 +1,3 @@
1
1
  export * from './tags-enum.js';
2
+ export * from './user-roles-enum.js';
2
3
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC"}
@@ -1,2 +1,3 @@
1
1
  export * from './tags-enum.js';
2
+ export * from './user-roles-enum.js';
2
3
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/enums/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,6 @@
1
+ export declare enum UserRoles {
2
+ ORGANIZATION = "ORGANIZATION",
3
+ VOLUNTEER = "VOLUNTEER",
4
+ ADMIN = "ADMIN"
5
+ }
6
+ //# sourceMappingURL=user-roles-enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-roles-enum.d.ts","sourceRoot":"","sources":["../../src/enums/user-roles-enum.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,YAAY,iBAAiB;IAC7B,SAAS,cAAc;IACvB,KAAK,UAAU;CAChB"}
@@ -0,0 +1,7 @@
1
+ export var UserRoles;
2
+ (function (UserRoles) {
3
+ UserRoles["ORGANIZATION"] = "ORGANIZATION";
4
+ UserRoles["VOLUNTEER"] = "VOLUNTEER";
5
+ UserRoles["ADMIN"] = "ADMIN";
6
+ })(UserRoles || (UserRoles = {}));
7
+ //# sourceMappingURL=user-roles-enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"user-roles-enum.js","sourceRoot":"","sources":["../../src/enums/user-roles-enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,SAIX;AAJD,WAAY,SAAS;IACnB,0CAA6B,CAAA;IAC7B,oCAAuB,CAAA;IACvB,4BAAe,CAAA;AACjB,CAAC,EAJW,SAAS,KAAT,SAAS,QAIpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/shared",
3
- "version": "0.1.2",
3
+ "version": "0.2.0-snap-00ed881",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": true
@@ -35,4 +35,4 @@
35
35
  "devDependencies": {
36
36
  "typescript": "5.7.3"
37
37
  }
38
- }
38
+ }