@artisan-commerce/types 0.13.0-canary.8 → 0.13.0-canary.9
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/build/types/coupons.types.d.ts +6 -0
- package/package.json +2 -2
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.13.0-canary.9](https://bitbucket.org/tradesystem/artisan_sdk/compare/@artisan-commerce/types@0.13.0-canary.8...@artisan-commerce/types@0.13.0-canary.9) (2021-06-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **global:** fix remove benefit method ([a6cb684](https://bitbucket.org/tradesystem/artisan_sdk/commit/a6cb68453250ca855d8609b9f3c8de8c0d5d9b90))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.13.0-canary.8](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.7...@artisan-commerce/types@0.13.0-canary.8) (2021-06-10)
|
|
7
16
|
|
|
8
17
|
|
|
@@ -38,6 +38,9 @@ export interface Wallet {
|
|
|
38
38
|
* @property {string} title The benefit title
|
|
39
39
|
* @property {BenefitTypes} type Benefit type
|
|
40
40
|
* @property {string} updatedAt Benefit update date
|
|
41
|
+
* @property {number} channelId The channel id of the benefit
|
|
42
|
+
* @property {number} vedorId The vendor id of the benefit
|
|
43
|
+
* @property {number} accountId The account id of the benefit
|
|
41
44
|
*
|
|
42
45
|
*/
|
|
43
46
|
export interface Benefit {
|
|
@@ -61,6 +64,9 @@ export interface Benefit {
|
|
|
61
64
|
title: string;
|
|
62
65
|
type: BenefitTypes;
|
|
63
66
|
updatedAt: string;
|
|
67
|
+
channelId: number;
|
|
68
|
+
vedorId: number;
|
|
69
|
+
accountId: number;
|
|
64
70
|
}
|
|
65
71
|
/**
|
|
66
72
|
* Award information.
|
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.9",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"prettier": "^2.1.2",
|
|
43
43
|
"webpack-bundle-analyzer": "^3.9.0"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "b4756aeffb2a6e68d76afb181d29ae9119085982"
|
|
46
46
|
}
|