@bigfootai/bigfoot-types 4.5.14 → 4.5.16

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.
Files changed (3) hide show
  1. package/model.js +2 -0
  2. package/model.ts +4 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -445,6 +445,7 @@ class Metadata extends Primitive {
445
445
  exports.Metadata = Metadata;
446
446
  exports.FolderQL = `
447
447
  type Folder {${exports.SharedPrimitiveFields}
448
+ icon: String
448
449
  label: String!
449
450
  description: String
450
451
  searchIds: [String]
@@ -1197,6 +1198,7 @@ exports.UpsertFolderInputQL = `
1197
1198
  input UpsertFolderInput {
1198
1199
  _id: String
1199
1200
  sharingTags: [SharingTagInput]
1201
+ icon: String
1200
1202
  label: String!
1201
1203
  description: String
1202
1204
  searchIds: [String]
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[];
@@ -2171,6 +2173,7 @@ export const UpsertFolderInputQL = `
2171
2173
  input UpsertFolderInput {
2172
2174
  _id: String
2173
2175
  sharingTags: [SharingTagInput]
2176
+ icon: String
2174
2177
  label: String!
2175
2178
  description: String
2176
2179
  searchIds: [String]
@@ -2178,6 +2181,7 @@ input UpsertFolderInput {
2178
2181
  export interface UpsertFolderInput {
2179
2182
  _id?: string;
2180
2183
  sharingTags?: SharingTag[];
2184
+ icon?: string;
2181
2185
  label: string;
2182
2186
  description?: string;
2183
2187
  searchIds?: string[];
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.14",
4
+ "version": "4.5.16",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",