File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33from typing import Union
44from typing_extensions import TypeAlias
55
6+ from .u_url import UURL
67from .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
712from .u_address import UAddress
813from .u_boolean import UBoolean
914from .u_country import UCountry
1015from .u_decimal import UDecimal
16+ from .u_integer import UInteger
1117from .u_currency import UCurrency
18+ from .u_datetime import UDatetime
1219from .u_multiselect import UMultiselect
20+ from .u_phone_number import UPhoneNumber
1321from .u_reference_by_id import UReferenceByID
1422from .u_reference_by_match import UReferenceByMatch
1523from .u_reference_by_upsert import UReferenceByUpsert
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]
Original file line number Diff line number Diff line change 55from typing import Union
66from typing_extensions import TypeAlias
77
8+ from .u_url import UURL
89from .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
914from .u_boolean import UBoolean
1015from .u_decimal import UDecimal
16+ from .u_integer import UInteger
17+ from .u_datetime import UDatetime
18+ from .u_phone_number import UPhoneNumber
1119from .u_address_param import UAddressParam
1220from .u_country_param import UCountryParam
1321from .u_currency_param import UCurrencyParam
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]
You can’t perform that action at this time.
0 commit comments