@liquidcommerce/elements-sdk 2.6.4 → 2.6.6
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/README.md +7 -7
- package/dist/index.esm.js +10598 -10708
- package/dist/types/core/api/api-client.service.d.ts +6 -6
- package/dist/types/core/client/client-action.service.d.ts +1 -2
- package/dist/types/core/client/client-config.service.d.ts +2 -0
- package/dist/types/core/google-tag-manager.service.d.ts +1 -1
- package/dist/types/core/logger/logger.service.d.ts +1 -1
- package/dist/types/core/pubsub/interfaces/cart.interface.d.ts +1 -1
- package/dist/types/core/pubsub/interfaces/checkout.interface.d.ts +35 -51
- package/dist/types/core/pubsub/interfaces/core.interface.d.ts +5 -4
- package/dist/types/core/store/interfaces/cart.interface.d.ts +2 -3
- package/dist/types/core/store/interfaces/checkout.interface.d.ts +17 -108
- package/dist/types/core/store/interfaces/core.interface.d.ts +3 -2
- package/dist/types/enums/cloud.enum.d.ts +0 -77
- package/dist/types/enums/core.enum.d.ts +24 -0
- package/dist/types/interfaces/api/cart.interface.d.ts +11 -7
- package/dist/types/interfaces/api/checkout.interface.d.ts +216 -0
- package/dist/types/interfaces/api/product.interface.d.ts +2 -3
- package/dist/types/interfaces/core.interface.d.ts +7 -1
- package/dist/types/modules/cart/cart.commands.d.ts +4 -4
- package/dist/types/modules/checkout/checkout.commands.d.ts +18 -9
- package/dist/types/modules/checkout/components/checkout-billing.component.d.ts +2 -2
- package/dist/types/modules/checkout/components/checkout-items.component.d.ts +4 -3
- package/dist/types/modules/checkout/components/checkout-presale-countdown.component.d.ts +14 -1
- package/dist/types/modules/checkout/components/checkout-presale-expired.component.d.ts +7 -1
- package/dist/types/modules/checkout/components/checkout-tips.component.d.ts +2 -2
- package/dist/types/modules/checkout/components/promo-pc-gc.component.d.ts +0 -2
- package/dist/types/modules/checkout/constant.d.ts +3 -0
- package/dist/types/modules/product/product.commands.d.ts +1 -0
- package/dist/types/modules/product-list/product-list.commands.d.ts +1 -0
- package/dist/types/modules/ui-components/engraving/engraving-form.component.d.ts +1 -0
- package/dist/types/utils/format.d.ts +0 -1
- package/docs/ACTIONS.md +13 -13
- package/docs/EVENTS.md +7 -7
- package/package.json +5 -5
- package/umd/elements.js +1 -1
- package/dist/types/interfaces/cloud/checkout.interface.d.ts +0 -218
- package/dist/types/interfaces/cloud/core.interface.d.ts +0 -22
- package/dist/types/interfaces/cloud/index.d.ts +0 -3
- package/dist/types/interfaces/cloud/retailer.interface.d.ts +0 -67
- package/dist/types/interfaces/cloud/user.interface.d.ts +0 -100
- package/dist/types/modules/checkout/components/checkout.type.d.ts +0 -4
- package/dist/types/utils/helper.d.ts +0 -28
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "LiquidCommerce Elements SDK",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "LiquidCommerce Team",
|
|
6
|
-
"version": "2.6.
|
|
6
|
+
"version": "2.6.6",
|
|
7
7
|
"homepage": "https://docs.liquidcommerce.co/elements-sdk",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"embeddable commerce"
|
|
71
71
|
],
|
|
72
72
|
"devDependencies": {
|
|
73
|
-
"@biomejs/biome": "2.3.
|
|
73
|
+
"@biomejs/biome": "2.3.10",
|
|
74
74
|
"@commitlint/cli": "^20.2.0",
|
|
75
75
|
"@commitlint/config-conventional": "^20.2.0",
|
|
76
76
|
"@rollup/plugin-alias": "^6.0.0",
|
|
@@ -83,14 +83,14 @@
|
|
|
83
83
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
84
84
|
"@semantic-release/git": "^10.0.1",
|
|
85
85
|
"@semantic-release/github": "^12.0.2",
|
|
86
|
-
"@semantic-release/npm": "^13.1.
|
|
86
|
+
"@semantic-release/npm": "^13.1.3",
|
|
87
87
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
88
88
|
"@types/core-js": "^2.5.8",
|
|
89
|
-
"@types/node": "^
|
|
89
|
+
"@types/node": "^25.0.3",
|
|
90
90
|
"conventional-changelog-cli": "^5.0.0",
|
|
91
91
|
"husky": "^9.1.7",
|
|
92
92
|
"process": "^0.11.10",
|
|
93
|
-
"rollup": "^4.
|
|
93
|
+
"rollup": "^4.54.0",
|
|
94
94
|
"rollup-obfuscator": "^4.1.1",
|
|
95
95
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
96
96
|
"semantic-release": "^25.0.2",
|