lithic 0.19.0 → 0.20.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 +36 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +4 -0
- data/lib/lithic/models/auth_rules/ach_payment_update_action.rb +1 -0
- data/lib/lithic/models/auth_rules/card_transaction_update_action.rb +1 -0
- data/lib/lithic/models/auth_rules/v2_list_results_response.rb +2 -0
- data/lib/lithic/models/auth_rules/velocity_limit_params.rb +24 -1
- data/lib/lithic/models/blockchain_recipient.rb +148 -0
- data/lib/lithic/models/blockchain_recipient_create_params.rb +74 -0
- data/lib/lithic/models/card.rb +2 -2
- data/lib/lithic/models/card_provision_params.rb +10 -8
- data/lib/lithic/models/card_reassign_account_params.rb +29 -0
- data/lib/lithic/models/dispute_v2.rb +178 -130
- data/lib/lithic/models/disputes_v2_list_params.rb +10 -1
- data/lib/lithic/models/financial_account.rb +14 -1
- data/lib/lithic/models/financial_accounts/statements/statement_line_items.rb +3 -0
- data/lib/lithic/models/financial_event.rb +3 -0
- data/lib/lithic/models/payment.rb +67 -9
- data/lib/lithic/models/tokenization_simulate_params.rb +2 -2
- data/lib/lithic/models/transaction_monitoring/case_entity.rb +13 -4
- data/lib/lithic/models/transaction_monitoring/case_list_params.rb +4 -2
- data/lib/lithic/models.rb +6 -0
- data/lib/lithic/resources/blockchain_recipients.rb +57 -0
- data/lib/lithic/resources/cards.rb +29 -2
- data/lib/lithic/resources/disputes_v2.rb +3 -1
- data/lib/lithic/resources/tokenizations.rb +1 -1
- data/lib/lithic/resources/transaction_monitoring/cases.rb +1 -1
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +4 -0
- data/rbi/lithic/client.rbi +3 -0
- data/rbi/lithic/models/auth_rules/ach_payment_update_action.rbi +5 -0
- data/rbi/lithic/models/auth_rules/card_transaction_update_action.rbi +5 -0
- data/rbi/lithic/models/auth_rules/v2_list_results_response.rbi +10 -0
- data/rbi/lithic/models/auth_rules/velocity_limit_params.rbi +30 -0
- data/rbi/lithic/models/blockchain_recipient.rbi +209 -0
- data/rbi/lithic/models/blockchain_recipient_create_params.rbi +102 -0
- data/rbi/lithic/models/card.rbi +2 -2
- data/rbi/lithic/models/card_provision_params.rbi +16 -12
- data/rbi/lithic/models/card_reassign_account_params.rbi +49 -0
- data/rbi/lithic/models/dispute_v2.rbi +285 -181
- data/rbi/lithic/models/disputes_v2_list_params.rbi +13 -0
- data/rbi/lithic/models/financial_account.rbi +12 -0
- data/rbi/lithic/models/financial_accounts/statements/statement_line_items.rbi +15 -0
- data/rbi/lithic/models/financial_event.rbi +12 -0
- data/rbi/lithic/models/payment.rbi +106 -10
- data/rbi/lithic/models/tokenization_simulate_params.rbi +2 -2
- data/rbi/lithic/models/transaction_monitoring/case_entity.rbi +27 -5
- data/rbi/lithic/models/transaction_monitoring/case_list_params.rbi +6 -2
- data/rbi/lithic/models.rbi +7 -0
- data/rbi/lithic/resources/blockchain_recipients.rbi +51 -0
- data/rbi/lithic/resources/cards.rbi +27 -6
- data/rbi/lithic/resources/disputes_v2.rbi +4 -0
- data/rbi/lithic/resources/tokenizations.rbi +1 -1
- data/rbi/lithic/resources/transaction_monitoring/cases.rbi +3 -1
- data/sig/lithic/client.rbs +2 -0
- data/sig/lithic/models/auth_rules/ach_payment_update_action.rbs +2 -1
- data/sig/lithic/models/auth_rules/card_transaction_update_action.rbs +2 -1
- data/sig/lithic/models/auth_rules/v2_list_results_response.rbs +4 -2
- data/sig/lithic/models/auth_rules/velocity_limit_params.rbs +10 -0
- data/sig/lithic/models/blockchain_recipient.rbs +106 -0
- data/sig/lithic/models/blockchain_recipient_create_params.rbs +60 -0
- data/sig/lithic/models/card_reassign_account_params.rbs +28 -0
- data/sig/lithic/models/dispute_v2.rbs +145 -101
- data/sig/lithic/models/disputes_v2_list_params.rbs +7 -0
- data/sig/lithic/models/financial_account.rbs +5 -0
- data/sig/lithic/models/financial_accounts/statements/statement_line_items.rbs +6 -0
- data/sig/lithic/models/financial_event.rbs +6 -0
- data/sig/lithic/models/payment.rbs +31 -1
- data/sig/lithic/models/transaction_monitoring/case_entity.rbs +7 -5
- data/sig/lithic/models.rbs +6 -0
- data/sig/lithic/resources/blockchain_recipients.rbs +18 -0
- data/sig/lithic/resources/cards.rbs +6 -0
- data/sig/lithic/resources/disputes_v2.rbs +1 -0
- metadata +14 -2
|
@@ -5,6 +5,7 @@ module Lithic
|
|
|
5
5
|
account_token: String,
|
|
6
6
|
begin_: Time,
|
|
7
7
|
card_token: String,
|
|
8
|
+
claim_token: String,
|
|
8
9
|
disputed_transaction_token: String,
|
|
9
10
|
end_: Time,
|
|
10
11
|
ending_before: String,
|
|
@@ -29,6 +30,10 @@ module Lithic
|
|
|
29
30
|
|
|
30
31
|
def card_token=: (String) -> String
|
|
31
32
|
|
|
33
|
+
attr_reader claim_token: String?
|
|
34
|
+
|
|
35
|
+
def claim_token=: (String) -> String
|
|
36
|
+
|
|
32
37
|
attr_reader disputed_transaction_token: String?
|
|
33
38
|
|
|
34
39
|
def disputed_transaction_token=: (String) -> String
|
|
@@ -53,6 +58,7 @@ module Lithic
|
|
|
53
58
|
?account_token: String,
|
|
54
59
|
?begin_: Time,
|
|
55
60
|
?card_token: String,
|
|
61
|
+
?claim_token: String,
|
|
56
62
|
?disputed_transaction_token: String,
|
|
57
63
|
?end_: Time,
|
|
58
64
|
?ending_before: String,
|
|
@@ -65,6 +71,7 @@ module Lithic
|
|
|
65
71
|
account_token: String,
|
|
66
72
|
begin_: Time,
|
|
67
73
|
card_token: String,
|
|
74
|
+
claim_token: String,
|
|
68
75
|
disputed_transaction_token: String,
|
|
69
76
|
end_: Time,
|
|
70
77
|
ending_before: String,
|
|
@@ -14,6 +14,7 @@ module Lithic
|
|
|
14
14
|
updated: Time,
|
|
15
15
|
user_defined_status: String?,
|
|
16
16
|
account_number: String?,
|
|
17
|
+
blockchain_addresses: ::Hash[Symbol, String]?,
|
|
17
18
|
routing_number: String?
|
|
18
19
|
}
|
|
19
20
|
|
|
@@ -42,6 +43,8 @@ module Lithic
|
|
|
42
43
|
|
|
43
44
|
attr_accessor account_number: String?
|
|
44
45
|
|
|
46
|
+
attr_accessor blockchain_addresses: ::Hash[Symbol, String]?
|
|
47
|
+
|
|
45
48
|
attr_accessor routing_number: String?
|
|
46
49
|
|
|
47
50
|
def initialize: (
|
|
@@ -57,6 +60,7 @@ module Lithic
|
|
|
57
60
|
updated: Time,
|
|
58
61
|
user_defined_status: String?,
|
|
59
62
|
?account_number: String?,
|
|
63
|
+
?blockchain_addresses: ::Hash[Symbol, String]?,
|
|
60
64
|
?routing_number: String?
|
|
61
65
|
) -> void
|
|
62
66
|
|
|
@@ -73,6 +77,7 @@ module Lithic
|
|
|
73
77
|
updated: Time,
|
|
74
78
|
user_defined_status: String?,
|
|
75
79
|
account_number: String?,
|
|
80
|
+
blockchain_addresses: ::Hash[Symbol, String]?,
|
|
76
81
|
routing_number: String?
|
|
77
82
|
}
|
|
78
83
|
|
|
@@ -257,8 +257,11 @@ module Lithic
|
|
|
257
257
|
| :MONTHLY_REVERSAL
|
|
258
258
|
| :ACCOUNT_TO_ACCOUNT
|
|
259
259
|
| :STABLECOIN_RECEIVED
|
|
260
|
+
| :STABLECOIN_INITIATED
|
|
260
261
|
| :STABLECOIN_REVIEWED
|
|
262
|
+
| :STABLECOIN_SENT
|
|
261
263
|
| :STABLECOIN_SETTLED
|
|
264
|
+
| :STABLECOIN_REJECTED
|
|
262
265
|
|
|
263
266
|
module EventType
|
|
264
267
|
extend Lithic::Internal::Type::Enum
|
|
@@ -354,8 +357,11 @@ module Lithic
|
|
|
354
357
|
MONTHLY_REVERSAL: :MONTHLY_REVERSAL
|
|
355
358
|
ACCOUNT_TO_ACCOUNT: :ACCOUNT_TO_ACCOUNT
|
|
356
359
|
STABLECOIN_RECEIVED: :STABLECOIN_RECEIVED
|
|
360
|
+
STABLECOIN_INITIATED: :STABLECOIN_INITIATED
|
|
357
361
|
STABLECOIN_REVIEWED: :STABLECOIN_REVIEWED
|
|
362
|
+
STABLECOIN_SENT: :STABLECOIN_SENT
|
|
358
363
|
STABLECOIN_SETTLED: :STABLECOIN_SETTLED
|
|
364
|
+
STABLECOIN_REJECTED: :STABLECOIN_REJECTED
|
|
359
365
|
|
|
360
366
|
def self?.values: -> ::Array[Lithic::Models::FinancialAccounts::Statements::StatementLineItems::Data::event_type]
|
|
361
367
|
end
|
|
@@ -153,8 +153,11 @@ module Lithic
|
|
|
153
153
|
| :MONTHLY_REVERSAL
|
|
154
154
|
| :ACCOUNT_TO_ACCOUNT
|
|
155
155
|
| :STABLECOIN_RECEIVED
|
|
156
|
+
| :STABLECOIN_INITIATED
|
|
156
157
|
| :STABLECOIN_REVIEWED
|
|
158
|
+
| :STABLECOIN_SENT
|
|
157
159
|
| :STABLECOIN_SETTLED
|
|
160
|
+
| :STABLECOIN_REJECTED
|
|
158
161
|
|
|
159
162
|
module Type
|
|
160
163
|
extend Lithic::Internal::Type::Enum
|
|
@@ -250,8 +253,11 @@ module Lithic
|
|
|
250
253
|
MONTHLY_REVERSAL: :MONTHLY_REVERSAL
|
|
251
254
|
ACCOUNT_TO_ACCOUNT: :ACCOUNT_TO_ACCOUNT
|
|
252
255
|
STABLECOIN_RECEIVED: :STABLECOIN_RECEIVED
|
|
256
|
+
STABLECOIN_INITIATED: :STABLECOIN_INITIATED
|
|
253
257
|
STABLECOIN_REVIEWED: :STABLECOIN_REVIEWED
|
|
258
|
+
STABLECOIN_SENT: :STABLECOIN_SENT
|
|
254
259
|
STABLECOIN_SETTLED: :STABLECOIN_SETTLED
|
|
260
|
+
STABLECOIN_REJECTED: :STABLECOIN_REJECTED
|
|
255
261
|
|
|
256
262
|
def self?.values: -> ::Array[Lithic::Models::FinancialEvent::type_]
|
|
257
263
|
end
|
|
@@ -19,6 +19,7 @@ module Lithic
|
|
|
19
19
|
source: Lithic::Models::Payment::source,
|
|
20
20
|
status: Lithic::Models::Payment::status,
|
|
21
21
|
updated: Time,
|
|
22
|
+
blockchain_recipient_token: String?,
|
|
22
23
|
currency: String,
|
|
23
24
|
expected_release_date: Date?,
|
|
24
25
|
external_bank_account_token: String?,
|
|
@@ -62,6 +63,8 @@ module Lithic
|
|
|
62
63
|
|
|
63
64
|
attr_accessor updated: Time
|
|
64
65
|
|
|
66
|
+
attr_accessor blockchain_recipient_token: String?
|
|
67
|
+
|
|
65
68
|
attr_reader currency: String?
|
|
66
69
|
|
|
67
70
|
def currency=: (String) -> String
|
|
@@ -99,6 +102,7 @@ module Lithic
|
|
|
99
102
|
source: Lithic::Models::Payment::source,
|
|
100
103
|
status: Lithic::Models::Payment::status,
|
|
101
104
|
updated: Time,
|
|
105
|
+
?blockchain_recipient_token: String?,
|
|
102
106
|
?currency: String,
|
|
103
107
|
?expected_release_date: Date?,
|
|
104
108
|
?external_bank_account_token: String?,
|
|
@@ -126,6 +130,7 @@ module Lithic
|
|
|
126
130
|
source: Lithic::Models::Payment::source,
|
|
127
131
|
status: Lithic::Models::Payment::status,
|
|
128
132
|
updated: Time,
|
|
133
|
+
blockchain_recipient_token: String?,
|
|
129
134
|
currency: String,
|
|
130
135
|
expected_release_date: Date?,
|
|
131
136
|
external_bank_account_token: String?,
|
|
@@ -287,8 +292,11 @@ module Lithic
|
|
|
287
292
|
| :WIRE_RETURN_OUTBOUND_SETTLED
|
|
288
293
|
| :WIRE_RETURN_OUTBOUND_REJECTED
|
|
289
294
|
| :STABLECOIN_RECEIVED
|
|
295
|
+
| :STABLECOIN_INITIATED
|
|
290
296
|
| :STABLECOIN_REVIEWED
|
|
297
|
+
| :STABLECOIN_SENT
|
|
291
298
|
| :STABLECOIN_SETTLED
|
|
299
|
+
| :STABLECOIN_REJECTED
|
|
292
300
|
|
|
293
301
|
module Type
|
|
294
302
|
extend Lithic::Internal::Type::Enum
|
|
@@ -316,8 +324,11 @@ module Lithic
|
|
|
316
324
|
WIRE_RETURN_OUTBOUND_SETTLED: :WIRE_RETURN_OUTBOUND_SETTLED
|
|
317
325
|
WIRE_RETURN_OUTBOUND_REJECTED: :WIRE_RETURN_OUTBOUND_REJECTED
|
|
318
326
|
STABLECOIN_RECEIVED: :STABLECOIN_RECEIVED
|
|
327
|
+
STABLECOIN_INITIATED: :STABLECOIN_INITIATED
|
|
319
328
|
STABLECOIN_REVIEWED: :STABLECOIN_REVIEWED
|
|
329
|
+
STABLECOIN_SENT: :STABLECOIN_SENT
|
|
320
330
|
STABLECOIN_SETTLED: :STABLECOIN_SETTLED
|
|
331
|
+
STABLECOIN_REJECTED: :STABLECOIN_REJECTED
|
|
321
332
|
|
|
322
333
|
def self?.values: -> ::Array[Lithic::Models::Payment::Event::type_]
|
|
323
334
|
end
|
|
@@ -346,7 +357,7 @@ module Lithic
|
|
|
346
357
|
end
|
|
347
358
|
end
|
|
348
359
|
|
|
349
|
-
type method_ = :ACH_NEXT_DAY | :ACH_SAME_DAY | :WIRE
|
|
360
|
+
type method_ = :ACH_NEXT_DAY | :ACH_SAME_DAY | :WIRE | :STABLECOIN
|
|
350
361
|
|
|
351
362
|
module Method
|
|
352
363
|
extend Lithic::Internal::Type::Enum
|
|
@@ -354,6 +365,7 @@ module Lithic
|
|
|
354
365
|
ACH_NEXT_DAY: :ACH_NEXT_DAY
|
|
355
366
|
ACH_SAME_DAY: :ACH_SAME_DAY
|
|
356
367
|
WIRE: :WIRE
|
|
368
|
+
STABLECOIN: :STABLECOIN
|
|
357
369
|
|
|
358
370
|
def self?.values: -> ::Array[Lithic::Models::Payment::method_]
|
|
359
371
|
end
|
|
@@ -361,6 +373,7 @@ module Lithic
|
|
|
361
373
|
type method_attributes =
|
|
362
374
|
Lithic::Payment::MethodAttributes::ACHMethodAttributes
|
|
363
375
|
| Lithic::Payment::MethodAttributes::WireMethodAttributes
|
|
376
|
+
| Lithic::Payment::MethodAttributes::StablecoinMethodAttributes
|
|
364
377
|
|
|
365
378
|
module MethodAttributes
|
|
366
379
|
extend Lithic::Internal::Type::Union
|
|
@@ -501,6 +514,19 @@ module Lithic
|
|
|
501
514
|
end
|
|
502
515
|
end
|
|
503
516
|
|
|
517
|
+
type stablecoin_method_attributes =
|
|
518
|
+
{ chain: String, transaction_hash: String? }
|
|
519
|
+
|
|
520
|
+
class StablecoinMethodAttributes < Lithic::Internal::Type::BaseModel
|
|
521
|
+
attr_accessor chain: String
|
|
522
|
+
|
|
523
|
+
attr_accessor transaction_hash: String?
|
|
524
|
+
|
|
525
|
+
def initialize: (chain: String, ?transaction_hash: String?) -> void
|
|
526
|
+
|
|
527
|
+
def to_hash: -> { chain: String, transaction_hash: String? }
|
|
528
|
+
end
|
|
529
|
+
|
|
504
530
|
def self?.variants: -> ::Array[Lithic::Models::Payment::method_attributes]
|
|
505
531
|
end
|
|
506
532
|
|
|
@@ -572,6 +598,8 @@ module Lithic
|
|
|
572
598
|
| :WIRE_OUTBOUND_PAYMENT
|
|
573
599
|
| :WIRE_OUTBOUND_ADMIN
|
|
574
600
|
| :WIRE_INBOUND_DRAWDOWN_REQUEST
|
|
601
|
+
| :STABLECOIN_INBOUND
|
|
602
|
+
| :STABLECOIN_OUTBOUND
|
|
575
603
|
|
|
576
604
|
module Type
|
|
577
605
|
extend Lithic::Internal::Type::Enum
|
|
@@ -585,6 +613,8 @@ module Lithic
|
|
|
585
613
|
WIRE_OUTBOUND_PAYMENT: :WIRE_OUTBOUND_PAYMENT
|
|
586
614
|
WIRE_OUTBOUND_ADMIN: :WIRE_OUTBOUND_ADMIN
|
|
587
615
|
WIRE_INBOUND_DRAWDOWN_REQUEST: :WIRE_INBOUND_DRAWDOWN_REQUEST
|
|
616
|
+
STABLECOIN_INBOUND: :STABLECOIN_INBOUND
|
|
617
|
+
STABLECOIN_OUTBOUND: :STABLECOIN_OUTBOUND
|
|
588
618
|
|
|
589
619
|
def self?.values: -> ::Array[Lithic::Models::Payment::type_]
|
|
590
620
|
end
|
|
@@ -3,32 +3,34 @@ module Lithic
|
|
|
3
3
|
module TransactionMonitoring
|
|
4
4
|
type case_entity =
|
|
5
5
|
{
|
|
6
|
-
entity_token: String
|
|
6
|
+
entity_token: String?,
|
|
7
7
|
entity_type: Lithic::Models::TransactionMonitoring::CaseEntity::entity_type
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
class CaseEntity < Lithic::Internal::Type::BaseModel
|
|
11
|
-
attr_accessor entity_token: String
|
|
11
|
+
attr_accessor entity_token: String?
|
|
12
12
|
|
|
13
13
|
attr_accessor entity_type: Lithic::Models::TransactionMonitoring::CaseEntity::entity_type
|
|
14
14
|
|
|
15
15
|
def initialize: (
|
|
16
|
-
entity_token: String
|
|
16
|
+
entity_token: String?,
|
|
17
17
|
entity_type: Lithic::Models::TransactionMonitoring::CaseEntity::entity_type
|
|
18
18
|
) -> void
|
|
19
19
|
|
|
20
20
|
def to_hash: -> {
|
|
21
|
-
entity_token: String
|
|
21
|
+
entity_token: String?,
|
|
22
22
|
entity_type: Lithic::Models::TransactionMonitoring::CaseEntity::entity_type
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
type entity_type = :CARD | :ACCOUNT
|
|
25
|
+
type entity_type = :CARD | :ACCOUNT | :FINANCIAL_ACCOUNT | :PROGRAM
|
|
26
26
|
|
|
27
27
|
module EntityType
|
|
28
28
|
extend Lithic::Internal::Type::Enum
|
|
29
29
|
|
|
30
30
|
CARD: :CARD
|
|
31
31
|
ACCOUNT: :ACCOUNT
|
|
32
|
+
FINANCIAL_ACCOUNT: :FINANCIAL_ACCOUNT
|
|
33
|
+
PROGRAM: :PROGRAM
|
|
32
34
|
|
|
33
35
|
def self?.values: -> ::Array[Lithic::Models::TransactionMonitoring::CaseEntity::entity_type]
|
|
34
36
|
end
|
data/sig/lithic/models.rbs
CHANGED
|
@@ -71,6 +71,10 @@ module Lithic
|
|
|
71
71
|
|
|
72
72
|
class BalanceUpdatedWebhookEvent = Lithic::Models::BalanceUpdatedWebhookEvent
|
|
73
73
|
|
|
74
|
+
class BlockchainRecipient = Lithic::Models::BlockchainRecipient
|
|
75
|
+
|
|
76
|
+
class BlockchainRecipientCreateParams = Lithic::Models::BlockchainRecipientCreateParams
|
|
77
|
+
|
|
74
78
|
class BookTransferCreateParams = Lithic::Models::BookTransferCreateParams
|
|
75
79
|
|
|
76
80
|
class BookTransferListParams = Lithic::Models::BookTransferListParams
|
|
@@ -131,6 +135,8 @@ module Lithic
|
|
|
131
135
|
|
|
132
136
|
class CardProvisionParams = Lithic::Models::CardProvisionParams
|
|
133
137
|
|
|
138
|
+
class CardReassignAccountParams = Lithic::Models::CardReassignAccountParams
|
|
139
|
+
|
|
134
140
|
class CardReissuedWebhookEvent = Lithic::Models::CardReissuedWebhookEvent
|
|
135
141
|
|
|
136
142
|
class CardReissueParams = Lithic::Models::CardReissueParams
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Resources
|
|
3
|
+
class BlockchainRecipients
|
|
4
|
+
def create: (
|
|
5
|
+
account_token: String,
|
|
6
|
+
address: String,
|
|
7
|
+
chain: String,
|
|
8
|
+
owner: String,
|
|
9
|
+
owner_type: Lithic::Models::owner_type,
|
|
10
|
+
?address_tag: String,
|
|
11
|
+
?name: String,
|
|
12
|
+
?request_options: Lithic::request_opts
|
|
13
|
+
) -> Lithic::BlockchainRecipient
|
|
14
|
+
|
|
15
|
+
def initialize: (client: Lithic::Client) -> void
|
|
16
|
+
end
|
|
17
|
+
end
|
|
18
|
+
end
|
|
@@ -88,6 +88,12 @@ module Lithic
|
|
|
88
88
|
?request_options: Lithic::request_opts
|
|
89
89
|
) -> Lithic::Models::CardProvisionResponse
|
|
90
90
|
|
|
91
|
+
def reassign_account: (
|
|
92
|
+
String card_token,
|
|
93
|
+
new_account_token: String,
|
|
94
|
+
?request_options: Lithic::request_opts
|
|
95
|
+
) -> Lithic::Card
|
|
96
|
+
|
|
91
97
|
def reissue: (
|
|
92
98
|
String card_token,
|
|
93
99
|
?carrier: Lithic::Carrier,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lithic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lithic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-08-
|
|
11
|
+
date: 2026-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -160,6 +160,8 @@ files:
|
|
|
160
160
|
- lib/lithic/models/balance.rb
|
|
161
161
|
- lib/lithic/models/balance_list_params.rb
|
|
162
162
|
- lib/lithic/models/balance_updated_webhook_event.rb
|
|
163
|
+
- lib/lithic/models/blockchain_recipient.rb
|
|
164
|
+
- lib/lithic/models/blockchain_recipient_create_params.rb
|
|
163
165
|
- lib/lithic/models/book_transfer_create_params.rb
|
|
164
166
|
- lib/lithic/models/book_transfer_list_params.rb
|
|
165
167
|
- lib/lithic/models/book_transfer_response.rb
|
|
@@ -191,6 +193,7 @@ files:
|
|
|
191
193
|
- lib/lithic/models/card_program_retrieve_params.rb
|
|
192
194
|
- lib/lithic/models/card_provision_params.rb
|
|
193
195
|
- lib/lithic/models/card_provision_response.rb
|
|
196
|
+
- lib/lithic/models/card_reassign_account_params.rb
|
|
194
197
|
- lib/lithic/models/card_reissue_params.rb
|
|
195
198
|
- lib/lithic/models/card_reissued_webhook_event.rb
|
|
196
199
|
- lib/lithic/models/card_renew_params.rb
|
|
@@ -539,6 +542,7 @@ files:
|
|
|
539
542
|
- lib/lithic/resources/auth_rules/v2/backtests.rb
|
|
540
543
|
- lib/lithic/resources/auth_stream_enrollment.rb
|
|
541
544
|
- lib/lithic/resources/balances.rb
|
|
545
|
+
- lib/lithic/resources/blockchain_recipients.rb
|
|
542
546
|
- lib/lithic/resources/book_transfers.rb
|
|
543
547
|
- lib/lithic/resources/card_authorizations.rb
|
|
544
548
|
- lib/lithic/resources/card_bulk_orders.rb
|
|
@@ -708,6 +712,8 @@ files:
|
|
|
708
712
|
- rbi/lithic/models/balance.rbi
|
|
709
713
|
- rbi/lithic/models/balance_list_params.rbi
|
|
710
714
|
- rbi/lithic/models/balance_updated_webhook_event.rbi
|
|
715
|
+
- rbi/lithic/models/blockchain_recipient.rbi
|
|
716
|
+
- rbi/lithic/models/blockchain_recipient_create_params.rbi
|
|
711
717
|
- rbi/lithic/models/book_transfer_create_params.rbi
|
|
712
718
|
- rbi/lithic/models/book_transfer_list_params.rbi
|
|
713
719
|
- rbi/lithic/models/book_transfer_response.rbi
|
|
@@ -739,6 +745,7 @@ files:
|
|
|
739
745
|
- rbi/lithic/models/card_program_retrieve_params.rbi
|
|
740
746
|
- rbi/lithic/models/card_provision_params.rbi
|
|
741
747
|
- rbi/lithic/models/card_provision_response.rbi
|
|
748
|
+
- rbi/lithic/models/card_reassign_account_params.rbi
|
|
742
749
|
- rbi/lithic/models/card_reissue_params.rbi
|
|
743
750
|
- rbi/lithic/models/card_reissued_webhook_event.rbi
|
|
744
751
|
- rbi/lithic/models/card_renew_params.rbi
|
|
@@ -1087,6 +1094,7 @@ files:
|
|
|
1087
1094
|
- rbi/lithic/resources/auth_rules/v2/backtests.rbi
|
|
1088
1095
|
- rbi/lithic/resources/auth_stream_enrollment.rbi
|
|
1089
1096
|
- rbi/lithic/resources/balances.rbi
|
|
1097
|
+
- rbi/lithic/resources/blockchain_recipients.rbi
|
|
1090
1098
|
- rbi/lithic/resources/book_transfers.rbi
|
|
1091
1099
|
- rbi/lithic/resources/card_authorizations.rbi
|
|
1092
1100
|
- rbi/lithic/resources/card_bulk_orders.rbi
|
|
@@ -1255,6 +1263,8 @@ files:
|
|
|
1255
1263
|
- sig/lithic/models/balance.rbs
|
|
1256
1264
|
- sig/lithic/models/balance_list_params.rbs
|
|
1257
1265
|
- sig/lithic/models/balance_updated_webhook_event.rbs
|
|
1266
|
+
- sig/lithic/models/blockchain_recipient.rbs
|
|
1267
|
+
- sig/lithic/models/blockchain_recipient_create_params.rbs
|
|
1258
1268
|
- sig/lithic/models/book_transfer_create_params.rbs
|
|
1259
1269
|
- sig/lithic/models/book_transfer_list_params.rbs
|
|
1260
1270
|
- sig/lithic/models/book_transfer_response.rbs
|
|
@@ -1286,6 +1296,7 @@ files:
|
|
|
1286
1296
|
- sig/lithic/models/card_program_retrieve_params.rbs
|
|
1287
1297
|
- sig/lithic/models/card_provision_params.rbs
|
|
1288
1298
|
- sig/lithic/models/card_provision_response.rbs
|
|
1299
|
+
- sig/lithic/models/card_reassign_account_params.rbs
|
|
1289
1300
|
- sig/lithic/models/card_reissue_params.rbs
|
|
1290
1301
|
- sig/lithic/models/card_reissued_webhook_event.rbs
|
|
1291
1302
|
- sig/lithic/models/card_renew_params.rbs
|
|
@@ -1634,6 +1645,7 @@ files:
|
|
|
1634
1645
|
- sig/lithic/resources/auth_rules/v2/backtests.rbs
|
|
1635
1646
|
- sig/lithic/resources/auth_stream_enrollment.rbs
|
|
1636
1647
|
- sig/lithic/resources/balances.rbs
|
|
1648
|
+
- sig/lithic/resources/blockchain_recipients.rbs
|
|
1637
1649
|
- sig/lithic/resources/book_transfers.rbs
|
|
1638
1650
|
- sig/lithic/resources/card_authorizations.rbs
|
|
1639
1651
|
- sig/lithic/resources/card_bulk_orders.rbs
|