|
9 | 9 |
|
10 | 10 | from ... import _legacy_response
|
11 | 11 | from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
|
12 |
| -from ..._utils import ( |
13 |
| - maybe_transform, |
14 |
| - async_maybe_transform, |
15 |
| -) |
| 12 | +from ..._utils import maybe_transform, async_maybe_transform |
16 | 13 | from ..._compat import cached_property
|
17 | 14 | from ..._resource import SyncAPIResource, AsyncAPIResource
|
18 | 15 | from ..._response import to_streamed_response_wrapper, async_to_streamed_response_wrapper
|
@@ -50,7 +47,18 @@ def new(
|
50 | 47 | customer_id: str,
|
51 | 48 | customer_name: str,
|
52 | 49 | products: List[
|
53 |
| - Literal["company", "directory", "individual", "employment", "payment", "pay_statement", "benefits", "ssn"] |
| 50 | + Literal[ |
| 51 | + "company", |
| 52 | + "directory", |
| 53 | + "individual", |
| 54 | + "employment", |
| 55 | + "payment", |
| 56 | + "pay_statement", |
| 57 | + "benefits", |
| 58 | + "ssn", |
| 59 | + "deduction", |
| 60 | + "documents", |
| 61 | + ] |
54 | 62 | ],
|
55 | 63 | customer_email: Optional[str] | NotGiven = NOT_GIVEN,
|
56 | 64 | integration: Optional[session_new_params.Integration] | NotGiven = NOT_GIVEN,
|
@@ -110,7 +118,16 @@ def reauthenticate(
|
110 | 118 | products: Optional[
|
111 | 119 | List[
|
112 | 120 | Literal[
|
113 |
| - "company", "directory", "individual", "employment", "payment", "pay_statement", "benefits", "ssn" |
| 121 | + "company", |
| 122 | + "directory", |
| 123 | + "individual", |
| 124 | + "employment", |
| 125 | + "payment", |
| 126 | + "pay_statement", |
| 127 | + "benefits", |
| 128 | + "ssn", |
| 129 | + "deduction", |
| 130 | + "documents", |
114 | 131 | ]
|
115 | 132 | ]
|
116 | 133 | ]
|
@@ -188,7 +205,18 @@ async def new(
|
188 | 205 | customer_id: str,
|
189 | 206 | customer_name: str,
|
190 | 207 | products: List[
|
191 |
| - Literal["company", "directory", "individual", "employment", "payment", "pay_statement", "benefits", "ssn"] |
| 208 | + Literal[ |
| 209 | + "company", |
| 210 | + "directory", |
| 211 | + "individual", |
| 212 | + "employment", |
| 213 | + "payment", |
| 214 | + "pay_statement", |
| 215 | + "benefits", |
| 216 | + "ssn", |
| 217 | + "deduction", |
| 218 | + "documents", |
| 219 | + ] |
192 | 220 | ],
|
193 | 221 | customer_email: Optional[str] | NotGiven = NOT_GIVEN,
|
194 | 222 | integration: Optional[session_new_params.Integration] | NotGiven = NOT_GIVEN,
|
@@ -248,7 +276,16 @@ async def reauthenticate(
|
248 | 276 | products: Optional[
|
249 | 277 | List[
|
250 | 278 | Literal[
|
251 |
| - "company", "directory", "individual", "employment", "payment", "pay_statement", "benefits", "ssn" |
| 279 | + "company", |
| 280 | + "directory", |
| 281 | + "individual", |
| 282 | + "employment", |
| 283 | + "payment", |
| 284 | + "pay_statement", |
| 285 | + "benefits", |
| 286 | + "ssn", |
| 287 | + "deduction", |
| 288 | + "documents", |
252 | 289 | ]
|
253 | 290 | ]
|
254 | 291 | ]
|
|
0 commit comments