Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.2"
".": "0.1.3"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 21
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/unify%2Funify-17c3b84a98900702272afd48aea1815a914796c8b8d2ff9ac958f58b61397add.yml
openapi_spec_hash: 669c33d5b065c8cd22fc2c166214cbdc
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/unify%2Funify-832b8061b7a43ca20bfbb6cd29ea596457cf9e5471be42ab9c03ce0de23bb8a0.yml
openapi_spec_hash: c36702c14fc409d4bbbe4d7e3e185149
config_hash: 733f711df6a401fc87fd4c8a0957d89f
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.1.3 (2026-04-23)

Full Changelog: [v0.1.2...v0.1.3](https://github.com/unifygtm/sdk-python/compare/v0.1.2...v0.1.3)

## 0.1.2 (2026-04-23)

Full Changelog: [v0.1.1...v0.1.2](https://github.com/unifygtm/sdk-python/compare/v0.1.1...v0.1.2)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "unifygtm-sdk"
version = "0.1.2"
version = "0.1.3"
description = "The official Python library for the Unify API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/unify/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "unify"
__version__ = "0.1.2" # x-release-please-version
__version__ = "0.1.3" # x-release-please-version
16 changes: 16 additions & 0 deletions src/unify/types/data/u_value.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,21 @@
from typing import Union
from typing_extensions import TypeAlias

from .u_url import UURL
from .u_date import UDate
from .u_text import UText
from .u_uuid import UUuid
from .u_email import UEmail
from .u_select import USelect
from .u_address import UAddress
from .u_boolean import UBoolean
from .u_country import UCountry
from .u_decimal import UDecimal
from .u_integer import UInteger
from .u_currency import UCurrency
from .u_datetime import UDatetime
from .u_multiselect import UMultiselect
from .u_phone_number import UPhoneNumber
from .u_reference_by_id import UReferenceByID
from .u_reference_by_match import UReferenceByMatch
from .u_reference_by_upsert import UReferenceByUpsert
Expand All @@ -22,9 +30,17 @@
UCountry,
UCurrency,
UDate,
UDatetime,
UDecimal,
UEmail,
UInteger,
UMultiselect,
UPhoneNumber,
UReferenceByID,
UReferenceByMatch,
UReferenceByUpsert,
USelect,
UText,
UURL,
UUuid,
]
16 changes: 16 additions & 0 deletions src/unify/types/data/u_value_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,17 @@
from typing import Union
from typing_extensions import TypeAlias

from .u_url import UURL
from .u_date import UDate
from .u_text import UText
from .u_uuid import UUuid
from .u_email import UEmail
from .u_select import USelect
from .u_boolean import UBoolean
from .u_decimal import UDecimal
from .u_integer import UInteger
from .u_datetime import UDatetime
from .u_phone_number import UPhoneNumber
from .u_address_param import UAddressParam
from .u_country_param import UCountryParam
from .u_currency_param import UCurrencyParam
Expand All @@ -24,9 +32,17 @@
UCountryParam,
UCurrencyParam,
UDate,
UDatetime,
UDecimal,
UEmail,
UInteger,
UMultiselectParam,
UPhoneNumber,
UReferenceByIDParam,
UReferenceByMatchParam,
UReferenceByUpsertParam,
USelect,
UText,
UURL,
UUuid,
]
Loading