reach-api-sdk 1.0.215 → 1.0.216
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/dist/reach-sdk.d.ts
CHANGED
|
@@ -17589,6 +17589,14 @@ type FilestackImageMetaResponseModel = {
|
|
|
17589
17589
|
* Gets or sets the size.
|
|
17590
17590
|
*/
|
|
17591
17591
|
size?: number;
|
|
17592
|
+
/**
|
|
17593
|
+
* Gets or sets the image width in pixels (from Filestack metadata).
|
|
17594
|
+
*/
|
|
17595
|
+
width?: number | null;
|
|
17596
|
+
/**
|
|
17597
|
+
* Gets or sets the image height in pixels (from Filestack metadata).
|
|
17598
|
+
*/
|
|
17599
|
+
height?: number | null;
|
|
17592
17600
|
/**
|
|
17593
17601
|
* Gets or sets the url.
|
|
17594
17602
|
*/
|
package/package.json
CHANGED
|
@@ -153950,6 +153950,16 @@ components:
|
|
|
153950
153950
|
description: Gets or sets the size.
|
|
153951
153951
|
format: int32
|
|
153952
153952
|
default: 0
|
|
153953
|
+
width:
|
|
153954
|
+
type: integer
|
|
153955
|
+
description: Gets or sets the image width in pixels (from Filestack metadata).
|
|
153956
|
+
format: int32
|
|
153957
|
+
nullable: true
|
|
153958
|
+
height:
|
|
153959
|
+
type: integer
|
|
153960
|
+
description: Gets or sets the image height in pixels (from Filestack metadata).
|
|
153961
|
+
format: int32
|
|
153962
|
+
nullable: true
|
|
153953
153963
|
url:
|
|
153954
153964
|
type: string
|
|
153955
153965
|
description: Gets or sets the url.
|
|
@@ -35,6 +35,14 @@ export type FilestackImageMetaResponseModel = {
|
|
|
35
35
|
* Gets or sets the size.
|
|
36
36
|
*/
|
|
37
37
|
size?: number;
|
|
38
|
+
/**
|
|
39
|
+
* Gets or sets the image width in pixels (from Filestack metadata).
|
|
40
|
+
*/
|
|
41
|
+
width?: number | null;
|
|
42
|
+
/**
|
|
43
|
+
* Gets or sets the image height in pixels (from Filestack metadata).
|
|
44
|
+
*/
|
|
45
|
+
height?: number | null;
|
|
38
46
|
/**
|
|
39
47
|
* Gets or sets the url.
|
|
40
48
|
*/
|