From 8cddf86ec2d908c16598d444aae8ce647ffa8b12 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 06:04:50 +0000 Subject: [PATCH 1/3] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 4670331..7bf768c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -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 From 67ca418c27d73525d1e8665b075632b6c238210d Mon Sep 17 00:00:00 2001 From: Sam Waterbury Date: Wed, 22 Apr 2026 23:16:39 -0700 Subject: [PATCH 2/3] Add all UValue variants --- src/unify/types/data/u_value.py | 16 ++++++++++++++++ src/unify/types/data/u_value_param.py | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/src/unify/types/data/u_value.py b/src/unify/types/data/u_value.py index 457ca42..290d626 100644 --- a/src/unify/types/data/u_value.py +++ b/src/unify/types/data/u_value.py @@ -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 @@ -22,9 +30,17 @@ UCountry, UCurrency, UDate, + UDatetime, UDecimal, + UEmail, + UInteger, UMultiselect, + UPhoneNumber, UReferenceByID, UReferenceByMatch, UReferenceByUpsert, + USelect, + UText, + UURL, + UUuid, ] diff --git a/src/unify/types/data/u_value_param.py b/src/unify/types/data/u_value_param.py index 80d298c..ab7947e 100644 --- a/src/unify/types/data/u_value_param.py +++ b/src/unify/types/data/u_value_param.py @@ -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 @@ -24,9 +32,17 @@ UCountryParam, UCurrencyParam, UDate, + UDatetime, UDecimal, + UEmail, + UInteger, UMultiselectParam, + UPhoneNumber, UReferenceByIDParam, UReferenceByMatchParam, UReferenceByUpsertParam, + USelect, + UText, + UURL, + UUuid, ] From c9881efbb445b294ce065d624a6c44214429affe Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 06:53:09 +0000 Subject: [PATCH 3/3] release: 0.1.3 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- src/unify/_version.py | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cda9cbd..4c5a1a0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.2" + ".": "0.1.3" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 669443a..3e1741a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 98635bb..8f8f72c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" diff --git a/src/unify/_version.py b/src/unify/_version.py index bb53329..a52368b 100644 --- a/src/unify/_version.py +++ b/src/unify/_version.py @@ -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