mailmeteor 0.0.15 → 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 +12 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +86 -1
- package/dist/index.mjs +12 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/generated-sdk/index.d.ts +1 -1
- package/dist/types/generated-sdk/index.d.ts.map +1 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts +3 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +77 -0
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
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: [
|
|
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) {
|