@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/_bundles/blockchyp.js +11 -1
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/models.d.ts +9 -1
- package/lib/src/models.js +11 -1
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +14 -0
package/package.json
CHANGED
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
|
|