mailmeteor 0.0.39 → 0.0.41
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 +9 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +57 -1
- package/dist/index.mjs +9 -0
- 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 +2 -1
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +48 -0
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1742,6 +1742,15 @@ class Integrations extends HeyApiClient {
|
|
|
1742
1742
|
...params
|
|
1743
1743
|
});
|
|
1744
1744
|
}
|
|
1745
|
+
checkAccount(integration_id, account_id, options) {
|
|
1746
|
+
const params = buildClientParams([integration_id, account_id], [{ in: 'path', key: 'integration_id' }, { in: 'path', key: 'account_id' }]);
|
|
1747
|
+
return (options?.client ?? this.client).post({
|
|
1748
|
+
responseStyle: 'data',
|
|
1749
|
+
url: '/integrations/{integration_id}/accounts/{account_id}/check',
|
|
1750
|
+
...options,
|
|
1751
|
+
...params
|
|
1752
|
+
});
|
|
1753
|
+
}
|
|
1745
1754
|
}
|
|
1746
1755
|
class Integrations2 extends HeyApiClient {
|
|
1747
1756
|
constructor(args) {
|