@artisan-commerce/products 0.9.0-canary.21 → 0.9.0-canary.22
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 +9 -0
- package/dist/bundle.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [0.9.0-canary.22](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/products@0.9.0-canary.21...@artisan-commerce/products@0.9.0-canary.22) (2021-10-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **global:** fix some payment types ([8000970](https://bitbucket.org/tradesystem/artisn_sdk/commit/80009700cd8664828b1236e8ad7cc90ce2fcb3e7))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.9.0-canary.21](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/products@0.9.0-canary.20...@artisan-commerce/products@0.9.0-canary.21) (2021-10-14)
|
|
7
16
|
|
|
8
17
|
**Note:** Version bump only for package @artisan-commerce/products
|
package/dist/bundle.d.ts
CHANGED
|
@@ -161,4 +161,4 @@ declare const validateProduct: (productId: Product["productId"]) => RendererStat
|
|
|
161
161
|
*/
|
|
162
162
|
declare const getProductTotals: (product: Product, amount?: number) => ProductTotals;
|
|
163
163
|
|
|
164
|
-
export { ModifierGroupRenderer, ModifierRenderer, ModifiersForm, assertions_utils as assertions, getProductTotals, questionsAndAnswers_utils as modifierUtils, registerModifiersForm, transformers_utils as transformers, validateProduct };
|
|
164
|
+
export { ModifierGroupRenderer, ModifierRenderer, ModifierTotals, ModifiersForm, assertions_utils as assertions, getProductTotals, questionsAndAnswers_utils as modifierUtils, registerModifiersForm, transformers_utils as transformers, validateProduct };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/products",
|
|
3
3
|
"description": "Artisn's product management library",
|
|
4
|
-
"version": "0.9.0-canary.
|
|
4
|
+
"version": "0.9.0-canary.22",
|
|
5
5
|
"main": "./dist/bundle.cjs.js",
|
|
6
6
|
"module": "./dist/bundle.esm.js",
|
|
7
7
|
"types": "./dist/bundle.d.ts",
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"author": "Luis Eduardo Andrade",
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@artisan-commerce/auth": "0.9.0-canary.
|
|
43
|
-
"@artisan-commerce/cache": "0.2.0-canary.
|
|
42
|
+
"@artisan-commerce/auth": "0.9.0-canary.16",
|
|
43
|
+
"@artisan-commerce/cache": "0.2.0-canary.17",
|
|
44
44
|
"sha1": "^1.1.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@artisan-commerce/builders": "0.7.0-canary.
|
|
48
|
-
"@artisan-commerce/types": "0.14.0-canary.
|
|
47
|
+
"@artisan-commerce/builders": "0.7.0-canary.20",
|
|
48
|
+
"@artisan-commerce/types": "0.14.0-canary.18",
|
|
49
49
|
"@babel/core": "^7.10.5",
|
|
50
50
|
"@babel/preset-env": "^7.10.4",
|
|
51
51
|
"@babel/preset-react": "^7.10.4",
|
|
@@ -82,5 +82,5 @@
|
|
|
82
82
|
"ts-jest": "^26.1.4",
|
|
83
83
|
"ts-loader": "^8.0.2"
|
|
84
84
|
},
|
|
85
|
-
"gitHead": "
|
|
85
|
+
"gitHead": "74c1c03bbbf19049bf1b5e8c3437669f6e2af272"
|
|
86
86
|
}
|