@bigfootai/bigfoot-types 5.4.5 → 5.4.7
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 -2
- package/model.ts +2 -2
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1224,14 +1224,14 @@ type Email {${exports.BusinessObjectFields}
|
|
1224
1224
|
to: [PersonReference]
|
1225
1225
|
cc: [PersonReference]
|
1226
1226
|
bcc: [PersonReference]
|
1227
|
-
from:
|
1227
|
+
from: PersonReference
|
1228
1228
|
subject: String
|
1229
1229
|
attachments: [Attachment]
|
1230
1230
|
htmlContent: String
|
1231
1231
|
}`;
|
1232
1232
|
class Email extends BusinessObject {
|
1233
1233
|
constructor(tenantIdCreated, editors, sharingTags, provider, application, uri, externalId) {
|
1234
|
-
super(tenantIdCreated, editors, sharingTags, BlockType.
|
1234
|
+
super(tenantIdCreated, editors, sharingTags, BlockType.Email, provider, application, uri, externalId);
|
1235
1235
|
}
|
1236
1236
|
}
|
1237
1237
|
exports.Email = Email;
|
package/model.ts
CHANGED
@@ -2076,7 +2076,7 @@ type Email {${BusinessObjectFields}
|
|
2076
2076
|
to: [PersonReference]
|
2077
2077
|
cc: [PersonReference]
|
2078
2078
|
bcc: [PersonReference]
|
2079
|
-
from:
|
2079
|
+
from: PersonReference
|
2080
2080
|
subject: String
|
2081
2081
|
attachments: [Attachment]
|
2082
2082
|
htmlContent: String
|
@@ -2104,7 +2104,7 @@ export class Email extends BusinessObject {
|
|
2104
2104
|
tenantIdCreated,
|
2105
2105
|
editors,
|
2106
2106
|
sharingTags,
|
2107
|
-
BlockType.
|
2107
|
+
BlockType.Email,
|
2108
2108
|
provider,
|
2109
2109
|
application,
|
2110
2110
|
uri,
|