arky-sdk 0.3.111 → 0.3.113

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/types.d.cts CHANGED
@@ -374,6 +374,7 @@ interface OrderCheckoutParams {
374
374
  phone?: string;
375
375
  }
376
376
  interface GetProductsParams {
377
+ ids?: string[];
377
378
  categoryIds?: string[] | null;
378
379
  status?: string;
379
380
  limit?: number;
@@ -542,6 +543,7 @@ interface GetRoleParams {
542
543
  }
543
544
  interface GetRolesParams {
544
545
  action: string;
546
+ ids?: string[];
545
547
  }
546
548
  interface Discount {
547
549
  type: "ITEMS_PERCENTAGE" | "ITEMS_FIXED" | "SHIPPING_PERCENTAGE";
package/dist/types.d.ts CHANGED
@@ -374,6 +374,7 @@ interface OrderCheckoutParams {
374
374
  phone?: string;
375
375
  }
376
376
  interface GetProductsParams {
377
+ ids?: string[];
377
378
  categoryIds?: string[] | null;
378
379
  status?: string;
379
380
  limit?: number;
@@ -542,6 +543,7 @@ interface GetRoleParams {
542
543
  }
543
544
  interface GetRolesParams {
544
545
  action: string;
546
+ ids?: string[];
545
547
  }
546
548
  interface Discount {
547
549
  type: "ITEMS_PERCENTAGE" | "ITEMS_FIXED" | "SHIPPING_PERCENTAGE";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arky-sdk",
3
- "version": "0.3.111",
3
+ "version": "0.3.113",
4
4
  "description": "Official TypeScript SDK for Arky - All-in-one business platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",