vitable-connect 4.0.0 → 4.1.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/.fern/metadata.json +2 -2
- data/changelog.md +4 -0
- data/lib/VitableConnect/client.rb +1 -1
- data/lib/VitableConnect/types/member_enrollment.rb +2 -0
- data/lib/VitableConnect/version.rb +1 -1
- data/lib/VitableConnect.rb +1 -1
- 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: eaf8e71d5533b31ea104a6541c9224500c7cc101bc726e09b02f6b88b550fad7
|
|
4
|
+
data.tar.gz: 6ecaee8310e6f55cd8bda3c8d715b561a38a5683063c53b1f12168964ccfa7fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1f054f2400eda17108e968065669baf0a270bf42576b1331ec72de1e98e6f7049245a215003eb8172c69e3933bd0fad59c069ed72f0b9534f27372e04c3c75b
|
|
7
|
+
data.tar.gz: 44205871b34837d7eb7091be6e71a3026895faff6c2413ca9e45109df7c9a30ace597d9ac1da224099b1c24a46744f431d461d0f9d111d649aaba7bdc4473b0a
|
data/.fern/metadata.json
CHANGED
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
"offsetSemantics": "page-index",
|
|
8
8
|
"respectAuthSchemeNames": true
|
|
9
9
|
},
|
|
10
|
-
"originGitCommit": "
|
|
10
|
+
"originGitCommit": "781feaa3950b4ba9c610cacee97069761ab8ab73",
|
|
11
11
|
"originGitCommitIsDirty": false,
|
|
12
12
|
"invokedBy": "ci",
|
|
13
13
|
"requestedVersion": "AUTO",
|
|
14
14
|
"ciProvider": "gitlab",
|
|
15
|
-
"sdkVersion": "4.
|
|
15
|
+
"sdkVersion": "4.1.0"
|
|
16
16
|
}
|
data/changelog.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 4.1.0 - 2026-09-22
|
|
2
|
+
### Added
|
|
3
|
+
* **`VitableConnect::Types::MemberEnrollment#enrolled_date`** — new nullable `String` field exposing the date a member was enrolled, available alongside the existing `issued_date` and `enrollment_window_start` fields.
|
|
4
|
+
|
|
1
5
|
## 4.0.0 - 2026-09-16
|
|
2
6
|
### Breaking Changes
|
|
3
7
|
* **`VitableConnect::Organizations::Client#create`** has been removed. Any calls to `client.organizations.create(...)` will raise `NoMethodError`; remove or replace these call sites.
|
|
@@ -11,7 +11,7 @@ module VitableConnect
|
|
|
11
11
|
@raw_client = VitableConnect::Internal::Http::RawClient.new(
|
|
12
12
|
base_url: base_url || VitableConnect::Environment::PRODUCTION,
|
|
13
13
|
headers: {
|
|
14
|
-
"User-Agent" => "vitable-connect/4.
|
|
14
|
+
"User-Agent" => "vitable-connect/4.1.0",
|
|
15
15
|
"X-Fern-Language" => "Ruby",
|
|
16
16
|
Authorization: "Bearer #{api_key}"
|
|
17
17
|
},
|
|
@@ -42,6 +42,8 @@ module VitableConnect
|
|
|
42
42
|
|
|
43
43
|
field :issued_date, -> { String }, optional: false, nullable: false
|
|
44
44
|
|
|
45
|
+
field :enrolled_date, -> { String }, optional: false, nullable: true
|
|
46
|
+
|
|
45
47
|
field :enrollment_window_start, -> { String }, optional: false, nullable: false
|
|
46
48
|
|
|
47
49
|
field :enrollment_window_end, -> { String }, optional: true, nullable: false
|
data/lib/VitableConnect.rb
CHANGED
|
@@ -187,10 +187,10 @@ require_relative "VitableConnect/types/update_employer_address_input"
|
|
|
187
187
|
require_relative "VitableConnect/types/webhook_event"
|
|
188
188
|
require_relative "VitableConnect/types/webhook_event_list_response"
|
|
189
189
|
require_relative "VitableConnect/types/webhook_event_response"
|
|
190
|
+
require_relative "VitableConnect/types/x_vitable_organization"
|
|
190
191
|
require_relative "VitableConnect/types/employee_id"
|
|
191
192
|
require_relative "VitableConnect/types/limit"
|
|
192
193
|
require_relative "VitableConnect/types/page"
|
|
193
|
-
require_relative "VitableConnect/types/x_vitable_organization"
|
|
194
194
|
require_relative "VitableConnect/types/include_cancelled"
|
|
195
195
|
require_relative "VitableConnect/types/search"
|
|
196
196
|
require_relative "VitableConnect/types/employer_id"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vitable-connect
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- VitableConnect
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-09-
|
|
11
|
+
date: 2026-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: The VitableConnect Ruby library provides convenient access to the VitableConnect
|
|
14
14
|
API from Ruby.
|