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 @@
{
".": "1.71.1"
".": "1.72.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 220
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-b87c037f09f06e8ed3a5a796fdd27904cf03b01b79ff74c9130b08c226cf87d5.yml
openapi_spec_hash: 259597af546eac68f761df4635d39926
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-235b86151cc83acadb1123adb78fd2b383f97a96daa1b19f36d5be77f546fce0.yml
openapi_spec_hash: fb2c7bfec6572f694f9a2f53e44e67a8
config_hash: 89303a38c78d93021ba8a584462375bd
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.72.0 (2026-01-27)

Full Changelog: [v1.71.1...v1.72.0](https://github.com/conductor-is/quickbooks-desktop-python/compare/v1.71.1...v1.72.0)

### Features

* **api:** api update ([aacb8b6](https://github.com/conductor-is/quickbooks-desktop-python/commit/aacb8b6f01f34b931e3b8d76de38cac771b8bfe3))

## 1.71.1 (2026-01-25)

Full Changelog: [v1.71.0...v1.71.1](https://github.com/conductor-is/quickbooks-desktop-python/compare/v1.71.0...v1.71.1)
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 = "conductor-py"
version = "1.71.1"
version = "1.72.0"
description = "The official Python library for the conductor API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/conductor/_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__ = "conductor"
__version__ = "1.71.1" # x-release-please-version
__version__ = "1.72.0" # x-release-please-version
13 changes: 13 additions & 0 deletions src/conductor/types/qbd/deleted_list_object.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import Optional
from typing_extensions import Literal

from pydantic import Field as FieldInfo
Expand Down Expand Up @@ -31,6 +32,18 @@ class DeletedListObject(BaseModel):
timezone of the end-user's computer.
"""

full_name: Optional[str] = FieldInfo(alias="fullName", default=None)
"""
The case-insensitive fully-qualified unique name of this deleted list-object,
formed by combining the names of its hierarchical parent objects with its own
`name`, separated by colons. For example, if a deleted list-object is under
"Parent" and has the `name` "Child", its `fullName` would be "Parent:Child".

**NOTE**: Unlike `name`, `fullName` is guaranteed to be unique across all
deleted list-object objects. However, `fullName` can still be arbitrarily
changed by the QuickBooks user when they modify the underlying `name` field.
"""

list_type: Literal[
"account",
"billing_rate",
Expand Down