@jsdev_ninja/core 0.10.7 → 0.10.9
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/core.cjs.js +1 -1
- package/dist/core.cjs.js.map +1 -1
- package/dist/core.es.js +2 -2
- package/dist/core.es.js.map +1 -1
- package/dist/core.umd.js +1 -1
- package/dist/core.umd.js.map +1 -1
- package/dist/entities/Cart.d.ts +16 -16
- package/dist/entities/Category.d.ts +6 -6
- package/dist/entities/Category.js +1 -1
- package/dist/entities/Order.d.ts +23 -23
- package/dist/entities/Order.js +1 -1
- package/dist/entities/Product.d.ts +16 -16
- package/lib/entities/Category.ts +1 -1
- package/lib/entities/Order.ts +1 -1
- package/package.json +1 -1
package/dist/core.es.js
CHANGED
|
@@ -2983,7 +2983,7 @@ const k = i.string().min(1, { message: "שדה חובה" }), or = i.string().reg
|
|
|
2983
2983
|
companyId: i.string().min(1),
|
|
2984
2984
|
storeId: i.string().min(1),
|
|
2985
2985
|
parentId: i.string().nullish(),
|
|
2986
|
-
tag: i.string().
|
|
2986
|
+
tag: i.string().optional(),
|
|
2987
2987
|
locales: i.array(J),
|
|
2988
2988
|
depth: i.number()
|
|
2989
2989
|
}), Oe = qe.extend({
|
|
@@ -3130,7 +3130,7 @@ const pr = i.object({
|
|
|
3130
3130
|
"in_delivery",
|
|
3131
3131
|
//
|
|
3132
3132
|
"delivered",
|
|
3133
|
-
"
|
|
3133
|
+
"cancelled",
|
|
3134
3134
|
"completed",
|
|
3135
3135
|
"refunded"
|
|
3136
3136
|
]),
|