@blockchyp/blockchyp-ts 2.30.0 → 2.30.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blockchyp/blockchyp-ts",
3
- "version": "2.30.0",
3
+ "version": "2.30.1",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/models.ts CHANGED
@@ -2643,6 +2643,16 @@ export class AuthorizationRequest {
2643
2643
  */
2644
2644
  orderDate?: Date;
2645
2645
 
2646
+ /**
2647
+ * The number of shipments the original authorization will be broken into.
2648
+ */
2649
+ shipmentCount: number | null = null;
2650
+
2651
+ /**
2652
+ * Which shipment this particular capture is for.
2653
+ */
2654
+ shipmentNumber: number | null = null;
2655
+
2646
2656
  // Constructor with default values for optional fields
2647
2657
  constructor(
2648
2658
  timeout: number | null = null,
@@ -2727,6 +2737,8 @@ export class AuthorizationRequest {
2727
2737
  shipFromPostalCode: string | undefined = undefined,
2728
2738
  shipToPostalCode: string | undefined = undefined,
2729
2739
  orderDate: Date | undefined = undefined,
2740
+ shipmentCount: number | null = null,
2741
+ shipmentNumber: number | null = null,
2730
2742
  ) {
2731
2743
  this.timeout = timeout;
2732
2744
  this.test = test;
@@ -2810,6 +2822,8 @@ export class AuthorizationRequest {
2810
2822
  this.shipFromPostalCode = shipFromPostalCode;
2811
2823
  this.shipToPostalCode = shipToPostalCode;
2812
2824
  this.orderDate = orderDate;
2825
+ this.shipmentCount = shipmentCount;
2826
+ this.shipmentNumber = shipmentNumber;
2813
2827
  }
2814
2828
  }
2815
2829