lithic 0.17.0 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +1 -1
- data/lib/lithic/models/auth_rules/rule_feature.rb +291 -2
- data/lib/lithic/models/auth_rules/typescript_code_parameters.rb +2 -2
- data/lib/lithic/models/claim_created_webhook_event.rb +190 -0
- data/lib/lithic/models/claim_document_accepted_webhook_event.rb +175 -0
- data/lib/lithic/models/claim_document_rejected_webhook_event.rb +175 -0
- data/lib/lithic/models/claim_document_uploaded_webhook_event.rb +175 -0
- data/lib/lithic/models/claim_updated_webhook_event.rb +190 -0
- data/lib/lithic/models/event.rb +23 -0
- data/lib/lithic/models/event_list_params.rb +14 -0
- data/lib/lithic/models/event_subscription.rb +14 -0
- data/lib/lithic/models/events/subscription_create_params.rb +14 -0
- data/lib/lithic/models/events/subscription_send_simulated_example_params.rb +5 -0
- data/lib/lithic/models/events/subscription_update_params.rb +14 -0
- data/lib/lithic/models/parsed_webhook_event.rb +11 -1
- data/lib/lithic/models.rb +10 -0
- data/lib/lithic/resources/webhooks.rb +1 -1
- data/lib/lithic/version.rb +1 -1
- data/lib/lithic.rb +5 -0
- data/rbi/lithic/models/auth_rules/rule_feature.rbi +686 -2
- data/rbi/lithic/models/auth_rules/typescript_code_parameters.rbi +15 -3
- data/rbi/lithic/models/claim_created_webhook_event.rbi +386 -0
- data/rbi/lithic/models/claim_document_accepted_webhook_event.rbi +315 -0
- data/rbi/lithic/models/claim_document_rejected_webhook_event.rbi +315 -0
- data/rbi/lithic/models/claim_document_uploaded_webhook_event.rbi +315 -0
- data/rbi/lithic/models/claim_updated_webhook_event.rbi +386 -0
- data/rbi/lithic/models/event.rbi +46 -0
- data/rbi/lithic/models/event_list_params.rbi +34 -0
- data/rbi/lithic/models/event_subscription.rbi +34 -0
- data/rbi/lithic/models/events/subscription_create_params.rbi +34 -0
- data/rbi/lithic/models/events/subscription_send_simulated_example_params.rbi +25 -0
- data/rbi/lithic/models/events/subscription_update_params.rbi +34 -0
- data/rbi/lithic/models/parsed_webhook_event.rbi +5 -0
- data/rbi/lithic/models.rbi +13 -0
- data/rbi/lithic/resources/webhooks.rbi +5 -0
- data/sig/lithic/models/auth_rules/rule_feature.rbs +252 -0
- data/sig/lithic/models/claim_created_webhook_event.rbs +169 -0
- data/sig/lithic/models/claim_document_accepted_webhook_event.rbs +131 -0
- data/sig/lithic/models/claim_document_rejected_webhook_event.rbs +131 -0
- data/sig/lithic/models/claim_document_uploaded_webhook_event.rbs +131 -0
- data/sig/lithic/models/claim_updated_webhook_event.rbs +169 -0
- data/sig/lithic/models/event.rbs +10 -0
- data/sig/lithic/models/event_list_params.rbs +10 -0
- data/sig/lithic/models/event_subscription.rbs +10 -0
- data/sig/lithic/models/events/subscription_create_params.rbs +10 -0
- data/sig/lithic/models/events/subscription_send_simulated_example_params.rbs +10 -0
- data/sig/lithic/models/events/subscription_update_params.rbs +10 -0
- data/sig/lithic/models/parsed_webhook_event.rbs +5 -0
- data/sig/lithic/models.rbs +10 -0
- data/sig/lithic/resources/webhooks.rbs +5 -0
- metadata +17 -2
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
module Lithic
|
|
2
|
+
module Models
|
|
3
|
+
type claim_updated_webhook_event =
|
|
4
|
+
{
|
|
5
|
+
token: String,
|
|
6
|
+
account_holder_token: String?,
|
|
7
|
+
account_token: String?,
|
|
8
|
+
card_tokens: ::Array[String],
|
|
9
|
+
created: Time,
|
|
10
|
+
disputed_transactions: ::Array[Lithic::ClaimUpdatedWebhookEvent::DisputedTransaction],
|
|
11
|
+
event_type: :"claim.updated",
|
|
12
|
+
outstanding_requirements: ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::outstanding_requirement],
|
|
13
|
+
reason: Lithic::Models::ClaimUpdatedWebhookEvent::reason,
|
|
14
|
+
status: Lithic::Models::ClaimUpdatedWebhookEvent::status,
|
|
15
|
+
submitted: Time?,
|
|
16
|
+
updated: Time
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
class ClaimUpdatedWebhookEvent < Lithic::Internal::Type::BaseModel
|
|
20
|
+
attr_accessor token: String
|
|
21
|
+
|
|
22
|
+
attr_accessor account_holder_token: String?
|
|
23
|
+
|
|
24
|
+
attr_accessor account_token: String?
|
|
25
|
+
|
|
26
|
+
attr_accessor card_tokens: ::Array[String]
|
|
27
|
+
|
|
28
|
+
attr_accessor created: Time
|
|
29
|
+
|
|
30
|
+
attr_accessor disputed_transactions: ::Array[Lithic::ClaimUpdatedWebhookEvent::DisputedTransaction]
|
|
31
|
+
|
|
32
|
+
attr_accessor event_type: :"claim.updated"
|
|
33
|
+
|
|
34
|
+
attr_accessor outstanding_requirements: ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::outstanding_requirement]
|
|
35
|
+
|
|
36
|
+
attr_accessor reason: Lithic::Models::ClaimUpdatedWebhookEvent::reason
|
|
37
|
+
|
|
38
|
+
attr_accessor status: Lithic::Models::ClaimUpdatedWebhookEvent::status
|
|
39
|
+
|
|
40
|
+
attr_accessor submitted: Time?
|
|
41
|
+
|
|
42
|
+
attr_accessor updated: Time
|
|
43
|
+
|
|
44
|
+
def initialize: (
|
|
45
|
+
token: String,
|
|
46
|
+
account_holder_token: String?,
|
|
47
|
+
account_token: String?,
|
|
48
|
+
card_tokens: ::Array[String],
|
|
49
|
+
created: Time,
|
|
50
|
+
disputed_transactions: ::Array[Lithic::ClaimUpdatedWebhookEvent::DisputedTransaction],
|
|
51
|
+
outstanding_requirements: ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::outstanding_requirement],
|
|
52
|
+
reason: Lithic::Models::ClaimUpdatedWebhookEvent::reason,
|
|
53
|
+
status: Lithic::Models::ClaimUpdatedWebhookEvent::status,
|
|
54
|
+
submitted: Time?,
|
|
55
|
+
updated: Time,
|
|
56
|
+
?event_type: :"claim.updated"
|
|
57
|
+
) -> void
|
|
58
|
+
|
|
59
|
+
def to_hash: -> {
|
|
60
|
+
token: String,
|
|
61
|
+
account_holder_token: String?,
|
|
62
|
+
account_token: String?,
|
|
63
|
+
card_tokens: ::Array[String],
|
|
64
|
+
created: Time,
|
|
65
|
+
disputed_transactions: ::Array[Lithic::ClaimUpdatedWebhookEvent::DisputedTransaction],
|
|
66
|
+
event_type: :"claim.updated",
|
|
67
|
+
outstanding_requirements: ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::outstanding_requirement],
|
|
68
|
+
reason: Lithic::Models::ClaimUpdatedWebhookEvent::reason,
|
|
69
|
+
status: Lithic::Models::ClaimUpdatedWebhookEvent::status,
|
|
70
|
+
submitted: Time?,
|
|
71
|
+
updated: Time
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
type disputed_transaction =
|
|
75
|
+
{ event_tokens: ::Array[String], transaction_token: String }
|
|
76
|
+
|
|
77
|
+
class DisputedTransaction < Lithic::Internal::Type::BaseModel
|
|
78
|
+
attr_accessor event_tokens: ::Array[String]
|
|
79
|
+
|
|
80
|
+
attr_accessor transaction_token: String
|
|
81
|
+
|
|
82
|
+
def initialize: (
|
|
83
|
+
event_tokens: ::Array[String],
|
|
84
|
+
transaction_token: String
|
|
85
|
+
) -> void
|
|
86
|
+
|
|
87
|
+
def to_hash: -> {
|
|
88
|
+
event_tokens: ::Array[String],
|
|
89
|
+
transaction_token: String
|
|
90
|
+
}
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
type outstanding_requirement = :QUESTIONNAIRE | :DOCUMENTS
|
|
94
|
+
|
|
95
|
+
module OutstandingRequirement
|
|
96
|
+
extend Lithic::Internal::Type::Enum
|
|
97
|
+
|
|
98
|
+
QUESTIONNAIRE: :QUESTIONNAIRE
|
|
99
|
+
DOCUMENTS: :DOCUMENTS
|
|
100
|
+
|
|
101
|
+
def self?.values: -> ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::outstanding_requirement]
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
type reason =
|
|
105
|
+
:CARD_NOT_PRESENT
|
|
106
|
+
| :CARD_LOST
|
|
107
|
+
| :CARD_STOLEN
|
|
108
|
+
| :CARD_NEVER_RECEIVED
|
|
109
|
+
| :COUNTERFEIT
|
|
110
|
+
| :ACCOUNT_TAKEOVER
|
|
111
|
+
| :PRODUCT_NOT_RECEIVED
|
|
112
|
+
| :NOT_AS_DESCRIBED
|
|
113
|
+
| :CREDIT_NOT_PROCESSED
|
|
114
|
+
| :CANCELLED_RECURRING
|
|
115
|
+
| :PAID_BY_OTHER_MEANS
|
|
116
|
+
| :DUPLICATE_CHARGE
|
|
117
|
+
| :LATE_PRESENTMENT
|
|
118
|
+
| :INCORRECT_TRANSACTION_CODE
|
|
119
|
+
| :NO_AUTHORIZATION
|
|
120
|
+
| :DECLINED
|
|
121
|
+
| :INCORRECT_AMOUNT
|
|
122
|
+
| :ATM_CASH_NOT_DISPENSED
|
|
123
|
+
| :ATM_DEPOSIT_WRONG_AMOUNT
|
|
124
|
+
| :ATM_DEPOSIT_MISSING
|
|
125
|
+
|
|
126
|
+
module Reason
|
|
127
|
+
extend Lithic::Internal::Type::Enum
|
|
128
|
+
|
|
129
|
+
CARD_NOT_PRESENT: :CARD_NOT_PRESENT
|
|
130
|
+
CARD_LOST: :CARD_LOST
|
|
131
|
+
CARD_STOLEN: :CARD_STOLEN
|
|
132
|
+
CARD_NEVER_RECEIVED: :CARD_NEVER_RECEIVED
|
|
133
|
+
COUNTERFEIT: :COUNTERFEIT
|
|
134
|
+
ACCOUNT_TAKEOVER: :ACCOUNT_TAKEOVER
|
|
135
|
+
PRODUCT_NOT_RECEIVED: :PRODUCT_NOT_RECEIVED
|
|
136
|
+
NOT_AS_DESCRIBED: :NOT_AS_DESCRIBED
|
|
137
|
+
CREDIT_NOT_PROCESSED: :CREDIT_NOT_PROCESSED
|
|
138
|
+
CANCELLED_RECURRING: :CANCELLED_RECURRING
|
|
139
|
+
PAID_BY_OTHER_MEANS: :PAID_BY_OTHER_MEANS
|
|
140
|
+
DUPLICATE_CHARGE: :DUPLICATE_CHARGE
|
|
141
|
+
LATE_PRESENTMENT: :LATE_PRESENTMENT
|
|
142
|
+
INCORRECT_TRANSACTION_CODE: :INCORRECT_TRANSACTION_CODE
|
|
143
|
+
NO_AUTHORIZATION: :NO_AUTHORIZATION
|
|
144
|
+
DECLINED: :DECLINED
|
|
145
|
+
INCORRECT_AMOUNT: :INCORRECT_AMOUNT
|
|
146
|
+
ATM_CASH_NOT_DISPENSED: :ATM_CASH_NOT_DISPENSED
|
|
147
|
+
ATM_DEPOSIT_WRONG_AMOUNT: :ATM_DEPOSIT_WRONG_AMOUNT
|
|
148
|
+
ATM_DEPOSIT_MISSING: :ATM_DEPOSIT_MISSING
|
|
149
|
+
|
|
150
|
+
def self?.values: -> ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::reason]
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
type status =
|
|
154
|
+
:INITIALIZING | :AWAITING_INFO | :SUBMITTED | :RESOLVED | :ABANDONED
|
|
155
|
+
|
|
156
|
+
module Status
|
|
157
|
+
extend Lithic::Internal::Type::Enum
|
|
158
|
+
|
|
159
|
+
INITIALIZING: :INITIALIZING
|
|
160
|
+
AWAITING_INFO: :AWAITING_INFO
|
|
161
|
+
SUBMITTED: :SUBMITTED
|
|
162
|
+
RESOLVED: :RESOLVED
|
|
163
|
+
ABANDONED: :ABANDONED
|
|
164
|
+
|
|
165
|
+
def self?.values: -> ::Array[Lithic::Models::ClaimUpdatedWebhookEvent::status]
|
|
166
|
+
end
|
|
167
|
+
end
|
|
168
|
+
end
|
|
169
|
+
end
|
data/sig/lithic/models/event.rbs
CHANGED
|
@@ -51,6 +51,11 @@ module Lithic
|
|
|
51
51
|
| :"card.renewed"
|
|
52
52
|
| :"card.shipped"
|
|
53
53
|
| :"card.updated"
|
|
54
|
+
| :"claim_document.accepted"
|
|
55
|
+
| :"claim_document.rejected"
|
|
56
|
+
| :"claim_document.uploaded"
|
|
57
|
+
| :"claim.created"
|
|
58
|
+
| :"claim.updated"
|
|
54
59
|
| :"digital_wallet.tokenization_result"
|
|
55
60
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
56
61
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -109,6 +114,11 @@ module Lithic
|
|
|
109
114
|
CARD_RENEWED: :"card.renewed"
|
|
110
115
|
CARD_SHIPPED: :"card.shipped"
|
|
111
116
|
CARD_UPDATED: :"card.updated"
|
|
117
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
118
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
119
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
120
|
+
CLAIM_CREATED: :"claim.created"
|
|
121
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
112
122
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
113
123
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
114
124
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -88,6 +88,11 @@ module Lithic
|
|
|
88
88
|
| :"card.renewed"
|
|
89
89
|
| :"card.shipped"
|
|
90
90
|
| :"card.updated"
|
|
91
|
+
| :"claim_document.accepted"
|
|
92
|
+
| :"claim_document.rejected"
|
|
93
|
+
| :"claim_document.uploaded"
|
|
94
|
+
| :"claim.created"
|
|
95
|
+
| :"claim.updated"
|
|
91
96
|
| :"digital_wallet.tokenization_result"
|
|
92
97
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
93
98
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -146,6 +151,11 @@ module Lithic
|
|
|
146
151
|
CARD_RENEWED: :"card.renewed"
|
|
147
152
|
CARD_SHIPPED: :"card.shipped"
|
|
148
153
|
CARD_UPDATED: :"card.updated"
|
|
154
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
155
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
156
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
157
|
+
CLAIM_CREATED: :"claim.created"
|
|
158
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
149
159
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
150
160
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
151
161
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -56,6 +56,11 @@ module Lithic
|
|
|
56
56
|
| :"card.renewed"
|
|
57
57
|
| :"card.shipped"
|
|
58
58
|
| :"card.updated"
|
|
59
|
+
| :"claim_document.accepted"
|
|
60
|
+
| :"claim_document.rejected"
|
|
61
|
+
| :"claim_document.uploaded"
|
|
62
|
+
| :"claim.created"
|
|
63
|
+
| :"claim.updated"
|
|
59
64
|
| :"digital_wallet.tokenization_result"
|
|
60
65
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
61
66
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -114,6 +119,11 @@ module Lithic
|
|
|
114
119
|
CARD_RENEWED: :"card.renewed"
|
|
115
120
|
CARD_SHIPPED: :"card.shipped"
|
|
116
121
|
CARD_UPDATED: :"card.updated"
|
|
122
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
123
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
124
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
125
|
+
CLAIM_CREATED: :"claim.created"
|
|
126
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
117
127
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
118
128
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
119
129
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -66,6 +66,11 @@ module Lithic
|
|
|
66
66
|
| :"card.renewed"
|
|
67
67
|
| :"card.shipped"
|
|
68
68
|
| :"card.updated"
|
|
69
|
+
| :"claim_document.accepted"
|
|
70
|
+
| :"claim_document.rejected"
|
|
71
|
+
| :"claim_document.uploaded"
|
|
72
|
+
| :"claim.created"
|
|
73
|
+
| :"claim.updated"
|
|
69
74
|
| :"digital_wallet.tokenization_result"
|
|
70
75
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
71
76
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -124,6 +129,11 @@ module Lithic
|
|
|
124
129
|
CARD_RENEWED: :"card.renewed"
|
|
125
130
|
CARD_SHIPPED: :"card.shipped"
|
|
126
131
|
CARD_UPDATED: :"card.updated"
|
|
132
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
133
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
134
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
135
|
+
CLAIM_CREATED: :"claim.created"
|
|
136
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
127
137
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
128
138
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
129
139
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -52,6 +52,11 @@ module Lithic
|
|
|
52
52
|
| :"card.renewed"
|
|
53
53
|
| :"card.shipped"
|
|
54
54
|
| :"card.updated"
|
|
55
|
+
| :"claim_document.accepted"
|
|
56
|
+
| :"claim_document.rejected"
|
|
57
|
+
| :"claim_document.uploaded"
|
|
58
|
+
| :"claim.created"
|
|
59
|
+
| :"claim.updated"
|
|
55
60
|
| :"digital_wallet.tokenization_result"
|
|
56
61
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
57
62
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -110,6 +115,11 @@ module Lithic
|
|
|
110
115
|
CARD_RENEWED: :"card.renewed"
|
|
111
116
|
CARD_SHIPPED: :"card.shipped"
|
|
112
117
|
CARD_UPDATED: :"card.updated"
|
|
118
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
119
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
120
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
121
|
+
CLAIM_CREATED: :"claim.created"
|
|
122
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
113
123
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
114
124
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
115
125
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -71,6 +71,11 @@ module Lithic
|
|
|
71
71
|
| :"card.renewed"
|
|
72
72
|
| :"card.shipped"
|
|
73
73
|
| :"card.updated"
|
|
74
|
+
| :"claim_document.accepted"
|
|
75
|
+
| :"claim_document.rejected"
|
|
76
|
+
| :"claim_document.uploaded"
|
|
77
|
+
| :"claim.created"
|
|
78
|
+
| :"claim.updated"
|
|
74
79
|
| :"digital_wallet.tokenization_result"
|
|
75
80
|
| :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
76
81
|
| :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -129,6 +134,11 @@ module Lithic
|
|
|
129
134
|
CARD_RENEWED: :"card.renewed"
|
|
130
135
|
CARD_SHIPPED: :"card.shipped"
|
|
131
136
|
CARD_UPDATED: :"card.updated"
|
|
137
|
+
CLAIM_DOCUMENT_ACCEPTED: :"claim_document.accepted"
|
|
138
|
+
CLAIM_DOCUMENT_REJECTED: :"claim_document.rejected"
|
|
139
|
+
CLAIM_DOCUMENT_UPLOADED: :"claim_document.uploaded"
|
|
140
|
+
CLAIM_CREATED: :"claim.created"
|
|
141
|
+
CLAIM_UPDATED: :"claim.updated"
|
|
132
142
|
DIGITAL_WALLET_TOKENIZATION_RESULT: :"digital_wallet.tokenization_result"
|
|
133
143
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE: :"digital_wallet.tokenization_two_factor_authentication_code"
|
|
134
144
|
DIGITAL_WALLET_TOKENIZATION_TWO_FACTOR_AUTHENTICATION_CODE_SENT: :"digital_wallet.tokenization_two_factor_authentication_code_sent"
|
|
@@ -23,6 +23,11 @@ module Lithic
|
|
|
23
23
|
| Lithic::CardTransactionUpdatedWebhookEvent
|
|
24
24
|
| Lithic::CardTransactionEnhancedDataCreatedWebhookEvent
|
|
25
25
|
| Lithic::CardTransactionEnhancedDataUpdatedWebhookEvent
|
|
26
|
+
| Lithic::ClaimCreatedWebhookEvent
|
|
27
|
+
| Lithic::ClaimUpdatedWebhookEvent
|
|
28
|
+
| Lithic::ClaimDocumentUploadedWebhookEvent
|
|
29
|
+
| Lithic::ClaimDocumentAcceptedWebhookEvent
|
|
30
|
+
| Lithic::ClaimDocumentRejectedWebhookEvent
|
|
26
31
|
| Lithic::DigitalWalletTokenizationApprovalRequestWebhookEvent
|
|
27
32
|
| Lithic::DigitalWalletTokenizationResultWebhookEvent
|
|
28
33
|
| Lithic::DigitalWalletTokenizationTwoFactorAuthenticationCodeWebhookEvent
|
data/sig/lithic/models.rbs
CHANGED
|
@@ -169,6 +169,16 @@ module Lithic
|
|
|
169
169
|
|
|
170
170
|
class CategoryDetails = Lithic::Models::CategoryDetails
|
|
171
171
|
|
|
172
|
+
class ClaimCreatedWebhookEvent = Lithic::Models::ClaimCreatedWebhookEvent
|
|
173
|
+
|
|
174
|
+
class ClaimDocumentAcceptedWebhookEvent = Lithic::Models::ClaimDocumentAcceptedWebhookEvent
|
|
175
|
+
|
|
176
|
+
class ClaimDocumentRejectedWebhookEvent = Lithic::Models::ClaimDocumentRejectedWebhookEvent
|
|
177
|
+
|
|
178
|
+
class ClaimDocumentUploadedWebhookEvent = Lithic::Models::ClaimDocumentUploadedWebhookEvent
|
|
179
|
+
|
|
180
|
+
class ClaimUpdatedWebhookEvent = Lithic::Models::ClaimUpdatedWebhookEvent
|
|
181
|
+
|
|
172
182
|
class ClientAPIStatusParams = Lithic::Models::ClientAPIStatusParams
|
|
173
183
|
|
|
174
184
|
module CreditProducts = Lithic::Models::CreditProducts
|
|
@@ -27,6 +27,11 @@ module Lithic
|
|
|
27
27
|
| Lithic::CardTransactionUpdatedWebhookEvent
|
|
28
28
|
| Lithic::CardTransactionEnhancedDataCreatedWebhookEvent
|
|
29
29
|
| Lithic::CardTransactionEnhancedDataUpdatedWebhookEvent
|
|
30
|
+
| Lithic::ClaimCreatedWebhookEvent
|
|
31
|
+
| Lithic::ClaimUpdatedWebhookEvent
|
|
32
|
+
| Lithic::ClaimDocumentUploadedWebhookEvent
|
|
33
|
+
| Lithic::ClaimDocumentAcceptedWebhookEvent
|
|
34
|
+
| Lithic::ClaimDocumentRejectedWebhookEvent
|
|
30
35
|
| Lithic::DigitalWalletTokenizationApprovalRequestWebhookEvent
|
|
31
36
|
| Lithic::DigitalWalletTokenizationResultWebhookEvent
|
|
32
37
|
| Lithic::DigitalWalletTokenizationTwoFactorAuthenticationCodeWebhookEvent
|
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.
|
|
4
|
+
version: 0.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Lithic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-06-
|
|
11
|
+
date: 2026-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|
|
@@ -214,6 +214,11 @@ files:
|
|
|
214
214
|
- lib/lithic/models/cards/financial_transaction_retrieve_params.rb
|
|
215
215
|
- lib/lithic/models/carrier.rb
|
|
216
216
|
- lib/lithic/models/category_details.rb
|
|
217
|
+
- lib/lithic/models/claim_created_webhook_event.rb
|
|
218
|
+
- lib/lithic/models/claim_document_accepted_webhook_event.rb
|
|
219
|
+
- lib/lithic/models/claim_document_rejected_webhook_event.rb
|
|
220
|
+
- lib/lithic/models/claim_document_uploaded_webhook_event.rb
|
|
221
|
+
- lib/lithic/models/claim_updated_webhook_event.rb
|
|
217
222
|
- lib/lithic/models/client_api_status_params.rb
|
|
218
223
|
- lib/lithic/models/credit_products/extended_credit.rb
|
|
219
224
|
- lib/lithic/models/credit_products/extended_credit_retrieve_params.rb
|
|
@@ -756,6 +761,11 @@ files:
|
|
|
756
761
|
- rbi/lithic/models/cards/financial_transaction_retrieve_params.rbi
|
|
757
762
|
- rbi/lithic/models/carrier.rbi
|
|
758
763
|
- rbi/lithic/models/category_details.rbi
|
|
764
|
+
- rbi/lithic/models/claim_created_webhook_event.rbi
|
|
765
|
+
- rbi/lithic/models/claim_document_accepted_webhook_event.rbi
|
|
766
|
+
- rbi/lithic/models/claim_document_rejected_webhook_event.rbi
|
|
767
|
+
- rbi/lithic/models/claim_document_uploaded_webhook_event.rbi
|
|
768
|
+
- rbi/lithic/models/claim_updated_webhook_event.rbi
|
|
759
769
|
- rbi/lithic/models/client_api_status_params.rbi
|
|
760
770
|
- rbi/lithic/models/credit_products/extended_credit.rbi
|
|
761
771
|
- rbi/lithic/models/credit_products/extended_credit_retrieve_params.rbi
|
|
@@ -1297,6 +1307,11 @@ files:
|
|
|
1297
1307
|
- sig/lithic/models/cards/financial_transaction_retrieve_params.rbs
|
|
1298
1308
|
- sig/lithic/models/carrier.rbs
|
|
1299
1309
|
- sig/lithic/models/category_details.rbs
|
|
1310
|
+
- sig/lithic/models/claim_created_webhook_event.rbs
|
|
1311
|
+
- sig/lithic/models/claim_document_accepted_webhook_event.rbs
|
|
1312
|
+
- sig/lithic/models/claim_document_rejected_webhook_event.rbs
|
|
1313
|
+
- sig/lithic/models/claim_document_uploaded_webhook_event.rbs
|
|
1314
|
+
- sig/lithic/models/claim_updated_webhook_event.rbs
|
|
1300
1315
|
- sig/lithic/models/client_api_status_params.rbs
|
|
1301
1316
|
- sig/lithic/models/credit_products/extended_credit.rbs
|
|
1302
1317
|
- sig/lithic/models/credit_products/extended_credit_retrieve_params.rbs
|