Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions robosystems_client/api/graphs/get_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def sync_detailed(
- Graphs you create or have been invited to

**Shared Repositories (isRepository: true):**
- Read-only data repositories like SEC filings, industry benchmarks
- Read-only data repositories (e.g., SEC filings)
- Access levels: `read`, `write` (for data contributions), `admin`
- Cannot be selected (each has separate subscription)
- Require separate subscriptions (personal, cannot be shared)
Expand Down Expand Up @@ -137,7 +137,7 @@ def sync(
- Graphs you create or have been invited to

**Shared Repositories (isRepository: true):**
- Read-only data repositories like SEC filings, industry benchmarks
- Read-only data repositories (e.g., SEC filings)
- Access levels: `read`, `write` (for data contributions), `admin`
- Cannot be selected (each has separate subscription)
- Require separate subscriptions (personal, cannot be shared)
Expand Down Expand Up @@ -198,7 +198,7 @@ async def asyncio_detailed(
- Graphs you create or have been invited to

**Shared Repositories (isRepository: true):**
- Read-only data repositories like SEC filings, industry benchmarks
- Read-only data repositories (e.g., SEC filings)
- Access levels: `read`, `write` (for data contributions), `admin`
- Cannot be selected (each has separate subscription)
- Require separate subscriptions (personal, cannot be shared)
Expand Down Expand Up @@ -261,7 +261,7 @@ async def asyncio(
- Graphs you create or have been invited to

**Shared Repositories (isRepository: true):**
- Read-only data repositories like SEC filings, industry benchmarks
- Read-only data repositories (e.g., SEC filings)
- Access levels: `read`, `write` (for data contributions), `admin`
- Cannot be selected (each has separate subscription)
- Require separate subscriptions (personal, cannot be shared)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def sync_detailed(

Includes:
- Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
- Shared repository subscriptions (SEC, industry, economic data) - org-level
- Shared repository subscriptions - org-level
- Operation costs and credit information
- Features and capabilities for each tier
- Enabled/disabled status for repositories
Expand Down Expand Up @@ -115,7 +115,7 @@ def sync(

Includes:
- Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
- Shared repository subscriptions (SEC, industry, economic data) - org-level
- Shared repository subscriptions - org-level
- Operation costs and credit information
- Features and capabilities for each tier
- Enabled/disabled status for repositories
Expand Down Expand Up @@ -157,7 +157,7 @@ async def asyncio_detailed(

Includes:
- Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
- Shared repository subscriptions (SEC, industry, economic data) - org-level
- Shared repository subscriptions - org-level
- Operation costs and credit information
- Features and capabilities for each tier
- Enabled/disabled status for repositories
Expand Down Expand Up @@ -201,7 +201,7 @@ async def asyncio(

Includes:
- Graph infrastructure tiers (ladybug-standard, ladybug-large, ladybug-xlarge) - per-graph pricing
- Shared repository subscriptions (SEC, industry, economic data) - org-level
- Shared repository subscriptions - org-level
- Operation costs and credit information
- Features and capabilities for each tier
- Enabled/disabled status for repositories
Expand Down
13 changes: 11 additions & 2 deletions robosystems_client/models/user_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,21 @@ class UserResponse:

Example:
{'accounts': [{'provider': 'github', 'provider_account_id': '12345', 'provider_type': 'oauth'}, {'provider':
'google', 'provider_account_id': '67890', 'provider_type': 'oauth'}], 'email': 'john@example.com', 'id':
'user-123', 'name': 'johndoe'}
'google', 'provider_account_id': '67890', 'provider_type': 'oauth'}], 'email': 'john@example.com',
'email_verified': True, 'id': 'user-123', 'name': 'johndoe'}

Attributes:
id (str): Unique identifier for the user
name (None | str | Unset): User's display name
email (None | str | Unset): User's email address
email_verified (bool | Unset): Whether user's email is verified Default: False.
accounts (list[AccountInfo] | Unset): User's authentication accounts
"""

id: str
name: None | str | Unset = UNSET
email: None | str | Unset = UNSET
email_verified: bool | Unset = False
accounts: list[AccountInfo] | Unset = UNSET
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)

Expand All @@ -52,6 +54,8 @@ def to_dict(self) -> dict[str, Any]:
else:
email = self.email

email_verified = self.email_verified

accounts: list[dict[str, Any]] | Unset = UNSET
if not isinstance(self.accounts, Unset):
accounts = []
Expand All @@ -70,6 +74,8 @@ def to_dict(self) -> dict[str, Any]:
field_dict["name"] = name
if email is not UNSET:
field_dict["email"] = email
if email_verified is not UNSET:
field_dict["email_verified"] = email_verified
if accounts is not UNSET:
field_dict["accounts"] = accounts

Expand Down Expand Up @@ -100,6 +106,8 @@ def _parse_email(data: object) -> None | str | Unset:

email = _parse_email(d.pop("email", UNSET))

email_verified = d.pop("email_verified", UNSET)

_accounts = d.pop("accounts", UNSET)
accounts: list[AccountInfo] | Unset = UNSET
if _accounts is not UNSET:
Expand All @@ -113,6 +121,7 @@ def _parse_email(data: object) -> None | str | Unset:
id=id,
name=name,
email=email,
email_verified=email_verified,
accounts=accounts,
)

Expand Down
Loading