Skip to content

Commit

Permalink
feat(api): api update (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 5, 2024
1 parent 96d6201 commit 518f06a
Show file tree
Hide file tree
Showing 7 changed files with 3,182 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 72
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-9640e89170c0ab0978aad84e29edcd3777691b90d341a0fa4ca5306377f84ad9.yml
configured_endpoints: 74
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-689fadcdcb4854bad8d5572eb83302824ddb759e13a3ca9a3f573810dee160a9.yml
2 changes: 2 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,5 +284,7 @@ from conductor.types.qbd import QbdCheck

Methods:

- <code title="post /quickbooks-desktop/checks">client.qbd.checks.<a href="./src/conductor/resources/qbd/checks.py">create</a>(\*\*<a href="src/conductor/types/qbd/check_create_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_check.py">QbdCheck</a></code>
- <code title="get /quickbooks-desktop/checks/{id}">client.qbd.checks.<a href="./src/conductor/resources/qbd/checks.py">retrieve</a>(id) -> <a href="./src/conductor/types/qbd/qbd_check.py">QbdCheck</a></code>
- <code title="post /quickbooks-desktop/checks/{id}">client.qbd.checks.<a href="./src/conductor/resources/qbd/checks.py">update</a>(id, \*\*<a href="src/conductor/types/qbd/check_update_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_check.py">QbdCheck</a></code>
- <code title="get /quickbooks-desktop/checks">client.qbd.checks.<a href="./src/conductor/resources/qbd/checks.py">list</a>(\*\*<a href="src/conductor/types/qbd/check_list_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_check.py">SyncCursorPage[QbdCheck]</a></code>
591 changes: 588 additions & 3 deletions src/conductor/resources/qbd/checks.py

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions src/conductor/types/qbd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
from .non_inventory_item import NonInventoryItem as NonInventoryItem
from .vendor_list_params import VendorListParams as VendorListParams
from .account_list_params import AccountListParams as AccountListParams
from .check_create_params import CheckCreateParams as CheckCreateParams
from .check_update_params import CheckUpdateParams as CheckUpdateParams
from .class_create_params import ClassCreateParams as ClassCreateParams
from .class_list_response import ClassListResponse as ClassListResponse
from .class_update_params import ClassUpdateParams as ClassUpdateParams
Expand Down
Loading

0 comments on commit 518f06a

Please sign in to comment.