increase 1.0.0 → 1.2.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.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +33 -0
  3. data/README.md +1 -1
  4. data/lib/increase/errors.rb +22 -0
  5. data/lib/increase/internal/type/array_of.rb +6 -1
  6. data/lib/increase/internal/type/base_model.rb +77 -25
  7. data/lib/increase/internal/type/boolean.rb +7 -1
  8. data/lib/increase/internal/type/converter.rb +42 -34
  9. data/lib/increase/internal/type/enum.rb +10 -2
  10. data/lib/increase/internal/type/file_input.rb +6 -1
  11. data/lib/increase/internal/type/hash_of.rb +6 -1
  12. data/lib/increase/internal/type/union.rb +12 -7
  13. data/lib/increase/internal/type/unknown.rb +7 -1
  14. data/lib/increase/models/card_payment.rb +13 -13
  15. data/lib/increase/models/check_transfer.rb +24 -1
  16. data/lib/increase/models/check_transfer_create_params.rb +26 -2
  17. data/lib/increase/models/document.rb +26 -1
  18. data/lib/increase/models/document_create_params.rb +25 -1
  19. data/lib/increase/models/document_list_params.rb +3 -0
  20. data/lib/increase/models/event.rb +22 -4
  21. data/lib/increase/models/event_list_params.rb +22 -4
  22. data/lib/increase/models/event_subscription.rb +22 -4
  23. data/lib/increase/models/event_subscription_create_params.rb +22 -4
  24. data/lib/increase/models/file.rb +3 -0
  25. data/lib/increase/models/file_list_params.rb +3 -0
  26. data/lib/increase/models/inbound_ach_transfer.rb +56 -26
  27. data/lib/increase/models/inbound_mail_item.rb +38 -1
  28. data/lib/increase/models/pending_transaction.rb +37 -44
  29. data/lib/increase/models/pending_transaction_list_params.rb +2 -2
  30. data/lib/increase/models/transaction.rb +41 -43
  31. data/lib/increase/models/transaction_list_params.rb +2 -2
  32. data/lib/increase/resources/documents.rb +3 -1
  33. data/lib/increase/version.rb +1 -1
  34. data/rbi/increase/errors.rbi +16 -0
  35. data/rbi/increase/internal/type/boolean.rbi +2 -0
  36. data/rbi/increase/internal/type/converter.rbi +15 -15
  37. data/rbi/increase/internal/type/union.rbi +5 -0
  38. data/rbi/increase/internal/type/unknown.rbi +2 -0
  39. data/rbi/increase/models/card_payment.rbi +18 -18
  40. data/rbi/increase/models/check_transfer.rbi +36 -0
  41. data/rbi/increase/models/check_transfer_create_params.rbi +63 -2
  42. data/rbi/increase/models/document.rbi +51 -0
  43. data/rbi/increase/models/document_create_params.rbi +53 -0
  44. data/rbi/increase/models/document_list_params.rbi +7 -0
  45. data/rbi/increase/models/event.rbi +46 -4
  46. data/rbi/increase/models/event_list_params.rbi +46 -4
  47. data/rbi/increase/models/event_subscription.rbi +46 -4
  48. data/rbi/increase/models/event_subscription_create_params.rbi +46 -4
  49. data/rbi/increase/models/file.rbi +4 -0
  50. data/rbi/increase/models/file_list_params.rbi +7 -0
  51. data/rbi/increase/models/inbound_ach_transfer.rbi +108 -52
  52. data/rbi/increase/models/inbound_mail_item.rbi +57 -0
  53. data/rbi/increase/models/pending_transaction.rbi +72 -77
  54. data/rbi/increase/models/pending_transaction_list_params.rbi +3 -3
  55. data/rbi/increase/models/transaction.rbi +76 -81
  56. data/rbi/increase/models/transaction_list_params.rbi +3 -3
  57. data/rbi/increase/resources/documents.rbi +4 -0
  58. data/sig/increase/errors.rbs +9 -0
  59. data/sig/increase/internal/type/converter.rbs +7 -1
  60. data/sig/increase/models/card_payment.rbs +3 -3
  61. data/sig/increase/models/check_transfer.rbs +15 -0
  62. data/sig/increase/models/check_transfer_create_params.rbs +19 -0
  63. data/sig/increase/models/document.rbs +19 -0
  64. data/sig/increase/models/document_create_params.rbs +24 -2
  65. data/sig/increase/models/document_list_params.rbs +4 -0
  66. data/sig/increase/models/event.rbs +28 -4
  67. data/sig/increase/models/event_list_params.rbs +28 -4
  68. data/sig/increase/models/event_subscription.rbs +28 -4
  69. data/sig/increase/models/event_subscription_create_params.rbs +28 -4
  70. data/sig/increase/models/file.rbs +4 -0
  71. data/sig/increase/models/file_list_params.rbs +4 -0
  72. data/sig/increase/models/inbound_ach_transfer.rbs +41 -19
  73. data/sig/increase/models/inbound_mail_item.rbs +28 -0
  74. data/sig/increase/models/pending_transaction.rbs +21 -21
  75. data/sig/increase/models/pending_transaction_list_params.rbs +3 -3
  76. data/sig/increase/models/transaction.rbs +21 -21
  77. data/sig/increase/models/transaction_list_params.rbs +3 -3
  78. data/sig/increase/resources/documents.rbs +1 -0
  79. metadata +2 -2
@@ -772,6 +772,11 @@ module Increase
772
772
  sig { returns(T.nilable(String)) }
773
773
  attr_accessor :note
774
774
 
775
+ # The payer of the check. This will be printed on the top-left portion of the
776
+ # check and defaults to the return address if unspecified.
777
+ sig { returns(T::Array[Increase::CheckTransfer::PhysicalCheck::Payer]) }
778
+ attr_accessor :payer
779
+
775
780
  # The name that will be printed on the check.
776
781
  sig { returns(String) }
777
782
  attr_accessor :recipient_name
@@ -826,6 +831,8 @@ module Increase
826
831
  Increase::CheckTransfer::PhysicalCheck::MailingAddress::OrHash,
827
832
  memo: T.nilable(String),
828
833
  note: T.nilable(String),
834
+ payer:
835
+ T::Array[Increase::CheckTransfer::PhysicalCheck::Payer::OrHash],
829
836
  recipient_name: String,
830
837
  return_address:
831
838
  T.nilable(
@@ -851,6 +858,9 @@ module Increase
851
858
  memo:,
852
859
  # The descriptor that will be printed on the letter included with the check.
853
860
  note:,
861
+ # The payer of the check. This will be printed on the top-left portion of the
862
+ # check and defaults to the return address if unspecified.
863
+ payer:,
854
864
  # The name that will be printed on the check.
855
865
  recipient_name:,
856
866
  # The return address to be printed on the check.
@@ -873,6 +883,7 @@ module Increase
873
883
  Increase::CheckTransfer::PhysicalCheck::MailingAddress,
874
884
  memo: T.nilable(String),
875
885
  note: T.nilable(String),
886
+ payer: T::Array[Increase::CheckTransfer::PhysicalCheck::Payer],
876
887
  recipient_name: String,
877
888
  return_address:
878
889
  T.nilable(
@@ -967,6 +978,31 @@ module Increase
967
978
  end
968
979
  end
969
980
 
981
+ class Payer < Increase::Internal::Type::BaseModel
982
+ OrHash =
983
+ T.type_alias do
984
+ T.any(
985
+ Increase::CheckTransfer::PhysicalCheck::Payer,
986
+ Increase::Internal::AnyHash
987
+ )
988
+ end
989
+
990
+ # The contents of the line.
991
+ sig { returns(String) }
992
+ attr_accessor :contents
993
+
994
+ sig { params(contents: String).returns(T.attached_class) }
995
+ def self.new(
996
+ # The contents of the line.
997
+ contents:
998
+ )
999
+ end
1000
+
1001
+ sig { override.returns({ contents: String }) }
1002
+ def to_hash
1003
+ end
1004
+ end
1005
+
970
1006
  class ReturnAddress < Increase::Internal::Type::BaseModel
971
1007
  OrHash =
972
1008
  T.type_alias do
@@ -231,6 +231,30 @@ module Increase
231
231
  sig { params(note: String).void }
232
232
  attr_writer :note
233
233
 
234
+ # The payer of the check. This will be printed on the top-left portion of the
235
+ # check and defaults to the return address if unspecified. This should be an array
236
+ # of up to 4 elements, each of which represents a line of the payer.
237
+ sig do
238
+ returns(
239
+ T.nilable(
240
+ T::Array[
241
+ Increase::CheckTransferCreateParams::PhysicalCheck::Payer
242
+ ]
243
+ )
244
+ )
245
+ end
246
+ attr_reader :payer
247
+
248
+ sig do
249
+ params(
250
+ payer:
251
+ T::Array[
252
+ Increase::CheckTransferCreateParams::PhysicalCheck::Payer::OrHash
253
+ ]
254
+ ).void
255
+ end
256
+ attr_writer :payer
257
+
234
258
  # The return address to be printed on the check. If omitted this will default to
235
259
  # an Increase-owned address that will mark checks as delivery failed and shred
236
260
  # them.
@@ -289,6 +313,10 @@ module Increase
289
313
  recipient_name: String,
290
314
  attachment_file_id: String,
291
315
  note: String,
316
+ payer:
317
+ T::Array[
318
+ Increase::CheckTransferCreateParams::PhysicalCheck::Payer::OrHash
319
+ ],
292
320
  return_address:
293
321
  Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress::OrHash,
294
322
  shipping_method:
@@ -309,6 +337,10 @@ module Increase
309
337
  attachment_file_id: nil,
310
338
  # The descriptor that will be printed on the letter included with the check.
311
339
  note: nil,
340
+ # The payer of the check. This will be printed on the top-left portion of the
341
+ # check and defaults to the return address if unspecified. This should be an array
342
+ # of up to 4 elements, each of which represents a line of the payer.
343
+ payer: nil,
312
344
  # The return address to be printed on the check. If omitted this will default to
313
345
  # an Increase-owned address that will mark checks as delivery failed and shred
314
346
  # them.
@@ -331,6 +363,10 @@ module Increase
331
363
  recipient_name: String,
332
364
  attachment_file_id: String,
333
365
  note: String,
366
+ payer:
367
+ T::Array[
368
+ Increase::CheckTransferCreateParams::PhysicalCheck::Payer
369
+ ],
334
370
  return_address:
335
371
  Increase::CheckTransferCreateParams::PhysicalCheck::ReturnAddress,
336
372
  shipping_method:
@@ -413,6 +449,31 @@ module Increase
413
449
  end
414
450
  end
415
451
 
452
+ class Payer < Increase::Internal::Type::BaseModel
453
+ OrHash =
454
+ T.type_alias do
455
+ T.any(
456
+ Increase::CheckTransferCreateParams::PhysicalCheck::Payer,
457
+ Increase::Internal::AnyHash
458
+ )
459
+ end
460
+
461
+ # The contents of the line.
462
+ sig { returns(String) }
463
+ attr_accessor :contents
464
+
465
+ sig { params(contents: String).returns(T.attached_class) }
466
+ def self.new(
467
+ # The contents of the line.
468
+ contents:
469
+ )
470
+ end
471
+
472
+ sig { override.returns({ contents: String }) }
473
+ def to_hash
474
+ end
475
+ end
476
+
416
477
  class ReturnAddress < Increase::Internal::Type::BaseModel
417
478
  OrHash =
418
479
  T.type_alias do
@@ -545,7 +606,7 @@ module Increase
545
606
 
546
607
  # The pay-to name you will print on the check. If provided, this is used for
547
608
  # [Positive Pay](/documentation/positive-pay). If this is omitted, Increase will
548
- # be unable to validate the payee name when the check is deposited.
609
+ # be unable to validate the payer name when the check is deposited.
549
610
  sig { returns(T.nilable(String)) }
550
611
  attr_reader :recipient_name
551
612
 
@@ -559,7 +620,7 @@ module Increase
559
620
  def self.new(
560
621
  # The pay-to name you will print on the check. If provided, this is used for
561
622
  # [Positive Pay](/documentation/positive-pay). If this is omitted, Increase will
562
- # be unable to validate the payee name when the check is deposited.
623
+ # be unable to validate the payer name when the check is deposited.
563
624
  recipient_name: nil
564
625
  )
565
626
  end
@@ -39,6 +39,18 @@ module Increase
39
39
  sig { returns(String) }
40
40
  attr_accessor :file_id
41
41
 
42
+ # Properties of a funding instructions document.
43
+ sig { returns(T.nilable(Increase::Document::FundingInstructions)) }
44
+ attr_reader :funding_instructions
45
+
46
+ sig do
47
+ params(
48
+ funding_instructions:
49
+ T.nilable(Increase::Document::FundingInstructions::OrHash)
50
+ ).void
51
+ end
52
+ attr_writer :funding_instructions
53
+
42
54
  # The idempotency key you chose for this object. This value is unique across
43
55
  # Increase and is used to ensure that a request is only processed once. Learn more
44
56
  # about [idempotency](https://increase.com/documentation/idempotency-keys).
@@ -61,6 +73,8 @@ module Increase
61
73
  created_at: Time,
62
74
  entity_id: T.nilable(String),
63
75
  file_id: String,
76
+ funding_instructions:
77
+ T.nilable(Increase::Document::FundingInstructions::OrHash),
64
78
  idempotency_key: T.nilable(String),
65
79
  type: Increase::Document::Type::OrSymbol
66
80
  ).returns(T.attached_class)
@@ -79,6 +93,8 @@ module Increase
79
93
  entity_id:,
80
94
  # The identifier of the File containing the Document's contents.
81
95
  file_id:,
96
+ # Properties of a funding instructions document.
97
+ funding_instructions:,
82
98
  # The idempotency key you chose for this object. This value is unique across
83
99
  # Increase and is used to ensure that a request is only processed once. Learn more
84
100
  # about [idempotency](https://increase.com/documentation/idempotency-keys).
@@ -99,6 +115,8 @@ module Increase
99
115
  created_at: Time,
100
116
  entity_id: T.nilable(String),
101
117
  file_id: String,
118
+ funding_instructions:
119
+ T.nilable(Increase::Document::FundingInstructions),
102
120
  idempotency_key: T.nilable(String),
103
121
  type: Increase::Document::Type::TaggedSymbol
104
122
  }
@@ -170,6 +188,13 @@ module Increase
170
188
  Increase::Document::Category::TaggedSymbol
171
189
  )
172
190
 
191
+ # Funding instructions.
192
+ FUNDING_INSTRUCTIONS =
193
+ T.let(
194
+ :funding_instructions,
195
+ Increase::Document::Category::TaggedSymbol
196
+ )
197
+
173
198
  sig do
174
199
  override.returns(T::Array[Increase::Document::Category::TaggedSymbol])
175
200
  end
@@ -177,6 +202,32 @@ module Increase
177
202
  end
178
203
  end
179
204
 
205
+ class FundingInstructions < Increase::Internal::Type::BaseModel
206
+ OrHash =
207
+ T.type_alias do
208
+ T.any(
209
+ Increase::Document::FundingInstructions,
210
+ Increase::Internal::AnyHash
211
+ )
212
+ end
213
+
214
+ # The identifier of the Account Number the document was generated for.
215
+ sig { returns(String) }
216
+ attr_accessor :account_number_id
217
+
218
+ # Properties of a funding instructions document.
219
+ sig { params(account_number_id: String).returns(T.attached_class) }
220
+ def self.new(
221
+ # The identifier of the Account Number the document was generated for.
222
+ account_number_id:
223
+ )
224
+ end
225
+
226
+ sig { override.returns({ account_number_id: String }) }
227
+ def to_hash
228
+ end
229
+ end
230
+
180
231
  # A constant representing the object's type. For this resource it will always be
181
232
  # `document`.
182
233
  module Type
@@ -31,11 +31,27 @@ module Increase
31
31
  end
32
32
  attr_writer :account_verification_letter
33
33
 
34
+ # Funding instructions.
35
+ sig do
36
+ returns(T.nilable(Increase::DocumentCreateParams::FundingInstructions))
37
+ end
38
+ attr_reader :funding_instructions
39
+
40
+ sig do
41
+ params(
42
+ funding_instructions:
43
+ Increase::DocumentCreateParams::FundingInstructions::OrHash
44
+ ).void
45
+ end
46
+ attr_writer :funding_instructions
47
+
34
48
  sig do
35
49
  params(
36
50
  category: Increase::DocumentCreateParams::Category::OrSymbol,
37
51
  account_verification_letter:
38
52
  Increase::DocumentCreateParams::AccountVerificationLetter::OrHash,
53
+ funding_instructions:
54
+ Increase::DocumentCreateParams::FundingInstructions::OrHash,
39
55
  request_options: Increase::RequestOptions::OrHash
40
56
  ).returns(T.attached_class)
41
57
  end
@@ -44,6 +60,8 @@ module Increase
44
60
  category:,
45
61
  # An account verification letter.
46
62
  account_verification_letter: nil,
63
+ # Funding instructions.
64
+ funding_instructions: nil,
47
65
  request_options: {}
48
66
  )
49
67
  end
@@ -54,6 +72,8 @@ module Increase
54
72
  category: Increase::DocumentCreateParams::Category::OrSymbol,
55
73
  account_verification_letter:
56
74
  Increase::DocumentCreateParams::AccountVerificationLetter,
75
+ funding_instructions:
76
+ Increase::DocumentCreateParams::FundingInstructions,
57
77
  request_options: Increase::RequestOptions
58
78
  }
59
79
  )
@@ -78,6 +98,13 @@ module Increase
78
98
  Increase::DocumentCreateParams::Category::TaggedSymbol
79
99
  )
80
100
 
101
+ # Funding instructions.
102
+ FUNDING_INSTRUCTIONS =
103
+ T.let(
104
+ :funding_instructions,
105
+ Increase::DocumentCreateParams::Category::TaggedSymbol
106
+ )
107
+
81
108
  sig do
82
109
  override.returns(
83
110
  T::Array[Increase::DocumentCreateParams::Category::TaggedSymbol]
@@ -127,6 +154,32 @@ module Increase
127
154
  def to_hash
128
155
  end
129
156
  end
157
+
158
+ class FundingInstructions < Increase::Internal::Type::BaseModel
159
+ OrHash =
160
+ T.type_alias do
161
+ T.any(
162
+ Increase::DocumentCreateParams::FundingInstructions,
163
+ Increase::Internal::AnyHash
164
+ )
165
+ end
166
+
167
+ # The Account Number the funding instructions should be generated for.
168
+ sig { returns(String) }
169
+ attr_accessor :account_number_id
170
+
171
+ # Funding instructions.
172
+ sig { params(account_number_id: String).returns(T.attached_class) }
173
+ def self.new(
174
+ # The Account Number the funding instructions should be generated for.
175
+ account_number_id:
176
+ )
177
+ end
178
+
179
+ sig { override.returns({ account_number_id: String }) }
180
+ def to_hash
181
+ end
182
+ end
130
183
  end
131
184
  end
132
185
  end
@@ -201,6 +201,13 @@ module Increase
201
201
  Increase::DocumentListParams::Category::In::TaggedSymbol
202
202
  )
203
203
 
204
+ # Funding instructions.
205
+ FUNDING_INSTRUCTIONS =
206
+ T.let(
207
+ :funding_instructions,
208
+ Increase::DocumentListParams::Category::In::TaggedSymbol
209
+ )
210
+
204
211
  sig do
205
212
  override.returns(
206
213
  T::Array[Increase::DocumentListParams::Category::In::TaggedSymbol]
@@ -493,34 +493,62 @@ module Increase
493
493
  Increase::Event::Category::TaggedSymbol
494
494
  )
495
495
 
496
- # Occurs whenever an Outbound Card Push Transfer is created.
496
+ # Occurs whenever a Card Push Transfer is created.
497
497
  OUTBOUND_CARD_PUSH_TRANSFER_CREATED =
498
498
  T.let(
499
499
  :"outbound_card_push_transfer.created",
500
500
  Increase::Event::Category::TaggedSymbol
501
501
  )
502
502
 
503
- # Occurs whenever an Outbound Card Push Transfer is updated.
503
+ # Occurs whenever a Card Push Transfer is updated.
504
504
  OUTBOUND_CARD_PUSH_TRANSFER_UPDATED =
505
505
  T.let(
506
506
  :"outbound_card_push_transfer.updated",
507
507
  Increase::Event::Category::TaggedSymbol
508
508
  )
509
509
 
510
- # Occurs whenever an Outbound Card Validation is created.
510
+ # Occurs whenever a Card Validation is created.
511
511
  OUTBOUND_CARD_VALIDATION_CREATED =
512
512
  T.let(
513
513
  :"outbound_card_validation.created",
514
514
  Increase::Event::Category::TaggedSymbol
515
515
  )
516
516
 
517
- # Occurs whenever an Outbound Card Validation is updated.
517
+ # Occurs whenever a Card Validation is updated.
518
518
  OUTBOUND_CARD_VALIDATION_UPDATED =
519
519
  T.let(
520
520
  :"outbound_card_validation.updated",
521
521
  Increase::Event::Category::TaggedSymbol
522
522
  )
523
523
 
524
+ # Occurs whenever a Card Push Transfer is created.
525
+ CARD_PUSH_TRANSFER_CREATED =
526
+ T.let(
527
+ :"card_push_transfer.created",
528
+ Increase::Event::Category::TaggedSymbol
529
+ )
530
+
531
+ # Occurs whenever a Card Push Transfer is updated.
532
+ CARD_PUSH_TRANSFER_UPDATED =
533
+ T.let(
534
+ :"card_push_transfer.updated",
535
+ Increase::Event::Category::TaggedSymbol
536
+ )
537
+
538
+ # Occurs whenever a Card Validation is created.
539
+ CARD_VALIDATION_CREATED =
540
+ T.let(
541
+ :"card_validation.created",
542
+ Increase::Event::Category::TaggedSymbol
543
+ )
544
+
545
+ # Occurs whenever a Card Validation is updated.
546
+ CARD_VALIDATION_UPDATED =
547
+ T.let(
548
+ :"card_validation.updated",
549
+ Increase::Event::Category::TaggedSymbol
550
+ )
551
+
524
552
  # Occurs whenever a Pending Transaction is created.
525
553
  PENDING_TRANSACTION_CREATED =
526
554
  T.let(
@@ -640,6 +668,20 @@ module Increase
640
668
  Increase::Event::Category::TaggedSymbol
641
669
  )
642
670
 
671
+ # Occurs whenever a Swift Transfer is created.
672
+ SWIFT_TRANSFER_CREATED =
673
+ T.let(
674
+ :"swift_transfer.created",
675
+ Increase::Event::Category::TaggedSymbol
676
+ )
677
+
678
+ # Occurs whenever a Swift Transfer is updated.
679
+ SWIFT_TRANSFER_UPDATED =
680
+ T.let(
681
+ :"swift_transfer.updated",
682
+ Increase::Event::Category::TaggedSymbol
683
+ )
684
+
643
685
  # Occurs whenever a Transaction is created.
644
686
  TRANSACTION_CREATED =
645
687
  T.let(:"transaction.created", Increase::Event::Category::TaggedSymbol)
@@ -592,34 +592,62 @@ module Increase
592
592
  Increase::EventListParams::Category::In::TaggedSymbol
593
593
  )
594
594
 
595
- # Occurs whenever an Outbound Card Push Transfer is created.
595
+ # Occurs whenever a Card Push Transfer is created.
596
596
  OUTBOUND_CARD_PUSH_TRANSFER_CREATED =
597
597
  T.let(
598
598
  :"outbound_card_push_transfer.created",
599
599
  Increase::EventListParams::Category::In::TaggedSymbol
600
600
  )
601
601
 
602
- # Occurs whenever an Outbound Card Push Transfer is updated.
602
+ # Occurs whenever a Card Push Transfer is updated.
603
603
  OUTBOUND_CARD_PUSH_TRANSFER_UPDATED =
604
604
  T.let(
605
605
  :"outbound_card_push_transfer.updated",
606
606
  Increase::EventListParams::Category::In::TaggedSymbol
607
607
  )
608
608
 
609
- # Occurs whenever an Outbound Card Validation is created.
609
+ # Occurs whenever a Card Validation is created.
610
610
  OUTBOUND_CARD_VALIDATION_CREATED =
611
611
  T.let(
612
612
  :"outbound_card_validation.created",
613
613
  Increase::EventListParams::Category::In::TaggedSymbol
614
614
  )
615
615
 
616
- # Occurs whenever an Outbound Card Validation is updated.
616
+ # Occurs whenever a Card Validation is updated.
617
617
  OUTBOUND_CARD_VALIDATION_UPDATED =
618
618
  T.let(
619
619
  :"outbound_card_validation.updated",
620
620
  Increase::EventListParams::Category::In::TaggedSymbol
621
621
  )
622
622
 
623
+ # Occurs whenever a Card Push Transfer is created.
624
+ CARD_PUSH_TRANSFER_CREATED =
625
+ T.let(
626
+ :"card_push_transfer.created",
627
+ Increase::EventListParams::Category::In::TaggedSymbol
628
+ )
629
+
630
+ # Occurs whenever a Card Push Transfer is updated.
631
+ CARD_PUSH_TRANSFER_UPDATED =
632
+ T.let(
633
+ :"card_push_transfer.updated",
634
+ Increase::EventListParams::Category::In::TaggedSymbol
635
+ )
636
+
637
+ # Occurs whenever a Card Validation is created.
638
+ CARD_VALIDATION_CREATED =
639
+ T.let(
640
+ :"card_validation.created",
641
+ Increase::EventListParams::Category::In::TaggedSymbol
642
+ )
643
+
644
+ # Occurs whenever a Card Validation is updated.
645
+ CARD_VALIDATION_UPDATED =
646
+ T.let(
647
+ :"card_validation.updated",
648
+ Increase::EventListParams::Category::In::TaggedSymbol
649
+ )
650
+
623
651
  # Occurs whenever a Pending Transaction is created.
624
652
  PENDING_TRANSACTION_CREATED =
625
653
  T.let(
@@ -739,6 +767,20 @@ module Increase
739
767
  Increase::EventListParams::Category::In::TaggedSymbol
740
768
  )
741
769
 
770
+ # Occurs whenever a Swift Transfer is created.
771
+ SWIFT_TRANSFER_CREATED =
772
+ T.let(
773
+ :"swift_transfer.created",
774
+ Increase::EventListParams::Category::In::TaggedSymbol
775
+ )
776
+
777
+ # Occurs whenever a Swift Transfer is updated.
778
+ SWIFT_TRANSFER_UPDATED =
779
+ T.let(
780
+ :"swift_transfer.updated",
781
+ Increase::EventListParams::Category::In::TaggedSymbol
782
+ )
783
+
742
784
  # Occurs whenever a Transaction is created.
743
785
  TRANSACTION_CREATED =
744
786
  T.let(
@@ -576,34 +576,62 @@ module Increase
576
576
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
577
577
  )
578
578
 
579
- # Occurs whenever an Outbound Card Push Transfer is created.
579
+ # Occurs whenever a Card Push Transfer is created.
580
580
  OUTBOUND_CARD_PUSH_TRANSFER_CREATED =
581
581
  T.let(
582
582
  :"outbound_card_push_transfer.created",
583
583
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
584
584
  )
585
585
 
586
- # Occurs whenever an Outbound Card Push Transfer is updated.
586
+ # Occurs whenever a Card Push Transfer is updated.
587
587
  OUTBOUND_CARD_PUSH_TRANSFER_UPDATED =
588
588
  T.let(
589
589
  :"outbound_card_push_transfer.updated",
590
590
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
591
591
  )
592
592
 
593
- # Occurs whenever an Outbound Card Validation is created.
593
+ # Occurs whenever a Card Validation is created.
594
594
  OUTBOUND_CARD_VALIDATION_CREATED =
595
595
  T.let(
596
596
  :"outbound_card_validation.created",
597
597
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
598
598
  )
599
599
 
600
- # Occurs whenever an Outbound Card Validation is updated.
600
+ # Occurs whenever a Card Validation is updated.
601
601
  OUTBOUND_CARD_VALIDATION_UPDATED =
602
602
  T.let(
603
603
  :"outbound_card_validation.updated",
604
604
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
605
605
  )
606
606
 
607
+ # Occurs whenever a Card Push Transfer is created.
608
+ CARD_PUSH_TRANSFER_CREATED =
609
+ T.let(
610
+ :"card_push_transfer.created",
611
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
612
+ )
613
+
614
+ # Occurs whenever a Card Push Transfer is updated.
615
+ CARD_PUSH_TRANSFER_UPDATED =
616
+ T.let(
617
+ :"card_push_transfer.updated",
618
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
619
+ )
620
+
621
+ # Occurs whenever a Card Validation is created.
622
+ CARD_VALIDATION_CREATED =
623
+ T.let(
624
+ :"card_validation.created",
625
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
626
+ )
627
+
628
+ # Occurs whenever a Card Validation is updated.
629
+ CARD_VALIDATION_UPDATED =
630
+ T.let(
631
+ :"card_validation.updated",
632
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
633
+ )
634
+
607
635
  # Occurs whenever a Pending Transaction is created.
608
636
  PENDING_TRANSACTION_CREATED =
609
637
  T.let(
@@ -723,6 +751,20 @@ module Increase
723
751
  Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
724
752
  )
725
753
 
754
+ # Occurs whenever a Swift Transfer is created.
755
+ SWIFT_TRANSFER_CREATED =
756
+ T.let(
757
+ :"swift_transfer.created",
758
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
759
+ )
760
+
761
+ # Occurs whenever a Swift Transfer is updated.
762
+ SWIFT_TRANSFER_UPDATED =
763
+ T.let(
764
+ :"swift_transfer.updated",
765
+ Increase::EventSubscription::SelectedEventCategory::TaggedSymbol
766
+ )
767
+
726
768
  # Occurs whenever a Transaction is created.
727
769
  TRANSACTION_CREATED =
728
770
  T.let(