mailmeteor 0.0.14 → 0.0.16

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
@@ -1094,7 +1094,11 @@ class Users2 extends HeyApiClient {
1094
1094
  Users2.__registry = new HeyApiRegistry();
1095
1095
  class OrganizationMembers extends HeyApiClient {
1096
1096
  list(organization_id, parameters, options) {
1097
- const params = buildClientParams([organization_id, parameters], [{ in: 'path', key: 'organization_id' }, { args: [{ in: 'query', key: 'limit' }, { in: 'query', key: 'starting_after' }] }]);
1097
+ const params = buildClientParams([organization_id, parameters], [{ in: 'path', key: 'organization_id' }, { args: [
1098
+ { in: 'query', key: 'limit' },
1099
+ { in: 'query', key: 'starting_after' },
1100
+ { in: 'query', key: 'role' }
1101
+ ] }]);
1098
1102
  return (options?.client ?? this.client).get({
1099
1103
  responseStyle: 'data',
1100
1104
  url: '/organizations/{organization_id}/members',
@@ -1579,6 +1583,13 @@ class Billing extends HeyApiClient {
1579
1583
  ...params
1580
1584
  });
1581
1585
  }
1586
+ limits(options) {
1587
+ return (options?.client ?? this.client).get({
1588
+ responseStyle: 'data',
1589
+ url: '/billing/limits',
1590
+ ...options
1591
+ });
1592
+ }
1582
1593
  }
1583
1594
  class Billing2 extends HeyApiClient {
1584
1595
  constructor(args) {
@@ -1641,6 +1652,7 @@ class Mailmeteor {
1641
1652
  this.billing = new Billing({ client: this.client });
1642
1653
  this.contactLists = new ContactLists({ client: this.client });
1643
1654
  this.organizations = new Organizations({ client: this.client });
1655
+ this.organizationMembers = new OrganizationMembers({ client: this.client });
1644
1656
  this.users = new Users({ client: this.client });
1645
1657
  this.contacts = new Contacts({ client: this.client });
1646
1658
  }