@bigfootai/bigfoot-types 3.9.3 → 3.9.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 +5 -1
  3. package/package.json +1 -1
package/model.js CHANGED
@@ -927,6 +927,7 @@ type ArchiveTaskOutput {
927
927
  exports.UpsertSearchInputQL = `
928
928
  input UpsertSearchInput {
929
929
  _id: String
930
+ blockType: String
930
931
  search: String
931
932
  tagIds: [String]
932
933
  sentiment: String
@@ -963,6 +964,7 @@ type ArchiveSearchOutput {
963
964
  }`;
964
965
  exports.SearchInputQL = `
965
966
  input SearchInput {
967
+ blockType: String
966
968
  search: String
967
969
  tagIds: [String]
968
970
  sentiment: String
package/model.ts CHANGED
@@ -657,8 +657,8 @@ export class Tag extends Primitive {
657
657
  originNoteId?: string; // If the tag originated from a note, we store that here
658
658
  tenantIdVerified?: string; // The tenant._id that claimed/verified this tag as being them
659
659
  archived: boolean;
660
- _orphan: boolean;
661
660
  _createdByAI: boolean;
661
+ _orphan?: boolean;
662
662
 
663
663
  constructor(tenantIdCreated: string, alias: string, tagType: TagType) {
664
664
  super();
@@ -1692,6 +1692,7 @@ export interface ArchiveTaskOutput {
1692
1692
  export const UpsertSearchInputQL = `
1693
1693
  input UpsertSearchInput {
1694
1694
  _id: String
1695
+ blockType: String
1695
1696
  search: String
1696
1697
  tagIds: [String]
1697
1698
  sentiment: String
@@ -1709,6 +1710,7 @@ input UpsertSearchInput {
1709
1710
  }`;
1710
1711
  export interface UpsertSearchInput {
1711
1712
  _id: string;
1713
+ blockType?: string;
1712
1714
  search?: string;
1713
1715
  tagIds?: string[];
1714
1716
  sentiment?: string;
@@ -1765,6 +1767,7 @@ export interface ArchiveSearchOutput {
1765
1767
 
1766
1768
  export const SearchInputQL = `
1767
1769
  input SearchInput {
1770
+ blockType: String
1768
1771
  search: String
1769
1772
  tagIds: [String]
1770
1773
  sentiment: String
@@ -1782,6 +1785,7 @@ input SearchInput {
1782
1785
  size: Int
1783
1786
  }`;
1784
1787
  export interface SearchInput {
1788
+ blockType?: BlockType;
1785
1789
  search?: string;
1786
1790
  tagIds?: string[];
1787
1791
  sentiment?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "3.9.3",
4
+ "version": "3.9.5",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",