robosystems-client 0.2.8__py3-none-any.whl → 0.2.9__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/graphs/get_graphs.py +120 -92
- robosystems_client/models/graph_info.py +33 -2
- robosystems_client/models/graph_tier_instance.py +7 -7
- {robosystems_client-0.2.8.dist-info → robosystems_client-0.2.9.dist-info}/METADATA +1 -1
- {robosystems_client-0.2.8.dist-info → robosystems_client-0.2.9.dist-info}/RECORD +7 -7
- {robosystems_client-0.2.8.dist-info → robosystems_client-0.2.9.dist-info}/WHEEL +0 -0
- {robosystems_client-0.2.8.dist-info → robosystems_client-0.2.9.dist-info}/licenses/LICENSE +0 -0
|
@@ -51,39 +51,46 @@ def sync_detailed(
|
|
|
51
51
|
*,
|
|
52
52
|
client: AuthenticatedClient,
|
|
53
53
|
) -> Response[Union[Any, UserGraphsResponse]]:
|
|
54
|
-
r"""Get User Graphs
|
|
54
|
+
r"""Get User Graphs and Repositories
|
|
55
55
|
|
|
56
|
-
List all graph databases accessible to the current user
|
|
56
|
+
List all graph databases and shared repositories accessible to the current user.
|
|
57
57
|
|
|
58
|
-
Returns a
|
|
59
|
-
|
|
60
|
-
the active workspace.
|
|
58
|
+
Returns a unified list of both user-created graphs and shared repositories (like SEC data)
|
|
59
|
+
that the user has access to, including their role/access level and selection status.
|
|
61
60
|
|
|
62
61
|
**Returned Information:**
|
|
63
|
-
- Graph ID and display name
|
|
64
|
-
- User's role (admin/member
|
|
65
|
-
- Selection status (
|
|
66
|
-
- Creation timestamp
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
-
|
|
62
|
+
- Graph/Repository ID and display name
|
|
63
|
+
- User's role/access level (admin/member for graphs, read/write/admin for repositories)
|
|
64
|
+
- Selection status (only user graphs can be selected)
|
|
65
|
+
- Creation timestamp
|
|
66
|
+
- Repository type indicator (isRepository: true for shared repositories)
|
|
67
|
+
|
|
68
|
+
**User Graphs (isRepository: false):**
|
|
69
|
+
- Collaborative workspaces that can be shared with other users
|
|
70
|
+
- Roles: `admin` (full access, can invite users) or `member` (read/write access)
|
|
71
|
+
- Can be selected as active workspace
|
|
72
|
+
- Graphs you create or have been invited to
|
|
73
|
+
|
|
74
|
+
**Shared Repositories (isRepository: true):**
|
|
75
|
+
- Read-only data repositories like SEC filings, industry benchmarks
|
|
76
|
+
- Access levels: `read`, `write` (for data contributions), `admin`
|
|
77
|
+
- Cannot be selected (each has separate subscription)
|
|
78
|
+
- Require separate subscriptions (personal, cannot be shared)
|
|
71
79
|
|
|
72
80
|
**Selected Graph Concept:**
|
|
73
|
-
The \"selected\" graph is the user's currently active workspace
|
|
74
|
-
default to the selected graph if no graph_id is provided.
|
|
75
|
-
selected graph via
|
|
81
|
+
The \"selected\" graph is the user's currently active workspace (user graphs only).
|
|
82
|
+
Many API operations default to the selected graph if no graph_id is provided.
|
|
83
|
+
Users can change their selected graph via `POST /v1/graphs/{graph_id}/select`.
|
|
76
84
|
|
|
77
85
|
**Use Cases:**
|
|
78
|
-
- Display graph selector in UI
|
|
79
|
-
- Show
|
|
80
|
-
- Identify
|
|
81
|
-
- Filter
|
|
86
|
+
- Display unified graph/repository selector in UI
|
|
87
|
+
- Show all accessible data sources (both owned graphs and subscribed repositories)
|
|
88
|
+
- Identify currently active workspace
|
|
89
|
+
- Filter by type (user graphs vs repositories)
|
|
82
90
|
|
|
83
91
|
**Empty Response:**
|
|
84
|
-
New users
|
|
85
|
-
|
|
86
|
-
to an existing graph.
|
|
92
|
+
New users receive an empty list with `selectedGraphId: null`. Users should create
|
|
93
|
+
a graph or subscribe to a repository.
|
|
87
94
|
|
|
88
95
|
**Note:**
|
|
89
96
|
Graph listing is included - no credit consumption required.
|
|
@@ -109,39 +116,46 @@ def sync(
|
|
|
109
116
|
*,
|
|
110
117
|
client: AuthenticatedClient,
|
|
111
118
|
) -> Optional[Union[Any, UserGraphsResponse]]:
|
|
112
|
-
r"""Get User Graphs
|
|
119
|
+
r"""Get User Graphs and Repositories
|
|
113
120
|
|
|
114
|
-
List all graph databases accessible to the current user
|
|
121
|
+
List all graph databases and shared repositories accessible to the current user.
|
|
115
122
|
|
|
116
|
-
Returns a
|
|
117
|
-
|
|
118
|
-
the active workspace.
|
|
123
|
+
Returns a unified list of both user-created graphs and shared repositories (like SEC data)
|
|
124
|
+
that the user has access to, including their role/access level and selection status.
|
|
119
125
|
|
|
120
126
|
**Returned Information:**
|
|
121
|
-
- Graph ID and display name
|
|
122
|
-
- User's role (admin/member
|
|
123
|
-
- Selection status (
|
|
124
|
-
- Creation timestamp
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
-
|
|
127
|
+
- Graph/Repository ID and display name
|
|
128
|
+
- User's role/access level (admin/member for graphs, read/write/admin for repositories)
|
|
129
|
+
- Selection status (only user graphs can be selected)
|
|
130
|
+
- Creation timestamp
|
|
131
|
+
- Repository type indicator (isRepository: true for shared repositories)
|
|
132
|
+
|
|
133
|
+
**User Graphs (isRepository: false):**
|
|
134
|
+
- Collaborative workspaces that can be shared with other users
|
|
135
|
+
- Roles: `admin` (full access, can invite users) or `member` (read/write access)
|
|
136
|
+
- Can be selected as active workspace
|
|
137
|
+
- Graphs you create or have been invited to
|
|
138
|
+
|
|
139
|
+
**Shared Repositories (isRepository: true):**
|
|
140
|
+
- Read-only data repositories like SEC filings, industry benchmarks
|
|
141
|
+
- Access levels: `read`, `write` (for data contributions), `admin`
|
|
142
|
+
- Cannot be selected (each has separate subscription)
|
|
143
|
+
- Require separate subscriptions (personal, cannot be shared)
|
|
129
144
|
|
|
130
145
|
**Selected Graph Concept:**
|
|
131
|
-
The \"selected\" graph is the user's currently active workspace
|
|
132
|
-
default to the selected graph if no graph_id is provided.
|
|
133
|
-
selected graph via
|
|
146
|
+
The \"selected\" graph is the user's currently active workspace (user graphs only).
|
|
147
|
+
Many API operations default to the selected graph if no graph_id is provided.
|
|
148
|
+
Users can change their selected graph via `POST /v1/graphs/{graph_id}/select`.
|
|
134
149
|
|
|
135
150
|
**Use Cases:**
|
|
136
|
-
- Display graph selector in UI
|
|
137
|
-
- Show
|
|
138
|
-
- Identify
|
|
139
|
-
- Filter
|
|
151
|
+
- Display unified graph/repository selector in UI
|
|
152
|
+
- Show all accessible data sources (both owned graphs and subscribed repositories)
|
|
153
|
+
- Identify currently active workspace
|
|
154
|
+
- Filter by type (user graphs vs repositories)
|
|
140
155
|
|
|
141
156
|
**Empty Response:**
|
|
142
|
-
New users
|
|
143
|
-
|
|
144
|
-
to an existing graph.
|
|
157
|
+
New users receive an empty list with `selectedGraphId: null`. Users should create
|
|
158
|
+
a graph or subscribe to a repository.
|
|
145
159
|
|
|
146
160
|
**Note:**
|
|
147
161
|
Graph listing is included - no credit consumption required.
|
|
@@ -163,39 +177,46 @@ async def asyncio_detailed(
|
|
|
163
177
|
*,
|
|
164
178
|
client: AuthenticatedClient,
|
|
165
179
|
) -> Response[Union[Any, UserGraphsResponse]]:
|
|
166
|
-
r"""Get User Graphs
|
|
180
|
+
r"""Get User Graphs and Repositories
|
|
167
181
|
|
|
168
|
-
List all graph databases accessible to the current user
|
|
182
|
+
List all graph databases and shared repositories accessible to the current user.
|
|
169
183
|
|
|
170
|
-
Returns a
|
|
171
|
-
|
|
172
|
-
the active workspace.
|
|
184
|
+
Returns a unified list of both user-created graphs and shared repositories (like SEC data)
|
|
185
|
+
that the user has access to, including their role/access level and selection status.
|
|
173
186
|
|
|
174
187
|
**Returned Information:**
|
|
175
|
-
- Graph ID and display name
|
|
176
|
-
- User's role (admin/member
|
|
177
|
-
- Selection status (
|
|
178
|
-
- Creation timestamp
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
-
|
|
188
|
+
- Graph/Repository ID and display name
|
|
189
|
+
- User's role/access level (admin/member for graphs, read/write/admin for repositories)
|
|
190
|
+
- Selection status (only user graphs can be selected)
|
|
191
|
+
- Creation timestamp
|
|
192
|
+
- Repository type indicator (isRepository: true for shared repositories)
|
|
193
|
+
|
|
194
|
+
**User Graphs (isRepository: false):**
|
|
195
|
+
- Collaborative workspaces that can be shared with other users
|
|
196
|
+
- Roles: `admin` (full access, can invite users) or `member` (read/write access)
|
|
197
|
+
- Can be selected as active workspace
|
|
198
|
+
- Graphs you create or have been invited to
|
|
199
|
+
|
|
200
|
+
**Shared Repositories (isRepository: true):**
|
|
201
|
+
- Read-only data repositories like SEC filings, industry benchmarks
|
|
202
|
+
- Access levels: `read`, `write` (for data contributions), `admin`
|
|
203
|
+
- Cannot be selected (each has separate subscription)
|
|
204
|
+
- Require separate subscriptions (personal, cannot be shared)
|
|
183
205
|
|
|
184
206
|
**Selected Graph Concept:**
|
|
185
|
-
The \"selected\" graph is the user's currently active workspace
|
|
186
|
-
default to the selected graph if no graph_id is provided.
|
|
187
|
-
selected graph via
|
|
207
|
+
The \"selected\" graph is the user's currently active workspace (user graphs only).
|
|
208
|
+
Many API operations default to the selected graph if no graph_id is provided.
|
|
209
|
+
Users can change their selected graph via `POST /v1/graphs/{graph_id}/select`.
|
|
188
210
|
|
|
189
211
|
**Use Cases:**
|
|
190
|
-
- Display graph selector in UI
|
|
191
|
-
- Show
|
|
192
|
-
- Identify
|
|
193
|
-
- Filter
|
|
212
|
+
- Display unified graph/repository selector in UI
|
|
213
|
+
- Show all accessible data sources (both owned graphs and subscribed repositories)
|
|
214
|
+
- Identify currently active workspace
|
|
215
|
+
- Filter by type (user graphs vs repositories)
|
|
194
216
|
|
|
195
217
|
**Empty Response:**
|
|
196
|
-
New users
|
|
197
|
-
|
|
198
|
-
to an existing graph.
|
|
218
|
+
New users receive an empty list with `selectedGraphId: null`. Users should create
|
|
219
|
+
a graph or subscribe to a repository.
|
|
199
220
|
|
|
200
221
|
**Note:**
|
|
201
222
|
Graph listing is included - no credit consumption required.
|
|
@@ -219,39 +240,46 @@ async def asyncio(
|
|
|
219
240
|
*,
|
|
220
241
|
client: AuthenticatedClient,
|
|
221
242
|
) -> Optional[Union[Any, UserGraphsResponse]]:
|
|
222
|
-
r"""Get User Graphs
|
|
243
|
+
r"""Get User Graphs and Repositories
|
|
223
244
|
|
|
224
|
-
List all graph databases accessible to the current user
|
|
245
|
+
List all graph databases and shared repositories accessible to the current user.
|
|
225
246
|
|
|
226
|
-
Returns a
|
|
227
|
-
|
|
228
|
-
the active workspace.
|
|
247
|
+
Returns a unified list of both user-created graphs and shared repositories (like SEC data)
|
|
248
|
+
that the user has access to, including their role/access level and selection status.
|
|
229
249
|
|
|
230
250
|
**Returned Information:**
|
|
231
|
-
- Graph ID and display name
|
|
232
|
-
- User's role (admin/member
|
|
233
|
-
- Selection status (
|
|
234
|
-
- Creation timestamp
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
-
|
|
251
|
+
- Graph/Repository ID and display name
|
|
252
|
+
- User's role/access level (admin/member for graphs, read/write/admin for repositories)
|
|
253
|
+
- Selection status (only user graphs can be selected)
|
|
254
|
+
- Creation timestamp
|
|
255
|
+
- Repository type indicator (isRepository: true for shared repositories)
|
|
256
|
+
|
|
257
|
+
**User Graphs (isRepository: false):**
|
|
258
|
+
- Collaborative workspaces that can be shared with other users
|
|
259
|
+
- Roles: `admin` (full access, can invite users) or `member` (read/write access)
|
|
260
|
+
- Can be selected as active workspace
|
|
261
|
+
- Graphs you create or have been invited to
|
|
262
|
+
|
|
263
|
+
**Shared Repositories (isRepository: true):**
|
|
264
|
+
- Read-only data repositories like SEC filings, industry benchmarks
|
|
265
|
+
- Access levels: `read`, `write` (for data contributions), `admin`
|
|
266
|
+
- Cannot be selected (each has separate subscription)
|
|
267
|
+
- Require separate subscriptions (personal, cannot be shared)
|
|
239
268
|
|
|
240
269
|
**Selected Graph Concept:**
|
|
241
|
-
The \"selected\" graph is the user's currently active workspace
|
|
242
|
-
default to the selected graph if no graph_id is provided.
|
|
243
|
-
selected graph via
|
|
270
|
+
The \"selected\" graph is the user's currently active workspace (user graphs only).
|
|
271
|
+
Many API operations default to the selected graph if no graph_id is provided.
|
|
272
|
+
Users can change their selected graph via `POST /v1/graphs/{graph_id}/select`.
|
|
244
273
|
|
|
245
274
|
**Use Cases:**
|
|
246
|
-
- Display graph selector in UI
|
|
247
|
-
- Show
|
|
248
|
-
- Identify
|
|
249
|
-
- Filter
|
|
275
|
+
- Display unified graph/repository selector in UI
|
|
276
|
+
- Show all accessible data sources (both owned graphs and subscribed repositories)
|
|
277
|
+
- Identify currently active workspace
|
|
278
|
+
- Filter by type (user graphs vs repositories)
|
|
250
279
|
|
|
251
280
|
**Empty Response:**
|
|
252
|
-
New users
|
|
253
|
-
|
|
254
|
-
to an existing graph.
|
|
281
|
+
New users receive an empty list with `selectedGraphId: null`. Users should create
|
|
282
|
+
a graph or subscribe to a repository.
|
|
255
283
|
|
|
256
284
|
**Note:**
|
|
257
285
|
Graph listing is included - no credit consumption required.
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
from collections.abc import Mapping
|
|
2
|
-
from typing import Any, TypeVar
|
|
2
|
+
from typing import Any, TypeVar, Union, cast
|
|
3
3
|
|
|
4
4
|
from attrs import define as _attrs_define
|
|
5
5
|
from attrs import field as _attrs_field
|
|
6
6
|
|
|
7
|
+
from ..types import UNSET, Unset
|
|
8
|
+
|
|
7
9
|
T = TypeVar("T", bound="GraphInfo")
|
|
8
10
|
|
|
9
11
|
|
|
@@ -14,9 +16,11 @@ class GraphInfo:
|
|
|
14
16
|
Attributes:
|
|
15
17
|
graph_id (str): Graph database identifier
|
|
16
18
|
graph_name (str): Display name for the graph
|
|
17
|
-
role (str): User's role
|
|
19
|
+
role (str): User's role/access level
|
|
18
20
|
is_selected (bool): Whether this is the currently selected graph
|
|
19
21
|
created_at (str): Creation timestamp
|
|
22
|
+
is_repository (Union[Unset, bool]): Whether this is a shared repository (vs user graph) Default: False.
|
|
23
|
+
repository_type (Union[None, Unset, str]): Repository type if isRepository=true
|
|
20
24
|
"""
|
|
21
25
|
|
|
22
26
|
graph_id: str
|
|
@@ -24,6 +28,8 @@ class GraphInfo:
|
|
|
24
28
|
role: str
|
|
25
29
|
is_selected: bool
|
|
26
30
|
created_at: str
|
|
31
|
+
is_repository: Union[Unset, bool] = False
|
|
32
|
+
repository_type: Union[None, Unset, str] = UNSET
|
|
27
33
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
28
34
|
|
|
29
35
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -37,6 +43,14 @@ class GraphInfo:
|
|
|
37
43
|
|
|
38
44
|
created_at = self.created_at
|
|
39
45
|
|
|
46
|
+
is_repository = self.is_repository
|
|
47
|
+
|
|
48
|
+
repository_type: Union[None, Unset, str]
|
|
49
|
+
if isinstance(self.repository_type, Unset):
|
|
50
|
+
repository_type = UNSET
|
|
51
|
+
else:
|
|
52
|
+
repository_type = self.repository_type
|
|
53
|
+
|
|
40
54
|
field_dict: dict[str, Any] = {}
|
|
41
55
|
field_dict.update(self.additional_properties)
|
|
42
56
|
field_dict.update(
|
|
@@ -48,6 +62,10 @@ class GraphInfo:
|
|
|
48
62
|
"createdAt": created_at,
|
|
49
63
|
}
|
|
50
64
|
)
|
|
65
|
+
if is_repository is not UNSET:
|
|
66
|
+
field_dict["isRepository"] = is_repository
|
|
67
|
+
if repository_type is not UNSET:
|
|
68
|
+
field_dict["repositoryType"] = repository_type
|
|
51
69
|
|
|
52
70
|
return field_dict
|
|
53
71
|
|
|
@@ -64,12 +82,25 @@ class GraphInfo:
|
|
|
64
82
|
|
|
65
83
|
created_at = d.pop("createdAt")
|
|
66
84
|
|
|
85
|
+
is_repository = d.pop("isRepository", UNSET)
|
|
86
|
+
|
|
87
|
+
def _parse_repository_type(data: object) -> Union[None, Unset, str]:
|
|
88
|
+
if data is None:
|
|
89
|
+
return data
|
|
90
|
+
if isinstance(data, Unset):
|
|
91
|
+
return data
|
|
92
|
+
return cast(Union[None, Unset, str], data)
|
|
93
|
+
|
|
94
|
+
repository_type = _parse_repository_type(d.pop("repositoryType", UNSET))
|
|
95
|
+
|
|
67
96
|
graph_info = cls(
|
|
68
97
|
graph_id=graph_id,
|
|
69
98
|
graph_name=graph_name,
|
|
70
99
|
role=role,
|
|
71
100
|
is_selected=is_selected,
|
|
72
101
|
created_at=created_at,
|
|
102
|
+
is_repository=is_repository,
|
|
103
|
+
repository_type=repository_type,
|
|
73
104
|
)
|
|
74
105
|
|
|
75
106
|
graph_info.additional_properties = d
|
|
@@ -13,13 +13,13 @@ class GraphTierInstance:
|
|
|
13
13
|
|
|
14
14
|
Attributes:
|
|
15
15
|
type_ (str): Instance type identifier
|
|
16
|
-
memory_mb (int): Memory in megabytes
|
|
17
|
-
|
|
16
|
+
memory_mb (int): Memory allocated to your graph in megabytes
|
|
17
|
+
is_multitenant (bool): Whether this tier shares infrastructure with other graphs
|
|
18
18
|
"""
|
|
19
19
|
|
|
20
20
|
type_: str
|
|
21
21
|
memory_mb: int
|
|
22
|
-
|
|
22
|
+
is_multitenant: bool
|
|
23
23
|
additional_properties: dict[str, Any] = _attrs_field(init=False, factory=dict)
|
|
24
24
|
|
|
25
25
|
def to_dict(self) -> dict[str, Any]:
|
|
@@ -27,7 +27,7 @@ class GraphTierInstance:
|
|
|
27
27
|
|
|
28
28
|
memory_mb = self.memory_mb
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
is_multitenant = self.is_multitenant
|
|
31
31
|
|
|
32
32
|
field_dict: dict[str, Any] = {}
|
|
33
33
|
field_dict.update(self.additional_properties)
|
|
@@ -35,7 +35,7 @@ class GraphTierInstance:
|
|
|
35
35
|
{
|
|
36
36
|
"type": type_,
|
|
37
37
|
"memory_mb": memory_mb,
|
|
38
|
-
"
|
|
38
|
+
"is_multitenant": is_multitenant,
|
|
39
39
|
}
|
|
40
40
|
)
|
|
41
41
|
|
|
@@ -48,12 +48,12 @@ class GraphTierInstance:
|
|
|
48
48
|
|
|
49
49
|
memory_mb = d.pop("memory_mb")
|
|
50
50
|
|
|
51
|
-
|
|
51
|
+
is_multitenant = d.pop("is_multitenant")
|
|
52
52
|
|
|
53
53
|
graph_tier_instance = cls(
|
|
54
54
|
type_=type_,
|
|
55
55
|
memory_mb=memory_mb,
|
|
56
|
-
|
|
56
|
+
is_multitenant=is_multitenant,
|
|
57
57
|
)
|
|
58
58
|
|
|
59
59
|
graph_tier_instance.additional_properties = d
|
|
@@ -70,7 +70,7 @@ robosystems_client/api/graphs/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_b
|
|
|
70
70
|
robosystems_client/api/graphs/create_graph.py,sha256=LpklD_BG9EaBuuDmHif1RAK_86jVM1y57o0bP9_5nHA,16748
|
|
71
71
|
robosystems_client/api/graphs/get_available_extensions.py,sha256=A4gVvWGgSP1aCsyRqSxZp9n1c8Qq0fxuVHpFVhA6EsQ,8385
|
|
72
72
|
robosystems_client/api/graphs/get_available_graph_tiers.py,sha256=t9ikSV2pzp4tXM8esrJSEW_fTpZFhlLsVLl_IgpvEDQ,9089
|
|
73
|
-
robosystems_client/api/graphs/get_graphs.py,sha256=
|
|
73
|
+
robosystems_client/api/graphs/get_graphs.py,sha256=GS9rsZMtUBDwFQsu31bBHDOqz5vIqtem_0KOIRE3YPg,10989
|
|
74
74
|
robosystems_client/api/graphs/select_graph.py,sha256=OMl8lnKhKdFLK1iREbVSzNkaL7eQNmy88XrN4RiRELQ,9398
|
|
75
75
|
robosystems_client/api/mcp/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
|
|
76
76
|
robosystems_client/api/mcp/call_mcp_tool.py,sha256=oG2S_iwneUhe6A14xk0yVFs9x5v8IoubIA5ABsEKV7U,13662
|
|
@@ -245,7 +245,7 @@ robosystems_client/models/get_graph_usage_details_response_getgraphusagedetails.
|
|
|
245
245
|
robosystems_client/models/get_operation_status_response_getoperationstatus.py,sha256=dhCc_dZpSo-h9210m5MShVde1sGHmMhkBanqt_6xt_A,1304
|
|
246
246
|
robosystems_client/models/get_shared_repository_limits_response_getsharedrepositorylimits.py,sha256=0-_y-77YHmK-tFdt7rQbC5j9VK4pfiE_V756EmglpaU,1377
|
|
247
247
|
robosystems_client/models/get_storage_usage_response_getstorageusage.py,sha256=5ZpeVOQNa8FLcI82C3-CCnYbtgUPXqIUa7d6cHr0Ddo,1274
|
|
248
|
-
robosystems_client/models/graph_info.py,sha256=
|
|
248
|
+
robosystems_client/models/graph_info.py,sha256=xUj7B2Y_XORyvoYA1YRX1c5aEpmtw_4tdvb_oJhy9TM,3318
|
|
249
249
|
robosystems_client/models/graph_limits_response.py,sha256=IwNdZD-5Ro2tov7oUU_ji3fCeF8lxIJFZTyWxIZZjnI,5281
|
|
250
250
|
robosystems_client/models/graph_metadata.py,sha256=yQt4onkfdderC3HRlz1beIMoSPRzrgjkqfFRuBoFmVo,2995
|
|
251
251
|
robosystems_client/models/graph_metrics_response.py,sha256=vKPF6Jqu17dsPNfTr5saUFro-hnAiCyh3Me1DA3BsuQ,5878
|
|
@@ -258,7 +258,7 @@ robosystems_client/models/graph_subscriptions.py,sha256=ZjX_GuWS0OnCK_BaEG0fdIn3
|
|
|
258
258
|
robosystems_client/models/graph_tier_backup.py,sha256=cwHk3S3Zcu_5owIRzP2c0wzE58Q84vfDoS0719SclcE,2145
|
|
259
259
|
robosystems_client/models/graph_tier_copy_operations.py,sha256=dzm6950aqD8xMjSqOZgLsLH4eKTN_r_qVLoNBpcEUZI,2778
|
|
260
260
|
robosystems_client/models/graph_tier_info.py,sha256=lbfVXlmR34qN_cItDGoY4ywUJboX8g9knBN4Mm6cGCg,5290
|
|
261
|
-
robosystems_client/models/graph_tier_instance.py,sha256=
|
|
261
|
+
robosystems_client/models/graph_tier_instance.py,sha256=GW5lKwG_7kSAZLwe__vGdwAHlebDzAIT1UYGk9X44WM,1903
|
|
262
262
|
robosystems_client/models/graph_tier_limits.py,sha256=Ylgjqr2jKsd4aed-aLbRqJUJFDMGOaNG3C4XE_5E65o,3073
|
|
263
263
|
robosystems_client/models/graph_usage_response.py,sha256=zdtgINU0tQw4eEgRtOUAwdU0hM_nNuHWDpsoxOsRgsc,3418
|
|
264
264
|
robosystems_client/models/graph_usage_response_query_statistics.py,sha256=YjUU3AcJ9TAYHbsLncm2u497J3M8DVacnZwiQOzkIYY,1264
|
|
@@ -375,7 +375,7 @@ robosystems_client/models/user_usage_response_graphs.py,sha256=xAH-ZnhaUfWQ_2EpZ
|
|
|
375
375
|
robosystems_client/models/user_usage_summary_response.py,sha256=4hthwTH7bXyzdYlHoekDYOgDLI-stGRH507Bl2rUjYA,3655
|
|
376
376
|
robosystems_client/models/user_usage_summary_response_usage_vs_limits.py,sha256=XrZnRcy1nD3xtKX4svbww7QfEHrN7_XIfeL9j5ZMbyQ,1298
|
|
377
377
|
robosystems_client/models/validation_error.py,sha256=R77OuQG2nJ3WDFfY--xbEhg6x1D7gAAp_1UdnG8Ka2A,1949
|
|
378
|
-
robosystems_client-0.2.
|
|
379
|
-
robosystems_client-0.2.
|
|
380
|
-
robosystems_client-0.2.
|
|
381
|
-
robosystems_client-0.2.
|
|
378
|
+
robosystems_client-0.2.9.dist-info/METADATA,sha256=dnEUAr5BCMvRwzXWJgFSBAQEry298juFd7j9nWedmRY,3903
|
|
379
|
+
robosystems_client-0.2.9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
380
|
+
robosystems_client-0.2.9.dist-info/licenses/LICENSE,sha256=LjFqQPU4eQh7jAQ04SmE9eC0j74HCdXvzbo0hjW4mWo,1063
|
|
381
|
+
robosystems_client-0.2.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|