lithic 0.1.0.pre.alpha.40 → 0.1.0.pre.alpha.41
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 +14 -0
- data/README.md +1 -1
- data/lib/lithic/client.rb +4 -0
- data/lib/lithic/internal/transport/base_client.rb +1 -1
- data/lib/lithic/internal/transport/pooled_net_requester.rb +1 -9
- data/lib/lithic/internal/type/array_of.rb +1 -0
- data/lib/lithic/internal/type/base_model.rb +3 -1
- data/lib/lithic/internal/type/converter.rb +27 -0
- data/lib/lithic/internal/type/hash_of.rb +1 -0
- data/lib/lithic/internal/type/union.rb +9 -7
- data/lib/lithic/internal/util.rb +1 -1
- data/lib/lithic/models/account_activity_list_params.rb +156 -0
- data/lib/lithic/models/account_activity_list_response.rb +1435 -0
- data/lib/lithic/models/account_activity_retrieve_transaction_params.rb +14 -0
- data/lib/lithic/models/account_activity_retrieve_transaction_response.rb +1451 -0
- data/lib/lithic/models/account_holder.rb +16 -19
- data/lib/lithic/models/account_holder_create_params.rb +41 -47
- data/lib/lithic/models/account_holder_simulate_enrollment_review_params.rb +1 -3
- data/lib/lithic/models/account_holder_simulate_enrollment_review_response.rb +25 -20
- data/lib/lithic/models/account_holder_update_params.rb +2 -6
- data/lib/lithic/models/account_holder_update_response.rb +25 -20
- data/lib/lithic/models/auth_rules/auth_rule_condition.rb +5 -1
- data/lib/lithic/models/auth_rules/conditional_3ds_action_parameters.rb +8 -12
- data/lib/lithic/models/auth_rules/v2_list_params.rb +1 -0
- data/lib/lithic/models/auth_rules/velocity_limit_params_period_window.rb +4 -16
- data/lib/lithic/models/book_transfer_create_params.rb +34 -6
- data/lib/lithic/models/book_transfer_response.rb +124 -28
- data/lib/lithic/models/document.rb +1 -3
- data/lib/lithic/models/events/subscription_create_params.rb +1 -3
- data/lib/lithic/models/events/subscription_update_params.rb +1 -3
- data/lib/lithic/models/external_bank_account_list_params.rb +2 -6
- data/lib/lithic/models/external_payment.rb +89 -48
- data/lib/lithic/models/financial_account.rb +1 -0
- data/lib/lithic/models/financial_accounts/loan_tape.rb +5 -18
- data/lib/lithic/models/financial_accounts/statement.rb +3 -10
- data/lib/lithic/models/financial_accounts/statements/statement_line_items.rb +2 -7
- data/lib/lithic/models/financial_transaction.rb +2 -0
- data/lib/lithic/models/instance_financial_account_type.rb +1 -0
- data/lib/lithic/models/kyb.rb +2 -2
- data/lib/lithic/models/management_operation_transaction.rb +90 -63
- data/lib/lithic/models/payment.rb +60 -1
- data/lib/lithic/models/reports/settlement_list_details_params.rb +2 -2
- data/lib/lithic/models/settlement_detail.rb +1 -0
- data/lib/lithic/models/three_ds/authentication_retrieve_response.rb +145 -12
- data/lib/lithic/models/three_ds/authentication_simulate_params.rb +1 -4
- data/lib/lithic/models/tokenization.rb +1 -1
- data/lib/lithic/models/transactions/events/enhanced_data.rb +3 -11
- data/lib/lithic/models/transfer.rb +2 -0
- data/lib/lithic/models/wire_party_details.rb +40 -0
- data/lib/lithic/models.rb +6 -0
- data/lib/lithic/resources/account_activity.rb +80 -0
- data/lib/lithic/resources/account_holders.rb +9 -9
- data/lib/lithic/resources/book_transfers.rb +7 -3
- data/lib/lithic/resources/reports/settlement.rb +1 -1
- data/lib/lithic/resources/tokenizations.rb +2 -2
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +7 -2
- data/rbi/lithic/client.rbi +3 -0
- data/rbi/lithic/errors.rbi +2 -2
- data/rbi/lithic/internal/transport/base_client.rbi +1 -1
- data/rbi/lithic/internal/type/converter.rbi +46 -0
- data/rbi/lithic/internal/type/union.rbi +7 -2
- data/rbi/lithic/models/account_activity_list_params.rbi +359 -0
- data/rbi/lithic/models/account_activity_list_response.rbi +3367 -0
- data/rbi/lithic/models/account_activity_retrieve_transaction_params.rbi +30 -0
- data/rbi/lithic/models/account_activity_retrieve_transaction_response.rbi +3369 -0
- data/rbi/lithic/models/account_holder.rbi +21 -23
- data/rbi/lithic/models/account_holder_create_params.rbi +87 -65
- data/rbi/lithic/models/account_holder_simulate_enrollment_review_response.rbi +36 -30
- data/rbi/lithic/models/account_holder_update_response.rbi +36 -30
- data/rbi/lithic/models/auth_rules/auth_rule_condition.rbi +20 -0
- data/rbi/lithic/models/auth_rules/conditional_3ds_action_parameters.rbi +20 -0
- data/rbi/lithic/models/auth_rules/v2_list_params.rbi +2 -0
- data/rbi/lithic/models/book_transfer_create_params.rbi +75 -5
- data/rbi/lithic/models/book_transfer_response.rbi +320 -38
- data/rbi/lithic/models/external_payment.rbi +147 -60
- data/rbi/lithic/models/financial_account.rbi +5 -0
- data/rbi/lithic/models/financial_transaction.rbi +1 -0
- data/rbi/lithic/models/instance_financial_account_type.rbi +5 -0
- data/rbi/lithic/models/kyb.rbi +2 -2
- data/rbi/lithic/models/management_operation_transaction.rbi +226 -95
- data/rbi/lithic/models/payment.rbi +103 -3
- data/rbi/lithic/models/reports/settlement_list_details_params.rbi +2 -2
- data/rbi/lithic/models/settlement_detail.rbi +2 -0
- data/rbi/lithic/models/three_ds/authentication_retrieve_response.rbi +222 -19
- data/rbi/lithic/models/transfer.rbi +1 -0
- data/rbi/lithic/models/wire_party_details.rbi +61 -0
- data/rbi/lithic/models.rbi +7 -0
- data/rbi/lithic/resources/account_activity.rbi +80 -0
- data/rbi/lithic/resources/account_holders.rbi +28 -29
- data/rbi/lithic/resources/book_transfers.rbi +9 -2
- data/rbi/lithic/resources/reports/settlement.rbi +1 -1
- data/rbi/lithic/resources/tokenizations.rbi +1 -1
- data/sig/lithic/client.rbs +2 -0
- data/sig/lithic/internal/transport/base_client.rbs +1 -1
- data/sig/lithic/internal/type/converter.rbs +17 -0
- data/sig/lithic/internal/type/union.rbs +2 -2
- data/sig/lithic/models/account_activity_list_params.rbs +173 -0
- data/sig/lithic/models/account_activity_list_response.rbs +1353 -0
- data/sig/lithic/models/account_activity_retrieve_transaction_params.rbs +15 -0
- data/sig/lithic/models/account_activity_retrieve_transaction_response.rbs +1353 -0
- data/sig/lithic/models/account_holder_create_params.rbs +33 -19
- data/sig/lithic/models/account_holder_simulate_enrollment_review_response.rbs +10 -3
- data/sig/lithic/models/account_holder_update_response.rbs +10 -3
- data/sig/lithic/models/auth_rules/auth_rule_condition.rbs +8 -0
- data/sig/lithic/models/auth_rules/conditional_3ds_action_parameters.rbs +8 -0
- data/sig/lithic/models/auth_rules/v2_list_params.rbs +2 -1
- data/sig/lithic/models/book_transfer_create_params.rbs +30 -1
- data/sig/lithic/models/book_transfer_response.rbs +134 -15
- data/sig/lithic/models/external_payment.rbs +91 -40
- data/sig/lithic/models/financial_account.rbs +2 -0
- data/sig/lithic/models/instance_financial_account_type.rbs +2 -0
- data/sig/lithic/models/management_operation_transaction.rbs +95 -44
- data/sig/lithic/models/payment.rbs +61 -3
- data/sig/lithic/models/settlement_detail.rbs +2 -0
- data/sig/lithic/models/three_ds/authentication_retrieve_response.rbs +90 -3
- data/sig/lithic/models/wire_party_details.rbs +35 -0
- data/sig/lithic/models.rbs +6 -0
- data/sig/lithic/resources/account_activity.rbs +27 -0
- data/sig/lithic/resources/account_holders.rbs +3 -3
- data/sig/lithic/resources/book_transfers.rbs +2 -0
- data/sig/lithic/resources/tokenizations.rbs +1 -1
- metadata +20 -5
- data/lib/lithic/models/tokenization_retrieve_response.rb +0 -16
- data/rbi/lithic/models/tokenization_retrieve_response.rbi +0 -31
- data/sig/lithic/models/tokenization_retrieve_response.rbs +0 -15
@@ -535,18 +535,73 @@ module Lithic
|
|
535
535
|
end
|
536
536
|
end
|
537
537
|
|
538
|
-
type app =
|
538
|
+
type app =
|
539
|
+
{
|
540
|
+
device: String?,
|
541
|
+
device_info: String?,
|
542
|
+
ip: String,
|
543
|
+
latitude: Float?,
|
544
|
+
locale: String?,
|
545
|
+
longitude: Float?,
|
546
|
+
os: String?,
|
547
|
+
platform: String?,
|
548
|
+
screen_height: Integer?,
|
549
|
+
screen_width: Integer?,
|
550
|
+
time_zone: String?
|
551
|
+
}
|
539
552
|
|
540
553
|
class App < Lithic::Internal::Type::BaseModel
|
554
|
+
attr_accessor device: String?
|
555
|
+
|
541
556
|
attr_accessor device_info: String?
|
542
557
|
|
543
558
|
attr_reader ip: String?
|
544
559
|
|
545
560
|
def ip=: (String) -> String
|
546
561
|
|
547
|
-
|
562
|
+
attr_accessor latitude: Float?
|
563
|
+
|
564
|
+
attr_accessor locale: String?
|
565
|
+
|
566
|
+
attr_accessor longitude: Float?
|
567
|
+
|
568
|
+
attr_accessor os: String?
|
569
|
+
|
570
|
+
attr_accessor platform: String?
|
571
|
+
|
572
|
+
attr_accessor screen_height: Integer?
|
573
|
+
|
574
|
+
attr_accessor screen_width: Integer?
|
575
|
+
|
576
|
+
attr_accessor time_zone: String?
|
548
577
|
|
549
|
-
def
|
578
|
+
def initialize: (
|
579
|
+
?device: String?,
|
580
|
+
?device_info: String?,
|
581
|
+
?ip: String,
|
582
|
+
?latitude: Float?,
|
583
|
+
?locale: String?,
|
584
|
+
?longitude: Float?,
|
585
|
+
?os: String?,
|
586
|
+
?platform: String?,
|
587
|
+
?screen_height: Integer?,
|
588
|
+
?screen_width: Integer?,
|
589
|
+
?time_zone: String?
|
590
|
+
) -> void
|
591
|
+
|
592
|
+
def to_hash: -> {
|
593
|
+
device: String?,
|
594
|
+
device_info: String?,
|
595
|
+
ip: String,
|
596
|
+
latitude: Float?,
|
597
|
+
locale: String?,
|
598
|
+
longitude: Float?,
|
599
|
+
os: String?,
|
600
|
+
platform: String?,
|
601
|
+
screen_height: Integer?,
|
602
|
+
screen_width: Integer?,
|
603
|
+
time_zone: String?
|
604
|
+
}
|
550
605
|
end
|
551
606
|
|
552
607
|
type authentication_request_type =
|
@@ -628,21 +683,26 @@ module Lithic
|
|
628
683
|
type challenge_metadata =
|
629
684
|
{
|
630
685
|
method_type: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::method_type,
|
686
|
+
status: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::status,
|
631
687
|
phone_number: String?
|
632
688
|
}
|
633
689
|
|
634
690
|
class ChallengeMetadata < Lithic::Internal::Type::BaseModel
|
635
691
|
attr_accessor method_type: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::method_type
|
636
692
|
|
693
|
+
attr_accessor status: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::status
|
694
|
+
|
637
695
|
attr_accessor phone_number: String?
|
638
696
|
|
639
697
|
def initialize: (
|
640
698
|
method_type: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::method_type,
|
699
|
+
status: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::status,
|
641
700
|
?phone_number: String?
|
642
701
|
) -> void
|
643
702
|
|
644
703
|
def to_hash: -> {
|
645
704
|
method_type: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::method_type,
|
705
|
+
status: Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::status,
|
646
706
|
phone_number: String?
|
647
707
|
}
|
648
708
|
|
@@ -656,6 +716,33 @@ module Lithic
|
|
656
716
|
|
657
717
|
def self?.values: -> ::Array[Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::method_type]
|
658
718
|
end
|
719
|
+
|
720
|
+
type status =
|
721
|
+
:SUCCESS
|
722
|
+
| :PENDING
|
723
|
+
| :SMS_DELIVERY_FAILED
|
724
|
+
| :CARDHOLDER_TIMEOUT
|
725
|
+
| :CANCELED_VIA_CHALLENGE_UI
|
726
|
+
| :CANCELED_OOB
|
727
|
+
| :ATTEMPTS_EXCEEDED
|
728
|
+
| :ABORTED
|
729
|
+
| :ERROR
|
730
|
+
|
731
|
+
module Status
|
732
|
+
extend Lithic::Internal::Type::Enum
|
733
|
+
|
734
|
+
SUCCESS: :SUCCESS
|
735
|
+
PENDING: :PENDING
|
736
|
+
SMS_DELIVERY_FAILED: :SMS_DELIVERY_FAILED
|
737
|
+
CARDHOLDER_TIMEOUT: :CARDHOLDER_TIMEOUT
|
738
|
+
CANCELED_VIA_CHALLENGE_UI: :CANCELED_VIA_CHALLENGE_UI
|
739
|
+
CANCELED_OOB: :CANCELED_OOB
|
740
|
+
ATTEMPTS_EXCEEDED: :ATTEMPTS_EXCEEDED
|
741
|
+
ABORTED: :ABORTED
|
742
|
+
ERROR: :ERROR
|
743
|
+
|
744
|
+
def self?.values: -> ::Array[Lithic::Models::ThreeDS::AuthenticationRetrieveResponse::ChallengeMetadata::status]
|
745
|
+
end
|
659
746
|
end
|
660
747
|
|
661
748
|
type challenge_orchestrated_by = :LITHIC | :CUSTOMER | :NO_CHALLENGE
|
@@ -0,0 +1,35 @@
|
|
1
|
+
module Lithic
|
2
|
+
module Models
|
3
|
+
type wire_party_details =
|
4
|
+
{
|
5
|
+
account_number: String?,
|
6
|
+
agent_id: String?,
|
7
|
+
agent_name: String?,
|
8
|
+
name: String?
|
9
|
+
}
|
10
|
+
|
11
|
+
class WirePartyDetails < Lithic::Internal::Type::BaseModel
|
12
|
+
attr_accessor account_number: String?
|
13
|
+
|
14
|
+
attr_accessor agent_id: String?
|
15
|
+
|
16
|
+
attr_accessor agent_name: String?
|
17
|
+
|
18
|
+
attr_accessor name: String?
|
19
|
+
|
20
|
+
def initialize: (
|
21
|
+
?account_number: String?,
|
22
|
+
?agent_id: String?,
|
23
|
+
?agent_name: String?,
|
24
|
+
?name: String?
|
25
|
+
) -> void
|
26
|
+
|
27
|
+
def to_hash: -> {
|
28
|
+
account_number: String?,
|
29
|
+
agent_id: String?,
|
30
|
+
agent_name: String?,
|
31
|
+
name: String?
|
32
|
+
}
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
data/sig/lithic/models.rbs
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
module Lithic
|
2
2
|
class Account = Lithic::Models::Account
|
3
3
|
|
4
|
+
class AccountActivityListParams = Lithic::Models::AccountActivityListParams
|
5
|
+
|
6
|
+
class AccountActivityRetrieveTransactionParams = Lithic::Models::AccountActivityRetrieveTransactionParams
|
7
|
+
|
4
8
|
module AccountFinancialAccountType = Lithic::Models::AccountFinancialAccountType
|
5
9
|
|
6
10
|
class AccountHolder = Lithic::Models::AccountHolder
|
@@ -342,4 +346,6 @@ module Lithic
|
|
342
346
|
class TransferCreateParams = Lithic::Models::TransferCreateParams
|
343
347
|
|
344
348
|
module VerificationMethod = Lithic::Models::VerificationMethod
|
349
|
+
|
350
|
+
class WirePartyDetails = Lithic::Models::WirePartyDetails
|
345
351
|
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
module Lithic
|
2
|
+
module Resources
|
3
|
+
class AccountActivity
|
4
|
+
def list: (
|
5
|
+
?account_token: String,
|
6
|
+
?begin_: Time,
|
7
|
+
?business_account_token: String,
|
8
|
+
?category: Lithic::Models::AccountActivityListParams::category,
|
9
|
+
?end_: Time,
|
10
|
+
?ending_before: String,
|
11
|
+
?financial_account_token: String,
|
12
|
+
?page_size: Integer,
|
13
|
+
?result: ::Array[Lithic::Models::AccountActivityListParams::result],
|
14
|
+
?starting_after: String,
|
15
|
+
?status: ::Array[Lithic::Models::AccountActivityListParams::status],
|
16
|
+
?request_options: Lithic::request_opts
|
17
|
+
) -> Lithic::Internal::CursorPage[Lithic::Models::account_activity_list_response]
|
18
|
+
|
19
|
+
def retrieve_transaction: (
|
20
|
+
String transaction_token,
|
21
|
+
?request_options: Lithic::request_opts
|
22
|
+
) -> Lithic::Models::account_activity_retrieve_transaction_response
|
23
|
+
|
24
|
+
def initialize: (client: Lithic::Client) -> void
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -2,10 +2,7 @@ module Lithic
|
|
2
2
|
module Resources
|
3
3
|
class AccountHolders
|
4
4
|
def create: (
|
5
|
-
beneficial_owner_individuals: ::Array[Lithic::AccountHolderCreateParams::BeneficialOwnerIndividual],
|
6
5
|
business_entity: Lithic::AccountHolderCreateParams::BusinessEntity,
|
7
|
-
control_person: Lithic::AccountHolderCreateParams::ControlPerson,
|
8
|
-
nature_of_business: String,
|
9
6
|
tos_timestamp: String,
|
10
7
|
workflow: Lithic::Models::AccountHolderCreateParams::workflow,
|
11
8
|
individual: Lithic::AccountHolderCreateParams::Individual,
|
@@ -15,6 +12,9 @@ module Lithic
|
|
15
12
|
kyc_exemption_type: Lithic::Models::AccountHolderCreateParams::kyc_exemption_type,
|
16
13
|
last_name: String,
|
17
14
|
phone_number: String,
|
15
|
+
?beneficial_owner_individuals: ::Array[Lithic::AccountHolderCreateParams::BeneficialOwnerIndividual],
|
16
|
+
?control_person: Lithic::AccountHolderCreateParams::ControlPerson,
|
17
|
+
?nature_of_business: String,
|
18
18
|
?beneficial_owner_entities: ::Array[Lithic::AccountHolderCreateParams::BeneficialOwnerEntity],
|
19
19
|
?external_id: String,
|
20
20
|
?kyb_passed_timestamp: String,
|
@@ -9,7 +9,9 @@ module Lithic
|
|
9
9
|
to_financial_account_token: String,
|
10
10
|
type: Lithic::Models::BookTransferCreateParams::type_,
|
11
11
|
?token: String,
|
12
|
+
?external_id: String,
|
12
13
|
?memo: String,
|
14
|
+
?on_closed_account: Lithic::Models::BookTransferCreateParams::on_closed_account,
|
13
15
|
?request_options: Lithic::request_opts
|
14
16
|
) -> Lithic::BookTransferResponse
|
15
17
|
|
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.1.0.pre.alpha.
|
4
|
+
version: 0.1.0.pre.alpha.41
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lithic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|
@@ -58,6 +58,10 @@ files:
|
|
58
58
|
- lib/lithic/internal/util.rb
|
59
59
|
- lib/lithic/models.rb
|
60
60
|
- lib/lithic/models/account.rb
|
61
|
+
- lib/lithic/models/account_activity_list_params.rb
|
62
|
+
- lib/lithic/models/account_activity_list_response.rb
|
63
|
+
- lib/lithic/models/account_activity_retrieve_transaction_params.rb
|
64
|
+
- lib/lithic/models/account_activity_retrieve_transaction_response.rb
|
61
65
|
- lib/lithic/models/account_financial_account_type.rb
|
62
66
|
- lib/lithic/models/account_holder.rb
|
63
67
|
- lib/lithic/models/account_holder_create_params.rb
|
@@ -320,7 +324,6 @@ files:
|
|
320
324
|
- lib/lithic/models/tokenization_pause_params.rb
|
321
325
|
- lib/lithic/models/tokenization_resend_activation_code_params.rb
|
322
326
|
- lib/lithic/models/tokenization_retrieve_params.rb
|
323
|
-
- lib/lithic/models/tokenization_retrieve_response.rb
|
324
327
|
- lib/lithic/models/tokenization_secret.rb
|
325
328
|
- lib/lithic/models/tokenization_simulate_params.rb
|
326
329
|
- lib/lithic/models/tokenization_simulate_response.rb
|
@@ -352,7 +355,9 @@ files:
|
|
352
355
|
- lib/lithic/models/transfer.rb
|
353
356
|
- lib/lithic/models/transfer_create_params.rb
|
354
357
|
- lib/lithic/models/verification_method.rb
|
358
|
+
- lib/lithic/models/wire_party_details.rb
|
355
359
|
- lib/lithic/request_options.rb
|
360
|
+
- lib/lithic/resources/account_activity.rb
|
356
361
|
- lib/lithic/resources/account_holders.rb
|
357
362
|
- lib/lithic/resources/accounts.rb
|
358
363
|
- lib/lithic/resources/aggregate_balances.rb
|
@@ -429,6 +434,10 @@ files:
|
|
429
434
|
- rbi/lithic/internal/util.rbi
|
430
435
|
- rbi/lithic/models.rbi
|
431
436
|
- rbi/lithic/models/account.rbi
|
437
|
+
- rbi/lithic/models/account_activity_list_params.rbi
|
438
|
+
- rbi/lithic/models/account_activity_list_response.rbi
|
439
|
+
- rbi/lithic/models/account_activity_retrieve_transaction_params.rbi
|
440
|
+
- rbi/lithic/models/account_activity_retrieve_transaction_response.rbi
|
432
441
|
- rbi/lithic/models/account_financial_account_type.rbi
|
433
442
|
- rbi/lithic/models/account_holder.rbi
|
434
443
|
- rbi/lithic/models/account_holder_create_params.rbi
|
@@ -691,7 +700,6 @@ files:
|
|
691
700
|
- rbi/lithic/models/tokenization_pause_params.rbi
|
692
701
|
- rbi/lithic/models/tokenization_resend_activation_code_params.rbi
|
693
702
|
- rbi/lithic/models/tokenization_retrieve_params.rbi
|
694
|
-
- rbi/lithic/models/tokenization_retrieve_response.rbi
|
695
703
|
- rbi/lithic/models/tokenization_secret.rbi
|
696
704
|
- rbi/lithic/models/tokenization_simulate_params.rbi
|
697
705
|
- rbi/lithic/models/tokenization_simulate_response.rbi
|
@@ -723,7 +731,9 @@ files:
|
|
723
731
|
- rbi/lithic/models/transfer.rbi
|
724
732
|
- rbi/lithic/models/transfer_create_params.rbi
|
725
733
|
- rbi/lithic/models/verification_method.rbi
|
734
|
+
- rbi/lithic/models/wire_party_details.rbi
|
726
735
|
- rbi/lithic/request_options.rbi
|
736
|
+
- rbi/lithic/resources/account_activity.rbi
|
727
737
|
- rbi/lithic/resources/account_holders.rbi
|
728
738
|
- rbi/lithic/resources/accounts.rbi
|
729
739
|
- rbi/lithic/resources/aggregate_balances.rbi
|
@@ -799,6 +809,10 @@ files:
|
|
799
809
|
- sig/lithic/internal/util.rbs
|
800
810
|
- sig/lithic/models.rbs
|
801
811
|
- sig/lithic/models/account.rbs
|
812
|
+
- sig/lithic/models/account_activity_list_params.rbs
|
813
|
+
- sig/lithic/models/account_activity_list_response.rbs
|
814
|
+
- sig/lithic/models/account_activity_retrieve_transaction_params.rbs
|
815
|
+
- sig/lithic/models/account_activity_retrieve_transaction_response.rbs
|
802
816
|
- sig/lithic/models/account_financial_account_type.rbs
|
803
817
|
- sig/lithic/models/account_holder.rbs
|
804
818
|
- sig/lithic/models/account_holder_create_params.rbs
|
@@ -1061,7 +1075,6 @@ files:
|
|
1061
1075
|
- sig/lithic/models/tokenization_pause_params.rbs
|
1062
1076
|
- sig/lithic/models/tokenization_resend_activation_code_params.rbs
|
1063
1077
|
- sig/lithic/models/tokenization_retrieve_params.rbs
|
1064
|
-
- sig/lithic/models/tokenization_retrieve_response.rbs
|
1065
1078
|
- sig/lithic/models/tokenization_secret.rbs
|
1066
1079
|
- sig/lithic/models/tokenization_simulate_params.rbs
|
1067
1080
|
- sig/lithic/models/tokenization_simulate_response.rbs
|
@@ -1093,7 +1106,9 @@ files:
|
|
1093
1106
|
- sig/lithic/models/transfer.rbs
|
1094
1107
|
- sig/lithic/models/transfer_create_params.rbs
|
1095
1108
|
- sig/lithic/models/verification_method.rbs
|
1109
|
+
- sig/lithic/models/wire_party_details.rbs
|
1096
1110
|
- sig/lithic/request_options.rbs
|
1111
|
+
- sig/lithic/resources/account_activity.rbs
|
1097
1112
|
- sig/lithic/resources/account_holders.rbs
|
1098
1113
|
- sig/lithic/resources/accounts.rbs
|
1099
1114
|
- sig/lithic/resources/aggregate_balances.rbs
|
@@ -1,16 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Lithic
|
4
|
-
module Models
|
5
|
-
# @see Lithic::Resources::Tokenizations#retrieve
|
6
|
-
class TokenizationRetrieveResponse < Lithic::Internal::Type::BaseModel
|
7
|
-
# @!attribute data
|
8
|
-
#
|
9
|
-
# @return [Lithic::Models::Tokenization, nil]
|
10
|
-
optional :data, -> { Lithic::Tokenization }
|
11
|
-
|
12
|
-
# @!method initialize(data: nil)
|
13
|
-
# @param data [Lithic::Models::Tokenization]
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# typed: strong
|
2
|
-
|
3
|
-
module Lithic
|
4
|
-
module Models
|
5
|
-
class TokenizationRetrieveResponse < Lithic::Internal::Type::BaseModel
|
6
|
-
OrHash =
|
7
|
-
T.type_alias do
|
8
|
-
T.any(
|
9
|
-
Lithic::Models::TokenizationRetrieveResponse,
|
10
|
-
Lithic::Internal::AnyHash
|
11
|
-
)
|
12
|
-
end
|
13
|
-
|
14
|
-
sig { returns(T.nilable(Lithic::Tokenization)) }
|
15
|
-
attr_reader :data
|
16
|
-
|
17
|
-
sig { params(data: Lithic::Tokenization::OrHash).void }
|
18
|
-
attr_writer :data
|
19
|
-
|
20
|
-
sig do
|
21
|
-
params(data: Lithic::Tokenization::OrHash).returns(T.attached_class)
|
22
|
-
end
|
23
|
-
def self.new(data: nil)
|
24
|
-
end
|
25
|
-
|
26
|
-
sig { override.returns({ data: Lithic::Tokenization }) }
|
27
|
-
def to_hash
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
module Lithic
|
2
|
-
module Models
|
3
|
-
type tokenization_retrieve_response = { data: Lithic::Tokenization }
|
4
|
-
|
5
|
-
class TokenizationRetrieveResponse < Lithic::Internal::Type::BaseModel
|
6
|
-
attr_reader data: Lithic::Tokenization?
|
7
|
-
|
8
|
-
def data=: (Lithic::Tokenization) -> Lithic::Tokenization
|
9
|
-
|
10
|
-
def initialize: (?data: Lithic::Tokenization) -> void
|
11
|
-
|
12
|
-
def to_hash: -> { data: Lithic::Tokenization }
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|