@bigfootai/bigfoot-types 3.7.4 → 3.7.5

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 +3 -0
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -378,11 +378,13 @@ type Search {${exports.SharedPrimitiveFields}
378
378
  orderByDateCreated: String
379
379
  orderByAlias: String
380
380
  size: Int
381
+ archived: Boolean!
381
382
  }`;
382
383
  class Search extends SharedPrimitive {
383
384
  constructor(tenantIdCreated, sharingTags) {
384
385
  super(sharingTags);
385
386
  this.tenantIdCreated = tenantIdCreated;
387
+ this.archived = false;
386
388
  }
387
389
  }
388
390
  exports.Search = Search;
package/model.ts CHANGED
@@ -554,6 +554,7 @@ type Search {${SharedPrimitiveFields}
554
554
  orderByDateCreated: String
555
555
  orderByAlias: String
556
556
  size: Int
557
+ archived: Boolean!
557
558
  }`;
558
559
  export class Search extends SharedPrimitive {
559
560
  search?: string;
@@ -564,11 +565,13 @@ export class Search extends SharedPrimitive {
564
565
  orderByAlias?: OrderByDirection;
565
566
  page?: number;
566
567
  size?: number;
568
+ archived: boolean;
567
569
 
568
570
  constructor(tenantIdCreated: string, sharingTags: SharingTag[]) {
569
571
  super(sharingTags);
570
572
 
571
573
  this.tenantIdCreated = tenantIdCreated;
574
+ this.archived = false;
572
575
  }
573
576
  }
574
577
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.7.4",
4
+ "version": "3.7.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",