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/index.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +2 -0
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
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";
|