lithic 0.1.0.pre.alpha.25 → 0.1.0.pre.alpha.27

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.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +29 -0
  3. data/README.md +94 -54
  4. data/lib/lithic/client.rb +8 -4
  5. data/lib/lithic/internal/transport/pooled_net_requester.rb +3 -1
  6. data/lib/lithic/internal/type/array_of.rb +8 -0
  7. data/lib/lithic/internal/type/base_model.rb +15 -0
  8. data/lib/lithic/internal/type/boolean.rb +8 -0
  9. data/lib/lithic/internal/type/enum.rb +12 -0
  10. data/lib/lithic/internal/type/file_input.rb +7 -0
  11. data/lib/lithic/internal/type/hash_of.rb +8 -0
  12. data/lib/lithic/internal/type/union.rb +12 -0
  13. data/lib/lithic/internal/type/unknown.rb +8 -0
  14. data/lib/lithic/internal/util.rb +45 -0
  15. data/lib/lithic/internal.rb +3 -0
  16. data/lib/lithic/models/account_holder_update_response.rb +0 -9
  17. data/lib/lithic/models/auth_rules/auth_rule_condition.rb +0 -4
  18. data/lib/lithic/models/auth_rules/v2_apply_response.rb +0 -20
  19. data/lib/lithic/models/auth_rules/v2_create_params.rb +0 -10
  20. data/lib/lithic/models/auth_rules/v2_create_response.rb +0 -20
  21. data/lib/lithic/models/auth_rules/v2_draft_params.rb +0 -10
  22. data/lib/lithic/models/auth_rules/v2_draft_response.rb +0 -20
  23. data/lib/lithic/models/auth_rules/v2_list_response.rb +0 -20
  24. data/lib/lithic/models/auth_rules/v2_promote_response.rb +0 -20
  25. data/lib/lithic/models/auth_rules/v2_retrieve_response.rb +0 -20
  26. data/lib/lithic/models/auth_rules/v2_update_response.rb +0 -20
  27. data/lib/lithic/models/auth_rules/velocity_limit_params.rb +0 -4
  28. data/lib/lithic/models/card_web_provision_params.rb +32 -0
  29. data/lib/lithic/models/card_web_provision_response.rb +83 -0
  30. data/lib/lithic/models/funding_event_list_params.rb +43 -0
  31. data/lib/lithic/models/funding_event_list_response.rb +104 -0
  32. data/lib/lithic/models/funding_event_retrieve_details_params.rb +14 -0
  33. data/lib/lithic/models/funding_event_retrieve_details_response.rb +33 -0
  34. data/lib/lithic/models/funding_event_retrieve_params.rb +14 -0
  35. data/lib/lithic/models/funding_event_retrieve_response.rb +104 -0
  36. data/lib/lithic/models.rb +38 -19
  37. data/lib/lithic/resources/cards.rb +29 -0
  38. data/lib/lithic/resources/funding_events.rb +84 -0
  39. data/lib/lithic/version.rb +1 -1
  40. data/lib/lithic.rb +9 -0
  41. data/rbi/lithic/client.rbi +3 -0
  42. data/rbi/lithic/internal/transport/pooled_net_requester.rbi +5 -1
  43. data/rbi/lithic/internal/type/array_of.rbi +6 -0
  44. data/rbi/lithic/internal/type/base_model.rbi +5 -0
  45. data/rbi/lithic/internal/type/boolean.rbi +6 -0
  46. data/rbi/lithic/internal/type/enum.rbi +5 -0
  47. data/rbi/lithic/internal/type/file_input.rbi +5 -0
  48. data/rbi/lithic/internal/type/hash_of.rbi +6 -0
  49. data/rbi/lithic/internal/type/union.rbi +5 -0
  50. data/rbi/lithic/internal/type/unknown.rbi +6 -0
  51. data/rbi/lithic/internal/util.rbi +31 -0
  52. data/rbi/lithic/internal.rbi +3 -0
  53. data/rbi/lithic/models/auth_rules/auth_rule_condition.rbi +12 -4
  54. data/rbi/lithic/models/auth_rules/v2_apply_response.rbi +4 -20
  55. data/rbi/lithic/models/auth_rules/v2_create_response.rbi +4 -20
  56. data/rbi/lithic/models/auth_rules/v2_draft_response.rbi +4 -20
  57. data/rbi/lithic/models/auth_rules/v2_list_response.rbi +4 -20
  58. data/rbi/lithic/models/auth_rules/v2_promote_response.rbi +4 -20
  59. data/rbi/lithic/models/auth_rules/v2_retrieve_response.rbi +4 -20
  60. data/rbi/lithic/models/auth_rules/v2_update_response.rbi +4 -20
  61. data/rbi/lithic/models/card_web_provision_params.rbi +84 -0
  62. data/rbi/lithic/models/card_web_provision_response.rbi +169 -0
  63. data/rbi/lithic/models/funding_event_list_params.rbi +72 -0
  64. data/rbi/lithic/models/funding_event_list_response.rbi +177 -0
  65. data/rbi/lithic/models/funding_event_retrieve_details_params.rbi +30 -0
  66. data/rbi/lithic/models/funding_event_retrieve_details_response.rbi +56 -0
  67. data/rbi/lithic/models/funding_event_retrieve_params.rbi +27 -0
  68. data/rbi/lithic/models/funding_event_retrieve_response.rbi +177 -0
  69. data/rbi/lithic/models.rbi +9 -0
  70. data/rbi/lithic/resources/account_holders.rbi +1 -6
  71. data/rbi/lithic/resources/cards.rbi +23 -0
  72. data/rbi/lithic/resources/funding_events.rbi +64 -0
  73. data/sig/lithic/client.rbs +2 -0
  74. data/sig/lithic/internal/transport/pooled_net_requester.rbs +2 -0
  75. data/sig/lithic/internal/type/array_of.rbs +3 -0
  76. data/sig/lithic/internal/type/base_model.rbs +2 -0
  77. data/sig/lithic/internal/type/boolean.rbs +3 -0
  78. data/sig/lithic/internal/type/enum.rbs +2 -0
  79. data/sig/lithic/internal/type/file_input.rbs +2 -0
  80. data/sig/lithic/internal/type/hash_of.rbs +3 -0
  81. data/sig/lithic/internal/type/union.rbs +2 -0
  82. data/sig/lithic/internal/type/unknown.rbs +3 -0
  83. data/sig/lithic/internal/util.rbs +12 -0
  84. data/sig/lithic/internal.rbs +2 -0
  85. data/sig/lithic/models/card_web_provision_params.rbs +33 -0
  86. data/sig/lithic/models/card_web_provision_response.rbs +68 -0
  87. data/sig/lithic/models/funding_event_list_params.rbs +31 -0
  88. data/sig/lithic/models/funding_event_list_response.rbs +65 -0
  89. data/sig/lithic/models/funding_event_retrieve_details_params.rbs +13 -0
  90. data/sig/lithic/models/funding_event_retrieve_details_response.rbs +24 -0
  91. data/sig/lithic/models/funding_event_retrieve_params.rbs +13 -0
  92. data/sig/lithic/models/funding_event_retrieve_response.rbs +65 -0
  93. data/sig/lithic/models.rbs +8 -0
  94. data/sig/lithic/resources/cards.rbs +6 -0
  95. data/sig/lithic/resources/funding_events.rbs +24 -0
  96. metadata +29 -2
@@ -43,6 +43,8 @@ module Lithic
43
43
  state: Lithic::Internal::Type::Converter::dump_state
44
44
  ) -> top
45
45
 
46
+ def to_sorbet_type: -> top
47
+
46
48
  def inspect: (?depth: Integer) -> String
47
49
  end
48
50
  end
@@ -3,6 +3,7 @@ module Lithic
3
3
  module Type
4
4
  class Unknown
5
5
  extend Lithic::Internal::Type::Converter
6
+ extend Lithic::Internal::Util::SorbetRuntimeSupport
6
7
 
7
8
  def self.===: (top other) -> bool
8
9
 
@@ -17,6 +18,8 @@ module Lithic
17
18
  top value,
18
19
  state: Lithic::Internal::Type::Converter::dump_state
19
20
  ) -> top
21
+
22
+ def self.to_sorbet_type: -> top
20
23
  end
21
24
  end
22
25
  end
@@ -5,6 +5,10 @@ module Lithic
5
5
 
6
6
  def self?.monotonic_secs: -> Float
7
7
 
8
+ def self?.walk_namespaces: (
9
+ Module | Class ns
10
+ ) -> Enumerable[(Module | Class)]
11
+
8
12
  def self?.arch: -> String
9
13
 
10
14
  def self?.os: -> String
@@ -166,7 +170,15 @@ module Lithic
166
170
 
167
171
  def const_missing: (Symbol name) -> void
168
172
 
173
+ def sorbet_constant_defined?: (Symbol name) -> bool
174
+
169
175
  def define_sorbet_constant!: (Symbol name) { -> top } -> void
176
+
177
+ def to_sorbet_type: -> top
178
+
179
+ def self.to_sorbet_type: (
180
+ Lithic::Internal::Util::SorbetRuntimeSupport | top `type`
181
+ ) -> top
170
182
  end
171
183
  end
172
184
  end
@@ -2,6 +2,8 @@ module Lithic
2
2
  module Internal
3
3
  extend Lithic::Internal::Util::SorbetRuntimeSupport
4
4
 
5
+ type file_input = Pathname | StringIO | IO | String | Lithic::FilePart
6
+
5
7
  OMIT: Object
6
8
  end
7
9
  end
@@ -0,0 +1,33 @@
1
+ module Lithic
2
+ module Models
3
+ type card_web_provision_params =
4
+ { digital_wallet: Lithic::Models::CardWebProvisionParams::digital_wallet }
5
+ & Lithic::Internal::Type::request_parameters
6
+
7
+ class CardWebProvisionParams < Lithic::Internal::Type::BaseModel
8
+ extend Lithic::Internal::Type::RequestParameters::Converter
9
+ include Lithic::Internal::Type::RequestParameters
10
+
11
+ attr_reader digital_wallet: Lithic::Models::CardWebProvisionParams::digital_wallet?
12
+
13
+ def digital_wallet=: (
14
+ Lithic::Models::CardWebProvisionParams::digital_wallet
15
+ ) -> Lithic::Models::CardWebProvisionParams::digital_wallet
16
+
17
+ def initialize: (
18
+ ?digital_wallet: Lithic::Models::CardWebProvisionParams::digital_wallet,
19
+ ?request_options: Lithic::request_opts
20
+ ) -> void
21
+
22
+ type digital_wallet = :APPLE_PAY
23
+
24
+ module DigitalWallet
25
+ extend Lithic::Internal::Type::Enum
26
+
27
+ APPLE_PAY: :APPLE_PAY
28
+
29
+ def self?.values: -> ::Array[Lithic::Models::CardWebProvisionParams::digital_wallet]
30
+ end
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,68 @@
1
+ module Lithic
2
+ module Models
3
+ type card_web_provision_response =
4
+ { jws: Lithic::Models::CardWebProvisionResponse::Jws, state: String }
5
+
6
+ class CardWebProvisionResponse < Lithic::Internal::Type::BaseModel
7
+ attr_reader jws: Lithic::Models::CardWebProvisionResponse::Jws?
8
+
9
+ def jws=: (
10
+ Lithic::Models::CardWebProvisionResponse::Jws
11
+ ) -> Lithic::Models::CardWebProvisionResponse::Jws
12
+
13
+ attr_reader state: String?
14
+
15
+ def state=: (String) -> String
16
+
17
+ def initialize: (
18
+ ?jws: Lithic::Models::CardWebProvisionResponse::Jws,
19
+ ?state: String
20
+ ) -> void
21
+
22
+ type jws =
23
+ {
24
+ header: Lithic::Models::CardWebProvisionResponse::Jws::Header,
25
+ payload: String,
26
+ protected: String,
27
+ signature: String
28
+ }
29
+
30
+ class Jws < Lithic::Internal::Type::BaseModel
31
+ attr_reader header: Lithic::Models::CardWebProvisionResponse::Jws::Header?
32
+
33
+ def header=: (
34
+ Lithic::Models::CardWebProvisionResponse::Jws::Header
35
+ ) -> Lithic::Models::CardWebProvisionResponse::Jws::Header
36
+
37
+ attr_reader payload: String?
38
+
39
+ def payload=: (String) -> String
40
+
41
+ attr_reader protected: String?
42
+
43
+ def protected=: (String) -> String
44
+
45
+ attr_reader signature: String?
46
+
47
+ def signature=: (String) -> String
48
+
49
+ def initialize: (
50
+ ?header: Lithic::Models::CardWebProvisionResponse::Jws::Header,
51
+ ?payload: String,
52
+ ?protected: String,
53
+ ?signature: String
54
+ ) -> void
55
+
56
+ type header = { kid: String }
57
+
58
+ class Header < Lithic::Internal::Type::BaseModel
59
+ attr_reader kid: String?
60
+
61
+ def kid=: (String) -> String
62
+
63
+ def initialize: (?kid: String) -> void
64
+ end
65
+ end
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,31 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_list_params =
4
+ { ending_before: String, page_size: Integer, starting_after: String }
5
+ & Lithic::Internal::Type::request_parameters
6
+
7
+ class FundingEventListParams < Lithic::Internal::Type::BaseModel
8
+ extend Lithic::Internal::Type::RequestParameters::Converter
9
+ include Lithic::Internal::Type::RequestParameters
10
+
11
+ attr_reader ending_before: String?
12
+
13
+ def ending_before=: (String) -> String
14
+
15
+ attr_reader page_size: Integer?
16
+
17
+ def page_size=: (Integer) -> Integer
18
+
19
+ attr_reader starting_after: String?
20
+
21
+ def starting_after=: (String) -> String
22
+
23
+ def initialize: (
24
+ ?ending_before: String,
25
+ ?page_size: Integer,
26
+ ?starting_after: String,
27
+ ?request_options: Lithic::request_opts
28
+ ) -> void
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,65 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_list_response =
4
+ {
5
+ token: String,
6
+ collection_resource_type: Lithic::Models::FundingEventListResponse::collection_resource_type,
7
+ collection_tokens: ::Array[String],
8
+ created: Time,
9
+ high_watermark: Time,
10
+ previous_high_watermark: Time,
11
+ settlement_breakdowns: ::Array[Lithic::Models::FundingEventListResponse::SettlementBreakdown],
12
+ updated: Time
13
+ }
14
+
15
+ class FundingEventListResponse < Lithic::Internal::Type::BaseModel
16
+ attr_accessor token: String
17
+
18
+ attr_accessor collection_resource_type: Lithic::Models::FundingEventListResponse::collection_resource_type
19
+
20
+ attr_accessor collection_tokens: ::Array[String]
21
+
22
+ attr_accessor created: Time
23
+
24
+ attr_accessor high_watermark: Time
25
+
26
+ attr_accessor previous_high_watermark: Time
27
+
28
+ attr_accessor settlement_breakdowns: ::Array[Lithic::Models::FundingEventListResponse::SettlementBreakdown]
29
+
30
+ attr_accessor updated: Time
31
+
32
+ def initialize: (
33
+ token: String,
34
+ collection_resource_type: Lithic::Models::FundingEventListResponse::collection_resource_type,
35
+ collection_tokens: ::Array[String],
36
+ created: Time,
37
+ high_watermark: Time,
38
+ previous_high_watermark: Time,
39
+ settlement_breakdowns: ::Array[Lithic::Models::FundingEventListResponse::SettlementBreakdown],
40
+ updated: Time
41
+ ) -> void
42
+
43
+ type collection_resource_type = :BOOK_TRANSFER | :PAYMENT
44
+
45
+ module CollectionResourceType
46
+ extend Lithic::Internal::Type::Enum
47
+
48
+ BOOK_TRANSFER: :BOOK_TRANSFER
49
+ PAYMENT: :PAYMENT
50
+
51
+ def self?.values: -> ::Array[Lithic::Models::FundingEventListResponse::collection_resource_type]
52
+ end
53
+
54
+ type settlement_breakdown = { amount: Integer, settlement_date: Date }
55
+
56
+ class SettlementBreakdown < Lithic::Internal::Type::BaseModel
57
+ attr_accessor amount: Integer
58
+
59
+ attr_accessor settlement_date: Date
60
+
61
+ def initialize: (amount: Integer, settlement_date: Date) -> void
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,13 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_retrieve_details_params =
4
+ { } & Lithic::Internal::Type::request_parameters
5
+
6
+ class FundingEventRetrieveDetailsParams < Lithic::Internal::Type::BaseModel
7
+ extend Lithic::Internal::Type::RequestParameters::Converter
8
+ include Lithic::Internal::Type::RequestParameters
9
+
10
+ def initialize: (?request_options: Lithic::request_opts) -> void
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,24 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_retrieve_details_response =
4
+ {
5
+ token: String,
6
+ settlement_details_url: String,
7
+ settlement_summary_url: String
8
+ }
9
+
10
+ class FundingEventRetrieveDetailsResponse < Lithic::Internal::Type::BaseModel
11
+ attr_accessor token: String
12
+
13
+ attr_accessor settlement_details_url: String
14
+
15
+ attr_accessor settlement_summary_url: String
16
+
17
+ def initialize: (
18
+ token: String,
19
+ settlement_details_url: String,
20
+ settlement_summary_url: String
21
+ ) -> void
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,13 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_retrieve_params =
4
+ { } & Lithic::Internal::Type::request_parameters
5
+
6
+ class FundingEventRetrieveParams < Lithic::Internal::Type::BaseModel
7
+ extend Lithic::Internal::Type::RequestParameters::Converter
8
+ include Lithic::Internal::Type::RequestParameters
9
+
10
+ def initialize: (?request_options: Lithic::request_opts) -> void
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,65 @@
1
+ module Lithic
2
+ module Models
3
+ type funding_event_retrieve_response =
4
+ {
5
+ token: String,
6
+ collection_resource_type: Lithic::Models::FundingEventRetrieveResponse::collection_resource_type,
7
+ collection_tokens: ::Array[String],
8
+ created: Time,
9
+ high_watermark: Time,
10
+ previous_high_watermark: Time,
11
+ settlement_breakdowns: ::Array[Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown],
12
+ updated: Time
13
+ }
14
+
15
+ class FundingEventRetrieveResponse < Lithic::Internal::Type::BaseModel
16
+ attr_accessor token: String
17
+
18
+ attr_accessor collection_resource_type: Lithic::Models::FundingEventRetrieveResponse::collection_resource_type
19
+
20
+ attr_accessor collection_tokens: ::Array[String]
21
+
22
+ attr_accessor created: Time
23
+
24
+ attr_accessor high_watermark: Time
25
+
26
+ attr_accessor previous_high_watermark: Time
27
+
28
+ attr_accessor settlement_breakdowns: ::Array[Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown]
29
+
30
+ attr_accessor updated: Time
31
+
32
+ def initialize: (
33
+ token: String,
34
+ collection_resource_type: Lithic::Models::FundingEventRetrieveResponse::collection_resource_type,
35
+ collection_tokens: ::Array[String],
36
+ created: Time,
37
+ high_watermark: Time,
38
+ previous_high_watermark: Time,
39
+ settlement_breakdowns: ::Array[Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown],
40
+ updated: Time
41
+ ) -> void
42
+
43
+ type collection_resource_type = :BOOK_TRANSFER | :PAYMENT
44
+
45
+ module CollectionResourceType
46
+ extend Lithic::Internal::Type::Enum
47
+
48
+ BOOK_TRANSFER: :BOOK_TRANSFER
49
+ PAYMENT: :PAYMENT
50
+
51
+ def self?.values: -> ::Array[Lithic::Models::FundingEventRetrieveResponse::collection_resource_type]
52
+ end
53
+
54
+ type settlement_breakdown = { amount: Integer, settlement_date: Date }
55
+
56
+ class SettlementBreakdown < Lithic::Internal::Type::BaseModel
57
+ attr_accessor amount: Integer
58
+
59
+ attr_accessor settlement_date: Date
60
+
61
+ def initialize: (amount: Integer, settlement_date: Date) -> void
62
+ end
63
+ end
64
+ end
65
+ end
@@ -99,6 +99,8 @@ module Lithic
99
99
 
100
100
  class CardUpdateParams = Lithic::Models::CardUpdateParams
101
101
 
102
+ class CardWebProvisionParams = Lithic::Models::CardWebProvisionParams
103
+
102
104
  class Carrier = Lithic::Models::Carrier
103
105
 
104
106
  class ClientAPIStatusParams = Lithic::Models::ClientAPIStatusParams
@@ -197,6 +199,12 @@ module Lithic
197
199
 
198
200
  class FinancialTransaction = Lithic::Models::FinancialTransaction
199
201
 
202
+ class FundingEventListParams = Lithic::Models::FundingEventListParams
203
+
204
+ class FundingEventRetrieveDetailsParams = Lithic::Models::FundingEventRetrieveDetailsParams
205
+
206
+ class FundingEventRetrieveParams = Lithic::Models::FundingEventRetrieveParams
207
+
200
208
  module InstanceFinancialAccountType = Lithic::Models::InstanceFinancialAccountType
201
209
 
202
210
  class KYB = Lithic::Models::KYB
@@ -113,6 +113,12 @@ module Lithic
113
113
  ?request_options: Lithic::request_opts
114
114
  ) -> Lithic::Card
115
115
 
116
+ def web_provision: (
117
+ String card_token,
118
+ ?digital_wallet: Lithic::Models::CardWebProvisionParams::digital_wallet,
119
+ ?request_options: Lithic::request_opts
120
+ ) -> Lithic::Models::CardWebProvisionResponse
121
+
116
122
  def initialize: (client: Lithic::Client) -> void
117
123
  end
118
124
  end
@@ -0,0 +1,24 @@
1
+ module Lithic
2
+ module Resources
3
+ class FundingEvents
4
+ def retrieve: (
5
+ String funding_event_token,
6
+ ?request_options: Lithic::request_opts
7
+ ) -> Lithic::Models::FundingEventRetrieveResponse
8
+
9
+ def list: (
10
+ ?ending_before: String,
11
+ ?page_size: Integer,
12
+ ?starting_after: String,
13
+ ?request_options: Lithic::request_opts
14
+ ) -> Lithic::Internal::CursorPage[Lithic::Models::FundingEventListResponse]
15
+
16
+ def retrieve_details: (
17
+ String funding_event_token,
18
+ ?request_options: Lithic::request_opts
19
+ ) -> Lithic::Models::FundingEventRetrieveDetailsResponse
20
+
21
+ def initialize: (client: Lithic::Client) -> void
22
+ end
23
+ end
24
+ end
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.25
4
+ version: 0.1.0.pre.alpha.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lithic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-13 00:00:00.000000000 Z
11
+ date: 2025-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -138,6 +138,8 @@ files:
138
138
  - lib/lithic/models/card_search_by_pan_params.rb
139
139
  - lib/lithic/models/card_spend_limits.rb
140
140
  - lib/lithic/models/card_update_params.rb
141
+ - lib/lithic/models/card_web_provision_params.rb
142
+ - lib/lithic/models/card_web_provision_response.rb
141
143
  - lib/lithic/models/cards/aggregate_balance_list_params.rb
142
144
  - lib/lithic/models/cards/aggregate_balance_list_response.rb
143
145
  - lib/lithic/models/cards/balance_list_params.rb
@@ -231,6 +233,12 @@ files:
231
233
  - lib/lithic/models/financial_accounts/statements/line_item_list_params.rb
232
234
  - lib/lithic/models/financial_accounts/statements/statement_line_items.rb
233
235
  - lib/lithic/models/financial_transaction.rb
236
+ - lib/lithic/models/funding_event_list_params.rb
237
+ - lib/lithic/models/funding_event_list_response.rb
238
+ - lib/lithic/models/funding_event_retrieve_details_params.rb
239
+ - lib/lithic/models/funding_event_retrieve_details_response.rb
240
+ - lib/lithic/models/funding_event_retrieve_params.rb
241
+ - lib/lithic/models/funding_event_retrieve_response.rb
234
242
  - lib/lithic/models/instance_financial_account_type.rb
235
243
  - lib/lithic/models/kyb.rb
236
244
  - lib/lithic/models/kyb_business_entity.rb
@@ -362,6 +370,7 @@ files:
362
370
  - lib/lithic/resources/financial_accounts/loan_tapes.rb
363
371
  - lib/lithic/resources/financial_accounts/statements.rb
364
372
  - lib/lithic/resources/financial_accounts/statements/line_items.rb
373
+ - lib/lithic/resources/funding_events.rb
365
374
  - lib/lithic/resources/management_operations.rb
366
375
  - lib/lithic/resources/payments.rb
367
376
  - lib/lithic/resources/reports.rb
@@ -482,6 +491,8 @@ files:
482
491
  - rbi/lithic/models/card_search_by_pan_params.rbi
483
492
  - rbi/lithic/models/card_spend_limits.rbi
484
493
  - rbi/lithic/models/card_update_params.rbi
494
+ - rbi/lithic/models/card_web_provision_params.rbi
495
+ - rbi/lithic/models/card_web_provision_response.rbi
485
496
  - rbi/lithic/models/cards/aggregate_balance_list_params.rbi
486
497
  - rbi/lithic/models/cards/aggregate_balance_list_response.rbi
487
498
  - rbi/lithic/models/cards/balance_list_params.rbi
@@ -575,6 +586,12 @@ files:
575
586
  - rbi/lithic/models/financial_accounts/statements/line_item_list_params.rbi
576
587
  - rbi/lithic/models/financial_accounts/statements/statement_line_items.rbi
577
588
  - rbi/lithic/models/financial_transaction.rbi
589
+ - rbi/lithic/models/funding_event_list_params.rbi
590
+ - rbi/lithic/models/funding_event_list_response.rbi
591
+ - rbi/lithic/models/funding_event_retrieve_details_params.rbi
592
+ - rbi/lithic/models/funding_event_retrieve_details_response.rbi
593
+ - rbi/lithic/models/funding_event_retrieve_params.rbi
594
+ - rbi/lithic/models/funding_event_retrieve_response.rbi
578
595
  - rbi/lithic/models/instance_financial_account_type.rbi
579
596
  - rbi/lithic/models/kyb.rbi
580
597
  - rbi/lithic/models/kyb_business_entity.rbi
@@ -706,6 +723,7 @@ files:
706
723
  - rbi/lithic/resources/financial_accounts/loan_tapes.rbi
707
724
  - rbi/lithic/resources/financial_accounts/statements.rbi
708
725
  - rbi/lithic/resources/financial_accounts/statements/line_items.rbi
726
+ - rbi/lithic/resources/funding_events.rbi
709
727
  - rbi/lithic/resources/management_operations.rbi
710
728
  - rbi/lithic/resources/payments.rbi
711
729
  - rbi/lithic/resources/reports.rbi
@@ -825,6 +843,8 @@ files:
825
843
  - sig/lithic/models/card_search_by_pan_params.rbs
826
844
  - sig/lithic/models/card_spend_limits.rbs
827
845
  - sig/lithic/models/card_update_params.rbs
846
+ - sig/lithic/models/card_web_provision_params.rbs
847
+ - sig/lithic/models/card_web_provision_response.rbs
828
848
  - sig/lithic/models/cards/aggregate_balance_list_params.rbs
829
849
  - sig/lithic/models/cards/aggregate_balance_list_response.rbs
830
850
  - sig/lithic/models/cards/balance_list_params.rbs
@@ -918,6 +938,12 @@ files:
918
938
  - sig/lithic/models/financial_accounts/statements/line_item_list_params.rbs
919
939
  - sig/lithic/models/financial_accounts/statements/statement_line_items.rbs
920
940
  - sig/lithic/models/financial_transaction.rbs
941
+ - sig/lithic/models/funding_event_list_params.rbs
942
+ - sig/lithic/models/funding_event_list_response.rbs
943
+ - sig/lithic/models/funding_event_retrieve_details_params.rbs
944
+ - sig/lithic/models/funding_event_retrieve_details_response.rbs
945
+ - sig/lithic/models/funding_event_retrieve_params.rbs
946
+ - sig/lithic/models/funding_event_retrieve_response.rbs
921
947
  - sig/lithic/models/instance_financial_account_type.rbs
922
948
  - sig/lithic/models/kyb.rbs
923
949
  - sig/lithic/models/kyb_business_entity.rbs
@@ -1049,6 +1075,7 @@ files:
1049
1075
  - sig/lithic/resources/financial_accounts/loan_tapes.rbs
1050
1076
  - sig/lithic/resources/financial_accounts/statements.rbs
1051
1077
  - sig/lithic/resources/financial_accounts/statements/line_items.rbs
1078
+ - sig/lithic/resources/funding_events.rbs
1052
1079
  - sig/lithic/resources/management_operations.rbs
1053
1080
  - sig/lithic/resources/payments.rbs
1054
1081
  - sig/lithic/resources/reports.rbs