sowell-models 1.25.0 → 1.26.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
|
@@ -28,6 +28,7 @@ export interface ICategory extends IModel {
|
|
|
28
28
|
company?: ICompany
|
|
29
29
|
reasons?: IReason[]
|
|
30
30
|
isAssigned?: boolean
|
|
31
|
+
isHidden?: boolean
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
export class CategoryCollection
|
|
@@ -75,6 +76,7 @@ export class SPCategoryItem extends ApplicationRecord implements ICategory {
|
|
|
75
76
|
@Attr() iconUrl!: string
|
|
76
77
|
@Attr() areaName!: string
|
|
77
78
|
@Attr() isAssigned!: boolean
|
|
79
|
+
@Attr() isHidden!: boolean
|
|
78
80
|
@BelongsTo() company!: SPCompany
|
|
79
81
|
@BelongsTo() categoryType!: SPCategoryTypeItem
|
|
80
82
|
get _id(): string | undefined {
|