@jsdev_ninja/core 0.13.29 → 0.13.31
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 +69 -70
- 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/lib/entities/Order.d.ts +51 -11
- package/dist/lib/entities/Order.d.ts.map +1 -1
- package/dist/lib/entities/Order.js +2 -1
- package/dist/lib/entities/Organization.d.ts +6 -6
- package/dist/lib/entities/Payment/index.d.ts +1 -1
- package/dist/lib/entities/Payment/index.d.ts.map +1 -1
- package/dist/lib/entities/Payment/index.js +1 -1
- package/dist/lib/entities/Profile.d.ts +3 -3
- package/dist/lib/entities/Store.d.ts +3 -3
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
7
7
|
storeId: z.ZodString;
|
|
8
8
|
userId: z.ZodString;
|
|
9
9
|
status: z.ZodEnum<["draft", "pending", "processing", "in_delivery", "delivered", "cancelled", "completed", "refunded"]>;
|
|
10
|
-
paymentType: z.ZodOptional<z.ZodEnum<["external", "j5"]>>;
|
|
10
|
+
paymentType: z.ZodOptional<z.ZodEnum<["external", "j5", "none"]>>;
|
|
11
11
|
paymentStatus: z.ZodEnum<["pending", "pending_j5", "external", "completed", "failed", "refunded"]>;
|
|
12
12
|
cart: z.ZodObject<{
|
|
13
13
|
id: z.ZodString;
|
|
@@ -760,7 +760,6 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
760
760
|
freeDeliveryPrice?: number | undefined;
|
|
761
761
|
isVatIncludedInPrice?: boolean | undefined;
|
|
762
762
|
}>>;
|
|
763
|
-
orderDeliveryPrice: z.ZodOptional<z.ZodNumber>;
|
|
764
763
|
originalAmount: z.ZodOptional<z.ZodNumber>;
|
|
765
764
|
actualAmount: z.ZodOptional<z.ZodNumber>;
|
|
766
765
|
date: z.ZodNumber;
|
|
@@ -804,7 +803,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
804
803
|
isAnonymous: z.ZodBoolean;
|
|
805
804
|
createdDate: z.ZodNumber;
|
|
806
805
|
lastActivityDate: z.ZodNumber;
|
|
807
|
-
paymentType: z.ZodEnum<["external", "j5"]>;
|
|
806
|
+
paymentType: z.ZodEnum<["external", "j5", "none"]>;
|
|
808
807
|
organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
809
808
|
}, "strip", z.ZodTypeAny, {
|
|
810
809
|
type: "Profile";
|
|
@@ -818,7 +817,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
818
817
|
isAnonymous: boolean;
|
|
819
818
|
createdDate: number;
|
|
820
819
|
lastActivityDate: number;
|
|
821
|
-
paymentType: "external" | "j5";
|
|
820
|
+
paymentType: "none" | "external" | "j5";
|
|
822
821
|
companyName?: string | undefined;
|
|
823
822
|
phoneNumber?: string | undefined;
|
|
824
823
|
address?: {
|
|
@@ -843,7 +842,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
843
842
|
isAnonymous: boolean;
|
|
844
843
|
createdDate: number;
|
|
845
844
|
lastActivityDate: number;
|
|
846
|
-
paymentType: "external" | "j5";
|
|
845
|
+
paymentType: "none" | "external" | "j5";
|
|
847
846
|
companyName?: string | undefined;
|
|
848
847
|
phoneNumber?: string | undefined;
|
|
849
848
|
address?: {
|
|
@@ -857,6 +856,31 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
857
856
|
} | undefined;
|
|
858
857
|
organizationId?: string | null | undefined;
|
|
859
858
|
}>>;
|
|
859
|
+
address: z.ZodOptional<z.ZodObject<{
|
|
860
|
+
country: z.ZodOptional<z.ZodString>;
|
|
861
|
+
city: z.ZodOptional<z.ZodString>;
|
|
862
|
+
street: z.ZodOptional<z.ZodString>;
|
|
863
|
+
streetNumber: z.ZodOptional<z.ZodString>;
|
|
864
|
+
floor: z.ZodOptional<z.ZodString>;
|
|
865
|
+
apartmentEnterNumber: z.ZodOptional<z.ZodString>;
|
|
866
|
+
apartmentNumber: z.ZodOptional<z.ZodString>;
|
|
867
|
+
}, "strip", z.ZodTypeAny, {
|
|
868
|
+
country?: string | undefined;
|
|
869
|
+
city?: string | undefined;
|
|
870
|
+
street?: string | undefined;
|
|
871
|
+
streetNumber?: string | undefined;
|
|
872
|
+
floor?: string | undefined;
|
|
873
|
+
apartmentEnterNumber?: string | undefined;
|
|
874
|
+
apartmentNumber?: string | undefined;
|
|
875
|
+
}, {
|
|
876
|
+
country?: string | undefined;
|
|
877
|
+
city?: string | undefined;
|
|
878
|
+
street?: string | undefined;
|
|
879
|
+
streetNumber?: string | undefined;
|
|
880
|
+
floor?: string | undefined;
|
|
881
|
+
apartmentEnterNumber?: string | undefined;
|
|
882
|
+
apartmentNumber?: string | undefined;
|
|
883
|
+
}>>;
|
|
860
884
|
nameOnInvoice: z.ZodOptional<z.ZodString>;
|
|
861
885
|
clientComment: z.ZodOptional<z.ZodString>;
|
|
862
886
|
organizationId: z.ZodOptional<z.ZodString>;
|
|
@@ -1395,7 +1419,16 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1395
1419
|
deliveryPrice?: number | undefined;
|
|
1396
1420
|
};
|
|
1397
1421
|
deliveryDate: number;
|
|
1398
|
-
|
|
1422
|
+
address?: {
|
|
1423
|
+
country?: string | undefined;
|
|
1424
|
+
city?: string | undefined;
|
|
1425
|
+
street?: string | undefined;
|
|
1426
|
+
streetNumber?: string | undefined;
|
|
1427
|
+
floor?: string | undefined;
|
|
1428
|
+
apartmentEnterNumber?: string | undefined;
|
|
1429
|
+
apartmentNumber?: string | undefined;
|
|
1430
|
+
} | undefined;
|
|
1431
|
+
paymentType?: "none" | "external" | "j5" | undefined;
|
|
1399
1432
|
organizationId?: string | undefined;
|
|
1400
1433
|
nameOnInvoice?: string | undefined;
|
|
1401
1434
|
createdBy?: "user" | "admin" | undefined;
|
|
@@ -1404,7 +1437,6 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1404
1437
|
freeDeliveryPrice?: number | undefined;
|
|
1405
1438
|
isVatIncludedInPrice?: boolean | undefined;
|
|
1406
1439
|
} | undefined;
|
|
1407
|
-
orderDeliveryPrice?: number | undefined;
|
|
1408
1440
|
originalAmount?: number | undefined;
|
|
1409
1441
|
actualAmount?: number | undefined;
|
|
1410
1442
|
client?: {
|
|
@@ -1419,7 +1451,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1419
1451
|
isAnonymous: boolean;
|
|
1420
1452
|
createdDate: number;
|
|
1421
1453
|
lastActivityDate: number;
|
|
1422
|
-
paymentType: "external" | "j5";
|
|
1454
|
+
paymentType: "none" | "external" | "j5";
|
|
1423
1455
|
companyName?: string | undefined;
|
|
1424
1456
|
phoneNumber?: string | undefined;
|
|
1425
1457
|
address?: {
|
|
@@ -1653,7 +1685,16 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1653
1685
|
deliveryPrice?: number | undefined;
|
|
1654
1686
|
};
|
|
1655
1687
|
deliveryDate: number;
|
|
1656
|
-
|
|
1688
|
+
address?: {
|
|
1689
|
+
country?: string | undefined;
|
|
1690
|
+
city?: string | undefined;
|
|
1691
|
+
street?: string | undefined;
|
|
1692
|
+
streetNumber?: string | undefined;
|
|
1693
|
+
floor?: string | undefined;
|
|
1694
|
+
apartmentEnterNumber?: string | undefined;
|
|
1695
|
+
apartmentNumber?: string | undefined;
|
|
1696
|
+
} | undefined;
|
|
1697
|
+
paymentType?: "none" | "external" | "j5" | undefined;
|
|
1657
1698
|
organizationId?: string | undefined;
|
|
1658
1699
|
nameOnInvoice?: string | undefined;
|
|
1659
1700
|
createdBy?: "user" | "admin" | undefined;
|
|
@@ -1662,7 +1703,6 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1662
1703
|
freeDeliveryPrice?: number | undefined;
|
|
1663
1704
|
isVatIncludedInPrice?: boolean | undefined;
|
|
1664
1705
|
} | undefined;
|
|
1665
|
-
orderDeliveryPrice?: number | undefined;
|
|
1666
1706
|
originalAmount?: number | undefined;
|
|
1667
1707
|
actualAmount?: number | undefined;
|
|
1668
1708
|
client?: {
|
|
@@ -1677,7 +1717,7 @@ export declare const OrderSchema: z.ZodObject<{
|
|
|
1677
1717
|
isAnonymous: boolean;
|
|
1678
1718
|
createdDate: number;
|
|
1679
1719
|
lastActivityDate: number;
|
|
1680
|
-
paymentType: "external" | "j5";
|
|
1720
|
+
paymentType: "none" | "external" | "j5";
|
|
1681
1721
|
companyName?: string | undefined;
|
|
1682
1722
|
phoneNumber?: string | undefined;
|
|
1683
1723
|
address?: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["../../../lib/entities/Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"Order.d.ts","sourceRoot":"","sources":["../../../lib/entities/Order.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAkBxB,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgDtB,CAAC;AAEH,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC"}
|
|
@@ -6,6 +6,7 @@ import { DeliveryNoteSchema, EzDeliveryNoteSchema } from "./DeliveryNote";
|
|
|
6
6
|
import { BillingAccountSchema } from "./Organization";
|
|
7
7
|
import { EzInvoiceSchema, InvoiceSchema } from "./Invoice";
|
|
8
8
|
import { PaymentTypeSchema } from "./Payment";
|
|
9
|
+
import { AddressSchema } from "./Address";
|
|
9
10
|
// pending - order created / by user
|
|
10
11
|
// processing order accepted by store by admin
|
|
11
12
|
// delivered - order delivered by admin
|
|
@@ -46,12 +47,12 @@ export const OrderSchema = z.object({
|
|
|
46
47
|
isVatIncludedInPrice: z.boolean().optional(),
|
|
47
48
|
})
|
|
48
49
|
.optional(),
|
|
49
|
-
orderDeliveryPrice: z.number().optional(), // delivery price for order
|
|
50
50
|
originalAmount: z.number().positive().optional(), // what client pay
|
|
51
51
|
actualAmount: z.number().positive().optional(), // what store charge
|
|
52
52
|
date: z.number(),
|
|
53
53
|
deliveryDate: z.coerce.number(),
|
|
54
54
|
client: ProfileSchema.optional(),
|
|
55
|
+
address: AddressSchema.optional(),
|
|
55
56
|
nameOnInvoice: z.string().optional(),
|
|
56
57
|
clientComment: z.string().optional(),
|
|
57
58
|
organizationId: z.string().optional(),
|
|
@@ -30,11 +30,11 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
30
30
|
id: string;
|
|
31
31
|
name: string;
|
|
32
32
|
}>, "many">;
|
|
33
|
-
paymentType: z.ZodEnum<["external", "j5"]>;
|
|
33
|
+
paymentType: z.ZodEnum<["external", "j5", "none"]>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
35
35
|
id: string;
|
|
36
36
|
name: string;
|
|
37
|
-
paymentType: "external" | "j5";
|
|
37
|
+
paymentType: "none" | "external" | "j5";
|
|
38
38
|
billingAccounts: {
|
|
39
39
|
number: string;
|
|
40
40
|
id: string;
|
|
@@ -45,7 +45,7 @@ export declare const OrganizationSchema: z.ZodObject<{
|
|
|
45
45
|
}, {
|
|
46
46
|
id: string;
|
|
47
47
|
name: string;
|
|
48
|
-
paymentType: "external" | "j5";
|
|
48
|
+
paymentType: "none" | "external" | "j5";
|
|
49
49
|
billingAccounts: {
|
|
50
50
|
number: string;
|
|
51
51
|
id: string;
|
|
@@ -72,10 +72,10 @@ export declare const NewOrganizationSchema: z.ZodObject<Omit<{
|
|
|
72
72
|
id: string;
|
|
73
73
|
name: string;
|
|
74
74
|
}>, "many">;
|
|
75
|
-
paymentType: z.ZodEnum<["external", "j5"]>;
|
|
75
|
+
paymentType: z.ZodEnum<["external", "j5", "none"]>;
|
|
76
76
|
}, "id">, "strip", z.ZodTypeAny, {
|
|
77
77
|
name: string;
|
|
78
|
-
paymentType: "external" | "j5";
|
|
78
|
+
paymentType: "none" | "external" | "j5";
|
|
79
79
|
billingAccounts: {
|
|
80
80
|
number: string;
|
|
81
81
|
id: string;
|
|
@@ -85,7 +85,7 @@ export declare const NewOrganizationSchema: z.ZodObject<Omit<{
|
|
|
85
85
|
nameOnInvoice?: string | undefined;
|
|
86
86
|
}, {
|
|
87
87
|
name: string;
|
|
88
|
-
paymentType: "external" | "j5";
|
|
88
|
+
paymentType: "none" | "external" | "j5";
|
|
89
89
|
billingAccounts: {
|
|
90
90
|
number: string;
|
|
91
91
|
id: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const PaymentTypeSchema: z.ZodEnum<["external", "j5"]>;
|
|
2
|
+
export declare const PaymentTypeSchema: z.ZodEnum<["external", "j5", "none"]>;
|
|
3
3
|
export type TPaymentType = z.infer<typeof PaymentTypeSchema>;
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/entities/Payment/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../lib/entities/Payment/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,eAAO,MAAM,iBAAiB,uCAAqC,CAAC;AAEpE,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
// payment type priority -> store -> organization -> profile (profile is stronger)
|
|
3
3
|
// value fixed on order creation, can be changed later by admin
|
|
4
|
-
export const PaymentTypeSchema = z.enum(["external", "j5"]);
|
|
4
|
+
export const PaymentTypeSchema = z.enum(["external", "j5", "none"]);
|
|
@@ -38,7 +38,7 @@ export declare const ProfileSchema: z.ZodObject<{
|
|
|
38
38
|
isAnonymous: z.ZodBoolean;
|
|
39
39
|
createdDate: z.ZodNumber;
|
|
40
40
|
lastActivityDate: z.ZodNumber;
|
|
41
|
-
paymentType: z.ZodEnum<["external", "j5"]>;
|
|
41
|
+
paymentType: z.ZodEnum<["external", "j5", "none"]>;
|
|
42
42
|
organizationId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
type: "Profile";
|
|
@@ -52,7 +52,7 @@ export declare const ProfileSchema: z.ZodObject<{
|
|
|
52
52
|
isAnonymous: boolean;
|
|
53
53
|
createdDate: number;
|
|
54
54
|
lastActivityDate: number;
|
|
55
|
-
paymentType: "external" | "j5";
|
|
55
|
+
paymentType: "none" | "external" | "j5";
|
|
56
56
|
companyName?: string | undefined;
|
|
57
57
|
phoneNumber?: string | undefined;
|
|
58
58
|
address?: {
|
|
@@ -77,7 +77,7 @@ export declare const ProfileSchema: z.ZodObject<{
|
|
|
77
77
|
isAnonymous: boolean;
|
|
78
78
|
createdDate: number;
|
|
79
79
|
lastActivityDate: number;
|
|
80
|
-
paymentType: "external" | "j5";
|
|
80
|
+
paymentType: "none" | "external" | "j5";
|
|
81
81
|
companyName?: string | undefined;
|
|
82
82
|
phoneNumber?: string | undefined;
|
|
83
83
|
address?: {
|
|
@@ -7,7 +7,7 @@ export declare const StoreSchema: z.ZodObject<{
|
|
|
7
7
|
urls: z.ZodArray<z.ZodString, "many">;
|
|
8
8
|
logoUrl: z.ZodString;
|
|
9
9
|
tenantId: z.ZodString;
|
|
10
|
-
paymentType: z.ZodEnum<["external", "j5"]>;
|
|
10
|
+
paymentType: z.ZodEnum<["external", "j5", "none"]>;
|
|
11
11
|
allowAnonymousClients: z.ZodBoolean;
|
|
12
12
|
isVatIncludedInPrice: z.ZodBoolean;
|
|
13
13
|
clientTypes: z.ZodArray<z.ZodEnum<["individual", "company"]>, "many">;
|
|
@@ -45,7 +45,7 @@ export declare const StoreSchema: z.ZodObject<{
|
|
|
45
45
|
companyId: string;
|
|
46
46
|
name: string;
|
|
47
47
|
tenantId: string;
|
|
48
|
-
paymentType: "external" | "j5";
|
|
48
|
+
paymentType: "none" | "external" | "j5";
|
|
49
49
|
isVatIncludedInPrice: boolean;
|
|
50
50
|
urls: string[];
|
|
51
51
|
logoUrl: string;
|
|
@@ -69,7 +69,7 @@ export declare const StoreSchema: z.ZodObject<{
|
|
|
69
69
|
companyId: string;
|
|
70
70
|
name: string;
|
|
71
71
|
tenantId: string;
|
|
72
|
-
paymentType: "external" | "j5";
|
|
72
|
+
paymentType: "none" | "external" | "j5";
|
|
73
73
|
isVatIncludedInPrice: boolean;
|
|
74
74
|
urls: string[];
|
|
75
75
|
logoUrl: string;
|