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.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
@@ -1500,7 +1500,7 @@ var Webhooks = class extends ApiResource {
1500
1500
  };
1501
1501
 
1502
1502
  // src/version.ts
1503
- var VERSION = "0.4.4";
1503
+ var VERSION = "0.4.5";
1504
1504
 
1505
1505
  // src/client.ts
1506
1506
  var DEFAULT_BASE_URL = "https://shipmail.to/api/v1";