increase 0.505.0 → 0.507.0

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +1 -1
  3. package/resources/card-payments.d.mts +1231 -123
  4. package/resources/card-payments.d.mts.map +1 -1
  5. package/resources/card-payments.d.ts +1231 -123
  6. package/resources/card-payments.d.ts.map +1 -1
  7. package/resources/declined-transactions.d.mts +123 -0
  8. package/resources/declined-transactions.d.mts.map +1 -1
  9. package/resources/declined-transactions.d.ts +123 -0
  10. package/resources/declined-transactions.d.ts.map +1 -1
  11. package/resources/event-subscriptions.d.mts +6 -2
  12. package/resources/event-subscriptions.d.mts.map +1 -1
  13. package/resources/event-subscriptions.d.ts +6 -2
  14. package/resources/event-subscriptions.d.ts.map +1 -1
  15. package/resources/events.d.mts +7 -3
  16. package/resources/events.d.mts.map +1 -1
  17. package/resources/events.d.ts +7 -3
  18. package/resources/events.d.ts.map +1 -1
  19. package/resources/pending-transactions.d.mts +123 -0
  20. package/resources/pending-transactions.d.mts.map +1 -1
  21. package/resources/pending-transactions.d.ts +123 -0
  22. package/resources/pending-transactions.d.ts.map +1 -1
  23. package/resources/transactions.d.mts +369 -0
  24. package/resources/transactions.d.mts.map +1 -1
  25. package/resources/transactions.d.ts +369 -0
  26. package/resources/transactions.d.ts.map +1 -1
  27. package/src/resources/card-payments.ts +1592 -159
  28. package/src/resources/declined-transactions.ts +159 -0
  29. package/src/resources/event-subscriptions.ts +8 -0
  30. package/src/resources/events.ts +10 -0
  31. package/src/resources/pending-transactions.ts +159 -0
  32. package/src/resources/transactions.ts +477 -0
  33. package/src/version.ts +1 -1
  34. package/version.d.mts +1 -1
  35. package/version.d.ts +1 -1
  36. package/version.js +1 -1
  37. package/version.mjs +1 -1
@@ -601,6 +601,11 @@ export namespace DeclinedTransaction {
601
601
  | 'suspected_card_testing'
602
602
  | 'suspected_fraud';
603
603
 
604
+ /**
605
+ * The scheme fees associated with this card decline.
606
+ */
607
+ scheme_fees: Array<CardDecline.SchemeFee>;
608
+
604
609
  /**
605
610
  * The terminal identifier (commonly abbreviated as TID) of the terminal the card
606
611
  * is transacting with.
@@ -1065,6 +1070,160 @@ export namespace DeclinedTransaction {
1065
1070
  transaction_id: string | null;
1066
1071
  }
1067
1072
 
1073
+ export interface SchemeFee {
1074
+ /**
1075
+ * The fee amount given as a string containing a decimal number.
1076
+ */
1077
+ amount: string;
1078
+
1079
+ /**
1080
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
1081
+ * created.
1082
+ */
1083
+ created_at: string;
1084
+
1085
+ /**
1086
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
1087
+ * reimbursement.
1088
+ *
1089
+ * - `USD` - US Dollar (USD)
1090
+ */
1091
+ currency: 'USD';
1092
+
1093
+ /**
1094
+ * The type of fee being assessed.
1095
+ *
1096
+ * - `visa_international_service_assessment_single_currency` - International
1097
+ * Service Assessment (ISA) single-currency is a fee assessed by the card network
1098
+ * for cross-border transactions presented and settled in the same currency.
1099
+ * - `visa_international_service_assessment_cross_currency` - International Service
1100
+ * Assessment (ISA) cross-currency is a fee assessed by the card network for
1101
+ * cross-border transactions presented and settled in different currencies.
1102
+ * - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
1103
+ * Settlement System processing for POS (Point-Of-Sale) authorization
1104
+ * transactions. Authorization is the process of approving or declining the
1105
+ * transaction amount specified. The fee is assessed to the Issuer.
1106
+ * - `visa_authorization_international_point_of_sale` - Activity and charges for
1107
+ * Visa Settlement System processing for POS (Point-Of-Sale) International
1108
+ * authorization transactions. Authorization is the process of approving or
1109
+ * declining the transaction amount specified. The fee is assessed to the Issuer.
1110
+ * - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
1111
+ * Settlement System processing for Canada Region POS (Point-of-Sale)
1112
+ * authorization transactions. Authorization is the process of approving or
1113
+ * declining the transaction amount specified.
1114
+ * - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
1115
+ * Settlement System authorization processing of POS (Point-Of-Sale) reversal
1116
+ * transactions. Authorization reversal represents a VSS message that undoes the
1117
+ * complete or partial actions of a previous authorization request.
1118
+ * - `visa_authorization_reversal_international_point_of_sale` - Activity only for
1119
+ * Visa Settlement System authorization processing of POS (Point-Of-Sale)
1120
+ * International reversal transactions. Authorization reversal represents a VSS
1121
+ * message that undoes the complete or partial actions of a previous
1122
+ * authorization request.
1123
+ * - `visa_authorization_address_verification_service` - A per Address Verification
1124
+ * Service (AVS) result fee. Applies to all usable AVS result codes.
1125
+ * - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
1126
+ * tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
1127
+ * in real-time. Activity related to Purchase (includes Signature Authenticated
1128
+ * Visa and PIN Authenticated Visa Debit (PAVD) transactions).
1129
+ * - `visa_message_transmission` - Issuer Transactions Visa represents a charge
1130
+ * based on total actual monthly processing (Visa transactions only) through a
1131
+ * VisaNet Access Point (VAP). Charges are assessed to the processor for each
1132
+ * VisaNet Access Point.
1133
+ * - `visa_account_verification_domestic` - Activity, per inquiry, related to the
1134
+ * domestic Issuer for Account Number Verification.
1135
+ * - `visa_account_verification_international` - Activity, per inquiry, related to
1136
+ * the international Issuer for Account Number Verification.
1137
+ * - `visa_account_verification_canada` - Activity, per inquiry, related to the
1138
+ * US-Canada Issuer for Account Number Verification.
1139
+ * - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
1140
+ * issuers and is based on the monthly sales volume on Commercial and Government
1141
+ * Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
1142
+ * - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
1143
+ * charged to issuers and is based on the monthly sales volume of Consumer Debit
1144
+ * or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
1145
+ * transaction is excluded from the sales volume calculation.
1146
+ * - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
1147
+ * to issuers and is based on the monthly sales volume on Business Debit,
1148
+ * Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
1149
+ * portion is included in the sales volume calculation with the exception of a
1150
+ * Debit and Prepaid card transactions.
1151
+ * - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
1152
+ * charged to issuers and is based on the monthly sales volume on Commercial and
1153
+ * Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
1154
+ * transactions.
1155
+ * - `visa_purchase_domestic` - Activity and fees for the processing of a sales
1156
+ * draft original for a purchase transaction.
1157
+ * - `visa_purchase_international` - Activity and fees for the processing of an
1158
+ * international sales draft original for a purchase transaction.
1159
+ * - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
1160
+ * Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
1161
+ * Apple Pay transactions.
1162
+ * - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
1163
+ * Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
1164
+ * transactions.
1165
+ * - `visa_clearing_transmission` - A per transaction fee assessed for Base II
1166
+ * financial draft - Issuer.
1167
+ * - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
1168
+ * Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
1169
+ * - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
1170
+ * OCTs for all business application identifiers (BAIs) other than money
1171
+ * transfer-bank initiated (BI). BASE II transactions.
1172
+ * - `visa_service_commercial_credit` - Issuer card service fee for Commercial
1173
+ * Credit cards.
1174
+ * - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
1175
+ * for Commercial Credit cards.
1176
+ * - `visa_community_growth_acceleration_program` - Issuer Community Growth
1177
+ * Acceleration Program Fee.
1178
+ * - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
1179
+ * for Commercial Credit cards.
1180
+ * - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
1181
+ * for processing transactions on its network.
1182
+ */
1183
+ fee_type:
1184
+ | 'visa_international_service_assessment_single_currency'
1185
+ | 'visa_international_service_assessment_cross_currency'
1186
+ | 'visa_authorization_domestic_point_of_sale'
1187
+ | 'visa_authorization_international_point_of_sale'
1188
+ | 'visa_authorization_canada_point_of_sale'
1189
+ | 'visa_authorization_reversal_point_of_sale'
1190
+ | 'visa_authorization_reversal_international_point_of_sale'
1191
+ | 'visa_authorization_address_verification_service'
1192
+ | 'visa_advanced_authorization'
1193
+ | 'visa_message_transmission'
1194
+ | 'visa_account_verification_domestic'
1195
+ | 'visa_account_verification_international'
1196
+ | 'visa_account_verification_canada'
1197
+ | 'visa_corporate_acceptance_fee'
1198
+ | 'visa_consumer_debit_acceptance_fee'
1199
+ | 'visa_business_debit_acceptance_fee'
1200
+ | 'visa_purchasing_acceptance_fee'
1201
+ | 'visa_purchase_domestic'
1202
+ | 'visa_purchase_international'
1203
+ | 'visa_credit_purchase_token'
1204
+ | 'visa_debit_purchase_token'
1205
+ | 'visa_clearing_transmission'
1206
+ | 'visa_direct_authorization'
1207
+ | 'visa_direct_transaction_domestic'
1208
+ | 'visa_service_commercial_credit'
1209
+ | 'visa_advertising_service_commercial_credit'
1210
+ | 'visa_community_growth_acceleration_program'
1211
+ | 'visa_processing_guarantee_commercial_credit'
1212
+ | 'pulse_switch_fee';
1213
+
1214
+ /**
1215
+ * The fixed component of the fee, if applicable, given in major units of the fee
1216
+ * amount.
1217
+ */
1218
+ fixed_component: string | null;
1219
+
1220
+ /**
1221
+ * The variable rate component of the fee, if applicable, given as a decimal (e.g.,
1222
+ * 0.015 for 1.5%).
1223
+ */
1224
+ variable_rate: string | null;
1225
+ }
1226
+
1068
1227
  /**
1069
1228
  * Fields related to verification of cardholder-provided values.
1070
1229
  */
@@ -255,6 +255,8 @@ export namespace EventSubscription {
255
255
  * created.
256
256
  * - `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
257
257
  * updated.
258
+ * - `lockbox_address.created` - Occurs whenever a Lockbox Address is created.
259
+ * - `lockbox_address.updated` - Occurs whenever a Lockbox Address is updated.
258
260
  * - `lockbox.created` - Occurs whenever a Lockbox is created.
259
261
  * - `lockbox.updated` - Occurs whenever a Lockbox is updated.
260
262
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
@@ -389,6 +391,8 @@ export namespace EventSubscription {
389
391
  | 'intrafi_exclusion.updated'
390
392
  | 'legacy_card_dispute.created'
391
393
  | 'legacy_card_dispute.updated'
394
+ | 'lockbox_address.created'
395
+ | 'lockbox_address.updated'
392
396
  | 'lockbox.created'
393
397
  | 'lockbox.updated'
394
398
  | 'oauth_connection.created'
@@ -580,6 +584,8 @@ export namespace EventSubscriptionCreateParams {
580
584
  * created.
581
585
  * - `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
582
586
  * updated.
587
+ * - `lockbox_address.created` - Occurs whenever a Lockbox Address is created.
588
+ * - `lockbox_address.updated` - Occurs whenever a Lockbox Address is updated.
583
589
  * - `lockbox.created` - Occurs whenever a Lockbox is created.
584
590
  * - `lockbox.updated` - Occurs whenever a Lockbox is updated.
585
591
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
@@ -714,6 +720,8 @@ export namespace EventSubscriptionCreateParams {
714
720
  | 'intrafi_exclusion.updated'
715
721
  | 'legacy_card_dispute.created'
716
722
  | 'legacy_card_dispute.updated'
723
+ | 'lockbox_address.created'
724
+ | 'lockbox_address.updated'
717
725
  | 'lockbox.created'
718
726
  | 'lockbox.updated'
719
727
  | 'oauth_connection.created'
@@ -191,6 +191,8 @@ export interface Event {
191
191
  * created.
192
192
  * - `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
193
193
  * updated.
194
+ * - `lockbox_address.created` - Occurs whenever a Lockbox Address is created.
195
+ * - `lockbox_address.updated` - Occurs whenever a Lockbox Address is updated.
194
196
  * - `lockbox.created` - Occurs whenever a Lockbox is created.
195
197
  * - `lockbox.updated` - Occurs whenever a Lockbox is updated.
196
198
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
@@ -325,6 +327,8 @@ export interface Event {
325
327
  | 'intrafi_exclusion.updated'
326
328
  | 'legacy_card_dispute.created'
327
329
  | 'legacy_card_dispute.updated'
330
+ | 'lockbox_address.created'
331
+ | 'lockbox_address.updated'
328
332
  | 'lockbox.created'
329
333
  | 'lockbox.updated'
330
334
  | 'oauth_connection.created'
@@ -509,6 +513,8 @@ export interface UnwrapWebhookEvent {
509
513
  * created.
510
514
  * - `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
511
515
  * updated.
516
+ * - `lockbox_address.created` - Occurs whenever a Lockbox Address is created.
517
+ * - `lockbox_address.updated` - Occurs whenever a Lockbox Address is updated.
512
518
  * - `lockbox.created` - Occurs whenever a Lockbox is created.
513
519
  * - `lockbox.updated` - Occurs whenever a Lockbox is updated.
514
520
  * - `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
@@ -643,6 +649,8 @@ export interface UnwrapWebhookEvent {
643
649
  | 'intrafi_exclusion.updated'
644
650
  | 'legacy_card_dispute.created'
645
651
  | 'legacy_card_dispute.updated'
652
+ | 'lockbox_address.created'
653
+ | 'lockbox_address.updated'
646
654
  | 'lockbox.created'
647
655
  | 'lockbox.updated'
648
656
  | 'oauth_connection.created'
@@ -784,6 +792,8 @@ export namespace EventListParams {
784
792
  | 'intrafi_exclusion.updated'
785
793
  | 'legacy_card_dispute.created'
786
794
  | 'legacy_card_dispute.updated'
795
+ | 'lockbox_address.created'
796
+ | 'lockbox_address.updated'
787
797
  | 'lockbox.created'
788
798
  | 'lockbox.updated'
789
799
  | 'oauth_connection.created'
@@ -634,6 +634,11 @@ export namespace PendingTransaction {
634
634
  */
635
635
  real_time_decision_id: string | null;
636
636
 
637
+ /**
638
+ * The scheme fees associated with this card authorization.
639
+ */
640
+ scheme_fees: Array<CardAuthorization.SchemeFee>;
641
+
637
642
  /**
638
643
  * The terminal identifier (commonly abbreviated as TID) of the terminal the card
639
644
  * is transacting with.
@@ -1104,6 +1109,160 @@ export namespace PendingTransaction {
1104
1109
  transaction_id: string | null;
1105
1110
  }
1106
1111
 
1112
+ export interface SchemeFee {
1113
+ /**
1114
+ * The fee amount given as a string containing a decimal number.
1115
+ */
1116
+ amount: string;
1117
+
1118
+ /**
1119
+ * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the fee was
1120
+ * created.
1121
+ */
1122
+ created_at: string;
1123
+
1124
+ /**
1125
+ * The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the fee
1126
+ * reimbursement.
1127
+ *
1128
+ * - `USD` - US Dollar (USD)
1129
+ */
1130
+ currency: 'USD';
1131
+
1132
+ /**
1133
+ * The type of fee being assessed.
1134
+ *
1135
+ * - `visa_international_service_assessment_single_currency` - International
1136
+ * Service Assessment (ISA) single-currency is a fee assessed by the card network
1137
+ * for cross-border transactions presented and settled in the same currency.
1138
+ * - `visa_international_service_assessment_cross_currency` - International Service
1139
+ * Assessment (ISA) cross-currency is a fee assessed by the card network for
1140
+ * cross-border transactions presented and settled in different currencies.
1141
+ * - `visa_authorization_domestic_point_of_sale` - Activity and charges for Visa
1142
+ * Settlement System processing for POS (Point-Of-Sale) authorization
1143
+ * transactions. Authorization is the process of approving or declining the
1144
+ * transaction amount specified. The fee is assessed to the Issuer.
1145
+ * - `visa_authorization_international_point_of_sale` - Activity and charges for
1146
+ * Visa Settlement System processing for POS (Point-Of-Sale) International
1147
+ * authorization transactions. Authorization is the process of approving or
1148
+ * declining the transaction amount specified. The fee is assessed to the Issuer.
1149
+ * - `visa_authorization_canada_point_of_sale` - Activity and charges for Visa
1150
+ * Settlement System processing for Canada Region POS (Point-of-Sale)
1151
+ * authorization transactions. Authorization is the process of approving or
1152
+ * declining the transaction amount specified.
1153
+ * - `visa_authorization_reversal_point_of_sale` - Activity only for Visa
1154
+ * Settlement System authorization processing of POS (Point-Of-Sale) reversal
1155
+ * transactions. Authorization reversal represents a VSS message that undoes the
1156
+ * complete or partial actions of a previous authorization request.
1157
+ * - `visa_authorization_reversal_international_point_of_sale` - Activity only for
1158
+ * Visa Settlement System authorization processing of POS (Point-Of-Sale)
1159
+ * International reversal transactions. Authorization reversal represents a VSS
1160
+ * message that undoes the complete or partial actions of a previous
1161
+ * authorization request.
1162
+ * - `visa_authorization_address_verification_service` - A per Address Verification
1163
+ * Service (AVS) result fee. Applies to all usable AVS result codes.
1164
+ * - `visa_advanced_authorization` - Advanced Authorization is a fraud detection
1165
+ * tool that monitors and risk evaluates 100 percent of US VisaNet authorizations
1166
+ * in real-time. Activity related to Purchase (includes Signature Authenticated
1167
+ * Visa and PIN Authenticated Visa Debit (PAVD) transactions).
1168
+ * - `visa_message_transmission` - Issuer Transactions Visa represents a charge
1169
+ * based on total actual monthly processing (Visa transactions only) through a
1170
+ * VisaNet Access Point (VAP). Charges are assessed to the processor for each
1171
+ * VisaNet Access Point.
1172
+ * - `visa_account_verification_domestic` - Activity, per inquiry, related to the
1173
+ * domestic Issuer for Account Number Verification.
1174
+ * - `visa_account_verification_international` - Activity, per inquiry, related to
1175
+ * the international Issuer for Account Number Verification.
1176
+ * - `visa_account_verification_canada` - Activity, per inquiry, related to the
1177
+ * US-Canada Issuer for Account Number Verification.
1178
+ * - `visa_corporate_acceptance_fee` - The Corporate Acceptance Fee is charged to
1179
+ * issuers and is based on the monthly sales volume on Commercial and Government
1180
+ * Debit, Prepaid, Credit, Charge, or Deferred Debit card transactions.
1181
+ * - `visa_consumer_debit_acceptance_fee` - The Consumer Debit Acceptance Fee is
1182
+ * charged to issuers and is based on the monthly sales volume of Consumer Debit
1183
+ * or Prepaid card transactions. The cashback portion of a Debit and Prepaid card
1184
+ * transaction is excluded from the sales volume calculation.
1185
+ * - `visa_business_debit_acceptance_fee` - The Business Acceptance Fee is charged
1186
+ * to issuers and is based on the monthly sales volume on Business Debit,
1187
+ * Prepaid, Credit, Charge, or Deferred Debit card transactions. The cashback
1188
+ * portion is included in the sales volume calculation with the exception of a
1189
+ * Debit and Prepaid card transactions.
1190
+ * - `visa_purchasing_acceptance_fee` - The Purchasing Card Acceptance Fee is
1191
+ * charged to issuers and is based on the monthly sales volume on Commercial and
1192
+ * Government Debit, Prepaid, Credit, Charge, or Deferred Debit card
1193
+ * transactions.
1194
+ * - `visa_purchase_domestic` - Activity and fees for the processing of a sales
1195
+ * draft original for a purchase transaction.
1196
+ * - `visa_purchase_international` - Activity and fees for the processing of an
1197
+ * international sales draft original for a purchase transaction.
1198
+ * - `visa_credit_purchase_token` - Apple Pay Credit Product Token Purchase
1199
+ * Original Transactions. This fee is billed by Visa on behalf of Apple Inc. for
1200
+ * Apple Pay transactions.
1201
+ * - `visa_debit_purchase_token` - Apple Pay Debit Product Token Purchase Original
1202
+ * Transactions. This fee is billed by Visa on behalf of Apple Inc. for Apple Pay
1203
+ * transactions.
1204
+ * - `visa_clearing_transmission` - A per transaction fee assessed for Base II
1205
+ * financial draft - Issuer.
1206
+ * - `visa_direct_authorization` - Issuer charge for Non-Financial OCT/AFT
1207
+ * Authorization 0100 and Declined Financial OCT/AFT 0200 transactions.
1208
+ * - `visa_direct_transaction_domestic` - Data processing charge for Visa Direct
1209
+ * OCTs for all business application identifiers (BAIs) other than money
1210
+ * transfer-bank initiated (BI). BASE II transactions.
1211
+ * - `visa_service_commercial_credit` - Issuer card service fee for Commercial
1212
+ * Credit cards.
1213
+ * - `visa_advertising_service_commercial_credit` - Issuer Advertising Service Fee
1214
+ * for Commercial Credit cards.
1215
+ * - `visa_community_growth_acceleration_program` - Issuer Community Growth
1216
+ * Acceleration Program Fee.
1217
+ * - `visa_processing_guarantee_commercial_credit` - Issuer Processing Guarantee
1218
+ * for Commercial Credit cards.
1219
+ * - `pulse_switch_fee` - Pulse Switch Fee is a fee charged by the Pulse network
1220
+ * for processing transactions on its network.
1221
+ */
1222
+ fee_type:
1223
+ | 'visa_international_service_assessment_single_currency'
1224
+ | 'visa_international_service_assessment_cross_currency'
1225
+ | 'visa_authorization_domestic_point_of_sale'
1226
+ | 'visa_authorization_international_point_of_sale'
1227
+ | 'visa_authorization_canada_point_of_sale'
1228
+ | 'visa_authorization_reversal_point_of_sale'
1229
+ | 'visa_authorization_reversal_international_point_of_sale'
1230
+ | 'visa_authorization_address_verification_service'
1231
+ | 'visa_advanced_authorization'
1232
+ | 'visa_message_transmission'
1233
+ | 'visa_account_verification_domestic'
1234
+ | 'visa_account_verification_international'
1235
+ | 'visa_account_verification_canada'
1236
+ | 'visa_corporate_acceptance_fee'
1237
+ | 'visa_consumer_debit_acceptance_fee'
1238
+ | 'visa_business_debit_acceptance_fee'
1239
+ | 'visa_purchasing_acceptance_fee'
1240
+ | 'visa_purchase_domestic'
1241
+ | 'visa_purchase_international'
1242
+ | 'visa_credit_purchase_token'
1243
+ | 'visa_debit_purchase_token'
1244
+ | 'visa_clearing_transmission'
1245
+ | 'visa_direct_authorization'
1246
+ | 'visa_direct_transaction_domestic'
1247
+ | 'visa_service_commercial_credit'
1248
+ | 'visa_advertising_service_commercial_credit'
1249
+ | 'visa_community_growth_acceleration_program'
1250
+ | 'visa_processing_guarantee_commercial_credit'
1251
+ | 'pulse_switch_fee';
1252
+
1253
+ /**
1254
+ * The fixed component of the fee, if applicable, given in major units of the fee
1255
+ * amount.
1256
+ */
1257
+ fixed_component: string | null;
1258
+
1259
+ /**
1260
+ * The variable rate component of the fee, if applicable, given as a decimal (e.g.,
1261
+ * 0.015 for 1.5%).
1262
+ */
1263
+ variable_rate: string | null;
1264
+ }
1265
+
1107
1266
  /**
1108
1267
  * Fields related to verification of cardholder-provided values.
1109
1268
  */