lithic 0.2.0 → 0.4.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 +78 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +5 -10
- data/lib/lithic/internal/transport/pooled_net_requester.rb +12 -10
- data/lib/lithic/internal/util.rb +7 -2
- data/lib/lithic/models/auth_rules/conditional_tokenization_action_parameters.rb +5 -0
- data/lib/lithic/models/auth_rules/velocity_limit_params.rb +21 -21
- data/lib/lithic/models/book_transfer_retry_params.rb +26 -0
- data/lib/lithic/models/{asa_request_webhook_event.rb → card_authorization_approval_request_webhook_event.rb} +151 -129
- data/lib/lithic/models/card_create_params.rb +12 -5
- data/lib/lithic/models/card_updated_webhook_event.rb +40 -0
- data/lib/lithic/models/card_web_provision_response.rb +5 -5
- data/lib/lithic/models/event.rb +3 -0
- data/lib/lithic/models/event_list_params.rb +2 -0
- data/lib/lithic/models/event_subscription.rb +2 -0
- data/lib/lithic/models/events/subscription_create_params.rb +2 -0
- data/lib/lithic/models/events/subscription_send_simulated_example_params.rb +1 -0
- data/lib/lithic/models/events/subscription_update_params.rb +2 -0
- data/lib/lithic/models/external_payment_create_params.rb +15 -1
- data/lib/lithic/models/financial_account.rb +33 -25
- data/lib/lithic/models/financial_account_update_status_params.rb +9 -1
- data/lib/lithic/models/financial_accounts/loan_tape.rb +52 -3
- data/lib/lithic/models/financial_transaction.rb +4 -2
- data/lib/lithic/models/management_operation_create_params.rb +6 -1
- data/lib/lithic/models/non_pci_card.rb +8 -10
- data/lib/lithic/models/parsed_webhook_event.rb +5 -4
- data/lib/lithic/models/payment.rb +10 -1
- data/lib/lithic/models/payment_create_params.rb +1 -1
- data/lib/lithic/models/three_ds_authentication_approval_request_webhook_event.rb +17 -0
- data/lib/lithic/models/transaction.rb +12 -1
- data/lib/lithic/models/transaction_simulate_authorization_params.rb +25 -1
- data/lib/lithic/models/transaction_simulate_credit_authorization_advice_params.rb +25 -1
- data/lib/lithic/models/transfer_limit_list_params.rb +22 -0
- data/lib/lithic/models/transfer_limits_response.rb +274 -0
- data/lib/lithic/models.rb +14 -6
- data/lib/lithic/resources/book_transfers.rb +27 -0
- data/lib/lithic/resources/cards.rb +33 -27
- data/lib/lithic/resources/external_payments.rb +13 -1
- data/lib/lithic/resources/financial_accounts.rb +8 -6
- data/lib/lithic/resources/management_operations.rb +4 -1
- data/lib/lithic/resources/transactions.rb +14 -2
- data/lib/lithic/resources/transfer_limits.rb +37 -0
- data/lib/lithic/resources/webhooks.rb +3 -2
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +7 -7
- data/rbi/lithic/client.rbi +3 -3
- data/rbi/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbi +11 -0
- data/rbi/lithic/models/auth_rules/velocity_limit_params.rbi +47 -45
- data/rbi/lithic/models/book_transfer_retry_params.rbi +42 -0
- data/rbi/lithic/models/{asa_request_webhook_event.rbi → card_authorization_approval_request_webhook_event.rbi} +394 -256
- data/rbi/lithic/models/card_create_params.rbi +15 -6
- data/rbi/lithic/models/card_updated_webhook_event.rbi +61 -0
- data/rbi/lithic/models/card_web_provision_response.rbi +5 -10
- data/rbi/lithic/models/event.rbi +5 -0
- data/rbi/lithic/models/event_list_params.rbi +6 -0
- data/rbi/lithic/models/event_subscription.rbi +6 -0
- data/rbi/lithic/models/events/subscription_create_params.rbi +6 -0
- data/rbi/lithic/models/events/subscription_send_simulated_example_params.rbi +5 -0
- data/rbi/lithic/models/events/subscription_update_params.rbi +6 -0
- data/rbi/lithic/models/external_payment_create_params.rbi +4 -0
- data/rbi/lithic/models/financial_account.rbi +62 -54
- data/rbi/lithic/models/financial_account_update_status_params.rbi +11 -0
- data/rbi/lithic/models/financial_accounts/loan_tape.rbi +93 -4
- data/rbi/lithic/models/financial_transaction.rbi +8 -4
- data/rbi/lithic/models/management_operation_create_params.rbi +4 -0
- data/rbi/lithic/models/non_pci_card.rbi +12 -15
- data/rbi/lithic/models/parsed_webhook_event.rbi +3 -2
- data/rbi/lithic/models/payment.rbi +16 -3
- data/rbi/lithic/models/three_ds_authentication_approval_request_webhook_event.rbi +27 -0
- data/rbi/lithic/models/transaction.rbi +20 -0
- data/rbi/lithic/models/transaction_simulate_authorization_params.rbi +33 -0
- data/rbi/lithic/models/transaction_simulate_credit_authorization_advice_params.rbi +33 -0
- data/rbi/lithic/models/transfer_limit_list_params.rbi +43 -0
- data/rbi/lithic/models/transfer_limits_response.rbi +604 -0
- data/rbi/lithic/models.rbi +14 -6
- data/rbi/lithic/resources/book_transfers.rbi +18 -0
- data/rbi/lithic/resources/cards.rbi +52 -49
- data/rbi/lithic/resources/external_payments.rbi +2 -0
- data/rbi/lithic/resources/financial_accounts.rbi +8 -5
- data/rbi/lithic/resources/management_operations.rbi +2 -0
- data/rbi/lithic/resources/transactions.rbi +18 -0
- data/rbi/lithic/resources/transfer_limits.rbi +28 -0
- data/rbi/lithic/resources/webhooks.rbi +4 -65
- data/sig/lithic/client.rbs +2 -2
- data/sig/lithic/models/auth_rules/conditional_tokenization_action_parameters.rbs +2 -0
- data/sig/lithic/models/auth_rules/velocity_limit_params.rbs +20 -16
- data/sig/lithic/models/book_transfer_retry_params.rbs +23 -0
- data/sig/lithic/models/{asa_request_webhook_event.rbs → card_authorization_approval_request_webhook_event.rbs} +161 -156
- data/sig/lithic/models/card_create_params.rbs +8 -1
- data/sig/lithic/models/card_updated_webhook_event.rbs +35 -0
- data/sig/lithic/models/card_web_provision_response.rbs +4 -10
- data/sig/lithic/models/event.rbs +2 -0
- data/sig/lithic/models/event_list_params.rbs +2 -0
- data/sig/lithic/models/event_subscription.rbs +2 -0
- data/sig/lithic/models/events/subscription_create_params.rbs +2 -0
- data/sig/lithic/models/events/subscription_send_simulated_example_params.rbs +2 -0
- data/sig/lithic/models/events/subscription_update_params.rbs +2 -0
- data/sig/lithic/models/financial_account.rbs +32 -27
- data/sig/lithic/models/financial_account_update_status_params.rbs +8 -1
- data/sig/lithic/models/financial_accounts/loan_tape.rbs +46 -4
- data/sig/lithic/models/parsed_webhook_event.rbs +3 -2
- data/sig/lithic/models/payment.rbs +10 -3
- data/sig/lithic/models/three_ds_authentication_approval_request_webhook_event.rbs +22 -0
- data/sig/lithic/models/transaction.rbs +9 -0
- data/sig/lithic/models/transaction_simulate_authorization_params.rbs +21 -0
- data/sig/lithic/models/transaction_simulate_credit_authorization_advice_params.rbs +22 -1
- data/sig/lithic/models/transfer_limit_list_params.rbs +22 -0
- data/sig/lithic/models/transfer_limits_response.rbs +232 -0
- data/sig/lithic/models.rbs +12 -6
- data/sig/lithic/resources/book_transfers.rbs +6 -0
- data/sig/lithic/resources/cards.rbs +1 -2
- data/sig/lithic/resources/financial_accounts.rbs +1 -0
- data/sig/lithic/resources/transactions.rbs +6 -0
- data/sig/lithic/resources/transfer_limits.rbs +12 -0
- data/sig/lithic/resources/webhooks.rbs +4 -61
- metadata +37 -23
- data/lib/lithic/models/aggregate_balance.rb +0 -113
- data/lib/lithic/models/aggregate_balance_list_params.rb +0 -35
- data/lib/lithic/models/cards/aggregate_balance_list_params.rb +0 -32
- data/lib/lithic/models/cards/aggregate_balance_list_response.rb +0 -92
- data/lib/lithic/resources/aggregate_balances.rb +0 -38
- data/lib/lithic/resources/cards/aggregate_balances.rb +0 -41
- data/rbi/lithic/models/aggregate_balance.rbi +0 -164
- data/rbi/lithic/models/aggregate_balance_list_params.rbi +0 -104
- data/rbi/lithic/models/cards/aggregate_balance_list_params.rbi +0 -62
- data/rbi/lithic/models/cards/aggregate_balance_list_response.rbi +0 -115
- data/rbi/lithic/resources/aggregate_balances.rbi +0 -28
- data/rbi/lithic/resources/cards/aggregate_balances.rbi +0 -35
- data/sig/lithic/models/aggregate_balance.rbs +0 -78
- data/sig/lithic/models/aggregate_balance_list_params.rbs +0 -43
- data/sig/lithic/models/cards/aggregate_balance_list_params.rbs +0 -34
- data/sig/lithic/models/cards/aggregate_balance_list_response.rbs +0 -62
- data/sig/lithic/resources/aggregate_balances.rbs +0 -12
- data/sig/lithic/resources/cards/aggregate_balances.rbs +0 -15
metadata
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lithic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lithic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2026-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: cgi
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
- !ruby/object:Gem::Dependency
|
|
14
28
|
name: connection_pool
|
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -88,10 +102,7 @@ files:
|
|
|
88
102
|
- lib/lithic/models/account_update_params.rb
|
|
89
103
|
- lib/lithic/models/address.rb
|
|
90
104
|
- lib/lithic/models/address_update.rb
|
|
91
|
-
- lib/lithic/models/aggregate_balance.rb
|
|
92
|
-
- lib/lithic/models/aggregate_balance_list_params.rb
|
|
93
105
|
- lib/lithic/models/api_status.rb
|
|
94
|
-
- lib/lithic/models/asa_request_webhook_event.rb
|
|
95
106
|
- lib/lithic/models/auth_rules/auth_rule.rb
|
|
96
107
|
- lib/lithic/models/auth_rules/auth_rule_condition.rb
|
|
97
108
|
- lib/lithic/models/auth_rules/conditional_3ds_action_parameters.rb
|
|
@@ -133,10 +144,12 @@ files:
|
|
|
133
144
|
- lib/lithic/models/book_transfer_list_params.rb
|
|
134
145
|
- lib/lithic/models/book_transfer_response.rb
|
|
135
146
|
- lib/lithic/models/book_transfer_retrieve_params.rb
|
|
147
|
+
- lib/lithic/models/book_transfer_retry_params.rb
|
|
136
148
|
- lib/lithic/models/book_transfer_reverse_params.rb
|
|
137
149
|
- lib/lithic/models/book_transfer_transaction_created_webhook_event.rb
|
|
138
150
|
- lib/lithic/models/book_transfer_transaction_updated_webhook_event.rb
|
|
139
151
|
- lib/lithic/models/card.rb
|
|
152
|
+
- lib/lithic/models/card_authorization_approval_request_webhook_event.rb
|
|
140
153
|
- lib/lithic/models/card_bulk_order.rb
|
|
141
154
|
- lib/lithic/models/card_bulk_order_create_params.rb
|
|
142
155
|
- lib/lithic/models/card_bulk_order_list_params.rb
|
|
@@ -167,11 +180,10 @@ files:
|
|
|
167
180
|
- lib/lithic/models/card_transaction_enhanced_data_updated_webhook_event.rb
|
|
168
181
|
- lib/lithic/models/card_transaction_updated_webhook_event.rb
|
|
169
182
|
- lib/lithic/models/card_update_params.rb
|
|
183
|
+
- lib/lithic/models/card_updated_webhook_event.rb
|
|
170
184
|
- lib/lithic/models/card_web_provision_params.rb
|
|
171
185
|
- lib/lithic/models/card_web_provision_response.rb
|
|
172
186
|
- lib/lithic/models/cardholder_authentication.rb
|
|
173
|
-
- lib/lithic/models/cards/aggregate_balance_list_params.rb
|
|
174
|
-
- lib/lithic/models/cards/aggregate_balance_list_response.rb
|
|
175
187
|
- lib/lithic/models/cards/balance_list_params.rb
|
|
176
188
|
- lib/lithic/models/cards/financial_transaction_list_params.rb
|
|
177
189
|
- lib/lithic/models/cards/financial_transaction_retrieve_params.rb
|
|
@@ -375,6 +387,7 @@ files:
|
|
|
375
387
|
- lib/lithic/models/three_ds/decisioning_retrieve_secret_response.rb
|
|
376
388
|
- lib/lithic/models/three_ds/decisioning_rotate_secret_params.rb
|
|
377
389
|
- lib/lithic/models/three_ds_authentication.rb
|
|
390
|
+
- lib/lithic/models/three_ds_authentication_approval_request_webhook_event.rb
|
|
378
391
|
- lib/lithic/models/three_ds_authentication_challenge_webhook_event.rb
|
|
379
392
|
- lib/lithic/models/three_ds_authentication_created_webhook_event.rb
|
|
380
393
|
- lib/lithic/models/three_ds_authentication_updated_webhook_event.rb
|
|
@@ -426,6 +439,8 @@ files:
|
|
|
426
439
|
- lib/lithic/models/transactions/events/enhanced_data.rb
|
|
427
440
|
- lib/lithic/models/transfer.rb
|
|
428
441
|
- lib/lithic/models/transfer_create_params.rb
|
|
442
|
+
- lib/lithic/models/transfer_limit_list_params.rb
|
|
443
|
+
- lib/lithic/models/transfer_limits_response.rb
|
|
429
444
|
- lib/lithic/models/verification_method.rb
|
|
430
445
|
- lib/lithic/models/wallet_decisioning_info.rb
|
|
431
446
|
- lib/lithic/models/webhook_parsed_params.rb
|
|
@@ -434,7 +449,6 @@ files:
|
|
|
434
449
|
- lib/lithic/resources/account_activity.rb
|
|
435
450
|
- lib/lithic/resources/account_holders.rb
|
|
436
451
|
- lib/lithic/resources/accounts.rb
|
|
437
|
-
- lib/lithic/resources/aggregate_balances.rb
|
|
438
452
|
- lib/lithic/resources/auth_rules.rb
|
|
439
453
|
- lib/lithic/resources/auth_rules/v2.rb
|
|
440
454
|
- lib/lithic/resources/auth_rules/v2/backtests.rb
|
|
@@ -444,7 +458,6 @@ files:
|
|
|
444
458
|
- lib/lithic/resources/card_bulk_orders.rb
|
|
445
459
|
- lib/lithic/resources/card_programs.rb
|
|
446
460
|
- lib/lithic/resources/cards.rb
|
|
447
|
-
- lib/lithic/resources/cards/aggregate_balances.rb
|
|
448
461
|
- lib/lithic/resources/cards/balances.rb
|
|
449
462
|
- lib/lithic/resources/cards/financial_transactions.rb
|
|
450
463
|
- lib/lithic/resources/credit_products.rb
|
|
@@ -486,6 +499,7 @@ files:
|
|
|
486
499
|
- lib/lithic/resources/transactions/enhanced_commercial_data.rb
|
|
487
500
|
- lib/lithic/resources/transactions/events.rb
|
|
488
501
|
- lib/lithic/resources/transactions/events/enhanced_commercial_data.rb
|
|
502
|
+
- lib/lithic/resources/transfer_limits.rb
|
|
489
503
|
- lib/lithic/resources/transfers.rb
|
|
490
504
|
- lib/lithic/resources/webhooks.rb
|
|
491
505
|
- lib/lithic/version.rb
|
|
@@ -542,10 +556,7 @@ files:
|
|
|
542
556
|
- rbi/lithic/models/account_update_params.rbi
|
|
543
557
|
- rbi/lithic/models/address.rbi
|
|
544
558
|
- rbi/lithic/models/address_update.rbi
|
|
545
|
-
- rbi/lithic/models/aggregate_balance.rbi
|
|
546
|
-
- rbi/lithic/models/aggregate_balance_list_params.rbi
|
|
547
559
|
- rbi/lithic/models/api_status.rbi
|
|
548
|
-
- rbi/lithic/models/asa_request_webhook_event.rbi
|
|
549
560
|
- rbi/lithic/models/auth_rules/auth_rule.rbi
|
|
550
561
|
- rbi/lithic/models/auth_rules/auth_rule_condition.rbi
|
|
551
562
|
- rbi/lithic/models/auth_rules/conditional_3ds_action_parameters.rbi
|
|
@@ -587,10 +598,12 @@ files:
|
|
|
587
598
|
- rbi/lithic/models/book_transfer_list_params.rbi
|
|
588
599
|
- rbi/lithic/models/book_transfer_response.rbi
|
|
589
600
|
- rbi/lithic/models/book_transfer_retrieve_params.rbi
|
|
601
|
+
- rbi/lithic/models/book_transfer_retry_params.rbi
|
|
590
602
|
- rbi/lithic/models/book_transfer_reverse_params.rbi
|
|
591
603
|
- rbi/lithic/models/book_transfer_transaction_created_webhook_event.rbi
|
|
592
604
|
- rbi/lithic/models/book_transfer_transaction_updated_webhook_event.rbi
|
|
593
605
|
- rbi/lithic/models/card.rbi
|
|
606
|
+
- rbi/lithic/models/card_authorization_approval_request_webhook_event.rbi
|
|
594
607
|
- rbi/lithic/models/card_bulk_order.rbi
|
|
595
608
|
- rbi/lithic/models/card_bulk_order_create_params.rbi
|
|
596
609
|
- rbi/lithic/models/card_bulk_order_list_params.rbi
|
|
@@ -621,11 +634,10 @@ files:
|
|
|
621
634
|
- rbi/lithic/models/card_transaction_enhanced_data_updated_webhook_event.rbi
|
|
622
635
|
- rbi/lithic/models/card_transaction_updated_webhook_event.rbi
|
|
623
636
|
- rbi/lithic/models/card_update_params.rbi
|
|
637
|
+
- rbi/lithic/models/card_updated_webhook_event.rbi
|
|
624
638
|
- rbi/lithic/models/card_web_provision_params.rbi
|
|
625
639
|
- rbi/lithic/models/card_web_provision_response.rbi
|
|
626
640
|
- rbi/lithic/models/cardholder_authentication.rbi
|
|
627
|
-
- rbi/lithic/models/cards/aggregate_balance_list_params.rbi
|
|
628
|
-
- rbi/lithic/models/cards/aggregate_balance_list_response.rbi
|
|
629
641
|
- rbi/lithic/models/cards/balance_list_params.rbi
|
|
630
642
|
- rbi/lithic/models/cards/financial_transaction_list_params.rbi
|
|
631
643
|
- rbi/lithic/models/cards/financial_transaction_retrieve_params.rbi
|
|
@@ -829,6 +841,7 @@ files:
|
|
|
829
841
|
- rbi/lithic/models/three_ds/decisioning_retrieve_secret_response.rbi
|
|
830
842
|
- rbi/lithic/models/three_ds/decisioning_rotate_secret_params.rbi
|
|
831
843
|
- rbi/lithic/models/three_ds_authentication.rbi
|
|
844
|
+
- rbi/lithic/models/three_ds_authentication_approval_request_webhook_event.rbi
|
|
832
845
|
- rbi/lithic/models/three_ds_authentication_challenge_webhook_event.rbi
|
|
833
846
|
- rbi/lithic/models/three_ds_authentication_created_webhook_event.rbi
|
|
834
847
|
- rbi/lithic/models/three_ds_authentication_updated_webhook_event.rbi
|
|
@@ -880,6 +893,8 @@ files:
|
|
|
880
893
|
- rbi/lithic/models/transactions/events/enhanced_data.rbi
|
|
881
894
|
- rbi/lithic/models/transfer.rbi
|
|
882
895
|
- rbi/lithic/models/transfer_create_params.rbi
|
|
896
|
+
- rbi/lithic/models/transfer_limit_list_params.rbi
|
|
897
|
+
- rbi/lithic/models/transfer_limits_response.rbi
|
|
883
898
|
- rbi/lithic/models/verification_method.rbi
|
|
884
899
|
- rbi/lithic/models/wallet_decisioning_info.rbi
|
|
885
900
|
- rbi/lithic/models/webhook_parsed_params.rbi
|
|
@@ -888,7 +903,6 @@ files:
|
|
|
888
903
|
- rbi/lithic/resources/account_activity.rbi
|
|
889
904
|
- rbi/lithic/resources/account_holders.rbi
|
|
890
905
|
- rbi/lithic/resources/accounts.rbi
|
|
891
|
-
- rbi/lithic/resources/aggregate_balances.rbi
|
|
892
906
|
- rbi/lithic/resources/auth_rules.rbi
|
|
893
907
|
- rbi/lithic/resources/auth_rules/v2.rbi
|
|
894
908
|
- rbi/lithic/resources/auth_rules/v2/backtests.rbi
|
|
@@ -898,7 +912,6 @@ files:
|
|
|
898
912
|
- rbi/lithic/resources/card_bulk_orders.rbi
|
|
899
913
|
- rbi/lithic/resources/card_programs.rbi
|
|
900
914
|
- rbi/lithic/resources/cards.rbi
|
|
901
|
-
- rbi/lithic/resources/cards/aggregate_balances.rbi
|
|
902
915
|
- rbi/lithic/resources/cards/balances.rbi
|
|
903
916
|
- rbi/lithic/resources/cards/financial_transactions.rbi
|
|
904
917
|
- rbi/lithic/resources/credit_products.rbi
|
|
@@ -940,6 +953,7 @@ files:
|
|
|
940
953
|
- rbi/lithic/resources/transactions/enhanced_commercial_data.rbi
|
|
941
954
|
- rbi/lithic/resources/transactions/events.rbi
|
|
942
955
|
- rbi/lithic/resources/transactions/events/enhanced_commercial_data.rbi
|
|
956
|
+
- rbi/lithic/resources/transfer_limits.rbi
|
|
943
957
|
- rbi/lithic/resources/transfers.rbi
|
|
944
958
|
- rbi/lithic/resources/webhooks.rbi
|
|
945
959
|
- rbi/lithic/version.rbi
|
|
@@ -995,10 +1009,7 @@ files:
|
|
|
995
1009
|
- sig/lithic/models/account_update_params.rbs
|
|
996
1010
|
- sig/lithic/models/address.rbs
|
|
997
1011
|
- sig/lithic/models/address_update.rbs
|
|
998
|
-
- sig/lithic/models/aggregate_balance.rbs
|
|
999
|
-
- sig/lithic/models/aggregate_balance_list_params.rbs
|
|
1000
1012
|
- sig/lithic/models/api_status.rbs
|
|
1001
|
-
- sig/lithic/models/asa_request_webhook_event.rbs
|
|
1002
1013
|
- sig/lithic/models/auth_rules/auth_rule.rbs
|
|
1003
1014
|
- sig/lithic/models/auth_rules/auth_rule_condition.rbs
|
|
1004
1015
|
- sig/lithic/models/auth_rules/conditional_3ds_action_parameters.rbs
|
|
@@ -1040,10 +1051,12 @@ files:
|
|
|
1040
1051
|
- sig/lithic/models/book_transfer_list_params.rbs
|
|
1041
1052
|
- sig/lithic/models/book_transfer_response.rbs
|
|
1042
1053
|
- sig/lithic/models/book_transfer_retrieve_params.rbs
|
|
1054
|
+
- sig/lithic/models/book_transfer_retry_params.rbs
|
|
1043
1055
|
- sig/lithic/models/book_transfer_reverse_params.rbs
|
|
1044
1056
|
- sig/lithic/models/book_transfer_transaction_created_webhook_event.rbs
|
|
1045
1057
|
- sig/lithic/models/book_transfer_transaction_updated_webhook_event.rbs
|
|
1046
1058
|
- sig/lithic/models/card.rbs
|
|
1059
|
+
- sig/lithic/models/card_authorization_approval_request_webhook_event.rbs
|
|
1047
1060
|
- sig/lithic/models/card_bulk_order.rbs
|
|
1048
1061
|
- sig/lithic/models/card_bulk_order_create_params.rbs
|
|
1049
1062
|
- sig/lithic/models/card_bulk_order_list_params.rbs
|
|
@@ -1074,11 +1087,10 @@ files:
|
|
|
1074
1087
|
- sig/lithic/models/card_transaction_enhanced_data_updated_webhook_event.rbs
|
|
1075
1088
|
- sig/lithic/models/card_transaction_updated_webhook_event.rbs
|
|
1076
1089
|
- sig/lithic/models/card_update_params.rbs
|
|
1090
|
+
- sig/lithic/models/card_updated_webhook_event.rbs
|
|
1077
1091
|
- sig/lithic/models/card_web_provision_params.rbs
|
|
1078
1092
|
- sig/lithic/models/card_web_provision_response.rbs
|
|
1079
1093
|
- sig/lithic/models/cardholder_authentication.rbs
|
|
1080
|
-
- sig/lithic/models/cards/aggregate_balance_list_params.rbs
|
|
1081
|
-
- sig/lithic/models/cards/aggregate_balance_list_response.rbs
|
|
1082
1094
|
- sig/lithic/models/cards/balance_list_params.rbs
|
|
1083
1095
|
- sig/lithic/models/cards/financial_transaction_list_params.rbs
|
|
1084
1096
|
- sig/lithic/models/cards/financial_transaction_retrieve_params.rbs
|
|
@@ -1282,6 +1294,7 @@ files:
|
|
|
1282
1294
|
- sig/lithic/models/three_ds/decisioning_retrieve_secret_response.rbs
|
|
1283
1295
|
- sig/lithic/models/three_ds/decisioning_rotate_secret_params.rbs
|
|
1284
1296
|
- sig/lithic/models/three_ds_authentication.rbs
|
|
1297
|
+
- sig/lithic/models/three_ds_authentication_approval_request_webhook_event.rbs
|
|
1285
1298
|
- sig/lithic/models/three_ds_authentication_challenge_webhook_event.rbs
|
|
1286
1299
|
- sig/lithic/models/three_ds_authentication_created_webhook_event.rbs
|
|
1287
1300
|
- sig/lithic/models/three_ds_authentication_updated_webhook_event.rbs
|
|
@@ -1333,6 +1346,8 @@ files:
|
|
|
1333
1346
|
- sig/lithic/models/transactions/events/enhanced_data.rbs
|
|
1334
1347
|
- sig/lithic/models/transfer.rbs
|
|
1335
1348
|
- sig/lithic/models/transfer_create_params.rbs
|
|
1349
|
+
- sig/lithic/models/transfer_limit_list_params.rbs
|
|
1350
|
+
- sig/lithic/models/transfer_limits_response.rbs
|
|
1336
1351
|
- sig/lithic/models/verification_method.rbs
|
|
1337
1352
|
- sig/lithic/models/wallet_decisioning_info.rbs
|
|
1338
1353
|
- sig/lithic/models/webhook_parsed_params.rbs
|
|
@@ -1341,7 +1356,6 @@ files:
|
|
|
1341
1356
|
- sig/lithic/resources/account_activity.rbs
|
|
1342
1357
|
- sig/lithic/resources/account_holders.rbs
|
|
1343
1358
|
- sig/lithic/resources/accounts.rbs
|
|
1344
|
-
- sig/lithic/resources/aggregate_balances.rbs
|
|
1345
1359
|
- sig/lithic/resources/auth_rules.rbs
|
|
1346
1360
|
- sig/lithic/resources/auth_rules/v2.rbs
|
|
1347
1361
|
- sig/lithic/resources/auth_rules/v2/backtests.rbs
|
|
@@ -1351,7 +1365,6 @@ files:
|
|
|
1351
1365
|
- sig/lithic/resources/card_bulk_orders.rbs
|
|
1352
1366
|
- sig/lithic/resources/card_programs.rbs
|
|
1353
1367
|
- sig/lithic/resources/cards.rbs
|
|
1354
|
-
- sig/lithic/resources/cards/aggregate_balances.rbs
|
|
1355
1368
|
- sig/lithic/resources/cards/balances.rbs
|
|
1356
1369
|
- sig/lithic/resources/cards/financial_transactions.rbs
|
|
1357
1370
|
- sig/lithic/resources/credit_products.rbs
|
|
@@ -1393,6 +1406,7 @@ files:
|
|
|
1393
1406
|
- sig/lithic/resources/transactions/enhanced_commercial_data.rbs
|
|
1394
1407
|
- sig/lithic/resources/transactions/events.rbs
|
|
1395
1408
|
- sig/lithic/resources/transactions/events/enhanced_commercial_data.rbs
|
|
1409
|
+
- sig/lithic/resources/transfer_limits.rbs
|
|
1396
1410
|
- sig/lithic/resources/transfers.rbs
|
|
1397
1411
|
- sig/lithic/resources/webhooks.rbs
|
|
1398
1412
|
- sig/lithic/version.rbs
|
|
@@ -1,113 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Models
|
|
5
|
-
# @see Lithic::Resources::AggregateBalances#list
|
|
6
|
-
class AggregateBalance < Lithic::Internal::Type::BaseModel
|
|
7
|
-
# @!attribute available_amount
|
|
8
|
-
# Funds available for spend in the currency's smallest unit (e.g., cents for USD)
|
|
9
|
-
#
|
|
10
|
-
# @return [Integer]
|
|
11
|
-
required :available_amount, Integer
|
|
12
|
-
|
|
13
|
-
# @!attribute created
|
|
14
|
-
# Date and time for when the balance was first created.
|
|
15
|
-
#
|
|
16
|
-
# @return [Time]
|
|
17
|
-
required :created, Time
|
|
18
|
-
|
|
19
|
-
# @!attribute currency
|
|
20
|
-
# 3-character alphabetic ISO 4217 code for the local currency of the balance.
|
|
21
|
-
#
|
|
22
|
-
# @return [String]
|
|
23
|
-
required :currency, String
|
|
24
|
-
|
|
25
|
-
# @!attribute financial_account_type
|
|
26
|
-
# Type of financial account
|
|
27
|
-
#
|
|
28
|
-
# @return [Symbol, Lithic::Models::AggregateBalance::FinancialAccountType]
|
|
29
|
-
required :financial_account_type, enum: -> { Lithic::AggregateBalance::FinancialAccountType }
|
|
30
|
-
|
|
31
|
-
# @!attribute last_financial_account_token
|
|
32
|
-
# Globally unique identifier for the financial account that had its balance
|
|
33
|
-
# updated most recently
|
|
34
|
-
#
|
|
35
|
-
# @return [String]
|
|
36
|
-
required :last_financial_account_token, String
|
|
37
|
-
|
|
38
|
-
# @!attribute last_transaction_event_token
|
|
39
|
-
# Globally unique identifier for the last transaction event that impacted this
|
|
40
|
-
# balance
|
|
41
|
-
#
|
|
42
|
-
# @return [String]
|
|
43
|
-
required :last_transaction_event_token, String
|
|
44
|
-
|
|
45
|
-
# @!attribute last_transaction_token
|
|
46
|
-
# Globally unique identifier for the last transaction that impacted this balance
|
|
47
|
-
#
|
|
48
|
-
# @return [String]
|
|
49
|
-
required :last_transaction_token, String
|
|
50
|
-
|
|
51
|
-
# @!attribute pending_amount
|
|
52
|
-
# Funds not available for spend due to card authorizations or pending ACH release.
|
|
53
|
-
# Shown in the currency's smallest unit (e.g., cents for USD)
|
|
54
|
-
#
|
|
55
|
-
# @return [Integer]
|
|
56
|
-
required :pending_amount, Integer
|
|
57
|
-
|
|
58
|
-
# @!attribute total_amount
|
|
59
|
-
# The sum of available and pending balance in the currency's smallest unit (e.g.,
|
|
60
|
-
# cents for USD)
|
|
61
|
-
#
|
|
62
|
-
# @return [Integer]
|
|
63
|
-
required :total_amount, Integer
|
|
64
|
-
|
|
65
|
-
# @!attribute updated
|
|
66
|
-
# Date and time for when the balance was last updated.
|
|
67
|
-
#
|
|
68
|
-
# @return [Time]
|
|
69
|
-
required :updated, Time
|
|
70
|
-
|
|
71
|
-
# @!method initialize(available_amount:, created:, currency:, financial_account_type:, last_financial_account_token:, last_transaction_event_token:, last_transaction_token:, pending_amount:, total_amount:, updated:)
|
|
72
|
-
# Some parameter documentations has been truncated, see
|
|
73
|
-
# {Lithic::Models::AggregateBalance} for more details.
|
|
74
|
-
#
|
|
75
|
-
# Aggregate Balance across all end-user accounts
|
|
76
|
-
#
|
|
77
|
-
# @param available_amount [Integer] Funds available for spend in the currency's smallest unit (e.g., cents for USD)
|
|
78
|
-
#
|
|
79
|
-
# @param created [Time] Date and time for when the balance was first created.
|
|
80
|
-
#
|
|
81
|
-
# @param currency [String] 3-character alphabetic ISO 4217 code for the local currency of the balance.
|
|
82
|
-
#
|
|
83
|
-
# @param financial_account_type [Symbol, Lithic::Models::AggregateBalance::FinancialAccountType] Type of financial account
|
|
84
|
-
#
|
|
85
|
-
# @param last_financial_account_token [String] Globally unique identifier for the financial account that had its balance update
|
|
86
|
-
#
|
|
87
|
-
# @param last_transaction_event_token [String] Globally unique identifier for the last transaction event that impacted this bal
|
|
88
|
-
#
|
|
89
|
-
# @param last_transaction_token [String] Globally unique identifier for the last transaction that impacted this balance
|
|
90
|
-
#
|
|
91
|
-
# @param pending_amount [Integer] Funds not available for spend due to card authorizations or pending ACH release.
|
|
92
|
-
#
|
|
93
|
-
# @param total_amount [Integer] The sum of available and pending balance in the currency's smallest unit (e.g.,
|
|
94
|
-
#
|
|
95
|
-
# @param updated [Time] Date and time for when the balance was last updated.
|
|
96
|
-
|
|
97
|
-
# Type of financial account
|
|
98
|
-
#
|
|
99
|
-
# @see Lithic::Models::AggregateBalance#financial_account_type
|
|
100
|
-
module FinancialAccountType
|
|
101
|
-
extend Lithic::Internal::Type::Enum
|
|
102
|
-
|
|
103
|
-
ISSUING = :ISSUING
|
|
104
|
-
OPERATING = :OPERATING
|
|
105
|
-
RESERVE = :RESERVE
|
|
106
|
-
SECURITY = :SECURITY
|
|
107
|
-
|
|
108
|
-
# @!method self.values
|
|
109
|
-
# @return [Array<Symbol>]
|
|
110
|
-
end
|
|
111
|
-
end
|
|
112
|
-
end
|
|
113
|
-
end
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Models
|
|
5
|
-
# @see Lithic::Resources::AggregateBalances#list
|
|
6
|
-
class AggregateBalanceListParams < Lithic::Internal::Type::BaseModel
|
|
7
|
-
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
8
|
-
include Lithic::Internal::Type::RequestParameters
|
|
9
|
-
|
|
10
|
-
# @!attribute financial_account_type
|
|
11
|
-
# Get the aggregate balance for a given Financial Account type.
|
|
12
|
-
#
|
|
13
|
-
# @return [Symbol, Lithic::Models::AggregateBalanceListParams::FinancialAccountType, nil]
|
|
14
|
-
optional :financial_account_type, enum: -> { Lithic::AggregateBalanceListParams::FinancialAccountType }
|
|
15
|
-
|
|
16
|
-
# @!method initialize(financial_account_type: nil, request_options: {})
|
|
17
|
-
# @param financial_account_type [Symbol, Lithic::Models::AggregateBalanceListParams::FinancialAccountType] Get the aggregate balance for a given Financial Account type.
|
|
18
|
-
#
|
|
19
|
-
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
20
|
-
|
|
21
|
-
# Get the aggregate balance for a given Financial Account type.
|
|
22
|
-
module FinancialAccountType
|
|
23
|
-
extend Lithic::Internal::Type::Enum
|
|
24
|
-
|
|
25
|
-
ISSUING = :ISSUING
|
|
26
|
-
OPERATING = :OPERATING
|
|
27
|
-
RESERVE = :RESERVE
|
|
28
|
-
SECURITY = :SECURITY
|
|
29
|
-
|
|
30
|
-
# @!method self.values
|
|
31
|
-
# @return [Array<Symbol>]
|
|
32
|
-
end
|
|
33
|
-
end
|
|
34
|
-
end
|
|
35
|
-
end
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Models
|
|
5
|
-
module Cards
|
|
6
|
-
# @see Lithic::Resources::Cards::AggregateBalances#list
|
|
7
|
-
class AggregateBalanceListParams < Lithic::Internal::Type::BaseModel
|
|
8
|
-
extend Lithic::Internal::Type::RequestParameters::Converter
|
|
9
|
-
include Lithic::Internal::Type::RequestParameters
|
|
10
|
-
|
|
11
|
-
# @!attribute account_token
|
|
12
|
-
# Cardholder to retrieve aggregate balances for.
|
|
13
|
-
#
|
|
14
|
-
# @return [String, nil]
|
|
15
|
-
optional :account_token, String
|
|
16
|
-
|
|
17
|
-
# @!attribute business_account_token
|
|
18
|
-
# Business to retrieve aggregate balances for.
|
|
19
|
-
#
|
|
20
|
-
# @return [String, nil]
|
|
21
|
-
optional :business_account_token, String
|
|
22
|
-
|
|
23
|
-
# @!method initialize(account_token: nil, business_account_token: nil, request_options: {})
|
|
24
|
-
# @param account_token [String] Cardholder to retrieve aggregate balances for.
|
|
25
|
-
#
|
|
26
|
-
# @param business_account_token [String] Business to retrieve aggregate balances for.
|
|
27
|
-
#
|
|
28
|
-
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}]
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
end
|
|
32
|
-
end
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Models
|
|
5
|
-
module Cards
|
|
6
|
-
# @see Lithic::Resources::Cards::AggregateBalances#list
|
|
7
|
-
class AggregateBalanceListResponse < Lithic::Internal::Type::BaseModel
|
|
8
|
-
# @!attribute available_amount
|
|
9
|
-
# Funds available for spend in the currency's smallest unit (e.g., cents for USD)
|
|
10
|
-
#
|
|
11
|
-
# @return [Integer]
|
|
12
|
-
required :available_amount, Integer
|
|
13
|
-
|
|
14
|
-
# @!attribute created
|
|
15
|
-
# Date and time for when the balance was first created.
|
|
16
|
-
#
|
|
17
|
-
# @return [Time]
|
|
18
|
-
required :created, Time
|
|
19
|
-
|
|
20
|
-
# @!attribute currency
|
|
21
|
-
# 3-character alphabetic ISO 4217 code for the local currency of the balance.
|
|
22
|
-
#
|
|
23
|
-
# @return [String]
|
|
24
|
-
required :currency, String
|
|
25
|
-
|
|
26
|
-
# @!attribute last_card_token
|
|
27
|
-
# Globally unique identifier for the card that had its balance updated most
|
|
28
|
-
# recently
|
|
29
|
-
#
|
|
30
|
-
# @return [String]
|
|
31
|
-
required :last_card_token, String
|
|
32
|
-
|
|
33
|
-
# @!attribute last_transaction_event_token
|
|
34
|
-
# Globally unique identifier for the last transaction event that impacted this
|
|
35
|
-
# balance
|
|
36
|
-
#
|
|
37
|
-
# @return [String]
|
|
38
|
-
required :last_transaction_event_token, String
|
|
39
|
-
|
|
40
|
-
# @!attribute last_transaction_token
|
|
41
|
-
# Globally unique identifier for the last transaction that impacted this balance
|
|
42
|
-
#
|
|
43
|
-
# @return [String]
|
|
44
|
-
required :last_transaction_token, String
|
|
45
|
-
|
|
46
|
-
# @!attribute pending_amount
|
|
47
|
-
# Funds not available for spend due to card authorizations or pending ACH release.
|
|
48
|
-
# Shown in the currency's smallest unit (e.g., cents for USD)
|
|
49
|
-
#
|
|
50
|
-
# @return [Integer]
|
|
51
|
-
required :pending_amount, Integer
|
|
52
|
-
|
|
53
|
-
# @!attribute total_amount
|
|
54
|
-
# The sum of available and pending balance in the currency's smallest unit (e.g.,
|
|
55
|
-
# cents for USD)
|
|
56
|
-
#
|
|
57
|
-
# @return [Integer]
|
|
58
|
-
required :total_amount, Integer
|
|
59
|
-
|
|
60
|
-
# @!attribute updated
|
|
61
|
-
# Date and time for when the balance was last updated.
|
|
62
|
-
#
|
|
63
|
-
# @return [Time]
|
|
64
|
-
required :updated, Time
|
|
65
|
-
|
|
66
|
-
# @!method initialize(available_amount:, created:, currency:, last_card_token:, last_transaction_event_token:, last_transaction_token:, pending_amount:, total_amount:, updated:)
|
|
67
|
-
# Some parameter documentations has been truncated, see
|
|
68
|
-
# {Lithic::Models::Cards::AggregateBalanceListResponse} for more details.
|
|
69
|
-
#
|
|
70
|
-
# Card Aggregate Balance across all end-user accounts
|
|
71
|
-
#
|
|
72
|
-
# @param available_amount [Integer] Funds available for spend in the currency's smallest unit (e.g., cents for USD)
|
|
73
|
-
#
|
|
74
|
-
# @param created [Time] Date and time for when the balance was first created.
|
|
75
|
-
#
|
|
76
|
-
# @param currency [String] 3-character alphabetic ISO 4217 code for the local currency of the balance.
|
|
77
|
-
#
|
|
78
|
-
# @param last_card_token [String] Globally unique identifier for the card that had its balance updated most recent
|
|
79
|
-
#
|
|
80
|
-
# @param last_transaction_event_token [String] Globally unique identifier for the last transaction event that impacted this bal
|
|
81
|
-
#
|
|
82
|
-
# @param last_transaction_token [String] Globally unique identifier for the last transaction that impacted this balance
|
|
83
|
-
#
|
|
84
|
-
# @param pending_amount [Integer] Funds not available for spend due to card authorizations or pending ACH release.
|
|
85
|
-
#
|
|
86
|
-
# @param total_amount [Integer] The sum of available and pending balance in the currency's smallest unit (e.g.,
|
|
87
|
-
#
|
|
88
|
-
# @param updated [Time] Date and time for when the balance was last updated.
|
|
89
|
-
end
|
|
90
|
-
end
|
|
91
|
-
end
|
|
92
|
-
end
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Resources
|
|
5
|
-
class AggregateBalances
|
|
6
|
-
# Get the aggregated balance across all end-user accounts by financial account
|
|
7
|
-
# type
|
|
8
|
-
#
|
|
9
|
-
# @overload list(financial_account_type: nil, request_options: {})
|
|
10
|
-
#
|
|
11
|
-
# @param financial_account_type [Symbol, Lithic::Models::AggregateBalanceListParams::FinancialAccountType] Get the aggregate balance for a given Financial Account type.
|
|
12
|
-
#
|
|
13
|
-
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
14
|
-
#
|
|
15
|
-
# @return [Lithic::Internal::SinglePage<Lithic::Models::AggregateBalance>]
|
|
16
|
-
#
|
|
17
|
-
# @see Lithic::Models::AggregateBalanceListParams
|
|
18
|
-
def list(params = {})
|
|
19
|
-
parsed, options = Lithic::AggregateBalanceListParams.dump_request(params)
|
|
20
|
-
@client.request(
|
|
21
|
-
method: :get,
|
|
22
|
-
path: "v1/aggregate_balances",
|
|
23
|
-
query: parsed,
|
|
24
|
-
page: Lithic::Internal::SinglePage,
|
|
25
|
-
model: Lithic::AggregateBalance,
|
|
26
|
-
options: options
|
|
27
|
-
)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
# @api private
|
|
31
|
-
#
|
|
32
|
-
# @param client [Lithic::Client]
|
|
33
|
-
def initialize(client:)
|
|
34
|
-
@client = client
|
|
35
|
-
end
|
|
36
|
-
end
|
|
37
|
-
end
|
|
38
|
-
end
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
module Lithic
|
|
4
|
-
module Resources
|
|
5
|
-
class Cards
|
|
6
|
-
class AggregateBalances
|
|
7
|
-
# Get the aggregated card balance across all end-user accounts.
|
|
8
|
-
#
|
|
9
|
-
# @overload list(account_token: nil, business_account_token: nil, request_options: {})
|
|
10
|
-
#
|
|
11
|
-
# @param account_token [String] Cardholder to retrieve aggregate balances for.
|
|
12
|
-
#
|
|
13
|
-
# @param business_account_token [String] Business to retrieve aggregate balances for.
|
|
14
|
-
#
|
|
15
|
-
# @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}, nil]
|
|
16
|
-
#
|
|
17
|
-
# @return [Lithic::Internal::SinglePage<Lithic::Models::Cards::AggregateBalanceListResponse>]
|
|
18
|
-
#
|
|
19
|
-
# @see Lithic::Models::Cards::AggregateBalanceListParams
|
|
20
|
-
def list(params = {})
|
|
21
|
-
parsed, options = Lithic::Cards::AggregateBalanceListParams.dump_request(params)
|
|
22
|
-
@client.request(
|
|
23
|
-
method: :get,
|
|
24
|
-
path: "v1/cards/aggregate_balances",
|
|
25
|
-
query: parsed,
|
|
26
|
-
page: Lithic::Internal::SinglePage,
|
|
27
|
-
model: Lithic::Models::Cards::AggregateBalanceListResponse,
|
|
28
|
-
options: options
|
|
29
|
-
)
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
# @api private
|
|
33
|
-
#
|
|
34
|
-
# @param client [Lithic::Client]
|
|
35
|
-
def initialize(client:)
|
|
36
|
-
@client = client
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
end
|
|
40
|
-
end
|
|
41
|
-
end
|