@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.
- package/model.js +2 -0
- package/model.ts +4 -0
- package/package.json +1 -1
package/model.js
CHANGED
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 = `
|