@@ -68,11 +68,10 @@ def create(
6868 extra_body : Body | None = None ,
6969 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
7070 ) -> CreateCompanyBenefitsResponse :
71- """
72- **Availability: Automated and Assisted Benefits providers**
71+ """Creates a new company-wide deduction or contribution.
7372
74- Creates a new company-wide benefit. Please use the `/meta` endpoint to view
75- available types for each provider.
73+ Please use the
74+ `/providers` endpoint to view available types for each provider.
7675
7776 Args:
7877 type: Type of benefit.
@@ -113,9 +112,7 @@ def retrieve(
113112 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
114113 ) -> CompanyBenefit :
115114 """
116- **Availability: Automated Benefits providers only**
117-
118- Lists benefit information for a given benefit
115+ Lists deductions and contributions information for a given item
119116
120117 Args:
121118 extra_headers: Send extra headers
@@ -149,9 +146,7 @@ def update(
149146 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
150147 ) -> UpdateCompanyBenefitResponse :
151148 """
152- **Availability: Automated and Assisted Benefits providers**
153-
154- Updates an existing company-wide benefit
149+ Updates an existing company-wide deduction or contribution
155150
156151 Args:
157152 description: Updated name or description.
@@ -185,11 +180,7 @@ def list(
185180 extra_body : Body | None = None ,
186181 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
187182 ) -> SyncSinglePage [CompanyBenefit ]:
188- """
189- **Availability: Automated Benefits providers only**
190-
191- List all company-wide benefits.
192- """
183+ """List all company-wide deductions and contributions."""
193184 return self ._get_api_list (
194185 "/employer/benefits" ,
195186 page = SyncSinglePage [CompanyBenefit ],
@@ -209,12 +200,7 @@ def list_supported_benefits(
209200 extra_body : Body | None = None ,
210201 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
211202 ) -> SyncSinglePage [SupportedBenefit ]:
212- """
213- **Availability: Automated and Assisted Benefits providers**
214-
215- Lists available types and configurations for the provider associated with the
216- access token.
217- """
203+ """Get deductions metadata"""
218204 return self ._get_api_list (
219205 "/employer/benefits/meta" ,
220206 page = SyncSinglePage [SupportedBenefit ],
@@ -251,11 +237,10 @@ async def create(
251237 extra_body : Body | None = None ,
252238 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
253239 ) -> CreateCompanyBenefitsResponse :
254- """
255- **Availability: Automated and Assisted Benefits providers**
240+ """Creates a new company-wide deduction or contribution.
256241
257- Creates a new company-wide benefit. Please use the `/meta` endpoint to view
258- available types for each provider.
242+ Please use the
243+ `/providers` endpoint to view available types for each provider.
259244
260245 Args:
261246 type: Type of benefit.
@@ -296,9 +281,7 @@ async def retrieve(
296281 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
297282 ) -> CompanyBenefit :
298283 """
299- **Availability: Automated Benefits providers only**
300-
301- Lists benefit information for a given benefit
284+ Lists deductions and contributions information for a given item
302285
303286 Args:
304287 extra_headers: Send extra headers
@@ -332,9 +315,7 @@ async def update(
332315 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
333316 ) -> UpdateCompanyBenefitResponse :
334317 """
335- **Availability: Automated and Assisted Benefits providers**
336-
337- Updates an existing company-wide benefit
318+ Updates an existing company-wide deduction or contribution
338319
339320 Args:
340321 description: Updated name or description.
@@ -368,11 +349,7 @@ def list(
368349 extra_body : Body | None = None ,
369350 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
370351 ) -> AsyncPaginator [CompanyBenefit , AsyncSinglePage [CompanyBenefit ]]:
371- """
372- **Availability: Automated Benefits providers only**
373-
374- List all company-wide benefits.
375- """
352+ """List all company-wide deductions and contributions."""
376353 return self ._get_api_list (
377354 "/employer/benefits" ,
378355 page = AsyncSinglePage [CompanyBenefit ],
@@ -392,12 +369,7 @@ def list_supported_benefits(
392369 extra_body : Body | None = None ,
393370 timeout : float | httpx .Timeout | None | NotGiven = NOT_GIVEN ,
394371 ) -> AsyncPaginator [SupportedBenefit , AsyncSinglePage [SupportedBenefit ]]:
395- """
396- **Availability: Automated and Assisted Benefits providers**
397-
398- Lists available types and configurations for the provider associated with the
399- access token.
400- """
372+ """Get deductions metadata"""
401373 return self ._get_api_list (
402374 "/employer/benefits/meta" ,
403375 page = AsyncSinglePage [SupportedBenefit ],
0 commit comments