sowell-models 1.23.0 → 1.24.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.23.0",
3
+ "version": "1.24.0",
4
4
  "description": "SoWell models",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -14,6 +14,7 @@ export interface IChecklist extends IModel {
14
14
  id?: string
15
15
  name: string
16
16
  isPlanned?: boolean
17
+ isActive?: boolean
17
18
  iconUrl?: string
18
19
  updatedAt?: Date
19
20
  company?: ICompany
@@ -51,6 +52,7 @@ export class SPChecklistItem extends ApplicationRecord implements IChecklist {
51
52
  static jsonapiType = "checklists"
52
53
  @Attr() name!: string
53
54
  @Attr() isPlanned!: boolean
55
+ @Attr() isActive!: boolean
54
56
  @Attr() iconUrl!: string
55
57
  @Attr({ persist: false }) updatedAt!: Date
56
58
  @Attr() periodicity!: string