@artisan-commerce/types 0.13.0-canary.4 → 0.13.0-canary.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/CHANGELOG.md +17 -0
- package/build/types/account.types.d.ts +6 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.13.0-canary.6](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.5...@artisan-commerce/types@0.13.0-canary.6) (2021-04-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **global:** update account types and add account builders ([4a6fecd](https://bitbucket.org/tradesystem/artisan_monorepo/commit/4a6fecdc45b363f068a6089eccbf36483f517288))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [0.13.0-canary.5](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.4...@artisan-commerce/types@0.13.0-canary.5) (2021-04-16)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @artisan-commerce/types
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [0.13.0-canary.4](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.3...@artisan-commerce/types@0.13.0-canary.4) (2021-04-06)
|
|
7
24
|
|
|
8
25
|
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
+
import { Image } from "./image.types";
|
|
1
2
|
/**
|
|
2
|
-
* Representation of a
|
|
3
|
+
* Representation of a Commerce Account
|
|
3
4
|
*
|
|
4
5
|
* @interface Account
|
|
5
6
|
* @since 0.5.14
|
|
6
7
|
* @property {number} accountId artisan's account unique identifier.
|
|
7
8
|
* @property {string} name account's name.
|
|
9
|
+
* @property {string} description account's description.
|
|
10
|
+
* @property {string} images account's images.
|
|
8
11
|
*/
|
|
9
12
|
export interface Account {
|
|
10
13
|
accountId: number;
|
|
11
14
|
name: string;
|
|
15
|
+
description?: string;
|
|
16
|
+
images: Image[];
|
|
12
17
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/types",
|
|
3
3
|
"description": "Artisan's types and interfaces library",
|
|
4
|
-
"version": "0.13.0-canary.
|
|
4
|
+
"version": "0.13.0-canary.6",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"@types/node": "^14.0.24",
|
|
27
27
|
"@typescript-eslint/eslint-plugin": "^3.7.0",
|
|
28
28
|
"@typescript-eslint/parser": "^3.7.0",
|
|
29
|
-
"cross-env": "^7.0.2",
|
|
30
29
|
"eslint": "^7.5.0",
|
|
31
30
|
"eslint-config-prettier": "^6.11.0",
|
|
32
31
|
"eslint-config-react-app": "^5.2.1",
|
|
@@ -43,5 +42,5 @@
|
|
|
43
42
|
"prettier": "^2.1.2",
|
|
44
43
|
"webpack-bundle-analyzer": "^3.9.0"
|
|
45
44
|
},
|
|
46
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "abb51980630496cead2a6960fb525aa393599aeb"
|
|
47
46
|
}
|