@bigfootai/bigfoot-types 5.4.16 → 5.4.17

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
@@ -1651,6 +1651,8 @@ input FindTagInput {
1651
1651
  _id: String!
1652
1652
  archived: Boolean
1653
1653
  connectionId: String
1654
+ tagType: String
1655
+ tagSubType: String
1654
1656
  }`;
1655
1657
  exports.FindTagsInputQL = `
1656
1658
  input FindTagsInput {
package/model.ts CHANGED
@@ -2914,11 +2914,15 @@ input FindTagInput {
2914
2914
  _id: String!
2915
2915
  archived: Boolean
2916
2916
  connectionId: String
2917
+ tagType: String
2918
+ tagSubType: String
2917
2919
  }`;
2918
2920
  export interface FindTagInput {
2919
2921
  _id: string;
2920
2922
  archived?: boolean;
2921
2923
  connectionId?: string;
2924
+ tagType?: TagType;
2925
+ tagSubType?: string;
2922
2926
  }
2923
2927
 
2924
2928
  export const FindTagsInputQL = `
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "Bigfoot",
3
3
  "name": "@bigfootai/bigfoot-types",
4
- "version": "5.4.16",
4
+ "version": "5.4.17",
5
5
  "description": "The internal library for the types used in the Bigfoot platform",
6
6
  "main": "model.js",
7
7
  "license": "ISC",