@volontariapp/shared 0.1.1 → 0.1.2-snapshot.153d213840cd

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,21 @@
1
+ # Changelog
2
+
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - bump: enums to have the string value
8
+
9
+ ## 0.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - feat: added tagsEnum
14
+
15
+ All notable changes to this project will be documented in this file.
16
+
17
+ ## 0.1.0
18
+
19
+ ### Minor Changes
20
+
21
+ - Initial package scaffold.
@@ -1,7 +1,7 @@
1
1
  export declare enum TagsNames {
2
- ECOLOGIE = 0,
3
- SOCIAL = 1,
4
- BENEVOLAT = 2,
5
- CERTIFIED = 3
2
+ ECOLOGIE = "ECOLOGIE",
3
+ SOCIAL = "SOCIAL",
4
+ BENEVOLAT = "BENEVOLAT",
5
+ CERTIFIED = "CERTIFIED"
6
6
  }
7
7
  //# sourceMappingURL=tags-enum.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"tags-enum.d.ts","sourceRoot":"","sources":["../../src/enums/tags-enum.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,QAAQ,IAAA;IACR,MAAM,IAAA;IACN,SAAS,IAAA;IACT,SAAS,IAAA;CACV"}
1
+ {"version":3,"file":"tags-enum.d.ts","sourceRoot":"","sources":["../../src/enums/tags-enum.ts"],"names":[],"mappings":"AAAA,oBAAY,SAAS;IACnB,QAAQ,aAAa;IACrB,MAAM,WAAW;IACjB,SAAS,cAAc;IACvB,SAAS,cAAc;CACxB"}
@@ -1,8 +1,8 @@
1
1
  export var TagsNames;
2
2
  (function (TagsNames) {
3
- TagsNames[TagsNames["ECOLOGIE"] = 0] = "ECOLOGIE";
4
- TagsNames[TagsNames["SOCIAL"] = 1] = "SOCIAL";
5
- TagsNames[TagsNames["BENEVOLAT"] = 2] = "BENEVOLAT";
6
- TagsNames[TagsNames["CERTIFIED"] = 3] = "CERTIFIED";
3
+ TagsNames["ECOLOGIE"] = "ECOLOGIE";
4
+ TagsNames["SOCIAL"] = "SOCIAL";
5
+ TagsNames["BENEVOLAT"] = "BENEVOLAT";
6
+ TagsNames["CERTIFIED"] = "CERTIFIED";
7
7
  })(TagsNames || (TagsNames = {}));
8
8
  //# sourceMappingURL=tags-enum.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"tags-enum.js","sourceRoot":"","sources":["../../src/enums/tags-enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,iDAAQ,CAAA;IACR,6CAAM,CAAA;IACN,mDAAS,CAAA;IACT,mDAAS,CAAA;AACX,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB"}
1
+ {"version":3,"file":"tags-enum.js","sourceRoot":"","sources":["../../src/enums/tags-enum.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,kCAAqB,CAAA;IACrB,8BAAiB,CAAA;IACjB,oCAAuB,CAAA;IACvB,oCAAuB,CAAA;AACzB,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@volontariapp/shared",
3
- "version": "0.1.1",
3
+ "version": "0.1.2-snapshot.153d213840cd",
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
+ }