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