@commercelayer/sdk 6.2.0 → 6.3.0

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/lib/index.d.mts CHANGED
@@ -10245,6 +10245,11 @@ interface StockTransfer extends Resource {
10245
10245
  versions?: Version[] | null;
10246
10246
  }
10247
10247
  interface StockTransferCreate extends ResourceCreate {
10248
+ /**
10249
+ * Unique identifier for the stock transfer (numeric)..
10250
+ * @example ```"1234"```
10251
+ */
10252
+ number?: string | null;
10248
10253
  /**
10249
10254
  * The code of the associated SKU..
10250
10255
  * @example ```"TSHIRTMM000000FFFFFFXLXX"```
@@ -10262,6 +10267,11 @@ interface StockTransferCreate extends ResourceCreate {
10262
10267
  line_item?: LineItemRel | null;
10263
10268
  }
10264
10269
  interface StockTransferUpdate extends ResourceUpdate {
10270
+ /**
10271
+ * Unique identifier for the stock transfer (numeric)..
10272
+ * @example ```"1234"```
10273
+ */
10274
+ number?: string | null;
10265
10275
  /**
10266
10276
  * The code of the associated SKU..
10267
10277
  * @example ```"TSHIRTMM000000FFFFFFXLXX"```
@@ -15000,7 +15010,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
15000
15010
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
15001
15011
  declare class CommerceLayerClient {
15002
15012
  #private;
15003
- readonly openApiSchemaVersion = "5.3.1";
15013
+ readonly openApiSchemaVersion = "5.3.2";
15004
15014
  constructor(config: CommerceLayerInitConfig);
15005
15015
  get addresses(): Addresses;
15006
15016
  get adjustments(): Adjustments;
package/lib/index.d.ts CHANGED
@@ -10245,6 +10245,11 @@ interface StockTransfer extends Resource {
10245
10245
  versions?: Version[] | null;
10246
10246
  }
10247
10247
  interface StockTransferCreate extends ResourceCreate {
10248
+ /**
10249
+ * Unique identifier for the stock transfer (numeric)..
10250
+ * @example ```"1234"```
10251
+ */
10252
+ number?: string | null;
10248
10253
  /**
10249
10254
  * The code of the associated SKU..
10250
10255
  * @example ```"TSHIRTMM000000FFFFFFXLXX"```
@@ -10262,6 +10267,11 @@ interface StockTransferCreate extends ResourceCreate {
10262
10267
  line_item?: LineItemRel | null;
10263
10268
  }
10264
10269
  interface StockTransferUpdate extends ResourceUpdate {
10270
+ /**
10271
+ * Unique identifier for the stock transfer (numeric)..
10272
+ * @example ```"1234"```
10273
+ */
10274
+ number?: string | null;
10265
10275
  /**
10266
10276
  * The code of the associated SKU..
10267
10277
  * @example ```"TSHIRTMM000000FFFFFFXLXX"```
@@ -15000,7 +15010,7 @@ type CommerceLayerInitConfig = SdkConfig & ResourcesInitConfig;
15000
15010
  type CommerceLayerConfig = Partial<CommerceLayerInitConfig>;
15001
15011
  declare class CommerceLayerClient {
15002
15012
  #private;
15003
- readonly openApiSchemaVersion = "5.3.1";
15013
+ readonly openApiSchemaVersion = "5.3.2";
15004
15014
  constructor(config: CommerceLayerInitConfig);
15005
15015
  get addresses(): Addresses;
15006
15016
  get adjustments(): Adjustments;