sowell-models 1.21.0 → 1.22.1

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.21.0",
3
+ "version": "1.22.1",
4
4
  "description": "SoWell models",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -23,6 +23,7 @@ export interface IChecklist extends IModel {
23
23
  periodicity?: string
24
24
  defaultAgent?: string
25
25
  allowedAgents?: string[]
26
+ skipProviderStep?: boolean
26
27
  }
27
28
 
28
29
  export class ChecklistCollection
@@ -55,6 +56,7 @@ export class SPChecklistItem extends ApplicationRecord implements IChecklist {
55
56
  @Attr() periodicity!: string
56
57
  @Attr() allowedAgents!: string[]
57
58
  @Attr() defaultAgent!: string
59
+ @Attr() skipProviderStep!: boolean
58
60
  @BelongsTo() company!: SPCompany
59
61
  @BelongsTo() family!: SPFamily
60
62
  @HasOne() area!: SPAreaItem