@miso.ai/server-shopify 0.6.6-beta.16 → 0.6.6-beta.18

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.
@@ -1,3 +1,4 @@
1
+ import { pipeline } from 'stream/promises';
1
2
  import { stream } from '@miso.ai/server-commons';
2
3
  import { ShopifyStoreAdminClient } from '../../src/index.js';
3
4
 
@@ -42,7 +43,7 @@ async function runCount(options) {
42
43
 
43
44
  async function runList(options) {
44
45
  const client = new ShopifyStoreAdminClient(options);
45
- await stream.pipeline(
46
+ await pipeline(
46
47
  client.products.stream(options),
47
48
  new stream.OutputStream({
48
49
  objectMode: true,
package/package.json CHANGED
@@ -16,9 +16,9 @@
16
16
  "simonpai <simon.pai@askmiso.com>"
17
17
  ],
18
18
  "dependencies": {
19
- "@miso.ai/server-commons": "0.6.6-beta.16",
19
+ "@miso.ai/server-commons": "0.6.6-beta.18",
20
20
  "axios": "^1.6.2",
21
21
  "axios-retry": "^3.3.1"
22
22
  },
23
- "version": "0.6.6-beta.16"
23
+ "version": "0.6.6-beta.18"
24
24
  }
package/src/version.js CHANGED
@@ -1 +1 @@
1
- export default '0.6.6-beta.16';
1
+ export default '0.6.6-beta.18';