@bigfootai/bigfoot-types 4.5.12 → 4.5.14

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 -1
  2. package/model.ts +8 -2
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -451,8 +451,9 @@ type Folder {${exports.SharedPrimitiveFields}
451
451
  archived: Boolean!
452
452
  }`;
453
453
  class Folder extends SharedPrimitive {
454
- constructor(tenantIdCreated, sharingTags) {
454
+ constructor(tenantIdCreated, sharingTags, label) {
455
455
  super(sharingTags);
456
+ this.label = label;
456
457
  this.tenantIdCreated = tenantIdCreated;
457
458
  this.archived = false;
458
459
  }
package/model.ts CHANGED
@@ -656,11 +656,16 @@ export class Folder extends SharedPrimitive {
656
656
  description?: string;
657
657
  searchIds?: string[];
658
658
  archived: boolean;
659
- _tagType: TagType;
659
+ _tagType?: TagType;
660
660
 
661
- constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
661
+ constructor(
662
+ tenantIdCreated: string,
663
+ sharingTags: SharingTag[],
664
+ label: string
665
+ ) {
662
666
  super(sharingTags);
663
667
 
668
+ this.label = label;
664
669
  this.tenantIdCreated = tenantIdCreated;
665
670
  this.archived = false;
666
671
  }
@@ -2176,6 +2181,7 @@ export interface UpsertFolderInput {
2176
2181
  label: string;
2177
2182
  description?: string;
2178
2183
  searchIds?: string[];
2184
+ _tagType?: TagType;
2179
2185
  }
2180
2186
 
2181
2187
  export const FindFolderInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.5.12",
4
+ "version": "4.5.14",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",