@bigfootai/bigfoot-types 5.4.15 → 5.4.16
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 +4 -0
- package/model.ts +8 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1650,6 +1650,7 @@ exports.FindTagInputQL = `
|
|
1650
1650
|
input FindTagInput {
|
1651
1651
|
_id: String!
|
1652
1652
|
archived: Boolean
|
1653
|
+
connectionId: String
|
1653
1654
|
}`;
|
1654
1655
|
exports.FindTagsInputQL = `
|
1655
1656
|
input FindTagsInput {
|
@@ -1762,8 +1763,11 @@ type ArchiveSearchOutput {
|
|
1762
1763
|
exports.SearchTagsInputQL = `
|
1763
1764
|
input SearchTagsInput {
|
1764
1765
|
tagType: String
|
1766
|
+
tagSubType: String
|
1765
1767
|
tagTypes: [String]
|
1766
1768
|
parentId: String
|
1769
|
+
externalId: String
|
1770
|
+
connectionId: String
|
1767
1771
|
_ids: [String]
|
1768
1772
|
tenantIdVerifieds: [String]
|
1769
1773
|
search: String
|
package/model.ts
CHANGED
@@ -2913,10 +2913,12 @@ export const FindTagInputQL = `
|
|
2913
2913
|
input FindTagInput {
|
2914
2914
|
_id: String!
|
2915
2915
|
archived: Boolean
|
2916
|
+
connectionId: String
|
2916
2917
|
}`;
|
2917
2918
|
export interface FindTagInput {
|
2918
2919
|
_id: string;
|
2919
2920
|
archived?: boolean;
|
2921
|
+
connectionId?: string;
|
2920
2922
|
}
|
2921
2923
|
|
2922
2924
|
export const FindTagsInputQL = `
|
@@ -3139,8 +3141,11 @@ export interface ArchiveSearchOutput {
|
|
3139
3141
|
export const SearchTagsInputQL = `
|
3140
3142
|
input SearchTagsInput {
|
3141
3143
|
tagType: String
|
3144
|
+
tagSubType: String
|
3142
3145
|
tagTypes: [String]
|
3143
3146
|
parentId: String
|
3147
|
+
externalId: String
|
3148
|
+
connectionId: String
|
3144
3149
|
_ids: [String]
|
3145
3150
|
tenantIdVerifieds: [String]
|
3146
3151
|
search: String
|
@@ -3160,8 +3165,11 @@ input SearchTagsInput {
|
|
3160
3165
|
}`;
|
3161
3166
|
export interface SearchTagsInput {
|
3162
3167
|
tagType?: TagType;
|
3168
|
+
tagSubType?: string;
|
3163
3169
|
tagTypes?: TagType[];
|
3164
3170
|
parentId?: string;
|
3171
|
+
externalId?: string;
|
3172
|
+
connectionId?: string;
|
3165
3173
|
_ids?: string[];
|
3166
3174
|
tenantIdVerifieds?: string[];
|
3167
3175
|
search?: string;
|