mailmeteor 0.0.17 → 0.0.19
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 +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +73 -13
- package/dist/index.mjs +10 -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 -2
- package/dist/types/generated-sdk/sdk.gen.d.ts.map +1 -1
- package/dist/types/generated-sdk/types.gen.d.ts +65 -11
- package/dist/types/generated-sdk/types.gen.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1574,13 +1574,22 @@ class BillingAddons2 extends HeyApiClient {
|
|
|
1574
1574
|
}
|
|
1575
1575
|
BillingAddons2.__registry = new HeyApiRegistry7();
|
|
1576
1576
|
class Products extends HeyApiClient {
|
|
1577
|
-
|
|
1577
|
+
list(options) {
|
|
1578
1578
|
return (options?.client ?? this.client).get({
|
|
1579
1579
|
responseStyle: 'data',
|
|
1580
1580
|
url: '/billing/products',
|
|
1581
1581
|
...options
|
|
1582
1582
|
});
|
|
1583
1583
|
}
|
|
1584
|
+
retrieve(product, options) {
|
|
1585
|
+
const params = buildClientParams([product], [{ in: 'path', key: 'product' }]);
|
|
1586
|
+
return (options?.client ?? this.client).get({
|
|
1587
|
+
responseStyle: 'data',
|
|
1588
|
+
url: '/billing/products/{product}',
|
|
1589
|
+
...options,
|
|
1590
|
+
...params
|
|
1591
|
+
});
|
|
1592
|
+
}
|
|
1584
1593
|
update(product, parameters, options) {
|
|
1585
1594
|
const params = buildClientParams([product, parameters], [{ in: 'path', key: 'product' }, { args: [{ in: 'body', key: 'quantity' }] }]);
|
|
1586
1595
|
return (options?.client ?? this.client).patch({
|