mailmeteor 0.0.12 → 0.0.13
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 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1641,6 +1641,7 @@ class Mailmeteor {
|
|
|
1641
1641
|
this.billing = new Billing({ client: this.client });
|
|
1642
1642
|
this.contactLists = new ContactLists({ client: this.client });
|
|
1643
1643
|
this.organizations = new Organizations({ client: this.client });
|
|
1644
|
+
this.organizationMembers = new OrganizationMembers({ client: this.client });
|
|
1644
1645
|
this.users = new Users({ client: this.client });
|
|
1645
1646
|
this.contacts = new Contacts({ client: this.client });
|
|
1646
1647
|
}
|