Skip to content

Commit

Permalink
feat(api): api update (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 4, 2024
1 parent a324c8f commit 91698c3
Show file tree
Hide file tree
Showing 49 changed files with 290 additions and 272 deletions.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 70
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-4baf64258f9cd7beb0fe404eb4349bcb8e3e1fb3429900718abdc55f4637f742.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/conductor%2Fconductor-994ca60806f8c4843af070798188f076c275c5ca98b7bb10f14942aace77eb57.yml
14 changes: 7 additions & 7 deletions src/conductor/resources/qbd/accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Union
from typing import List, Union
from datetime import date
from typing_extensions import Literal

Expand Down Expand Up @@ -382,9 +382,9 @@ def list(
"other_income",
]
| NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -858,9 +858,9 @@ async def list(
"other_income",
]
| NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down
20 changes: 10 additions & 10 deletions src/conductor/resources/qbd/bills.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,25 +382,25 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
include_linked_transactions: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payment_status: Literal["all", "paid", "not_paid"] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
transaction_date_to: Union[str, date] | NotGiven = NOT_GIVEN,
updated_after: str | NotGiven = NOT_GIVEN,
updated_before: str | NotGiven = NOT_GIVEN,
vendor_ids: str | NotGiven = NOT_GIVEN,
vendor_ids: List[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand Down Expand Up @@ -889,25 +889,25 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
include_linked_transactions: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payment_status: Literal["all", "paid", "not_paid"] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
transaction_date_to: Union[str, date] | NotGiven = NOT_GIVEN,
updated_after: str | NotGiven = NOT_GIVEN,
updated_before: str | NotGiven = NOT_GIVEN,
vendor_ids: str | NotGiven = NOT_GIVEN,
vendor_ids: List[str] | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand Down
9 changes: 5 additions & 4 deletions src/conductor/resources/qbd/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from __future__ import annotations

from typing import List
from typing_extensions import Literal

import httpx
Expand Down Expand Up @@ -223,8 +224,8 @@ def list(
self,
*,
conductor_end_user_id: str,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -534,8 +535,8 @@ async def list(
self,
*,
conductor_end_user_id: str,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down
22 changes: 11 additions & 11 deletions src/conductor/resources/qbd/credit_card_charges.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Union, Iterable
from typing import List, Union, Iterable
from datetime import date

import httpx
Expand Down Expand Up @@ -339,17 +339,17 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payee_ids: str | NotGiven = NOT_GIVEN,
payee_ids: List[str] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -798,17 +798,17 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payee_ids: str | NotGiven = NOT_GIVEN,
payee_ids: List[str] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down
22 changes: 11 additions & 11 deletions src/conductor/resources/qbd/credit_card_credits.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Union, Iterable
from typing import List, Union, Iterable
from datetime import date

import httpx
Expand Down Expand Up @@ -337,17 +337,17 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payee_ids: str | NotGiven = NOT_GIVEN,
payee_ids: List[str] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -793,17 +793,17 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payee_ids: str | NotGiven = NOT_GIVEN,
payee_ids: List[str] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down
18 changes: 9 additions & 9 deletions src/conductor/resources/qbd/customers.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Union, Iterable
from typing import List, Union, Iterable
from datetime import date
from typing_extensions import Literal

Expand Down Expand Up @@ -658,11 +658,11 @@ def list(
self,
*,
conductor_end_user_id: str,
class_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
class_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -1448,11 +1448,11 @@ def list(
self,
*,
conductor_end_user_id: str,
class_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
class_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down
9 changes: 5 additions & 4 deletions src/conductor/resources/qbd/date_driven_terms.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

from __future__ import annotations

from typing import List
from typing_extensions import Literal

import httpx
Expand Down Expand Up @@ -163,8 +164,8 @@ def list(
self,
*,
conductor_end_user_id: str,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -414,8 +415,8 @@ async def list(
self,
*,
conductor_end_user_id: str,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down
14 changes: 7 additions & 7 deletions src/conductor/resources/qbd/inventory_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing import Union
from typing import List, Union
from datetime import date
from typing_extensions import Literal

Expand Down Expand Up @@ -449,10 +449,10 @@ def list(
self,
*,
conductor_end_user_id: str,
class_ids: str | NotGiven = NOT_GIVEN,
class_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -1009,10 +1009,10 @@ def list(
self,
*,
conductor_end_user_id: str,
class_ids: str | NotGiven = NOT_GIVEN,
class_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
full_names: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
full_names: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
name_contains: str | NotGiven = NOT_GIVEN,
name_ends_with: str | NotGiven = NOT_GIVEN,
Expand Down
20 changes: 10 additions & 10 deletions src/conductor/resources/qbd/invoices.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,19 +552,19 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
customer_ids: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
customer_ids: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
include_linked_transactions: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payment_status: Literal["all", "paid", "not_paid"] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -1231,19 +1231,19 @@ def list(
self,
*,
conductor_end_user_id: str,
account_ids: str | NotGiven = NOT_GIVEN,
currency_ids: str | NotGiven = NOT_GIVEN,
account_ids: List[str] | NotGiven = NOT_GIVEN,
currency_ids: List[str] | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
customer_ids: str | NotGiven = NOT_GIVEN,
ids: str | NotGiven = NOT_GIVEN,
customer_ids: List[str] | NotGiven = NOT_GIVEN,
ids: List[str] | NotGiven = NOT_GIVEN,
include_line_items: bool | NotGiven = NOT_GIVEN,
include_linked_transactions: bool | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
payment_status: Literal["all", "paid", "not_paid"] | NotGiven = NOT_GIVEN,
ref_number_contains: str | NotGiven = NOT_GIVEN,
ref_number_ends_with: str | NotGiven = NOT_GIVEN,
ref_number_from: str | NotGiven = NOT_GIVEN,
ref_numbers: str | NotGiven = NOT_GIVEN,
ref_numbers: List[str] | NotGiven = NOT_GIVEN,
ref_number_starts_with: str | NotGiven = NOT_GIVEN,
ref_number_to: str | NotGiven = NOT_GIVEN,
transaction_date_from: Union[str, date] | NotGiven = NOT_GIVEN,
Expand Down
Loading

0 comments on commit 91698c3

Please sign in to comment.