@bigfootai/bigfoot-types 4.6.11 → 4.6.13
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
@@ -1026,6 +1026,7 @@ type FieldValue {
|
|
1026
1026
|
name: String!
|
1027
1027
|
value: String
|
1028
1028
|
id: String
|
1029
|
+
changed: Boolean
|
1029
1030
|
}`;
|
1030
1031
|
exports.TableMetadataQL = `
|
1031
1032
|
type TableMetadata {${exports.MetadataFields}
|
@@ -1306,6 +1307,7 @@ input SearchTagsInput {
|
|
1306
1307
|
tagType: String
|
1307
1308
|
parentId: String
|
1308
1309
|
_ids: [String]
|
1310
|
+
tenantIdVerifieds: [String]
|
1309
1311
|
search: String
|
1310
1312
|
email: String
|
1311
1313
|
inviteStatus: String
|
package/model.ts
CHANGED
@@ -1824,11 +1824,13 @@ type FieldValue {
|
|
1824
1824
|
name: String!
|
1825
1825
|
value: String
|
1826
1826
|
id: String
|
1827
|
+
changed: Boolean
|
1827
1828
|
}`;
|
1828
1829
|
export interface FieldValue {
|
1829
1830
|
name: string;
|
1830
1831
|
value?: string;
|
1831
1832
|
id?: string;
|
1833
|
+
changed?: boolean;
|
1832
1834
|
}
|
1833
1835
|
|
1834
1836
|
export const TableMetadataQL = `
|
@@ -2377,6 +2379,7 @@ input SearchTagsInput {
|
|
2377
2379
|
tagType: String
|
2378
2380
|
parentId: String
|
2379
2381
|
_ids: [String]
|
2382
|
+
tenantIdVerifieds: [String]
|
2380
2383
|
search: String
|
2381
2384
|
email: String
|
2382
2385
|
inviteStatus: String
|
@@ -2395,6 +2398,7 @@ export interface SearchTagsInput {
|
|
2395
2398
|
tagType?: TagType;
|
2396
2399
|
parentId?: string;
|
2397
2400
|
_ids?: string[];
|
2401
|
+
tenantIdVerifieds?: string[];
|
2398
2402
|
search?: string;
|
2399
2403
|
email?: string;
|
2400
2404
|
inviteStatus?: InviteStatus;
|