robosystems-client 0.1.14__py3-none-any.whl → 0.1.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of robosystems-client might be problematic. Click here for more details.
- robosystems_client/api/agent/auto_select_agent.py +264 -0
- robosystems_client/api/agent/batch_process_queries.py +279 -0
- robosystems_client/api/agent/execute_specific_agent.py +276 -0
- robosystems_client/api/agent/get_agent_metadata.py +256 -0
- robosystems_client/api/agent/list_agents.py +264 -0
- robosystems_client/api/agent/recommend_agent.py +273 -0
- robosystems_client/api/graph_credits/check_credit_balance.py +14 -10
- robosystems_client/models/__init__.py +35 -3
- robosystems_client/models/agent_list_response.py +74 -0
- robosystems_client/models/agent_list_response_agents.py +67 -0
- robosystems_client/models/{credits_summary_response_credits_by_addon_item.py → agent_list_response_agents_additional_property.py} +5 -5
- robosystems_client/models/agent_message.py +35 -1
- robosystems_client/models/agent_metadata_response.py +133 -0
- robosystems_client/models/agent_mode.py +11 -0
- robosystems_client/models/agent_recommendation.py +106 -0
- robosystems_client/models/agent_recommendation_request.py +108 -0
- robosystems_client/models/agent_recommendation_request_context_type_0.py +44 -0
- robosystems_client/models/agent_recommendation_response.py +82 -0
- robosystems_client/models/agent_request.py +110 -6
- robosystems_client/models/agent_response.py +161 -11
- robosystems_client/models/agent_response_error_details_type_0.py +44 -0
- robosystems_client/models/agent_response_tokens_used_type_0.py +44 -0
- robosystems_client/models/auth_response.py +20 -6
- robosystems_client/models/batch_agent_request.py +85 -0
- robosystems_client/models/batch_agent_response.py +90 -0
- robosystems_client/models/credit_summary.py +35 -9
- robosystems_client/models/credits_summary_response.py +47 -21
- robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py +44 -0
- robosystems_client/models/custom_schema_definition.py +7 -14
- robosystems_client/models/custom_schema_definition_metadata.py +1 -6
- robosystems_client/models/database_health_response.py +11 -11
- robosystems_client/models/database_info_response.py +13 -14
- robosystems_client/models/error_response.py +4 -8
- robosystems_client/models/graph_metadata.py +4 -5
- robosystems_client/models/health_status.py +2 -2
- robosystems_client/models/repository_credits_response.py +43 -16
- robosystems_client/models/schema_export_response.py +5 -8
- robosystems_client/models/schema_validation_request.py +3 -5
- robosystems_client/models/schema_validation_response.py +5 -5
- robosystems_client/models/selection_criteria.py +122 -0
- robosystems_client/models/success_response.py +1 -1
- {robosystems_client-0.1.14.dist-info → robosystems_client-0.1.16.dist-info}/METADATA +1 -1
- {robosystems_client-0.1.14.dist-info → robosystems_client-0.1.16.dist-info}/RECORD +44 -25
- robosystems_client/api/agent/query_financial_agent.py +0 -423
- {robosystems_client-0.1.14.dist-info → robosystems_client-0.1.16.dist-info}/WHEEL +0 -0
|
@@ -14,21 +14,20 @@ class DatabaseInfoResponse:
|
|
|
14
14
|
"""Response model for database information and statistics.
|
|
15
15
|
|
|
16
16
|
Attributes:
|
|
17
|
-
graph_id (str): Graph database identifier
|
|
18
|
-
database_name (str): Database name
|
|
19
|
-
database_size_bytes (int): Database size in bytes
|
|
20
|
-
database_size_mb (float): Database size in MB
|
|
21
|
-
node_count (int): Total number of nodes
|
|
22
|
-
relationship_count (int): Total number of relationships
|
|
23
|
-
node_labels (list[str]): List of node labels
|
|
24
|
-
relationship_types (list[str]): List of relationship types
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
last_modified (str): Last modification timestamp Example: 2024-01-15T10:30:00Z.
|
|
17
|
+
graph_id (str): Graph database identifier
|
|
18
|
+
database_name (str): Database name
|
|
19
|
+
database_size_bytes (int): Database size in bytes
|
|
20
|
+
database_size_mb (float): Database size in MB
|
|
21
|
+
node_count (int): Total number of nodes
|
|
22
|
+
relationship_count (int): Total number of relationships
|
|
23
|
+
node_labels (list[str]): List of node labels
|
|
24
|
+
relationship_types (list[str]): List of relationship types
|
|
25
|
+
created_at (str): Database creation timestamp
|
|
26
|
+
last_modified (str): Last modification timestamp
|
|
28
27
|
read_only (bool): Whether database is read-only
|
|
29
|
-
backup_count (int): Number of available backups
|
|
30
|
-
schema_version (Union[None, Unset, str]): Schema version
|
|
31
|
-
last_backup_date (Union[None, Unset, str]): Date of last backup
|
|
28
|
+
backup_count (int): Number of available backups
|
|
29
|
+
schema_version (Union[None, Unset, str]): Schema version
|
|
30
|
+
last_backup_date (Union[None, Unset, str]): Date of last backup
|
|
32
31
|
"""
|
|
33
32
|
|
|
34
33
|
graph_id: str
|
|
@@ -23,14 +23,10 @@ class ErrorResponse:
|
|
|
23
23
|
'timestamp': '2024-01-01T00:00:00Z'}
|
|
24
24
|
|
|
25
25
|
Attributes:
|
|
26
|
-
detail (str): Human-readable error message explaining what went wrong
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
request_id (Union[None, Unset, str]): Unique request ID for tracking and debugging Example:
|
|
31
|
-
req_1234567890abcdef.
|
|
32
|
-
timestamp (Union[None, Unset, datetime.datetime]): Timestamp when the error occurred Example:
|
|
33
|
-
2024-01-01T00:00:00Z.
|
|
26
|
+
detail (str): Human-readable error message explaining what went wrong
|
|
27
|
+
code (Union[None, Unset, str]): Machine-readable error code for programmatic handling
|
|
28
|
+
request_id (Union[None, Unset, str]): Unique request ID for tracking and debugging
|
|
29
|
+
timestamp (Union[None, Unset, datetime.datetime]): Timestamp when the error occurred
|
|
34
30
|
"""
|
|
35
31
|
|
|
36
32
|
detail: str
|
|
@@ -14,11 +14,10 @@ class GraphMetadata:
|
|
|
14
14
|
"""Metadata for graph creation.
|
|
15
15
|
|
|
16
16
|
Attributes:
|
|
17
|
-
graph_name (str): Display name for the graph
|
|
18
|
-
description (Union[None, Unset, str]): Optional description
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
tags (Union[Unset, list[str]]): Tags for organizing graphs Example: ['production', 'inventory', 'retail'].
|
|
17
|
+
graph_name (str): Display name for the graph
|
|
18
|
+
description (Union[None, Unset, str]): Optional description
|
|
19
|
+
schema_extensions (Union[Unset, list[str]]): Schema extensions to enable
|
|
20
|
+
tags (Union[Unset, list[str]]): Tags for organizing graphs
|
|
22
21
|
"""
|
|
23
22
|
|
|
24
23
|
graph_name: str
|
|
@@ -20,8 +20,8 @@ class HealthStatus:
|
|
|
20
20
|
"""Health check status information.
|
|
21
21
|
|
|
22
22
|
Attributes:
|
|
23
|
-
status (str): Current health status
|
|
24
|
-
timestamp (datetime.datetime): Time of health check
|
|
23
|
+
status (str): Current health status
|
|
24
|
+
timestamp (datetime.datetime): Time of health check
|
|
25
25
|
details (Union['HealthStatusDetailsType0', None, Unset]): Additional health check details
|
|
26
26
|
"""
|
|
27
27
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from collections.abc import Mapping
|
|
2
|
-
from typing import TYPE_CHECKING, Any, TypeVar, Union
|
|
2
|
+
from typing import TYPE_CHECKING, Any, TypeVar, Union, cast
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
@@ -20,26 +20,36 @@ class RepositoryCreditsResponse:
|
|
|
20
20
|
Attributes:
|
|
21
21
|
repository (str): Repository identifier
|
|
22
22
|
has_access (bool): Whether user has access
|
|
23
|
-
message (Union[Unset, str]): Access message
|
|
24
|
-
credits_ (Union[
|
|
23
|
+
message (Union[None, Unset, str]): Access message
|
|
24
|
+
credits_ (Union['CreditSummary', None, Unset]): Credit summary if access available
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
repository: str
|
|
28
28
|
has_access: bool
|
|
29
|
-
message: Union[Unset, str] = UNSET
|
|
30
|
-
credits_: Union[
|
|
29
|
+
message: Union[None, Unset, str] = UNSET
|
|
30
|
+
credits_: Union["CreditSummary", None, Unset] = UNSET
|
|
31
31
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
32
32
|
|
|
33
33
|
def to_dict(self) -> dict[str, Any]:
|
|
34
|
+
from ..models.credit_summary import CreditSummary
|
|
35
|
+
|
|
34
36
|
repository = self.repository
|
|
35
37
|
|
|
36
38
|
has_access = self.has_access
|
|
37
39
|
|
|
38
|
-
message
|
|
40
|
+
message: Union[None, Unset, str]
|
|
41
|
+
if isinstance(self.message, Unset):
|
|
42
|
+
message = UNSET
|
|
43
|
+
else:
|
|
44
|
+
message = self.message
|
|
39
45
|
|
|
40
|
-
credits_: Union[Unset, dict[str, Any]]
|
|
41
|
-
if
|
|
46
|
+
credits_: Union[None, Unset, dict[str, Any]]
|
|
47
|
+
if isinstance(self.credits_, Unset):
|
|
48
|
+
credits_ = UNSET
|
|
49
|
+
elif isinstance(self.credits_, CreditSummary):
|
|
42
50
|
credits_ = self.credits_.to_dict()
|
|
51
|
+
else:
|
|
52
|
+
credits_ = self.credits_
|
|
43
53
|
|
|
44
54
|
field_dict: dict[str, Any] = {}
|
|
45
55
|
field_dict.update(self.additional_properties)
|
|
@@ -65,14 +75,31 @@ class RepositoryCreditsResponse:
|
|
|
65
75
|
|
|
66
76
|
has_access = d.pop("has_access")
|
|
67
77
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
78
|
+
def _parse_message(data: object) -> Union[None, Unset, str]:
|
|
79
|
+
if data is None:
|
|
80
|
+
return data
|
|
81
|
+
if isinstance(data, Unset):
|
|
82
|
+
return data
|
|
83
|
+
return cast(Union[None, Unset, str], data)
|
|
84
|
+
|
|
85
|
+
message = _parse_message(d.pop("message", UNSET))
|
|
86
|
+
|
|
87
|
+
def _parse_credits_(data: object) -> Union["CreditSummary", None, Unset]:
|
|
88
|
+
if data is None:
|
|
89
|
+
return data
|
|
90
|
+
if isinstance(data, Unset):
|
|
91
|
+
return data
|
|
92
|
+
try:
|
|
93
|
+
if not isinstance(data, dict):
|
|
94
|
+
raise TypeError()
|
|
95
|
+
credits_type_0 = CreditSummary.from_dict(data)
|
|
96
|
+
|
|
97
|
+
return credits_type_0
|
|
98
|
+
except: # noqa: E722
|
|
99
|
+
pass
|
|
100
|
+
return cast(Union["CreditSummary", None, Unset], data)
|
|
101
|
+
|
|
102
|
+
credits_ = _parse_credits_(d.pop("credits", UNSET))
|
|
76
103
|
|
|
77
104
|
repository_credits_response = cls(
|
|
78
105
|
repository=repository,
|
|
@@ -23,14 +23,11 @@ class SchemaExportResponse:
|
|
|
23
23
|
"""Response model for schema export.
|
|
24
24
|
|
|
25
25
|
Attributes:
|
|
26
|
-
graph_id (str): Graph ID
|
|
27
|
-
schema_definition (Union['SchemaExportResponseSchemaDefinitionType0', str]): Exported schema definition
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
exported_at (str): Export timestamp Example: 2024-01-15T10:30:00Z.
|
|
32
|
-
data_stats (Union['SchemaExportResponseDataStatsType0', None, Unset]): Data statistics if requested Example:
|
|
33
|
-
{'node_counts': {'Entity': 1, 'Report': 25}, 'total_nodes': 26}.
|
|
26
|
+
graph_id (str): Graph ID
|
|
27
|
+
schema_definition (Union['SchemaExportResponseSchemaDefinitionType0', str]): Exported schema definition
|
|
28
|
+
format_ (str): Export format used
|
|
29
|
+
exported_at (str): Export timestamp
|
|
30
|
+
data_stats (Union['SchemaExportResponseDataStatsType0', None, Unset]): Data statistics if requested
|
|
34
31
|
"""
|
|
35
32
|
|
|
36
33
|
graph_id: str
|
|
@@ -21,12 +21,10 @@ class SchemaValidationRequest:
|
|
|
21
21
|
|
|
22
22
|
Attributes:
|
|
23
23
|
schema_definition (Union['SchemaValidationRequestSchemaDefinitionType0', str]): Schema definition as JSON dict
|
|
24
|
-
or JSON/YAML string
|
|
25
|
-
|
|
26
|
-
'is_required': True}]}], 'version': '1.0.0'}.
|
|
27
|
-
format_ (Union[Unset, str]): Schema format: json, yaml, or dict Default: 'json'. Example: json.
|
|
24
|
+
or JSON/YAML string
|
|
25
|
+
format_ (Union[Unset, str]): Schema format: json, yaml, or dict Default: 'json'.
|
|
28
26
|
check_compatibility (Union[None, Unset, list[str]]): List of existing schema extensions to check compatibility
|
|
29
|
-
with
|
|
27
|
+
with
|
|
30
28
|
"""
|
|
31
29
|
|
|
32
30
|
schema_definition: Union["SchemaValidationRequestSchemaDefinitionType0", str]
|
|
@@ -23,14 +23,14 @@ class SchemaValidationResponse:
|
|
|
23
23
|
"""Response model for schema validation.
|
|
24
24
|
|
|
25
25
|
Attributes:
|
|
26
|
-
valid (bool): Whether the schema is valid
|
|
27
|
-
message (str): Validation message
|
|
26
|
+
valid (bool): Whether the schema is valid
|
|
27
|
+
message (str): Validation message
|
|
28
28
|
errors (Union[None, Unset, list[str]]): List of validation errors
|
|
29
|
-
warnings (Union[None, Unset, list[str]]): List of warnings
|
|
29
|
+
warnings (Union[None, Unset, list[str]]): List of warnings
|
|
30
30
|
stats (Union['SchemaValidationResponseStatsType0', None, Unset]): Schema statistics (nodes, relationships,
|
|
31
|
-
properties)
|
|
31
|
+
properties)
|
|
32
32
|
compatibility (Union['SchemaValidationResponseCompatibilityType0', None, Unset]): Compatibility check results if
|
|
33
|
-
requested
|
|
33
|
+
requested
|
|
34
34
|
"""
|
|
35
35
|
|
|
36
36
|
valid: bool
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from typing import Any, TypeVar, Union, cast
|
|
3
|
+
|
|
4
|
+
from attrs import define as _attrs_define
|
|
5
|
+
from attrs import field as _attrs_field
|
|
6
|
+
|
|
7
|
+
from ..models.agent_mode import AgentMode
|
|
8
|
+
from ..types import UNSET, Unset
|
|
9
|
+
|
|
10
|
+
T = TypeVar("T", bound="SelectionCriteria")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@_attrs_define
|
|
14
|
+
class SelectionCriteria:
|
|
15
|
+
"""Criteria for agent selection.
|
|
16
|
+
|
|
17
|
+
Attributes:
|
|
18
|
+
min_confidence (Union[Unset, float]): Minimum confidence score Default: 0.3.
|
|
19
|
+
required_capabilities (Union[Unset, list[str]]): Required agent capabilities
|
|
20
|
+
preferred_mode (Union[AgentMode, None, Unset]): Preferred execution mode
|
|
21
|
+
max_response_time (Union[Unset, float]): Maximum response time in seconds Default: 60.0.
|
|
22
|
+
excluded_agents (Union[Unset, list[str]]): Agents to exclude from selection
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
min_confidence: Union[Unset, float] = 0.3
|
|
26
|
+
required_capabilities: Union[Unset, list[str]] = UNSET
|
|
27
|
+
preferred_mode: Union[AgentMode, None, Unset] = UNSET
|
|
28
|
+
max_response_time: Union[Unset, float] = 60.0
|
|
29
|
+
excluded_agents: Union[Unset, list[str]] = UNSET
|
|
30
|
+
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
31
|
+
|
|
32
|
+
def to_dict(self) -> dict[str, Any]:
|
|
33
|
+
min_confidence = self.min_confidence
|
|
34
|
+
|
|
35
|
+
required_capabilities: Union[Unset, list[str]] = UNSET
|
|
36
|
+
if not isinstance(self.required_capabilities, Unset):
|
|
37
|
+
required_capabilities = self.required_capabilities
|
|
38
|
+
|
|
39
|
+
preferred_mode: Union[None, Unset, str]
|
|
40
|
+
if isinstance(self.preferred_mode, Unset):
|
|
41
|
+
preferred_mode = UNSET
|
|
42
|
+
elif isinstance(self.preferred_mode, AgentMode):
|
|
43
|
+
preferred_mode = self.preferred_mode.value
|
|
44
|
+
else:
|
|
45
|
+
preferred_mode = self.preferred_mode
|
|
46
|
+
|
|
47
|
+
max_response_time = self.max_response_time
|
|
48
|
+
|
|
49
|
+
excluded_agents: Union[Unset, list[str]] = UNSET
|
|
50
|
+
if not isinstance(self.excluded_agents, Unset):
|
|
51
|
+
excluded_agents = self.excluded_agents
|
|
52
|
+
|
|
53
|
+
field_dict: dict[str, Any] = {}
|
|
54
|
+
field_dict.update(self.additional_properties)
|
|
55
|
+
field_dict.update({})
|
|
56
|
+
if min_confidence is not UNSET:
|
|
57
|
+
field_dict["min_confidence"] = min_confidence
|
|
58
|
+
if required_capabilities is not UNSET:
|
|
59
|
+
field_dict["required_capabilities"] = required_capabilities
|
|
60
|
+
if preferred_mode is not UNSET:
|
|
61
|
+
field_dict["preferred_mode"] = preferred_mode
|
|
62
|
+
if max_response_time is not UNSET:
|
|
63
|
+
field_dict["max_response_time"] = max_response_time
|
|
64
|
+
if excluded_agents is not UNSET:
|
|
65
|
+
field_dict["excluded_agents"] = excluded_agents
|
|
66
|
+
|
|
67
|
+
return field_dict
|
|
68
|
+
|
|
69
|
+
@classmethod
|
|
70
|
+
def from_dict(cls: type[T], src_dict: Mapping[str, Any]) -> T:
|
|
71
|
+
d = dict(src_dict)
|
|
72
|
+
min_confidence = d.pop("min_confidence", UNSET)
|
|
73
|
+
|
|
74
|
+
required_capabilities = cast(list[str], d.pop("required_capabilities", UNSET))
|
|
75
|
+
|
|
76
|
+
def _parse_preferred_mode(data: object) -> Union[AgentMode, None, Unset]:
|
|
77
|
+
if data is None:
|
|
78
|
+
return data
|
|
79
|
+
if isinstance(data, Unset):
|
|
80
|
+
return data
|
|
81
|
+
try:
|
|
82
|
+
if not isinstance(data, str):
|
|
83
|
+
raise TypeError()
|
|
84
|
+
preferred_mode_type_0 = AgentMode(data)
|
|
85
|
+
|
|
86
|
+
return preferred_mode_type_0
|
|
87
|
+
except: # noqa: E722
|
|
88
|
+
pass
|
|
89
|
+
return cast(Union[AgentMode, None, Unset], data)
|
|
90
|
+
|
|
91
|
+
preferred_mode = _parse_preferred_mode(d.pop("preferred_mode", UNSET))
|
|
92
|
+
|
|
93
|
+
max_response_time = d.pop("max_response_time", UNSET)
|
|
94
|
+
|
|
95
|
+
excluded_agents = cast(list[str], d.pop("excluded_agents", UNSET))
|
|
96
|
+
|
|
97
|
+
selection_criteria = cls(
|
|
98
|
+
min_confidence=min_confidence,
|
|
99
|
+
required_capabilities=required_capabilities,
|
|
100
|
+
preferred_mode=preferred_mode,
|
|
101
|
+
max_response_time=max_response_time,
|
|
102
|
+
excluded_agents=excluded_agents,
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
selection_criteria.additional_properties = d
|
|
106
|
+
return selection_criteria
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
def additional_keys(self) -> list[str]:
|
|
110
|
+
return list(self.additional_properties.keys())
|
|
111
|
+
|
|
112
|
+
def __getitem__(self, key: str) -> Any:
|
|
113
|
+
return self.additional_properties[key]
|
|
114
|
+
|
|
115
|
+
def __setitem__(self, key: str, value: Any) -> None:
|
|
116
|
+
self.additional_properties[key] = value
|
|
117
|
+
|
|
118
|
+
def __delitem__(self, key: str) -> None:
|
|
119
|
+
del self.additional_properties[key]
|
|
120
|
+
|
|
121
|
+
def __contains__(self, key: str) -> bool:
|
|
122
|
+
return key in self.additional_properties
|
|
@@ -21,7 +21,7 @@ class SuccessResponse:
|
|
|
21
21
|
{'data': {'deleted_count': 1}, 'message': 'Resource deleted successfully', 'success': True}
|
|
22
22
|
|
|
23
23
|
Attributes:
|
|
24
|
-
message (str): Human-readable success message
|
|
24
|
+
message (str): Human-readable success message
|
|
25
25
|
success (Union[Unset, bool]): Indicates the operation completed successfully Default: True.
|
|
26
26
|
data (Union['SuccessResponseDataType0', None, Unset]): Optional additional data related to the operation
|
|
27
27
|
"""
|
|
@@ -6,7 +6,12 @@ robosystems_client/sdk-config.yaml,sha256=Y_A8qSC2zHLYy6d443Rlgdkw2GleOSFjYvq_Qm
|
|
|
6
6
|
robosystems_client/types.py,sha256=l5mTsR9GphXnb6qHvveUHNZ_GpiRMqweGNjgKmn6qXE,1349
|
|
7
7
|
robosystems_client/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
|
8
8
|
robosystems_client/api/agent/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
9
|
-
robosystems_client/api/agent/
|
|
9
|
+
robosystems_client/api/agent/auto_select_agent.py,sha256=mWcJ-JLm3Lrf4s9RQjGxOtgmudVf-8qSchB-tKUcyjw,7785
|
|
10
|
+
robosystems_client/api/agent/batch_process_queries.py,sha256=-x-iNO8UZ_je7NZflRUzSZrlTp2kSMaAMyF1HmXy5k0,8077
|
|
11
|
+
robosystems_client/api/agent/execute_specific_agent.py,sha256=X9NH0MhSph7VS-vbLCFfJlXqwi6R46lPmbS0hP-rod4,8084
|
|
12
|
+
robosystems_client/api/agent/get_agent_metadata.py,sha256=gnMUR0fJhxHdjMC0xBOxx2stbvSCZqGMXVlZfXq97Sc,7293
|
|
13
|
+
robosystems_client/api/agent/list_agents.py,sha256=0Vf3q0gIu6X-jQ5u87D1Qtl2xFjsuG21_5TvuAxwsO4,7773
|
|
14
|
+
robosystems_client/api/agent/recommend_agent.py,sha256=yQkeEvRq8yRIHYo763XQWKMVGPYfuEf4OUuR1b4d89A,8087
|
|
10
15
|
robosystems_client/api/auth/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
11
16
|
robosystems_client/api/auth/check_password_strength.py,sha256=hukbrO7txh61gu2B4cX0ZPWV3XCF1O2Mr5US4acLOP4,4671
|
|
12
17
|
robosystems_client/api/auth/complete_sso_auth.py,sha256=9wj_oQBdzP7bzlst821sXwf7-MlZkQfaKlV5dUSeQSo,4885
|
|
@@ -52,7 +57,7 @@ robosystems_client/api/graph_billing/get_graph_billing_history.py,sha256=hi28XqY
|
|
|
52
57
|
robosystems_client/api/graph_billing/get_graph_monthly_bill.py,sha256=vMrhCkZ-JaG20lSOEM36iCezT8tsxSSTvWRfDJLdCWI,8453
|
|
53
58
|
robosystems_client/api/graph_billing/get_graph_usage_details.py,sha256=3tVcKKbu4dkwM1KEZgIs7s606XYtQK0Eme1vHbzid34,10256
|
|
54
59
|
robosystems_client/api/graph_credits/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
55
|
-
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=
|
|
60
|
+
robosystems_client/api/graph_credits/check_credit_balance.py,sha256=rDVJFJ5Rp-OpPYfMU6zoNhxerD-v0hreKPEkwVlCK0A,9525
|
|
56
61
|
robosystems_client/api/graph_credits/check_storage_limits.py,sha256=Gq6_8dyCb05BPGVOR4qe-nJbFIfxrGu8XF--imfGnXU,7547
|
|
57
62
|
robosystems_client/api/graph_credits/get_credit_summary.py,sha256=X2yFM3ybAh15SDLE6l1wl8ElhIVKr9mu1DPORlsKPyk,7401
|
|
58
63
|
robosystems_client/api/graph_credits/get_storage_usage.py,sha256=pE3x94H_83rLY_OtY47XNn3lxAvdwMg847hM1U1f6hA,8112
|
|
@@ -125,17 +130,28 @@ robosystems_client/extensions/utils.py,sha256=6yQJFg6---nbD26IS_JxGiFr3lkVlIsSjl
|
|
|
125
130
|
robosystems_client/extensions/tests/__init__.py,sha256=S61GPbL-2pgLVe11uHwHLenpIpzyywWXzXqJypr0T3Q,46
|
|
126
131
|
robosystems_client/extensions/tests/test_integration.py,sha256=gYhttWufERNmlY7j-CnWzQhFCDF70rBFVw7JDzgT1-M,15443
|
|
127
132
|
robosystems_client/extensions/tests/test_unit.py,sha256=REnfMGpgH-FS-n860-3qXEUqAxZ7zbci-nIDPYuB7Tw,16712
|
|
128
|
-
robosystems_client/models/__init__.py,sha256=
|
|
133
|
+
robosystems_client/models/__init__.py,sha256=1h-5q1WyNqaPf4Znd1l_UWMXI49FJr9cHJS1q3B4eCw,19248
|
|
129
134
|
robosystems_client/models/account_info.py,sha256=rcENAioMA3olA3Sks5raIqeODqRgrmFuiFhwzLunrGI,2054
|
|
130
135
|
robosystems_client/models/add_on_credit_info.py,sha256=h65KAb8yZP_SGpsB2Ref4IaBCthEDYJgFGTd9PjUpfs,3221
|
|
131
|
-
robosystems_client/models/
|
|
132
|
-
robosystems_client/models/
|
|
136
|
+
robosystems_client/models/agent_list_response.py,sha256=68PkLJ3goUZlm8WZ4HOjlWLZrPYKwJQ6PTPm2ZNRmBM,1873
|
|
137
|
+
robosystems_client/models/agent_list_response_agents.py,sha256=RQMc6dTphBjFeLD4pt2RhQyd1AedF5GW5ujHYdyZMCg,1987
|
|
138
|
+
robosystems_client/models/agent_list_response_agents_additional_property.py,sha256=vreiM9mJxyMaSNTUfV34qRTgzyymO-ZNwhdcOCSYlMo,1292
|
|
139
|
+
robosystems_client/models/agent_message.py,sha256=DfjpxQU8V4e8owzg2tx1oeg34miPOVVhOEpI2gPIWBo,2624
|
|
140
|
+
robosystems_client/models/agent_metadata_response.py,sha256=_v6B5ib6-BALN5lRmmiAn4moQvZ6vBOtNVr3hOVJ8Es,3514
|
|
141
|
+
robosystems_client/models/agent_mode.py,sha256=vpnDC5i2Pr9ouIZjQpk2ystmg01hD2bY1IOhRLebU8E,200
|
|
142
|
+
robosystems_client/models/agent_recommendation.py,sha256=EtkEq7lO7Yt-UDdnSmakQixLcdvlchZQgj7Bloboyqw,2746
|
|
143
|
+
robosystems_client/models/agent_recommendation_request.py,sha256=LEtAgr1cijmvn2fa048N1Mh-okr3hXG675QepjeupR8,3015
|
|
144
|
+
robosystems_client/models/agent_recommendation_request_context_type_0.py,sha256=7VBeqXzaF59UVHntbx5MN5oG-E6J2pnSt26oSPh_JDs,1277
|
|
145
|
+
robosystems_client/models/agent_recommendation_response.py,sha256=N312Za_tOfTEJBg_dq8zvHBWfxJzmolqWesm6lmaz7E,2329
|
|
146
|
+
robosystems_client/models/agent_request.py,sha256=EP1OHjI1UwwDTFFKAYnUldOxtjg6aeyVEYBqX6GVKSI,7637
|
|
133
147
|
robosystems_client/models/agent_request_context_type_0.py,sha256=ejbTwiXYLwaXvtUGuxeNwej4YSEoQ6WzhLdeRKLS8zE,1204
|
|
134
|
-
robosystems_client/models/agent_response.py,sha256=
|
|
148
|
+
robosystems_client/models/agent_response.py,sha256=RKoVxmVdwpnWKDPpnjdCmYdTrTZ0i_5tdt3mrBVCFfw,9344
|
|
149
|
+
robosystems_client/models/agent_response_error_details_type_0.py,sha256=sXLU3BcfMvvt8F0Hw_NhYXjxtUF-F-HAw785a63X5bA,1237
|
|
135
150
|
robosystems_client/models/agent_response_metadata_type_0.py,sha256=3Kn2zUDzbp49MXItEHWyA0ujGIpSvVHehfUIIc4KhP4,1214
|
|
151
|
+
robosystems_client/models/agent_response_tokens_used_type_0.py,sha256=IcDJbOww9ZMAHvS8R4Stk8OJnQ30TVHlp89HN7tGZzg,1227
|
|
136
152
|
robosystems_client/models/api_key_info.py,sha256=7B-BRKFsLHC-3VsvT3xuWu49Flo3ruaI-MywB5699SE,3421
|
|
137
153
|
robosystems_client/models/api_keys_response.py,sha256=SaqZcuXOQkT4rVT4uc8SlKTu_F0NZT5T9WjRFpCIGu8,1882
|
|
138
|
-
robosystems_client/models/auth_response.py,sha256=
|
|
154
|
+
robosystems_client/models/auth_response.py,sha256=AuXkzebfEcgIdR3allttnm9x_PYNdXNLfs3xshioqJo,2404
|
|
139
155
|
robosystems_client/models/auth_response_user.py,sha256=QSXztxSkwxAbCkUJBeKcN-_4d-NONtJnMB99cJHmuAw,1173
|
|
140
156
|
robosystems_client/models/available_extension.py,sha256=YKL7EfIcYfSdBFzpmlMXp0GQqCdab8CiRtapIpO6UOc,1824
|
|
141
157
|
robosystems_client/models/available_extensions_response.py,sha256=zt9ggowoErKKoqxle5sa10XCx5wh-j71xw-Rq4Ya16c,1979
|
|
@@ -145,6 +161,8 @@ robosystems_client/models/backup_response.py,sha256=LCJgvjSDK6KMOXGJm9coTiU7VSQ9
|
|
|
145
161
|
robosystems_client/models/backup_restore_request.py,sha256=52Y1XfaSzu5dN54OyQlcOxPyxnCJi2m-rpOnGrhPhpg,2409
|
|
146
162
|
robosystems_client/models/backup_stats_response.py,sha256=_CLWy2wrczlIae_Li6NDSLSSG-Vt53ePx37az64siBg,4688
|
|
147
163
|
robosystems_client/models/backup_stats_response_backup_formats.py,sha256=dtxMpx0q6t5MZ1s37lQ-wttexoz7MkD8bAbaZ7SzDZ0,1244
|
|
164
|
+
robosystems_client/models/batch_agent_request.py,sha256=uVZ56TdrULFqNCc-KpC0AW99lMV0fW9udpB8ANoOmH0,2222
|
|
165
|
+
robosystems_client/models/batch_agent_response.py,sha256=UI2dI317RBvgtpHgTF3j--W33wZr76lFdd8gSTee4Ro,2492
|
|
148
166
|
robosystems_client/models/cancel_operation_response_canceloperation.py,sha256=baSI2jz9ormrpuRCI1cq0lnZ9BAPM0N3SuFgf_JhKv8,1271
|
|
149
167
|
robosystems_client/models/cancellation_response.py,sha256=2URj3ukcdjh5UvPpnSauP_CLz-9TLM4Il20MYBzzfTw,1955
|
|
150
168
|
robosystems_client/models/check_credit_balance_response_checkcreditbalance.py,sha256=izJJIZJaZkfJY7pqYg7nBPEv9IgRpJ5WSw6hu7VUZEk,1304
|
|
@@ -165,20 +183,20 @@ robosystems_client/models/create_connection_request_provider.py,sha256=TBZm3ApK3
|
|
|
165
183
|
robosystems_client/models/create_graph_request.py,sha256=KaGJLxsHB7ukdcuT8GLnOfcjrE3E1kl6LuocEwXfk48,5506
|
|
166
184
|
robosystems_client/models/create_subgraph_request.py,sha256=upBIPF4MIrawR_fAodpo4ts9sinq7FyDT2VyfR_uCp8,5777
|
|
167
185
|
robosystems_client/models/create_subgraph_request_metadata_type_0.py,sha256=dqVIzDSjIeTsKLCC7pmJAik2eJPIyi_6uTHzkspU37M,1257
|
|
168
|
-
robosystems_client/models/credit_summary.py,sha256=
|
|
186
|
+
robosystems_client/models/credit_summary.py,sha256=TaK9e6Jp7yqWMtBDVfB2bL7mlTw87Qwf1_foausmQwI,4802
|
|
169
187
|
robosystems_client/models/credit_summary_response.py,sha256=M5ZFcNZ4IqtZZG1zFrdOBKGsEs9S9A174LVVmdplItM,3712
|
|
170
|
-
robosystems_client/models/credits_summary_response.py,sha256=
|
|
171
|
-
robosystems_client/models/
|
|
172
|
-
robosystems_client/models/custom_schema_definition.py,sha256=
|
|
173
|
-
robosystems_client/models/custom_schema_definition_metadata.py,sha256=
|
|
188
|
+
robosystems_client/models/credits_summary_response.py,sha256=kDjWsEWUl-Ce3IPuGHcWTOhV_-QN2VwDS_W76sx60rY,4616
|
|
189
|
+
robosystems_client/models/credits_summary_response_credits_by_addon_type_0_item.py,sha256=smzAGFk3JDzGV-T7Xz-1fahv3vdvetzEn8eBObCJbXw,1321
|
|
190
|
+
robosystems_client/models/custom_schema_definition.py,sha256=2W0UNq6tdPQ-IlKMA9YGAf9uXBMTfwIGf0d7S2dU8lc,5957
|
|
191
|
+
robosystems_client/models/custom_schema_definition_metadata.py,sha256=VNy6EY4n0N5P4tirf1UsT9-z-pYvI6FN-iOPTG7zuwY,1256
|
|
174
192
|
robosystems_client/models/custom_schema_definition_nodes_item.py,sha256=0hg2ctntwlXkP43NdtAa2gRFMogKU80Mwg_JmSUb4h4,1239
|
|
175
193
|
robosystems_client/models/custom_schema_definition_relationships_item.py,sha256=lJZACnh463SpmX2ncTV9Xi6NcHIejEn-SKQ81PZN654,1279
|
|
176
194
|
robosystems_client/models/cypher_query_request.py,sha256=Y40qJmtFszBPkKw1VhezR0G4Nys1HyQHFyFJMhRY2ew,3641
|
|
177
195
|
robosystems_client/models/cypher_query_request_parameters_type_0.py,sha256=I8QFYojTUqvgSeiS2uP79PQQfqulTB89OyXXgYbl3Cc,1252
|
|
178
196
|
robosystems_client/models/data_frame_copy_request.py,sha256=kooobSAmts4dyjgKmird_taE_dabWqUY6k-ekGtj_Pw,4215
|
|
179
197
|
robosystems_client/models/data_frame_copy_request_format.py,sha256=FdD8grwEoNlP7BMpFoFrHcZjYmhxvk_CHT-0qNQShI4,183
|
|
180
|
-
robosystems_client/models/database_health_response.py,sha256=
|
|
181
|
-
robosystems_client/models/database_info_response.py,sha256=
|
|
198
|
+
robosystems_client/models/database_health_response.py,sha256=LdvO6aVSUiEej3vyshiu6zoP_FcgbJmpCll0g-aNci0,5631
|
|
199
|
+
robosystems_client/models/database_info_response.py,sha256=lj1MUSUzLq5WNJyxXU6g5M7RrPOBPSffR25WUp0EjXc,5652
|
|
182
200
|
robosystems_client/models/delete_subgraph_request.py,sha256=F0UVznC5pUnwhX2zZWyPdSxpwtrj-jZIVmnTKCgjDNI,2682
|
|
183
201
|
robosystems_client/models/delete_subgraph_response.py,sha256=zPgaUcaqzwmaxEFwok2c3OLCEe1YT4-mnckD_Lr-Nd4,3340
|
|
184
202
|
robosystems_client/models/detailed_transactions_response.py,sha256=gNvssogFCR4cK54swZMpHhUOHhRLTwiUlI0oZpVwj9g,3660
|
|
@@ -186,7 +204,7 @@ robosystems_client/models/detailed_transactions_response_date_range.py,sha256=Ky
|
|
|
186
204
|
robosystems_client/models/detailed_transactions_response_summary.py,sha256=oPH6-HWWOLb9zmhFow3DWaxo5Y4YcfIll8RtQtPfLMA,1826
|
|
187
205
|
robosystems_client/models/enhanced_credit_transaction_response.py,sha256=LXGkDvL0Sia6nMNDAxxfCtCNcVAIsnPSPbaYO80Z7hI,5302
|
|
188
206
|
robosystems_client/models/enhanced_credit_transaction_response_metadata.py,sha256=UaLqPb6t9UXZYwq9mWaK6Oh7zpyGmzU-geJ6o_kjLT8,1289
|
|
189
|
-
robosystems_client/models/error_response.py,sha256=
|
|
207
|
+
robosystems_client/models/error_response.py,sha256=Kc97dTQxR9jANL-MOPwnE4voKA1O0X3qkx_jeY9k-BU,4111
|
|
190
208
|
robosystems_client/models/exchange_token_request.py,sha256=76zVpSXbbuJpMAnf_rRT0EjpxH1PZD9nFLJK8i6cn6E,3290
|
|
191
209
|
robosystems_client/models/exchange_token_request_metadata_type_0.py,sha256=4ndzrJRefnYO_ikDiySWS2aHBNFCG5Y2SF-bHF_jPYw,1252
|
|
192
210
|
robosystems_client/models/get_all_credit_summaries_response_getallcreditsummaries.py,sha256=Z-PEihC2i7G8QLlmQ1PgyLJIlETUrXyNF9j4HXt3B90,1337
|
|
@@ -203,7 +221,7 @@ robosystems_client/models/get_operation_status_response_getoperationstatus.py,sh
|
|
|
203
221
|
robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py,sha256=0-_y-77YHmK-tFdt7rQbC5j9VK4pfiE_V756EmglpaU,1377
|
|
204
222
|
robosystems_client/models/get_storage_usage_response_getstorageusage.py,sha256=5ZpeVOQNa8FLcI82C3-CCnYbtgUPXqIUa7d6cHr0Ddo,1274
|
|
205
223
|
robosystems_client/models/graph_info.py,sha256=5roDVOk3Y0sWsIS6468vHFcw2J6LFX7xK44c3L0Yvqs,2166
|
|
206
|
-
robosystems_client/models/graph_metadata.py,sha256=
|
|
224
|
+
robosystems_client/models/graph_metadata.py,sha256=yQt4onkfdderC3HRlz1beIMoSPRzrgjkqfFRuBoFmVo,2995
|
|
207
225
|
robosystems_client/models/graph_metrics_response.py,sha256=vKPF6Jqu17dsPNfTr5saUFro-hnAiCyh3Me1DA3BsuQ,5878
|
|
208
226
|
robosystems_client/models/graph_metrics_response_estimated_size.py,sha256=Dfe4zb_nW37PFlfO2YvgN5o3kSeMjW3284-Oay0qfxw,1271
|
|
209
227
|
robosystems_client/models/graph_metrics_response_health_status.py,sha256=IpwCxU4V5fHNP-2sVQW4uV9iAl_b0KA4ECEsEggfeb4,1270
|
|
@@ -213,7 +231,7 @@ robosystems_client/models/graph_usage_response.py,sha256=zdtgINU0tQw4eEgRtOUAwdU
|
|
|
213
231
|
robosystems_client/models/graph_usage_response_query_statistics.py,sha256=YjUU3AcJ9TAYHbsLncm2u497J3M8DVacnZwiQOzkIYY,1264
|
|
214
232
|
robosystems_client/models/graph_usage_response_recent_activity.py,sha256=zuhLvyEIn7kpx1Xxi32EVcNmCzHlR-9xeSQ_sCDf_DE,1266
|
|
215
233
|
robosystems_client/models/graph_usage_response_storage_usage.py,sha256=_ZVpNzUmkQcANrqfe8v7uSs3jd_rBD7k7vT4NY0Os-8,1258
|
|
216
|
-
robosystems_client/models/health_status.py,sha256=
|
|
234
|
+
robosystems_client/models/health_status.py,sha256=ce_IlbEvdQqmqi8Exux2UQA2K7qBLkIDfbQ6bzoASA0,3034
|
|
217
235
|
robosystems_client/models/health_status_details_type_0.py,sha256=ORS2NbiOWUJZvxa1dYdngpphzj_5lj7fLhmKqxyiVNU,1204
|
|
218
236
|
robosystems_client/models/http_validation_error.py,sha256=LXy3nhf_7F-tawZB7Rd6lqwi5FDtNtX58oil3X5hxLI,2045
|
|
219
237
|
robosystems_client/models/initial_entity_data.py,sha256=P6lP81w0G72OMuRxV3r7Q_hALiP93bKDWGXldCJSbmE,6113
|
|
@@ -243,22 +261,23 @@ robosystems_client/models/plaid_connection_config_accounts_type_0_item.py,sha256
|
|
|
243
261
|
robosystems_client/models/plaid_connection_config_institution_type_0.py,sha256=bNd_czT5nU9yTWcKJih3ft71IGL-DTgT5ot1WeitrZg,1272
|
|
244
262
|
robosystems_client/models/quick_books_connection_config.py,sha256=ohhOvNp3k8XVz-8-xGr1NygPgDdU3ELqJVteo0iTe9I,2664
|
|
245
263
|
robosystems_client/models/register_request.py,sha256=9pHjAsopUT4IJ-pWPny7VSZ5MfSq2tALCt2nTM1vRZc,2511
|
|
246
|
-
robosystems_client/models/repository_credits_response.py,sha256=
|
|
264
|
+
robosystems_client/models/repository_credits_response.py,sha256=znFVtTxsa3XRRbqS6swki3MGbj3_vZegMB8Clh9-Qgc,3537
|
|
247
265
|
robosystems_client/models/repository_plan.py,sha256=BEdbh0FPIrsomZU_Aq27EAk-ppOqlJxuwNRVCZlNLKo,185
|
|
248
266
|
robosystems_client/models/repository_type.py,sha256=Mw4q6l82iVgalXxOiWCpmtGZAf4MawNxCsIW2QoPd0I,175
|
|
249
267
|
robosystems_client/models/response_mode.py,sha256=0tm3YUxAKHNYS1jn-zdR_88xn6E_bsQl85DwHZM_kkM,181
|
|
250
268
|
robosystems_client/models/s3_copy_request.py,sha256=0XqKZ6vL46aJozlvIHwGRGqCL2OPBGfOBFZ-AMmg2xo,13171
|
|
251
269
|
robosystems_client/models/s3_copy_request_file_format.py,sha256=VfyvnQl7Mcl3mytceCFHUsYuwZqdD_RTFTi47TpW6l8,214
|
|
252
270
|
robosystems_client/models/s3_copy_request_s3_url_style_type_0.py,sha256=Rwj6q4HT0178ogoLSSAme0QwoFBpWYU9bDoPWqJnMaQ,161
|
|
253
|
-
robosystems_client/models/schema_export_response.py,sha256=
|
|
271
|
+
robosystems_client/models/schema_export_response.py,sha256=feGJQkAYNeHoGSVcdAyTVQxR6KR1ks3Nfc2LNbUap4w,4872
|
|
254
272
|
robosystems_client/models/schema_export_response_data_stats_type_0.py,sha256=QRzVNkX-1Er8oppABqj79HRGKtcMk3YNG2DFkdqdFSQ,1260
|
|
255
273
|
robosystems_client/models/schema_export_response_schema_definition_type_0.py,sha256=iYwrxPZsEttzkaDySeVyUdwF5yvhvNgALiMEqTMJTpo,1295
|
|
256
|
-
robosystems_client/models/schema_validation_request.py,sha256
|
|
274
|
+
robosystems_client/models/schema_validation_request.py,sha256=AoKX22RxBlntR5dQdLAaUmgLeMqj3AAVhRYFuMDE8QA,4418
|
|
257
275
|
robosystems_client/models/schema_validation_request_schema_definition_type_0.py,sha256=cA1Xq01d4UDuPAzuGMcoFTwzQx0ax1bk2v0au070ano,1310
|
|
258
|
-
robosystems_client/models/schema_validation_response.py,sha256=
|
|
276
|
+
robosystems_client/models/schema_validation_response.py,sha256=0-leBihqLQ0oFqVAH6a9smeYQp89JyDYNi-OLYWoULg,6670
|
|
259
277
|
robosystems_client/models/schema_validation_response_compatibility_type_0.py,sha256=Kc-94bQYdIk1giTAmVNdGyxqLeBS7vPfLUcqUy6iZFQ,1297
|
|
260
278
|
robosystems_client/models/schema_validation_response_stats_type_0.py,sha256=H2ZmFmyJSBfupYJniiU643PfHvwc5CCwRrOP8hj6fug,1257
|
|
261
279
|
robosystems_client/models/sec_connection_config.py,sha256=ZIcENfOIhGJnnAfboyVD_V9TFOkrS-dhLbVqfMBE1gw,2117
|
|
280
|
+
robosystems_client/models/selection_criteria.py,sha256=h04f-YIVc6Ljq1Eo-l5buFNTZVzgLbVzm8Xgc9GqtUs,4155
|
|
262
281
|
robosystems_client/models/sso_complete_request.py,sha256=_k4oKRh41Z3DVIrP8-bbFE3AenBbflLrY2tw6xg5G34,1482
|
|
263
282
|
robosystems_client/models/sso_exchange_request.py,sha256=b-XqNnBNLMviA6-rPmvfDLw6QELxs9-2tELSqjZJVQ4,2338
|
|
264
283
|
robosystems_client/models/sso_exchange_response.py,sha256=HmcvnafE-AQvzjvVBcGEft7FE6cxW2yJ1iiXtJbLe2A,2030
|
|
@@ -274,7 +293,7 @@ robosystems_client/models/subscription_info.py,sha256=6dLANsDZ_HB9sl8sNM2aQQvHt2
|
|
|
274
293
|
robosystems_client/models/subscription_info_metadata.py,sha256=5RZRthVzH5VloERrIXm9dHSJBntmdd_0vPYaVeEOvCo,1216
|
|
275
294
|
robosystems_client/models/subscription_request.py,sha256=QArBvYVdFtQcqfHA_47Yi07vWjZEVMBDUIhdrfHGH2M,2399
|
|
276
295
|
robosystems_client/models/subscription_response.py,sha256=OqMB-M4CYnqQ4j1WzmhLlpPDgIT3O7qNH4P0gFIrldg,1888
|
|
277
|
-
robosystems_client/models/success_response.py,sha256=
|
|
296
|
+
robosystems_client/models/success_response.py,sha256=a-sgwBAiJn-8fTsKWIZInSuTF3B29jinOpeySBEzbjQ,3172
|
|
278
297
|
robosystems_client/models/success_response_data_type_0.py,sha256=tirQFpgZO8Lpge7WDBGfILrLz0HZQVXXG6fu6b2-eSU,1204
|
|
279
298
|
robosystems_client/models/sync_connection_request.py,sha256=qyOzmAJ0khdwAZb-Hlf8jbzfqGBjMalqkQsua08vEnc,3232
|
|
280
299
|
robosystems_client/models/sync_connection_request_sync_options_type_0.py,sha256=5lckaZAs1S-F_WAtLtaJPXca2DucqCfcKNmf25p5UIY,1275
|
|
@@ -303,6 +322,6 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
|
|
|
303
322
|
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
304
323
|
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
305
324
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
306
|
-
robosystems_client-0.1.
|
|
307
|
-
robosystems_client-0.1.
|
|
308
|
-
robosystems_client-0.1.
|
|
325
|
+
robosystems_client-0.1.16.dist-info/METADATA,sha256=wdijG4JqcFrXJRLoPHqeJPDa5N5f7a1k-gEh7nB7Kp8,9351
|
|
326
|
+
robosystems_client-0.1.16.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
327
|
+
robosystems_client-0.1.16.dist-info/RECORD,,
|