@artisan-commerce/types 0.14.0-canary.10 → 0.14.0-canary.11

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 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.11](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/types@0.14.0-canary.10...@artisan-commerce/types@0.14.0-canary.11) (2021-09-23)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **global:** update types of CDNImage, reduce the depth of product questions ([82dba32](https://bitbucket.org/tradesystem/artisn_sdk/commit/82dba324457455e6cd2d76091aaffaef5f540d9f))
12
+
13
+
14
+
6
15
  ## [0.14.0-canary.10](https://bitbucket.org/tradesystem/artisn_sdk/compare/@artisan-commerce/types@0.14.0-canary.9...@artisan-commerce/types@0.14.0-canary.10) (2021-09-21)
7
16
 
8
17
 
@@ -10,13 +10,13 @@ export interface CDNImage {
10
10
  /** The cloud where the image is saved */
11
11
  cloudFrontUrl?: string;
12
12
  /** The directory where the image is saved */
13
- key?: string;
13
+ key: string | null;
14
14
  /** Image's name */
15
15
  name: string;
16
16
  /** The url where the image is saved */
17
17
  url: string;
18
18
  /** The base 64 image value */
19
- base64?: string;
19
+ base64: string | null;
20
20
  }
21
21
  /**
22
22
  * A image url.
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.10",
4
+ "version": "0.14.0-canary.11",
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": "b16097fb670ad99b44661788084b743cbee7e9ad"
45
+ "gitHead": "335bd3e5dcdd26e3a6f96e3904d47d4eb4a9ca4e"
46
46
  }