@exclusive-website/types 1.5.2 → 1.5.3

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.
@@ -80,8 +80,8 @@ export declare enum ServicesFor {
80
80
  COUPLES = "Pre p\u00E1ry"
81
81
  }
82
82
  export declare enum UserRole {
83
- MODEL = 0,
84
- CLIENT = 1
83
+ MODEL = "MODEL",
84
+ CLIENT = "CLIENT"
85
85
  }
86
86
  export declare enum Practise {
87
87
  MASSAGE = 0,
@@ -104,8 +104,8 @@ var ServicesFor;
104
104
  })(ServicesFor = exports.ServicesFor || (exports.ServicesFor = {}));
105
105
  var UserRole;
106
106
  (function (UserRole) {
107
- UserRole[UserRole["MODEL"] = 0] = "MODEL";
108
- UserRole[UserRole["CLIENT"] = 1] = "CLIENT";
107
+ UserRole["MODEL"] = "MODEL";
108
+ UserRole["CLIENT"] = "CLIENT";
109
109
  })(UserRole = exports.UserRole || (exports.UserRole = {}));
110
110
  var Practise;
111
111
  (function (Practise) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.5.2",
3
+ "version": "1.5.3",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -100,8 +100,8 @@ export enum ServicesFor {
100
100
  }
101
101
 
102
102
  export enum UserRole {
103
- MODEL,
104
- CLIENT,
103
+ MODEL = 'MODEL',
104
+ CLIENT = 'CLIENT',
105
105
  }
106
106
 
107
107
  export enum Practise {