@jsdev_ninja/core 0.11.3 → 0.11.5
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 +3 -1
- 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/Discount.d.ts +18 -0
- package/dist/entities/Discount.d.ts.map +1 -1
- package/dist/entities/Discount.js +1 -0
- package/dist/entities/Order.d.ts +5 -0
- package/dist/entities/Order.d.ts.map +1 -1
- package/dist/entities/Profile.d.ts +3 -0
- package/dist/entities/Profile.d.ts.map +1 -1
- package/dist/entities/Profile.js +1 -0
- package/lib/entities/Discount.ts +1 -0
- package/lib/entities/Profile.ts +1 -0
- package/package.json +1 -1
package/dist/core.es.js
CHANGED
|
@@ -3080,6 +3080,7 @@ const T = o.string().min(1, { message: "שדה חובה" }), br = o.string().reg
|
|
|
3080
3080
|
storeId: T,
|
|
3081
3081
|
tenantId: T,
|
|
3082
3082
|
clientType: o.enum(["user", "company"]),
|
|
3083
|
+
companyName: o.string().optional(),
|
|
3083
3084
|
displayName: T,
|
|
3084
3085
|
email: o.string().email(),
|
|
3085
3086
|
phoneNumber: T.optional(),
|
|
@@ -3180,7 +3181,8 @@ const Ae = o.string().min(1), Ar = o.object({
|
|
|
3180
3181
|
requiredQuantity: o.number().positive(),
|
|
3181
3182
|
discountPrice: o.number().positive()
|
|
3182
3183
|
})
|
|
3183
|
-
])
|
|
3184
|
+
]),
|
|
3185
|
+
image: o.object({ url: o.string().url(), id: o.string() }).optional()
|
|
3184
3186
|
}), ve = {
|
|
3185
3187
|
VAT: 18
|
|
3186
3188
|
};
|