Skip to content

Commit 4942894

Browse files
feat(api): api update
1 parent 7d5b4e6 commit 4942894

File tree

10 files changed

+1270
-4
lines changed

10 files changed

+1270
-4
lines changed

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 184
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-5a6f3adbc29ff49f35ccdfa1f1b1ecbc507639c17bc4883734f3890ef1367505.yml
3-
openapi_spec_hash: 83c2227eefcf836e190d9145b0740800
4-
config_hash: 044c577c46f5024c74a2be73a0e25ff7
1+
configured_endpoints: 187
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-158ec70f4017d011c3b77a57ef31b5327fd59da48b8d6a8eaa663761436478ea.yml
3+
openapi_spec_hash: c60a01872fb08477a20189c6a0f30b7f
4+
config_hash: c42f7b2a3bbc68e10e9989f17e20f464

api.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -439,6 +439,20 @@ Methods:
439439
- <code title="post /quickbooks-desktop/non-inventory-items/{id}">client.qbd.non_inventory_items.<a href="./src/conductor/resources/qbd/non_inventory_items.py">update</a>(id, \*\*<a href="src/conductor/types/qbd/non_inventory_item_update_params.py">params</a>) -> <a href="./src/conductor/types/qbd/non_inventory_item.py">NonInventoryItem</a></code>
440440
- <code title="get /quickbooks-desktop/non-inventory-items">client.qbd.non_inventory_items.<a href="./src/conductor/resources/qbd/non_inventory_items.py">list</a>(\*\*<a href="src/conductor/types/qbd/non_inventory_item_list_params.py">params</a>) -> <a href="./src/conductor/types/qbd/non_inventory_item.py">SyncCursorPage[NonInventoryItem]</a></code>
441441

442+
## PaymentMethods
443+
444+
Types:
445+
446+
```python
447+
from conductor.types.qbd import PaymentMethod
448+
```
449+
450+
Methods:
451+
452+
- <code title="post /quickbooks-desktop/payment-methods">client.qbd.payment_methods.<a href="./src/conductor/resources/qbd/payment_methods.py">create</a>(\*\*<a href="src/conductor/types/qbd/payment_method_create_params.py">params</a>) -> <a href="./src/conductor/types/qbd/payment_method.py">PaymentMethod</a></code>
453+
- <code title="get /quickbooks-desktop/payment-methods/{id}">client.qbd.payment_methods.<a href="./src/conductor/resources/qbd/payment_methods.py">retrieve</a>(id) -> <a href="./src/conductor/types/qbd/payment_method.py">PaymentMethod</a></code>
454+
- <code title="get /quickbooks-desktop/payment-methods">client.qbd.payment_methods.<a href="./src/conductor/resources/qbd/payment_methods.py">list</a>(\*\*<a href="src/conductor/types/qbd/payment_method_list_params.py">params</a>) -> <a href="./src/conductor/types/qbd/payment_method.py">SyncCursorPage[PaymentMethod]</a></code>
455+
442456
## PayrollWageItems
443457

444458
Types:

src/conductor/resources/qbd/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,14 @@
232232
JournalEntriesResourceWithStreamingResponse,
233233
AsyncJournalEntriesResourceWithStreamingResponse,
234234
)
235+
from .payment_methods import (
236+
PaymentMethodsResource,
237+
AsyncPaymentMethodsResource,
238+
PaymentMethodsResourceWithRawResponse,
239+
AsyncPaymentMethodsResourceWithRawResponse,
240+
PaymentMethodsResourceWithStreamingResponse,
241+
AsyncPaymentMethodsResourceWithStreamingResponse,
242+
)
235243
from .purchase_orders import (
236244
PurchaseOrdersResource,
237245
AsyncPurchaseOrdersResource,
@@ -518,6 +526,12 @@
518526
"AsyncNonInventoryItemsResourceWithRawResponse",
519527
"NonInventoryItemsResourceWithStreamingResponse",
520528
"AsyncNonInventoryItemsResourceWithStreamingResponse",
529+
"PaymentMethodsResource",
530+
"AsyncPaymentMethodsResource",
531+
"PaymentMethodsResourceWithRawResponse",
532+
"AsyncPaymentMethodsResourceWithRawResponse",
533+
"PaymentMethodsResourceWithStreamingResponse",
534+
"AsyncPaymentMethodsResourceWithStreamingResponse",
521535
"PayrollWageItemsResource",
522536
"AsyncPayrollWageItemsResource",
523537
"PayrollWageItemsResourceWithRawResponse",

0 commit comments

Comments
 (0)