increase 1.306.0 → 1.308.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 +16 -0
- data/README.md +1 -1
- data/lib/increase/models/inbound_mail_item.rb +3 -3
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/inbound_mail_item.rbi +3 -3
- data/sig/increase/models/inbound_mail_item.rbs +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa41fb06e8efbca435c61867787ec2dfa32277e60b273a07515a38a6025d7a6c
|
|
4
|
+
data.tar.gz: e7fefb1c770770eeb2e0e81d2a2a5bae5a98611dd501ce9a6952fb4b53af7632
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8cfb0c362c4a5cc6a54c67c691fa225d508a1812eecaf52ed2d574237e3fea93ab912340dc12728115a3421a9408f733fc685f4a009a9937de30048e0c12ee3f
|
|
7
|
+
data.tar.gz: 016ff310f19aa649eb35341a92c23006f83f3376d73e5a1c8807baf9e64620b33ff95e15bdc09d1ff229c6f006677893e241151d07daf92aab47ffc8565b35cc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.308.0 (2026-04-28)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.307.0...v1.308.0](https://github.com/Increase/increase-ruby/compare/v1.307.0...v1.308.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([6fa981d](https://github.com/Increase/increase-ruby/commit/6fa981d1d86efa613341bc8a6b085df29e0c8658))
|
|
10
|
+
|
|
11
|
+
## 1.307.0 (2026-04-28)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.306.0...v1.307.0](https://github.com/Increase/increase-ruby/compare/v1.306.0...v1.307.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([38165a5](https://github.com/Increase/increase-ruby/commit/38165a56ed9f9070fd1d1cb153d14333e8e4974f))
|
|
18
|
+
|
|
3
19
|
## 1.306.0 (2026-04-27)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.305.0...v1.306.0](https://github.com/Increase/increase-ruby/compare/v1.305.0...v1.306.0)
|
data/README.md
CHANGED
|
@@ -32,8 +32,8 @@ module Increase
|
|
|
32
32
|
# @!attribute lockbox_address_id
|
|
33
33
|
# The identifier for the Lockbox Address that received this mail item.
|
|
34
34
|
#
|
|
35
|
-
# @return [String
|
|
36
|
-
required :lockbox_address_id, String
|
|
35
|
+
# @return [String]
|
|
36
|
+
required :lockbox_address_id, String
|
|
37
37
|
|
|
38
38
|
# @!attribute lockbox_recipient_id
|
|
39
39
|
# The identifier for the Lockbox Recipient that received this mail item. For mail
|
|
@@ -82,7 +82,7 @@ module Increase
|
|
|
82
82
|
#
|
|
83
83
|
# @param file_id [String] The identifier for the File containing the scanned contents of the mail item.
|
|
84
84
|
#
|
|
85
|
-
# @param lockbox_address_id [String
|
|
85
|
+
# @param lockbox_address_id [String] The identifier for the Lockbox Address that received this mail item.
|
|
86
86
|
#
|
|
87
87
|
# @param lockbox_recipient_id [String, nil] The identifier for the Lockbox Recipient that received this mail item. For mail
|
|
88
88
|
#
|
data/lib/increase/version.rb
CHANGED
|
@@ -26,7 +26,7 @@ module Increase
|
|
|
26
26
|
attr_accessor :file_id
|
|
27
27
|
|
|
28
28
|
# The identifier for the Lockbox Address that received this mail item.
|
|
29
|
-
sig { returns(
|
|
29
|
+
sig { returns(String) }
|
|
30
30
|
attr_accessor :lockbox_address_id
|
|
31
31
|
|
|
32
32
|
# The identifier for the Lockbox Recipient that received this mail item. For mail
|
|
@@ -63,7 +63,7 @@ module Increase
|
|
|
63
63
|
checks: T::Array[Increase::InboundMailItem::Check::OrHash],
|
|
64
64
|
created_at: Time,
|
|
65
65
|
file_id: String,
|
|
66
|
-
lockbox_address_id:
|
|
66
|
+
lockbox_address_id: String,
|
|
67
67
|
lockbox_recipient_id: T.nilable(String),
|
|
68
68
|
recipient_name: T.nilable(String),
|
|
69
69
|
rejection_reason:
|
|
@@ -106,7 +106,7 @@ module Increase
|
|
|
106
106
|
checks: T::Array[Increase::InboundMailItem::Check],
|
|
107
107
|
created_at: Time,
|
|
108
108
|
file_id: String,
|
|
109
|
-
lockbox_address_id:
|
|
109
|
+
lockbox_address_id: String,
|
|
110
110
|
lockbox_recipient_id: T.nilable(String),
|
|
111
111
|
recipient_name: T.nilable(String),
|
|
112
112
|
rejection_reason:
|
|
@@ -6,7 +6,7 @@ module Increase
|
|
|
6
6
|
checks: ::Array[Increase::InboundMailItem::Check],
|
|
7
7
|
created_at: Time,
|
|
8
8
|
file_id: String,
|
|
9
|
-
lockbox_address_id: String
|
|
9
|
+
lockbox_address_id: String,
|
|
10
10
|
lockbox_recipient_id: String?,
|
|
11
11
|
recipient_name: String?,
|
|
12
12
|
rejection_reason: Increase::Models::InboundMailItem::rejection_reason?,
|
|
@@ -23,7 +23,7 @@ module Increase
|
|
|
23
23
|
|
|
24
24
|
attr_accessor file_id: String
|
|
25
25
|
|
|
26
|
-
attr_accessor lockbox_address_id: String
|
|
26
|
+
attr_accessor lockbox_address_id: String
|
|
27
27
|
|
|
28
28
|
attr_accessor lockbox_recipient_id: String?
|
|
29
29
|
|
|
@@ -40,7 +40,7 @@ module Increase
|
|
|
40
40
|
checks: ::Array[Increase::InboundMailItem::Check],
|
|
41
41
|
created_at: Time,
|
|
42
42
|
file_id: String,
|
|
43
|
-
lockbox_address_id: String
|
|
43
|
+
lockbox_address_id: String,
|
|
44
44
|
lockbox_recipient_id: String?,
|
|
45
45
|
recipient_name: String?,
|
|
46
46
|
rejection_reason: Increase::Models::InboundMailItem::rejection_reason?,
|
|
@@ -53,7 +53,7 @@ module Increase
|
|
|
53
53
|
checks: ::Array[Increase::InboundMailItem::Check],
|
|
54
54
|
created_at: Time,
|
|
55
55
|
file_id: String,
|
|
56
|
-
lockbox_address_id: String
|
|
56
|
+
lockbox_address_id: String,
|
|
57
57
|
lockbox_recipient_id: String?,
|
|
58
58
|
recipient_name: String?,
|
|
59
59
|
rejection_reason: Increase::Models::InboundMailItem::rejection_reason?,
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.308.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|