mailmeteor 0.0.28 → 0.0.29

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 CHANGED
@@ -1637,6 +1637,15 @@ class Integrations extends HeyApiClient {
1637
1637
  ...params
1638
1638
  });
1639
1639
  }
1640
+ deleteAccount(integration_id, account, options) {
1641
+ const params = buildClientParams([integration_id, account], [{ in: 'path', key: 'integration_id' }, { in: 'path', key: 'account' }]);
1642
+ return (options?.client ?? this.client).delete({
1643
+ responseStyle: 'data',
1644
+ url: '/integrations/{integration_id}/accounts/{account}',
1645
+ ...options,
1646
+ ...params
1647
+ });
1648
+ }
1640
1649
  }
1641
1650
  class Integrations2 extends HeyApiClient {
1642
1651
  constructor(args) {