Skip to content

Commit

Permalink
feat(api): api update (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 17, 2024
1 parent 26235d6 commit 9934816
Show file tree
Hide file tree
Showing 12 changed files with 1,698 additions and 2 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: 85
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-0cbf38ac402f49c8b9c1f33631e19b705ed57dc9dc5c0d38209db598ec91ce68.yml
configured_endpoints: 89
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-d028b3ae5b62af2f5832f94d8115b48c6135ad7252ac2ce648d0f6434e36c14f.yml
15 changes: 15 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,3 +332,18 @@ Methods:
- <code title="post /quickbooks-desktop/bill-payment-credit-cards">client.qbd.bill_payment_credit_cards.<a href="./src/conductor/resources/qbd/bill_payment_credit_cards.py">create</a>(\*\*<a href="src/conductor/types/qbd/bill_payment_credit_card_create_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_bill_payment_credit_card.py">QbdBillPaymentCreditCard</a></code>
- <code title="get /quickbooks-desktop/bill-payment-credit-cards/{id}">client.qbd.bill_payment_credit_cards.<a href="./src/conductor/resources/qbd/bill_payment_credit_cards.py">retrieve</a>(id) -> <a href="./src/conductor/types/qbd/qbd_bill_payment_credit_card.py">QbdBillPaymentCreditCard</a></code>
- <code title="get /quickbooks-desktop/bill-payment-credit-cards">client.qbd.bill_payment_credit_cards.<a href="./src/conductor/resources/qbd/bill_payment_credit_cards.py">list</a>(\*\*<a href="src/conductor/types/qbd/bill_payment_credit_card_list_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_bill_payment_credit_card.py">SyncCursorPage[QbdBillPaymentCreditCard]</a></code>

## InventorySites

Types:

```python
from conductor.types.qbd import QbdInventorySite, InventorySiteListResponse
```

Methods:

- <code title="post /quickbooks-desktop/inventory-sites">client.qbd.inventory_sites.<a href="./src/conductor/resources/qbd/inventory_sites.py">create</a>(\*\*<a href="src/conductor/types/qbd/inventory_site_create_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_inventory_site.py">QbdInventorySite</a></code>
- <code title="get /quickbooks-desktop/inventory-sites/{id}">client.qbd.inventory_sites.<a href="./src/conductor/resources/qbd/inventory_sites.py">retrieve</a>(id) -> <a href="./src/conductor/types/qbd/qbd_inventory_site.py">QbdInventorySite</a></code>
- <code title="post /quickbooks-desktop/inventory-sites/{id}">client.qbd.inventory_sites.<a href="./src/conductor/resources/qbd/inventory_sites.py">update</a>(id, \*\*<a href="src/conductor/types/qbd/inventory_site_update_params.py">params</a>) -> <a href="./src/conductor/types/qbd/qbd_inventory_site.py">QbdInventorySite</a></code>
- <code title="get /quickbooks-desktop/inventory-sites">client.qbd.inventory_sites.<a href="./src/conductor/resources/qbd/inventory_sites.py">list</a>(\*\*<a href="src/conductor/types/qbd/inventory_site_list_params.py">params</a>) -> <a href="./src/conductor/types/qbd/inventory_site_list_response.py">InventorySiteListResponse</a></code>
14 changes: 14 additions & 0 deletions src/conductor/resources/qbd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@
InventoryItemsResourceWithStreamingResponse,
AsyncInventoryItemsResourceWithStreamingResponse,
)
from .inventory_sites import (
InventorySitesResource,
AsyncInventorySitesResource,
InventorySitesResourceWithRawResponse,
AsyncInventorySitesResourceWithRawResponse,
InventorySitesResourceWithStreamingResponse,
AsyncInventorySitesResourceWithStreamingResponse,
)
from .sales_tax_codes import (
SalesTaxCodesResource,
AsyncSalesTaxCodesResource,
Expand Down Expand Up @@ -290,6 +298,12 @@
"AsyncBillPaymentCreditCardsResourceWithRawResponse",
"BillPaymentCreditCardsResourceWithStreamingResponse",
"AsyncBillPaymentCreditCardsResourceWithStreamingResponse",
"InventorySitesResource",
"AsyncInventorySitesResource",
"InventorySitesResourceWithRawResponse",
"AsyncInventorySitesResourceWithRawResponse",
"InventorySitesResourceWithStreamingResponse",
"AsyncInventorySitesResourceWithStreamingResponse",
"QbdResource",
"AsyncQbdResource",
"QbdResourceWithRawResponse",
Expand Down
Loading

0 comments on commit 9934816

Please sign in to comment.