@epilot/automation-client 2.5.2 → 2.5.3
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/dist/openapi.d.ts +4 -0
- package/dist/openapi.json +5 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1545,6 +1545,10 @@ declare namespace Components {
|
|
|
1545
1545
|
export interface SendEmailConfig {
|
|
1546
1546
|
email_template_id?: string;
|
|
1547
1547
|
language_code?: "de" | "en";
|
|
1548
|
+
/**
|
|
1549
|
+
* Send an email exclusively to the portal user if they are registered on the portal.
|
|
1550
|
+
*/
|
|
1551
|
+
notify_portal_user_only?: boolean;
|
|
1548
1552
|
/**
|
|
1549
1553
|
* Include extra file attachments in sent email.
|
|
1550
1554
|
*
|
package/dist/openapi.json
CHANGED
|
@@ -1327,6 +1327,11 @@
|
|
|
1327
1327
|
"en"
|
|
1328
1328
|
]
|
|
1329
1329
|
},
|
|
1330
|
+
"notify_portal_user_only": {
|
|
1331
|
+
"type": "boolean",
|
|
1332
|
+
"description": "Send an email exclusively to the portal user if they are registered on the portal.",
|
|
1333
|
+
"default": false
|
|
1334
|
+
},
|
|
1330
1335
|
"attachments": {
|
|
1331
1336
|
"type": "array",
|
|
1332
1337
|
"description": "Include extra file attachments in sent email.\n\nAttachments in email template will be sent regardless of this configuration.\n",
|