samplehc 0.12.0__py3-none-any.whl → 0.13.0__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.
- samplehc/_version.py +1 -1
- samplehc/resources/v2/browser_agents/runs/runs.py +131 -0
- samplehc/resources/v2/integrations/salesforce.py +85 -1
- samplehc/resources/v2/tasks/tasks.py +110 -1
- samplehc/types/v2/__init__.py +2 -0
- samplehc/types/v2/browser_agents/__init__.py +3 -0
- samplehc/types/v2/browser_agents/run_list_events_params.py +15 -0
- samplehc/types/v2/browser_agents/run_list_events_response.py +30 -0
- samplehc/types/v2/integrations/__init__.py +1 -0
- samplehc/types/v2/integrations/salesforce_run_soql_query_params.py +11 -0
- samplehc/types/v2/task_update_column_params.py +16 -0
- samplehc/types/v2/task_update_column_response.py +9 -0
- {samplehc-0.12.0.dist-info → samplehc-0.13.0.dist-info}/METADATA +1 -1
- {samplehc-0.12.0.dist-info → samplehc-0.13.0.dist-info}/RECORD +16 -11
- {samplehc-0.12.0.dist-info → samplehc-0.13.0.dist-info}/WHEEL +0 -0
- {samplehc-0.12.0.dist-info → samplehc-0.13.0.dist-info}/licenses/LICENSE +0 -0
samplehc/_version.py
CHANGED
|
@@ -2,8 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
+
import httpx
|
|
6
|
+
|
|
7
|
+
from ....._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
8
|
+
from ....._utils import maybe_transform, async_maybe_transform
|
|
5
9
|
from ....._compat import cached_property
|
|
6
10
|
from ....._resource import SyncAPIResource, AsyncAPIResource
|
|
11
|
+
from ....._response import (
|
|
12
|
+
to_raw_response_wrapper,
|
|
13
|
+
to_streamed_response_wrapper,
|
|
14
|
+
async_to_raw_response_wrapper,
|
|
15
|
+
async_to_streamed_response_wrapper,
|
|
16
|
+
)
|
|
7
17
|
from .help_requests import (
|
|
8
18
|
HelpRequestsResource,
|
|
9
19
|
AsyncHelpRequestsResource,
|
|
@@ -12,6 +22,9 @@ from .help_requests import (
|
|
|
12
22
|
HelpRequestsResourceWithStreamingResponse,
|
|
13
23
|
AsyncHelpRequestsResourceWithStreamingResponse,
|
|
14
24
|
)
|
|
25
|
+
from ....._base_client import make_request_options
|
|
26
|
+
from .....types.v2.browser_agents import run_list_events_params
|
|
27
|
+
from .....types.v2.browser_agents.run_list_events_response import RunListEventsResponse
|
|
15
28
|
|
|
16
29
|
__all__ = ["RunsResource", "AsyncRunsResource"]
|
|
17
30
|
|
|
@@ -40,6 +53,57 @@ class RunsResource(SyncAPIResource):
|
|
|
40
53
|
"""
|
|
41
54
|
return RunsResourceWithStreamingResponse(self)
|
|
42
55
|
|
|
56
|
+
def list_events(
|
|
57
|
+
self,
|
|
58
|
+
browser_agent_run_id: str,
|
|
59
|
+
*,
|
|
60
|
+
cursor: str | Omit = omit,
|
|
61
|
+
limit: float | Omit = omit,
|
|
62
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
63
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
64
|
+
extra_headers: Headers | None = None,
|
|
65
|
+
extra_query: Query | None = None,
|
|
66
|
+
extra_body: Body | None = None,
|
|
67
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
68
|
+
) -> RunListEventsResponse:
|
|
69
|
+
"""
|
|
70
|
+
Get events for a browser agent run.
|
|
71
|
+
|
|
72
|
+
Args:
|
|
73
|
+
cursor: Cursor from previous page
|
|
74
|
+
|
|
75
|
+
limit: Maximum number of events to return
|
|
76
|
+
|
|
77
|
+
extra_headers: Send extra headers
|
|
78
|
+
|
|
79
|
+
extra_query: Add additional query parameters to the request
|
|
80
|
+
|
|
81
|
+
extra_body: Add additional JSON properties to the request
|
|
82
|
+
|
|
83
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
84
|
+
"""
|
|
85
|
+
if not browser_agent_run_id:
|
|
86
|
+
raise ValueError(
|
|
87
|
+
f"Expected a non-empty value for `browser_agent_run_id` but received {browser_agent_run_id!r}"
|
|
88
|
+
)
|
|
89
|
+
return self._get(
|
|
90
|
+
f"/api/v2/browser-agents/runs/{browser_agent_run_id}/events",
|
|
91
|
+
options=make_request_options(
|
|
92
|
+
extra_headers=extra_headers,
|
|
93
|
+
extra_query=extra_query,
|
|
94
|
+
extra_body=extra_body,
|
|
95
|
+
timeout=timeout,
|
|
96
|
+
query=maybe_transform(
|
|
97
|
+
{
|
|
98
|
+
"cursor": cursor,
|
|
99
|
+
"limit": limit,
|
|
100
|
+
},
|
|
101
|
+
run_list_events_params.RunListEventsParams,
|
|
102
|
+
),
|
|
103
|
+
),
|
|
104
|
+
cast_to=RunListEventsResponse,
|
|
105
|
+
)
|
|
106
|
+
|
|
43
107
|
|
|
44
108
|
class AsyncRunsResource(AsyncAPIResource):
|
|
45
109
|
@cached_property
|
|
@@ -65,11 +129,66 @@ class AsyncRunsResource(AsyncAPIResource):
|
|
|
65
129
|
"""
|
|
66
130
|
return AsyncRunsResourceWithStreamingResponse(self)
|
|
67
131
|
|
|
132
|
+
async def list_events(
|
|
133
|
+
self,
|
|
134
|
+
browser_agent_run_id: str,
|
|
135
|
+
*,
|
|
136
|
+
cursor: str | Omit = omit,
|
|
137
|
+
limit: float | Omit = omit,
|
|
138
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
139
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
140
|
+
extra_headers: Headers | None = None,
|
|
141
|
+
extra_query: Query | None = None,
|
|
142
|
+
extra_body: Body | None = None,
|
|
143
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
144
|
+
) -> RunListEventsResponse:
|
|
145
|
+
"""
|
|
146
|
+
Get events for a browser agent run.
|
|
147
|
+
|
|
148
|
+
Args:
|
|
149
|
+
cursor: Cursor from previous page
|
|
150
|
+
|
|
151
|
+
limit: Maximum number of events to return
|
|
152
|
+
|
|
153
|
+
extra_headers: Send extra headers
|
|
154
|
+
|
|
155
|
+
extra_query: Add additional query parameters to the request
|
|
156
|
+
|
|
157
|
+
extra_body: Add additional JSON properties to the request
|
|
158
|
+
|
|
159
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
160
|
+
"""
|
|
161
|
+
if not browser_agent_run_id:
|
|
162
|
+
raise ValueError(
|
|
163
|
+
f"Expected a non-empty value for `browser_agent_run_id` but received {browser_agent_run_id!r}"
|
|
164
|
+
)
|
|
165
|
+
return await self._get(
|
|
166
|
+
f"/api/v2/browser-agents/runs/{browser_agent_run_id}/events",
|
|
167
|
+
options=make_request_options(
|
|
168
|
+
extra_headers=extra_headers,
|
|
169
|
+
extra_query=extra_query,
|
|
170
|
+
extra_body=extra_body,
|
|
171
|
+
timeout=timeout,
|
|
172
|
+
query=await async_maybe_transform(
|
|
173
|
+
{
|
|
174
|
+
"cursor": cursor,
|
|
175
|
+
"limit": limit,
|
|
176
|
+
},
|
|
177
|
+
run_list_events_params.RunListEventsParams,
|
|
178
|
+
),
|
|
179
|
+
),
|
|
180
|
+
cast_to=RunListEventsResponse,
|
|
181
|
+
)
|
|
182
|
+
|
|
68
183
|
|
|
69
184
|
class RunsResourceWithRawResponse:
|
|
70
185
|
def __init__(self, runs: RunsResource) -> None:
|
|
71
186
|
self._runs = runs
|
|
72
187
|
|
|
188
|
+
self.list_events = to_raw_response_wrapper(
|
|
189
|
+
runs.list_events,
|
|
190
|
+
)
|
|
191
|
+
|
|
73
192
|
@cached_property
|
|
74
193
|
def help_requests(self) -> HelpRequestsResourceWithRawResponse:
|
|
75
194
|
return HelpRequestsResourceWithRawResponse(self._runs.help_requests)
|
|
@@ -79,6 +198,10 @@ class AsyncRunsResourceWithRawResponse:
|
|
|
79
198
|
def __init__(self, runs: AsyncRunsResource) -> None:
|
|
80
199
|
self._runs = runs
|
|
81
200
|
|
|
201
|
+
self.list_events = async_to_raw_response_wrapper(
|
|
202
|
+
runs.list_events,
|
|
203
|
+
)
|
|
204
|
+
|
|
82
205
|
@cached_property
|
|
83
206
|
def help_requests(self) -> AsyncHelpRequestsResourceWithRawResponse:
|
|
84
207
|
return AsyncHelpRequestsResourceWithRawResponse(self._runs.help_requests)
|
|
@@ -88,6 +211,10 @@ class RunsResourceWithStreamingResponse:
|
|
|
88
211
|
def __init__(self, runs: RunsResource) -> None:
|
|
89
212
|
self._runs = runs
|
|
90
213
|
|
|
214
|
+
self.list_events = to_streamed_response_wrapper(
|
|
215
|
+
runs.list_events,
|
|
216
|
+
)
|
|
217
|
+
|
|
91
218
|
@cached_property
|
|
92
219
|
def help_requests(self) -> HelpRequestsResourceWithStreamingResponse:
|
|
93
220
|
return HelpRequestsResourceWithStreamingResponse(self._runs.help_requests)
|
|
@@ -97,6 +224,10 @@ class AsyncRunsResourceWithStreamingResponse:
|
|
|
97
224
|
def __init__(self, runs: AsyncRunsResource) -> None:
|
|
98
225
|
self._runs = runs
|
|
99
226
|
|
|
227
|
+
self.list_events = async_to_streamed_response_wrapper(
|
|
228
|
+
runs.list_events,
|
|
229
|
+
)
|
|
230
|
+
|
|
100
231
|
@cached_property
|
|
101
232
|
def help_requests(self) -> AsyncHelpRequestsResourceWithStreamingResponse:
|
|
102
233
|
return AsyncHelpRequestsResourceWithStreamingResponse(self._runs.help_requests)
|
|
@@ -18,7 +18,7 @@ from ...._response import (
|
|
|
18
18
|
async_to_streamed_response_wrapper,
|
|
19
19
|
)
|
|
20
20
|
from ...._base_client import make_request_options
|
|
21
|
-
from ....types.v2.integrations import salesforce_run_crud_action_params
|
|
21
|
+
from ....types.v2.integrations import salesforce_run_soql_query_params, salesforce_run_crud_action_params
|
|
22
22
|
|
|
23
23
|
__all__ = ["SalesforceResource", "AsyncSalesforceResource"]
|
|
24
24
|
|
|
@@ -89,6 +89,41 @@ class SalesforceResource(SyncAPIResource):
|
|
|
89
89
|
cast_to=object,
|
|
90
90
|
)
|
|
91
91
|
|
|
92
|
+
def run_soql_query(
|
|
93
|
+
self,
|
|
94
|
+
slug: str,
|
|
95
|
+
*,
|
|
96
|
+
query: str,
|
|
97
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
98
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
99
|
+
extra_headers: Headers | None = None,
|
|
100
|
+
extra_query: Query | None = None,
|
|
101
|
+
extra_body: Body | None = None,
|
|
102
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
103
|
+
) -> object:
|
|
104
|
+
"""
|
|
105
|
+
Resolve connection by slug and run a SOQL query on Salesforce.
|
|
106
|
+
|
|
107
|
+
Args:
|
|
108
|
+
extra_headers: Send extra headers
|
|
109
|
+
|
|
110
|
+
extra_query: Add additional query parameters to the request
|
|
111
|
+
|
|
112
|
+
extra_body: Add additional JSON properties to the request
|
|
113
|
+
|
|
114
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
115
|
+
"""
|
|
116
|
+
if not slug:
|
|
117
|
+
raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
|
|
118
|
+
return self._post(
|
|
119
|
+
f"/api/v2/integrations/salesforce/{slug}/soql-query",
|
|
120
|
+
body=maybe_transform({"query": query}, salesforce_run_soql_query_params.SalesforceRunSoqlQueryParams),
|
|
121
|
+
options=make_request_options(
|
|
122
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
123
|
+
),
|
|
124
|
+
cast_to=object,
|
|
125
|
+
)
|
|
126
|
+
|
|
92
127
|
|
|
93
128
|
class AsyncSalesforceResource(AsyncAPIResource):
|
|
94
129
|
@cached_property
|
|
@@ -156,6 +191,43 @@ class AsyncSalesforceResource(AsyncAPIResource):
|
|
|
156
191
|
cast_to=object,
|
|
157
192
|
)
|
|
158
193
|
|
|
194
|
+
async def run_soql_query(
|
|
195
|
+
self,
|
|
196
|
+
slug: str,
|
|
197
|
+
*,
|
|
198
|
+
query: str,
|
|
199
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
200
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
201
|
+
extra_headers: Headers | None = None,
|
|
202
|
+
extra_query: Query | None = None,
|
|
203
|
+
extra_body: Body | None = None,
|
|
204
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
205
|
+
) -> object:
|
|
206
|
+
"""
|
|
207
|
+
Resolve connection by slug and run a SOQL query on Salesforce.
|
|
208
|
+
|
|
209
|
+
Args:
|
|
210
|
+
extra_headers: Send extra headers
|
|
211
|
+
|
|
212
|
+
extra_query: Add additional query parameters to the request
|
|
213
|
+
|
|
214
|
+
extra_body: Add additional JSON properties to the request
|
|
215
|
+
|
|
216
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
217
|
+
"""
|
|
218
|
+
if not slug:
|
|
219
|
+
raise ValueError(f"Expected a non-empty value for `slug` but received {slug!r}")
|
|
220
|
+
return await self._post(
|
|
221
|
+
f"/api/v2/integrations/salesforce/{slug}/soql-query",
|
|
222
|
+
body=await async_maybe_transform(
|
|
223
|
+
{"query": query}, salesforce_run_soql_query_params.SalesforceRunSoqlQueryParams
|
|
224
|
+
),
|
|
225
|
+
options=make_request_options(
|
|
226
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
227
|
+
),
|
|
228
|
+
cast_to=object,
|
|
229
|
+
)
|
|
230
|
+
|
|
159
231
|
|
|
160
232
|
class SalesforceResourceWithRawResponse:
|
|
161
233
|
def __init__(self, salesforce: SalesforceResource) -> None:
|
|
@@ -164,6 +236,9 @@ class SalesforceResourceWithRawResponse:
|
|
|
164
236
|
self.run_crud_action = to_raw_response_wrapper(
|
|
165
237
|
salesforce.run_crud_action,
|
|
166
238
|
)
|
|
239
|
+
self.run_soql_query = to_raw_response_wrapper(
|
|
240
|
+
salesforce.run_soql_query,
|
|
241
|
+
)
|
|
167
242
|
|
|
168
243
|
|
|
169
244
|
class AsyncSalesforceResourceWithRawResponse:
|
|
@@ -173,6 +248,9 @@ class AsyncSalesforceResourceWithRawResponse:
|
|
|
173
248
|
self.run_crud_action = async_to_raw_response_wrapper(
|
|
174
249
|
salesforce.run_crud_action,
|
|
175
250
|
)
|
|
251
|
+
self.run_soql_query = async_to_raw_response_wrapper(
|
|
252
|
+
salesforce.run_soql_query,
|
|
253
|
+
)
|
|
176
254
|
|
|
177
255
|
|
|
178
256
|
class SalesforceResourceWithStreamingResponse:
|
|
@@ -182,6 +260,9 @@ class SalesforceResourceWithStreamingResponse:
|
|
|
182
260
|
self.run_crud_action = to_streamed_response_wrapper(
|
|
183
261
|
salesforce.run_crud_action,
|
|
184
262
|
)
|
|
263
|
+
self.run_soql_query = to_streamed_response_wrapper(
|
|
264
|
+
salesforce.run_soql_query,
|
|
265
|
+
)
|
|
185
266
|
|
|
186
267
|
|
|
187
268
|
class AsyncSalesforceResourceWithStreamingResponse:
|
|
@@ -191,3 +272,6 @@ class AsyncSalesforceResourceWithStreamingResponse:
|
|
|
191
272
|
self.run_crud_action = async_to_streamed_response_wrapper(
|
|
192
273
|
salesforce.run_crud_action,
|
|
193
274
|
)
|
|
275
|
+
self.run_soql_query = async_to_streamed_response_wrapper(
|
|
276
|
+
salesforce.run_soql_query,
|
|
277
|
+
)
|
|
@@ -17,7 +17,7 @@ from .state import (
|
|
|
17
17
|
from ...._types import Body, Omit, Query, Headers, NotGiven, omit, not_given
|
|
18
18
|
from ...._utils import maybe_transform, async_maybe_transform
|
|
19
19
|
from ...._compat import cached_property
|
|
20
|
-
from ....types.v2 import task_complete_params, task_update_screen_time_params
|
|
20
|
+
from ....types.v2 import task_complete_params, task_update_column_params, task_update_screen_time_params
|
|
21
21
|
from ...._resource import SyncAPIResource, AsyncAPIResource
|
|
22
22
|
from ...._response import (
|
|
23
23
|
to_raw_response_wrapper,
|
|
@@ -30,6 +30,7 @@ from ....types.v2.task_retry_response import TaskRetryResponse
|
|
|
30
30
|
from ....types.v2.task_cancel_response import TaskCancelResponse
|
|
31
31
|
from ....types.v2.task_complete_response import TaskCompleteResponse
|
|
32
32
|
from ....types.v2.task_retrieve_response import TaskRetrieveResponse
|
|
33
|
+
from ....types.v2.task_update_column_response import TaskUpdateColumnResponse
|
|
33
34
|
from ....types.v2.task_update_screen_time_response import TaskUpdateScreenTimeResponse
|
|
34
35
|
from ....types.v2.task_get_suspended_payload_response import TaskGetSuspendedPayloadResponse
|
|
35
36
|
|
|
@@ -235,6 +236,54 @@ class TasksResource(SyncAPIResource):
|
|
|
235
236
|
cast_to=TaskRetryResponse,
|
|
236
237
|
)
|
|
237
238
|
|
|
239
|
+
def update_column(
|
|
240
|
+
self,
|
|
241
|
+
task_id: str,
|
|
242
|
+
*,
|
|
243
|
+
key: str,
|
|
244
|
+
value: Optional[str],
|
|
245
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
246
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
247
|
+
extra_headers: Headers | None = None,
|
|
248
|
+
extra_query: Query | None = None,
|
|
249
|
+
extra_body: Body | None = None,
|
|
250
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
251
|
+
) -> TaskUpdateColumnResponse:
|
|
252
|
+
"""Updates or inserts a column value for a task.
|
|
253
|
+
|
|
254
|
+
If the column key already exists,
|
|
255
|
+
its value will be updated. If it doesn't exist, a new column will be added.
|
|
256
|
+
|
|
257
|
+
Args:
|
|
258
|
+
key: The column key to update or insert.
|
|
259
|
+
|
|
260
|
+
value: The value to set for the column.
|
|
261
|
+
|
|
262
|
+
extra_headers: Send extra headers
|
|
263
|
+
|
|
264
|
+
extra_query: Add additional query parameters to the request
|
|
265
|
+
|
|
266
|
+
extra_body: Add additional JSON properties to the request
|
|
267
|
+
|
|
268
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
269
|
+
"""
|
|
270
|
+
if not task_id:
|
|
271
|
+
raise ValueError(f"Expected a non-empty value for `task_id` but received {task_id!r}")
|
|
272
|
+
return self._post(
|
|
273
|
+
f"/api/v2/tasks/{task_id}/columns",
|
|
274
|
+
body=maybe_transform(
|
|
275
|
+
{
|
|
276
|
+
"key": key,
|
|
277
|
+
"value": value,
|
|
278
|
+
},
|
|
279
|
+
task_update_column_params.TaskUpdateColumnParams,
|
|
280
|
+
),
|
|
281
|
+
options=make_request_options(
|
|
282
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
283
|
+
),
|
|
284
|
+
cast_to=TaskUpdateColumnResponse,
|
|
285
|
+
)
|
|
286
|
+
|
|
238
287
|
def update_screen_time(
|
|
239
288
|
self,
|
|
240
289
|
task_id: str,
|
|
@@ -479,6 +528,54 @@ class AsyncTasksResource(AsyncAPIResource):
|
|
|
479
528
|
cast_to=TaskRetryResponse,
|
|
480
529
|
)
|
|
481
530
|
|
|
531
|
+
async def update_column(
|
|
532
|
+
self,
|
|
533
|
+
task_id: str,
|
|
534
|
+
*,
|
|
535
|
+
key: str,
|
|
536
|
+
value: Optional[str],
|
|
537
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
538
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
539
|
+
extra_headers: Headers | None = None,
|
|
540
|
+
extra_query: Query | None = None,
|
|
541
|
+
extra_body: Body | None = None,
|
|
542
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
543
|
+
) -> TaskUpdateColumnResponse:
|
|
544
|
+
"""Updates or inserts a column value for a task.
|
|
545
|
+
|
|
546
|
+
If the column key already exists,
|
|
547
|
+
its value will be updated. If it doesn't exist, a new column will be added.
|
|
548
|
+
|
|
549
|
+
Args:
|
|
550
|
+
key: The column key to update or insert.
|
|
551
|
+
|
|
552
|
+
value: The value to set for the column.
|
|
553
|
+
|
|
554
|
+
extra_headers: Send extra headers
|
|
555
|
+
|
|
556
|
+
extra_query: Add additional query parameters to the request
|
|
557
|
+
|
|
558
|
+
extra_body: Add additional JSON properties to the request
|
|
559
|
+
|
|
560
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
561
|
+
"""
|
|
562
|
+
if not task_id:
|
|
563
|
+
raise ValueError(f"Expected a non-empty value for `task_id` but received {task_id!r}")
|
|
564
|
+
return await self._post(
|
|
565
|
+
f"/api/v2/tasks/{task_id}/columns",
|
|
566
|
+
body=await async_maybe_transform(
|
|
567
|
+
{
|
|
568
|
+
"key": key,
|
|
569
|
+
"value": value,
|
|
570
|
+
},
|
|
571
|
+
task_update_column_params.TaskUpdateColumnParams,
|
|
572
|
+
),
|
|
573
|
+
options=make_request_options(
|
|
574
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
575
|
+
),
|
|
576
|
+
cast_to=TaskUpdateColumnResponse,
|
|
577
|
+
)
|
|
578
|
+
|
|
482
579
|
async def update_screen_time(
|
|
483
580
|
self,
|
|
484
581
|
task_id: str,
|
|
@@ -543,6 +640,9 @@ class TasksResourceWithRawResponse:
|
|
|
543
640
|
self.retry = to_raw_response_wrapper(
|
|
544
641
|
tasks.retry,
|
|
545
642
|
)
|
|
643
|
+
self.update_column = to_raw_response_wrapper(
|
|
644
|
+
tasks.update_column,
|
|
645
|
+
)
|
|
546
646
|
self.update_screen_time = to_raw_response_wrapper(
|
|
547
647
|
tasks.update_screen_time,
|
|
548
648
|
)
|
|
@@ -571,6 +671,9 @@ class AsyncTasksResourceWithRawResponse:
|
|
|
571
671
|
self.retry = async_to_raw_response_wrapper(
|
|
572
672
|
tasks.retry,
|
|
573
673
|
)
|
|
674
|
+
self.update_column = async_to_raw_response_wrapper(
|
|
675
|
+
tasks.update_column,
|
|
676
|
+
)
|
|
574
677
|
self.update_screen_time = async_to_raw_response_wrapper(
|
|
575
678
|
tasks.update_screen_time,
|
|
576
679
|
)
|
|
@@ -599,6 +702,9 @@ class TasksResourceWithStreamingResponse:
|
|
|
599
702
|
self.retry = to_streamed_response_wrapper(
|
|
600
703
|
tasks.retry,
|
|
601
704
|
)
|
|
705
|
+
self.update_column = to_streamed_response_wrapper(
|
|
706
|
+
tasks.update_column,
|
|
707
|
+
)
|
|
602
708
|
self.update_screen_time = to_streamed_response_wrapper(
|
|
603
709
|
tasks.update_screen_time,
|
|
604
710
|
)
|
|
@@ -627,6 +733,9 @@ class AsyncTasksResourceWithStreamingResponse:
|
|
|
627
733
|
self.retry = async_to_streamed_response_wrapper(
|
|
628
734
|
tasks.retry,
|
|
629
735
|
)
|
|
736
|
+
self.update_column = async_to_streamed_response_wrapper(
|
|
737
|
+
tasks.update_column,
|
|
738
|
+
)
|
|
630
739
|
self.update_screen_time = async_to_streamed_response_wrapper(
|
|
631
740
|
tasks.update_screen_time,
|
|
632
741
|
)
|
samplehc/types/v2/__init__.py
CHANGED
|
@@ -28,12 +28,14 @@ from .workflow_deploy_response import WorkflowDeployResponse as WorkflowDeployRe
|
|
|
28
28
|
from .async_result_sleep_params import AsyncResultSleepParams as AsyncResultSleepParams
|
|
29
29
|
from .document_combine_response import DocumentCombineResponse as DocumentCombineResponse
|
|
30
30
|
from .document_extract_response import DocumentExtractResponse as DocumentExtractResponse
|
|
31
|
+
from .task_update_column_params import TaskUpdateColumnParams as TaskUpdateColumnParams
|
|
31
32
|
from .document_classify_response import DocumentClassifyResponse as DocumentClassifyResponse
|
|
32
33
|
from .document_retrieve_response import DocumentRetrieveResponse as DocumentRetrieveResponse
|
|
33
34
|
from .policy_list_plans_response import PolicyListPlansResponse as PolicyListPlansResponse
|
|
34
35
|
from .async_result_sleep_response import AsyncResultSleepResponse as AsyncResultSleepResponse
|
|
35
36
|
from .browser_agent_invoke_params import BrowserAgentInvokeParams as BrowserAgentInvokeParams
|
|
36
37
|
from .database_execute_sql_params import DatabaseExecuteSqlParams as DatabaseExecuteSqlParams
|
|
38
|
+
from .task_update_column_response import TaskUpdateColumnResponse as TaskUpdateColumnResponse
|
|
37
39
|
from .document_generate_csv_params import DocumentGenerateCsvParams as DocumentGenerateCsvParams
|
|
38
40
|
from .policy_list_companies_params import PolicyListCompaniesParams as PolicyListCompaniesParams
|
|
39
41
|
from .browser_agent_invoke_response import BrowserAgentInvokeResponse as BrowserAgentInvokeResponse
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from .run_list_events_params import RunListEventsParams as RunListEventsParams
|
|
6
|
+
from .run_list_events_response import RunListEventsResponse as RunListEventsResponse
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["RunListEventsParams"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class RunListEventsParams(TypedDict, total=False):
|
|
11
|
+
cursor: str
|
|
12
|
+
"""Cursor from previous page"""
|
|
13
|
+
|
|
14
|
+
limit: float
|
|
15
|
+
"""Maximum number of events to return"""
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from datetime import datetime
|
|
5
|
+
from typing_extensions import Literal
|
|
6
|
+
|
|
7
|
+
from pydantic import Field as FieldInfo
|
|
8
|
+
|
|
9
|
+
from ...._models import BaseModel
|
|
10
|
+
|
|
11
|
+
__all__ = ["RunListEventsResponse", "Event"]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class Event(BaseModel):
|
|
15
|
+
created_at: datetime = FieldInfo(alias="createdAt")
|
|
16
|
+
|
|
17
|
+
type: Literal["log", "help-request"]
|
|
18
|
+
|
|
19
|
+
data: Optional[object] = None
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class RunListEventsResponse(BaseModel):
|
|
23
|
+
events: List[Event]
|
|
24
|
+
"""Events for the browser agent run"""
|
|
25
|
+
|
|
26
|
+
has_more: bool = FieldInfo(alias="hasMore")
|
|
27
|
+
"""Whether more events are available"""
|
|
28
|
+
|
|
29
|
+
next_cursor: Optional[str] = FieldInfo(alias="nextCursor", default=None)
|
|
30
|
+
"""Cursor to fetch the next page"""
|
|
@@ -10,6 +10,7 @@ from .careviso_get_payers_response import CarevisoGetPayersResponse as CarevisoG
|
|
|
10
10
|
from .glidian_list_payers_response import GlidianListPayersResponse as GlidianListPayersResponse
|
|
11
11
|
from .glidian_list_services_params import GlidianListServicesParams as GlidianListServicesParams
|
|
12
12
|
from .glidian_list_services_response import GlidianListServicesResponse as GlidianListServicesResponse
|
|
13
|
+
from .salesforce_run_soql_query_params import SalesforceRunSoqlQueryParams as SalesforceRunSoqlQueryParams
|
|
13
14
|
from .salesforce_run_crud_action_params import SalesforceRunCrudActionParams as SalesforceRunCrudActionParams
|
|
14
15
|
from .careviso_submit_prior_authorization_params import (
|
|
15
16
|
CarevisoSubmitPriorAuthorizationParams as CarevisoSubmitPriorAuthorizationParams,
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing_extensions import Required, TypedDict
|
|
6
|
+
|
|
7
|
+
__all__ = ["SalesforceRunSoqlQueryParams"]
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SalesforceRunSoqlQueryParams(TypedDict, total=False):
|
|
11
|
+
query: Required[str]
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Optional
|
|
6
|
+
from typing_extensions import Required, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["TaskUpdateColumnParams"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class TaskUpdateColumnParams(TypedDict, total=False):
|
|
12
|
+
key: Required[str]
|
|
13
|
+
"""The column key to update or insert."""
|
|
14
|
+
|
|
15
|
+
value: Required[Optional[str]]
|
|
16
|
+
"""The value to set for the column."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: samplehc
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.13.0
|
|
4
4
|
Summary: The official Python library for the Sample Healthcare API
|
|
5
5
|
Project-URL: Homepage, https://github.com/samplehc/samplehc-python
|
|
6
6
|
Project-URL: Repository, https://github.com/samplehc/samplehc-python
|
|
@@ -11,7 +11,7 @@ samplehc/_resource.py,sha256=Mdg6fhf_5wYd2K2JZ4BQIJMPqJOWetqpJE3h3MmGZJE,1160
|
|
|
11
11
|
samplehc/_response.py,sha256=UzsuYRbic274gcdUWq9ShPkdRt7VrzkjaqwSwdxqWIs,28816
|
|
12
12
|
samplehc/_streaming.py,sha256=yAEL3kUU3BoKZpDC6T6Psl11nDAMMAjSyWvWnk3R8vU,10140
|
|
13
13
|
samplehc/_types.py,sha256=Gx3CUAUSTuUToKvgv-KsFoQ25mp6N1qHbODB21j8I8c,7238
|
|
14
|
-
samplehc/_version.py,sha256=
|
|
14
|
+
samplehc/_version.py,sha256=Ndowe8w0P8o2TF_NLb06QTQ4jiKAxUAMNzt2PaE0C1E,161
|
|
15
15
|
samplehc/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
samplehc/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
samplehc/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
@@ -41,7 +41,7 @@ samplehc/resources/v2/browser_agents/__init__.py,sha256=Byeyzaw5o_dcSvkefEoViV9x
|
|
|
41
41
|
samplehc/resources/v2/browser_agents/browser_agents.py,sha256=fr3DQezSabZK58uAxHKk0GpqVJkXr5uynobs0FZ8Dtk,7919
|
|
42
42
|
samplehc/resources/v2/browser_agents/runs/__init__.py,sha256=v6kly2kRgTEcwzev4KKwLOvU_7iJFuYRbZckR0LmgoM,1055
|
|
43
43
|
samplehc/resources/v2/browser_agents/runs/help_requests.py,sha256=6V1AyR7_64rxBMv3KzdHvAmnzYFVGQ4W-67Wl7O7pwA,7788
|
|
44
|
-
samplehc/resources/v2/browser_agents/runs/runs.py,sha256=
|
|
44
|
+
samplehc/resources/v2/browser_agents/runs/runs.py,sha256=SYY5LX9dLFlB-LB39lQE2hnMzUwNSjnn2wLKouElpC0,8435
|
|
45
45
|
samplehc/resources/v2/browser_automation/__init__.py,sha256=a7mi3Gg12Vk6CCsm3Q50nsrwLzXK_sVk_iV6ORlqqJY,1172
|
|
46
46
|
samplehc/resources/v2/browser_automation/availity.py,sha256=QPOa5e364LqdSIlz09XyeZF5myQi6rPILZa4Mpwt0lE,9545
|
|
47
47
|
samplehc/resources/v2/browser_automation/browser_automation.py,sha256=jiBEq2DdaD6pEaWG2X2SvxNJSug-zaQ8GInPnYALcvQ,4071
|
|
@@ -62,7 +62,7 @@ samplehc/resources/v2/hie/hie.py,sha256=bdTM7CeHELmGULZRkOHnnfg-MoKadTnbaY9hDBtN
|
|
|
62
62
|
samplehc/resources/v2/integrations/__init__.py,sha256=YiQg_OIh2fgxRU5bC-_KZW8Q4gfxekvwAzve_37ATeU,3858
|
|
63
63
|
samplehc/resources/v2/integrations/careviso.py,sha256=hrq_Qfw9hXvtXwJ2JayofjACBJhqDHwSU5aCQUy4G1o,15464
|
|
64
64
|
samplehc/resources/v2/integrations/integrations.py,sha256=ee8BjFmeEzZVo7HjEkY-PV2vjVVsltkrLIn9m2wCpOE,10567
|
|
65
|
-
samplehc/resources/v2/integrations/salesforce.py,sha256=
|
|
65
|
+
samplehc/resources/v2/integrations/salesforce.py,sha256=2QcY6sHc12juXX3IDNt_isQk_Vca2bB1QC4ZWA5Ku6c,10914
|
|
66
66
|
samplehc/resources/v2/integrations/snowflake.py,sha256=xOF5bevD1ViDcL6qaoKMeNBtjVpZyeckzRO7dPmLdrs,6506
|
|
67
67
|
samplehc/resources/v2/integrations/xcures.py,sha256=G7d6HaTkxIv-yuePj7KREitEFjgjTk3DlAtCCLYXODE,7260
|
|
68
68
|
samplehc/resources/v2/integrations/bank/__init__.py,sha256=2aaxngFG7lRvSB6wKMqdXkfQ66OQR_m1fhn2xyD_AE8,1054
|
|
@@ -82,7 +82,7 @@ samplehc/resources/v2/ledger/entry.py,sha256=m0IuJr2Objsnm5int5Z7VGtJQkmVcFDzbK0
|
|
|
82
82
|
samplehc/resources/v2/ledger/ledger.py,sha256=Ayzzu9491xWtnQIFuXNbKDk19JYhHCxqT1msqHElxMI,4670
|
|
83
83
|
samplehc/resources/v2/tasks/__init__.py,sha256=ez5eX-qrV79bmAy3vh-Yp2cWCpVIeDM36Zkn4lDChVg,976
|
|
84
84
|
samplehc/resources/v2/tasks/state.py,sha256=VuECXSNXtdWhaJS3cNcTIdecuQJajCGIFP3lyPZi_xA,9666
|
|
85
|
-
samplehc/resources/v2/tasks/tasks.py,sha256=
|
|
85
|
+
samplehc/resources/v2/tasks/tasks.py,sha256=rT_mWHLmi88GiwmlloXHqvFGzMhFruo8MJuRdlQSLDw,29094
|
|
86
86
|
samplehc/resources/v2/workflow_runs/__init__.py,sha256=maLNLcc-W7a0KHsoPlgCZANcyCE4owxqu3rJwY3lDbY,1055
|
|
87
87
|
samplehc/resources/v2/workflow_runs/step.py,sha256=whzHiJTIhzCNTiRAzvo01FAPEnW-Pye29itDTzZhSyc,6169
|
|
88
88
|
samplehc/resources/v2/workflow_runs/workflow_runs.py,sha256=5a23JhXliB6VNbieEBuDAF5kBbfg6FJKiBOhhwVyix8,19696
|
|
@@ -92,7 +92,7 @@ samplehc/types/v1_query_audit_logs_response.py,sha256=CiFZBhg0Q_c1ydzvNK0MkZLgmP
|
|
|
92
92
|
samplehc/types/v1_sql_execute_params.py,sha256=mC_HUkRzC_d4Ve0XkRMR3VrpZHRqY6RQzaAe-hOdgEA,728
|
|
93
93
|
samplehc/types/v1_sql_execute_response.py,sha256=Fo8npustnKfbqpw8a8FSqYSOwaakmZ4siPC1LRVbpWg,683
|
|
94
94
|
samplehc/types/v1/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
|
95
|
-
samplehc/types/v2/__init__.py,sha256=
|
|
95
|
+
samplehc/types/v2/__init__.py,sha256=z20GvWZZx6oaePPS4K6bfsAkvlPSsHEkBN2cScyZ88c,7324
|
|
96
96
|
samplehc/types/v2/async_result_retrieve_response.py,sha256=hDRnUnMvLJav6RzGqFH7OsZ2fPrTXOaTqlGbWzUhWVU,504
|
|
97
97
|
samplehc/types/v2/async_result_sleep_params.py,sha256=vdhEdUP6vA9Y44waJBU2p_PEC-rzWBOr4RkE1F2eTHs,729
|
|
98
98
|
samplehc/types/v2/async_result_sleep_response.py,sha256=nAUL4IVyG9RjVZtNyMnn_sp1mcwatJCEBjBCDf6bDtM,366
|
|
@@ -151,6 +151,8 @@ samplehc/types/v2/task_complete_response.py,sha256=8VoaWzaqA39icSu1MrTy9KZBaRyta
|
|
|
151
151
|
samplehc/types/v2/task_get_suspended_payload_response.py,sha256=Sxy6vxXJCxI2x-7lVO-iElm8fHDBSplpsteyBYZepCw,262
|
|
152
152
|
samplehc/types/v2/task_retrieve_response.py,sha256=x48lwXHSysKM3hhi6pYWtBDH9jCI4CamjphR97h4o-o,584
|
|
153
153
|
samplehc/types/v2/task_retry_response.py,sha256=ufX9OgBQKA5JTZVa7k8plZakMj_nm1Xl0IE6r4Abyu0,279
|
|
154
|
+
samplehc/types/v2/task_update_column_params.py,sha256=4XjppbYaMK0HUx0pdKYZtPF0sx7kteWVcFdKNPdRstw,443
|
|
155
|
+
samplehc/types/v2/task_update_column_response.py,sha256=zeQliutLYrphABSmMf3zsCqZBKX9JpQB9XPTrA1BS6M,223
|
|
154
156
|
samplehc/types/v2/task_update_screen_time_params.py,sha256=IBcV9FLFpCj0SbHsnrUR-DK9lQHLeHqf7mBZxu3aO0M,502
|
|
155
157
|
samplehc/types/v2/task_update_screen_time_response.py,sha256=FzVYiZSNczXKIc5BCFwIOFRnVCzAFQQ8KfFGY1ukeTU,277
|
|
156
158
|
samplehc/types/v2/workflow_deploy_response.py,sha256=M9kPNKNKy3yvPEp7SASJnM-f1aiAxq7gEdq6v93_BP4,373
|
|
@@ -162,7 +164,9 @@ samplehc/types/v2/workflow_run_resume_when_complete_response.py,sha256=-VG90P9eZ
|
|
|
162
164
|
samplehc/types/v2/workflow_run_retrieve_response.py,sha256=TMODOQGlZ8h76i7xDVq6Q_Do1cbyeuZ2PMlKUMMo7CE,407
|
|
163
165
|
samplehc/types/v2/workflow_start_params.py,sha256=ng_LufXszNHLvDzGflKU4aDMKAtdCw1yqrEoXrWxWzg,477
|
|
164
166
|
samplehc/types/v2/workflow_start_response.py,sha256=RF8irtsIvRiF6ZuDs0ApgGWnvLSip83n7FGyFboUClQ,669
|
|
165
|
-
samplehc/types/v2/browser_agents/__init__.py,sha256=
|
|
167
|
+
samplehc/types/v2/browser_agents/__init__.py,sha256=X0BUKqs0fBdSpxtv5BV9aPJazc5gRoCq4nmFfwEUZBY,287
|
|
168
|
+
samplehc/types/v2/browser_agents/run_list_events_params.py,sha256=9dSd7lXIqILZrbUmsPZyQwKI45AdwOWQxKtUojFySJQ,366
|
|
169
|
+
samplehc/types/v2/browser_agents/run_list_events_response.py,sha256=7P58g6SnhsKxNKxcS5eQkiS9ktF2mfCKNqiWq0DBFS8,790
|
|
166
170
|
samplehc/types/v2/browser_agents/runs/__init__.py,sha256=wZbYvlop8807cU8yil_oo_d3geBtPwJvKdCPrHIsABI,317
|
|
167
171
|
samplehc/types/v2/browser_agents/runs/help_request_resolve_params.py,sha256=naPrcn1OvvaLQZANW3SchskmRSPkrqy-yR0SGmW4qHY,518
|
|
168
172
|
samplehc/types/v2/browser_agents/runs/help_request_resolve_response.py,sha256=rj29f6cenKn-UvX-Ns4YZ6YvAjXGZKQgSaK1PaflJNw,650
|
|
@@ -194,7 +198,7 @@ samplehc/types/v2/hie/adt_subscribe_params.py,sha256=XNvVgMWAnKEO_So8m7iEHgc3YQl
|
|
|
194
198
|
samplehc/types/v2/hie/document_query_params.py,sha256=vdpaitjffO4TjsSJRiFM1k0haCKJhsNMBsAjXugBb4Q,2977
|
|
195
199
|
samplehc/types/v2/hie/document_query_response.py,sha256=scLiQ-nSkRW8vbAg-QiPgkQRLnBIfmjLKqauoNs0cZQ,442
|
|
196
200
|
samplehc/types/v2/hie/document_upload_params.py,sha256=y7Bu6fD5YyZDCGpxN2z5wBmJuENlPSfl_mmSUqN7V9k,1836
|
|
197
|
-
samplehc/types/v2/integrations/__init__.py,sha256=
|
|
201
|
+
samplehc/types/v2/integrations/__init__.py,sha256=jiv9jsVE-mvGzwyJ2etym3eq85ppJDh7wryoQHHr3cA,1525
|
|
198
202
|
samplehc/types/v2/integrations/careviso_get_payers_response.py,sha256=Et-uLf2afZfEmu38r5xkzhQA2UolbFH5z5gpIV2v33g,543
|
|
199
203
|
samplehc/types/v2/integrations/careviso_submit_prior_authorization_params.py,sha256=Kb1VOG1BtL_3b5uBvdY8cVmicO8v3l9a3J09UPCsfrU,3460
|
|
200
204
|
samplehc/types/v2/integrations/glidian_get_submission_requirements_params.py,sha256=vzs_i2xzudxXQhnVeETVCRDZhQTw-WMIZKJTZsxV0ZM,520
|
|
@@ -204,6 +208,7 @@ samplehc/types/v2/integrations/glidian_list_payers_response.py,sha256=Xh6d76ZIj8
|
|
|
204
208
|
samplehc/types/v2/integrations/glidian_list_services_params.py,sha256=23IGwtyqXNlB2l3i4LpQDOZ56GxxIIbDuMeX3UEGsjE,381
|
|
205
209
|
samplehc/types/v2/integrations/glidian_list_services_response.py,sha256=ezChHI2no32064nkk2feoJEQYq7h9WAyCDCfWW-b110,441
|
|
206
210
|
samplehc/types/v2/integrations/salesforce_run_crud_action_params.py,sha256=DEoYOTlq8wr3h3gJnMPPwfUb5zEeZm0_STNYn9q0894,750
|
|
211
|
+
samplehc/types/v2/integrations/salesforce_run_soql_query_params.py,sha256=G5vP1GwS2YWX96jRn3BX0DLt3ETdY_3E5mLPzbiUsYc,304
|
|
207
212
|
samplehc/types/v2/integrations/snowflake_query_params.py,sha256=ave_87sUwdYtAgU21PahfuWMugSwzDxuxkY-YYUcpK0,324
|
|
208
213
|
samplehc/types/v2/integrations/snowflake_query_response.py,sha256=g3sxN4GAiSJZy7HXAQf_uNZmCcoZnVfWlJGfbVtITus,256
|
|
209
214
|
samplehc/types/v2/integrations/xcure_make_request_params.py,sha256=j-F_IqLDzPeUreW7ov_fcpyOaMmgYpYGyKV1VxtvDEw,441
|
|
@@ -237,7 +242,7 @@ samplehc/types/v2/tasks/state_update_params.py,sha256=qSLE4Ic5PJlkvcFbTu-KlfH6qg
|
|
|
237
242
|
samplehc/types/v2/tasks/state_update_response.py,sha256=ZLnR_rl9yasOnaxQvcM3fiaI_H16pDjBve1GUUleul4,214
|
|
238
243
|
samplehc/types/v2/workflow_runs/__init__.py,sha256=Nmrudr30JDOaGyeMcc_dqaqqs_9kTdebHD7W0vHHfdE,208
|
|
239
244
|
samplehc/types/v2/workflow_runs/step_get_output_response.py,sha256=XhRGcpEmxu4TBgpF8r63u5-ruEUDWuXr0ahv1CD9gis,333
|
|
240
|
-
samplehc-0.
|
|
241
|
-
samplehc-0.
|
|
242
|
-
samplehc-0.
|
|
243
|
-
samplehc-0.
|
|
245
|
+
samplehc-0.13.0.dist-info/METADATA,sha256=xQ-FOFnNAabeX3AofU3v8T6K5pMY0SfRhyFYuK6TWkA,14285
|
|
246
|
+
samplehc-0.13.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
247
|
+
samplehc-0.13.0.dist-info/licenses/LICENSE,sha256=nrJkK4JSAQb1p7FJcTysujPJoAZtrnXxwsLkwHz0-J8,11347
|
|
248
|
+
samplehc-0.13.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|