@numueg/theme-sdk 0.1.0 → 0.2.0
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-CGx6FNqb.d.ts → entities-iiuRSPpk.d.mts} +1 -3
- package/dist/{index-zSb0FIyh.d.mts → entities-iiuRSPpk.d.ts} +1 -3
- package/dist/index.cjs +763 -43
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +493 -38
- package/dist/index.d.ts +493 -38
- package/dist/index.mjs +747 -45
- package/dist/index.mjs.map +1 -1
- package/dist/normalize.d.mts +1 -1
- package/dist/normalize.d.ts +1 -1
- package/dist/theme-D0QybTQS.d.mts +197 -0
- package/dist/theme-D0QybTQS.d.ts +197 -0
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/dist/v2-compat.cjs +248 -0
- package/dist/v2-compat.cjs.map +1 -0
- package/dist/v2-compat.d.mts +129 -0
- package/dist/v2-compat.d.ts +129 -0
- package/dist/v2-compat.mjs +242 -0
- package/dist/v2-compat.mjs.map +1 -0
- package/package.json +12 -1
- package/dist/theme-NWJAU9jd.d.mts +0 -128
- package/dist/theme-NWJAU9jd.d.ts +0 -128
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import './theme-NWJAU9jd.js';
|
|
2
|
-
|
|
3
1
|
/** Core store entity */
|
|
4
2
|
interface Store {
|
|
5
3
|
id: string;
|
|
@@ -164,4 +162,4 @@ interface Page {
|
|
|
164
162
|
data?: Record<string, any>;
|
|
165
163
|
}
|
|
166
164
|
|
|
167
|
-
export type { Address as A,
|
|
165
|
+
export type { Address as A, Cart as C, Order as O, Page as P, Store as S, CartItem as a, Collection as b, Customer as c, OrderItem as d, Product as e, ProductImage as f, ProductVariant as g, ProductOption as h };
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import './theme-NWJAU9jd.mjs';
|
|
2
|
-
|
|
3
1
|
/** Core store entity */
|
|
4
2
|
interface Store {
|
|
5
3
|
id: string;
|
|
@@ -164,4 +162,4 @@ interface Page {
|
|
|
164
162
|
data?: Record<string, any>;
|
|
165
163
|
}
|
|
166
164
|
|
|
167
|
-
export type { Address as A,
|
|
165
|
+
export type { Address as A, Cart as C, Order as O, Page as P, Store as S, CartItem as a, Collection as b, Customer as c, OrderItem as d, Product as e, ProductImage as f, ProductVariant as g, ProductOption as h };
|