@trustrails/sdk 0.4.3 → 0.4.4

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/README.md CHANGED
@@ -115,6 +115,7 @@ const product = await trustrails.product('prod_123');
115
115
  interface Product {
116
116
  id: string;
117
117
  title: string;
118
+ description?: string;
118
119
  brand?: string;
119
120
  price: number;
120
121
  currency: string;
package/dist/index.d.mts CHANGED
@@ -8,6 +8,7 @@ type Availability = "in_stock" | "low_stock" | "out_of_stock";
8
8
  interface Product {
9
9
  id: string;
10
10
  title: string;
11
+ description?: string;
11
12
  brand?: string;
12
13
  price: number;
13
14
  currency: string;
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ type Availability = "in_stock" | "low_stock" | "out_of_stock";
8
8
  interface Product {
9
9
  id: string;
10
10
  title: string;
11
+ description?: string;
11
12
  brand?: string;
12
13
  price: number;
13
14
  currency: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustrails/sdk",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Official TypeScript SDK for TrustRails API",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",