Skip to content

Commit

Permalink
feat(api): manual updates (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Oct 30, 2024
1 parent 337f53d commit 18336f6
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
8 changes: 0 additions & 8 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ Methods:
- <code title="get /end-users/{id}/ping/{integrationSlug}">client.end_users.<a href="./src/conductor/resources/end_users.py">ping</a>(integration_slug, \*, id) -> <a href="./src/conductor/types/end_user_ping_response.py">EndUserPingResponse</a></code>
- <code title="post /end-users/{id}/request/{integrationSlug}">client.end_users.<a href="./src/conductor/resources/end_users.py">request</a>(integration_slug, \*, id, \*\*<a href="src/conductor/types/end_user_request_params.py">params</a>) -> <a href="./src/conductor/types/end_user_request_response.py">EndUserRequestResponse</a></code>

# IntegrationConnections

Types:

```python
from conductor.types import IntegrationConnection
```

# Qbd

## Accounts
Expand Down
1 change: 0 additions & 1 deletion src/conductor/types/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from .end_user_create_params import EndUserCreateParams as EndUserCreateParams
from .end_user_list_response import EndUserListResponse as EndUserListResponse
from .end_user_ping_response import EndUserPingResponse as EndUserPingResponse
from .integration_connection import IntegrationConnection as IntegrationConnection
from .end_user_request_params import EndUserRequestParams as EndUserRequestParams
from .end_user_delete_response import EndUserDeleteResponse as EndUserDeleteResponse
from .end_user_request_response import EndUserRequestResponse as EndUserRequestResponse
Expand Down
22 changes: 19 additions & 3 deletions src/conductor/types/end_user.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

from typing import List
from typing import List, Optional
from typing_extensions import Literal

from pydantic import Field as FieldInfo

from .._models import BaseModel
from .integration_connection import IntegrationConnection

__all__ = ["EndUser"]
__all__ = ["EndUser", "IntegrationConnection"]


class IntegrationConnection(BaseModel):
id: str
"""The unique identifier for this IntegrationConnection."""

created_at: str = FieldInfo(alias="createdAt")
"""The date and time when this IntegrationConnection was created."""

integration_slug: Literal["quickbooks_desktop"] = FieldInfo(alias="integrationSlug")
"""The identifier of the third-party platform to integrate."""

last_request_at: Optional[str] = FieldInfo(alias="lastRequestAt", default=None)
"""The date and time of your last API request to this IntegrationConnection."""

object_type: Literal["integration_connection"] = FieldInfo(alias="objectType")
"""The type of object. This value is always `"integration_connection"`."""


class EndUser(BaseModel):
Expand Down

0 comments on commit 18336f6

Please sign in to comment.