We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ece5b84 commit a7108a6Copy full SHA for a7108a6
README.md
@@ -532,7 +532,7 @@ This feature is only available on version 2.24.0 and above.
532
- `list(productId[, params])`
533
- `update(productId, id, params)`
534
- productListing
535
- - `count([params])`
+ - `count()`
536
- `create(productId[, params])`
537
- `delete(productId)`
538
- `get(productId)`
index.d.ts
@@ -545,7 +545,7 @@ declare class Shopify {
545
) => Promise<Shopify.IProductImage>;
546
};
547
productListing: {
548
- count: (params?: any) => Promise<number>;
+ count: () => Promise<number>;
549
create: (
550
productId: number,
551
params: any
0 commit comments