@bigfootai/bigfoot-types 5.4.14 → 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 +6 -0
- package/model.ts +11 -0
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1226,6 +1226,7 @@ input IngestEmailInput {${exports.BlockFieldsForUpsert}
|
|
1226
1226
|
subject: String
|
1227
1227
|
attachments: [AttachmentInput]
|
1228
1228
|
htmlContent: String
|
1229
|
+
textContent: String
|
1229
1230
|
createBlockType: String
|
1230
1231
|
}`;
|
1231
1232
|
exports.EmailQL = `
|
@@ -1237,6 +1238,7 @@ type Email {${exports.BusinessObjectFields}
|
|
1237
1238
|
subject: String
|
1238
1239
|
attachments: [Attachment]
|
1239
1240
|
htmlContent: String
|
1241
|
+
textContent: String
|
1240
1242
|
}`;
|
1241
1243
|
class Email extends BusinessObject {
|
1242
1244
|
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
|
@@ -1648,6 +1650,7 @@ exports.FindTagInputQL = `
|
|
1648
1650
|
input FindTagInput {
|
1649
1651
|
_id: String!
|
1650
1652
|
archived: Boolean
|
1653
|
+
connectionId: String
|
1651
1654
|
}`;
|
1652
1655
|
exports.FindTagsInputQL = `
|
1653
1656
|
input FindTagsInput {
|
@@ -1760,8 +1763,11 @@ type ArchiveSearchOutput {
|
|
1760
1763
|
exports.SearchTagsInputQL = `
|
1761
1764
|
input SearchTagsInput {
|
1762
1765
|
tagType: String
|
1766
|
+
tagSubType: String
|
1763
1767
|
tagTypes: [String]
|
1764
1768
|
parentId: String
|
1769
|
+
externalId: String
|
1770
|
+
connectionId: String
|
1765
1771
|
_ids: [String]
|
1766
1772
|
tenantIdVerifieds: [String]
|
1767
1773
|
search: String
|
package/model.ts
CHANGED
@@ -2086,6 +2086,7 @@ input IngestEmailInput {${BlockFieldsForUpsert}
|
|
2086
2086
|
subject: String
|
2087
2087
|
attachments: [AttachmentInput]
|
2088
2088
|
htmlContent: String
|
2089
|
+
textContent: String
|
2089
2090
|
createBlockType: String
|
2090
2091
|
}`;
|
2091
2092
|
export const EmailQL = `
|
@@ -2097,6 +2098,7 @@ type Email {${BusinessObjectFields}
|
|
2097
2098
|
subject: String
|
2098
2099
|
attachments: [Attachment]
|
2099
2100
|
htmlContent: String
|
2101
|
+
textContent: String
|
2100
2102
|
}`;
|
2101
2103
|
export class Email extends BusinessObject {
|
2102
2104
|
to?: PersonReference[];
|
@@ -2106,6 +2108,7 @@ export class Email extends BusinessObject {
|
|
2106
2108
|
subject?: string | null;
|
2107
2109
|
attachments?: Attachment[] | null;
|
2108
2110
|
htmlContent?: string;
|
2111
|
+
textContent?: string;
|
2109
2112
|
createBlockType?: string;
|
2110
2113
|
|
2111
2114
|
constructor(
|
@@ -2910,10 +2913,12 @@ export const FindTagInputQL = `
|
|
2910
2913
|
input FindTagInput {
|
2911
2914
|
_id: String!
|
2912
2915
|
archived: Boolean
|
2916
|
+
connectionId: String
|
2913
2917
|
}`;
|
2914
2918
|
export interface FindTagInput {
|
2915
2919
|
_id: string;
|
2916
2920
|
archived?: boolean;
|
2921
|
+
connectionId?: string;
|
2917
2922
|
}
|
2918
2923
|
|
2919
2924
|
export const FindTagsInputQL = `
|
@@ -3136,8 +3141,11 @@ export interface ArchiveSearchOutput {
|
|
3136
3141
|
export const SearchTagsInputQL = `
|
3137
3142
|
input SearchTagsInput {
|
3138
3143
|
tagType: String
|
3144
|
+
tagSubType: String
|
3139
3145
|
tagTypes: [String]
|
3140
3146
|
parentId: String
|
3147
|
+
externalId: String
|
3148
|
+
connectionId: String
|
3141
3149
|
_ids: [String]
|
3142
3150
|
tenantIdVerifieds: [String]
|
3143
3151
|
search: String
|
@@ -3157,8 +3165,11 @@ input SearchTagsInput {
|
|
3157
3165
|
}`;
|
3158
3166
|
export interface SearchTagsInput {
|
3159
3167
|
tagType?: TagType;
|
3168
|
+
tagSubType?: string;
|
3160
3169
|
tagTypes?: TagType[];
|
3161
3170
|
parentId?: string;
|
3171
|
+
externalId?: string;
|
3172
|
+
connectionId?: string;
|
3162
3173
|
_ids?: string[];
|
3163
3174
|
tenantIdVerifieds?: string[];
|
3164
3175
|
search?: string;
|