Skip to content

Commit 2bbeab5

Browse files
authored
Merge pull request #1 from stainless-sdks/sam/add-all-uvalues
Add all UValue variants
2 parents 8cddf86 + 67ca418 commit 2bbeab5

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

src/unify/types/data/u_value.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,21 @@
33
from typing import Union
44
from typing_extensions import TypeAlias
55

6+
from .u_url import UURL
67
from .u_date import UDate
8+
from .u_text import UText
9+
from .u_uuid import UUuid
10+
from .u_email import UEmail
11+
from .u_select import USelect
712
from .u_address import UAddress
813
from .u_boolean import UBoolean
914
from .u_country import UCountry
1015
from .u_decimal import UDecimal
16+
from .u_integer import UInteger
1117
from .u_currency import UCurrency
18+
from .u_datetime import UDatetime
1219
from .u_multiselect import UMultiselect
20+
from .u_phone_number import UPhoneNumber
1321
from .u_reference_by_id import UReferenceByID
1422
from .u_reference_by_match import UReferenceByMatch
1523
from .u_reference_by_upsert import UReferenceByUpsert
@@ -22,9 +30,17 @@
2230
UCountry,
2331
UCurrency,
2432
UDate,
33+
UDatetime,
2534
UDecimal,
35+
UEmail,
36+
UInteger,
2637
UMultiselect,
38+
UPhoneNumber,
2739
UReferenceByID,
2840
UReferenceByMatch,
2941
UReferenceByUpsert,
42+
USelect,
43+
UText,
44+
UURL,
45+
UUuid,
3046
]

src/unify/types/data/u_value_param.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,17 @@
55
from typing import Union
66
from typing_extensions import TypeAlias
77

8+
from .u_url import UURL
89
from .u_date import UDate
10+
from .u_text import UText
11+
from .u_uuid import UUuid
12+
from .u_email import UEmail
13+
from .u_select import USelect
914
from .u_boolean import UBoolean
1015
from .u_decimal import UDecimal
16+
from .u_integer import UInteger
17+
from .u_datetime import UDatetime
18+
from .u_phone_number import UPhoneNumber
1119
from .u_address_param import UAddressParam
1220
from .u_country_param import UCountryParam
1321
from .u_currency_param import UCurrencyParam
@@ -24,9 +32,17 @@
2432
UCountryParam,
2533
UCurrencyParam,
2634
UDate,
35+
UDatetime,
2736
UDecimal,
37+
UEmail,
38+
UInteger,
2839
UMultiselectParam,
40+
UPhoneNumber,
2941
UReferenceByIDParam,
3042
UReferenceByMatchParam,
3143
UReferenceByUpsertParam,
44+
USelect,
45+
UText,
46+
UURL,
47+
UUuid,
3248
]

0 commit comments

Comments
 (0)