lithic 0.1.0.pre.alpha.30 → 0.1.0.pre.alpha.31

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 (60) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/README.md +1 -1
  4. data/lib/lithic/internal/util.rb +8 -9
  5. data/lib/lithic/models/account_update_params.rb +4 -4
  6. data/lib/lithic/models/auth_rules/v2/backtest_results.rb +100 -28
  7. data/lib/lithic/models/auth_rules/v2_apply_response.rb +401 -10
  8. data/lib/lithic/models/auth_rules/v2_create_params.rb +205 -6
  9. data/lib/lithic/models/auth_rules/v2_create_response.rb +401 -10
  10. data/lib/lithic/models/auth_rules/v2_draft_params.rb +186 -3
  11. data/lib/lithic/models/auth_rules/v2_draft_response.rb +401 -10
  12. data/lib/lithic/models/auth_rules/v2_list_params.rb +27 -8
  13. data/lib/lithic/models/auth_rules/v2_list_response.rb +401 -10
  14. data/lib/lithic/models/auth_rules/v2_promote_response.rb +401 -10
  15. data/lib/lithic/models/auth_rules/v2_retrieve_response.rb +401 -10
  16. data/lib/lithic/models/auth_rules/v2_update_response.rb +401 -10
  17. data/lib/lithic/models/funding_event_list_response.rb +26 -22
  18. data/lib/lithic/models/funding_event_retrieve_response.rb +26 -22
  19. data/lib/lithic/models/payment.rb +2 -2
  20. data/lib/lithic/models/required_document.rb +2 -2
  21. data/lib/lithic/models/transaction.rb +2 -1
  22. data/lib/lithic/resources/auth_rules/v2/backtests.rb +12 -13
  23. data/lib/lithic/resources/auth_rules/v2.rb +43 -39
  24. data/lib/lithic/version.rb +1 -1
  25. data/rbi/lithic/internal/util.rbi +2 -0
  26. data/rbi/lithic/models/account_update_params.rbi +6 -6
  27. data/rbi/lithic/models/auth_rules/v2/backtest_results.rbi +186 -24
  28. data/rbi/lithic/models/auth_rules/v2_apply_response.rbi +895 -7
  29. data/rbi/lithic/models/auth_rules/v2_create_params.rbi +442 -8
  30. data/rbi/lithic/models/auth_rules/v2_create_response.rbi +895 -7
  31. data/rbi/lithic/models/auth_rules/v2_draft_params.rbi +414 -4
  32. data/rbi/lithic/models/auth_rules/v2_draft_response.rbi +895 -7
  33. data/rbi/lithic/models/auth_rules/v2_list_params.rbi +60 -7
  34. data/rbi/lithic/models/auth_rules/v2_list_response.rbi +895 -7
  35. data/rbi/lithic/models/auth_rules/v2_promote_response.rbi +895 -7
  36. data/rbi/lithic/models/auth_rules/v2_retrieve_response.rbi +895 -7
  37. data/rbi/lithic/models/auth_rules/v2_update_response.rbi +895 -7
  38. data/rbi/lithic/models/funding_event_list_response.rbi +35 -28
  39. data/rbi/lithic/models/funding_event_retrieve_response.rbi +35 -28
  40. data/rbi/lithic/models/payment.rbi +3 -3
  41. data/rbi/lithic/models/required_document.rbi +2 -2
  42. data/rbi/lithic/models/transaction.rbi +4 -2
  43. data/rbi/lithic/resources/accounts.rbi +2 -2
  44. data/rbi/lithic/resources/auth_rules/v2/backtests.rbi +12 -13
  45. data/rbi/lithic/resources/auth_rules/v2.rbi +49 -38
  46. data/sig/lithic/models/auth_rules/v2/backtest_results.rbs +66 -2
  47. data/sig/lithic/models/auth_rules/v2_apply_response.rbs +280 -1
  48. data/sig/lithic/models/auth_rules/v2_create_params.rbs +135 -1
  49. data/sig/lithic/models/auth_rules/v2_create_response.rbs +280 -1
  50. data/sig/lithic/models/auth_rules/v2_draft_params.rbs +129 -0
  51. data/sig/lithic/models/auth_rules/v2_draft_response.rbs +280 -1
  52. data/sig/lithic/models/auth_rules/v2_list_params.rbs +20 -0
  53. data/sig/lithic/models/auth_rules/v2_list_response.rbs +280 -1
  54. data/sig/lithic/models/auth_rules/v2_promote_response.rbs +280 -1
  55. data/sig/lithic/models/auth_rules/v2_retrieve_response.rbs +280 -1
  56. data/sig/lithic/models/auth_rules/v2_update_response.rbs +280 -1
  57. data/sig/lithic/models/funding_event_list_response.rbs +18 -11
  58. data/sig/lithic/models/funding_event_retrieve_response.rbs +18 -11
  59. data/sig/lithic/resources/auth_rules/v2.rbs +1 -0
  60. metadata +2 -2
@@ -18,7 +18,8 @@ module Lithic
18
18
  enum: -> { Lithic::Models::FundingEventRetrieveResponse::CollectionResourceType }
19
19
 
20
20
  # @!attribute collection_tokens
21
- # IDs of collections
21
+ # IDs of collections, further information can be gathered from the appropriate
22
+ # collection API based on collection_resource_type
22
23
  #
23
24
  # @return [Array<String>]
24
25
  required :collection_tokens, Lithic::Internal::Type::ArrayOf[String]
@@ -35,39 +36,42 @@ module Lithic
35
36
  # @return [Time]
36
37
  required :high_watermark, Time
37
38
 
39
+ # @!attribute network_settlement_summary
40
+ # Network settlement summary breakdown by network settlement date
41
+ #
42
+ # @return [Array<Lithic::Models::FundingEventRetrieveResponse::NetworkSettlementSummary>]
43
+ required :network_settlement_summary,
44
+ -> { Lithic::Internal::Type::ArrayOf[Lithic::Models::FundingEventRetrieveResponse::NetworkSettlementSummary] }
45
+
38
46
  # @!attribute previous_high_watermark
39
47
  # Time of the previous high watermark
40
48
  #
41
49
  # @return [Time]
42
50
  required :previous_high_watermark, Time
43
51
 
44
- # @!attribute settlement_breakdowns
45
- # List of settlements
46
- #
47
- # @return [Array<Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown>]
48
- required :settlement_breakdowns,
49
- -> { Lithic::Internal::Type::ArrayOf[Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown] }
50
-
51
52
  # @!attribute updated
52
53
  # Time of the update
53
54
  #
54
55
  # @return [Time]
55
56
  required :updated, Time
56
57
 
57
- # @!method initialize(token:, collection_resource_type:, collection_tokens:, created:, high_watermark:, previous_high_watermark:, settlement_breakdowns:, updated:)
58
+ # @!method initialize(token:, collection_resource_type:, collection_tokens:, created:, high_watermark:, network_settlement_summary:, previous_high_watermark:, updated:)
59
+ # Some parameter documentations has been truncated, see
60
+ # {Lithic::Models::FundingEventRetrieveResponse} for more details.
61
+ #
58
62
  # @param token [String] Unique token ID
59
63
  #
60
64
  # @param collection_resource_type [Symbol, Lithic::Models::FundingEventRetrieveResponse::CollectionResourceType] Collection resource type
61
65
  #
62
- # @param collection_tokens [Array<String>] IDs of collections
66
+ # @param collection_tokens [Array<String>] IDs of collections, further information can be gathered from the appropriate col
63
67
  #
64
68
  # @param created [Time] Time of the creation
65
69
  #
66
70
  # @param high_watermark [Time] Time of the high watermark
67
71
  #
68
- # @param previous_high_watermark [Time] Time of the previous high watermark
72
+ # @param network_settlement_summary [Array<Lithic::Models::FundingEventRetrieveResponse::NetworkSettlementSummary>] Network settlement summary breakdown by network settlement date
69
73
  #
70
- # @param settlement_breakdowns [Array<Lithic::Models::FundingEventRetrieveResponse::SettlementBreakdown>] List of settlements
74
+ # @param previous_high_watermark [Time] Time of the previous high watermark
71
75
  #
72
76
  # @param updated [Time] Time of the update
73
77
 
@@ -84,20 +88,20 @@ module Lithic
84
88
  # @return [Array<Symbol>]
85
89
  end
86
90
 
87
- class SettlementBreakdown < Lithic::Internal::Type::BaseModel
88
- # @!attribute amount
91
+ class NetworkSettlementSummary < Lithic::Internal::Type::BaseModel
92
+ # @!attribute network_settlement_date
89
93
  #
90
- # @return [Integer]
91
- required :amount, Integer
94
+ # @return [Date]
95
+ required :network_settlement_date, Date
92
96
 
93
- # @!attribute settlement_date
97
+ # @!attribute settled_gross_amount
94
98
  #
95
- # @return [Date]
96
- required :settlement_date, Date
99
+ # @return [Integer]
100
+ required :settled_gross_amount, Integer
97
101
 
98
- # @!method initialize(amount:, settlement_date:)
99
- # @param amount [Integer]
100
- # @param settlement_date [Date]
102
+ # @!method initialize(network_settlement_date:, settled_gross_amount:)
103
+ # @param network_settlement_date [Date]
104
+ # @param settled_gross_amount [Integer]
101
105
  end
102
106
  end
103
107
  end
@@ -221,7 +221,7 @@ module Lithic
221
221
  # - `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
222
222
  # - `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
223
223
  # - `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
224
- # the fed.
224
+ # the Federal Reserve.
225
225
  # - `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
226
226
  # - `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to
227
227
  # available balance.
@@ -282,7 +282,7 @@ module Lithic
282
282
  # - `ACH_ORIGINATION_REVIEWED` - ACH origination has completed the review process.
283
283
  # - `ACH_ORIGINATION_CANCELLED` - ACH origination has been cancelled.
284
284
  # - `ACH_ORIGINATION_PROCESSED` - ACH origination has been processed and sent to
285
- # the fed.
285
+ # the Federal Reserve.
286
286
  # - `ACH_ORIGINATION_SETTLED` - ACH origination has settled.
287
287
  # - `ACH_ORIGINATION_RELEASED` - ACH origination released from pending to
288
288
  # available balance.
@@ -10,7 +10,7 @@ module Lithic
10
10
  required :entity_token, String
11
11
 
12
12
  # @!attribute status_reasons
13
- # rovides the status reasons that will be satisfied by providing one of the valid
13
+ # Provides the status reasons that will be satisfied by providing one of the valid
14
14
  # documents.
15
15
  #
16
16
  # @return [Array<String>]
@@ -29,7 +29,7 @@ module Lithic
29
29
  #
30
30
  # @param entity_token [String] Globally unique identifier for an entity.
31
31
  #
32
- # @param status_reasons [Array<String>] rovides the status reasons that will be satisfied by providing one of the valid
32
+ # @param status_reasons [Array<String>] Provides the status reasons that will be satisfied by providing one of the valid
33
33
  #
34
34
  # @param valid_documents [Array<String>] A list of valid documents that will satisfy the KYC requirements for the specifi
35
35
  end
@@ -28,7 +28,8 @@ module Lithic
28
28
  # @deprecated
29
29
  #
30
30
  # Unique identifier assigned to a transaction by the acquirer that can be used in
31
- # dispute and chargeback filing.
31
+ # dispute and chargeback filing. This field has been deprecated in favor of the
32
+ # `acquirer_reference_number` that resides in the event-level `network_info`.
32
33
  #
33
34
  # @return [String, nil]
34
35
  required :acquirer_reference_number, String, nil?: true
@@ -5,16 +5,15 @@ module Lithic
5
5
  class AuthRules
6
6
  class V2
7
7
  class Backtests
8
- # Initiates a request to asynchronously generate a backtest for an authorization
9
- # rule. During backtesting, both the active version (if one exists) and the draft
10
- # version of the Authorization Rule are evaluated by replaying historical
11
- # transaction data against the rule's conditions. This process allows customers to
12
- # simulate and understand the effects of proposed rule changes before deployment.
13
- # The generated backtest report provides detailed results showing whether the
14
- # draft version of the Auth Rule would have approved or declined historical
15
- # transactions which were processed during the backtest period. These reports help
16
- # evaluate how changes to rule configurations might affect overall transaction
17
- # approval rates.
8
+ # Initiates a request to asynchronously generate a backtest for an Auth rule.
9
+ # During backtesting, both the active version (if one exists) and the draft
10
+ # version of the Auth Rule are evaluated by replaying historical transaction data
11
+ # against the rule's conditions. This process allows customers to simulate and
12
+ # understand the effects of proposed rule changes before deployment. The generated
13
+ # backtest report provides detailed results showing whether the draft version of
14
+ # the Auth Rule would have approved or declined historical transactions which were
15
+ # processed during the backtest period. These reports help evaluate how changes to
16
+ # rule configurations might affect overall transaction approval rates.
18
17
  #
19
18
  # The generated backtest report will be delivered asynchronously through a webhook
20
19
  # with `event_type` = `auth_rules.backtest_report.created`. See the docs on
@@ -55,7 +54,7 @@ module Lithic
55
54
  )
56
55
  end
57
56
 
58
- # Returns the backtest results of an authorization rule (if available).
57
+ # Returns the backtest results of an Auth rule (if available).
59
58
  #
60
59
  # Backtesting is an asynchronous process that requires time to complete. If a
61
60
  # customer retrieves the backtest results using this endpoint before the report is
@@ -71,8 +70,8 @@ module Lithic
71
70
  # also always represent the configuration of the rule at the time requests are
72
71
  # made to this endpoint. For example, the results for `current_version` in the
73
72
  # served backtest report will be consistent with which version of the rule is
74
- # currently activated in the Auth Stream, regardless of which version of the rule
75
- # was active in the Auth Stream at the time a backtest is requested.
73
+ # currently activated in the respective event stream, regardless of which version
74
+ # of the rule was active in the event stream at the time a backtest is requested.
76
75
  #
77
76
  # @overload retrieve(auth_rule_backtest_token, auth_rule_token:, request_options: {})
78
77
  #
@@ -7,7 +7,10 @@ module Lithic
7
7
  # @return [Lithic::Resources::AuthRules::V2::Backtests]
8
8
  attr_reader :backtests
9
9
 
10
- # Creates a new V2 authorization rule in draft mode
10
+ # Some parameter documentations has been truncated, see
11
+ # {Lithic::Models::AuthRules::V2CreateParams} for more details.
12
+ #
13
+ # Creates a new V2 Auth rule in draft mode
11
14
  #
12
15
  # @overload create(account_tokens:, card_tokens:, program_level:, name: nil, parameters: nil, type: nil, excluded_card_tokens: nil, request_options: {})
13
16
  #
@@ -19,9 +22,9 @@ module Lithic
19
22
  #
20
23
  # @param name [String, nil] Auth Rule Name
21
24
  #
22
- # @param parameters [Lithic::Models::AuthRules::ConditionalBlockParameters, Lithic::Models::AuthRules::VelocityLimitParams, Lithic::Models::AuthRules::V2CreateParams::Parameters::MerchantLockParameters] Parameters for the Auth Rule
25
+ # @param parameters [Lithic::Models::AuthRules::ConditionalBlockParameters, Lithic::Models::AuthRules::VelocityLimitParams, Lithic::Models::AuthRules::V2CreateParams::Parameters::MerchantLockParameters, Lithic::Models::AuthRules::V2CreateParams::Parameters::Conditional3DSActionParameters] Parameters for the Auth Rule
23
26
  #
24
- # @param type [Symbol, Lithic::Models::AuthRules::V2CreateParams::Type] The type of Auth Rule
27
+ # @param type [Symbol, Lithic::Models::AuthRules::V2CreateParams::Type] The type of Auth Rule. Effectively determines the event stream during which it w
25
28
  #
26
29
  # @param excluded_card_tokens [Array<String>] Card tokens to which the Auth Rule does not apply.
27
30
  #
@@ -41,7 +44,7 @@ module Lithic
41
44
  )
42
45
  end
43
46
 
44
- # Fetches a V2 authorization rule by its token
47
+ # Fetches a V2 Auth rule by its token
45
48
  #
46
49
  # @overload retrieve(auth_rule_token, request_options: {})
47
50
  #
@@ -64,7 +67,7 @@ module Lithic
64
67
  # Some parameter documentations has been truncated, see
65
68
  # {Lithic::Models::AuthRules::V2UpdateParams} for more details.
66
69
  #
67
- # Updates a V2 authorization rule's properties
70
+ # Updates a V2 Auth rule's properties
68
71
  #
69
72
  # If `account_tokens`, `card_tokens`, `program_level`, or `excluded_card_tokens`
70
73
  # is provided, this will replace existing associations with the provided list of
@@ -105,19 +108,21 @@ module Lithic
105
108
  # Some parameter documentations has been truncated, see
106
109
  # {Lithic::Models::AuthRules::V2ListParams} for more details.
107
110
  #
108
- # Lists V2 authorization rules
111
+ # Lists V2 Auth rules
109
112
  #
110
- # @overload list(account_token: nil, card_token: nil, ending_before: nil, page_size: nil, scope: nil, starting_after: nil, request_options: {})
113
+ # @overload list(account_token: nil, card_token: nil, ending_before: nil, event_stream: nil, page_size: nil, scope: nil, starting_after: nil, request_options: {})
111
114
  #
112
- # @param account_token [String] Only return Authorization Rules that are bound to the provided account token.
115
+ # @param account_token [String] Only return Auth Rules that are bound to the provided account token.
113
116
  #
114
- # @param card_token [String] Only return Authorization Rules that are bound to the provided card token.
117
+ # @param card_token [String] Only return Auth Rules that are bound to the provided card token.
115
118
  #
116
119
  # @param ending_before [String] A cursor representing an item's token before which a page of results should end.
117
120
  #
121
+ # @param event_stream [Symbol, Lithic::Models::AuthRules::V2ListParams::EventStream] Only return Auth rules that are executed during the provided event stream.
122
+ #
118
123
  # @param page_size [Integer] Page size (for pagination).
119
124
  #
120
- # @param scope [Symbol, Lithic::Models::AuthRules::V2ListParams::Scope] Only return Authorization Rules that are bound to the provided scope;
125
+ # @param scope [Symbol, Lithic::Models::AuthRules::V2ListParams::Scope] Only return Auth Rules that are bound to the provided scope.
121
126
  #
122
127
  # @param starting_after [String] A cursor representing an item's token after which a page of results should begin
123
128
  #
@@ -138,7 +143,7 @@ module Lithic
138
143
  )
139
144
  end
140
145
 
141
- # Deletes a V2 authorization rule
146
+ # Deletes a V2 Auth rule
142
147
  #
143
148
  # @overload delete(auth_rule_token, request_options: {})
144
149
  #
@@ -160,8 +165,8 @@ module Lithic
160
165
 
161
166
  # @deprecated
162
167
  #
163
- # Associates a V2 authorization rule with a card program, the provided account(s)
164
- # or card(s).
168
+ # Associates a V2 Auth rule with a card program, the provided account(s) or
169
+ # card(s).
165
170
  #
166
171
  # Prefer using the `PATCH` method for this operation.
167
172
  #
@@ -202,7 +207,7 @@ module Lithic
202
207
  #
203
208
  # @param auth_rule_token [String] Globally unique identifier for the Auth Rule.
204
209
  #
205
- # @param parameters [Lithic::Models::AuthRules::ConditionalBlockParameters, Lithic::Models::AuthRules::VelocityLimitParams, Lithic::Models::AuthRules::V2DraftParams::Parameters::MerchantLockParameters, nil] Parameters for the Auth Rule
210
+ # @param parameters [Lithic::Models::AuthRules::ConditionalBlockParameters, Lithic::Models::AuthRules::VelocityLimitParams, Lithic::Models::AuthRules::V2DraftParams::Parameters::MerchantLockParameters, Lithic::Models::AuthRules::V2DraftParams::Parameters::Conditional3DSActionParameters, nil] Parameters for the Auth Rule
206
211
  #
207
212
  # @param request_options [Lithic::RequestOptions, Hash{Symbol=>Object}, nil]
208
213
  #
@@ -220,8 +225,8 @@ module Lithic
220
225
  )
221
226
  end
222
227
 
223
- # Promotes the draft version of an authorization rule to the currently active
224
- # version such that it is enforced in the authorization stream.
228
+ # Promotes the draft version of an Auth rule to the currently active version such
229
+ # that it is enforced in the respective stream.
225
230
  #
226
231
  # @overload promote(auth_rule_token, request_options: {})
227
232
  #
@@ -241,26 +246,25 @@ module Lithic
241
246
  )
242
247
  end
243
248
 
244
- # Requests a performance report of an authorization rule to be asynchronously
245
- # generated. Reports can only be run on rules in draft or active mode and will
246
- # included approved and declined statistics as well as examples. The generated
247
- # report will be delivered asynchronously through a webhook with `event_type` =
249
+ # Requests a performance report of an Auth rule to be asynchronously generated.
250
+ # Reports can only be run on rules in draft or active mode and will included
251
+ # approved and declined statistics as well as examples. The generated report will
252
+ # be delivered asynchronously through a webhook with `event_type` =
248
253
  # `auth_rules.performance_report.created`. See the docs on setting up
249
254
  # [webhook subscriptions](https://docs.lithic.com/docs/events-api).
250
255
  #
251
- # Reports are generated based on data collected by Lithic's authorization
252
- # processing system in the trailing week. The performance of the auth rule will be
253
- # assessed on the configuration of the auth rule at the time the report is
254
- # requested. This implies that if a performance report is requested, right after
255
- # updating an auth rule, depending on the number of authorizations processed for a
256
- # card program, it may be the case that no data is available for the report.
257
- # Therefore Lithic recommends to decouple making updates to an Auth Rule, and
258
- # requesting performance reports.
256
+ # Reports are generated based on data collected by Lithic's processing system in
257
+ # the trailing week. The performance of the auth rule will be assessed on the
258
+ # configuration of the auth rule at the time the report is requested. This implies
259
+ # that if a performance report is requested, right after updating an auth rule,
260
+ # depending on the number of events processed for a card program, it may be the
261
+ # case that no data is available for the report. Therefore Lithic recommends to
262
+ # decouple making updates to an Auth Rule, and requesting performance reports.
259
263
  #
260
264
  # To make this concrete, consider the following example:
261
265
  #
262
- # 1. At time `t`, a new Auth Rule is created, and applies to all authorizations on
263
- # a card program. The Auth Rule has not yet been promoted, causing the draft
266
+ # 1. At time `t`, a new Auth Rule is created, and applies to all auth events on a
267
+ # card program. The Auth Rule has not yet been promoted, causing the draft
264
268
  # version of the rule to be applied in shadow mode.
265
269
  # 2. At time `t + 1 hour` a performance report is requested for the Auth Rule.
266
270
  # This performance report will _only_ contain data for the Auth Rule being
@@ -275,17 +279,17 @@ module Lithic
275
279
  # `t + 2 hours`.
276
280
  # 4. At time `t + 3 hours` a new version of the rule is drafted by calling the
277
281
  # `/v2/auth_rules/{auth_rule_token}/draft` endpoint. If a performance report is
278
- # requested right at this moment, it will only contain data for authorizations
279
- # to which both the active version and the draft version is applied. Lithic
280
- # does this to ensure that performance reports represent a fair comparison
281
- # between rules. Because there may be no authorizations in this window, and
282
- # because there may be some lag before data is available in a performance
283
- # report, the requested performance report could contain no to little data.
282
+ # requested right at this moment, it will only contain data for events to which
283
+ # both the active version and the draft version is applied. Lithic does this to
284
+ # ensure that performance reports represent a fair comparison between rules.
285
+ # Because there may be no events in this window, and because there may be some
286
+ # lag before data is available in a performance report, the requested
287
+ # performance report could contain no to little data.
284
288
  # 5. At time `t + 4 hours` another performance report is requested: this time the
285
289
  # performance report will contain data from the window between `t + 3 hours`
286
- # and `t + 4 hours`, for any authorizations to which both the current version
287
- # of the authorization rule (in enforcing mode) and the draft version of the
288
- # authorization rule (in shadow mode) applied.
290
+ # and `t + 4 hours`, for any events to which both the current version of the
291
+ # Auth rule (in enforcing mode) and the draft version of the Auth rule (in
292
+ # shadow mode) applied.
289
293
  #
290
294
  # Note that generating a report may take up to 15 minutes and that delivery is not
291
295
  # guaranteed. Customers are required to have created an event subscription to
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lithic
4
- VERSION = "0.1.0.pre.alpha.30"
4
+ VERSION = "0.1.0.pre.alpha.31"
5
5
  end
@@ -332,6 +332,8 @@ module Lithic
332
332
  end
333
333
 
334
334
  # @api private
335
+ #
336
+ # https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.1.md#special-considerations-for-multipart-content
335
337
  sig do
336
338
  params(body: T.anything).returns([String, T::Enumerable[String]])
337
339
  end
@@ -49,8 +49,8 @@ module Lithic
49
49
 
50
50
  # Address used during Address Verification Service (AVS) checks during
51
51
  # transactions if enabled via Auth Rules. This field is deprecated as AVS checks
52
- # are no longer supported by Authorization Rules. The field will be removed from
53
- # the schema in a future release.
52
+ # are no longer supported by Auth Rules. The field will be removed from the schema
53
+ # in a future release.
54
54
  sig do
55
55
  returns(T.nilable(Lithic::AccountUpdateParams::VerificationAddress))
56
56
  end
@@ -94,8 +94,8 @@ module Lithic
94
94
  state: nil,
95
95
  # Address used during Address Verification Service (AVS) checks during
96
96
  # transactions if enabled via Auth Rules. This field is deprecated as AVS checks
97
- # are no longer supported by Authorization Rules. The field will be removed from
98
- # the schema in a future release.
97
+ # are no longer supported by Auth Rules. The field will be removed from the schema
98
+ # in a future release.
99
99
  verification_address: nil,
100
100
  request_options: {}
101
101
  )
@@ -186,8 +186,8 @@ module Lithic
186
186
 
187
187
  # Address used during Address Verification Service (AVS) checks during
188
188
  # transactions if enabled via Auth Rules. This field is deprecated as AVS checks
189
- # are no longer supported by Authorization Rules. The field will be removed from
190
- # the schema in a future release.
189
+ # are no longer supported by Auth Rules. The field will be removed from the schema
190
+ # in a future release.
191
191
  sig do
192
192
  params(
193
193
  address1: String,