Skip to content

Commit 8e37773

Browse files
authored
Merge pull request #8 from Vitable-Inc/release-please--branches--main--changes--next
release: 0.3.0
2 parents bba2029 + 7aa2ac7 commit 8e37773

File tree

11 files changed

+53
-13
lines changed

11 files changed

+53
-13
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.prism.log
2+
.stdy.log
23
_dev
34

45
__pycache__

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.2.0"
2+
".": "0.3.0"
33
}

.stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 14
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/vitable%2Fvitable-connect-96aa195ab5ff283707620b70fbed7282883a1e1753459f0a694d01d6f19f50e0.yml
3-
openapi_spec_hash: b2f25ba22786e88520ed918b8b5120a5
4-
config_hash: c07379344c812867e0b75b41995c76c2
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/vitable%2Fvitable-connect-96179d55665afbff5aca73845920de0597dfcc151a97fabf93a4cc818d7859eb.yml
3+
openapi_spec_hash: 4eb9796fe4adb7074b6df7ffdc6caa8d
4+
config_hash: 5c13804b8ff0767820e2d2422eaafa84

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.3.0 (2026-03-24)
4+
5+
Full Changelog: [v0.2.0...v0.3.0](https://github.com/Vitable-Inc/vitable-connect-python/compare/v0.2.0...v0.3.0)
6+
7+
### Features
8+
9+
* **api:** api update ([79cb703](https://github.com/Vitable-Inc/vitable-connect-python/commit/79cb7035cf622d851378bd2ddef1522aa47a0982))
10+
11+
12+
### Chores
13+
14+
* **internal:** update gitignore ([46e8e0a](https://github.com/Vitable-Inc/vitable-connect-python/commit/46e8e0a89c1202cbd204fac742eee4418bf29957))
15+
316
## 0.2.0 (2026-03-20)
417

518
Full Changelog: [v0.1.2...v0.2.0](https://github.com/Vitable-Inc/vitable-connect-python/compare/v0.1.2...v0.2.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vitable_connect"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "The official Python library for the vitable-connect API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/vitable_connect/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "vitable_connect"
4-
__version__ = "0.2.0" # x-release-please-version
4+
__version__ = "0.3.0" # x-release-please-version

src/vitable_connect/resources/employers.py

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
from typing import Iterable
5+
from typing import Iterable, Optional
66

77
import httpx
88

@@ -62,6 +62,8 @@ def create(
6262
email: str,
6363
legal_name: str,
6464
name: str,
65+
phone_number: Optional[str] | Omit = omit,
66+
reference_id: Optional[str] | Omit = omit,
6567
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6668
# The extra values given here take precedence over values defined on the client or passed to this method.
6769
extra_headers: Headers | None = None,
@@ -86,6 +88,10 @@ def create(
8688
8789
name: Employer display name
8890
91+
phone_number: Employer phone number (10-digit US format, e.g. 5551234567)
92+
93+
reference_id: External reference ID for this employer
94+
8995
extra_headers: Send extra headers
9096
9197
extra_query: Add additional query parameters to the request
@@ -103,6 +109,8 @@ def create(
103109
"email": email,
104110
"legal_name": legal_name,
105111
"name": name,
112+
"phone_number": phone_number,
113+
"reference_id": reference_id,
106114
},
107115
employer_create_params.EmployerCreateParams,
108116
),
@@ -372,6 +380,8 @@ async def create(
372380
email: str,
373381
legal_name: str,
374382
name: str,
383+
phone_number: Optional[str] | Omit = omit,
384+
reference_id: Optional[str] | Omit = omit,
375385
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
376386
# The extra values given here take precedence over values defined on the client or passed to this method.
377387
extra_headers: Headers | None = None,
@@ -396,6 +406,10 @@ async def create(
396406
397407
name: Employer display name
398408
409+
phone_number: Employer phone number (10-digit US format, e.g. 5551234567)
410+
411+
reference_id: External reference ID for this employer
412+
399413
extra_headers: Send extra headers
400414
401415
extra_query: Add additional query parameters to the request
@@ -413,6 +427,8 @@ async def create(
413427
"email": email,
414428
"legal_name": legal_name,
415429
"name": name,
430+
"phone_number": phone_number,
431+
"reference_id": reference_id,
416432
},
417433
employer_create_params.EmployerCreateParams,
418434
),

src/vitable_connect/resources/webhook_events.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def list(
9999
"employee.eligibility_terminated",
100100
"employee.deactivated",
101101
"payroll_deduction.created",
102-
"plan_year.eligibility_policy_created",
102+
"employer.eligibility_policy_created",
103103
]
104104
| Omit = omit,
105105
limit: int | Omit = omit,
@@ -129,7 +129,7 @@ def list(
129129
- `employee.eligibility_terminated` - Employee Eligibility Terminated
130130
- `employee.deactivated` - Employee Deactivated
131131
- `payroll_deduction.created` - Payroll Deduction Created
132-
- `plan_year.eligibility_policy_created` - Plan Year Eligibility Policy Created
132+
- `employer.eligibility_policy_created` - Employer Eligibility Policy Created
133133
134134
limit: Items per page (default: 20, max: 100)
135135
@@ -282,7 +282,7 @@ def list(
282282
"employee.eligibility_terminated",
283283
"employee.deactivated",
284284
"payroll_deduction.created",
285-
"plan_year.eligibility_policy_created",
285+
"employer.eligibility_policy_created",
286286
]
287287
| Omit = omit,
288288
limit: int | Omit = omit,
@@ -312,7 +312,7 @@ def list(
312312
- `employee.eligibility_terminated` - Employee Eligibility Terminated
313313
- `employee.deactivated` - Employee Deactivated
314314
- `payroll_deduction.created` - Payroll Deduction Created
315-
- `plan_year.eligibility_policy_created` - Plan Year Eligibility Policy Created
315+
- `employer.eligibility_policy_created` - Employer Eligibility Policy Created
316316
317317
limit: Items per page (default: 20, max: 100)
318318

src/vitable_connect/types/employer_create_params.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ class EmployerCreateParams(TypedDict, total=False):
2424
name: Required[str]
2525
"""Employer display name"""
2626

27+
phone_number: Optional[str]
28+
"""Employer phone number (10-digit US format, e.g. 5551234567)"""
29+
30+
reference_id: Optional[str]
31+
"""External reference ID for this employer"""
32+
2733

2834
class Address(TypedDict, total=False):
2935
"""Employer address"""

src/vitable_connect/types/webhook_event_list_params.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class WebhookEventListParams(TypedDict, total=False):
2727
"employee.eligibility_terminated",
2828
"employee.deactivated",
2929
"payroll_deduction.created",
30-
"plan_year.eligibility_policy_created",
30+
"employer.eligibility_policy_created",
3131
]
3232
"""
3333
- `enrollment.accepted` - Enrollment Accepted
@@ -40,7 +40,7 @@ class WebhookEventListParams(TypedDict, total=False):
4040
- `employee.eligibility_terminated` - Employee Eligibility Terminated
4141
- `employee.deactivated` - Employee Deactivated
4242
- `payroll_deduction.created` - Payroll Deduction Created
43-
- `plan_year.eligibility_policy_created` - Plan Year Eligibility Policy Created
43+
- `employer.eligibility_policy_created` - Employer Eligibility Policy Created
4444
"""
4545

4646
limit: int

0 commit comments

Comments
 (0)