structifyai 1.179.0__py3-none-any.whl → 1.180.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.
- structify/_version.py +1 -1
- structify/resources/connectors/connectors.py +357 -1
- structify/resources/slack.py +8 -8
- structify/resources/wiki.py +23 -18
- structify/types/__init__.py +4 -1
- structify/types/chat_create_session_params.py +1 -0
- structify/types/code_generate_code_params.py +1 -0
- structify/types/connector_add_schema_object_params.py +59 -0
- structify/types/connector_add_schema_object_response.py +35 -0
- structify/types/llm_information_store.py +4 -0
- structify/types/slack_event_payload_param.py +2 -2
- structify/types/slack_events_params.py +2 -2
- structify/types/wiki_create_params.py +1 -2
- structify/types/wiki_create_response.py +23 -0
- structify/types/wiki_list_response.py +22 -3
- structify/types/wiki_page_with_references.py +18 -2
- structify/types/wiki_update_params.py +4 -2
- structify/types/wiki_update_response.py +23 -0
- {structifyai-1.179.0.dist-info → structifyai-1.180.0.dist-info}/METADATA +1 -1
- {structifyai-1.179.0.dist-info → structifyai-1.180.0.dist-info}/RECORD +22 -19
- structify/types/team_wiki_page.py +0 -28
- {structifyai-1.179.0.dist-info → structifyai-1.180.0.dist-info}/WHEEL +0 -0
- {structifyai-1.179.0.dist-info → structifyai-1.180.0.dist-info}/licenses/LICENSE +0 -0
structify/_version.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict, Optional
|
|
5
|
+
from typing import Any, Dict, Optional, cast
|
|
6
6
|
from typing_extensions import Literal, overload
|
|
7
7
|
|
|
8
8
|
import httpx
|
|
@@ -17,6 +17,7 @@ from ...types import (
|
|
|
17
17
|
connector_create_secret_params,
|
|
18
18
|
connector_search_tables_params,
|
|
19
19
|
connector_update_column_params,
|
|
20
|
+
connector_add_schema_object_params,
|
|
20
21
|
connector_get_explorer_chat_params,
|
|
21
22
|
connector_list_with_snippets_params,
|
|
22
23
|
connector_delete_schema_object_params,
|
|
@@ -53,6 +54,7 @@ from ...types.exploration_runs_response import ExplorationRunsResponse
|
|
|
53
54
|
from ...types.connector_summaries_response import ConnectorSummariesResponse
|
|
54
55
|
from ...types.delete_schema_object_response import DeleteSchemaObjectResponse
|
|
55
56
|
from ...types.connector_search_tables_response import ConnectorSearchTablesResponse
|
|
57
|
+
from ...types.connector_add_schema_object_response import ConnectorAddSchemaObjectResponse
|
|
56
58
|
from ...types.connector_list_with_snippets_response import ConnectorListWithSnippetsResponse
|
|
57
59
|
from ...types.connector_get_clarification_requests_response import ConnectorGetClarificationRequestsResponse
|
|
58
60
|
|
|
@@ -270,6 +272,177 @@ class ConnectorsResource(SyncAPIResource):
|
|
|
270
272
|
cast_to=NoneType,
|
|
271
273
|
)
|
|
272
274
|
|
|
275
|
+
@overload
|
|
276
|
+
def add_schema_object(
|
|
277
|
+
self,
|
|
278
|
+
connector_id: str,
|
|
279
|
+
*,
|
|
280
|
+
name: str,
|
|
281
|
+
type: Literal["database"],
|
|
282
|
+
description: Optional[str] | Omit = omit,
|
|
283
|
+
notes: Optional[str] | Omit = omit,
|
|
284
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
285
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
286
|
+
extra_headers: Headers | None = None,
|
|
287
|
+
extra_query: Query | None = None,
|
|
288
|
+
extra_body: Body | None = None,
|
|
289
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
290
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
291
|
+
"""
|
|
292
|
+
Args:
|
|
293
|
+
extra_headers: Send extra headers
|
|
294
|
+
|
|
295
|
+
extra_query: Add additional query parameters to the request
|
|
296
|
+
|
|
297
|
+
extra_body: Add additional JSON properties to the request
|
|
298
|
+
|
|
299
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
300
|
+
"""
|
|
301
|
+
...
|
|
302
|
+
|
|
303
|
+
@overload
|
|
304
|
+
def add_schema_object(
|
|
305
|
+
self,
|
|
306
|
+
connector_id: str,
|
|
307
|
+
*,
|
|
308
|
+
database_id: str,
|
|
309
|
+
name: str,
|
|
310
|
+
type: Literal["schema"],
|
|
311
|
+
description: Optional[str] | Omit = omit,
|
|
312
|
+
notes: Optional[str] | Omit = omit,
|
|
313
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
314
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
315
|
+
extra_headers: Headers | None = None,
|
|
316
|
+
extra_query: Query | None = None,
|
|
317
|
+
extra_body: Body | None = None,
|
|
318
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
319
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
320
|
+
"""
|
|
321
|
+
Args:
|
|
322
|
+
extra_headers: Send extra headers
|
|
323
|
+
|
|
324
|
+
extra_query: Add additional query parameters to the request
|
|
325
|
+
|
|
326
|
+
extra_body: Add additional JSON properties to the request
|
|
327
|
+
|
|
328
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
329
|
+
"""
|
|
330
|
+
...
|
|
331
|
+
|
|
332
|
+
@overload
|
|
333
|
+
def add_schema_object(
|
|
334
|
+
self,
|
|
335
|
+
connector_id: str,
|
|
336
|
+
*,
|
|
337
|
+
name: str,
|
|
338
|
+
schema_id: str,
|
|
339
|
+
type: Literal["table"],
|
|
340
|
+
description: Optional[str] | Omit = omit,
|
|
341
|
+
endpoint: Optional[str] | Omit = omit,
|
|
342
|
+
notes: Optional[str] | Omit = omit,
|
|
343
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
344
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
345
|
+
extra_headers: Headers | None = None,
|
|
346
|
+
extra_query: Query | None = None,
|
|
347
|
+
extra_body: Body | None = None,
|
|
348
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
349
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
350
|
+
"""
|
|
351
|
+
Args:
|
|
352
|
+
extra_headers: Send extra headers
|
|
353
|
+
|
|
354
|
+
extra_query: Add additional query parameters to the request
|
|
355
|
+
|
|
356
|
+
extra_body: Add additional JSON properties to the request
|
|
357
|
+
|
|
358
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
359
|
+
"""
|
|
360
|
+
...
|
|
361
|
+
|
|
362
|
+
@overload
|
|
363
|
+
def add_schema_object(
|
|
364
|
+
self,
|
|
365
|
+
connector_id: str,
|
|
366
|
+
*,
|
|
367
|
+
column_type: str,
|
|
368
|
+
name: str,
|
|
369
|
+
table_id: str,
|
|
370
|
+
type: Literal["column"],
|
|
371
|
+
notes: Optional[str] | Omit = omit,
|
|
372
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
373
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
374
|
+
extra_headers: Headers | None = None,
|
|
375
|
+
extra_query: Query | None = None,
|
|
376
|
+
extra_body: Body | None = None,
|
|
377
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
378
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
379
|
+
"""
|
|
380
|
+
Args:
|
|
381
|
+
extra_headers: Send extra headers
|
|
382
|
+
|
|
383
|
+
extra_query: Add additional query parameters to the request
|
|
384
|
+
|
|
385
|
+
extra_body: Add additional JSON properties to the request
|
|
386
|
+
|
|
387
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
388
|
+
"""
|
|
389
|
+
...
|
|
390
|
+
|
|
391
|
+
@required_args(
|
|
392
|
+
["name", "type"],
|
|
393
|
+
["database_id", "name", "type"],
|
|
394
|
+
["name", "schema_id", "type"],
|
|
395
|
+
["column_type", "name", "table_id", "type"],
|
|
396
|
+
)
|
|
397
|
+
def add_schema_object(
|
|
398
|
+
self,
|
|
399
|
+
connector_id: str,
|
|
400
|
+
*,
|
|
401
|
+
name: str,
|
|
402
|
+
type: Literal["database"] | Literal["schema"] | Literal["table"] | Literal["column"],
|
|
403
|
+
description: Optional[str] | Omit = omit,
|
|
404
|
+
notes: Optional[str] | Omit = omit,
|
|
405
|
+
database_id: str | Omit = omit,
|
|
406
|
+
schema_id: str | Omit = omit,
|
|
407
|
+
endpoint: Optional[str] | Omit = omit,
|
|
408
|
+
column_type: str | Omit = omit,
|
|
409
|
+
table_id: str | Omit = omit,
|
|
410
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
411
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
412
|
+
extra_headers: Headers | None = None,
|
|
413
|
+
extra_query: Query | None = None,
|
|
414
|
+
extra_body: Body | None = None,
|
|
415
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
416
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
417
|
+
if not connector_id:
|
|
418
|
+
raise ValueError(f"Expected a non-empty value for `connector_id` but received {connector_id!r}")
|
|
419
|
+
return cast(
|
|
420
|
+
ConnectorAddSchemaObjectResponse,
|
|
421
|
+
self._post(
|
|
422
|
+
f"/connectors/{connector_id}/schema_object",
|
|
423
|
+
body=maybe_transform(
|
|
424
|
+
{
|
|
425
|
+
"name": name,
|
|
426
|
+
"type": type,
|
|
427
|
+
"description": description,
|
|
428
|
+
"notes": notes,
|
|
429
|
+
"database_id": database_id,
|
|
430
|
+
"schema_id": schema_id,
|
|
431
|
+
"endpoint": endpoint,
|
|
432
|
+
"column_type": column_type,
|
|
433
|
+
"table_id": table_id,
|
|
434
|
+
},
|
|
435
|
+
connector_add_schema_object_params.ConnectorAddSchemaObjectParams,
|
|
436
|
+
),
|
|
437
|
+
options=make_request_options(
|
|
438
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
439
|
+
),
|
|
440
|
+
cast_to=cast(
|
|
441
|
+
Any, ConnectorAddSchemaObjectResponse
|
|
442
|
+
), # Union types cannot be passed in as arguments in the type system
|
|
443
|
+
),
|
|
444
|
+
)
|
|
445
|
+
|
|
273
446
|
def create_secret(
|
|
274
447
|
self,
|
|
275
448
|
connector_id: str,
|
|
@@ -1207,6 +1380,177 @@ class AsyncConnectorsResource(AsyncAPIResource):
|
|
|
1207
1380
|
cast_to=NoneType,
|
|
1208
1381
|
)
|
|
1209
1382
|
|
|
1383
|
+
@overload
|
|
1384
|
+
async def add_schema_object(
|
|
1385
|
+
self,
|
|
1386
|
+
connector_id: str,
|
|
1387
|
+
*,
|
|
1388
|
+
name: str,
|
|
1389
|
+
type: Literal["database"],
|
|
1390
|
+
description: Optional[str] | Omit = omit,
|
|
1391
|
+
notes: Optional[str] | Omit = omit,
|
|
1392
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1393
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1394
|
+
extra_headers: Headers | None = None,
|
|
1395
|
+
extra_query: Query | None = None,
|
|
1396
|
+
extra_body: Body | None = None,
|
|
1397
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1398
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1399
|
+
"""
|
|
1400
|
+
Args:
|
|
1401
|
+
extra_headers: Send extra headers
|
|
1402
|
+
|
|
1403
|
+
extra_query: Add additional query parameters to the request
|
|
1404
|
+
|
|
1405
|
+
extra_body: Add additional JSON properties to the request
|
|
1406
|
+
|
|
1407
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1408
|
+
"""
|
|
1409
|
+
...
|
|
1410
|
+
|
|
1411
|
+
@overload
|
|
1412
|
+
async def add_schema_object(
|
|
1413
|
+
self,
|
|
1414
|
+
connector_id: str,
|
|
1415
|
+
*,
|
|
1416
|
+
database_id: str,
|
|
1417
|
+
name: str,
|
|
1418
|
+
type: Literal["schema"],
|
|
1419
|
+
description: Optional[str] | Omit = omit,
|
|
1420
|
+
notes: Optional[str] | Omit = omit,
|
|
1421
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1422
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1423
|
+
extra_headers: Headers | None = None,
|
|
1424
|
+
extra_query: Query | None = None,
|
|
1425
|
+
extra_body: Body | None = None,
|
|
1426
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1427
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1428
|
+
"""
|
|
1429
|
+
Args:
|
|
1430
|
+
extra_headers: Send extra headers
|
|
1431
|
+
|
|
1432
|
+
extra_query: Add additional query parameters to the request
|
|
1433
|
+
|
|
1434
|
+
extra_body: Add additional JSON properties to the request
|
|
1435
|
+
|
|
1436
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1437
|
+
"""
|
|
1438
|
+
...
|
|
1439
|
+
|
|
1440
|
+
@overload
|
|
1441
|
+
async def add_schema_object(
|
|
1442
|
+
self,
|
|
1443
|
+
connector_id: str,
|
|
1444
|
+
*,
|
|
1445
|
+
name: str,
|
|
1446
|
+
schema_id: str,
|
|
1447
|
+
type: Literal["table"],
|
|
1448
|
+
description: Optional[str] | Omit = omit,
|
|
1449
|
+
endpoint: Optional[str] | Omit = omit,
|
|
1450
|
+
notes: Optional[str] | Omit = omit,
|
|
1451
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1452
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1453
|
+
extra_headers: Headers | None = None,
|
|
1454
|
+
extra_query: Query | None = None,
|
|
1455
|
+
extra_body: Body | None = None,
|
|
1456
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1457
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1458
|
+
"""
|
|
1459
|
+
Args:
|
|
1460
|
+
extra_headers: Send extra headers
|
|
1461
|
+
|
|
1462
|
+
extra_query: Add additional query parameters to the request
|
|
1463
|
+
|
|
1464
|
+
extra_body: Add additional JSON properties to the request
|
|
1465
|
+
|
|
1466
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1467
|
+
"""
|
|
1468
|
+
...
|
|
1469
|
+
|
|
1470
|
+
@overload
|
|
1471
|
+
async def add_schema_object(
|
|
1472
|
+
self,
|
|
1473
|
+
connector_id: str,
|
|
1474
|
+
*,
|
|
1475
|
+
column_type: str,
|
|
1476
|
+
name: str,
|
|
1477
|
+
table_id: str,
|
|
1478
|
+
type: Literal["column"],
|
|
1479
|
+
notes: Optional[str] | Omit = omit,
|
|
1480
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1481
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1482
|
+
extra_headers: Headers | None = None,
|
|
1483
|
+
extra_query: Query | None = None,
|
|
1484
|
+
extra_body: Body | None = None,
|
|
1485
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1486
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1487
|
+
"""
|
|
1488
|
+
Args:
|
|
1489
|
+
extra_headers: Send extra headers
|
|
1490
|
+
|
|
1491
|
+
extra_query: Add additional query parameters to the request
|
|
1492
|
+
|
|
1493
|
+
extra_body: Add additional JSON properties to the request
|
|
1494
|
+
|
|
1495
|
+
timeout: Override the client-level default timeout for this request, in seconds
|
|
1496
|
+
"""
|
|
1497
|
+
...
|
|
1498
|
+
|
|
1499
|
+
@required_args(
|
|
1500
|
+
["name", "type"],
|
|
1501
|
+
["database_id", "name", "type"],
|
|
1502
|
+
["name", "schema_id", "type"],
|
|
1503
|
+
["column_type", "name", "table_id", "type"],
|
|
1504
|
+
)
|
|
1505
|
+
async def add_schema_object(
|
|
1506
|
+
self,
|
|
1507
|
+
connector_id: str,
|
|
1508
|
+
*,
|
|
1509
|
+
name: str,
|
|
1510
|
+
type: Literal["database"] | Literal["schema"] | Literal["table"] | Literal["column"],
|
|
1511
|
+
description: Optional[str] | Omit = omit,
|
|
1512
|
+
notes: Optional[str] | Omit = omit,
|
|
1513
|
+
database_id: str | Omit = omit,
|
|
1514
|
+
schema_id: str | Omit = omit,
|
|
1515
|
+
endpoint: Optional[str] | Omit = omit,
|
|
1516
|
+
column_type: str | Omit = omit,
|
|
1517
|
+
table_id: str | Omit = omit,
|
|
1518
|
+
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
1519
|
+
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
1520
|
+
extra_headers: Headers | None = None,
|
|
1521
|
+
extra_query: Query | None = None,
|
|
1522
|
+
extra_body: Body | None = None,
|
|
1523
|
+
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
1524
|
+
) -> ConnectorAddSchemaObjectResponse:
|
|
1525
|
+
if not connector_id:
|
|
1526
|
+
raise ValueError(f"Expected a non-empty value for `connector_id` but received {connector_id!r}")
|
|
1527
|
+
return cast(
|
|
1528
|
+
ConnectorAddSchemaObjectResponse,
|
|
1529
|
+
await self._post(
|
|
1530
|
+
f"/connectors/{connector_id}/schema_object",
|
|
1531
|
+
body=await async_maybe_transform(
|
|
1532
|
+
{
|
|
1533
|
+
"name": name,
|
|
1534
|
+
"type": type,
|
|
1535
|
+
"description": description,
|
|
1536
|
+
"notes": notes,
|
|
1537
|
+
"database_id": database_id,
|
|
1538
|
+
"schema_id": schema_id,
|
|
1539
|
+
"endpoint": endpoint,
|
|
1540
|
+
"column_type": column_type,
|
|
1541
|
+
"table_id": table_id,
|
|
1542
|
+
},
|
|
1543
|
+
connector_add_schema_object_params.ConnectorAddSchemaObjectParams,
|
|
1544
|
+
),
|
|
1545
|
+
options=make_request_options(
|
|
1546
|
+
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
1547
|
+
),
|
|
1548
|
+
cast_to=cast(
|
|
1549
|
+
Any, ConnectorAddSchemaObjectResponse
|
|
1550
|
+
), # Union types cannot be passed in as arguments in the type system
|
|
1551
|
+
),
|
|
1552
|
+
)
|
|
1553
|
+
|
|
1210
1554
|
async def create_secret(
|
|
1211
1555
|
self,
|
|
1212
1556
|
connector_id: str,
|
|
@@ -1951,6 +2295,9 @@ class ConnectorsResourceWithRawResponse:
|
|
|
1951
2295
|
self.delete = to_raw_response_wrapper(
|
|
1952
2296
|
connectors.delete,
|
|
1953
2297
|
)
|
|
2298
|
+
self.add_schema_object = to_raw_response_wrapper(
|
|
2299
|
+
connectors.add_schema_object,
|
|
2300
|
+
)
|
|
1954
2301
|
self.create_secret = to_raw_response_wrapper(
|
|
1955
2302
|
connectors.create_secret,
|
|
1956
2303
|
)
|
|
@@ -2024,6 +2371,9 @@ class AsyncConnectorsResourceWithRawResponse:
|
|
|
2024
2371
|
self.delete = async_to_raw_response_wrapper(
|
|
2025
2372
|
connectors.delete,
|
|
2026
2373
|
)
|
|
2374
|
+
self.add_schema_object = async_to_raw_response_wrapper(
|
|
2375
|
+
connectors.add_schema_object,
|
|
2376
|
+
)
|
|
2027
2377
|
self.create_secret = async_to_raw_response_wrapper(
|
|
2028
2378
|
connectors.create_secret,
|
|
2029
2379
|
)
|
|
@@ -2097,6 +2447,9 @@ class ConnectorsResourceWithStreamingResponse:
|
|
|
2097
2447
|
self.delete = to_streamed_response_wrapper(
|
|
2098
2448
|
connectors.delete,
|
|
2099
2449
|
)
|
|
2450
|
+
self.add_schema_object = to_streamed_response_wrapper(
|
|
2451
|
+
connectors.add_schema_object,
|
|
2452
|
+
)
|
|
2100
2453
|
self.create_secret = to_streamed_response_wrapper(
|
|
2101
2454
|
connectors.create_secret,
|
|
2102
2455
|
)
|
|
@@ -2170,6 +2523,9 @@ class AsyncConnectorsResourceWithStreamingResponse:
|
|
|
2170
2523
|
self.delete = async_to_streamed_response_wrapper(
|
|
2171
2524
|
connectors.delete,
|
|
2172
2525
|
)
|
|
2526
|
+
self.add_schema_object = async_to_streamed_response_wrapper(
|
|
2527
|
+
connectors.add_schema_object,
|
|
2528
|
+
)
|
|
2173
2529
|
self.create_secret = async_to_streamed_response_wrapper(
|
|
2174
2530
|
connectors.create_secret,
|
|
2175
2531
|
)
|
structify/resources/slack.py
CHANGED
|
@@ -80,12 +80,12 @@ class SlackResource(SyncAPIResource):
|
|
|
80
80
|
self,
|
|
81
81
|
*,
|
|
82
82
|
event: slack_events_params.Variant1Event,
|
|
83
|
+
event_id: str,
|
|
83
84
|
team_id: str,
|
|
84
85
|
type: Literal["event_callback"],
|
|
85
86
|
api_app_id: Optional[str] | Omit = omit,
|
|
86
87
|
authed_users: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
87
88
|
event_context: Optional[str] | Omit = omit,
|
|
88
|
-
event_id: Optional[str] | Omit = omit,
|
|
89
89
|
event_time: Optional[int] | Omit = omit,
|
|
90
90
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
91
91
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -111,7 +111,7 @@ class SlackResource(SyncAPIResource):
|
|
|
111
111
|
"""
|
|
112
112
|
...
|
|
113
113
|
|
|
114
|
-
@required_args(["challenge", "type"], ["event", "team_id", "type"])
|
|
114
|
+
@required_args(["challenge", "type"], ["event", "event_id", "team_id", "type"])
|
|
115
115
|
def events(
|
|
116
116
|
self,
|
|
117
117
|
*,
|
|
@@ -119,11 +119,11 @@ class SlackResource(SyncAPIResource):
|
|
|
119
119
|
type: Literal["url_verification"] | Literal["event_callback"],
|
|
120
120
|
token: Optional[str] | Omit = omit,
|
|
121
121
|
event: slack_events_params.Variant1Event | Omit = omit,
|
|
122
|
+
event_id: str | Omit = omit,
|
|
122
123
|
team_id: str | Omit = omit,
|
|
123
124
|
api_app_id: Optional[str] | Omit = omit,
|
|
124
125
|
authed_users: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
125
126
|
event_context: Optional[str] | Omit = omit,
|
|
126
|
-
event_id: Optional[str] | Omit = omit,
|
|
127
127
|
event_time: Optional[int] | Omit = omit,
|
|
128
128
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
129
129
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -142,11 +142,11 @@ class SlackResource(SyncAPIResource):
|
|
|
142
142
|
"type": type,
|
|
143
143
|
"token": token,
|
|
144
144
|
"event": event,
|
|
145
|
+
"event_id": event_id,
|
|
145
146
|
"team_id": team_id,
|
|
146
147
|
"api_app_id": api_app_id,
|
|
147
148
|
"authed_users": authed_users,
|
|
148
149
|
"event_context": event_context,
|
|
149
|
-
"event_id": event_id,
|
|
150
150
|
"event_time": event_time,
|
|
151
151
|
},
|
|
152
152
|
slack_events_params.SlackEventsParams,
|
|
@@ -215,12 +215,12 @@ class AsyncSlackResource(AsyncAPIResource):
|
|
|
215
215
|
self,
|
|
216
216
|
*,
|
|
217
217
|
event: slack_events_params.Variant1Event,
|
|
218
|
+
event_id: str,
|
|
218
219
|
team_id: str,
|
|
219
220
|
type: Literal["event_callback"],
|
|
220
221
|
api_app_id: Optional[str] | Omit = omit,
|
|
221
222
|
authed_users: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
222
223
|
event_context: Optional[str] | Omit = omit,
|
|
223
|
-
event_id: Optional[str] | Omit = omit,
|
|
224
224
|
event_time: Optional[int] | Omit = omit,
|
|
225
225
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
226
226
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -246,7 +246,7 @@ class AsyncSlackResource(AsyncAPIResource):
|
|
|
246
246
|
"""
|
|
247
247
|
...
|
|
248
248
|
|
|
249
|
-
@required_args(["challenge", "type"], ["event", "team_id", "type"])
|
|
249
|
+
@required_args(["challenge", "type"], ["event", "event_id", "team_id", "type"])
|
|
250
250
|
async def events(
|
|
251
251
|
self,
|
|
252
252
|
*,
|
|
@@ -254,11 +254,11 @@ class AsyncSlackResource(AsyncAPIResource):
|
|
|
254
254
|
type: Literal["url_verification"] | Literal["event_callback"],
|
|
255
255
|
token: Optional[str] | Omit = omit,
|
|
256
256
|
event: slack_events_params.Variant1Event | Omit = omit,
|
|
257
|
+
event_id: str | Omit = omit,
|
|
257
258
|
team_id: str | Omit = omit,
|
|
258
259
|
api_app_id: Optional[str] | Omit = omit,
|
|
259
260
|
authed_users: Optional[SequenceNotStr[str]] | Omit = omit,
|
|
260
261
|
event_context: Optional[str] | Omit = omit,
|
|
261
|
-
event_id: Optional[str] | Omit = omit,
|
|
262
262
|
event_time: Optional[int] | Omit = omit,
|
|
263
263
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
264
264
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -277,11 +277,11 @@ class AsyncSlackResource(AsyncAPIResource):
|
|
|
277
277
|
"type": type,
|
|
278
278
|
"token": token,
|
|
279
279
|
"event": event,
|
|
280
|
+
"event_id": event_id,
|
|
280
281
|
"team_id": team_id,
|
|
281
282
|
"api_app_id": api_app_id,
|
|
282
283
|
"authed_users": authed_users,
|
|
283
284
|
"event_context": event_context,
|
|
284
|
-
"event_id": event_id,
|
|
285
285
|
"event_time": event_time,
|
|
286
286
|
},
|
|
287
287
|
slack_events_params.SlackEventsParams,
|
structify/resources/wiki.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
|
|
7
7
|
import httpx
|
|
8
8
|
|
|
@@ -18,8 +18,9 @@ from .._response import (
|
|
|
18
18
|
async_to_streamed_response_wrapper,
|
|
19
19
|
)
|
|
20
20
|
from .._base_client import make_request_options
|
|
21
|
-
from ..types.team_wiki_page import TeamWikiPage
|
|
22
21
|
from ..types.wiki_list_response import WikiListResponse
|
|
22
|
+
from ..types.wiki_create_response import WikiCreateResponse
|
|
23
|
+
from ..types.wiki_update_response import WikiUpdateResponse
|
|
23
24
|
from ..types.wiki_page_with_references import WikiPageWithReferences
|
|
24
25
|
|
|
25
26
|
__all__ = ["WikiResource", "AsyncWikiResource"]
|
|
@@ -49,7 +50,7 @@ class WikiResource(SyncAPIResource):
|
|
|
49
50
|
self,
|
|
50
51
|
team_id: str,
|
|
51
52
|
*,
|
|
52
|
-
|
|
53
|
+
markdown: str,
|
|
53
54
|
slug: str,
|
|
54
55
|
title: str,
|
|
55
56
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -58,7 +59,7 @@ class WikiResource(SyncAPIResource):
|
|
|
58
59
|
extra_query: Query | None = None,
|
|
59
60
|
extra_body: Body | None = None,
|
|
60
61
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
61
|
-
) ->
|
|
62
|
+
) -> WikiCreateResponse:
|
|
62
63
|
"""
|
|
63
64
|
Args:
|
|
64
65
|
extra_headers: Send extra headers
|
|
@@ -75,7 +76,7 @@ class WikiResource(SyncAPIResource):
|
|
|
75
76
|
f"/team/{team_id}/wiki",
|
|
76
77
|
body=maybe_transform(
|
|
77
78
|
{
|
|
78
|
-
"
|
|
79
|
+
"markdown": markdown,
|
|
79
80
|
"slug": slug,
|
|
80
81
|
"title": title,
|
|
81
82
|
},
|
|
@@ -84,7 +85,7 @@ class WikiResource(SyncAPIResource):
|
|
|
84
85
|
options=make_request_options(
|
|
85
86
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
86
87
|
),
|
|
87
|
-
cast_to=
|
|
88
|
+
cast_to=WikiCreateResponse,
|
|
88
89
|
)
|
|
89
90
|
|
|
90
91
|
def update(
|
|
@@ -92,7 +93,8 @@ class WikiResource(SyncAPIResource):
|
|
|
92
93
|
slug: str,
|
|
93
94
|
*,
|
|
94
95
|
team_id: str,
|
|
95
|
-
|
|
96
|
+
markdown: str,
|
|
97
|
+
base_version: Optional[int] | Omit = omit,
|
|
96
98
|
title: Optional[str] | Omit = omit,
|
|
97
99
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
98
100
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -100,7 +102,7 @@ class WikiResource(SyncAPIResource):
|
|
|
100
102
|
extra_query: Query | None = None,
|
|
101
103
|
extra_body: Body | None = None,
|
|
102
104
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
103
|
-
) ->
|
|
105
|
+
) -> WikiUpdateResponse:
|
|
104
106
|
"""
|
|
105
107
|
Args:
|
|
106
108
|
extra_headers: Send extra headers
|
|
@@ -119,7 +121,8 @@ class WikiResource(SyncAPIResource):
|
|
|
119
121
|
f"/team/{team_id}/wiki/{slug}",
|
|
120
122
|
body=maybe_transform(
|
|
121
123
|
{
|
|
122
|
-
"
|
|
124
|
+
"markdown": markdown,
|
|
125
|
+
"base_version": base_version,
|
|
123
126
|
"title": title,
|
|
124
127
|
},
|
|
125
128
|
wiki_update_params.WikiUpdateParams,
|
|
@@ -127,7 +130,7 @@ class WikiResource(SyncAPIResource):
|
|
|
127
130
|
options=make_request_options(
|
|
128
131
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
129
132
|
),
|
|
130
|
-
cast_to=
|
|
133
|
+
cast_to=WikiUpdateResponse,
|
|
131
134
|
)
|
|
132
135
|
|
|
133
136
|
def list(
|
|
@@ -255,7 +258,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
255
258
|
self,
|
|
256
259
|
team_id: str,
|
|
257
260
|
*,
|
|
258
|
-
|
|
261
|
+
markdown: str,
|
|
259
262
|
slug: str,
|
|
260
263
|
title: str,
|
|
261
264
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
@@ -264,7 +267,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
264
267
|
extra_query: Query | None = None,
|
|
265
268
|
extra_body: Body | None = None,
|
|
266
269
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
267
|
-
) ->
|
|
270
|
+
) -> WikiCreateResponse:
|
|
268
271
|
"""
|
|
269
272
|
Args:
|
|
270
273
|
extra_headers: Send extra headers
|
|
@@ -281,7 +284,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
281
284
|
f"/team/{team_id}/wiki",
|
|
282
285
|
body=await async_maybe_transform(
|
|
283
286
|
{
|
|
284
|
-
"
|
|
287
|
+
"markdown": markdown,
|
|
285
288
|
"slug": slug,
|
|
286
289
|
"title": title,
|
|
287
290
|
},
|
|
@@ -290,7 +293,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
290
293
|
options=make_request_options(
|
|
291
294
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
292
295
|
),
|
|
293
|
-
cast_to=
|
|
296
|
+
cast_to=WikiCreateResponse,
|
|
294
297
|
)
|
|
295
298
|
|
|
296
299
|
async def update(
|
|
@@ -298,7 +301,8 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
298
301
|
slug: str,
|
|
299
302
|
*,
|
|
300
303
|
team_id: str,
|
|
301
|
-
|
|
304
|
+
markdown: str,
|
|
305
|
+
base_version: Optional[int] | Omit = omit,
|
|
302
306
|
title: Optional[str] | Omit = omit,
|
|
303
307
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
304
308
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -306,7 +310,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
306
310
|
extra_query: Query | None = None,
|
|
307
311
|
extra_body: Body | None = None,
|
|
308
312
|
timeout: float | httpx.Timeout | None | NotGiven = not_given,
|
|
309
|
-
) ->
|
|
313
|
+
) -> WikiUpdateResponse:
|
|
310
314
|
"""
|
|
311
315
|
Args:
|
|
312
316
|
extra_headers: Send extra headers
|
|
@@ -325,7 +329,8 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
325
329
|
f"/team/{team_id}/wiki/{slug}",
|
|
326
330
|
body=await async_maybe_transform(
|
|
327
331
|
{
|
|
328
|
-
"
|
|
332
|
+
"markdown": markdown,
|
|
333
|
+
"base_version": base_version,
|
|
329
334
|
"title": title,
|
|
330
335
|
},
|
|
331
336
|
wiki_update_params.WikiUpdateParams,
|
|
@@ -333,7 +338,7 @@ class AsyncWikiResource(AsyncAPIResource):
|
|
|
333
338
|
options=make_request_options(
|
|
334
339
|
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
|
|
335
340
|
),
|
|
336
|
-
cast_to=
|
|
341
|
+
cast_to=WikiUpdateResponse,
|
|
337
342
|
)
|
|
338
343
|
|
|
339
344
|
async def list(
|
structify/types/__init__.py
CHANGED
|
@@ -34,7 +34,6 @@ from .dashboard_page import DashboardPage as DashboardPage
|
|
|
34
34
|
from .job_event_body import JobEventBody as JobEventBody
|
|
35
35
|
from .project_member import ProjectMember as ProjectMember
|
|
36
36
|
from .strategy_param import StrategyParam as StrategyParam
|
|
37
|
-
from .team_wiki_page import TeamWikiPage as TeamWikiPage
|
|
38
37
|
from .team_with_role import TeamWithRole as TeamWithRole
|
|
39
38
|
from .token_response import TokenResponse as TokenResponse
|
|
40
39
|
from .autofix_context import AutofixContext as AutofixContext
|
|
@@ -116,6 +115,8 @@ from .select_team_response import SelectTeamResponse as SelectTeamResponse
|
|
|
116
115
|
from .source_list_response import SourceListResponse as SourceListResponse
|
|
117
116
|
from .structure_pdf_params import StructurePdfParams as StructurePdfParams
|
|
118
117
|
from .update_team_response import UpdateTeamResponse as UpdateTeamResponse
|
|
118
|
+
from .wiki_create_response import WikiCreateResponse as WikiCreateResponse
|
|
119
|
+
from .wiki_update_response import WikiUpdateResponse as WikiUpdateResponse
|
|
119
120
|
from .workflow_stop_params import WorkflowStopParams as WorkflowStopParams
|
|
120
121
|
from .connector_auth_method import ConnectorAuthMethod as ConnectorAuthMethod
|
|
121
122
|
from .connector_list_params import ConnectorListParams as ConnectorListParams
|
|
@@ -296,6 +297,7 @@ from .relationship_merge_strategy_param import RelationshipMergeStrategyParam as
|
|
|
296
297
|
from .source_delete_relationship_params import SourceDeleteRelationshipParams as SourceDeleteRelationshipParams
|
|
297
298
|
from .structure_enhance_property_params import StructureEnhancePropertyParams as StructureEnhancePropertyParams
|
|
298
299
|
from .chat_get_session_timeline_response import ChatGetSessionTimelineResponse as ChatGetSessionTimelineResponse
|
|
300
|
+
from .connector_add_schema_object_params import ConnectorAddSchemaObjectParams as ConnectorAddSchemaObjectParams
|
|
299
301
|
from .connector_get_explorer_chat_params import ConnectorGetExplorerChatParams as ConnectorGetExplorerChatParams
|
|
300
302
|
from .dataset_enrichment_progress_params import DatasetEnrichmentProgressParams as DatasetEnrichmentProgressParams
|
|
301
303
|
from .dataset_update_relationship_params import DatasetUpdateRelationshipParams as DatasetUpdateRelationshipParams
|
|
@@ -312,6 +314,7 @@ from .entity_get_source_entities_response import EntityGetSourceEntitiesResponse
|
|
|
312
314
|
from .session_request_confirmation_params import SessionRequestConfirmationParams as SessionRequestConfirmationParams
|
|
313
315
|
from .session_update_node_progress_params import SessionUpdateNodeProgressParams as SessionUpdateNodeProgressParams
|
|
314
316
|
from .structure_enhance_property_response import StructureEnhancePropertyResponse as StructureEnhancePropertyResponse
|
|
317
|
+
from .connector_add_schema_object_response import ConnectorAddSchemaObjectResponse as ConnectorAddSchemaObjectResponse
|
|
315
318
|
from .dataset_enrichment_progress_response import DatasetEnrichmentProgressResponse as DatasetEnrichmentProgressResponse
|
|
316
319
|
from .structure_find_relationship_response import StructureFindRelationshipResponse as StructureFindRelationshipResponse
|
|
317
320
|
from .connector_delete_schema_object_params import (
|
|
@@ -0,0 +1,59 @@
|
|
|
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 Union, Optional
|
|
6
|
+
from typing_extensions import Literal, Required, TypeAlias, TypedDict
|
|
7
|
+
|
|
8
|
+
__all__ = ["ConnectorAddSchemaObjectParams", "Variant0", "Variant1", "Variant2", "Variant3"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class Variant0(TypedDict, total=False):
|
|
12
|
+
name: Required[str]
|
|
13
|
+
|
|
14
|
+
type: Required[Literal["database"]]
|
|
15
|
+
|
|
16
|
+
description: Optional[str]
|
|
17
|
+
|
|
18
|
+
notes: Optional[str]
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class Variant1(TypedDict, total=False):
|
|
22
|
+
database_id: Required[str]
|
|
23
|
+
|
|
24
|
+
name: Required[str]
|
|
25
|
+
|
|
26
|
+
type: Required[Literal["schema"]]
|
|
27
|
+
|
|
28
|
+
description: Optional[str]
|
|
29
|
+
|
|
30
|
+
notes: Optional[str]
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
class Variant2(TypedDict, total=False):
|
|
34
|
+
name: Required[str]
|
|
35
|
+
|
|
36
|
+
schema_id: Required[str]
|
|
37
|
+
|
|
38
|
+
type: Required[Literal["table"]]
|
|
39
|
+
|
|
40
|
+
description: Optional[str]
|
|
41
|
+
|
|
42
|
+
endpoint: Optional[str]
|
|
43
|
+
|
|
44
|
+
notes: Optional[str]
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
class Variant3(TypedDict, total=False):
|
|
48
|
+
column_type: Required[str]
|
|
49
|
+
|
|
50
|
+
name: Required[str]
|
|
51
|
+
|
|
52
|
+
table_id: Required[str]
|
|
53
|
+
|
|
54
|
+
type: Required[Literal["column"]]
|
|
55
|
+
|
|
56
|
+
notes: Optional[str]
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
ConnectorAddSchemaObjectParams: TypeAlias = Union[Variant0, Variant1, Variant2, Variant3]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from typing import Union
|
|
4
|
+
from typing_extensions import Literal, TypeAlias
|
|
5
|
+
|
|
6
|
+
from .._models import BaseModel
|
|
7
|
+
|
|
8
|
+
__all__ = ["ConnectorAddSchemaObjectResponse", "UnionMember0", "UnionMember1", "UnionMember2", "UnionMember3"]
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class UnionMember0(BaseModel):
|
|
12
|
+
id: str
|
|
13
|
+
|
|
14
|
+
type: Literal["database"]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class UnionMember1(BaseModel):
|
|
18
|
+
id: str
|
|
19
|
+
|
|
20
|
+
type: Literal["schema"]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
class UnionMember2(BaseModel):
|
|
24
|
+
id: str
|
|
25
|
+
|
|
26
|
+
type: Literal["table"]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class UnionMember3(BaseModel):
|
|
30
|
+
id: str
|
|
31
|
+
|
|
32
|
+
type: Literal["column"]
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
ConnectorAddSchemaObjectResponse: TypeAlias = Union[UnionMember0, UnionMember1, UnionMember2, UnionMember3]
|
|
@@ -44,6 +44,8 @@ class DatabaseSchemaTable(BaseModel):
|
|
|
44
44
|
class DatabaseSchema(BaseModel):
|
|
45
45
|
"""Schema within a database"""
|
|
46
46
|
|
|
47
|
+
id: str
|
|
48
|
+
|
|
47
49
|
name: str
|
|
48
50
|
|
|
49
51
|
tables: List[DatabaseSchemaTable]
|
|
@@ -56,6 +58,8 @@ class DatabaseSchema(BaseModel):
|
|
|
56
58
|
class Database(BaseModel):
|
|
57
59
|
"""Database within a connector"""
|
|
58
60
|
|
|
61
|
+
id: str
|
|
62
|
+
|
|
59
63
|
name: str
|
|
60
64
|
|
|
61
65
|
schemas: List[DatabaseSchema]
|
|
@@ -59,6 +59,8 @@ class EventCallbackEvent(TypedDict, total=False):
|
|
|
59
59
|
class EventCallback(TypedDict, total=False):
|
|
60
60
|
event: Required[EventCallbackEvent]
|
|
61
61
|
|
|
62
|
+
event_id: Required[str]
|
|
63
|
+
|
|
62
64
|
team_id: Required[str]
|
|
63
65
|
|
|
64
66
|
type: Required[Literal["event_callback"]]
|
|
@@ -69,8 +71,6 @@ class EventCallback(TypedDict, total=False):
|
|
|
69
71
|
|
|
70
72
|
event_context: Optional[str]
|
|
71
73
|
|
|
72
|
-
event_id: Optional[str]
|
|
73
|
-
|
|
74
74
|
event_time: Optional[int]
|
|
75
75
|
|
|
76
76
|
|
|
@@ -21,6 +21,8 @@ class Variant0(TypedDict, total=False):
|
|
|
21
21
|
class Variant1(TypedDict, total=False):
|
|
22
22
|
event: Required[Variant1Event]
|
|
23
23
|
|
|
24
|
+
event_id: Required[str]
|
|
25
|
+
|
|
24
26
|
team_id: Required[str]
|
|
25
27
|
|
|
26
28
|
type: Required[Literal["event_callback"]]
|
|
@@ -31,8 +33,6 @@ class Variant1(TypedDict, total=False):
|
|
|
31
33
|
|
|
32
34
|
event_context: Optional[str]
|
|
33
35
|
|
|
34
|
-
event_id: Optional[str]
|
|
35
|
-
|
|
36
36
|
event_time: Optional[int]
|
|
37
37
|
|
|
38
38
|
|
|
@@ -2,14 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import Dict
|
|
6
5
|
from typing_extensions import Required, TypedDict
|
|
7
6
|
|
|
8
7
|
__all__ = ["WikiCreateParams"]
|
|
9
8
|
|
|
10
9
|
|
|
11
10
|
class WikiCreateParams(TypedDict, total=False):
|
|
12
|
-
|
|
11
|
+
markdown: Required[str]
|
|
13
12
|
|
|
14
13
|
slug: Required[str]
|
|
15
14
|
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["WikiCreateResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class WikiCreateResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
|
|
11
|
+
created_at: str
|
|
12
|
+
|
|
13
|
+
markdown: str
|
|
14
|
+
|
|
15
|
+
slug: str
|
|
16
|
+
|
|
17
|
+
team_id: str
|
|
18
|
+
|
|
19
|
+
title: str
|
|
20
|
+
|
|
21
|
+
updated_at: str
|
|
22
|
+
|
|
23
|
+
version: int
|
|
@@ -3,8 +3,27 @@
|
|
|
3
3
|
from typing import List
|
|
4
4
|
from typing_extensions import TypeAlias
|
|
5
5
|
|
|
6
|
-
from
|
|
6
|
+
from .._models import BaseModel
|
|
7
7
|
|
|
8
|
-
__all__ = ["WikiListResponse"]
|
|
8
|
+
__all__ = ["WikiListResponse", "WikiListResponseItem"]
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
|
|
11
|
+
class WikiListResponseItem(BaseModel):
|
|
12
|
+
id: str
|
|
13
|
+
|
|
14
|
+
created_at: str
|
|
15
|
+
|
|
16
|
+
markdown: str
|
|
17
|
+
|
|
18
|
+
slug: str
|
|
19
|
+
|
|
20
|
+
team_id: str
|
|
21
|
+
|
|
22
|
+
title: str
|
|
23
|
+
|
|
24
|
+
updated_at: str
|
|
25
|
+
|
|
26
|
+
version: int
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
WikiListResponse: TypeAlias = List[WikiListResponseItem]
|
|
@@ -2,11 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import List
|
|
4
4
|
|
|
5
|
-
from
|
|
5
|
+
from .._models import BaseModel
|
|
6
6
|
from .wiki_connector_reference import WikiConnectorReference
|
|
7
7
|
|
|
8
8
|
__all__ = ["WikiPageWithReferences"]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
class WikiPageWithReferences(
|
|
11
|
+
class WikiPageWithReferences(BaseModel):
|
|
12
|
+
id: str
|
|
13
|
+
|
|
14
|
+
created_at: str
|
|
15
|
+
|
|
16
|
+
markdown: str
|
|
17
|
+
|
|
12
18
|
references: List[WikiConnectorReference]
|
|
19
|
+
|
|
20
|
+
slug: str
|
|
21
|
+
|
|
22
|
+
team_id: str
|
|
23
|
+
|
|
24
|
+
title: str
|
|
25
|
+
|
|
26
|
+
updated_at: str
|
|
27
|
+
|
|
28
|
+
version: int
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
|
-
from typing import
|
|
5
|
+
from typing import Optional
|
|
6
6
|
from typing_extensions import Required, TypedDict
|
|
7
7
|
|
|
8
8
|
__all__ = ["WikiUpdateParams"]
|
|
@@ -11,6 +11,8 @@ __all__ = ["WikiUpdateParams"]
|
|
|
11
11
|
class WikiUpdateParams(TypedDict, total=False):
|
|
12
12
|
team_id: Required[str]
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
markdown: Required[str]
|
|
15
|
+
|
|
16
|
+
base_version: Optional[int]
|
|
15
17
|
|
|
16
18
|
title: Optional[str]
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
+
|
|
3
|
+
from .._models import BaseModel
|
|
4
|
+
|
|
5
|
+
__all__ = ["WikiUpdateResponse"]
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class WikiUpdateResponse(BaseModel):
|
|
9
|
+
id: str
|
|
10
|
+
|
|
11
|
+
created_at: str
|
|
12
|
+
|
|
13
|
+
markdown: str
|
|
14
|
+
|
|
15
|
+
slug: str
|
|
16
|
+
|
|
17
|
+
team_id: str
|
|
18
|
+
|
|
19
|
+
title: str
|
|
20
|
+
|
|
21
|
+
updated_at: str
|
|
22
|
+
|
|
23
|
+
version: int
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: structifyai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.180.0
|
|
4
4
|
Summary: The official Python library for the structify API
|
|
5
5
|
Project-URL: Homepage, https://github.com/StructifyAI/structify-python
|
|
6
6
|
Project-URL: Repository, https://github.com/StructifyAI/structify-python
|
|
@@ -11,7 +11,7 @@ structify/_resource.py,sha256=tJi4pDQooQZ_zJwEwrLj-U-ye2hC-cbmr1GzIwCT10Y,1118
|
|
|
11
11
|
structify/_response.py,sha256=RuNhMDiZUdPqEbmFJHDVI4FMPDszk8QjK9LVWm1Fagk,28806
|
|
12
12
|
structify/_streaming.py,sha256=n4C9M7ITmANYn9LaWHNoqJdIIyF7svLco2qst7u3M7U,10233
|
|
13
13
|
structify/_types.py,sha256=jj4p-m3vpUma0AdhPWIaljHZXeb4RKnrAusjVdpDy5Y,7597
|
|
14
|
-
structify/_version.py,sha256=
|
|
14
|
+
structify/_version.py,sha256=j3DkUZvs9-jBxvatoUgZdstV_KU-5yKarYbkIEqKmIQ,163
|
|
15
15
|
structify/pagination.py,sha256=ycybhWcpKk4ztsMcCA6C0WZiJejGrSx6bSr8LLskJUY,4346
|
|
16
16
|
structify/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
structify/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
@@ -46,13 +46,13 @@ structify/resources/sandbox.py,sha256=KgpZ623G6T_3_oovCgjlxO81M63NanMBAezVDdesOC
|
|
|
46
46
|
structify/resources/scrape.py,sha256=vAEjjOqH0gVOlEs_JvHLMQ-W9zfF28vwdm45CCO2bSs,12119
|
|
47
47
|
structify/resources/server.py,sha256=39G3yhj3NYWgnLq0PdS86lwDvXK6MIWAIl7G0ZLMJro,4934
|
|
48
48
|
structify/resources/sessions.py,sha256=TWTnvSVuh_oIhXB2LCq9FP8gcwN1Sf_2kKmWX_jBoLs,66746
|
|
49
|
-
structify/resources/slack.py,sha256=
|
|
49
|
+
structify/resources/slack.py,sha256=AIHLIzIKAHiw4HwLHlHQcqQYROBaqNA6ceuYpOGPbVo,13038
|
|
50
50
|
structify/resources/sources.py,sha256=K5jLPKu3LNH5vKL9V1NQlHaG8UI982H74enN_cjdf-0,13181
|
|
51
51
|
structify/resources/structure.py,sha256=jXcVdUuNc6Q-HwUhSDcsJONbBqRf_FcPAjNtjXYxrdo,33124
|
|
52
52
|
structify/resources/teams.py,sha256=W1Isf2lXDLB-xdzgR8qJwCrziElOY25OcsQfIBKQ1Sc,55575
|
|
53
53
|
structify/resources/whitelabel.py,sha256=0TQ3HJccdflpAVcHqydizT4RznkRvZBRP0--0szjDps,12865
|
|
54
54
|
structify/resources/whitelabel_service.py,sha256=cqGBpRegtJRjt5WFNPCXTwyGKHTAbBUrhJP1UroEhVQ,9439
|
|
55
|
-
structify/resources/wiki.py,sha256=
|
|
55
|
+
structify/resources/wiki.py,sha256=sFS6i3etYwiQB9iRbdxhQr3y9C9jeVLx6hWCQhu7Tdc,19762
|
|
56
56
|
structify/resources/workflow.py,sha256=D8gnt22usKoY9iA3HTNlbQyWTykNUXl2m3rFsPAKZZc,9273
|
|
57
57
|
structify/resources/workflow_schedule.py,sha256=bP7rxm0OsW27zt2Y5EF7EILfFzP3lKFIaRRr_8MbZvA,29807
|
|
58
58
|
structify/resources/admin/__init__.py,sha256=QbNLwto24WRX1DgTltNy7lRPrwp4bgRla_pmd0fRedM,4362
|
|
@@ -69,7 +69,7 @@ structify/resources/connector_catalog/__init__.py,sha256=uwvbyu4gu4pZ_px3-Nhhh2l
|
|
|
69
69
|
structify/resources/connector_catalog/admin.py,sha256=2ob0yPRr_zyoHGs-XTIupwCCnO9LgddXP-ToAJtTxmw,60801
|
|
70
70
|
structify/resources/connector_catalog/connector_catalog.py,sha256=0cl-NXRalMWtcsWXkKEAPlxZ_slhR1VW4FsPBE81iWY,15533
|
|
71
71
|
structify/resources/connectors/__init__.py,sha256=XshER9L_6E2kY_zKa1VTkY_UmEIAoi3MkeFYJdGGH0U,1133
|
|
72
|
-
structify/resources/connectors/connectors.py,sha256=
|
|
72
|
+
structify/resources/connectors/connectors.py,sha256=GO6LloGr2mm1eJk-QDDgS8ANuBOneo4cX-ajmTG5Mbo,103070
|
|
73
73
|
structify/resources/connectors/type_snippets.py,sha256=dawxpQbDQhqKPHpRQApti0OhgMI-rQUHeRuaDKgU-wM,6585
|
|
74
74
|
structify/resources/datasets/__init__.py,sha256=bzXAcLzZcFHJgRUmvkRsO-koBIahXNo1DCKTBvOiS1Q,1054
|
|
75
75
|
structify/resources/datasets/datasets.py,sha256=CBalzZ6o55Z-6olRChbkO-wRnx8k-qtxFxHumfv5igY,73366
|
|
@@ -78,7 +78,7 @@ structify/resources/user/__init__.py,sha256=vkGsM7uGlBXVVwuEZlICVLlIY3F75n_MIMpm
|
|
|
78
78
|
structify/resources/user/api_keys.py,sha256=LgKvDGkHPGIumWmEsPCA1XYAKNuRN48nqG6anv8AVHE,14331
|
|
79
79
|
structify/resources/user/stripe.py,sha256=MazkGQ5VuNY7TxMPXxJULBVerMGmOXaEcXpfQsUYoNs,13574
|
|
80
80
|
structify/resources/user/user.py,sha256=Hk8D5KB8in-A9eJSYFIosILz4HgSWDwDDAVIQeQ8Sew,25411
|
|
81
|
-
structify/types/__init__.py,sha256=
|
|
81
|
+
structify/types/__init__.py,sha256=Gm7OWeLpLh0Z3gAvf_m_GIZQTTz29k-o3cih1i4tTGQ,28588
|
|
82
82
|
structify/types/accept_invitation_response.py,sha256=hWIn0Sscg7U0uOqoZA5SG8ENZQuM0tsbgOlrJbcW37s,260
|
|
83
83
|
structify/types/add_member_response.py,sha256=_YjqwGpsfdR9Dw6SAQ99TveFSD8Hov1IjVPMH2KC3CM,882
|
|
84
84
|
structify/types/admin_grant_access_response.py,sha256=xCPdmejgZs1oXOsfgbW-cYKZa8getHRotRnsCav5QPU,390
|
|
@@ -91,7 +91,7 @@ structify/types/chat_admin_issue_found_params.py,sha256=N5YMgm6O-Yr3sXZb2sWDHdyN
|
|
|
91
91
|
structify/types/chat_copy_node_output_by_code_hash_params.py,sha256=gP4V2Y0_Rb4-kwoEceClJLgjVdWv7bgcI4qqQIvdNv8,356
|
|
92
92
|
structify/types/chat_copy_node_output_by_code_hash_response.py,sha256=Cst1RK9jDrMAKEyzLIk5_-D6YUbO-AIVllYui2sy2aQ,272
|
|
93
93
|
structify/types/chat_copy_params.py,sha256=tfA3jdduKDJeHiYjWWKdHifRMp1sCGyGQcYHFuMFdnE,425
|
|
94
|
-
structify/types/chat_create_session_params.py,sha256=
|
|
94
|
+
structify/types/chat_create_session_params.py,sha256=tyt7TJt03vz9-Jw4QU8UbvdbTiPMPK5843gNJQ5Dck8,1885
|
|
95
95
|
structify/types/chat_delete_files_params.py,sha256=Rv24bWe1CK524xobl9-_APx5GG8KTqIwEtUgYIUlMXc,343
|
|
96
96
|
structify/types/chat_delete_files_response.py,sha256=ZoFJjfZqn_rVuwiFhsuFigN_AQHh_DRkb5KRj7J_49g,225
|
|
97
97
|
structify/types/chat_dependency.py,sha256=J8JLY6kBjFt4dgf-_Vk_HEjxS5R6_6VnTQue2JzZRug,415
|
|
@@ -115,9 +115,11 @@ structify/types/chat_update_session_favorite_params.py,sha256=UNi0YujSs1gCSry2jK
|
|
|
115
115
|
structify/types/chat_update_session_params.py,sha256=5NQZx-j-W2xQGlX0GU-9vwyQt0QunlifWY2MpRtrEv8,382
|
|
116
116
|
structify/types/chat_update_visibility_params.py,sha256=uWtgq4zb_TSO4hIsY0FmdWaljB_20wpjl6IQhRMibTg,361
|
|
117
117
|
structify/types/chat_visibility.py,sha256=GpTgjpcupE1z9Iul8fxOrlMoP_2wjQ_7Z0rJ2y9qO5Q,244
|
|
118
|
-
structify/types/code_generate_code_params.py,sha256=
|
|
118
|
+
structify/types/code_generate_code_params.py,sha256=K44J7mgJT6491hb-nLLARwkDsC7TMl2XIxuIIQZCoFw,2393
|
|
119
119
|
structify/types/code_interrupt_generation_params.py,sha256=1Y9VOgObIJFyYgAEkUuWZRKKV5-4HcoRA6p5iSEnF3s,410
|
|
120
120
|
structify/types/connector.py,sha256=hqfk8x1ZM39idvAd4wXLm1QNrnT3kRgxEuhk8O28-B0,1069
|
|
121
|
+
structify/types/connector_add_schema_object_params.py,sha256=9mnIPgBHlfAlyhsDAjGQUBfm0ar17o2z0GdQHsRL1ts,1187
|
|
122
|
+
structify/types/connector_add_schema_object_response.py,sha256=J4puhk0xXjRBx5p9_uekmngLj_oiy3zwKE_PcSDBuyA,713
|
|
121
123
|
structify/types/connector_auth_method.py,sha256=iHBmcNbi74mDjFd_m4-HrGrZoV9_WRSFtrOY0fz9NhQ,562
|
|
122
124
|
structify/types/connector_auth_method_with_fields.py,sha256=EABCugmJ8ahZNhSqvNQAESjHpD3kozh4GPop2OZpSMw,519
|
|
123
125
|
structify/types/connector_catalog_list_params.py,sha256=I6VUDKLGNd_p2ePnb1OeHHdaFW2HT5Hw26fSJR4xR3E,551
|
|
@@ -277,7 +279,7 @@ structify/types/list_members_response.py,sha256=r2FsGyRNLd62HRVdMEgzquEIIevjcLkF
|
|
|
277
279
|
structify/types/list_projects_response.py,sha256=wbEpzmj8T6Zcbmka1kQfAvUKYU25jhD93Nn8xxIIXWk,278
|
|
278
280
|
structify/types/list_tables_response.py,sha256=1XIMp2upviEO0H2H4Jijpkg-eJwYU3F76k8FLkUmODs,307
|
|
279
281
|
structify/types/list_teams_response.py,sha256=x29nOJYk-J8B_U9K-M_QALpsUZmMpDXwC74b0mI0Uls,286
|
|
280
|
-
structify/types/llm_information_store.py,sha256=
|
|
282
|
+
structify/types/llm_information_store.py,sha256=t01qPX2swyYzcqi4vjRYbuYHs2vYoxl75niaLdGtezk,2351
|
|
281
283
|
structify/types/match_create_jobs_params.py,sha256=5wil8clE2f1o4biqh73ldf4x_aIgqOVtvnJZe_vCibU,633
|
|
282
284
|
structify/types/match_list_results_params.py,sha256=TH2MarUXxaWpxFibx8tLYzKw4jUXGNvfzv40EZ0Kyhw,540
|
|
283
285
|
structify/types/match_result.py,sha256=j7AcS26BRJXRz9NKpMgPG3iFn5eofmqPopt7ZWbwbZ8,509
|
|
@@ -330,8 +332,8 @@ structify/types/session_upload_dashboard_layout_params.py,sha256=e0Wl58rImZujwww
|
|
|
330
332
|
structify/types/session_upload_node_output_data_params.py,sha256=9Jr6QHTjJ22XZsTvZtHxtgpr6xoqiKwhj7jT6EAmDMM,416
|
|
331
333
|
structify/types/session_upload_node_visualization_output_params.py,sha256=yMIKhede3dc7-Nng9VqM09TSauulIGMKkzUgU9yvG0I,385
|
|
332
334
|
structify/types/slack_api_response.py,sha256=V2gZUhcFGy4UFdgu1WF3fHS25Jyly3mgfCx_rYf4AeI,506
|
|
333
|
-
structify/types/slack_event_payload_param.py,sha256=
|
|
334
|
-
structify/types/slack_events_params.py,sha256=
|
|
335
|
+
structify/types/slack_event_payload_param.py,sha256=6jBIkT7pF-ceS1Mu-BOgIiVLUIJnk4KxvLCZ6TlZIhA,1598
|
|
336
|
+
structify/types/slack_events_params.py,sha256=ajoDYVt-ynUlJiBuEH8ec5XIghOHrvALqmPD5uDlxIk,1522
|
|
335
337
|
structify/types/source.py,sha256=CGPjLL1R41gJGoJbSSqFJeCtQUir7lJkptC8eI4ERqw,814
|
|
336
338
|
structify/types/source_delete_entity_params.py,sha256=lQHCpKkAggme2ZBRfCOA3GbIDpHbr3I8HCHLsGqfaFk,307
|
|
337
339
|
structify/types/source_delete_relationship_params.py,sha256=r-yVxl4vXogXxwuZko-rXFdL5X0B0K7XhHePTlCGeZU,325
|
|
@@ -367,7 +369,6 @@ structify/types/team_role.py,sha256=xlMM8_rJ_7N77mkUaH709rcCLKN6IvjfqUdxHRguMxs,
|
|
|
367
369
|
structify/types/team_subscription_status.py,sha256=6ZPOvV0DSr0G0INYit4MZIz414r4AW5LPGdT4rvj_x0,619
|
|
368
370
|
structify/types/team_update_member_role_params.py,sha256=K7_ylgRKDTOT3yqqyhpUCV9AQllv3VII0OiVS8CxehI,365
|
|
369
371
|
structify/types/team_update_params.py,sha256=02KyDHm0xqZgdy6HgHNLCBcOSyMSrYh3dt8o-eVjrzQ,512
|
|
370
|
-
structify/types/team_wiki_page.py,sha256=PDcFqG8mc10Ejnh6YeoSdalNorn40axi7K3ppmhRQ9I,454
|
|
371
372
|
structify/types/team_with_role.py,sha256=t-UgnD90UmxlMpLHdxN8L7kK7VxMVLj-PM26NvkV_2U,327
|
|
372
373
|
structify/types/teams_link_code_response.py,sha256=p81nvCP4KeGVUgQiiaFwAlLMRaGnG4Iv7rp03WFG0uA,269
|
|
373
374
|
structify/types/token_response.py,sha256=N75RMh9ZF05z5Ubc_Pu2pePe3MN7Yqn2GB1FJ8FQJZ0,408
|
|
@@ -388,10 +389,12 @@ structify/types/user_update_params.py,sha256=Z6bSEcvG5mv38rhVv2Omjtk5HgLuRcfPvi0
|
|
|
388
389
|
structify/types/user_usage_params.py,sha256=9pIC03UG1gStMjuSTIp2FFgFqmBWTFvIgYcwEcef7P0,298
|
|
389
390
|
structify/types/user_usage_response.py,sha256=EDuJrPsWkTQOMImx7EARAzL_lO23AeW_-rRWXGAArJ0,263
|
|
390
391
|
structify/types/wiki_connector_reference.py,sha256=jktQImwtOU3P7f3zEhy0PnVFeU6lWwrBdnmr7nPSSDo,1222
|
|
391
|
-
structify/types/wiki_create_params.py,sha256=
|
|
392
|
-
structify/types/
|
|
393
|
-
structify/types/
|
|
394
|
-
structify/types/
|
|
392
|
+
structify/types/wiki_create_params.py,sha256=wUyt-E2oh2GX-3tOKFDyJut9dkbHM6db2ZUGIh5aisA,334
|
|
393
|
+
structify/types/wiki_create_response.py,sha256=9orww-rrlX6Zo-s5XwjE-BnnegupLPjxp3Zqt5twZWc,332
|
|
394
|
+
structify/types/wiki_list_response.py,sha256=3cy30Y1gBEwAuB62oDhPElgl3u3l_PIT2B80v7tFmYY,480
|
|
395
|
+
structify/types/wiki_page_with_references.py,sha256=-miBnm2uYg3nucEaWK2gGcd8s4K_r9AywwHAUZrEgPQ,472
|
|
396
|
+
structify/types/wiki_update_params.py,sha256=a44DcH_jAgtjJ0C73CmBvSqPekITPWMCJSe4Jip0rMM,398
|
|
397
|
+
structify/types/wiki_update_response.py,sha256=nhyZEDGz_Mvr3FQMxNDF5Z07TE82Gcj0FLWwZE87tsQ,332
|
|
395
398
|
structify/types/workflow_dag.py,sha256=rgyIEaVDhEQNR_P-miSrt6N2YjjAJDku2XbkXEkFxbM,829
|
|
396
399
|
structify/types/workflow_node_execution_status.py,sha256=YXJLd-P4SGdu_IsJjyO44IRYoO4Bm0zEIjUhCSy_HFY,316
|
|
397
400
|
structify/types/workflow_node_log.py,sha256=I3VRmr9hE3yYLbBZ9zJ1JnF_JPi153gzuZeDhDwkvRI,311
|
|
@@ -496,7 +499,7 @@ structify/types/user/stripe_create_portal_session_params.py,sha256=5AYRC8z_SlKmd
|
|
|
496
499
|
structify/types/user/stripe_create_session_params.py,sha256=DFcNLNzEWeupkGQ9J5PafsuL_bIU9cLEIhAmFPsRlfo,387
|
|
497
500
|
structify/types/user/stripe_create_subscription_params.py,sha256=d8HfiC94gJbG-cC_WvBz6xYCvxKJO_EP2yyVmVvufrU,424
|
|
498
501
|
structify/types/user/subscription_plan.py,sha256=qKJMM-zPpYolYC1DlypOwPpxlyJBLkQqFK_0VpwktJs,222
|
|
499
|
-
structifyai-1.
|
|
500
|
-
structifyai-1.
|
|
501
|
-
structifyai-1.
|
|
502
|
-
structifyai-1.
|
|
502
|
+
structifyai-1.180.0.dist-info/METADATA,sha256=NSQ4LhG54Fu6IpiUXqzd-xIm3yuSIZWbMbJo1GDg1aM,16399
|
|
503
|
+
structifyai-1.180.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
504
|
+
structifyai-1.180.0.dist-info/licenses/LICENSE,sha256=9CwgrmGz3rZSTT-KqGc1gua-7g8B4ThTgMtUgPALh5c,11339
|
|
505
|
+
structifyai-1.180.0.dist-info/RECORD,,
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
2
|
-
|
|
3
|
-
from typing import Dict, Optional
|
|
4
|
-
from datetime import datetime
|
|
5
|
-
|
|
6
|
-
from .._models import BaseModel
|
|
7
|
-
|
|
8
|
-
__all__ = ["TeamWikiPage"]
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class TeamWikiPage(BaseModel):
|
|
12
|
-
id: str
|
|
13
|
-
|
|
14
|
-
content: Dict[str, object]
|
|
15
|
-
|
|
16
|
-
created_at: datetime
|
|
17
|
-
|
|
18
|
-
created_by: str
|
|
19
|
-
|
|
20
|
-
slug: str
|
|
21
|
-
|
|
22
|
-
team_id: str
|
|
23
|
-
|
|
24
|
-
title: str
|
|
25
|
-
|
|
26
|
-
updated_at: datetime
|
|
27
|
-
|
|
28
|
-
deleted_at: Optional[datetime] = None
|
|
File without changes
|
|
File without changes
|