shipmail 0.4.4 → 0.4.5
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -93,6 +93,9 @@ type Audience = {
|
|
|
93
93
|
readonly member_count: number;
|
|
94
94
|
readonly subscribed_count: number;
|
|
95
95
|
readonly consent_source: string | null;
|
|
96
|
+
readonly feed_enabled: boolean;
|
|
97
|
+
/** Atom feed URL, or null when the feed is disabled. Anyone with this URL can read the feed. */
|
|
98
|
+
readonly feed_url: string | null;
|
|
96
99
|
readonly created_at: string;
|
|
97
100
|
readonly updated_at: string;
|
|
98
101
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -93,6 +93,9 @@ type Audience = {
|
|
|
93
93
|
readonly member_count: number;
|
|
94
94
|
readonly subscribed_count: number;
|
|
95
95
|
readonly consent_source: string | null;
|
|
96
|
+
readonly feed_enabled: boolean;
|
|
97
|
+
/** Atom feed URL, or null when the feed is disabled. Anyone with this URL can read the feed. */
|
|
98
|
+
readonly feed_url: string | null;
|
|
96
99
|
readonly created_at: string;
|
|
97
100
|
readonly updated_at: string;
|
|
98
101
|
};
|
package/dist/index.js
CHANGED