@jsdev_ninja/core 0.13.18 → 0.13.19
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 +5 -3
- 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/DeliveryNote.d.ts +3 -0
- package/dist/entities/DeliveryNote.d.ts.map +1 -1
- package/dist/entities/DeliveryNote.js +1 -0
- package/dist/entities/Invoice.d.ts +3 -0
- package/dist/entities/Invoice.d.ts.map +1 -1
- package/dist/entities/Invoice.js +1 -0
- package/dist/entities/Order.d.ts +15 -5
- package/dist/entities/Order.d.ts.map +1 -1
- package/dist/entities/Profile.d.ts +3 -3
- package/dist/entities/Profile.js +1 -1
- package/lib/entities/DeliveryNote.ts +1 -0
- package/lib/entities/Invoice.ts +1 -0
- package/package.json +1 -1
package/dist/core.es.js
CHANGED
|
@@ -3098,7 +3098,7 @@ const ne = i.object({
|
|
|
3098
3098
|
createdDate: i.number(),
|
|
3099
3099
|
lastActivityDate: i.number(),
|
|
3100
3100
|
paymentType: Ke,
|
|
3101
|
-
organizationId: i.string().optional()
|
|
3101
|
+
organizationId: i.string().optional().nullable()
|
|
3102
3102
|
});
|
|
3103
3103
|
function Fn() {
|
|
3104
3104
|
return {
|
|
@@ -3147,7 +3147,8 @@ const Pe = i.object({
|
|
|
3147
3147
|
success: i.boolean(),
|
|
3148
3148
|
ua_uuid: i.string().uuid("UA UUID must be a valid UUID"),
|
|
3149
3149
|
calculatedData: Pe,
|
|
3150
|
-
warning: i.string().optional()
|
|
3150
|
+
warning: i.string().optional(),
|
|
3151
|
+
date: i.number().optional()
|
|
3151
3152
|
});
|
|
3152
3153
|
function Un(n) {
|
|
3153
3154
|
return et.safeParse(n).success;
|
|
@@ -3174,7 +3175,8 @@ const tt = i.object({
|
|
|
3174
3175
|
success: i.boolean(),
|
|
3175
3176
|
ua_uuid: i.string().uuid("UA UUID must be a valid UUID"),
|
|
3176
3177
|
calculatedData: Pe,
|
|
3177
|
-
warning: i.string().optional()
|
|
3178
|
+
warning: i.string().optional(),
|
|
3179
|
+
date: i.number().optional()
|
|
3178
3180
|
}), Bn = i.object({
|
|
3179
3181
|
type: i.literal("Order"),
|
|
3180
3182
|
id: M,
|