emdash-smtp 0.3.2 → 0.3.4

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.4
4
+
5
+ - Reworked the SMTP Providers admin page into a guided single-provider setup flow with compact quick picks and a full-provider dropdown for edge cases.
6
+ - Bumped package interdependencies to 0.3.4.
7
+
8
+ ## 0.3.3
9
+
10
+ - Added package-level plugin identity metadata and explicit native descriptor metadata for marketplace trust review.
11
+ - Refreshed interdependency pins to the matching 0.3.3 releases.
12
+
3
13
  ## 0.2.1
4
14
 
5
15
  - Strengthened README and package metadata messaging directing installers to `emdash-smtp` rather than the internal `emdash-smtp-core`/`emdash-smtp-node-transports` packages
package/dist/index.mjs CHANGED
@@ -5,6 +5,7 @@ function emdashSmtp(options = {}) {
5
5
  return {
6
6
  id: SMTP_PLUGIN_ID,
7
7
  version: SMTP_PLUGIN_VERSION,
8
+ format: "native",
8
9
  entrypoint: "emdash-smtp/plugin",
9
10
  options,
10
11
  capabilities: ["email:provide", "network:fetch"],
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { PluginDescriptor } from \"emdash\";\n\nimport {\n\tcollectAllowedHosts,\n\tSMTP_ADMIN_PAGES,\n\tSMTP_ADMIN_WIDGETS,\n\tSMTP_PLUGIN_ID,\n\tSMTP_PLUGIN_VERSION,\n} from \"emdash-smtp-core\";\n\nexport interface EmdashSmtpOptions {\n\tlabel?: string;\n}\n\nexport function emdashSmtp(options: EmdashSmtpOptions = {}): PluginDescriptor<EmdashSmtpOptions> {\n\treturn {\n\t\tid: SMTP_PLUGIN_ID,\n\t\tversion: SMTP_PLUGIN_VERSION,\n\t\tentrypoint: \"emdash-smtp/plugin\",\n\t\toptions,\n\t\tcapabilities: [\"email:provide\", \"network:fetch\"],\n\t\tallowedHosts: collectAllowedHosts(\"trusted\"),\n\t\tstorage: {\n\t\t\tdeliveryLogs: {\n\t\t\t\tindexes: [\"providerId\", \"status\", \"createdAt\", \"source\"],\n\t\t\t},\n\t\t},\n\t\tadminPages: [...SMTP_ADMIN_PAGES],\n\t\tadminWidgets: [...SMTP_ADMIN_WIDGETS],\n\t};\n}\n\nexport default emdashSmtp;\n"],"mappings":";;;AAcA,SAAgB,WAAW,UAA6B,EAAE,EAAuC;AAChG,QAAO;EACN,IAAI;EACJ,SAAS;EACT,YAAY;EACZ;EACA,cAAc,CAAC,iBAAiB,gBAAgB;EAChD,cAAc,oBAAoB,UAAU;EAC5C,SAAS,EACR,cAAc,EACb,SAAS;GAAC;GAAc;GAAU;GAAa;GAAS,EACxD,EACD;EACD,YAAY,CAAC,GAAG,iBAAiB;EACjC,cAAc,CAAC,GAAG,mBAAmB;EACrC"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import type { PluginDescriptor } from \"emdash\";\n\nimport {\n\tcollectAllowedHosts,\n\tSMTP_ADMIN_PAGES,\n\tSMTP_ADMIN_WIDGETS,\n\tSMTP_PLUGIN_ID,\n\tSMTP_PLUGIN_VERSION,\n} from \"emdash-smtp-core\";\n\nexport interface EmdashSmtpOptions {\n\tlabel?: string;\n}\n\nexport function emdashSmtp(options: EmdashSmtpOptions = {}): PluginDescriptor<EmdashSmtpOptions> {\n\treturn {\n\t\tid: SMTP_PLUGIN_ID,\n\t\tversion: SMTP_PLUGIN_VERSION,\n\t\tformat: \"native\",\n\t\tentrypoint: \"emdash-smtp/plugin\",\n\t\toptions,\n\t\tcapabilities: [\"email:provide\", \"network:fetch\"],\n\t\tallowedHosts: collectAllowedHosts(\"trusted\"),\n\t\tstorage: {\n\t\t\tdeliveryLogs: {\n\t\t\t\tindexes: [\"providerId\", \"status\", \"createdAt\", \"source\"],\n\t\t\t},\n\t\t},\n\t\tadminPages: [...SMTP_ADMIN_PAGES],\n\t\tadminWidgets: [...SMTP_ADMIN_WIDGETS],\n\t};\n}\n\nexport default emdashSmtp;\n"],"mappings":";;;AAcA,SAAgB,WAAW,UAA6B,EAAE,EAAuC;AAChG,QAAO;EACN,IAAI;EACJ,SAAS;EACT,QAAQ;EACR,YAAY;EACZ;EACA,cAAc,CAAC,iBAAiB,gBAAgB;EAChD,cAAc,oBAAoB,UAAU;EAC5C,SAAS,EACR,cAAc,EACb,SAAS;GAAC;GAAc;GAAU;GAAa;GAAS,EACxD,EACD;EACD,YAAY,CAAC,GAAG,iBAAiB;EACjC,cAAc,CAAC,GAAG,mBAAmB;EACrC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emdash-smtp",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
4
4
  "description": "Trusted full-parity SMTP and transactional email plugin for EmDash",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
@@ -29,8 +29,8 @@
29
29
  ],
30
30
  "author": "Mason James",
31
31
  "dependencies": {
32
- "emdash-smtp-core": "0.3.2",
33
- "emdash-smtp-node-transports": "0.3.2"
32
+ "emdash-smtp-core": "0.3.4",
33
+ "emdash-smtp-node-transports": "0.3.4"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "emdash": ">=0.1.0"
@@ -39,6 +39,9 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
+ "plugin": {
43
+ "id": "emdash-smtp"
44
+ },
42
45
  "repository": {
43
46
  "type": "git",
44
47
  "url": "git+https://github.com/masonjames/emdash-smtp.git",