repzo 1.0.260 → 1.0.262
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/lib/types/index.d.ts +3 -6
- package/package.json +1 -1
- package/src/types/index.ts +3 -3
package/lib/types/index.d.ts
CHANGED
|
@@ -3917,12 +3917,9 @@ export declare namespace Service {
|
|
|
3917
3917
|
filter_type: "product" | "category" | "sub_category" | "product_group" | "brand" | "variant" | "cart_total" | "items_count" | "client" | "tag" | "channel" | "distinct_variants_count" | "distinct_products_count" | "promotion" | "cart_type" | "invoice_payment_type" | "creator_id";
|
|
3918
3918
|
value: string[];
|
|
3919
3919
|
operator: "lte" | "lt" | "gte" | "gt" | "eq";
|
|
3920
|
-
reject_if_pass:
|
|
3921
|
-
|
|
3922
|
-
|
|
3923
|
-
};
|
|
3924
|
-
limit_type: "count" | "price_amount";
|
|
3925
|
-
limit_value: number;
|
|
3920
|
+
reject_if_pass: boolean;
|
|
3921
|
+
limit_type?: "count" | "price_amount";
|
|
3922
|
+
limit_value?: number;
|
|
3926
3923
|
exclude_additional_items_taxable_subtotal?: boolean;
|
|
3927
3924
|
variants?: StringId[];
|
|
3928
3925
|
}
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -4467,9 +4467,9 @@ export namespace Service {
|
|
|
4467
4467
|
| "creator_id";
|
|
4468
4468
|
value: string[];
|
|
4469
4469
|
operator: "lte" | "lt" | "gte" | "gt" | "eq";
|
|
4470
|
-
reject_if_pass:
|
|
4471
|
-
limit_type
|
|
4472
|
-
limit_value
|
|
4470
|
+
reject_if_pass: boolean;
|
|
4471
|
+
limit_type?: "count" | "price_amount";
|
|
4472
|
+
limit_value?: number;
|
|
4473
4473
|
exclude_additional_items_taxable_subtotal?: boolean;
|
|
4474
4474
|
variants?: StringId[];
|
|
4475
4475
|
}
|