@proveanything/smartlinks 1.0.34 → 1.0.35

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/API_SUMMARY.md CHANGED
@@ -190,6 +190,8 @@ interface ProductResponse {
190
190
  name: string
191
191
  collectionId: string
192
192
  description: string
193
+ gtin?: string
194
+ type?: string
193
195
  heroImage: {
194
196
  url: string
195
197
  thumbnails: {
@@ -10,6 +10,10 @@ export interface ProductResponse {
10
10
  collectionId: string;
11
11
  /** Detailed description of the product */
12
12
  description: string;
13
+ /** A product GTIN (Global Trade Item Number) */
14
+ gtin?: string;
15
+ /** An optional product type from the standard smartlinks types */
16
+ type?: string;
13
17
  /** Hero image asset object */
14
18
  heroImage: {
15
19
  /** URL to the asset */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",