diff --git a/docs/apis/AccountingApi.md b/docs/apis/AccountingApi.md index 99f2a35c6..d7705f527 100644 --- a/docs/apis/AccountingApi.md +++ b/docs/apis/AccountingApi.md @@ -4610,6 +4610,7 @@ with apideck.ApiClient(configuration) as api_client: limit = 20 # int | Number of results to return. Minimum 1, Maximum 200, Default 20 (optional) if omitted the server will use the default value of 20 filter = InvoicesFilter( updated_since=dateutil_parser('2020-09-30T07:43:32Z'), + created_since=dateutil_parser('2020-09-30T07:43:32Z'), ) # InvoicesFilter | Apply filters (optional) sort = InvoicesSort( by="updated_at", diff --git a/docs/apis/EcommerceApi.md b/docs/apis/EcommerceApi.md index 7d0dea243..933cf1a24 100644 --- a/docs/apis/EcommerceApi.md +++ b/docs/apis/EcommerceApi.md @@ -291,6 +291,7 @@ with apideck.ApiClient(configuration) as api_client: email="elon@musk.com", customer_id="123", updated_since="2020-09-30T07:43:32.000Z", + created_since="2020-09-30T07:43:32.000Z", ) # EcommerceOrdersFilter | Apply filters (optional) sort = OrdersSort( by="created_at", diff --git a/docs/models/EcommerceOrdersFilter.md b/docs/models/EcommerceOrdersFilter.md index 2340c6e81..fcd232842 100644 --- a/docs/models/EcommerceOrdersFilter.md +++ b/docs/models/EcommerceOrdersFilter.md @@ -7,6 +7,7 @@ Name | Type | Description | Notes **email** | **str** | Customer email address to filter on | [optional] **customer_id** | **str** | Customer id to filter on | [optional] **updated_since** | **str** | Minimum date the order was last modified | [optional] +**created_since** | **str** | Minimum date the order was created | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/docs/models/InvoicesFilter.md b/docs/models/InvoicesFilter.md index 46a2cbc03..779aad8c5 100644 --- a/docs/models/InvoicesFilter.md +++ b/docs/models/InvoicesFilter.md @@ -5,6 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **updated_since** | **datetime** | | [optional] +**created_since** | **datetime** | | [optional] [[Back to Model list]](../../README.md#documentation-for-models) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to README]](../../README.md) diff --git a/src/apideck/model/ecommerce_orders_filter.py b/src/apideck/model/ecommerce_orders_filter.py index 85f62a299..0f5cfd79a 100644 --- a/src/apideck/model/ecommerce_orders_filter.py +++ b/src/apideck/model/ecommerce_orders_filter.py @@ -78,6 +78,7 @@ def openapi_types(): 'email': (str,), # noqa: E501 'customer_id': (str,), # noqa: E501 'updated_since': (str,), # noqa: E501 + 'created_since': (str,), # noqa: E501 } @cached_property @@ -89,6 +90,7 @@ def discriminator(): 'email': 'email', # noqa: E501 'customer_id': 'customer_id', # noqa: E501 'updated_since': 'updated_since', # noqa: E501 + 'created_since': 'created_since', # noqa: E501 } read_only_vars = { @@ -135,6 +137,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 email (str): Customer email address to filter on. [optional] # noqa: E501 customer_id (str): Customer id to filter on. [optional] # noqa: E501 updated_since (str): Minimum date the order was last modified. [optional] # noqa: E501 + created_since (str): Minimum date the order was created. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -219,6 +222,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 email (str): Customer email address to filter on. [optional] # noqa: E501 customer_id (str): Customer id to filter on. [optional] # noqa: E501 updated_since (str): Minimum date the order was last modified. [optional] # noqa: E501 + created_since (str): Minimum date the order was created. [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) diff --git a/src/apideck/model/invoices_filter.py b/src/apideck/model/invoices_filter.py index 08d716dc9..ee5c9f250 100644 --- a/src/apideck/model/invoices_filter.py +++ b/src/apideck/model/invoices_filter.py @@ -76,6 +76,7 @@ def openapi_types(): """ return { 'updated_since': (datetime,), # noqa: E501 + 'created_since': (datetime,), # noqa: E501 } @cached_property @@ -85,6 +86,7 @@ def discriminator(): attribute_map = { 'updated_since': 'updated_since', # noqa: E501 + 'created_since': 'created_since', # noqa: E501 } read_only_vars = { @@ -129,6 +131,7 @@ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) updated_since (datetime): [optional] # noqa: E501 + created_since (datetime): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True) @@ -211,6 +214,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) updated_since (datetime): [optional] # noqa: E501 + created_since (datetime): [optional] # noqa: E501 """ _check_type = kwargs.pop('_check_type', True)