@bigfootai/bigfoot-types 4.5.14 → 4.5.15
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/model.js +1 -0
- package/model.ts +2 -0
- package/package.json +1 -1
package/model.js
CHANGED
package/model.ts
CHANGED
@@ -646,12 +646,14 @@ export class Metadata extends Primitive {
|
|
646
646
|
|
647
647
|
export const FolderQL = `
|
648
648
|
type Folder {${SharedPrimitiveFields}
|
649
|
+
icon: String
|
649
650
|
label: String!
|
650
651
|
description: String
|
651
652
|
searchIds: [String]
|
652
653
|
archived: Boolean!
|
653
654
|
}`;
|
654
655
|
export class Folder extends SharedPrimitive {
|
656
|
+
icon?: string;
|
655
657
|
label: string;
|
656
658
|
description?: string;
|
657
659
|
searchIds?: string[];
|