increase 1.108.0 → 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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_payment.rb +80 -8
- data/lib/increase/models/declined_transaction.rb +10 -1
- data/lib/increase/models/pending_transaction.rb +10 -1
- data/lib/increase/models/real_time_decision.rb +10 -1
- data/lib/increase/models/transaction.rb +30 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_payment.rbi +80 -0
- data/rbi/increase/models/declined_transaction.rbi +10 -0
- data/rbi/increase/models/pending_transaction.rbi +10 -0
- data/rbi/increase/models/real_time_decision.rbi +10 -0
- data/rbi/increase/models/transaction.rbi +30 -0
- data/sig/increase/models/card_payment.rbs +40 -0
- data/sig/increase/models/declined_transaction.rbs +5 -0
- data/sig/increase/models/pending_transaction.rbs +5 -0
- data/sig/increase/models/real_time_decision.rbs +5 -0
- data/sig/increase/models/transaction.rbs +15 -0
- metadata +1 -1
|
@@ -1003,12 +1003,15 @@ module Increase
|
|
|
1003
1003
|
|
|
1004
1004
|
type network_identifiers =
|
|
1005
1005
|
{
|
|
1006
|
+
authorization_identification_response: String?,
|
|
1006
1007
|
retrieval_reference_number: String?,
|
|
1007
1008
|
trace_number: String?,
|
|
1008
1009
|
transaction_id: String?
|
|
1009
1010
|
}
|
|
1010
1011
|
|
|
1011
1012
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1013
|
+
attr_accessor authorization_identification_response: String?
|
|
1014
|
+
|
|
1012
1015
|
attr_accessor retrieval_reference_number: String?
|
|
1013
1016
|
|
|
1014
1017
|
attr_accessor trace_number: String?
|
|
@@ -1016,12 +1019,14 @@ module Increase
|
|
|
1016
1019
|
attr_accessor transaction_id: String?
|
|
1017
1020
|
|
|
1018
1021
|
def initialize: (
|
|
1022
|
+
authorization_identification_response: String?,
|
|
1019
1023
|
retrieval_reference_number: String?,
|
|
1020
1024
|
trace_number: String?,
|
|
1021
1025
|
transaction_id: String?
|
|
1022
1026
|
) -> void
|
|
1023
1027
|
|
|
1024
1028
|
def to_hash: -> {
|
|
1029
|
+
authorization_identification_response: String?,
|
|
1025
1030
|
retrieval_reference_number: String?,
|
|
1026
1031
|
trace_number: String?,
|
|
1027
1032
|
transaction_id: String?
|
|
@@ -1872,12 +1877,15 @@ module Increase
|
|
|
1872
1877
|
|
|
1873
1878
|
type network_identifiers =
|
|
1874
1879
|
{
|
|
1880
|
+
authorization_identification_response: String?,
|
|
1875
1881
|
retrieval_reference_number: String?,
|
|
1876
1882
|
trace_number: String?,
|
|
1877
1883
|
transaction_id: String?
|
|
1878
1884
|
}
|
|
1879
1885
|
|
|
1880
1886
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1887
|
+
attr_accessor authorization_identification_response: String?
|
|
1888
|
+
|
|
1881
1889
|
attr_accessor retrieval_reference_number: String?
|
|
1882
1890
|
|
|
1883
1891
|
attr_accessor trace_number: String?
|
|
@@ -1885,12 +1893,14 @@ module Increase
|
|
|
1885
1893
|
attr_accessor transaction_id: String?
|
|
1886
1894
|
|
|
1887
1895
|
def initialize: (
|
|
1896
|
+
authorization_identification_response: String?,
|
|
1888
1897
|
retrieval_reference_number: String?,
|
|
1889
1898
|
trace_number: String?,
|
|
1890
1899
|
transaction_id: String?
|
|
1891
1900
|
) -> void
|
|
1892
1901
|
|
|
1893
1902
|
def to_hash: -> {
|
|
1903
|
+
authorization_identification_response: String?,
|
|
1894
1904
|
retrieval_reference_number: String?,
|
|
1895
1905
|
trace_number: String?,
|
|
1896
1906
|
transaction_id: String?
|
|
@@ -2280,12 +2290,15 @@ module Increase
|
|
|
2280
2290
|
|
|
2281
2291
|
type network_identifiers =
|
|
2282
2292
|
{
|
|
2293
|
+
authorization_identification_response: String?,
|
|
2283
2294
|
retrieval_reference_number: String?,
|
|
2284
2295
|
trace_number: String?,
|
|
2285
2296
|
transaction_id: String?
|
|
2286
2297
|
}
|
|
2287
2298
|
|
|
2288
2299
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
2300
|
+
attr_accessor authorization_identification_response: String?
|
|
2301
|
+
|
|
2289
2302
|
attr_accessor retrieval_reference_number: String?
|
|
2290
2303
|
|
|
2291
2304
|
attr_accessor trace_number: String?
|
|
@@ -2293,12 +2306,14 @@ module Increase
|
|
|
2293
2306
|
attr_accessor transaction_id: String?
|
|
2294
2307
|
|
|
2295
2308
|
def initialize: (
|
|
2309
|
+
authorization_identification_response: String?,
|
|
2296
2310
|
retrieval_reference_number: String?,
|
|
2297
2311
|
trace_number: String?,
|
|
2298
2312
|
transaction_id: String?
|
|
2299
2313
|
) -> void
|
|
2300
2314
|
|
|
2301
2315
|
def to_hash: -> {
|
|
2316
|
+
authorization_identification_response: String?,
|
|
2302
2317
|
retrieval_reference_number: String?,
|
|
2303
2318
|
trace_number: String?,
|
|
2304
2319
|
transaction_id: String?
|
|
@@ -2626,12 +2641,15 @@ module Increase
|
|
|
2626
2641
|
|
|
2627
2642
|
type network_identifiers =
|
|
2628
2643
|
{
|
|
2644
|
+
authorization_identification_response: String?,
|
|
2629
2645
|
retrieval_reference_number: String?,
|
|
2630
2646
|
trace_number: String?,
|
|
2631
2647
|
transaction_id: String?
|
|
2632
2648
|
}
|
|
2633
2649
|
|
|
2634
2650
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
2651
|
+
attr_accessor authorization_identification_response: String?
|
|
2652
|
+
|
|
2635
2653
|
attr_accessor retrieval_reference_number: String?
|
|
2636
2654
|
|
|
2637
2655
|
attr_accessor trace_number: String?
|
|
@@ -2639,12 +2657,14 @@ module Increase
|
|
|
2639
2657
|
attr_accessor transaction_id: String?
|
|
2640
2658
|
|
|
2641
2659
|
def initialize: (
|
|
2660
|
+
authorization_identification_response: String?,
|
|
2642
2661
|
retrieval_reference_number: String?,
|
|
2643
2662
|
trace_number: String?,
|
|
2644
2663
|
transaction_id: String?
|
|
2645
2664
|
) -> void
|
|
2646
2665
|
|
|
2647
2666
|
def to_hash: -> {
|
|
2667
|
+
authorization_identification_response: String?,
|
|
2648
2668
|
retrieval_reference_number: String?,
|
|
2649
2669
|
trace_number: String?,
|
|
2650
2670
|
transaction_id: String?
|
|
@@ -2899,6 +2919,7 @@ module Increase
|
|
|
2899
2919
|
{
|
|
2900
2920
|
acquirer_business_id: String,
|
|
2901
2921
|
acquirer_reference_number: String,
|
|
2922
|
+
authorization_identification_response: String?,
|
|
2902
2923
|
transaction_id: String?
|
|
2903
2924
|
}
|
|
2904
2925
|
|
|
@@ -2907,17 +2928,21 @@ module Increase
|
|
|
2907
2928
|
|
|
2908
2929
|
attr_accessor acquirer_reference_number: String
|
|
2909
2930
|
|
|
2931
|
+
attr_accessor authorization_identification_response: String?
|
|
2932
|
+
|
|
2910
2933
|
attr_accessor transaction_id: String?
|
|
2911
2934
|
|
|
2912
2935
|
def initialize: (
|
|
2913
2936
|
acquirer_business_id: String,
|
|
2914
2937
|
acquirer_reference_number: String,
|
|
2938
|
+
authorization_identification_response: String?,
|
|
2915
2939
|
transaction_id: String?
|
|
2916
2940
|
) -> void
|
|
2917
2941
|
|
|
2918
2942
|
def to_hash: -> {
|
|
2919
2943
|
acquirer_business_id: String,
|
|
2920
2944
|
acquirer_reference_number: String,
|
|
2945
|
+
authorization_identification_response: String?,
|
|
2921
2946
|
transaction_id: String?
|
|
2922
2947
|
}
|
|
2923
2948
|
end
|
|
@@ -3846,12 +3871,15 @@ module Increase
|
|
|
3846
3871
|
|
|
3847
3872
|
type network_identifiers =
|
|
3848
3873
|
{
|
|
3874
|
+
authorization_identification_response: String?,
|
|
3849
3875
|
retrieval_reference_number: String?,
|
|
3850
3876
|
trace_number: String?,
|
|
3851
3877
|
transaction_id: String?
|
|
3852
3878
|
}
|
|
3853
3879
|
|
|
3854
3880
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
3881
|
+
attr_accessor authorization_identification_response: String?
|
|
3882
|
+
|
|
3855
3883
|
attr_accessor retrieval_reference_number: String?
|
|
3856
3884
|
|
|
3857
3885
|
attr_accessor trace_number: String?
|
|
@@ -3859,12 +3887,14 @@ module Increase
|
|
|
3859
3887
|
attr_accessor transaction_id: String?
|
|
3860
3888
|
|
|
3861
3889
|
def initialize: (
|
|
3890
|
+
authorization_identification_response: String?,
|
|
3862
3891
|
retrieval_reference_number: String?,
|
|
3863
3892
|
trace_number: String?,
|
|
3864
3893
|
transaction_id: String?
|
|
3865
3894
|
) -> void
|
|
3866
3895
|
|
|
3867
3896
|
def to_hash: -> {
|
|
3897
|
+
authorization_identification_response: String?,
|
|
3868
3898
|
retrieval_reference_number: String?,
|
|
3869
3899
|
trace_number: String?,
|
|
3870
3900
|
transaction_id: String?
|
|
@@ -4177,6 +4207,7 @@ module Increase
|
|
|
4177
4207
|
{
|
|
4178
4208
|
acquirer_business_id: String,
|
|
4179
4209
|
acquirer_reference_number: String,
|
|
4210
|
+
authorization_identification_response: String?,
|
|
4180
4211
|
transaction_id: String?
|
|
4181
4212
|
}
|
|
4182
4213
|
|
|
@@ -4185,17 +4216,21 @@ module Increase
|
|
|
4185
4216
|
|
|
4186
4217
|
attr_accessor acquirer_reference_number: String
|
|
4187
4218
|
|
|
4219
|
+
attr_accessor authorization_identification_response: String?
|
|
4220
|
+
|
|
4188
4221
|
attr_accessor transaction_id: String?
|
|
4189
4222
|
|
|
4190
4223
|
def initialize: (
|
|
4191
4224
|
acquirer_business_id: String,
|
|
4192
4225
|
acquirer_reference_number: String,
|
|
4226
|
+
authorization_identification_response: String?,
|
|
4193
4227
|
transaction_id: String?
|
|
4194
4228
|
) -> void
|
|
4195
4229
|
|
|
4196
4230
|
def to_hash: -> {
|
|
4197
4231
|
acquirer_business_id: String,
|
|
4198
4232
|
acquirer_reference_number: String,
|
|
4233
|
+
authorization_identification_response: String?,
|
|
4199
4234
|
transaction_id: String?
|
|
4200
4235
|
}
|
|
4201
4236
|
end
|
|
@@ -5499,12 +5534,15 @@ module Increase
|
|
|
5499
5534
|
|
|
5500
5535
|
type network_identifiers =
|
|
5501
5536
|
{
|
|
5537
|
+
authorization_identification_response: String?,
|
|
5502
5538
|
retrieval_reference_number: String?,
|
|
5503
5539
|
trace_number: String?,
|
|
5504
5540
|
transaction_id: String?
|
|
5505
5541
|
}
|
|
5506
5542
|
|
|
5507
5543
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
5544
|
+
attr_accessor authorization_identification_response: String?
|
|
5545
|
+
|
|
5508
5546
|
attr_accessor retrieval_reference_number: String?
|
|
5509
5547
|
|
|
5510
5548
|
attr_accessor trace_number: String?
|
|
@@ -5512,12 +5550,14 @@ module Increase
|
|
|
5512
5550
|
attr_accessor transaction_id: String?
|
|
5513
5551
|
|
|
5514
5552
|
def initialize: (
|
|
5553
|
+
authorization_identification_response: String?,
|
|
5515
5554
|
retrieval_reference_number: String?,
|
|
5516
5555
|
trace_number: String?,
|
|
5517
5556
|
transaction_id: String?
|
|
5518
5557
|
) -> void
|
|
5519
5558
|
|
|
5520
5559
|
def to_hash: -> {
|
|
5560
|
+
authorization_identification_response: String?,
|
|
5521
5561
|
retrieval_reference_number: String?,
|
|
5522
5562
|
trace_number: String?,
|
|
5523
5563
|
transaction_id: String?
|
|
@@ -890,12 +890,15 @@ module Increase
|
|
|
890
890
|
|
|
891
891
|
type network_identifiers =
|
|
892
892
|
{
|
|
893
|
+
authorization_identification_response: String?,
|
|
893
894
|
retrieval_reference_number: String?,
|
|
894
895
|
trace_number: String?,
|
|
895
896
|
transaction_id: String?
|
|
896
897
|
}
|
|
897
898
|
|
|
898
899
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
900
|
+
attr_accessor authorization_identification_response: String?
|
|
901
|
+
|
|
899
902
|
attr_accessor retrieval_reference_number: String?
|
|
900
903
|
|
|
901
904
|
attr_accessor trace_number: String?
|
|
@@ -903,12 +906,14 @@ module Increase
|
|
|
903
906
|
attr_accessor transaction_id: String?
|
|
904
907
|
|
|
905
908
|
def initialize: (
|
|
909
|
+
authorization_identification_response: String?,
|
|
906
910
|
retrieval_reference_number: String?,
|
|
907
911
|
trace_number: String?,
|
|
908
912
|
transaction_id: String?
|
|
909
913
|
) -> void
|
|
910
914
|
|
|
911
915
|
def to_hash: -> {
|
|
916
|
+
authorization_identification_response: String?,
|
|
912
917
|
retrieval_reference_number: String?,
|
|
913
918
|
trace_number: String?,
|
|
914
919
|
transaction_id: String?
|
|
@@ -851,12 +851,15 @@ module Increase
|
|
|
851
851
|
|
|
852
852
|
type network_identifiers =
|
|
853
853
|
{
|
|
854
|
+
authorization_identification_response: String?,
|
|
854
855
|
retrieval_reference_number: String?,
|
|
855
856
|
trace_number: String?,
|
|
856
857
|
transaction_id: String?
|
|
857
858
|
}
|
|
858
859
|
|
|
859
860
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
861
|
+
attr_accessor authorization_identification_response: String?
|
|
862
|
+
|
|
860
863
|
attr_accessor retrieval_reference_number: String?
|
|
861
864
|
|
|
862
865
|
attr_accessor trace_number: String?
|
|
@@ -864,12 +867,14 @@ module Increase
|
|
|
864
867
|
attr_accessor transaction_id: String?
|
|
865
868
|
|
|
866
869
|
def initialize: (
|
|
870
|
+
authorization_identification_response: String?,
|
|
867
871
|
retrieval_reference_number: String?,
|
|
868
872
|
trace_number: String?,
|
|
869
873
|
transaction_id: String?
|
|
870
874
|
) -> void
|
|
871
875
|
|
|
872
876
|
def to_hash: -> {
|
|
877
|
+
authorization_identification_response: String?,
|
|
873
878
|
retrieval_reference_number: String?,
|
|
874
879
|
trace_number: String?,
|
|
875
880
|
transaction_id: String?
|
|
@@ -709,12 +709,15 @@ module Increase
|
|
|
709
709
|
|
|
710
710
|
type network_identifiers =
|
|
711
711
|
{
|
|
712
|
+
authorization_identification_response: String?,
|
|
712
713
|
retrieval_reference_number: String?,
|
|
713
714
|
trace_number: String?,
|
|
714
715
|
transaction_id: String?
|
|
715
716
|
}
|
|
716
717
|
|
|
717
718
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
719
|
+
attr_accessor authorization_identification_response: String?
|
|
720
|
+
|
|
718
721
|
attr_accessor retrieval_reference_number: String?
|
|
719
722
|
|
|
720
723
|
attr_accessor trace_number: String?
|
|
@@ -722,12 +725,14 @@ module Increase
|
|
|
722
725
|
attr_accessor transaction_id: String?
|
|
723
726
|
|
|
724
727
|
def initialize: (
|
|
728
|
+
authorization_identification_response: String?,
|
|
725
729
|
retrieval_reference_number: String?,
|
|
726
730
|
trace_number: String?,
|
|
727
731
|
transaction_id: String?
|
|
728
732
|
) -> void
|
|
729
733
|
|
|
730
734
|
def to_hash: -> {
|
|
735
|
+
authorization_identification_response: String?,
|
|
731
736
|
retrieval_reference_number: String?,
|
|
732
737
|
trace_number: String?,
|
|
733
738
|
transaction_id: String?
|
|
@@ -1469,12 +1469,15 @@ module Increase
|
|
|
1469
1469
|
|
|
1470
1470
|
type network_identifiers =
|
|
1471
1471
|
{
|
|
1472
|
+
authorization_identification_response: String?,
|
|
1472
1473
|
retrieval_reference_number: String?,
|
|
1473
1474
|
trace_number: String?,
|
|
1474
1475
|
transaction_id: String?
|
|
1475
1476
|
}
|
|
1476
1477
|
|
|
1477
1478
|
class NetworkIdentifiers < Increase::Internal::Type::BaseModel
|
|
1479
|
+
attr_accessor authorization_identification_response: String?
|
|
1480
|
+
|
|
1478
1481
|
attr_accessor retrieval_reference_number: String?
|
|
1479
1482
|
|
|
1480
1483
|
attr_accessor trace_number: String?
|
|
@@ -1482,12 +1485,14 @@ module Increase
|
|
|
1482
1485
|
attr_accessor transaction_id: String?
|
|
1483
1486
|
|
|
1484
1487
|
def initialize: (
|
|
1488
|
+
authorization_identification_response: String?,
|
|
1485
1489
|
retrieval_reference_number: String?,
|
|
1486
1490
|
trace_number: String?,
|
|
1487
1491
|
transaction_id: String?
|
|
1488
1492
|
) -> void
|
|
1489
1493
|
|
|
1490
1494
|
def to_hash: -> {
|
|
1495
|
+
authorization_identification_response: String?,
|
|
1491
1496
|
retrieval_reference_number: String?,
|
|
1492
1497
|
trace_number: String?,
|
|
1493
1498
|
transaction_id: String?
|
|
@@ -1924,6 +1929,7 @@ module Increase
|
|
|
1924
1929
|
{
|
|
1925
1930
|
acquirer_business_id: String,
|
|
1926
1931
|
acquirer_reference_number: String,
|
|
1932
|
+
authorization_identification_response: String?,
|
|
1927
1933
|
transaction_id: String?
|
|
1928
1934
|
}
|
|
1929
1935
|
|
|
@@ -1932,17 +1938,21 @@ module Increase
|
|
|
1932
1938
|
|
|
1933
1939
|
attr_accessor acquirer_reference_number: String
|
|
1934
1940
|
|
|
1941
|
+
attr_accessor authorization_identification_response: String?
|
|
1942
|
+
|
|
1935
1943
|
attr_accessor transaction_id: String?
|
|
1936
1944
|
|
|
1937
1945
|
def initialize: (
|
|
1938
1946
|
acquirer_business_id: String,
|
|
1939
1947
|
acquirer_reference_number: String,
|
|
1948
|
+
authorization_identification_response: String?,
|
|
1940
1949
|
transaction_id: String?
|
|
1941
1950
|
) -> void
|
|
1942
1951
|
|
|
1943
1952
|
def to_hash: -> {
|
|
1944
1953
|
acquirer_business_id: String,
|
|
1945
1954
|
acquirer_reference_number: String,
|
|
1955
|
+
authorization_identification_response: String?,
|
|
1946
1956
|
transaction_id: String?
|
|
1947
1957
|
}
|
|
1948
1958
|
end
|
|
@@ -3047,6 +3057,7 @@ module Increase
|
|
|
3047
3057
|
{
|
|
3048
3058
|
acquirer_business_id: String,
|
|
3049
3059
|
acquirer_reference_number: String,
|
|
3060
|
+
authorization_identification_response: String?,
|
|
3050
3061
|
transaction_id: String?
|
|
3051
3062
|
}
|
|
3052
3063
|
|
|
@@ -3055,17 +3066,21 @@ module Increase
|
|
|
3055
3066
|
|
|
3056
3067
|
attr_accessor acquirer_reference_number: String
|
|
3057
3068
|
|
|
3069
|
+
attr_accessor authorization_identification_response: String?
|
|
3070
|
+
|
|
3058
3071
|
attr_accessor transaction_id: String?
|
|
3059
3072
|
|
|
3060
3073
|
def initialize: (
|
|
3061
3074
|
acquirer_business_id: String,
|
|
3062
3075
|
acquirer_reference_number: String,
|
|
3076
|
+
authorization_identification_response: String?,
|
|
3063
3077
|
transaction_id: String?
|
|
3064
3078
|
) -> void
|
|
3065
3079
|
|
|
3066
3080
|
def to_hash: -> {
|
|
3067
3081
|
acquirer_business_id: String,
|
|
3068
3082
|
acquirer_reference_number: String,
|
|
3083
|
+
authorization_identification_response: String?,
|
|
3069
3084
|
transaction_id: String?
|
|
3070
3085
|
}
|
|
3071
3086
|
end
|