@selfcommunity/types 0.5.0-alpha.12 → 0.5.0-alpha.14

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.
@@ -40,6 +40,15 @@ export interface SCMediaType {
40
40
  * Media image height
41
41
  */
42
42
  image_height?: number;
43
+ /**
44
+ * Media image thumbnail
45
+ */
46
+ image_thumbnail?: {
47
+ color?: string | null;
48
+ width: number;
49
+ height: number;
50
+ url: string;
51
+ };
43
52
  /**
44
53
  * Order in the list of medias
45
54
  */
@@ -40,6 +40,15 @@ export interface SCMediaType {
40
40
  * Media image height
41
41
  */
42
42
  image_height?: number;
43
+ /**
44
+ * Media image thumbnail
45
+ */
46
+ image_thumbnail?: {
47
+ color?: string | null;
48
+ width: number;
49
+ height: number;
50
+ url: string;
51
+ };
43
52
  /**
44
53
  * Order in the list of medias
45
54
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@selfcommunity/types",
3
- "version": "0.5.0-alpha.12",
3
+ "version": "0.5.0-alpha.14",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "./lib/cjs/index.js",
@@ -9,6 +9,10 @@
9
9
  ".": {
10
10
  "require": "./lib/cjs/index.js",
11
11
  "import": "./lib/esm/index.js"
12
+ },
13
+ "./*": {
14
+ "require": "./lib/cjs/*",
15
+ "import": "./lib/esm/*"
12
16
  }
13
17
  },
14
18
  "sideEffects": false,
@@ -97,5 +101,5 @@
97
101
  "bugs": {
98
102
  "url": "https://github.com/selfcommunity/community-js/issues"
99
103
  },
100
- "gitHead": "7f6f53b758a17a01ba43a58724be8b65f6dde62a"
104
+ "gitHead": "69ae3e727d277477fae8508b950d4baf891fed8a"
101
105
  }