@blockchyp/blockchyp-ts 2.30.4 → 2.30.5
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 +100 -65
- package/_bundles/blockchyp.js.map +1 -1
- package/_bundles/blockchyp.min.js +1 -1
- package/_bundles/blockchyp.min.js.LICENSE.txt +1 -1
- package/_bundles/blockchyp.min.js.map +1 -1
- package/lib/src/models.d.ts +13 -1
- package/lib/src/models.js +4 -1
- package/lib/src/models.js.map +1 -1
- package/package.json +1 -1
- package/src/models.ts +21 -0
package/package.json
CHANGED
package/src/models.ts
CHANGED
|
@@ -2665,6 +2665,21 @@ export class AuthorizationRequest {
|
|
|
2665
2665
|
*/
|
|
2666
2666
|
externalPartnerMetadata?: string;
|
|
2667
2667
|
|
|
2668
|
+
/**
|
|
2669
|
+
* The external customer's email address.
|
|
2670
|
+
*/
|
|
2671
|
+
externalCustomerEmail?: string;
|
|
2672
|
+
|
|
2673
|
+
/**
|
|
2674
|
+
* The external customer's phone number.
|
|
2675
|
+
*/
|
|
2676
|
+
externalCustomerPhone?: string;
|
|
2677
|
+
|
|
2678
|
+
/**
|
|
2679
|
+
* The external customer's company name.
|
|
2680
|
+
*/
|
|
2681
|
+
externalCustomerCompany?: string;
|
|
2682
|
+
|
|
2668
2683
|
// Constructor with default values for optional fields
|
|
2669
2684
|
constructor(
|
|
2670
2685
|
timeout: number | null = null,
|
|
@@ -2752,6 +2767,9 @@ export class AuthorizationRequest {
|
|
|
2752
2767
|
shipmentCount: number | null = null,
|
|
2753
2768
|
shipmentNumber: number | null = null,
|
|
2754
2769
|
externalPartnerMetadata: string | undefined = undefined,
|
|
2770
|
+
externalCustomerEmail: string | undefined = undefined,
|
|
2771
|
+
externalCustomerPhone: string | undefined = undefined,
|
|
2772
|
+
externalCustomerCompany: string | undefined = undefined,
|
|
2755
2773
|
) {
|
|
2756
2774
|
this.timeout = timeout;
|
|
2757
2775
|
this.test = test;
|
|
@@ -2838,6 +2856,9 @@ export class AuthorizationRequest {
|
|
|
2838
2856
|
this.shipmentCount = shipmentCount;
|
|
2839
2857
|
this.shipmentNumber = shipmentNumber;
|
|
2840
2858
|
this.externalPartnerMetadata = externalPartnerMetadata;
|
|
2859
|
+
this.externalCustomerEmail = externalCustomerEmail;
|
|
2860
|
+
this.externalCustomerPhone = externalCustomerPhone;
|
|
2861
|
+
this.externalCustomerCompany = externalCustomerCompany;
|
|
2841
2862
|
}
|
|
2842
2863
|
}
|
|
2843
2864
|
|