@bigfootai/bigfoot-types 5.4.14 → 5.4.15
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 +3 -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) {
|
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(
|