@lepsto/sdk-app 89.3.0 → 89.4.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/CHANGELOG.md +28 -6
- package/dist/_types/gen/client.gen.d.ts +11 -1
- package/dist/_types/gen/mail/index.d.ts +1 -1
- package/dist/_types/gen/mail/queryOptions.gen.d.ts +25 -1
- package/dist/_types/gen/types.gen.d.ts +434 -5
- package/dist/{chunk-IWBH5QNX.js → chunk-ZH37YJ7E.js} +98 -2
- package/dist/chunk-ZH37YJ7E.js.map +1 -0
- package/dist/index.cjs +108 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/mail/index.cjs +30 -0
- package/dist/mail/index.cjs.map +1 -1
- package/dist/mail/index.js +25 -1
- package/dist/mail/index.js.map +1 -1
- package/dist/playground/index.cjs.map +1 -1
- package/dist/playground/index.js +1 -1
- package/package.json +2 -2
- package/src/gen/bindings.gen.ts +96 -0
- package/src/gen/client.gen.ts +22 -0
- package/src/gen/mail/index.ts +1 -1
- package/src/gen/mail/queryOptions.gen.ts +38 -0
- package/src/gen/manifest.gen.ts +12 -0
- package/src/gen/types.gen.ts +446 -6
- package/dist/chunk-IWBH5QNX.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { bindings } from './chunk-
|
|
1
|
+
import { bindings } from './chunk-ZH37YJ7E.js';
|
|
2
2
|
|
|
3
3
|
// src/runtime/errors.ts
|
|
4
4
|
var ACCESS_DENIED_CODES = /* @__PURE__ */ new Set([
|
|
@@ -472,11 +472,17 @@ var operations = {
|
|
|
472
472
|
"mail_suppression_add": "write",
|
|
473
473
|
"mail_suppression_list": "read",
|
|
474
474
|
"mail_suppression_remove": "admin",
|
|
475
|
+
"mail_template_archive": "write",
|
|
475
476
|
"mail_template_create": "write",
|
|
476
477
|
"mail_template_delete": "admin",
|
|
478
|
+
"mail_template_draft_discard": "write",
|
|
477
479
|
"mail_template_get": "read",
|
|
478
480
|
"mail_template_list": "read",
|
|
479
481
|
"mail_template_publish": "write",
|
|
482
|
+
"mail_template_restore": "write",
|
|
483
|
+
"mail_template_revision_get": "read",
|
|
484
|
+
"mail_template_revision_list": "read",
|
|
485
|
+
"mail_template_unarchive": "write",
|
|
480
486
|
"mail_template_update": "write",
|
|
481
487
|
"mail_usage_get": "read",
|
|
482
488
|
"mail_webhook_create": "admin",
|
|
@@ -892,11 +898,17 @@ var compositions = {
|
|
|
892
898
|
"mail_suppression_add": { "pii": ["input.address", "output.address"], "label": "Suppress address" },
|
|
893
899
|
"mail_suppression_list": { "pii": ["input.q", "output.items[].address"], "label": "List suppressions" },
|
|
894
900
|
"mail_suppression_remove": { "pii": ["input.address", "output.address"], "label": "Unsuppress address" },
|
|
901
|
+
"mail_template_archive": { "label": "Archive template", "options": { "id": "mail_template_list" } },
|
|
895
902
|
"mail_template_create": { "label": "Create template" },
|
|
896
903
|
"mail_template_delete": { "label": "Delete template", "options": { "id": "mail_template_list" } },
|
|
904
|
+
"mail_template_draft_discard": { "label": "Discard template draft", "options": { "id": "mail_template_list" } },
|
|
897
905
|
"mail_template_get": { "label": "Get template", "options": { "id": "mail_template_list" } },
|
|
898
906
|
"mail_template_list": { "label": "List templates" },
|
|
899
907
|
"mail_template_publish": { "label": "Publish template", "options": { "id": "mail_template_list" } },
|
|
908
|
+
"mail_template_restore": { "label": "Restore template revision", "options": { "id": "mail_template_list" } },
|
|
909
|
+
"mail_template_revision_get": { "label": "Get template revision", "options": { "id": "mail_template_list" } },
|
|
910
|
+
"mail_template_revision_list": { "label": "List template revisions", "options": { "id": "mail_template_list" } },
|
|
911
|
+
"mail_template_unarchive": { "label": "Unarchive template", "options": { "id": "mail_template_list" } },
|
|
900
912
|
"mail_template_update": { "label": "Update template", "options": { "id": "mail_template_list" } },
|
|
901
913
|
"mail_usage_get": { "label": "Get usage" },
|
|
902
914
|
"playground_workflow_echo": { "pii": ["input.note", "output.note"], "label": "Store workflow echo", "completion_event": "playground/workflow.echoed" },
|