@blockchyp/blockchyp-ts 2.30.3 → 2.30.4

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.3",
3
+ "version": "2.30.4",
4
4
  "description": "BlockChyp Typescript Client",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
package/src/models.ts CHANGED
@@ -2036,6 +2036,11 @@ export class CustomerToken {
2036
2036
  */
2037
2037
  cardHolderName?: string;
2038
2038
 
2039
+ /**
2040
+ * Whether the token was enrolled with a CVV value present.
2041
+ */
2042
+ hasCvv: boolean | null = null;
2043
+
2039
2044
  /**
2040
2045
  * Models customer records associated with a payment token.
2041
2046
  */
@@ -2058,6 +2063,7 @@ export class CustomerToken {
2058
2063
  address: string | undefined = undefined,
2059
2064
  country: string | undefined = undefined,
2060
2065
  cardHolderName: string | undefined = undefined,
2066
+ hasCvv: boolean | null = null,
2061
2067
  customers: Customer[] | null = null,
2062
2068
  ) {
2063
2069
  this.token = token;
@@ -2075,6 +2081,7 @@ export class CustomerToken {
2075
2081
  this.address = address;
2076
2082
  this.country = country;
2077
2083
  this.cardHolderName = cardHolderName;
2084
+ this.hasCvv = hasCvv;
2078
2085
  this.customers = customers;
2079
2086
  }
2080
2087
  }
@@ -5571,6 +5578,11 @@ export class EnrollResponse {
5571
5578
  */
5572
5579
  bin?: string;
5573
5580
 
5581
+ /**
5582
+ * Whether the token was enrolled with a CVV value present.
5583
+ */
5584
+ hasCvv: boolean | null = null;
5585
+
5574
5586
  // Constructor with default values for optional fields
5575
5587
  constructor(
5576
5588
  success: boolean | null = null,
@@ -5614,6 +5626,7 @@ export class EnrollResponse {
5614
5626
  bankName: string | undefined = undefined,
5615
5627
  tokenHash: string | undefined = undefined,
5616
5628
  bin: string | undefined = undefined,
5629
+ hasCvv: boolean | null = null,
5617
5630
  ) {
5618
5631
  this.success = success;
5619
5632
  this.error = error;
@@ -5656,6 +5669,7 @@ export class EnrollResponse {
5656
5669
  this.bankName = bankName;
5657
5670
  this.tokenHash = tokenHash;
5658
5671
  this.bin = bin;
5672
+ this.hasCvv = hasCvv;
5659
5673
  }
5660
5674
  }
5661
5675
 
@@ -9734,7 +9748,7 @@ export class BatchDetailsResponse {
9734
9748
  netDeposit: string | null = null;
9735
9749
 
9736
9750
  /**
9737
- * The daily fees for this batch
9751
+ * The daily fees for this batch.
9738
9752
  */
9739
9753
  dailyFees: string | null = null;
9740
9754