@bigfootai/bigfoot-types 4.6.8 → 4.6.9

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 +1 -0
  2. package/model.ts +2 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -479,6 +479,7 @@ type Search {${exports.SharedPrimitiveFields}
479
479
  orderByAlias: String
480
480
  size: Int
481
481
  archived: Boolean!
482
+ favoriteTagId: String
482
483
  }`;
483
484
  class Search extends SharedPrimitive {
484
485
  constructor(tenantIdCreated, sharingTags) {
package/model.ts CHANGED
@@ -691,6 +691,7 @@ type Search {${SharedPrimitiveFields}
691
691
  orderByAlias: String
692
692
  size: Int
693
693
  archived: Boolean!
694
+ favoriteTagId: String
694
695
  }`;
695
696
  export class Search extends SharedPrimitive {
696
697
  label?: string;
@@ -703,6 +704,7 @@ export class Search extends SharedPrimitive {
703
704
  page?: number;
704
705
  size?: number;
705
706
  archived: boolean;
707
+ favoriteTagId?: string;
706
708
 
707
709
  constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
708
710
  super(sharingTags);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "4.6.8",
4
+ "version": "4.6.9",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",