@bigcommerce/checkout-sdk 1.381.4 → 1.382.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/docs/README.md CHANGED
@@ -51,6 +51,7 @@
51
51
 
52
52
  ### Interfaces
53
53
 
54
+ - [AchInstrument](interfaces/AchInstrument.md)
54
55
  - [Address](interfaces/Address.md)
55
56
  - [AddressRequestBody](interfaces/AddressRequestBody.md)
56
57
  - [AdyenAdditionalActionCallbacks](interfaces/AdyenAdditionalActionCallbacks.md)
@@ -111,7 +112,6 @@
111
112
  - [BoltBuyNowInitializeOptions](interfaces/BoltBuyNowInitializeOptions.md)
112
113
  - [BoltCustomerInitializeOptions](interfaces/BoltCustomerInitializeOptions.md)
113
114
  - [BoltPaymentInitializeOptions](interfaces/BoltPaymentInitializeOptions.md)
114
- - [BraintreeAchInstrument](interfaces/BraintreeAchInstrument.md)
115
115
  - [BraintreeError](interfaces/BraintreeError.md)
116
116
  - [BraintreeError_2](interfaces/BraintreeError_2.md)
117
117
  - [BraintreeFormFieldCardTypeChangeEventData](interfaces/BraintreeFormFieldCardTypeChangeEventData.md)
@@ -466,7 +466,7 @@
466
466
 
467
467
  ### AccountInstrument
468
468
 
469
- Ƭ **AccountInstrument**: [`PayPalInstrument`](interfaces/PayPalInstrument.md) \| [`BankInstrument`](interfaces/BankInstrument.md)
469
+ Ƭ **AccountInstrument**: [`PayPalInstrument`](interfaces/PayPalInstrument.md) \| [`BankInstrument`](interfaces/BankInstrument.md) \| [`AchInstrument`](interfaces/AchInstrument.md)
470
470
 
471
471
  ___
472
472
 
@@ -727,7 +727,7 @@ ___
727
727
 
728
728
  ### PaymentInstrument
729
729
 
730
- Ƭ **PaymentInstrument**: [`CardInstrument`](interfaces/CardInstrument.md) \| [`AccountInstrument`](README.md#accountinstrument) \| [`BraintreeAchInstrument`](interfaces/BraintreeAchInstrument.md)
730
+ Ƭ **PaymentInstrument**: [`CardInstrument`](interfaces/CardInstrument.md) \| [`AccountInstrument`](README.md#accountinstrument)
731
731
 
732
732
  ___
733
733
 
@@ -0,0 +1,94 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / AchInstrument
2
+
3
+ # Interface: AchInstrument
4
+
5
+ ## Hierarchy
6
+
7
+ - [`BaseAccountInstrument`](BaseAccountInstrument.md)
8
+
9
+ ↳ **`AchInstrument`**
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [accountNumber](AchInstrument.md#accountnumber)
16
+ - [bigpayToken](AchInstrument.md#bigpaytoken)
17
+ - [defaultInstrument](AchInstrument.md#defaultinstrument)
18
+ - [issuer](AchInstrument.md#issuer)
19
+ - [method](AchInstrument.md#method)
20
+ - [provider](AchInstrument.md#provider)
21
+ - [trustedShippingAddress](AchInstrument.md#trustedshippingaddress)
22
+ - [type](AchInstrument.md#type)
23
+
24
+ ## Properties
25
+
26
+ ### accountNumber
27
+
28
+ • **accountNumber**: `string`
29
+
30
+ ___
31
+
32
+ ### bigpayToken
33
+
34
+ • **bigpayToken**: `string`
35
+
36
+ #### Inherited from
37
+
38
+ [BaseAccountInstrument](BaseAccountInstrument.md).[bigpayToken](BaseAccountInstrument.md#bigpaytoken)
39
+
40
+ ___
41
+
42
+ ### defaultInstrument
43
+
44
+ • **defaultInstrument**: `boolean`
45
+
46
+ #### Inherited from
47
+
48
+ [BaseAccountInstrument](BaseAccountInstrument.md).[defaultInstrument](BaseAccountInstrument.md#defaultinstrument)
49
+
50
+ ___
51
+
52
+ ### issuer
53
+
54
+ • **issuer**: `string`
55
+
56
+ ___
57
+
58
+ ### method
59
+
60
+ • **method**: ``"ach"``
61
+
62
+ #### Overrides
63
+
64
+ [BaseAccountInstrument](BaseAccountInstrument.md).[method](BaseAccountInstrument.md#method)
65
+
66
+ ___
67
+
68
+ ### provider
69
+
70
+ • **provider**: `string`
71
+
72
+ #### Inherited from
73
+
74
+ [BaseAccountInstrument](BaseAccountInstrument.md).[provider](BaseAccountInstrument.md#provider)
75
+
76
+ ___
77
+
78
+ ### trustedShippingAddress
79
+
80
+ • **trustedShippingAddress**: `boolean`
81
+
82
+ #### Inherited from
83
+
84
+ [BaseAccountInstrument](BaseAccountInstrument.md).[trustedShippingAddress](BaseAccountInstrument.md#trustedshippingaddress)
85
+
86
+ ___
87
+
88
+ ### type
89
+
90
+ • **type**: ``"bank"``
91
+
92
+ #### Overrides
93
+
94
+ [BaseAccountInstrument](BaseAccountInstrument.md).[type](BaseAccountInstrument.md#type)
@@ -15,7 +15,6 @@
15
15
  - [accountNumber](BankInstrument.md#accountnumber)
16
16
  - [bigpayToken](BankInstrument.md#bigpaytoken)
17
17
  - [defaultInstrument](BankInstrument.md#defaultinstrument)
18
- - [externalId](BankInstrument.md#externalid)
19
18
  - [iban](BankInstrument.md#iban)
20
19
  - [issuer](BankInstrument.md#issuer)
21
20
  - [method](BankInstrument.md#method)
@@ -51,16 +50,6 @@ ___
51
50
 
52
51
  ___
53
52
 
54
- ### externalId
55
-
56
- • **externalId**: `string`
57
-
58
- #### Inherited from
59
-
60
- [BaseAccountInstrument](BaseAccountInstrument.md).[externalId](BaseAccountInstrument.md#externalid)
61
-
62
- ___
63
-
64
53
  ### iban
65
54
 
66
55
  • **iban**: `string`
@@ -8,6 +8,8 @@
8
8
 
9
9
  ↳ **`BaseAccountInstrument`**
10
10
 
11
+ ↳↳ [`AchInstrument`](AchInstrument.md)
12
+
11
13
  ↳↳ [`BankInstrument`](BankInstrument.md)
12
14
 
13
15
  ↳↳ [`PayPalInstrument`](PayPalInstrument.md)
@@ -18,7 +20,6 @@
18
20
 
19
21
  - [bigpayToken](BaseAccountInstrument.md#bigpaytoken)
20
22
  - [defaultInstrument](BaseAccountInstrument.md#defaultinstrument)
21
- - [externalId](BaseAccountInstrument.md#externalid)
22
23
  - [method](BaseAccountInstrument.md#method)
23
24
  - [provider](BaseAccountInstrument.md#provider)
24
25
  - [trustedShippingAddress](BaseAccountInstrument.md#trustedshippingaddress)
@@ -46,12 +47,6 @@ ___
46
47
 
47
48
  ___
48
49
 
49
- ### externalId
50
-
51
- • **externalId**: `string`
52
-
53
- ___
54
-
55
50
  ### method
56
51
 
57
52
  • **method**: `string`
@@ -8,8 +8,6 @@
8
8
 
9
9
  ↳ [`BaseAccountInstrument`](BaseAccountInstrument.md)
10
10
 
11
- ↳ [`BraintreeAchInstrument`](BraintreeAchInstrument.md)
12
-
13
11
  ↳ [`CardInstrument`](CardInstrument.md)
14
12
 
15
13
  ## Table of contents
@@ -46,10 +46,6 @@ ___
46
46
 
47
47
  • **externalId**: `string`
48
48
 
49
- #### Inherited from
50
-
51
- [BaseAccountInstrument](BaseAccountInstrument.md).[externalId](BaseAccountInstrument.md#externalid)
52
-
53
49
  ___
54
50
 
55
51
  ### method
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigcommerce/checkout-sdk",
3
- "version": "1.381.4",
3
+ "version": "1.382.1",
4
4
  "description": "BigCommerce Checkout JavaScript SDK",
5
5
  "license": "MIT",
6
6
  "main": "dist/checkout-sdk.js",
@@ -1,94 +0,0 @@
1
- [@bigcommerce/checkout-sdk](../README.md) / BraintreeAchInstrument
2
-
3
- # Interface: BraintreeAchInstrument
4
-
5
- ## Hierarchy
6
-
7
- - [`BaseInstrument`](BaseInstrument.md)
8
-
9
- ↳ **`BraintreeAchInstrument`**
10
-
11
- ## Table of contents
12
-
13
- ### Properties
14
-
15
- - [accountNumber](BraintreeAchInstrument.md#accountnumber)
16
- - [bigpayToken](BraintreeAchInstrument.md#bigpaytoken)
17
- - [defaultInstrument](BraintreeAchInstrument.md#defaultinstrument)
18
- - [issuer](BraintreeAchInstrument.md#issuer)
19
- - [method](BraintreeAchInstrument.md#method)
20
- - [provider](BraintreeAchInstrument.md#provider)
21
- - [trustedShippingAddress](BraintreeAchInstrument.md#trustedshippingaddress)
22
- - [type](BraintreeAchInstrument.md#type)
23
-
24
- ## Properties
25
-
26
- ### accountNumber
27
-
28
- • **accountNumber**: `string`
29
-
30
- ___
31
-
32
- ### bigpayToken
33
-
34
- • **bigpayToken**: `string`
35
-
36
- #### Inherited from
37
-
38
- [BaseInstrument](BaseInstrument.md).[bigpayToken](BaseInstrument.md#bigpaytoken)
39
-
40
- ___
41
-
42
- ### defaultInstrument
43
-
44
- • **defaultInstrument**: `boolean`
45
-
46
- #### Inherited from
47
-
48
- [BaseInstrument](BaseInstrument.md).[defaultInstrument](BaseInstrument.md#defaultinstrument)
49
-
50
- ___
51
-
52
- ### issuer
53
-
54
- • **issuer**: `string`
55
-
56
- ___
57
-
58
- ### method
59
-
60
- • **method**: ``"ach"``
61
-
62
- #### Overrides
63
-
64
- [BaseInstrument](BaseInstrument.md).[method](BaseInstrument.md#method)
65
-
66
- ___
67
-
68
- ### provider
69
-
70
- • **provider**: `string`
71
-
72
- #### Inherited from
73
-
74
- [BaseInstrument](BaseInstrument.md).[provider](BaseInstrument.md#provider)
75
-
76
- ___
77
-
78
- ### trustedShippingAddress
79
-
80
- • **trustedShippingAddress**: `boolean`
81
-
82
- #### Inherited from
83
-
84
- [BaseInstrument](BaseInstrument.md).[trustedShippingAddress](BaseInstrument.md#trustedshippingaddress)
85
-
86
- ___
87
-
88
- ### type
89
-
90
- • **type**: ``"bank"``
91
-
92
- #### Overrides
93
-
94
- [BaseInstrument](BaseInstrument.md).[type](BaseInstrument.md#type)