@bigfootai/bigfoot-types 5.4.6 → 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 +1 -1
- package/model.ts +1 -1
- package/package.json +1 -1
package/model.js
CHANGED
@@ -1231,7 +1231,7 @@ type Email {${exports.BusinessObjectFields}
|
|
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