@outseta/api-client 0.3.16 → 0.3.18

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.js CHANGED
@@ -1313,7 +1313,7 @@ var AccountWebhookEntityPersonAccountItemPersonOAuthIntegrationStatus = {
1313
1313
  // src/generated/models/accountWebhookEntityPersonAccountItemRole.ts
1314
1314
  var AccountWebhookEntityPersonAccountItemRole = {
1315
1315
  Admin: 1,
1316
- FullAccess: 2,
1316
+ Member: 2,
1317
1317
  Operator: 3
1318
1318
  };
1319
1319
  // src/generated/models/accountWebhookEntityPrimaryContactOAuthIntegrationStatus.ts
@@ -1656,7 +1656,7 @@ var PersonWebhookEntityOAuthIntegrationStatus = {
1656
1656
  // src/generated/models/personWebhookEntityPersonAccountItemRole.ts
1657
1657
  var PersonWebhookEntityPersonAccountItemRole = {
1658
1658
  Admin: 1,
1659
- FullAccess: 2,
1659
+ Member: 2,
1660
1660
  Operator: 3
1661
1661
  };
1662
1662
  // src/generated/models/planWebhookEntityAccountRegistrationMode.ts
@@ -1803,7 +1803,7 @@ var TaskStatus = {
1803
1803
  // src/generated/models/teamRole.ts
1804
1804
  var TeamRole = {
1805
1805
  Admin: 1,
1806
- FullAccess: 2,
1806
+ Member: 2,
1807
1807
  Operator: 3
1808
1808
  };
1809
1809
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outseta/api-client",
3
- "version": "0.3.16",
3
+ "version": "0.3.18",
4
4
  "description": "Generated API client for the Outseta REST API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -631,20 +631,20 @@ omitted it is derived automatically, so callers (including LLM tools) do not nee
631
631
  understand it. Use Message.PreviewText for inbox preview text rather than an in-body
632
632
  preheader.
633
633
 
634
- When Body is a bare content fragment (no Design and no unsubscribe token), it is composed
635
- into the account's API email layout — a branded header and footer that includes the
636
- unsubscribe and manage-subscriptions links — and the composed result is what is sent and
637
- opened in the editor. The layout is editable in the app; TemplateUid selects a specific
638
- layout template when the account has more than one.
634
+ When Body is a content fragment with no Design, it is composed into the account's API
635
+ email layout — a branded header and footer that includes the unsubscribe and
636
+ manage-subscriptions links — and the composed result is what is sent and opened in the
637
+ editor. Do not add your own unsubscribe link in this case; the layout provides one. The
638
+ layout is editable in the app; TemplateUid selects a specific layout template when the
639
+ account has more than one.
639
640
 
640
- The layout is NOT applied when the body already contains an unsubscribe token
641
- ({{ UnsubscribeLink }}, {{ UnsubscribeUrl }} or {{ OneClickUnsubscribeUrl }}), when a
642
- Design is supplied, or when the body is a complex full HTML document (Outlook conditional
643
- comments, stylesheet links) in those cases the body is sent exactly as supplied, and you
644
- must include a visible unsubscribe link in it yourself: add {{ UnsubscribeLink }} (a
645
- ready-made anchor) or {{ UnsubscribeUrl }} (the raw URL) where you want it. Its presence is
646
- not validated. A one-click List-Unsubscribe header is always added, but most anti-spam laws
647
- (e.g. CAN-SPAM) also require a visible unsubscribe link in the body.
641
+ The layout is NOT applied when a Design is supplied or when the body is a complex full
642
+ HTML document (Outlook conditional comments, stylesheet links) in those cases the body
643
+ is sent exactly as supplied, and you must include a visible unsubscribe link in it
644
+ yourself: add {{ UnsubscribeLink }} (a ready-made anchor) or {{ UnsubscribeUrl }} (the raw
645
+ URL) where you want it. Its presence is not validated. A one-click List-Unsubscribe header
646
+ is always added, but most anti-spam laws (e.g. CAN-SPAM) also require a visible
647
+ unsubscribe link in the body.
648
648
  * @summary Create a new broadcast.
649
649
  */
650
650
  export type campaignAddBroadcastEmailResponse200 = {
@@ -19,7 +19,7 @@ export type AccountWebhookEntityPersonAccountItem = {
19
19
  IsPrimary?: boolean;
20
20
  ReceiveInvoices?: boolean;
21
21
  /**
22
- * `1` - Admin, `2` - FullAccess, `3` - Operator
22
+ * `1` - Admin, `2` - Member, `3` - Operator
23
23
  * @nullable
24
24
  */
25
25
  Role?: AccountWebhookEntityPersonAccountItemRole;
@@ -1,7 +1,7 @@
1
1
  // @ts-nocheck
2
2
 
3
3
  /**
4
- * `1` - Admin, `2` - FullAccess, `3` - Operator
4
+ * `1` - Admin, `2` - Member, `3` - Operator
5
5
  * @nullable
6
6
  */
7
7
  export type AccountWebhookEntityPersonAccountItemRole = typeof AccountWebhookEntityPersonAccountItemRole[keyof typeof AccountWebhookEntityPersonAccountItemRole] | null;
@@ -10,6 +10,6 @@ export type AccountWebhookEntityPersonAccountItemRole = typeof AccountWebhookEnt
10
10
  // eslint-disable-next-line @typescript-eslint/no-redeclare
11
11
  export const AccountWebhookEntityPersonAccountItemRole = {
12
12
  Admin: 1,
13
- FullAccess: 2,
13
+ Member: 2,
14
14
  Operator: 3,
15
15
  } as const;
@@ -19,7 +19,7 @@ export type PersonWebhookEntityPersonAccountItem = {
19
19
  IsPrimary?: boolean;
20
20
  ReceiveInvoices?: boolean;
21
21
  /**
22
- * `1` - Admin, `2` - FullAccess, `3` - Operator
22
+ * `1` - Admin, `2` - Member, `3` - Operator
23
23
  * @nullable
24
24
  */
25
25
  Role?: PersonWebhookEntityPersonAccountItemRole;
@@ -1,7 +1,7 @@
1
1
  // @ts-nocheck
2
2
 
3
3
  /**
4
- * `1` - Admin, `2` - FullAccess, `3` - Operator
4
+ * `1` - Admin, `2` - Member, `3` - Operator
5
5
  * @nullable
6
6
  */
7
7
  export type PersonWebhookEntityPersonAccountItemRole = typeof PersonWebhookEntityPersonAccountItemRole[keyof typeof PersonWebhookEntityPersonAccountItemRole] | null;
@@ -10,6 +10,6 @@ export type PersonWebhookEntityPersonAccountItemRole = typeof PersonWebhookEntit
10
10
  // eslint-disable-next-line @typescript-eslint/no-redeclare
11
11
  export const PersonWebhookEntityPersonAccountItemRole = {
12
12
  Admin: 1,
13
- FullAccess: 2,
13
+ Member: 2,
14
14
  Operator: 3,
15
15
  } as const;
@@ -1,7 +1,7 @@
1
1
  // @ts-nocheck
2
2
 
3
3
  /**
4
- * `1` - Admin, `2` - FullAccess, `3` - Operator
4
+ * `1` - Admin, `2` - Member, `3` - Operator
5
5
  */
6
6
  export type TeamRole = typeof TeamRole[keyof typeof TeamRole];
7
7
 
@@ -9,6 +9,6 @@ export type TeamRole = typeof TeamRole[keyof typeof TeamRole];
9
9
  // eslint-disable-next-line @typescript-eslint/no-redeclare
10
10
  export const TeamRole = {
11
11
  Admin: 1,
12
- FullAccess: 2,
12
+ Member: 2,
13
13
  Operator: 3,
14
14
  } as const;