mailmeteor 0.0.22 → 0.0.23

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
@@ -1591,10 +1591,10 @@ class Products extends HeyApiClient {
1591
1591
  });
1592
1592
  }
1593
1593
  update(product, parameters, options) {
1594
- const params = buildClientParams([product, parameters], [{ in: 'path', key: 'product' }, { args: [{ in: 'body', key: 'quantity' }] }]);
1595
- return (options?.client ?? this.client).patch({
1594
+ const params = buildClientParams([product, parameters], [{ in: 'path', key: 'product' }, { args: [{ in: 'body', key: 'quantity' }, { in: 'body', key: 'mode' }] }]);
1595
+ return (options?.client ?? this.client).post({
1596
1596
  responseStyle: 'data',
1597
- url: '/billing/products/{product}',
1597
+ url: '/billing/products/{product}/update',
1598
1598
  ...options,
1599
1599
  ...params,
1600
1600
  headers: {