@dotdev/apparel21-sdk
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -5,2 +5,9 @@ # Changelog | ||
### [0.0.4](https://gitlab.com/dotdevv/packages/apparel21-sdk/compare/v0.0.3...v0.0.4) (2021-03-11) | ||
### Bug Fixes | ||
* update productCode type to string ([e952b1c](https://gitlab.com/dotdevv/packages/apparel21-sdk/commit/e952b1cc4327d936352e04fc6e97d38f33c00f78)) | ||
### [0.0.3](https://gitlab.com/dotdevv/packages/apparel21-sdk/compare/v0.0.2...v0.0.3) (2021-03-10) | ||
@@ -7,0 +14,0 @@ |
@@ -85,3 +85,3 @@ export declare type RequestFunction = (config: AP21Request) => any; | ||
id: number; | ||
productCode: number; | ||
productCode: string; | ||
name: string; | ||
@@ -88,0 +88,0 @@ notes: ProductNote[]; |
@@ -48,3 +48,3 @@ "use strict"; | ||
id: parseInt(product.Id[0], 10), | ||
productCode: parseInt(product.Code[0], 10), | ||
productCode: product.Code[0], | ||
name: product.Name[0], | ||
@@ -51,0 +51,0 @@ description: product.Description[0], |
{ | ||
"name": "@dotdev/apparel21-sdk", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"license": "UNLICENSED", | ||
@@ -5,0 +5,0 @@ "description": "Apparel21 Interface Library", |
Sorry, the diff of this file is not supported yet
186134