sowell-models 1.33.0 → 1.34.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sowell-models",
3
- "version": "1.33.0",
3
+ "version": "1.34.0",
4
4
  "description": "SoWell models",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -27,6 +27,7 @@ export interface IUser extends IModel {
27
27
  assignations?: IAssignation[]
28
28
  canUpdateIssueReports?: boolean
29
29
  emailNotificationsActivated?: boolean
30
+ masterId?: string
30
31
  }
31
32
 
32
33
  export class UserCollection extends PouchCollection<IUser> {
@@ -74,6 +75,7 @@ export class SPUserItem extends ApplicationRecord implements IUser {
74
75
  @Attr() password!: string
75
76
  @Attr() status!: string
76
77
  @Attr() code!: string
78
+ @Attr() masterId?: string
77
79
  @Attr() recipients?: PhoneNumber[]
78
80
  @Attr() assignationsCount!: number | null
79
81
  @Attr() canUpdateIssueReports!: boolean