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 CHANGED
@@ -1574,13 +1574,22 @@ class BillingAddons2 extends HeyApiClient {
1574
1574
  }
1575
1575
  BillingAddons2.__registry = new HeyApiRegistry7();
1576
1576
  class Products extends HeyApiClient {
1577
- retrieve(options) {
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({