lithic 0.1.0.pre.alpha.46 → 0.1.0.pre.alpha.48

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 (51) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +1 -1
  4. data/lib/lithic/file_part.rb +10 -7
  5. data/lib/lithic/internal/type/file_input.rb +7 -4
  6. data/lib/lithic/models/auth_rules/v2_apply_response.rb +20 -1
  7. data/lib/lithic/models/auth_rules/v2_create_params.rb +5 -0
  8. data/lib/lithic/models/auth_rules/v2_create_response.rb +20 -1
  9. data/lib/lithic/models/auth_rules/v2_draft_params.rb +5 -0
  10. data/lib/lithic/models/auth_rules/v2_draft_response.rb +20 -1
  11. data/lib/lithic/models/auth_rules/v2_list_response.rb +20 -1
  12. data/lib/lithic/models/auth_rules/v2_promote_response.rb +20 -1
  13. data/lib/lithic/models/auth_rules/v2_retrieve_features_params.rb +28 -0
  14. data/lib/lithic/models/auth_rules/v2_retrieve_features_response.rb +188 -0
  15. data/lib/lithic/models/auth_rules/v2_retrieve_response.rb +20 -1
  16. data/lib/lithic/models/auth_rules/v2_update_response.rb +20 -1
  17. data/lib/lithic/models/auth_rules/velocity_limit_params.rb +44 -3
  18. data/lib/lithic/models/auth_rules/velocity_limit_params_period_window.rb +10 -0
  19. data/lib/lithic/resources/auth_rules/v2.rb +34 -0
  20. data/lib/lithic/version.rb +1 -1
  21. data/lib/lithic.rb +2 -0
  22. data/rbi/lithic/file_part.rbi +1 -1
  23. data/rbi/lithic/models/auth_rules/v2_apply_response.rbi +32 -0
  24. data/rbi/lithic/models/auth_rules/v2_create_params.rbi +11 -0
  25. data/rbi/lithic/models/auth_rules/v2_create_response.rbi +32 -0
  26. data/rbi/lithic/models/auth_rules/v2_draft_params.rbi +11 -0
  27. data/rbi/lithic/models/auth_rules/v2_draft_response.rbi +32 -0
  28. data/rbi/lithic/models/auth_rules/v2_list_response.rbi +32 -0
  29. data/rbi/lithic/models/auth_rules/v2_promote_response.rbi +32 -0
  30. data/rbi/lithic/models/auth_rules/v2_retrieve_features_params.rbi +54 -0
  31. data/rbi/lithic/models/auth_rules/v2_retrieve_features_response.rbi +443 -0
  32. data/rbi/lithic/models/auth_rules/v2_retrieve_response.rbi +32 -0
  33. data/rbi/lithic/models/auth_rules/v2_update_response.rbi +32 -0
  34. data/rbi/lithic/models/auth_rules/velocity_limit_params.rbi +137 -3
  35. data/rbi/lithic/models/auth_rules/velocity_limit_params_period_window.rbi +4 -0
  36. data/rbi/lithic/resources/auth_rules/v2.rbi +26 -0
  37. data/sig/lithic/file_part.rbs +1 -1
  38. data/sig/lithic/models/auth_rules/v2_apply_response.rbs +9 -0
  39. data/sig/lithic/models/auth_rules/v2_create_params.rbs +2 -0
  40. data/sig/lithic/models/auth_rules/v2_create_response.rbs +9 -0
  41. data/sig/lithic/models/auth_rules/v2_draft_params.rbs +2 -0
  42. data/sig/lithic/models/auth_rules/v2_draft_response.rbs +9 -0
  43. data/sig/lithic/models/auth_rules/v2_list_response.rbs +9 -0
  44. data/sig/lithic/models/auth_rules/v2_promote_response.rbs +9 -0
  45. data/sig/lithic/models/auth_rules/v2_retrieve_features_params.rbs +34 -0
  46. data/sig/lithic/models/auth_rules/v2_retrieve_features_response.rbs +158 -0
  47. data/sig/lithic/models/auth_rules/v2_retrieve_response.rbs +9 -0
  48. data/sig/lithic/models/auth_rules/v2_update_response.rbs +9 -0
  49. data/sig/lithic/models/auth_rules/velocity_limit_params.rbs +47 -3
  50. data/sig/lithic/resources/auth_rules/v2.rbs +7 -0
  51. metadata +8 -2
@@ -0,0 +1,158 @@
1
+ module Lithic
2
+ module Models
3
+ module AuthRules
4
+ type v2_retrieve_features_response =
5
+ {
6
+ evaluated: Time,
7
+ features: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature]
8
+ }
9
+
10
+ class V2RetrieveFeaturesResponse < Lithic::Internal::Type::BaseModel
11
+ attr_accessor evaluated: Time
12
+
13
+ attr_accessor features: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature]
14
+
15
+ def initialize: (
16
+ evaluated: Time,
17
+ features: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature]
18
+ ) -> void
19
+
20
+ def to_hash: -> {
21
+ evaluated: Time,
22
+ features: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature]
23
+ }
24
+
25
+ type feature =
26
+ {
27
+ filters: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters,
28
+ period: Lithic::Models::AuthRules::velocity_limit_params_period_window,
29
+ scope: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::scope,
30
+ value: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Value
31
+ }
32
+
33
+ class Feature < Lithic::Internal::Type::BaseModel
34
+ attr_accessor filters: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters
35
+
36
+ attr_accessor period: Lithic::Models::AuthRules::velocity_limit_params_period_window
37
+
38
+ attr_accessor scope: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::scope
39
+
40
+ attr_accessor value: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Value
41
+
42
+ def initialize: (
43
+ filters: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters,
44
+ period: Lithic::Models::AuthRules::velocity_limit_params_period_window,
45
+ scope: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::scope,
46
+ value: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Value
47
+ ) -> void
48
+
49
+ def to_hash: -> {
50
+ filters: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters,
51
+ period: Lithic::Models::AuthRules::velocity_limit_params_period_window,
52
+ scope: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::scope,
53
+ value: Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Value
54
+ }
55
+
56
+ type filters =
57
+ {
58
+ exclude_countries: ::Array[String]?,
59
+ exclude_mccs: ::Array[String]?,
60
+ include_countries: ::Array[String]?,
61
+ include_mccs: ::Array[String]?,
62
+ include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters::include_pan_entry_mode]?
63
+ }
64
+
65
+ class Filters < Lithic::Internal::Type::BaseModel
66
+ attr_accessor exclude_countries: ::Array[String]?
67
+
68
+ attr_accessor exclude_mccs: ::Array[String]?
69
+
70
+ attr_accessor include_countries: ::Array[String]?
71
+
72
+ attr_accessor include_mccs: ::Array[String]?
73
+
74
+ attr_accessor include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters::include_pan_entry_mode]?
75
+
76
+ def initialize: (
77
+ ?exclude_countries: ::Array[String]?,
78
+ ?exclude_mccs: ::Array[String]?,
79
+ ?include_countries: ::Array[String]?,
80
+ ?include_mccs: ::Array[String]?,
81
+ ?include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters::include_pan_entry_mode]?
82
+ ) -> void
83
+
84
+ def to_hash: -> {
85
+ exclude_countries: ::Array[String]?,
86
+ exclude_mccs: ::Array[String]?,
87
+ include_countries: ::Array[String]?,
88
+ include_mccs: ::Array[String]?,
89
+ include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters::include_pan_entry_mode]?
90
+ }
91
+
92
+ type include_pan_entry_mode =
93
+ :AUTO_ENTRY
94
+ | :BAR_CODE
95
+ | :CONTACTLESS
96
+ | :CREDENTIAL_ON_FILE
97
+ | :ECOMMERCE
98
+ | :ERROR_KEYED
99
+ | :ERROR_MAGNETIC_STRIPE
100
+ | :ICC
101
+ | :KEY_ENTERED
102
+ | :MAGNETIC_STRIPE
103
+ | :MANUAL
104
+ | :OCR
105
+ | :SECURE_CARDLESS
106
+ | :UNSPECIFIED
107
+ | :UNKNOWN
108
+
109
+ module IncludePanEntryMode
110
+ extend Lithic::Internal::Type::Enum
111
+
112
+ AUTO_ENTRY: :AUTO_ENTRY
113
+ BAR_CODE: :BAR_CODE
114
+ CONTACTLESS: :CONTACTLESS
115
+ CREDENTIAL_ON_FILE: :CREDENTIAL_ON_FILE
116
+ ECOMMERCE: :ECOMMERCE
117
+ ERROR_KEYED: :ERROR_KEYED
118
+ ERROR_MAGNETIC_STRIPE: :ERROR_MAGNETIC_STRIPE
119
+ ICC: :ICC
120
+ KEY_ENTERED: :KEY_ENTERED
121
+ MAGNETIC_STRIPE: :MAGNETIC_STRIPE
122
+ MANUAL: :MANUAL
123
+ OCR: :OCR
124
+ SECURE_CARDLESS: :SECURE_CARDLESS
125
+ UNSPECIFIED: :UNSPECIFIED
126
+ UNKNOWN: :UNKNOWN
127
+
128
+ def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::Filters::include_pan_entry_mode]
129
+ end
130
+ end
131
+
132
+ type scope = :CARD | :ACCOUNT
133
+
134
+ module Scope
135
+ extend Lithic::Internal::Type::Enum
136
+
137
+ CARD: :CARD
138
+ ACCOUNT: :ACCOUNT
139
+
140
+ def self?.values: -> ::Array[Lithic::Models::AuthRules::V2RetrieveFeaturesResponse::Feature::scope]
141
+ end
142
+
143
+ type value = { amount: Integer, count: Integer }
144
+
145
+ class Value < Lithic::Internal::Type::BaseModel
146
+ attr_accessor amount: Integer
147
+
148
+ attr_accessor count: Integer
149
+
150
+ def initialize: (amount: Integer, count: Integer) -> void
151
+
152
+ def to_hash: -> { amount: Integer, count: Integer }
153
+ end
154
+ end
155
+ end
156
+ end
157
+ end
158
+ end
@@ -10,6 +10,7 @@ module Lithic
10
10
  current_version: Lithic::Models::AuthRules::V2RetrieveResponse::CurrentVersion?,
11
11
  draft_version: Lithic::Models::AuthRules::V2RetrieveResponse::DraftVersion?,
12
12
  event_stream: Lithic::Models::AuthRules::V2RetrieveResponse::event_stream,
13
+ lithic_managed: bool,
13
14
  name: String?,
14
15
  program_level: bool,
15
16
  state: Lithic::Models::AuthRules::V2RetrieveResponse::state,
@@ -32,6 +33,8 @@ module Lithic
32
33
 
33
34
  attr_accessor event_stream: Lithic::Models::AuthRules::V2RetrieveResponse::event_stream
34
35
 
36
+ attr_accessor lithic_managed: bool
37
+
35
38
  attr_accessor name: String?
36
39
 
37
40
  attr_accessor program_level: bool
@@ -52,6 +55,7 @@ module Lithic
52
55
  current_version: Lithic::Models::AuthRules::V2RetrieveResponse::CurrentVersion?,
53
56
  draft_version: Lithic::Models::AuthRules::V2RetrieveResponse::DraftVersion?,
54
57
  event_stream: Lithic::Models::AuthRules::V2RetrieveResponse::event_stream,
58
+ lithic_managed: bool,
55
59
  name: String?,
56
60
  program_level: bool,
57
61
  state: Lithic::Models::AuthRules::V2RetrieveResponse::state,
@@ -67,6 +71,7 @@ module Lithic
67
71
  current_version: Lithic::Models::AuthRules::V2RetrieveResponse::CurrentVersion?,
68
72
  draft_version: Lithic::Models::AuthRules::V2RetrieveResponse::DraftVersion?,
69
73
  event_stream: Lithic::Models::AuthRules::V2RetrieveResponse::event_stream,
74
+ lithic_managed: bool,
70
75
  name: String?,
71
76
  program_level: bool,
72
77
  state: Lithic::Models::AuthRules::V2RetrieveResponse::state,
@@ -184,6 +189,7 @@ module Lithic
184
189
  | :LIABILITY_SHIFT
185
190
  | :PAN_ENTRY_MODE
186
191
  | :TRANSACTION_AMOUNT
192
+ | :CASH_AMOUNT
187
193
  | :RISK_SCORE
188
194
  | :CARD_TRANSACTION_COUNT_15M
189
195
  | :CARD_TRANSACTION_COUNT_1H
@@ -205,6 +211,7 @@ module Lithic
205
211
  LIABILITY_SHIFT: :LIABILITY_SHIFT
206
212
  PAN_ENTRY_MODE: :PAN_ENTRY_MODE
207
213
  TRANSACTION_AMOUNT: :TRANSACTION_AMOUNT
214
+ CASH_AMOUNT: :CASH_AMOUNT
208
215
  RISK_SCORE: :RISK_SCORE
209
216
  CARD_TRANSACTION_COUNT_15_M: :CARD_TRANSACTION_COUNT_15M
210
217
  CARD_TRANSACTION_COUNT_1_H: :CARD_TRANSACTION_COUNT_1H
@@ -373,6 +380,7 @@ module Lithic
373
380
  | :LIABILITY_SHIFT
374
381
  | :PAN_ENTRY_MODE
375
382
  | :TRANSACTION_AMOUNT
383
+ | :CASH_AMOUNT
376
384
  | :RISK_SCORE
377
385
  | :CARD_TRANSACTION_COUNT_15M
378
386
  | :CARD_TRANSACTION_COUNT_1H
@@ -394,6 +402,7 @@ module Lithic
394
402
  LIABILITY_SHIFT: :LIABILITY_SHIFT
395
403
  PAN_ENTRY_MODE: :PAN_ENTRY_MODE
396
404
  TRANSACTION_AMOUNT: :TRANSACTION_AMOUNT
405
+ CASH_AMOUNT: :CASH_AMOUNT
397
406
  RISK_SCORE: :RISK_SCORE
398
407
  CARD_TRANSACTION_COUNT_15_M: :CARD_TRANSACTION_COUNT_15M
399
408
  CARD_TRANSACTION_COUNT_1_H: :CARD_TRANSACTION_COUNT_1H
@@ -10,6 +10,7 @@ module Lithic
10
10
  current_version: Lithic::Models::AuthRules::V2UpdateResponse::CurrentVersion?,
11
11
  draft_version: Lithic::Models::AuthRules::V2UpdateResponse::DraftVersion?,
12
12
  event_stream: Lithic::Models::AuthRules::V2UpdateResponse::event_stream,
13
+ lithic_managed: bool,
13
14
  name: String?,
14
15
  program_level: bool,
15
16
  state: Lithic::Models::AuthRules::V2UpdateResponse::state,
@@ -32,6 +33,8 @@ module Lithic
32
33
 
33
34
  attr_accessor event_stream: Lithic::Models::AuthRules::V2UpdateResponse::event_stream
34
35
 
36
+ attr_accessor lithic_managed: bool
37
+
35
38
  attr_accessor name: String?
36
39
 
37
40
  attr_accessor program_level: bool
@@ -52,6 +55,7 @@ module Lithic
52
55
  current_version: Lithic::Models::AuthRules::V2UpdateResponse::CurrentVersion?,
53
56
  draft_version: Lithic::Models::AuthRules::V2UpdateResponse::DraftVersion?,
54
57
  event_stream: Lithic::Models::AuthRules::V2UpdateResponse::event_stream,
58
+ lithic_managed: bool,
55
59
  name: String?,
56
60
  program_level: bool,
57
61
  state: Lithic::Models::AuthRules::V2UpdateResponse::state,
@@ -67,6 +71,7 @@ module Lithic
67
71
  current_version: Lithic::Models::AuthRules::V2UpdateResponse::CurrentVersion?,
68
72
  draft_version: Lithic::Models::AuthRules::V2UpdateResponse::DraftVersion?,
69
73
  event_stream: Lithic::Models::AuthRules::V2UpdateResponse::event_stream,
74
+ lithic_managed: bool,
70
75
  name: String?,
71
76
  program_level: bool,
72
77
  state: Lithic::Models::AuthRules::V2UpdateResponse::state,
@@ -184,6 +189,7 @@ module Lithic
184
189
  | :LIABILITY_SHIFT
185
190
  | :PAN_ENTRY_MODE
186
191
  | :TRANSACTION_AMOUNT
192
+ | :CASH_AMOUNT
187
193
  | :RISK_SCORE
188
194
  | :CARD_TRANSACTION_COUNT_15M
189
195
  | :CARD_TRANSACTION_COUNT_1H
@@ -205,6 +211,7 @@ module Lithic
205
211
  LIABILITY_SHIFT: :LIABILITY_SHIFT
206
212
  PAN_ENTRY_MODE: :PAN_ENTRY_MODE
207
213
  TRANSACTION_AMOUNT: :TRANSACTION_AMOUNT
214
+ CASH_AMOUNT: :CASH_AMOUNT
208
215
  RISK_SCORE: :RISK_SCORE
209
216
  CARD_TRANSACTION_COUNT_15_M: :CARD_TRANSACTION_COUNT_15M
210
217
  CARD_TRANSACTION_COUNT_1_H: :CARD_TRANSACTION_COUNT_1H
@@ -373,6 +380,7 @@ module Lithic
373
380
  | :LIABILITY_SHIFT
374
381
  | :PAN_ENTRY_MODE
375
382
  | :TRANSACTION_AMOUNT
383
+ | :CASH_AMOUNT
376
384
  | :RISK_SCORE
377
385
  | :CARD_TRANSACTION_COUNT_15M
378
386
  | :CARD_TRANSACTION_COUNT_1H
@@ -394,6 +402,7 @@ module Lithic
394
402
  LIABILITY_SHIFT: :LIABILITY_SHIFT
395
403
  PAN_ENTRY_MODE: :PAN_ENTRY_MODE
396
404
  TRANSACTION_AMOUNT: :TRANSACTION_AMOUNT
405
+ CASH_AMOUNT: :CASH_AMOUNT
397
406
  RISK_SCORE: :RISK_SCORE
398
407
  CARD_TRANSACTION_COUNT_15_M: :CARD_TRANSACTION_COUNT_15M
399
408
  CARD_TRANSACTION_COUNT_1_H: :CARD_TRANSACTION_COUNT_1H
@@ -42,7 +42,8 @@ module Lithic
42
42
  exclude_countries: ::Array[String]?,
43
43
  exclude_mccs: ::Array[String]?,
44
44
  include_countries: ::Array[String]?,
45
- include_mccs: ::Array[String]?
45
+ include_mccs: ::Array[String]?,
46
+ include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::VelocityLimitParams::Filters::include_pan_entry_mode]?
46
47
  }
47
48
 
48
49
  class Filters < Lithic::Internal::Type::BaseModel
@@ -54,19 +55,62 @@ module Lithic
54
55
 
55
56
  attr_accessor include_mccs: ::Array[String]?
56
57
 
58
+ attr_accessor include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::VelocityLimitParams::Filters::include_pan_entry_mode]?
59
+
57
60
  def initialize: (
58
61
  ?exclude_countries: ::Array[String]?,
59
62
  ?exclude_mccs: ::Array[String]?,
60
63
  ?include_countries: ::Array[String]?,
61
- ?include_mccs: ::Array[String]?
64
+ ?include_mccs: ::Array[String]?,
65
+ ?include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::VelocityLimitParams::Filters::include_pan_entry_mode]?
62
66
  ) -> void
63
67
 
64
68
  def to_hash: -> {
65
69
  exclude_countries: ::Array[String]?,
66
70
  exclude_mccs: ::Array[String]?,
67
71
  include_countries: ::Array[String]?,
68
- include_mccs: ::Array[String]?
72
+ include_mccs: ::Array[String]?,
73
+ include_pan_entry_modes: ::Array[Lithic::Models::AuthRules::VelocityLimitParams::Filters::include_pan_entry_mode]?
69
74
  }
75
+
76
+ type include_pan_entry_mode =
77
+ :AUTO_ENTRY
78
+ | :BAR_CODE
79
+ | :CONTACTLESS
80
+ | :CREDENTIAL_ON_FILE
81
+ | :ECOMMERCE
82
+ | :ERROR_KEYED
83
+ | :ERROR_MAGNETIC_STRIPE
84
+ | :ICC
85
+ | :KEY_ENTERED
86
+ | :MAGNETIC_STRIPE
87
+ | :MANUAL
88
+ | :OCR
89
+ | :SECURE_CARDLESS
90
+ | :UNSPECIFIED
91
+ | :UNKNOWN
92
+
93
+ module IncludePanEntryMode
94
+ extend Lithic::Internal::Type::Enum
95
+
96
+ AUTO_ENTRY: :AUTO_ENTRY
97
+ BAR_CODE: :BAR_CODE
98
+ CONTACTLESS: :CONTACTLESS
99
+ CREDENTIAL_ON_FILE: :CREDENTIAL_ON_FILE
100
+ ECOMMERCE: :ECOMMERCE
101
+ ERROR_KEYED: :ERROR_KEYED
102
+ ERROR_MAGNETIC_STRIPE: :ERROR_MAGNETIC_STRIPE
103
+ ICC: :ICC
104
+ KEY_ENTERED: :KEY_ENTERED
105
+ MAGNETIC_STRIPE: :MAGNETIC_STRIPE
106
+ MANUAL: :MANUAL
107
+ OCR: :OCR
108
+ SECURE_CARDLESS: :SECURE_CARDLESS
109
+ UNSPECIFIED: :UNSPECIFIED
110
+ UNKNOWN: :UNKNOWN
111
+
112
+ def self?.values: -> ::Array[Lithic::Models::AuthRules::VelocityLimitParams::Filters::include_pan_entry_mode]
113
+ end
70
114
  end
71
115
 
72
116
  type scope = :CARD | :ACCOUNT
@@ -75,6 +75,13 @@ module Lithic
75
75
  ?request_options: Lithic::request_opts
76
76
  ) -> Lithic::Models::AuthRules::V2ReportResponse
77
77
 
78
+ def retrieve_features: (
79
+ String auth_rule_token,
80
+ ?account_token: String,
81
+ ?card_token: String,
82
+ ?request_options: Lithic::request_opts
83
+ ) -> Lithic::Models::AuthRules::V2RetrieveFeaturesResponse
84
+
78
85
  def retrieve_report: (
79
86
  String auth_rule_token,
80
87
  begin_: Date,
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.46
4
+ version: 0.1.0.pre.alpha.48
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lithic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-26 00:00:00.000000000 Z
11
+ date: 2025-09-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool
@@ -111,6 +111,8 @@ files:
111
111
  - lib/lithic/models/auth_rules/v2_promote_response.rb
112
112
  - lib/lithic/models/auth_rules/v2_report_params.rb
113
113
  - lib/lithic/models/auth_rules/v2_report_response.rb
114
+ - lib/lithic/models/auth_rules/v2_retrieve_features_params.rb
115
+ - lib/lithic/models/auth_rules/v2_retrieve_features_response.rb
114
116
  - lib/lithic/models/auth_rules/v2_retrieve_params.rb
115
117
  - lib/lithic/models/auth_rules/v2_retrieve_report_params.rb
116
118
  - lib/lithic/models/auth_rules/v2_retrieve_report_response.rb
@@ -487,6 +489,8 @@ files:
487
489
  - rbi/lithic/models/auth_rules/v2_promote_response.rbi
488
490
  - rbi/lithic/models/auth_rules/v2_report_params.rbi
489
491
  - rbi/lithic/models/auth_rules/v2_report_response.rbi
492
+ - rbi/lithic/models/auth_rules/v2_retrieve_features_params.rbi
493
+ - rbi/lithic/models/auth_rules/v2_retrieve_features_response.rbi
490
494
  - rbi/lithic/models/auth_rules/v2_retrieve_params.rbi
491
495
  - rbi/lithic/models/auth_rules/v2_retrieve_report_params.rbi
492
496
  - rbi/lithic/models/auth_rules/v2_retrieve_report_response.rbi
@@ -862,6 +866,8 @@ files:
862
866
  - sig/lithic/models/auth_rules/v2_promote_response.rbs
863
867
  - sig/lithic/models/auth_rules/v2_report_params.rbs
864
868
  - sig/lithic/models/auth_rules/v2_report_response.rbs
869
+ - sig/lithic/models/auth_rules/v2_retrieve_features_params.rbs
870
+ - sig/lithic/models/auth_rules/v2_retrieve_features_response.rbs
865
871
  - sig/lithic/models/auth_rules/v2_retrieve_params.rbs
866
872
  - sig/lithic/models/auth_rules/v2_retrieve_report_params.rbs
867
873
  - sig/lithic/models/auth_rules/v2_retrieve_report_response.rbs