@artisan-commerce/types 0.14.0-canary.27 → 0.14.0-canary.28
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 +5 -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.14.0-canary.28](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/types@0.14.0-canary.27...@artisan-commerce/types@0.14.0-canary.28) (2021-12-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **global:** add function to write pick up time remotely on shopping cart ([e71c4c4](https://bitbucket.org/tradesystem/artisn_sdk/commit/e71c4c408e4a5703bad4600b9cec2e4e642c80d3))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [0.14.0-canary.27](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/types@0.14.0-canary.26...@artisan-commerce/types@0.14.0-canary.27) (2021-12-13)
|
|
7
16
|
|
|
8
17
|
|
package/dist/bundle.d.ts
CHANGED
|
@@ -1280,6 +1280,11 @@ interface ShoppingCart {
|
|
|
1280
1280
|
benefits?: ShoppingCartBenefits;
|
|
1281
1281
|
/** Shopping cart user wallet id */
|
|
1282
1282
|
benefitsHash?: string;
|
|
1283
|
+
/**
|
|
1284
|
+
* Shopping cart pick up time, must be in UTC and
|
|
1285
|
+
* `YYYY-MM-DD HH:mm:ss` format
|
|
1286
|
+
*/
|
|
1287
|
+
pickUpTime?: string;
|
|
1283
1288
|
}
|
|
1284
1289
|
/**
|
|
1285
1290
|
* Representation of a Alert.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/types",
|
|
3
3
|
"description": "Artisn's types and interfaces library",
|
|
4
|
-
"version": "0.14.0-canary.
|
|
4
|
+
"version": "0.14.0-canary.28",
|
|
5
5
|
"main": "./dist/bundle.d.ts",
|
|
6
6
|
"module": "./dist/bundle.d.ts",
|
|
7
7
|
"types": "./dist/bundle.d.ts",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"@react-native-firebase/firestore": "^12.8.0",
|
|
35
35
|
"firebase": "^8.1.1"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "41494d0ea43f17af10489d8ef47f4d4ad014a951"
|
|
38
38
|
}
|