increase 1.107.1 → 1.109.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31dd0e339c71d653f969135f930725033d7c8c3ad3d647361edddb93c3be9eda
4
- data.tar.gz: 34ec813d579a2ada8f8b4b17b2d1edd2a1f00b90ff60744625667c4bb0090517
3
+ metadata.gz: 2eee6d91aa1634d4306e2c832e07288e9213ac47e1ce80bb7749bf51876af382
4
+ data.tar.gz: 7ac00baf4f0d1f9d646d30de97fd532002cb628598df734527c82c7cf46259c7
5
5
  SHA512:
6
- metadata.gz: 045010b0738d5c4e334c6efeee8ff814447ea3e1ebde666974f4e6dd48da9e8b8e9353f53a67821f218abacb85470cf21e10a88b8248328304579926276cf62d
7
- data.tar.gz: 45aeee344220d322a2ad1140f271b6b2db2421d5eeafd8024819660d8869e58b7d62d32248394ce5941cb43d78a9bf3bbf23dcaf398e40b395da970a91cb05ac
6
+ metadata.gz: 1b3fa0da84c2cde706862d1edd0304ce0ee3d2c6156ec09e54ab009b557202f40c458392227494f6c12a8138f68949f02ba1538eda51c7cddb02bb2de1f783f2
7
+ data.tar.gz: 141ec264bf54f57aa55a632def927efe0fecad8daeb32c58292360991958cb347d7f0745bdff6545d67803608392145048430ba9f8d7107687636287d439de13
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.109.0 (2025-10-14)
4
+
5
+ Full Changelog: [v1.108.0...v1.109.0](https://github.com/Increase/increase-ruby/compare/v1.108.0...v1.109.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([a4bd69c](https://github.com/Increase/increase-ruby/commit/a4bd69cc63116410a180ab36d84a28b7612b0bdb))
10
+
11
+ ## 1.108.0 (2025-10-14)
12
+
13
+ Full Changelog: [v1.107.1...v1.108.0](https://github.com/Increase/increase-ruby/compare/v1.107.1...v1.108.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([6ccf3d0](https://github.com/Increase/increase-ruby/commit/6ccf3d06f86ceb38b2102577fa126fcb3be51015))
18
+
3
19
  ## 1.107.1 (2025-10-14)
4
20
 
5
21
  Full Changelog: [v1.107.0...v1.107.1](https://github.com/Increase/increase-ruby/compare/v1.107.0...v1.107.1)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.107.1"
18
+ gem "increase", "~> 1.109.0"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -178,6 +178,9 @@ module Increase
178
178
  # Visa: details will be under the `visa` object.
179
179
  VISA = :visa
180
180
 
181
+ # Pulse: details will be under the `pulse` object.
182
+ PULSE = :pulse
183
+
181
184
  # @!method self.values
182
185
  # @return [Array<Symbol>]
183
186
  end
@@ -1321,6 +1321,12 @@ module Increase
1321
1321
  required :category,
1322
1322
  enum: -> { Increase::CardPayment::Element::CardAuthorization::NetworkDetails::Category }
1323
1323
 
1324
+ # @!attribute pulse
1325
+ # Fields specific to the `pulse` network.
1326
+ #
1327
+ # @return [Object, nil]
1328
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
1329
+
1324
1330
  # @!attribute visa
1325
1331
  # Fields specific to the `visa` network.
1326
1332
  #
@@ -1331,11 +1337,13 @@ module Increase
1331
1337
  },
1332
1338
  nil?: true
1333
1339
 
1334
- # @!method initialize(category:, visa:)
1340
+ # @!method initialize(category:, pulse:, visa:)
1335
1341
  # Fields specific to the `network`.
1336
1342
  #
1337
1343
  # @param category [Symbol, Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
1338
1344
  #
1345
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
1346
+ #
1339
1347
  # @param visa [Increase::Models::CardPayment::Element::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
1340
1348
 
1341
1349
  # The payment network used to process this card authorization.
@@ -1347,6 +1355,9 @@ module Increase
1347
1355
  # Visa
1348
1356
  VISA = :visa
1349
1357
 
1358
+ # Pulse
1359
+ PULSE = :pulse
1360
+
1350
1361
  # @!method self.values
1351
1362
  # @return [Array<Symbol>]
1352
1363
  end
@@ -1516,6 +1527,13 @@ module Increase
1516
1527
 
1517
1528
  # @see Increase::Models::CardPayment::Element::CardAuthorization#network_identifiers
1518
1529
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
1530
+ # @!attribute authorization_identification_response
1531
+ # The randomly generated 6-character Authorization Identification Response code
1532
+ # sent back to the acquirer in an approved response.
1533
+ #
1534
+ # @return [String, nil]
1535
+ required :authorization_identification_response, String, nil?: true
1536
+
1519
1537
  # @!attribute retrieval_reference_number
1520
1538
  # A life-cycle identifier used across e.g., an authorization and a reversal.
1521
1539
  # Expected to be unique per acquirer within a window of time. For some card
@@ -1538,13 +1556,15 @@ module Increase
1538
1556
  # @return [String, nil]
1539
1557
  required :transaction_id, String, nil?: true
1540
1558
 
1541
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
1559
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
1542
1560
  # Some parameter documentations has been truncated, see
1543
1561
  # {Increase::Models::CardPayment::Element::CardAuthorization::NetworkIdentifiers}
1544
1562
  # for more details.
1545
1563
  #
1546
1564
  # Network-specific identifiers for a specific request or transaction.
1547
1565
  #
1566
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
1567
+ #
1548
1568
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
1549
1569
  #
1550
1570
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -1851,6 +1871,9 @@ module Increase
1851
1871
  # Visa
1852
1872
  VISA = :visa
1853
1873
 
1874
+ # Pulse
1875
+ PULSE = :pulse
1876
+
1854
1877
  # @!method self.values
1855
1878
  # @return [Array<Symbol>]
1856
1879
  end
@@ -2568,6 +2591,12 @@ module Increase
2568
2591
  # @return [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Category]
2569
2592
  required :category, enum: -> { Increase::CardPayment::Element::CardDecline::NetworkDetails::Category }
2570
2593
 
2594
+ # @!attribute pulse
2595
+ # Fields specific to the `pulse` network.
2596
+ #
2597
+ # @return [Object, nil]
2598
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
2599
+
2571
2600
  # @!attribute visa
2572
2601
  # Fields specific to the `visa` network.
2573
2602
  #
@@ -2578,11 +2607,13 @@ module Increase
2578
2607
  },
2579
2608
  nil?: true
2580
2609
 
2581
- # @!method initialize(category:, visa:)
2610
+ # @!method initialize(category:, pulse:, visa:)
2582
2611
  # Fields specific to the `network`.
2583
2612
  #
2584
2613
  # @param category [Symbol, Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Category] The payment network used to process this card authorization.
2585
2614
  #
2615
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
2616
+ #
2586
2617
  # @param visa [Increase::Models::CardPayment::Element::CardDecline::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
2587
2618
 
2588
2619
  # The payment network used to process this card authorization.
@@ -2594,6 +2625,9 @@ module Increase
2594
2625
  # Visa
2595
2626
  VISA = :visa
2596
2627
 
2628
+ # Pulse
2629
+ PULSE = :pulse
2630
+
2597
2631
  # @!method self.values
2598
2632
  # @return [Array<Symbol>]
2599
2633
  end
@@ -2763,6 +2797,13 @@ module Increase
2763
2797
 
2764
2798
  # @see Increase::Models::CardPayment::Element::CardDecline#network_identifiers
2765
2799
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
2800
+ # @!attribute authorization_identification_response
2801
+ # The randomly generated 6-character Authorization Identification Response code
2802
+ # sent back to the acquirer in an approved response.
2803
+ #
2804
+ # @return [String, nil]
2805
+ required :authorization_identification_response, String, nil?: true
2806
+
2766
2807
  # @!attribute retrieval_reference_number
2767
2808
  # A life-cycle identifier used across e.g., an authorization and a reversal.
2768
2809
  # Expected to be unique per acquirer within a window of time. For some card
@@ -2785,13 +2826,15 @@ module Increase
2785
2826
  # @return [String, nil]
2786
2827
  required :transaction_id, String, nil?: true
2787
2828
 
2788
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
2829
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
2789
2830
  # Some parameter documentations has been truncated, see
2790
2831
  # {Increase::Models::CardPayment::Element::CardDecline::NetworkIdentifiers} for
2791
2832
  # more details.
2792
2833
  #
2793
2834
  # Network-specific identifiers for a specific request or transaction.
2794
2835
  #
2836
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
2837
+ #
2795
2838
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
2796
2839
  #
2797
2840
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -3201,12 +3244,22 @@ module Increase
3201
3244
  # Visa
3202
3245
  VISA = :visa
3203
3246
 
3247
+ # Pulse
3248
+ PULSE = :pulse
3249
+
3204
3250
  # @!method self.values
3205
3251
  # @return [Array<Symbol>]
3206
3252
  end
3207
3253
 
3208
3254
  # @see Increase::Models::CardPayment::Element::CardFuelConfirmation#network_identifiers
3209
3255
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
3256
+ # @!attribute authorization_identification_response
3257
+ # The randomly generated 6-character Authorization Identification Response code
3258
+ # sent back to the acquirer in an approved response.
3259
+ #
3260
+ # @return [String, nil]
3261
+ required :authorization_identification_response, String, nil?: true
3262
+
3210
3263
  # @!attribute retrieval_reference_number
3211
3264
  # A life-cycle identifier used across e.g., an authorization and a reversal.
3212
3265
  # Expected to be unique per acquirer within a window of time. For some card
@@ -3229,13 +3282,15 @@ module Increase
3229
3282
  # @return [String, nil]
3230
3283
  required :transaction_id, String, nil?: true
3231
3284
 
3232
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
3285
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
3233
3286
  # Some parameter documentations has been truncated, see
3234
3287
  # {Increase::Models::CardPayment::Element::CardFuelConfirmation::NetworkIdentifiers}
3235
3288
  # for more details.
3236
3289
  #
3237
3290
  # Network-specific identifiers for a specific request or transaction.
3238
3291
  #
3292
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
3293
+ #
3239
3294
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
3240
3295
  #
3241
3296
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -3819,12 +3874,22 @@ module Increase
3819
3874
  # Visa
3820
3875
  VISA = :visa
3821
3876
 
3877
+ # Pulse
3878
+ PULSE = :pulse
3879
+
3822
3880
  # @!method self.values
3823
3881
  # @return [Array<Symbol>]
3824
3882
  end
3825
3883
 
3826
3884
  # @see Increase::Models::CardPayment::Element::CardIncrement#network_identifiers
3827
3885
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
3886
+ # @!attribute authorization_identification_response
3887
+ # The randomly generated 6-character Authorization Identification Response code
3888
+ # sent back to the acquirer in an approved response.
3889
+ #
3890
+ # @return [String, nil]
3891
+ required :authorization_identification_response, String, nil?: true
3892
+
3828
3893
  # @!attribute retrieval_reference_number
3829
3894
  # A life-cycle identifier used across e.g., an authorization and a reversal.
3830
3895
  # Expected to be unique per acquirer within a window of time. For some card
@@ -3847,13 +3912,15 @@ module Increase
3847
3912
  # @return [String, nil]
3848
3913
  required :transaction_id, String, nil?: true
3849
3914
 
3850
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
3915
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
3851
3916
  # Some parameter documentations has been truncated, see
3852
3917
  # {Increase::Models::CardPayment::Element::CardIncrement::NetworkIdentifiers} for
3853
3918
  # more details.
3854
3919
  #
3855
3920
  # Network-specific identifiers for a specific request or transaction.
3856
3921
  #
3922
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
3923
+ #
3857
3924
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
3858
3925
  #
3859
3926
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -4217,6 +4284,13 @@ module Increase
4217
4284
  # @return [String]
4218
4285
  required :acquirer_reference_number, String
4219
4286
 
4287
+ # @!attribute authorization_identification_response
4288
+ # The randomly generated 6-character Authorization Identification Response code
4289
+ # sent back to the acquirer in an approved response.
4290
+ #
4291
+ # @return [String, nil]
4292
+ required :authorization_identification_response, String, nil?: true
4293
+
4220
4294
  # @!attribute transaction_id
4221
4295
  # A globally unique transaction identifier provided by the card network, used
4222
4296
  # across multiple life-cycle requests.
@@ -4224,7 +4298,7 @@ module Increase
4224
4298
  # @return [String, nil]
4225
4299
  required :transaction_id, String, nil?: true
4226
4300
 
4227
- # @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
4301
+ # @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
4228
4302
  # Some parameter documentations has been truncated, see
4229
4303
  # {Increase::Models::CardPayment::Element::CardRefund::NetworkIdentifiers} for
4230
4304
  # more details.
@@ -4235,6 +4309,8 @@ module Increase
4235
4309
  #
4236
4310
  # @param acquirer_reference_number [String] A globally unique identifier for this settlement.
4237
4311
  #
4312
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
4313
+ #
4238
4314
  # @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
4239
4315
  end
4240
4316
 
@@ -5458,12 +5534,22 @@ module Increase
5458
5534
  # Visa
5459
5535
  VISA = :visa
5460
5536
 
5537
+ # Pulse
5538
+ PULSE = :pulse
5539
+
5461
5540
  # @!method self.values
5462
5541
  # @return [Array<Symbol>]
5463
5542
  end
5464
5543
 
5465
5544
  # @see Increase::Models::CardPayment::Element::CardReversal#network_identifiers
5466
5545
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
5546
+ # @!attribute authorization_identification_response
5547
+ # The randomly generated 6-character Authorization Identification Response code
5548
+ # sent back to the acquirer in an approved response.
5549
+ #
5550
+ # @return [String, nil]
5551
+ required :authorization_identification_response, String, nil?: true
5552
+
5467
5553
  # @!attribute retrieval_reference_number
5468
5554
  # A life-cycle identifier used across e.g., an authorization and a reversal.
5469
5555
  # Expected to be unique per acquirer within a window of time. For some card
@@ -5486,13 +5572,15 @@ module Increase
5486
5572
  # @return [String, nil]
5487
5573
  required :transaction_id, String, nil?: true
5488
5574
 
5489
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
5575
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
5490
5576
  # Some parameter documentations has been truncated, see
5491
5577
  # {Increase::Models::CardPayment::Element::CardReversal::NetworkIdentifiers} for
5492
5578
  # more details.
5493
5579
  #
5494
5580
  # Network-specific identifiers for a specific request or transaction.
5495
5581
  #
5582
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
5583
+ #
5496
5584
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
5497
5585
  #
5498
5586
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -5910,6 +5998,9 @@ module Increase
5910
5998
  # Visa
5911
5999
  VISA = :visa
5912
6000
 
6001
+ # Pulse
6002
+ PULSE = :pulse
6003
+
5913
6004
  # @!method self.values
5914
6005
  # @return [Array<Symbol>]
5915
6006
  end
@@ -5929,6 +6020,13 @@ module Increase
5929
6020
  # @return [String]
5930
6021
  required :acquirer_reference_number, String
5931
6022
 
6023
+ # @!attribute authorization_identification_response
6024
+ # The randomly generated 6-character Authorization Identification Response code
6025
+ # sent back to the acquirer in an approved response.
6026
+ #
6027
+ # @return [String, nil]
6028
+ required :authorization_identification_response, String, nil?: true
6029
+
5932
6030
  # @!attribute transaction_id
5933
6031
  # A globally unique transaction identifier provided by the card network, used
5934
6032
  # across multiple life-cycle requests.
@@ -5936,7 +6034,7 @@ module Increase
5936
6034
  # @return [String, nil]
5937
6035
  required :transaction_id, String, nil?: true
5938
6036
 
5939
- # @!method initialize(acquirer_business_id:, acquirer_reference_number:, transaction_id:)
6037
+ # @!method initialize(acquirer_business_id:, acquirer_reference_number:, authorization_identification_response:, transaction_id:)
5940
6038
  # Some parameter documentations has been truncated, see
5941
6039
  # {Increase::Models::CardPayment::Element::CardSettlement::NetworkIdentifiers} for
5942
6040
  # more details.
@@ -5947,6 +6045,8 @@ module Increase
5947
6045
  #
5948
6046
  # @param acquirer_reference_number [String] A globally unique identifier for this settlement.
5949
6047
  #
6048
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
6049
+ #
5950
6050
  # @param transaction_id [String, nil] A globally unique transaction identifier provided by the card network, used acro
5951
6051
  end
5952
6052
 
@@ -7584,6 +7684,12 @@ module Increase
7584
7684
  # @return [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Category]
7585
7685
  required :category, enum: -> { Increase::CardPayment::Element::CardValidation::NetworkDetails::Category }
7586
7686
 
7687
+ # @!attribute pulse
7688
+ # Fields specific to the `pulse` network.
7689
+ #
7690
+ # @return [Object, nil]
7691
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
7692
+
7587
7693
  # @!attribute visa
7588
7694
  # Fields specific to the `visa` network.
7589
7695
  #
@@ -7594,11 +7700,13 @@ module Increase
7594
7700
  },
7595
7701
  nil?: true
7596
7702
 
7597
- # @!method initialize(category:, visa:)
7703
+ # @!method initialize(category:, pulse:, visa:)
7598
7704
  # Fields specific to the `network`.
7599
7705
  #
7600
7706
  # @param category [Symbol, Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Category] The payment network used to process this card authorization.
7601
7707
  #
7708
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
7709
+ #
7602
7710
  # @param visa [Increase::Models::CardPayment::Element::CardValidation::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
7603
7711
 
7604
7712
  # The payment network used to process this card authorization.
@@ -7610,6 +7718,9 @@ module Increase
7610
7718
  # Visa
7611
7719
  VISA = :visa
7612
7720
 
7721
+ # Pulse
7722
+ PULSE = :pulse
7723
+
7613
7724
  # @!method self.values
7614
7725
  # @return [Array<Symbol>]
7615
7726
  end
@@ -7779,6 +7890,13 @@ module Increase
7779
7890
 
7780
7891
  # @see Increase::Models::CardPayment::Element::CardValidation#network_identifiers
7781
7892
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
7893
+ # @!attribute authorization_identification_response
7894
+ # The randomly generated 6-character Authorization Identification Response code
7895
+ # sent back to the acquirer in an approved response.
7896
+ #
7897
+ # @return [String, nil]
7898
+ required :authorization_identification_response, String, nil?: true
7899
+
7782
7900
  # @!attribute retrieval_reference_number
7783
7901
  # A life-cycle identifier used across e.g., an authorization and a reversal.
7784
7902
  # Expected to be unique per acquirer within a window of time. For some card
@@ -7801,13 +7919,15 @@ module Increase
7801
7919
  # @return [String, nil]
7802
7920
  required :transaction_id, String, nil?: true
7803
7921
 
7804
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
7922
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
7805
7923
  # Some parameter documentations has been truncated, see
7806
7924
  # {Increase::Models::CardPayment::Element::CardValidation::NetworkIdentifiers} for
7807
7925
  # more details.
7808
7926
  #
7809
7927
  # Network-specific identifiers for a specific request or transaction.
7810
7928
  #
7929
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
7930
+ #
7811
7931
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
7812
7932
  #
7813
7933
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -1142,6 +1142,12 @@ module Increase
1142
1142
  required :category,
1143
1143
  enum: -> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category }
1144
1144
 
1145
+ # @!attribute pulse
1146
+ # Fields specific to the `pulse` network.
1147
+ #
1148
+ # @return [Object, nil]
1149
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
1150
+
1145
1151
  # @!attribute visa
1146
1152
  # Fields specific to the `visa` network.
1147
1153
  #
@@ -1150,11 +1156,13 @@ module Increase
1150
1156
  -> { Increase::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa },
1151
1157
  nil?: true
1152
1158
 
1153
- # @!method initialize(category:, visa:)
1159
+ # @!method initialize(category:, pulse:, visa:)
1154
1160
  # Fields specific to the `network`.
1155
1161
  #
1156
1162
  # @param category [Symbol, Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Category] The payment network used to process this card authorization.
1157
1163
  #
1164
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
1165
+ #
1158
1166
  # @param visa [Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
1159
1167
 
1160
1168
  # The payment network used to process this card authorization.
@@ -1166,6 +1174,9 @@ module Increase
1166
1174
  # Visa
1167
1175
  VISA = :visa
1168
1176
 
1177
+ # Pulse
1178
+ PULSE = :pulse
1179
+
1169
1180
  # @!method self.values
1170
1181
  # @return [Array<Symbol>]
1171
1182
  end
@@ -1335,6 +1346,13 @@ module Increase
1335
1346
 
1336
1347
  # @see Increase::Models::DeclinedTransaction::Source::CardDecline#network_identifiers
1337
1348
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
1349
+ # @!attribute authorization_identification_response
1350
+ # The randomly generated 6-character Authorization Identification Response code
1351
+ # sent back to the acquirer in an approved response.
1352
+ #
1353
+ # @return [String, nil]
1354
+ required :authorization_identification_response, String, nil?: true
1355
+
1338
1356
  # @!attribute retrieval_reference_number
1339
1357
  # A life-cycle identifier used across e.g., an authorization and a reversal.
1340
1358
  # Expected to be unique per acquirer within a window of time. For some card
@@ -1357,13 +1375,15 @@ module Increase
1357
1375
  # @return [String, nil]
1358
1376
  required :transaction_id, String, nil?: true
1359
1377
 
1360
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
1378
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
1361
1379
  # Some parameter documentations has been truncated, see
1362
1380
  # {Increase::Models::DeclinedTransaction::Source::CardDecline::NetworkIdentifiers}
1363
1381
  # for more details.
1364
1382
  #
1365
1383
  # Network-specific identifiers for a specific request or transaction.
1366
1384
  #
1385
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
1386
+ #
1367
1387
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
1368
1388
  #
1369
1389
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -1180,6 +1180,12 @@ module Increase
1180
1180
  required :category,
1181
1181
  enum: -> { Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category }
1182
1182
 
1183
+ # @!attribute pulse
1184
+ # Fields specific to the `pulse` network.
1185
+ #
1186
+ # @return [Object, nil]
1187
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
1188
+
1183
1189
  # @!attribute visa
1184
1190
  # Fields specific to the `visa` network.
1185
1191
  #
@@ -1188,11 +1194,13 @@ module Increase
1188
1194
  -> { Increase::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa },
1189
1195
  nil?: true
1190
1196
 
1191
- # @!method initialize(category:, visa:)
1197
+ # @!method initialize(category:, pulse:, visa:)
1192
1198
  # Fields specific to the `network`.
1193
1199
  #
1194
1200
  # @param category [Symbol, Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
1195
1201
  #
1202
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
1203
+ #
1196
1204
  # @param visa [Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
1197
1205
 
1198
1206
  # The payment network used to process this card authorization.
@@ -1204,6 +1212,9 @@ module Increase
1204
1212
  # Visa
1205
1213
  VISA = :visa
1206
1214
 
1215
+ # Pulse
1216
+ PULSE = :pulse
1217
+
1207
1218
  # @!method self.values
1208
1219
  # @return [Array<Symbol>]
1209
1220
  end
@@ -1373,6 +1384,13 @@ module Increase
1373
1384
 
1374
1385
  # @see Increase::Models::PendingTransaction::Source::CardAuthorization#network_identifiers
1375
1386
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
1387
+ # @!attribute authorization_identification_response
1388
+ # The randomly generated 6-character Authorization Identification Response code
1389
+ # sent back to the acquirer in an approved response.
1390
+ #
1391
+ # @return [String, nil]
1392
+ required :authorization_identification_response, String, nil?: true
1393
+
1376
1394
  # @!attribute retrieval_reference_number
1377
1395
  # A life-cycle identifier used across e.g., an authorization and a reversal.
1378
1396
  # Expected to be unique per acquirer within a window of time. For some card
@@ -1395,13 +1413,15 @@ module Increase
1395
1413
  # @return [String, nil]
1396
1414
  required :transaction_id, String, nil?: true
1397
1415
 
1398
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
1416
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
1399
1417
  # Some parameter documentations has been truncated, see
1400
1418
  # {Increase::Models::PendingTransaction::Source::CardAuthorization::NetworkIdentifiers}
1401
1419
  # for more details.
1402
1420
  #
1403
1421
  # Network-specific identifiers for a specific request or transaction.
1404
1422
  #
1423
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
1424
+ #
1405
1425
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
1406
1426
  #
1407
1427
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per
@@ -902,6 +902,12 @@ module Increase
902
902
  # @return [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Category]
903
903
  required :category, enum: -> { Increase::RealTimeDecision::CardAuthorization::NetworkDetails::Category }
904
904
 
905
+ # @!attribute pulse
906
+ # Fields specific to the `pulse` network.
907
+ #
908
+ # @return [Object, nil]
909
+ required :pulse, Increase::Internal::Type::Unknown, nil?: true
910
+
905
911
  # @!attribute visa
906
912
  # Fields specific to the `visa` network.
907
913
  #
@@ -912,11 +918,13 @@ module Increase
912
918
  },
913
919
  nil?: true
914
920
 
915
- # @!method initialize(category:, visa:)
921
+ # @!method initialize(category:, pulse:, visa:)
916
922
  # Fields specific to the `network`.
917
923
  #
918
924
  # @param category [Symbol, Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Category] The payment network used to process this card authorization.
919
925
  #
926
+ # @param pulse [Object, nil] Fields specific to the `pulse` network.
927
+ #
920
928
  # @param visa [Increase::Models::RealTimeDecision::CardAuthorization::NetworkDetails::Visa, nil] Fields specific to the `visa` network.
921
929
 
922
930
  # The payment network used to process this card authorization.
@@ -928,6 +936,9 @@ module Increase
928
936
  # Visa
929
937
  VISA = :visa
930
938
 
939
+ # Pulse
940
+ PULSE = :pulse
941
+
931
942
  # @!method self.values
932
943
  # @return [Array<Symbol>]
933
944
  end
@@ -1097,6 +1108,13 @@ module Increase
1097
1108
 
1098
1109
  # @see Increase::Models::RealTimeDecision::CardAuthorization#network_identifiers
1099
1110
  class NetworkIdentifiers < Increase::Internal::Type::BaseModel
1111
+ # @!attribute authorization_identification_response
1112
+ # The randomly generated 6-character Authorization Identification Response code
1113
+ # sent back to the acquirer in an approved response.
1114
+ #
1115
+ # @return [String, nil]
1116
+ required :authorization_identification_response, String, nil?: true
1117
+
1100
1118
  # @!attribute retrieval_reference_number
1101
1119
  # A life-cycle identifier used across e.g., an authorization and a reversal.
1102
1120
  # Expected to be unique per acquirer within a window of time. For some card
@@ -1119,13 +1137,15 @@ module Increase
1119
1137
  # @return [String, nil]
1120
1138
  required :transaction_id, String, nil?: true
1121
1139
 
1122
- # @!method initialize(retrieval_reference_number:, trace_number:, transaction_id:)
1140
+ # @!method initialize(authorization_identification_response:, retrieval_reference_number:, trace_number:, transaction_id:)
1123
1141
  # Some parameter documentations has been truncated, see
1124
1142
  # {Increase::Models::RealTimeDecision::CardAuthorization::NetworkIdentifiers} for
1125
1143
  # more details.
1126
1144
  #
1127
1145
  # Network-specific identifiers for a specific request or transaction.
1128
1146
  #
1147
+ # @param authorization_identification_response [String, nil] The randomly generated 6-character Authorization Identification Response code se
1148
+ #
1129
1149
  # @param retrieval_reference_number [String, nil] A life-cycle identifier used across e.g., an authorization and a reversal. Expec
1130
1150
  #
1131
1151
  # @param trace_number [String, nil] A counter used to verify an individual authorization. Expected to be unique per