@lessly/sdk-app 71.1.0 → 71.2.0
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/index.cjs +41 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +41 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/gen/manifest.gen.ts +41 -1
package/dist/index.cjs
CHANGED
|
@@ -11992,7 +11992,47 @@ var operations = {
|
|
|
11992
11992
|
"workflow_wait_list_all": "read",
|
|
11993
11993
|
"workflow_wait_resolve": "write"
|
|
11994
11994
|
};
|
|
11995
|
-
var compositions = {
|
|
11995
|
+
var compositions = {
|
|
11996
|
+
"mail_audience_create": { "label": "Create audience" },
|
|
11997
|
+
"mail_audience_delete": { "label": "Delete audience" },
|
|
11998
|
+
"mail_audience_get": { "label": "Get audience" },
|
|
11999
|
+
"mail_audience_list": { "label": "List audiences" },
|
|
12000
|
+
"mail_audience_update": { "label": "Rename audience" },
|
|
12001
|
+
"mail_broadcast_cancel": { "pii": ["output.from", "output.replyTo"], "label": "Cancel broadcast" },
|
|
12002
|
+
"mail_broadcast_create": { "pii": ["input.from", "input.replyTo", "output.from", "output.replyTo"], "label": "Create broadcast", "options": { "audienceId": "mail_audience_list", "template.id": "mail_template_list" } },
|
|
12003
|
+
"mail_broadcast_delete": { "label": "Delete broadcast" },
|
|
12004
|
+
"mail_broadcast_get": { "pii": ["output.from", "output.replyTo"], "label": "Get broadcast" },
|
|
12005
|
+
"mail_broadcast_list": { "pii": ["output.items[].from", "output.items[].replyTo"], "label": "List broadcasts" },
|
|
12006
|
+
"mail_broadcast_queue": { "pii": ["output.from", "output.replyTo"], "label": "Queue broadcast" },
|
|
12007
|
+
"mail_broadcast_stats": { "label": "Broadcast stats" },
|
|
12008
|
+
"mail_broadcast_update": { "pii": ["input.from", "input.replyTo", "output.from", "output.replyTo"], "label": "Update broadcast", "options": { "audienceId": "mail_audience_list", "template.id": "mail_template_list" } },
|
|
12009
|
+
"mail_contact_create": { "pii": ["input.email", "input.properties", "output.email", "output.properties"], "label": "Create contact", "options": { "audience_id": "mail_audience_list" } },
|
|
12010
|
+
"mail_contact_delete": { "label": "Delete contact", "options": { "audience_id": "mail_audience_list" } },
|
|
12011
|
+
"mail_contact_get": { "pii": ["output.email", "output.properties"], "label": "Get contact", "options": { "audience_id": "mail_audience_list" } },
|
|
12012
|
+
"mail_contact_list": { "pii": ["output.data[].email", "output.data[].properties"], "label": "List contacts", "options": { "audience_id": "mail_audience_list" } },
|
|
12013
|
+
"mail_contact_update": { "pii": ["input.properties", "output.email", "output.properties"], "label": "Update contact", "options": { "audience_id": "mail_audience_list" } },
|
|
12014
|
+
"mail_domain_allowed_list": { "label": "List allowed apex domains" },
|
|
12015
|
+
"mail_domain_get": { "label": "Get domain" },
|
|
12016
|
+
"mail_domain_list": { "label": "List domains" },
|
|
12017
|
+
"mail_domain_verify": { "label": "Verify domain", "completion_event": "mail/domain.verified" },
|
|
12018
|
+
"mail_email_cancel": { "label": "Cancel email" },
|
|
12019
|
+
"mail_email_get": { "pii": ["output.from", "output.to", "output.cc", "output.bcc"], "label": "Get email" },
|
|
12020
|
+
"mail_email_send": { "pii": ["input.from", "input.to", "input.cc", "input.bcc", "input.reply_to"], "label": "Send email", "options": { "template.id": "mail_template_list" }, "completion_event": "mail/email.delivered" },
|
|
12021
|
+
"mail_email_send_batch": { "pii": ["input.emails[].from", "input.emails[].to", "input.emails[].cc", "input.emails[].bcc", "input.emails[].reply_to"], "label": "Send email batch" },
|
|
12022
|
+
"mail_email_update": { "label": "Reschedule email" },
|
|
12023
|
+
"mail_reputation_get": { "label": "Get reputation status" },
|
|
12024
|
+
"mail_stats_get": { "label": "Get sending stats" },
|
|
12025
|
+
"mail_suppression_add": { "pii": ["input.address", "output.address"], "label": "Suppress address" },
|
|
12026
|
+
"mail_suppression_list": { "pii": ["input.q", "output.items[].address"], "label": "List suppressions" },
|
|
12027
|
+
"mail_suppression_remove": { "pii": ["input.address", "output.address"], "label": "Unsuppress address" },
|
|
12028
|
+
"mail_template_create": { "label": "Create template" },
|
|
12029
|
+
"mail_template_delete": { "label": "Delete template" },
|
|
12030
|
+
"mail_template_get": { "label": "Get template" },
|
|
12031
|
+
"mail_template_list": { "label": "List templates" },
|
|
12032
|
+
"mail_template_publish": { "label": "Publish template" },
|
|
12033
|
+
"mail_template_update": { "label": "Update template" },
|
|
12034
|
+
"mail_usage_get": { "label": "Get usage" }
|
|
12035
|
+
};
|
|
11996
12036
|
|
|
11997
12037
|
// src/runtime/permission-match.ts
|
|
11998
12038
|
var LEVELS = ["read", "write", "admin"];
|