@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/_bundles/blockchyp.js
CHANGED
|
@@ -31522,7 +31522,7 @@ exports.WhiteListedCard = WhiteListedCard;
|
|
|
31522
31522
|
*/
|
|
31523
31523
|
class AuthorizationRequest {
|
|
31524
31524
|
// Constructor with default values for optional fields
|
|
31525
|
-
constructor(timeout = null, test = null, transactionRef = undefined, autogeneratedRef = null, async = null, queue = null, waitForRemovedCard = false, force = false, orderRef = undefined, destinationAccount = undefined, testCase = undefined, token = undefined, track1 = undefined, track2 = undefined, pan = undefined, routingNumber = undefined, cardholderName = undefined, expMonth = undefined, expYear = undefined, cvv = undefined, address = undefined, postalCode = undefined, country = undefined, manualEntry = false, ksn = undefined, pinBlock = undefined, cardType = undefined, paymentType = undefined, currencyCode = null, amount = null, taxExempt = null, surcharge = null, cashDiscount = null, sigFile = undefined, sigFormat = undefined, sigWidth = 0, disableSignature = false, tipAmount = undefined, taxAmount = undefined, terminalName = undefined, resetConnection = null, transactionId = undefined, onlineAuthCode = undefined, enroll = false, bypassDupeFilter = false, description = undefined, promptForTip = false, cashBackEnabled = false, cardOnFile = false, recurring = false, cit = false, mit = false, subscription = false, purchaseOrderNumber = undefined, supplierReferenceNumber = undefined, lineItems = null, altPrices = undefined, customer = undefined, roundingMode = undefined, healthcareMetadata = undefined, cryptocurrency = undefined, cryptoNetwork = undefined, cryptoReceiveAddress = undefined, paymentRequestLabel = undefined, paymentRequestMessage = undefined, simulateChipRejection = false, simulateOutOfOrderReversal = false, asyncReversals = false, passthroughSurcharge = undefined, healthcare = false, healthcareTotal = undefined, ebtTotal = undefined, cardMetadataLookup = false, totalDiscountAmount = undefined, shippingAmount = undefined, dutyAmount = undefined, processorId = undefined, externalCustomerId = undefined, destinationCountryCode = undefined, shipFromPostalCode = undefined, shipToPostalCode = undefined, orderDate = undefined) {
|
|
31525
|
+
constructor(timeout = null, test = null, transactionRef = undefined, autogeneratedRef = null, async = null, queue = null, waitForRemovedCard = false, force = false, orderRef = undefined, destinationAccount = undefined, testCase = undefined, token = undefined, track1 = undefined, track2 = undefined, pan = undefined, routingNumber = undefined, cardholderName = undefined, expMonth = undefined, expYear = undefined, cvv = undefined, address = undefined, postalCode = undefined, country = undefined, manualEntry = false, ksn = undefined, pinBlock = undefined, cardType = undefined, paymentType = undefined, currencyCode = null, amount = null, taxExempt = null, surcharge = null, cashDiscount = null, sigFile = undefined, sigFormat = undefined, sigWidth = 0, disableSignature = false, tipAmount = undefined, taxAmount = undefined, terminalName = undefined, resetConnection = null, transactionId = undefined, onlineAuthCode = undefined, enroll = false, bypassDupeFilter = false, description = undefined, promptForTip = false, cashBackEnabled = false, cardOnFile = false, recurring = false, cit = false, mit = false, subscription = false, purchaseOrderNumber = undefined, supplierReferenceNumber = undefined, lineItems = null, altPrices = undefined, customer = undefined, roundingMode = undefined, healthcareMetadata = undefined, cryptocurrency = undefined, cryptoNetwork = undefined, cryptoReceiveAddress = undefined, paymentRequestLabel = undefined, paymentRequestMessage = undefined, simulateChipRejection = false, simulateOutOfOrderReversal = false, asyncReversals = false, passthroughSurcharge = undefined, healthcare = false, healthcareTotal = undefined, ebtTotal = undefined, cardMetadataLookup = false, totalDiscountAmount = undefined, shippingAmount = undefined, dutyAmount = undefined, processorId = undefined, externalCustomerId = undefined, destinationCountryCode = undefined, shipFromPostalCode = undefined, shipToPostalCode = undefined, orderDate = undefined, shipmentCount = null, shipmentNumber = null) {
|
|
31526
31526
|
/**
|
|
31527
31527
|
* The request timeout in seconds.
|
|
31528
31528
|
*/
|
|
@@ -31576,6 +31576,14 @@ class AuthorizationRequest {
|
|
|
31576
31576
|
* An item to display. Can be overwritten or appended, based on the request type.
|
|
31577
31577
|
*/
|
|
31578
31578
|
this.lineItems = null;
|
|
31579
|
+
/**
|
|
31580
|
+
* The number of shipments the original authorization will be broken into.
|
|
31581
|
+
*/
|
|
31582
|
+
this.shipmentCount = null;
|
|
31583
|
+
/**
|
|
31584
|
+
* Which shipment this particular capture is for.
|
|
31585
|
+
*/
|
|
31586
|
+
this.shipmentNumber = null;
|
|
31579
31587
|
this.timeout = timeout;
|
|
31580
31588
|
this.test = test;
|
|
31581
31589
|
this.transactionRef = transactionRef;
|
|
@@ -31658,6 +31666,8 @@ class AuthorizationRequest {
|
|
|
31658
31666
|
this.shipFromPostalCode = shipFromPostalCode;
|
|
31659
31667
|
this.shipToPostalCode = shipToPostalCode;
|
|
31660
31668
|
this.orderDate = orderDate;
|
|
31669
|
+
this.shipmentCount = shipmentCount;
|
|
31670
|
+
this.shipmentNumber = shipmentNumber;
|
|
31661
31671
|
}
|
|
31662
31672
|
}
|
|
31663
31673
|
exports.AuthorizationRequest = AuthorizationRequest;
|