@rebuy/rebuy 2.2.0-rc.7 → 2.2.0-rc.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/index.js +6 -6
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +2 -2
- package/dist/schema/button.d.ts +8 -8
- package/dist/schema/button.d.ts.map +1 -1
- package/dist/schema/constants.d.ts.map +1 -1
- package/dist/schema/data-source.d.ts.map +1 -1
- package/dist/schema/image.d.ts +2 -2
- package/dist/schema/image.d.ts.map +1 -1
- package/dist/schema/layout.d.ts +2 -2
- package/dist/schema/layout.d.ts.map +1 -1
- package/dist/schema/offers.d.ts +14 -14
- package/dist/schema/offers.d.ts.map +1 -1
- package/dist/schema/product.d.ts +6 -6
- package/dist/schema/product.d.ts.map +1 -1
- package/dist/schema/products.d.ts +8 -8
- package/dist/schema/products.d.ts.map +1 -1
- package/dist/schema/quantity.d.ts.map +1 -1
- package/dist/schema/reviews.d.ts.map +1 -1
- package/dist/schema/root.d.ts +2 -2
- package/dist/schema/root.d.ts.map +1 -1
- package/dist/schema/shared.d.ts.map +1 -1
- package/dist/schema/subscription.d.ts.map +1 -1
- package/dist/schema/table.d.ts.map +1 -1
- package/dist/schema/text.d.ts.map +1 -1
- package/dist/schema/utils.d.ts.map +1 -1
- package/dist/schema/variants.d.ts.map +1 -1
- package/package.json +3 -5
package/dist/schema/button.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
import { type SectionDetails } from './shared';
|
|
3
|
-
export declare const CABButtonContent: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3
|
+
export declare const CABButtonContent: z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4
4
|
altText: z.ZodDefault<z.ZodString>;
|
|
5
5
|
aspectRatio: z.ZodDefault<z.ZodNullable<z.ZodLiteral<1>>>;
|
|
6
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
6
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
7
7
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
8
8
|
small: "small";
|
|
9
9
|
none: "none";
|
|
@@ -22,7 +22,7 @@ export declare const CABButtonContent: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
22
22
|
medium: "medium";
|
|
23
23
|
thick: "thick";
|
|
24
24
|
}>>;
|
|
25
|
-
}, z.core.$strip
|
|
25
|
+
}, z.core.$strip>>>;
|
|
26
26
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
27
27
|
declineAllOffers: "declineAllOffers";
|
|
28
28
|
declineOffer: "declineOffer";
|
|
@@ -119,7 +119,7 @@ export declare const CABButtonContent: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
119
119
|
name: z.ZodOptional<z.ZodString>;
|
|
120
120
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
121
121
|
sectionType: z.ZodDefault<z.ZodLiteral<"text">>;
|
|
122
|
-
}, z.core.$strip>]
|
|
122
|
+
}, z.core.$strip>]>>;
|
|
123
123
|
export type CABButtonContent = z.infer<typeof CABButtonContent>;
|
|
124
124
|
export declare const CABButtonSection: z.ZodObject<{
|
|
125
125
|
action: z.ZodDefault<z.ZodUnion<readonly [z.ZodLiteral<"">, z.ZodEnum<{
|
|
@@ -146,10 +146,10 @@ export declare const CABButtonSection: z.ZodObject<{
|
|
|
146
146
|
}, z.core.$strip>>;
|
|
147
147
|
name: z.ZodOptional<z.ZodString>;
|
|
148
148
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
149
|
-
sections: z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
149
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodLazy<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
150
150
|
altText: z.ZodDefault<z.ZodString>;
|
|
151
151
|
aspectRatio: z.ZodDefault<z.ZodNullable<z.ZodLiteral<1>>>;
|
|
152
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
152
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
153
153
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
154
154
|
small: "small";
|
|
155
155
|
none: "none";
|
|
@@ -168,7 +168,7 @@ export declare const CABButtonSection: z.ZodObject<{
|
|
|
168
168
|
medium: "medium";
|
|
169
169
|
thick: "thick";
|
|
170
170
|
}>>;
|
|
171
|
-
}, z.core.$strip
|
|
171
|
+
}, z.core.$strip>>>;
|
|
172
172
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
173
173
|
declineAllOffers: "declineAllOffers";
|
|
174
174
|
declineOffer: "declineOffer";
|
|
@@ -265,7 +265,7 @@ export declare const CABButtonSection: z.ZodObject<{
|
|
|
265
265
|
name: z.ZodOptional<z.ZodString>;
|
|
266
266
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
267
267
|
sectionType: z.ZodDefault<z.ZodLiteral<"text">>;
|
|
268
|
-
}, z.core.$strip>]
|
|
268
|
+
}, z.core.$strip>]>>>>;
|
|
269
269
|
sectionType: z.ZodDefault<z.ZodLiteral<"button">>;
|
|
270
270
|
}, z.core.$strip>;
|
|
271
271
|
export type CABButtonSection = z.infer<typeof CABButtonSection>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../src/schema/button.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../src/schema/button.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAK3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAG/C,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAAuF,CAAC;AAErH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAkB3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/schema/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/schema/constants.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAK3B,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;EAQpB,CAAC;AAEX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUnB,CAAC;AAEX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA+D,CAAC;AAE/F,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0Bd,CAAC;AAEX,eAAO,MAAM,WAAW,yfAuBd,CAAC;AAEX,QAAA,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;EAAsB,CAAC;AAEvC,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;CAAkB,CAAC;AAC1C,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"data-source.d.ts","sourceRoot":"","sources":["../../src/schema/data-source.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"data-source.d.ts","sourceRoot":"","sources":["../../src/schema/data-source.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,oBAAoB;;;;;;;iBAO/B,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,MAAM,MAAM,yBAAyB,GAAG,oBAAoB,GAAG,cAAc,CAAC"}
|
package/dist/schema/image.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { type SectionDetails } from './shared';
|
|
|
3
3
|
export declare const CABImageSection: z.ZodObject<{
|
|
4
4
|
altText: z.ZodDefault<z.ZodString>;
|
|
5
5
|
aspectRatio: z.ZodDefault<z.ZodNullable<z.ZodLiteral<1>>>;
|
|
6
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
6
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
7
7
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
8
8
|
small: "small";
|
|
9
9
|
none: "none";
|
|
@@ -22,7 +22,7 @@ export declare const CABImageSection: z.ZodObject<{
|
|
|
22
22
|
medium: "medium";
|
|
23
23
|
thick: "thick";
|
|
24
24
|
}>>;
|
|
25
|
-
}, z.core.$strip
|
|
25
|
+
}, z.core.$strip>>>;
|
|
26
26
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
27
27
|
declineAllOffers: "declineAllOffers";
|
|
28
28
|
declineOffer: "declineOffer";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../src/schema/image.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"image.d.ts","sourceRoot":"","sources":["../../src/schema/image.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,OAAO,EAAa,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAG1D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAc1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,MAAM,MAAM,oBAAoB,GAAG,eAAe,GAAG,cAAc,CAAC"}
|
package/dist/schema/layout.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ export declare const CABLayoutSection: z.ZodObject<{
|
|
|
14
14
|
bottom: "bottom";
|
|
15
15
|
}>>;
|
|
16
16
|
}, z.core.$strip>>;
|
|
17
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
17
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
18
18
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
19
19
|
small: "small";
|
|
20
20
|
none: "none";
|
|
@@ -33,7 +33,7 @@ export declare const CABLayoutSection: z.ZodObject<{
|
|
|
33
33
|
medium: "medium";
|
|
34
34
|
thick: "thick";
|
|
35
35
|
}>>;
|
|
36
|
-
}, z.core.$strip
|
|
36
|
+
}, z.core.$strip>>>;
|
|
37
37
|
direction: z.ZodDefault<z.ZodEnum<{
|
|
38
38
|
columns: "columns";
|
|
39
39
|
rows: "rows";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"layout.d.ts","sourceRoot":"","sources":["../../src/schema/layout.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"layout.d.ts","sourceRoot":"","sources":["../../src/schema/layout.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,OAAO,EACH,SAAS,EAET,mBAAmB,EAGnB,OAAO,EAEP,iBAAiB,EAEpB,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,SAAS,EAAE,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAEtE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAmB3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG;IAC3B,SAAS,EAAE;QACP,UAAU,EAAE,mBAAmB,CAAC;QAChC,QAAQ,EAAE,iBAAiB,CAAC;KAC/B,CAAC;IACF,MAAM,EAAE,SAAS,CAAC;IAClB,SAAS,EAAE,SAAS,CAAC;IACrB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,WAAW,EAAE,QAAQ,CAAC;IACtB,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,GAAG,cAAc,CAAC"}
|
package/dist/schema/offers.d.ts
CHANGED
|
@@ -2,7 +2,19 @@ import { z } from 'zod/v4';
|
|
|
2
2
|
import { CABLayoutSection } from './layout';
|
|
3
3
|
import { CABSection, type SectionDetails } from './shared';
|
|
4
4
|
export declare const CABOffersSection: z.ZodObject<{
|
|
5
|
-
|
|
5
|
+
alignment: z.ZodDefault<z.ZodObject<{
|
|
6
|
+
horizontal: z.ZodDefault<z.ZodEnum<{
|
|
7
|
+
start: "start";
|
|
8
|
+
center: "center";
|
|
9
|
+
end: "end";
|
|
10
|
+
}>>;
|
|
11
|
+
vertical: z.ZodDefault<z.ZodEnum<{
|
|
12
|
+
top: "top";
|
|
13
|
+
middle: "middle";
|
|
14
|
+
bottom: "bottom";
|
|
15
|
+
}>>;
|
|
16
|
+
}, z.core.$strip>>;
|
|
17
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
6
18
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
7
19
|
small: "small";
|
|
8
20
|
none: "none";
|
|
@@ -21,19 +33,7 @@ export declare const CABOffersSection: z.ZodObject<{
|
|
|
21
33
|
medium: "medium";
|
|
22
34
|
thick: "thick";
|
|
23
35
|
}>>;
|
|
24
|
-
}, z.core.$strip
|
|
25
|
-
alignment: z.ZodDefault<z.ZodObject<{
|
|
26
|
-
horizontal: z.ZodDefault<z.ZodEnum<{
|
|
27
|
-
start: "start";
|
|
28
|
-
center: "center";
|
|
29
|
-
end: "end";
|
|
30
|
-
}>>;
|
|
31
|
-
vertical: z.ZodDefault<z.ZodEnum<{
|
|
32
|
-
top: "top";
|
|
33
|
-
middle: "middle";
|
|
34
|
-
bottom: "bottom";
|
|
35
|
-
}>>;
|
|
36
|
-
}, z.core.$strip>>;
|
|
36
|
+
}, z.core.$strip>>>;
|
|
37
37
|
width: z.ZodDefault<z.ZodNumber>;
|
|
38
38
|
direction: z.ZodDefault<z.ZodEnum<{
|
|
39
39
|
columns: "columns";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offers.d.ts","sourceRoot":"","sources":["../../src/schema/offers.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"offers.d.ts","sourceRoot":"","sources":["../../src/schema/offers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,OAAO,EAAE,UAAU,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE3D,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAO5B,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,EAAE,aAAa,CAAC,GAAG;IACnE,WAAW,EAAE,QAAQ,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG,gBAAgB,GAAG,cAAc,CAAC"}
|
package/dist/schema/product.d.ts
CHANGED
|
@@ -14,10 +14,10 @@ export declare const CABProductSection: z.ZodObject<{
|
|
|
14
14
|
}>>;
|
|
15
15
|
values: z.ZodArray<z.ZodObject<{
|
|
16
16
|
color: z.ZodOptional<z.ZodString>;
|
|
17
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
17
|
+
image: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
18
18
|
altText: z.ZodDefault<z.ZodString>;
|
|
19
19
|
aspectRatio: z.ZodDefault<z.ZodNullable<z.ZodLiteral<1>>>;
|
|
20
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
20
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
21
21
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
22
22
|
small: "small";
|
|
23
23
|
none: "none";
|
|
@@ -36,7 +36,7 @@ export declare const CABProductSection: z.ZodObject<{
|
|
|
36
36
|
medium: "medium";
|
|
37
37
|
thick: "thick";
|
|
38
38
|
}>>;
|
|
39
|
-
}, z.core.$strip
|
|
39
|
+
}, z.core.$strip>>>;
|
|
40
40
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
41
41
|
declineAllOffers: "declineAllOffers";
|
|
42
42
|
declineOffer: "declineOffer";
|
|
@@ -73,9 +73,9 @@ export declare const CABProductSection: z.ZodObject<{
|
|
|
73
73
|
sectionType: z.ZodDefault<z.ZodLiteral<"image">>;
|
|
74
74
|
source: z.ZodDefault<z.ZodUnion<readonly [z.ZodURL, z.ZodLiteral<"">, z.ZodString]>>;
|
|
75
75
|
width: z.ZodDefault<z.ZodNumber>;
|
|
76
|
-
}, z.core.$strip
|
|
76
|
+
}, z.core.$strip>>>;
|
|
77
77
|
name: z.ZodString;
|
|
78
|
-
text: z.ZodOptional<z.ZodObject<{
|
|
78
|
+
text: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
79
79
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
80
80
|
declineAllOffers: "declineAllOffers";
|
|
81
81
|
declineOffer: "declineOffer";
|
|
@@ -135,7 +135,7 @@ export declare const CABProductSection: z.ZodObject<{
|
|
|
135
135
|
name: z.ZodOptional<z.ZodString>;
|
|
136
136
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
137
137
|
sectionType: z.ZodDefault<z.ZodLiteral<"text">>;
|
|
138
|
-
}, z.core.$strip
|
|
138
|
+
}, z.core.$strip>>>;
|
|
139
139
|
}, z.core.$strip>>;
|
|
140
140
|
}, z.core.$strip>>>;
|
|
141
141
|
productId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../src/schema/product.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"product.d.ts","sourceRoot":"","sources":["../../src/schema/product.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAG/C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAwB5B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,iBAAiB,GAAG,cAAc,CAAC"}
|
|
@@ -3,7 +3,7 @@ import { type SectionDetails } from './shared';
|
|
|
3
3
|
export declare const CABProductsSection: z.ZodObject<{
|
|
4
4
|
name: z.ZodOptional<z.ZodString>;
|
|
5
5
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
6
|
-
sections: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
6
|
+
sections: z.ZodDefault<z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
7
7
|
name: z.ZodOptional<z.ZodString>;
|
|
8
8
|
options: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9
9
|
name: z.ZodString;
|
|
@@ -17,10 +17,10 @@ export declare const CABProductsSection: z.ZodObject<{
|
|
|
17
17
|
}>>;
|
|
18
18
|
values: z.ZodArray<z.ZodObject<{
|
|
19
19
|
color: z.ZodOptional<z.ZodString>;
|
|
20
|
-
image: z.ZodOptional<z.ZodObject<{
|
|
20
|
+
image: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
21
21
|
altText: z.ZodDefault<z.ZodString>;
|
|
22
22
|
aspectRatio: z.ZodDefault<z.ZodNullable<z.ZodLiteral<1>>>;
|
|
23
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
23
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
24
24
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
25
25
|
small: "small";
|
|
26
26
|
none: "none";
|
|
@@ -39,7 +39,7 @@ export declare const CABProductsSection: z.ZodObject<{
|
|
|
39
39
|
medium: "medium";
|
|
40
40
|
thick: "thick";
|
|
41
41
|
}>>;
|
|
42
|
-
}, z.core.$strip
|
|
42
|
+
}, z.core.$strip>>>;
|
|
43
43
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
44
44
|
declineAllOffers: "declineAllOffers";
|
|
45
45
|
declineOffer: "declineOffer";
|
|
@@ -76,9 +76,9 @@ export declare const CABProductsSection: z.ZodObject<{
|
|
|
76
76
|
sectionType: z.ZodDefault<z.ZodLiteral<"image">>;
|
|
77
77
|
source: z.ZodDefault<z.ZodUnion<readonly [z.ZodURL, z.ZodLiteral<"">, z.ZodString]>>;
|
|
78
78
|
width: z.ZodDefault<z.ZodNumber>;
|
|
79
|
-
}, z.core.$strip
|
|
79
|
+
}, z.core.$strip>>>;
|
|
80
80
|
name: z.ZodString;
|
|
81
|
-
text: z.ZodOptional<z.ZodObject<{
|
|
81
|
+
text: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
82
82
|
buttonField: z.ZodOptional<z.ZodEnum<{
|
|
83
83
|
declineAllOffers: "declineAllOffers";
|
|
84
84
|
declineOffer: "declineOffer";
|
|
@@ -138,13 +138,13 @@ export declare const CABProductsSection: z.ZodObject<{
|
|
|
138
138
|
name: z.ZodOptional<z.ZodString>;
|
|
139
139
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
140
140
|
sectionType: z.ZodDefault<z.ZodLiteral<"text">>;
|
|
141
|
-
}, z.core.$strip
|
|
141
|
+
}, z.core.$strip>>>;
|
|
142
142
|
}, z.core.$strip>>;
|
|
143
143
|
}, z.core.$strip>>>;
|
|
144
144
|
productId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
145
145
|
sectionId: z.ZodDefault<z.ZodUUID>;
|
|
146
146
|
sectionType: z.ZodDefault<z.ZodLiteral<"product">>;
|
|
147
|
-
}, z.core.$strip
|
|
147
|
+
}, z.core.$strip>>>>;
|
|
148
148
|
sectionType: z.ZodDefault<z.ZodLiteral<"products">>;
|
|
149
149
|
}, z.core.$strip>;
|
|
150
150
|
export type CABProductsSection = z.infer<typeof CABProductsSection>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../src/schema/products.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../src/schema/products.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAI3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAK7B,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quantity.d.ts","sourceRoot":"","sources":["../../src/schema/quantity.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"quantity.d.ts","sourceRoot":"","sources":["../../src/schema/quantity.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;iBAuB7B,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reviews.d.ts","sourceRoot":"","sources":["../../src/schema/reviews.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"reviews.d.ts","sourceRoot":"","sources":["../../src/schema/reviews.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,iBAAiB;;;;iBAI5B,CAAC;AAEH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAElE,MAAM,MAAM,sBAAsB,GAAG,iBAAiB,GAAG,cAAc,CAAC"}
|
package/dist/schema/root.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ export declare const CABRootSection: z.ZodObject<{
|
|
|
22
22
|
bottom: "bottom";
|
|
23
23
|
}>>;
|
|
24
24
|
}, z.core.$strip>>;
|
|
25
|
-
border: z.ZodDefault<z.ZodObject<{
|
|
25
|
+
border: z.ZodLazy<z.ZodDefault<z.ZodObject<{
|
|
26
26
|
radius: z.ZodDefault<z.ZodEnum<{
|
|
27
27
|
small: "small";
|
|
28
28
|
none: "none";
|
|
@@ -41,7 +41,7 @@ export declare const CABRootSection: z.ZodObject<{
|
|
|
41
41
|
medium: "medium";
|
|
42
42
|
thick: "thick";
|
|
43
43
|
}>>;
|
|
44
|
-
}, z.core.$strip
|
|
44
|
+
}, z.core.$strip>>>;
|
|
45
45
|
direction: z.ZodDefault<z.ZodEnum<{
|
|
46
46
|
columns: "columns";
|
|
47
47
|
rows: "rows";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"root.d.ts","sourceRoot":"","sources":["../../src/schema/root.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"root.d.ts","sourceRoot":"","sources":["../../src/schema/root.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAE3B,OAAO,EAAE,UAAU,EAAe,MAAM,UAAU,CAAC;AACnD,OAAO,EAAe,UAAU,EAAe,MAAM,aAAa,CAAC;AACnE,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAY5C,MAAM,MAAM,UAAU,GAAG;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,YAAY,GAAG,UAAU,GAAG,MAAM,CAAC;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAU1B,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,gBAAgB,GAAG;IAC5C,UAAU,EAAE,UAAU,CAAC;IACvB,WAAW,EAAE,OAAO,CAAC;IACrB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IACvB,UAAU,EAAE,UAAU,GAAG,IAAI,CAAC;IAC9B,IAAI,EAAE,UAAU,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;CAC3B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/schema/shared.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/schema/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,CAAC,EAAE,KAAK,OAAO,EAAE,MAAM,QAAQ,CAAC;AAEzC,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAE5C,OAAO,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AACrD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAC1C,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AACxD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,QAAQ,CAAC;AACxC,OAAO,EAAE,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAEhD,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;kBAUhB,CAAC;AAEP,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,UAAU,EAAE,OAAO,CAAC,UAAU,CAgB1C,CAAC;AAEF,MAAM,MAAM,UAAU,GAChB,gBAAgB,GAChB,oBAAoB,GACpB,eAAe,GACf,gBAAgB,GAChB,gBAAgB,GAChB,iBAAiB,GACjB,kBAAkB,GAClB,kBAAkB,GAClB,iBAAiB,GACjB,sBAAsB,GACtB,eAAe,GACf,cAAc,GACd,kBAAkB,CAAC;AAEzB,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,WAAW,CAAC,CAAC;AAGhD,MAAM,MAAM,gBAAgB,GAAG,cAAc,CAAC,cAAc,CAAC,CAAC;AAE9D,MAAM,MAAM,iBAAiB,GAAG,GAAG,gBAAgB,IAAI,MAAM,EAAE,GAAG,IAAI,CAAC;AAEvE,MAAM,MAAM,cAAc,GAAG;IACzB;;;;;OAKG;IACH,cAAc,EAAE,gBAAgB,GAAG,IAAI,CAAC;IACxC;;;;OAIG;IACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACrB;;;;OAIG;IACH,MAAM,EAAE,UAAU,EAAE,GAAG,IAAI,CAAC;IAC5B;;;;OAIG;IACH,QAAQ,EAAE,SAAS,GAAG,SAAS,CAAC;IAChC;;;;;OAKG;IACH,UAAU,EAAE,iBAAiB,GAAG,IAAI,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../src/schema/subscription.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"subscription.d.ts","sourceRoot":"","sources":["../../src/schema/subscription.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,sBAAsB;;;;iBAIjC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,MAAM,MAAM,2BAA2B,GAAG,sBAAsB,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../src/schema/table.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../src/schema/table.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,eAAe;;;;iBAI1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,MAAM,MAAM,oBAAoB,GAAG,eAAe,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../src/schema/text.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"text.d.ts","sourceRoot":"","sources":["../../src/schema/text.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAgB3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAS/C,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;iBA4BrB,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAEpD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQ1B,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAQzB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA6BrB,CAAC;AAEP,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,MAAM,MAAM,mBAAmB,GAAG,cAAc,GAAG,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/schema/utils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../src/schema/utils.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AAEjD,OAAO,EAAE,KAAK,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAC1D,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,SAAS,CAAC;AAC/C,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,KAAK,gBAAgB,EAAE,MAAM,UAAU,CAAC;AACjD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,YAAY,CAAC;AACrD,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAErD,OAAO,EAAE,KAAK,iBAAiB,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,gBAAgB,CAAC;AAC7D,OAAO,EAAE,KAAK,eAAe,EAAE,MAAM,SAAS,CAAC;AAC/C,OAAO,EAAE,KAAK,cAAc,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAClE,OAAO,EAAE,KAAK,kBAAkB,EAAE,MAAM,YAAY,CAAC;AAErD,eAAO,MAAM,MAAM,GAAI,OAAM,MAAM,GAAG,SAAc,KAAG,OAWtD,CAAC;AAEF,eAAO,MAAM,YAAY,GAAI,KAAK,cAAc,KAAG,OACiC,CAAC;AAErF,eAAO,MAAM,YAAY,GAAI,OAAO,MAAM,GAAG,cAAc,KAAG,OAC8C,CAAC;AAE7G,eAAO,MAAM,OAAO;;CAAuC,CAAC;AAE5D,eAAO,MAAM,YAAY,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,gBACL,CAAC;AAEvD,eAAO,MAAM,gBAAgB,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,oBACL,CAAC;AAE3D,eAAO,MAAM,WAAW,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,eACL,CAAC;AAEtD,eAAO,MAAM,YAAY,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,gBACL,CAAC;AAEvD,eAAO,MAAM,YAAY,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,gBACL,CAAC;AAEvD,eAAO,MAAM,aAAa,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,iBACL,CAAC;AAExD,eAAO,MAAM,cAAc,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,kBACL,CAAC;AAEzD,eAAO,MAAM,cAAc,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,kBACL,CAAC;AAEzD,eAAO,MAAM,aAAa,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,iBACL,CAAC;AAExD,eAAO,MAAM,kBAAkB,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,sBACL,CAAC;AAE7D,eAAO,MAAM,WAAW,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,eACL,CAAC;AAEtD,eAAO,MAAM,UAAU,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,cACL,CAAC;AAErD,eAAO,MAAM,cAAc,GAAI,SAAS,OAAO,KAAG,OAAO,IAAI,kBACL,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"variants.d.ts","sourceRoot":"","sources":["../../src/schema/variants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"variants.d.ts","sourceRoot":"","sources":["../../src/schema/variants.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAC;AAG3B,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,UAAU,CAAC;AAE/C,eAAO,MAAM,kBAAkB;;;;;;;;;;;iBAK7B,CAAC;AAEH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,MAAM,MAAM,uBAAuB,GAAG,kBAAkB,GAAG,cAAc,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rebuy/rebuy",
|
|
3
3
|
"description": "This is the default library for Rebuy",
|
|
4
|
-
"version": "2.2.0-rc.
|
|
4
|
+
"version": "2.2.0-rc.9",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Rebuy, Inc.",
|
|
7
7
|
"type": "module",
|
|
@@ -81,14 +81,12 @@
|
|
|
81
81
|
"eslint-plugin-unused-imports": "^4.1.4",
|
|
82
82
|
"husky": "^9.1.7",
|
|
83
83
|
"lint-staged": "^15.5.0",
|
|
84
|
+
"lodash-es": "^4.17.22",
|
|
84
85
|
"prettier": "^3.5.3",
|
|
85
86
|
"react-hook-form": "^7.69.0",
|
|
86
87
|
"semantic-release": "^24.2.5",
|
|
87
88
|
"sort-package-json": "^3.2.1",
|
|
88
|
-
"typescript": "^5.8.3"
|
|
89
|
-
},
|
|
90
|
-
"dependencies": {
|
|
91
|
-
"lodash-es": "^4.17.22",
|
|
89
|
+
"typescript": "^5.8.3",
|
|
92
90
|
"uuid": "^13.0.0",
|
|
93
91
|
"zod": "^3.25.76"
|
|
94
92
|
}
|