@aglyn/shared-ui-email-campaigns 1.0.0-beta.143 → 1.0.0-beta.145

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.
Files changed (2) hide show
  1. package/README.md +10 -3
  2. package/package.json +7 -3
package/README.md CHANGED
@@ -3,6 +3,14 @@
3
3
  The email-campaign document model and the figures that render it, owned by
4
4
  neither of the two plugins that read it.
5
5
 
6
+ > Beta. Published from the Aglyn monorepo under the `beta` dist-tag; APIs can change between beta releases.
7
+
8
+ ## Install
9
+
10
+ ```bash
11
+ npm install @aglyn/shared-ui-email-campaigns@beta
12
+ ```
13
+
6
14
  ## Why it is not in a plugin
7
15
 
8
16
  An email campaign is written by one plugin and reported by another. The
@@ -67,7 +75,6 @@ Sending. The send loop, the composer, the topic subscriptions and the
67
75
  send-time API all stay in `@aglyn/plugins-email`: they are behavior that the
68
76
  Email plugin's switch is supposed to govern, not shapes that two plugins share.
69
77
 
70
- ## Running unit tests
78
+ ## License
71
79
 
72
- Run `nx test shared-ui-email-campaigns` to execute the unit tests via
73
- [Jest](https://jestjs.io).
80
+ Apache-2.0. Source: https://github.com/aglyn/aglyn/tree/main/libs/shared/ui/email-campaigns
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aglyn/shared-ui-email-campaigns",
3
- "version": "1.0.0-beta.143",
3
+ "version": "1.0.0-beta.145",
4
4
  "license": "Apache-2.0",
5
5
  "homepage": "https://aglyn.com",
6
6
  "repository": {
@@ -18,6 +18,10 @@
18
18
  "types": "./src/index.d.ts",
19
19
  "default": "./src/index.js"
20
20
  },
21
+ "./model": {
22
+ "types": "./src/lib/model/index.d.ts",
23
+ "default": "./src/lib/model/index.js"
24
+ },
21
25
  "./*": {
22
26
  "types": "./src/lib/*.d.ts",
23
27
  "default": "./src/lib/*.js"
@@ -25,8 +29,8 @@
25
29
  "./package.json": "./package.json"
26
30
  },
27
31
  "dependencies": {
28
- "@aglyn/shared-ui-jsx": "1.0.0-beta.143",
29
- "@aglyn/shared-util-email": "1.0.0-beta.143",
32
+ "@aglyn/shared-ui-jsx": "1.0.0-beta.145",
33
+ "@aglyn/shared-util-email": "1.0.0-beta.145",
30
34
  "@swc/helpers": "0.5.23"
31
35
  },
32
36
  "peerDependencies": {