increase 1.79.0 → 1.80.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 +9 -0
- data/README.md +1 -1
- data/lib/increase/client.rb +0 -4
- data/lib/increase/errors.rb +25 -11
- data/lib/increase/internal/page.rb +1 -1
- data/lib/increase/internal/transport/base_client.rb +11 -7
- data/lib/increase/internal/type/base_page.rb +1 -1
- data/lib/increase/internal/util.rb +1 -1
- data/lib/increase/models/transaction.rb +3 -27
- data/lib/increase/models.rb +0 -8
- data/lib/increase/resources/simulations.rb +0 -4
- data/lib/increase/version.rb +1 -1
- data/lib/increase.rb +0 -7
- data/rbi/increase/client.rbi +0 -3
- data/rbi/increase/errors.rbi +29 -2
- data/rbi/increase/internal/transport/base_client.rbi +4 -5
- data/rbi/increase/internal/type/base_page.rbi +1 -1
- data/rbi/increase/internal/util.rbi +1 -1
- data/rbi/increase/models/transaction.rbi +5 -39
- data/rbi/increase/models.rbi +0 -8
- data/rbi/increase/resources/simulations.rbi +0 -3
- data/sig/increase/client.rbs +0 -2
- data/sig/increase/errors.rbs +7 -0
- data/sig/increase/models/transaction.rbs +4 -28
- data/sig/increase/models.rbs +0 -8
- data/sig/increase/resources/simulations.rbs +0 -2
- metadata +1 -22
- data/lib/increase/models/card_dispute.rb +0 -302
- data/lib/increase/models/card_dispute_create_params.rb +0 -45
- data/lib/increase/models/card_dispute_list_params.rb +0 -144
- data/lib/increase/models/card_dispute_retrieve_params.rb +0 -14
- data/lib/increase/models/simulations/card_dispute_action_params.rb +0 -55
- data/lib/increase/resources/card_disputes.rb +0 -97
- data/lib/increase/resources/simulations/card_disputes.rb +0 -45
- data/rbi/increase/models/card_dispute.rbi +0 -425
- data/rbi/increase/models/card_dispute_create_params.rbi +0 -70
- data/rbi/increase/models/card_dispute_list_params.rbi +0 -289
- data/rbi/increase/models/card_dispute_retrieve_params.rbi +0 -30
- data/rbi/increase/models/simulations/card_dispute_action_params.rbi +0 -124
- data/rbi/increase/resources/card_disputes.rbi +0 -78
- data/rbi/increase/resources/simulations/card_disputes.rbi +0 -38
- data/sig/increase/models/card_dispute.rbs +0 -207
- data/sig/increase/models/card_dispute_create_params.rbs +0 -34
- data/sig/increase/models/card_dispute_list_params.rbs +0 -146
- data/sig/increase/models/card_dispute_retrieve_params.rbs +0 -15
- data/sig/increase/models/simulations/card_dispute_action_params.rbs +0 -59
- data/sig/increase/resources/card_disputes.rbs +0 -28
- data/sig/increase/resources/simulations/card_disputes.rbs +0 -16
@@ -2251,10 +2251,6 @@ module Increase
|
|
2251
2251
|
sig { returns(Time) }
|
2252
2252
|
attr_accessor :accepted_at
|
2253
2253
|
|
2254
|
-
# The identifier of the Card Dispute that was accepted.
|
2255
|
-
sig { returns(String) }
|
2256
|
-
attr_accessor :card_dispute_id
|
2257
|
-
|
2258
2254
|
# The identifier of the Transaction that was created to return the disputed funds
|
2259
2255
|
# to your account.
|
2260
2256
|
sig { returns(String) }
|
@@ -2264,18 +2260,14 @@ module Increase
|
|
2264
2260
|
# response if and only if `category` is equal to `card_dispute_acceptance`.
|
2265
2261
|
# Contains the details of a successful Card Dispute.
|
2266
2262
|
sig do
|
2267
|
-
params(
|
2268
|
-
|
2269
|
-
|
2270
|
-
transaction_id: String
|
2271
|
-
).returns(T.attached_class)
|
2263
|
+
params(accepted_at: Time, transaction_id: String).returns(
|
2264
|
+
T.attached_class
|
2265
|
+
)
|
2272
2266
|
end
|
2273
2267
|
def self.new(
|
2274
2268
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
2275
2269
|
# the Card Dispute was accepted.
|
2276
2270
|
accepted_at:,
|
2277
|
-
# The identifier of the Card Dispute that was accepted.
|
2278
|
-
card_dispute_id:,
|
2279
2271
|
# The identifier of the Transaction that was created to return the disputed funds
|
2280
2272
|
# to your account.
|
2281
2273
|
transaction_id:
|
@@ -2283,13 +2275,7 @@ module Increase
|
|
2283
2275
|
end
|
2284
2276
|
|
2285
2277
|
sig do
|
2286
|
-
override.returns(
|
2287
|
-
{
|
2288
|
-
accepted_at: Time,
|
2289
|
-
card_dispute_id: String,
|
2290
|
-
transaction_id: String
|
2291
|
-
}
|
2292
|
-
)
|
2278
|
+
override.returns({ accepted_at: Time, transaction_id: String })
|
2293
2279
|
end
|
2294
2280
|
def to_hash
|
2295
2281
|
end
|
@@ -2308,10 +2294,6 @@ module Increase
|
|
2308
2294
|
sig { returns(Integer) }
|
2309
2295
|
attr_accessor :amount
|
2310
2296
|
|
2311
|
-
# The identifier of the Card Dispute the financial event is associated with.
|
2312
|
-
sig { returns(String) }
|
2313
|
-
attr_accessor :card_dispute_id
|
2314
|
-
|
2315
2297
|
# The network that the Card Dispute is associated with.
|
2316
2298
|
sig do
|
2317
2299
|
returns(
|
@@ -2353,7 +2335,6 @@ module Increase
|
|
2353
2335
|
sig do
|
2354
2336
|
params(
|
2355
2337
|
amount: Integer,
|
2356
|
-
card_dispute_id: String,
|
2357
2338
|
network:
|
2358
2339
|
Increase::Transaction::Source::CardDisputeFinancial::Network::OrSymbol,
|
2359
2340
|
transaction_id: String,
|
@@ -2366,8 +2347,6 @@ module Increase
|
|
2366
2347
|
def self.new(
|
2367
2348
|
# The amount of the financial event.
|
2368
2349
|
amount:,
|
2369
|
-
# The identifier of the Card Dispute the financial event is associated with.
|
2370
|
-
card_dispute_id:,
|
2371
2350
|
# The network that the Card Dispute is associated with.
|
2372
2351
|
network:,
|
2373
2352
|
# The identifier of the Transaction that was created to credit or debit the
|
@@ -2384,7 +2363,6 @@ module Increase
|
|
2384
2363
|
override.returns(
|
2385
2364
|
{
|
2386
2365
|
amount: Integer,
|
2387
|
-
card_dispute_id: String,
|
2388
2366
|
network:
|
2389
2367
|
Increase::Transaction::Source::CardDisputeFinancial::Network::TaggedSymbol,
|
2390
2368
|
transaction_id: String,
|
@@ -2556,10 +2534,6 @@ module Increase
|
|
2556
2534
|
)
|
2557
2535
|
end
|
2558
2536
|
|
2559
|
-
# The identifier of the Card Dispute that was lost.
|
2560
|
-
sig { returns(String) }
|
2561
|
-
attr_accessor :card_dispute_id
|
2562
|
-
|
2563
2537
|
# Why the Card Dispute was lost.
|
2564
2538
|
sig { returns(String) }
|
2565
2539
|
attr_accessor :explanation
|
@@ -2579,15 +2553,12 @@ module Increase
|
|
2579
2553
|
# a lost Card Dispute.
|
2580
2554
|
sig do
|
2581
2555
|
params(
|
2582
|
-
card_dispute_id: String,
|
2583
2556
|
explanation: String,
|
2584
2557
|
lost_at: Time,
|
2585
2558
|
transaction_id: String
|
2586
2559
|
).returns(T.attached_class)
|
2587
2560
|
end
|
2588
2561
|
def self.new(
|
2589
|
-
# The identifier of the Card Dispute that was lost.
|
2590
|
-
card_dispute_id:,
|
2591
2562
|
# Why the Card Dispute was lost.
|
2592
2563
|
explanation:,
|
2593
2564
|
# The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
|
@@ -2601,12 +2572,7 @@ module Increase
|
|
2601
2572
|
|
2602
2573
|
sig do
|
2603
2574
|
override.returns(
|
2604
|
-
{
|
2605
|
-
card_dispute_id: String,
|
2606
|
-
explanation: String,
|
2607
|
-
lost_at: Time,
|
2608
|
-
transaction_id: String
|
2609
|
-
}
|
2575
|
+
{ explanation: String, lost_at: Time, transaction_id: String }
|
2610
2576
|
)
|
2611
2577
|
end
|
2612
2578
|
def to_hash
|
data/rbi/increase/models.rbi
CHANGED
@@ -113,14 +113,6 @@ module Increase
|
|
113
113
|
|
114
114
|
CardDetailsParams = Increase::Models::CardDetailsParams
|
115
115
|
|
116
|
-
CardDispute = Increase::Models::CardDispute
|
117
|
-
|
118
|
-
CardDisputeCreateParams = Increase::Models::CardDisputeCreateParams
|
119
|
-
|
120
|
-
CardDisputeListParams = Increase::Models::CardDisputeListParams
|
121
|
-
|
122
|
-
CardDisputeRetrieveParams = Increase::Models::CardDisputeRetrieveParams
|
123
|
-
|
124
116
|
CardIframeURL = Increase::Models::CardIframeURL
|
125
117
|
|
126
118
|
CardListParams = Increase::Models::CardListParams
|
@@ -32,9 +32,6 @@ module Increase
|
|
32
32
|
sig { returns(Increase::Resources::Simulations::CardRefunds) }
|
33
33
|
attr_reader :card_refunds
|
34
34
|
|
35
|
-
sig { returns(Increase::Resources::Simulations::CardDisputes) }
|
36
|
-
attr_reader :card_disputes
|
37
|
-
|
38
35
|
sig { returns(Increase::Resources::Simulations::PhysicalCards) }
|
39
36
|
attr_reader :physical_cards
|
40
37
|
|
data/sig/increase/client.rbs
CHANGED
@@ -27,8 +27,6 @@ module Increase
|
|
27
27
|
|
28
28
|
attr_reader card_purchase_supplements: Increase::Resources::CardPurchaseSupplements
|
29
29
|
|
30
|
-
attr_reader card_disputes: Increase::Resources::CardDisputes
|
31
|
-
|
32
30
|
attr_reader physical_cards: Increase::Resources::PhysicalCards
|
33
31
|
|
34
32
|
attr_reader digital_card_profiles: Increase::Resources::DigitalCardProfiles
|
data/sig/increase/errors.rbs
CHANGED
@@ -21,11 +21,14 @@ module Increase
|
|
21
21
|
|
22
22
|
attr_accessor status: Integer?
|
23
23
|
|
24
|
+
attr_accessor headers: ::Hash[String, String]?
|
25
|
+
|
24
26
|
attr_accessor body: top?
|
25
27
|
|
26
28
|
def initialize: (
|
27
29
|
url: URI::Generic,
|
28
30
|
?status: Integer?,
|
31
|
+
?headers: ::Hash[String, String]?,
|
29
32
|
?body: Object?,
|
30
33
|
?request: nil,
|
31
34
|
?response: nil,
|
@@ -37,6 +40,7 @@ module Increase
|
|
37
40
|
def initialize: (
|
38
41
|
url: URI::Generic,
|
39
42
|
?status: nil,
|
43
|
+
?headers: ::Hash[String, String]?,
|
40
44
|
?body: nil,
|
41
45
|
?request: nil,
|
42
46
|
?response: nil,
|
@@ -48,6 +52,7 @@ module Increase
|
|
48
52
|
def initialize: (
|
49
53
|
url: URI::Generic,
|
50
54
|
?status: nil,
|
55
|
+
?headers: ::Hash[String, String]?,
|
51
56
|
?body: nil,
|
52
57
|
?request: nil,
|
53
58
|
?response: nil,
|
@@ -59,6 +64,7 @@ module Increase
|
|
59
64
|
def self.for: (
|
60
65
|
url: URI::Generic,
|
61
66
|
status: Integer,
|
67
|
+
headers: ::Hash[String, String]?,
|
62
68
|
body: Object?,
|
63
69
|
request: nil,
|
64
70
|
response: nil,
|
@@ -68,6 +74,7 @@ module Increase
|
|
68
74
|
def initialize: (
|
69
75
|
url: URI::Generic,
|
70
76
|
status: Integer,
|
77
|
+
headers: ::Hash[String, String]?,
|
71
78
|
body: Object?,
|
72
79
|
request: nil,
|
73
80
|
response: nil,
|
@@ -768,32 +768,21 @@ module Increase
|
|
768
768
|
end
|
769
769
|
|
770
770
|
type card_dispute_acceptance =
|
771
|
-
{ accepted_at: Time,
|
771
|
+
{ accepted_at: Time, transaction_id: String }
|
772
772
|
|
773
773
|
class CardDisputeAcceptance < Increase::Internal::Type::BaseModel
|
774
774
|
attr_accessor accepted_at: Time
|
775
775
|
|
776
|
-
attr_accessor card_dispute_id: String
|
777
|
-
|
778
776
|
attr_accessor transaction_id: String
|
779
777
|
|
780
|
-
def initialize: (
|
781
|
-
accepted_at: Time,
|
782
|
-
card_dispute_id: String,
|
783
|
-
transaction_id: String
|
784
|
-
) -> void
|
778
|
+
def initialize: (accepted_at: Time, transaction_id: String) -> void
|
785
779
|
|
786
|
-
def to_hash: -> {
|
787
|
-
accepted_at: Time,
|
788
|
-
card_dispute_id: String,
|
789
|
-
transaction_id: String
|
790
|
-
}
|
780
|
+
def to_hash: -> { accepted_at: Time, transaction_id: String }
|
791
781
|
end
|
792
782
|
|
793
783
|
type card_dispute_financial =
|
794
784
|
{
|
795
785
|
amount: Integer,
|
796
|
-
card_dispute_id: String,
|
797
786
|
network: Increase::Models::Transaction::Source::CardDisputeFinancial::network,
|
798
787
|
transaction_id: String,
|
799
788
|
visa: Increase::Transaction::Source::CardDisputeFinancial::Visa?
|
@@ -802,8 +791,6 @@ module Increase
|
|
802
791
|
class CardDisputeFinancial < Increase::Internal::Type::BaseModel
|
803
792
|
attr_accessor amount: Integer
|
804
793
|
|
805
|
-
attr_accessor card_dispute_id: String
|
806
|
-
|
807
794
|
attr_accessor network: Increase::Models::Transaction::Source::CardDisputeFinancial::network
|
808
795
|
|
809
796
|
attr_accessor transaction_id: String
|
@@ -812,7 +799,6 @@ module Increase
|
|
812
799
|
|
813
800
|
def initialize: (
|
814
801
|
amount: Integer,
|
815
|
-
card_dispute_id: String,
|
816
802
|
network: Increase::Models::Transaction::Source::CardDisputeFinancial::network,
|
817
803
|
transaction_id: String,
|
818
804
|
visa: Increase::Transaction::Source::CardDisputeFinancial::Visa?
|
@@ -820,7 +806,6 @@ module Increase
|
|
820
806
|
|
821
807
|
def to_hash: -> {
|
822
808
|
amount: Integer,
|
823
|
-
card_dispute_id: String,
|
824
809
|
network: Increase::Models::Transaction::Source::CardDisputeFinancial::network,
|
825
810
|
transaction_id: String,
|
826
811
|
visa: Increase::Transaction::Source::CardDisputeFinancial::Visa?
|
@@ -892,16 +877,9 @@ module Increase
|
|
892
877
|
end
|
893
878
|
|
894
879
|
type card_dispute_loss =
|
895
|
-
{
|
896
|
-
card_dispute_id: String,
|
897
|
-
explanation: String,
|
898
|
-
lost_at: Time,
|
899
|
-
transaction_id: String
|
900
|
-
}
|
880
|
+
{ explanation: String, lost_at: Time, transaction_id: String }
|
901
881
|
|
902
882
|
class CardDisputeLoss < Increase::Internal::Type::BaseModel
|
903
|
-
attr_accessor card_dispute_id: String
|
904
|
-
|
905
883
|
attr_accessor explanation: String
|
906
884
|
|
907
885
|
attr_accessor lost_at: Time
|
@@ -909,14 +887,12 @@ module Increase
|
|
909
887
|
attr_accessor transaction_id: String
|
910
888
|
|
911
889
|
def initialize: (
|
912
|
-
card_dispute_id: String,
|
913
890
|
explanation: String,
|
914
891
|
lost_at: Time,
|
915
892
|
transaction_id: String
|
916
893
|
) -> void
|
917
894
|
|
918
895
|
def to_hash: -> {
|
919
|
-
card_dispute_id: String,
|
920
896
|
explanation: String,
|
921
897
|
lost_at: Time,
|
922
898
|
transaction_id: String
|
data/sig/increase/models.rbs
CHANGED
@@ -99,14 +99,6 @@ module Increase
|
|
99
99
|
|
100
100
|
class CardDetailsParams = Increase::Models::CardDetailsParams
|
101
101
|
|
102
|
-
class CardDispute = Increase::Models::CardDispute
|
103
|
-
|
104
|
-
class CardDisputeCreateParams = Increase::Models::CardDisputeCreateParams
|
105
|
-
|
106
|
-
class CardDisputeListParams = Increase::Models::CardDisputeListParams
|
107
|
-
|
108
|
-
class CardDisputeRetrieveParams = Increase::Models::CardDisputeRetrieveParams
|
109
|
-
|
110
102
|
class CardIframeURL = Increase::Models::CardIframeURL
|
111
103
|
|
112
104
|
class CardListParams = Increase::Models::CardListParams
|
@@ -19,8 +19,6 @@ module Increase
|
|
19
19
|
|
20
20
|
attr_reader card_refunds: Increase::Resources::Simulations::CardRefunds
|
21
21
|
|
22
|
-
attr_reader card_disputes: Increase::Resources::Simulations::CardDisputes
|
23
|
-
|
24
22
|
attr_reader physical_cards: Increase::Resources::Simulations::PhysicalCards
|
25
23
|
|
26
24
|
attr_reader digital_wallet_token_requests: Increase::Resources::Simulations::DigitalWalletTokenRequests
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: increase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Increase
|
@@ -106,10 +106,6 @@ files:
|
|
106
106
|
- lib/increase/models/card_create_params.rb
|
107
107
|
- lib/increase/models/card_details.rb
|
108
108
|
- lib/increase/models/card_details_params.rb
|
109
|
-
- lib/increase/models/card_dispute.rb
|
110
|
-
- lib/increase/models/card_dispute_create_params.rb
|
111
|
-
- lib/increase/models/card_dispute_list_params.rb
|
112
|
-
- lib/increase/models/card_dispute_retrieve_params.rb
|
113
109
|
- lib/increase/models/card_iframe_url.rb
|
114
110
|
- lib/increase/models/card_list_params.rb
|
115
111
|
- lib/increase/models/card_payment.rb
|
@@ -289,7 +285,6 @@ files:
|
|
289
285
|
- lib/increase/models/simulations/card_authorization_create_params.rb
|
290
286
|
- lib/increase/models/simulations/card_authorization_create_response.rb
|
291
287
|
- lib/increase/models/simulations/card_authorization_expiration_create_params.rb
|
292
|
-
- lib/increase/models/simulations/card_dispute_action_params.rb
|
293
288
|
- lib/increase/models/simulations/card_fuel_confirmation_create_params.rb
|
294
289
|
- lib/increase/models/simulations/card_increment_create_params.rb
|
295
290
|
- lib/increase/models/simulations/card_refund_create_params.rb
|
@@ -344,7 +339,6 @@ files:
|
|
344
339
|
- lib/increase/resources/bookkeeping_accounts.rb
|
345
340
|
- lib/increase/resources/bookkeeping_entries.rb
|
346
341
|
- lib/increase/resources/bookkeeping_entry_sets.rb
|
347
|
-
- lib/increase/resources/card_disputes.rb
|
348
342
|
- lib/increase/resources/card_payments.rb
|
349
343
|
- lib/increase/resources/card_purchase_supplements.rb
|
350
344
|
- lib/increase/resources/card_push_transfers.rb
|
@@ -391,7 +385,6 @@ files:
|
|
391
385
|
- lib/increase/resources/simulations/ach_transfers.rb
|
392
386
|
- lib/increase/resources/simulations/card_authorization_expirations.rb
|
393
387
|
- lib/increase/resources/simulations/card_authorizations.rb
|
394
|
-
- lib/increase/resources/simulations/card_disputes.rb
|
395
388
|
- lib/increase/resources/simulations/card_fuel_confirmations.rb
|
396
389
|
- lib/increase/resources/simulations/card_increments.rb
|
397
390
|
- lib/increase/resources/simulations/card_refunds.rb
|
@@ -491,10 +484,6 @@ files:
|
|
491
484
|
- rbi/increase/models/card_create_params.rbi
|
492
485
|
- rbi/increase/models/card_details.rbi
|
493
486
|
- rbi/increase/models/card_details_params.rbi
|
494
|
-
- rbi/increase/models/card_dispute.rbi
|
495
|
-
- rbi/increase/models/card_dispute_create_params.rbi
|
496
|
-
- rbi/increase/models/card_dispute_list_params.rbi
|
497
|
-
- rbi/increase/models/card_dispute_retrieve_params.rbi
|
498
487
|
- rbi/increase/models/card_iframe_url.rbi
|
499
488
|
- rbi/increase/models/card_list_params.rbi
|
500
489
|
- rbi/increase/models/card_payment.rbi
|
@@ -674,7 +663,6 @@ files:
|
|
674
663
|
- rbi/increase/models/simulations/card_authorization_create_params.rbi
|
675
664
|
- rbi/increase/models/simulations/card_authorization_create_response.rbi
|
676
665
|
- rbi/increase/models/simulations/card_authorization_expiration_create_params.rbi
|
677
|
-
- rbi/increase/models/simulations/card_dispute_action_params.rbi
|
678
666
|
- rbi/increase/models/simulations/card_fuel_confirmation_create_params.rbi
|
679
667
|
- rbi/increase/models/simulations/card_increment_create_params.rbi
|
680
668
|
- rbi/increase/models/simulations/card_refund_create_params.rbi
|
@@ -729,7 +717,6 @@ files:
|
|
729
717
|
- rbi/increase/resources/bookkeeping_accounts.rbi
|
730
718
|
- rbi/increase/resources/bookkeeping_entries.rbi
|
731
719
|
- rbi/increase/resources/bookkeeping_entry_sets.rbi
|
732
|
-
- rbi/increase/resources/card_disputes.rbi
|
733
720
|
- rbi/increase/resources/card_payments.rbi
|
734
721
|
- rbi/increase/resources/card_purchase_supplements.rbi
|
735
722
|
- rbi/increase/resources/card_push_transfers.rbi
|
@@ -776,7 +763,6 @@ files:
|
|
776
763
|
- rbi/increase/resources/simulations/ach_transfers.rbi
|
777
764
|
- rbi/increase/resources/simulations/card_authorization_expirations.rbi
|
778
765
|
- rbi/increase/resources/simulations/card_authorizations.rbi
|
779
|
-
- rbi/increase/resources/simulations/card_disputes.rbi
|
780
766
|
- rbi/increase/resources/simulations/card_fuel_confirmations.rbi
|
781
767
|
- rbi/increase/resources/simulations/card_increments.rbi
|
782
768
|
- rbi/increase/resources/simulations/card_refunds.rbi
|
@@ -875,10 +861,6 @@ files:
|
|
875
861
|
- sig/increase/models/card_create_params.rbs
|
876
862
|
- sig/increase/models/card_details.rbs
|
877
863
|
- sig/increase/models/card_details_params.rbs
|
878
|
-
- sig/increase/models/card_dispute.rbs
|
879
|
-
- sig/increase/models/card_dispute_create_params.rbs
|
880
|
-
- sig/increase/models/card_dispute_list_params.rbs
|
881
|
-
- sig/increase/models/card_dispute_retrieve_params.rbs
|
882
864
|
- sig/increase/models/card_iframe_url.rbs
|
883
865
|
- sig/increase/models/card_list_params.rbs
|
884
866
|
- sig/increase/models/card_payment.rbs
|
@@ -1058,7 +1040,6 @@ files:
|
|
1058
1040
|
- sig/increase/models/simulations/card_authorization_create_params.rbs
|
1059
1041
|
- sig/increase/models/simulations/card_authorization_create_response.rbs
|
1060
1042
|
- sig/increase/models/simulations/card_authorization_expiration_create_params.rbs
|
1061
|
-
- sig/increase/models/simulations/card_dispute_action_params.rbs
|
1062
1043
|
- sig/increase/models/simulations/card_fuel_confirmation_create_params.rbs
|
1063
1044
|
- sig/increase/models/simulations/card_increment_create_params.rbs
|
1064
1045
|
- sig/increase/models/simulations/card_refund_create_params.rbs
|
@@ -1113,7 +1094,6 @@ files:
|
|
1113
1094
|
- sig/increase/resources/bookkeeping_accounts.rbs
|
1114
1095
|
- sig/increase/resources/bookkeeping_entries.rbs
|
1115
1096
|
- sig/increase/resources/bookkeeping_entry_sets.rbs
|
1116
|
-
- sig/increase/resources/card_disputes.rbs
|
1117
1097
|
- sig/increase/resources/card_payments.rbs
|
1118
1098
|
- sig/increase/resources/card_purchase_supplements.rbs
|
1119
1099
|
- sig/increase/resources/card_push_transfers.rbs
|
@@ -1160,7 +1140,6 @@ files:
|
|
1160
1140
|
- sig/increase/resources/simulations/ach_transfers.rbs
|
1161
1141
|
- sig/increase/resources/simulations/card_authorization_expirations.rbs
|
1162
1142
|
- sig/increase/resources/simulations/card_authorizations.rbs
|
1163
|
-
- sig/increase/resources/simulations/card_disputes.rbs
|
1164
1143
|
- sig/increase/resources/simulations/card_fuel_confirmations.rbs
|
1165
1144
|
- sig/increase/resources/simulations/card_increments.rbs
|
1166
1145
|
- sig/increase/resources/simulations/card_refunds.rbs
|