@betterstore/react 0.3.70 → 0.3.72
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/CHANGELOG.md +12 -0
- package/dist/components/checkout-embed/checkout-schema.d.ts +6 -6
- package/dist/index.cjs.js +43696 -9953
- package/dist/index.mjs +43620 -9874
- package/package.json +1 -3
- package/rollup.config.mjs +36 -36
package/CHANGELOG.md
CHANGED
|
@@ -69,17 +69,17 @@ export declare const shippingMethodSchema: z.ZodObject<{
|
|
|
69
69
|
pickupPointId: z.ZodOptional<z.ZodString>;
|
|
70
70
|
pickupPointDisplayName: z.ZodOptional<z.ZodString>;
|
|
71
71
|
}, "strip", z.ZodTypeAny, {
|
|
72
|
-
name: string;
|
|
73
72
|
rateId: string;
|
|
74
73
|
provider: string;
|
|
75
74
|
price: number;
|
|
75
|
+
name: string;
|
|
76
76
|
pickupPointId?: string | undefined;
|
|
77
77
|
pickupPointDisplayName?: string | undefined;
|
|
78
78
|
}, {
|
|
79
|
-
name: string;
|
|
80
79
|
rateId: string;
|
|
81
80
|
provider: string;
|
|
82
81
|
price: number;
|
|
82
|
+
name: string;
|
|
83
83
|
pickupPointId?: string | undefined;
|
|
84
84
|
pickupPointDisplayName?: string | undefined;
|
|
85
85
|
}>;
|
|
@@ -154,17 +154,17 @@ export declare const checkoutSchema: z.ZodObject<{
|
|
|
154
154
|
pickupPointId: z.ZodOptional<z.ZodString>;
|
|
155
155
|
pickupPointDisplayName: z.ZodOptional<z.ZodString>;
|
|
156
156
|
}, "strip", z.ZodTypeAny, {
|
|
157
|
-
name: string;
|
|
158
157
|
rateId: string;
|
|
159
158
|
provider: string;
|
|
160
159
|
price: number;
|
|
160
|
+
name: string;
|
|
161
161
|
pickupPointId?: string | undefined;
|
|
162
162
|
pickupPointDisplayName?: string | undefined;
|
|
163
163
|
}, {
|
|
164
|
-
name: string;
|
|
165
164
|
rateId: string;
|
|
166
165
|
provider: string;
|
|
167
166
|
price: number;
|
|
167
|
+
name: string;
|
|
168
168
|
pickupPointId?: string | undefined;
|
|
169
169
|
pickupPointDisplayName?: string | undefined;
|
|
170
170
|
}>;
|
|
@@ -187,10 +187,10 @@ export declare const checkoutSchema: z.ZodObject<{
|
|
|
187
187
|
saveInfo?: boolean | undefined;
|
|
188
188
|
};
|
|
189
189
|
shipping: {
|
|
190
|
-
name: string;
|
|
191
190
|
rateId: string;
|
|
192
191
|
provider: string;
|
|
193
192
|
price: number;
|
|
193
|
+
name: string;
|
|
194
194
|
pickupPointId?: string | undefined;
|
|
195
195
|
pickupPointDisplayName?: string | undefined;
|
|
196
196
|
};
|
|
@@ -213,10 +213,10 @@ export declare const checkoutSchema: z.ZodObject<{
|
|
|
213
213
|
saveInfo?: boolean | undefined;
|
|
214
214
|
};
|
|
215
215
|
shipping: {
|
|
216
|
-
name: string;
|
|
217
216
|
rateId: string;
|
|
218
217
|
provider: string;
|
|
219
218
|
price: number;
|
|
219
|
+
name: string;
|
|
220
220
|
pickupPointId?: string | undefined;
|
|
221
221
|
pickupPointDisplayName?: string | undefined;
|
|
222
222
|
};
|