@artisan-commerce/types 0.13.0-canary.1 → 0.13.0-canary.2
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 +8 -0
- package/build/types/app.types.d.ts +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.2](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.1...@artisan-commerce/types@0.13.0-canary.2) (2021-03-19)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @artisan-commerce/types
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.13.0-canary.1](https://bitbucket.org/tradesystem/artisan_monorepo/compare/@artisan-commerce/types@0.13.0-canary.0...@artisan-commerce/types@0.13.0-canary.1) (2021-03-19)
|
|
7
15
|
|
|
8
16
|
|
|
@@ -76,7 +76,7 @@ export interface ArtisanSettingsRN {
|
|
|
76
76
|
/**
|
|
77
77
|
* Artisan app's allowed platforms to run on.
|
|
78
78
|
*
|
|
79
|
-
* @
|
|
79
|
+
* @typedef ArtisanPlatform
|
|
80
80
|
* @author Luis Eduardo Andrade
|
|
81
81
|
* @since 0.5.14
|
|
82
82
|
*/
|
|
@@ -84,7 +84,7 @@ export declare type ArtisanPlatform = "web" | "ios" | "android" | "windows" | "m
|
|
|
84
84
|
/**
|
|
85
85
|
* Artisan's auth instance is the intance of the internal auth object.
|
|
86
86
|
*
|
|
87
|
-
* @
|
|
87
|
+
* @typedef AritsanInstanceAuth
|
|
88
88
|
* @author Luis Eduardo Andrade
|
|
89
89
|
* @since 0.5.14
|
|
90
90
|
*/
|
|
@@ -92,7 +92,7 @@ export declare type AritsanInstanceAuth = typeof firebase.auth;
|
|
|
92
92
|
/**
|
|
93
93
|
* Artisan's auth object to handle providers authentication.
|
|
94
94
|
*
|
|
95
|
-
* @
|
|
95
|
+
* @typedef ArtisanAuth
|
|
96
96
|
* @author Luis Eduardo Andrade
|
|
97
97
|
* @since 0.5.14
|
|
98
98
|
*/
|
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.2",
|
|
5
5
|
"main": "./build/index.js",
|
|
6
6
|
"types": "./build/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"typescript": "^3.9.7",
|
|
45
45
|
"webpack-bundle-analyzer": "^3.9.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "c87d45ac8d2dd963d404ecfd45824af1d5c130b0"
|
|
48
48
|
}
|