unique_sdk 0.10.32__py3-none-any.whl → 0.10.34__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.
- unique_sdk/api_resources/_message_execution.py +13 -10
- unique_sdk/api_resources/_message_log.py +9 -7
- unique_sdk/api_resources/_space.py +1 -1
- {unique_sdk-0.10.32.dist-info → unique_sdk-0.10.34.dist-info}/METADATA +218 -5
- {unique_sdk-0.10.32.dist-info → unique_sdk-0.10.34.dist-info}/RECORD +7 -7
- {unique_sdk-0.10.32.dist-info → unique_sdk-0.10.34.dist-info}/LICENSE +0 -0
- {unique_sdk-0.10.32.dist-info → unique_sdk-0.10.34.dist-info}/WHEEL +0 -0
|
@@ -8,16 +8,18 @@ class MessageExecution(APIResource["MessageExecution"]):
|
|
|
8
8
|
OBJECT_NAME: ClassVar[Literal["message_execution"]] = "message_execution"
|
|
9
9
|
RESOURCE_URL = "/message-execution"
|
|
10
10
|
|
|
11
|
+
TypeLiteral = Literal["DEEP_RESEARCH"]
|
|
12
|
+
StatusLiteral = Literal["PENDING", "RUNNING", "COMPLETED", "FAILED"]
|
|
13
|
+
# Only COMPLETED and FAILED statuses are allowed for update
|
|
14
|
+
UpdateStatusLiteral = Literal["COMPLETED", "FAILED"]
|
|
15
|
+
|
|
11
16
|
class CreateMessageExecutionParams(RequestOptions):
|
|
12
17
|
"""
|
|
13
18
|
Parameters for creating a message execution.
|
|
14
19
|
"""
|
|
15
20
|
|
|
16
21
|
messageId: str
|
|
17
|
-
|
|
18
|
-
type: Literal["DEEP_RESEARCH"]
|
|
19
|
-
secondsRemaining: NotRequired[int | None]
|
|
20
|
-
percentageCompleted: NotRequired[int | None]
|
|
22
|
+
type: "MessageExecution.TypeLiteral"
|
|
21
23
|
|
|
22
24
|
class GetMessageExecutionParams(RequestOptions):
|
|
23
25
|
"""
|
|
@@ -32,18 +34,19 @@ class MessageExecution(APIResource["MessageExecution"]):
|
|
|
32
34
|
"""
|
|
33
35
|
|
|
34
36
|
messageId: str
|
|
35
|
-
status:
|
|
37
|
+
status: NotRequired["MessageExecution.UpdateStatusLiteral | None"]
|
|
36
38
|
secondsRemaining: NotRequired[int | None]
|
|
37
39
|
percentageCompleted: NotRequired[int | None]
|
|
38
40
|
|
|
39
|
-
|
|
40
|
-
messageId: str
|
|
41
|
-
status:
|
|
42
|
-
type:
|
|
41
|
+
id: str
|
|
42
|
+
messageId: str
|
|
43
|
+
status: "MessageExecution.StatusLiteral"
|
|
44
|
+
type: "MessageExecution.TypeLiteral"
|
|
43
45
|
secondsRemaining: int | None
|
|
44
46
|
percentageCompleted: int | None
|
|
47
|
+
positionInQueue: int | None
|
|
45
48
|
createdAt: str
|
|
46
|
-
updatedAt: str
|
|
49
|
+
updatedAt: str
|
|
47
50
|
|
|
48
51
|
@classmethod
|
|
49
52
|
def create(
|
|
@@ -8,6 +8,8 @@ class MessageLog(APIResource["MessageLog"]):
|
|
|
8
8
|
OBJECT_NAME: ClassVar[Literal["message_log"]] = "message_log"
|
|
9
9
|
RESOURCE_URL = "/message-log"
|
|
10
10
|
|
|
11
|
+
StatusLiteral = Literal["RUNNING", "COMPLETED", "FAILED"]
|
|
12
|
+
|
|
11
13
|
class Reference(TypedDict):
|
|
12
14
|
name: str
|
|
13
15
|
url: str | None
|
|
@@ -23,7 +25,7 @@ class MessageLog(APIResource["MessageLog"]):
|
|
|
23
25
|
|
|
24
26
|
messageId: str
|
|
25
27
|
text: str
|
|
26
|
-
status:
|
|
28
|
+
status: "MessageLog.StatusLiteral"
|
|
27
29
|
order: int
|
|
28
30
|
details: NotRequired[dict | None]
|
|
29
31
|
uncitedReferences: NotRequired[dict | None]
|
|
@@ -35,21 +37,21 @@ class MessageLog(APIResource["MessageLog"]):
|
|
|
35
37
|
"""
|
|
36
38
|
|
|
37
39
|
text: NotRequired[str | None]
|
|
38
|
-
status: NotRequired[
|
|
40
|
+
status: NotRequired["MessageLog.StatusLiteral | None"]
|
|
39
41
|
order: NotRequired[int | None]
|
|
40
42
|
details: NotRequired[dict | None]
|
|
41
43
|
uncitedReferences: NotRequired[dict | None]
|
|
42
44
|
references: NotRequired[list["MessageLog.Reference"] | None]
|
|
43
45
|
|
|
44
|
-
|
|
45
|
-
messageId: str
|
|
46
|
-
status:
|
|
47
|
-
text: str
|
|
46
|
+
id: str
|
|
47
|
+
messageId: str
|
|
48
|
+
status: "MessageLog.StatusLiteral"
|
|
49
|
+
text: str
|
|
48
50
|
details: dict
|
|
49
51
|
uncitedReferences: dict
|
|
50
52
|
order: int
|
|
51
53
|
createdAt: str
|
|
52
|
-
updatedAt: str
|
|
54
|
+
updatedAt: str
|
|
53
55
|
|
|
54
56
|
@classmethod
|
|
55
57
|
def create(
|
|
@@ -69,7 +69,7 @@ class Space(APIResource["Space"]):
|
|
|
69
69
|
chatId: str
|
|
70
70
|
text: str | None
|
|
71
71
|
originalText: str | None
|
|
72
|
-
role: Literal["
|
|
72
|
+
role: Literal["SYSTEM", "USER", "ASSISTANT"]
|
|
73
73
|
debugInfo: Optional[Dict[str, Any]]
|
|
74
74
|
completedAt: str | None
|
|
75
75
|
createdAt: str | None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: unique_sdk
|
|
3
|
-
Version: 0.10.
|
|
3
|
+
Version: 0.10.34
|
|
4
4
|
Summary:
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Martin Fadler
|
|
@@ -42,6 +42,7 @@ The Unique Python SDK provides access to the public API of Unique AI. It also en
|
|
|
42
42
|
- [Message Assessment](#message-assessment)
|
|
43
43
|
- [Folder](#folder)
|
|
44
44
|
- [Space](#space)
|
|
45
|
+
- [Agentic Table](#agentic-table)
|
|
45
46
|
6. [UniqueQL](#uniqueql)
|
|
46
47
|
- [Query Structure](#uniqueql-query-structure)
|
|
47
48
|
- [Metadata Filtering](#metadata-filtering)
|
|
@@ -259,6 +260,7 @@ unique_sdk.Message.modify(
|
|
|
259
260
|
- [Message Assessment](#message-assessment)
|
|
260
261
|
- [Folder](#folder)
|
|
261
262
|
- [Space](#space)
|
|
263
|
+
- [Agentic Table](#agentic-table)
|
|
262
264
|
|
|
263
265
|
Most of the API services provide an asynchronous version of the method. The async methods are suffixed with `_async`.
|
|
264
266
|
|
|
@@ -890,10 +892,7 @@ msg_execution = unique_sdk.MessageExecution.create(
|
|
|
890
892
|
user_id=user_id,
|
|
891
893
|
company_id=company_id,
|
|
892
894
|
messageId="msg_a0jgnt1jrqv143uzr750waxw",
|
|
893
|
-
chatId="chat_nx21havszl1skchd7544oykh",
|
|
894
895
|
type="DEEP_RESEARCH",
|
|
895
|
-
secondsRemaining=None, # optional, number defining the seconds remaining
|
|
896
|
-
percentageCompleted=None, # optional, number defining the percentage completed
|
|
897
896
|
)
|
|
898
897
|
```
|
|
899
898
|
|
|
@@ -918,7 +917,7 @@ msg_execution = unique_sdk.MessageExecution.update(
|
|
|
918
917
|
user_id=user_id,
|
|
919
918
|
company_id=company_id,
|
|
920
919
|
messageId="msg_a0jgnt1jrqv143uzr750waxw",
|
|
921
|
-
status="COMPLETED", # one of: COMPLETED, FAILED
|
|
920
|
+
status="COMPLETED", # optional, one of: COMPLETED, FAILED - not specifying the status will have no effect over the status
|
|
922
921
|
secondsRemaining=55, # optional, number defining the seconds remaining
|
|
923
922
|
percentageCompleted=10, # optional, number defining the percentage completed
|
|
924
923
|
)
|
|
@@ -1372,6 +1371,214 @@ unique_sdk.Space.delete_chat(
|
|
|
1372
1371
|
)
|
|
1373
1372
|
```
|
|
1374
1373
|
|
|
1374
|
+
### Agentic Table
|
|
1375
|
+
|
|
1376
|
+
The Agentic Table (Magic Table) API provides functionality for managing interactive tables with AI-powered cells, activity tracking, and metadata management.
|
|
1377
|
+
|
|
1378
|
+
#### `unique_sdk.AgenticTable.set_cell`
|
|
1379
|
+
|
|
1380
|
+
Set the content of a specific cell in the magic table. This method allows you to update cell text and optionally add log entries to track changes.
|
|
1381
|
+
|
|
1382
|
+
```python
|
|
1383
|
+
cell = await unique_sdk.AgenticTable.set_cell(
|
|
1384
|
+
user_id=user_id,
|
|
1385
|
+
company_id=company_id,
|
|
1386
|
+
tableId="sheet_abc123",
|
|
1387
|
+
rowOrder=0,
|
|
1388
|
+
columnOrder=1,
|
|
1389
|
+
text="Updated cell content",
|
|
1390
|
+
logEntries=[ # optional
|
|
1391
|
+
{
|
|
1392
|
+
"text": "Cell updated by automation",
|
|
1393
|
+
"createdAt": "2024-01-01T00:00:00.000Z",
|
|
1394
|
+
"actorType": "SYSTEM", # One of: "USER", "SYSTEM", "ASSISTANT", "TOOL"
|
|
1395
|
+
"messageId": "msg_123", # optional
|
|
1396
|
+
"details": [ # optional
|
|
1397
|
+
{
|
|
1398
|
+
"text": "Processing completed",
|
|
1399
|
+
"messageId": "msg_456" # optional
|
|
1400
|
+
}
|
|
1401
|
+
]
|
|
1402
|
+
}
|
|
1403
|
+
]
|
|
1404
|
+
)
|
|
1405
|
+
```
|
|
1406
|
+
|
|
1407
|
+
#### `unique_sdk.AgenticTable.get_cell`
|
|
1408
|
+
|
|
1409
|
+
Retrieve the content and metadata of a specific cell.
|
|
1410
|
+
|
|
1411
|
+
```python
|
|
1412
|
+
cell = await unique_sdk.AgenticTable.get_cell(
|
|
1413
|
+
user_id=user_id,
|
|
1414
|
+
company_id=company_id,
|
|
1415
|
+
tableId="sheet_abc123",
|
|
1416
|
+
rowOrder=0,
|
|
1417
|
+
columnOrder=1,
|
|
1418
|
+
)
|
|
1419
|
+
```
|
|
1420
|
+
|
|
1421
|
+
#### `unique_sdk.AgenticTable.set_multiple_cells`
|
|
1422
|
+
|
|
1423
|
+
Bulk update multiple cells in a single operation for better performance.
|
|
1424
|
+
|
|
1425
|
+
```python
|
|
1426
|
+
result = await unique_sdk.AgenticTable.set_multiple_cells(
|
|
1427
|
+
user_id=user_id,
|
|
1428
|
+
company_id=company_id,
|
|
1429
|
+
tableId="sheet_abc123",
|
|
1430
|
+
cells=[
|
|
1431
|
+
{
|
|
1432
|
+
"rowOrder": 0,
|
|
1433
|
+
"columnOrder": 0,
|
|
1434
|
+
"text": "Cell A1"
|
|
1435
|
+
},
|
|
1436
|
+
{
|
|
1437
|
+
"rowOrder": 0,
|
|
1438
|
+
"columnOrder": 1,
|
|
1439
|
+
"text": "Cell B1"
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"rowOrder": 1,
|
|
1443
|
+
"columnOrder": 0,
|
|
1444
|
+
"text": "Cell A2"
|
|
1445
|
+
}
|
|
1446
|
+
]
|
|
1447
|
+
)
|
|
1448
|
+
```
|
|
1449
|
+
|
|
1450
|
+
#### `unique_sdk.AgenticTable.get_sheet_data`
|
|
1451
|
+
|
|
1452
|
+
Retrieve comprehensive data about a magic table sheet, including cells, log history, and metadata.
|
|
1453
|
+
|
|
1454
|
+
```python
|
|
1455
|
+
sheet = await unique_sdk.AgenticTable.get_sheet_data(
|
|
1456
|
+
user_id=user_id,
|
|
1457
|
+
company_id=company_id,
|
|
1458
|
+
tableId="sheet_abc123",
|
|
1459
|
+
includeCells=True, # optional
|
|
1460
|
+
includeLogHistory=True, # optional
|
|
1461
|
+
includeRowCount=True, # optional
|
|
1462
|
+
includeCellMetaData=True, # optional
|
|
1463
|
+
startRow=0, # optional: specify row range
|
|
1464
|
+
endRow=10 # optional: specify row range
|
|
1465
|
+
)
|
|
1466
|
+
```
|
|
1467
|
+
|
|
1468
|
+
#### `unique_sdk.AgenticTable.get_sheet_state`
|
|
1469
|
+
|
|
1470
|
+
Get the current state of a magic table sheet.
|
|
1471
|
+
|
|
1472
|
+
```python
|
|
1473
|
+
state = await unique_sdk.AgenticTable.get_sheet_state(
|
|
1474
|
+
user_id=user_id,
|
|
1475
|
+
company_id=company_id,
|
|
1476
|
+
tableId="sheet_abc123"
|
|
1477
|
+
)
|
|
1478
|
+
# Returns: "PROCESSING", "IDLE", or "STOPPED_BY_USER"
|
|
1479
|
+
```
|
|
1480
|
+
|
|
1481
|
+
#### `unique_sdk.AgenticTable.update_sheet_state`
|
|
1482
|
+
|
|
1483
|
+
Update the name or state of a magic table sheet.
|
|
1484
|
+
|
|
1485
|
+
```python
|
|
1486
|
+
result = await unique_sdk.AgenticTable.update_sheet_state(
|
|
1487
|
+
user_id=user_id,
|
|
1488
|
+
company_id=company_id,
|
|
1489
|
+
tableId="sheet_abc123",
|
|
1490
|
+
name="Updated Sheet Name", # optional
|
|
1491
|
+
state="IDLE" # optional, one of: "PROCESSING", "IDLE", "STOPPED_BY_USER"
|
|
1492
|
+
)
|
|
1493
|
+
```
|
|
1494
|
+
|
|
1495
|
+
#### `unique_sdk.AgenticTable.set_activity`
|
|
1496
|
+
|
|
1497
|
+
Set the status of an activity on the magic table sheet. This is useful for tracking long-running operations.
|
|
1498
|
+
|
|
1499
|
+
```python
|
|
1500
|
+
result = await unique_sdk.AgenticTable.set_activity(
|
|
1501
|
+
user_id=user_id,
|
|
1502
|
+
company_id=company_id,
|
|
1503
|
+
tableId="sheet_abc123",
|
|
1504
|
+
activity="UpdateCell",
|
|
1505
|
+
# activity: one of "DeleteRow", "DeleteColumn", "UpdateCell", "AddQuestionText",
|
|
1506
|
+
# "AddMetaData", "GenerateArtifact", "SheetCompleted", "LibrarySheetRowVerified"
|
|
1507
|
+
status="IN_PROGRESS",
|
|
1508
|
+
# status: one of "IN_PROGRESS", "COMPLETED", "FAILED"
|
|
1509
|
+
text="Updating cells with AI-generated content"
|
|
1510
|
+
)
|
|
1511
|
+
```
|
|
1512
|
+
|
|
1513
|
+
#### `unique_sdk.AgenticTable.set_artifact`
|
|
1514
|
+
|
|
1515
|
+
Attach an artifact (such as a generated document) to the magic table sheet.
|
|
1516
|
+
|
|
1517
|
+
```python
|
|
1518
|
+
result = await unique_sdk.AgenticTable.set_artifact(
|
|
1519
|
+
user_id=user_id,
|
|
1520
|
+
company_id=company_id,
|
|
1521
|
+
tableId="sheet_abc123",
|
|
1522
|
+
name="Generated Report",
|
|
1523
|
+
contentId="cont_xyz789",
|
|
1524
|
+
mimeType="application/pdf",
|
|
1525
|
+
artifactType="FULL_REPORT" # One of: "QUESTIONS", "FULL_REPORT"
|
|
1526
|
+
)
|
|
1527
|
+
```
|
|
1528
|
+
|
|
1529
|
+
#### `unique_sdk.AgenticTable.set_column_metadata`
|
|
1530
|
+
|
|
1531
|
+
Configure metadata for a specific column, including width, filters, and cell renderers.
|
|
1532
|
+
|
|
1533
|
+
```python
|
|
1534
|
+
result = await unique_sdk.AgenticTable.set_column_metadata(
|
|
1535
|
+
user_id=user_id,
|
|
1536
|
+
company_id=company_id,
|
|
1537
|
+
tableId="sheet_abc123",
|
|
1538
|
+
columnOrder=2,
|
|
1539
|
+
columnWidth=200, # optional
|
|
1540
|
+
filter="ValueMatchFilter", # optional
|
|
1541
|
+
# filter: one of "ValueMatchFilter", "PartialMatchFilter", "ReferenceFilter",
|
|
1542
|
+
# "HallucinationFilter", "ReviewStatusFilter", "AssigneeFilter"
|
|
1543
|
+
cellRenderer="CheckboxLockCellRenderer", # optional
|
|
1544
|
+
# cellRenderer: one of "CheckboxLockCellRenderer", "CollaboratorDropdown",
|
|
1545
|
+
# "ReviewStatusDropdown", "CustomCellRenderer", "SelectableCellRenderer"
|
|
1546
|
+
editable=True # optional
|
|
1547
|
+
)
|
|
1548
|
+
```
|
|
1549
|
+
|
|
1550
|
+
#### `unique_sdk.AgenticTable.set_cell_metadata`
|
|
1551
|
+
|
|
1552
|
+
Set metadata for a specific cell, including selection status and agreement status.
|
|
1553
|
+
|
|
1554
|
+
```python
|
|
1555
|
+
result = await unique_sdk.AgenticTable.set_cell_metadata(
|
|
1556
|
+
user_id=user_id,
|
|
1557
|
+
company_id=company_id,
|
|
1558
|
+
tableId="sheet_abc123",
|
|
1559
|
+
rowOrder=0,
|
|
1560
|
+
columnOrder=1,
|
|
1561
|
+
selected=True, # optional
|
|
1562
|
+
selectionMethod="MANUAL", # optional, one of: "DEFAULT", "MANUAL"
|
|
1563
|
+
agreementStatus="MATCH" # optional, one of: "MATCH", "NO_MATCH"
|
|
1564
|
+
)
|
|
1565
|
+
```
|
|
1566
|
+
|
|
1567
|
+
#### `unique_sdk.AgenticTable.bulk_update_status`
|
|
1568
|
+
|
|
1569
|
+
Update the verification status of multiple rows at once.
|
|
1570
|
+
|
|
1571
|
+
```python
|
|
1572
|
+
result = await unique_sdk.AgenticTable.bulk_update_status(
|
|
1573
|
+
user_id=user_id,
|
|
1574
|
+
company_id=company_id,
|
|
1575
|
+
tableId="sheet_abc123",
|
|
1576
|
+
rowOrders=[0, 1, 2, 3, 4],
|
|
1577
|
+
status="VERIFIED"
|
|
1578
|
+
# status: one of "NEED_REVIEW", "READY_FOR_VERIFICATION", "VERIFIED"
|
|
1579
|
+
)
|
|
1580
|
+
```
|
|
1581
|
+
|
|
1375
1582
|
## UniqueQL
|
|
1376
1583
|
|
|
1377
1584
|
[UniqueQL](https://unique-ch.atlassian.net/wiki/x/coAXHQ) is an advanced query language designed to enhance search capabilities within various search modes such as Vector, Full-Text Search (FTS), and Combined. This query language enables users to perform detailed searches by filtering through metadata attributes like filenames, URLs, dates, and more. UniqueQL is versatile and can be translated into different query formats for various database systems, including PostgreSQL and Qdrant.
|
|
@@ -1769,6 +1976,12 @@ All notable changes to this project will be documented in this file.
|
|
|
1769
1976
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
1770
1977
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
1771
1978
|
|
|
1979
|
+
## [0.10.34] - 2025-10-29
|
|
1980
|
+
- Add documentation for agentic table.
|
|
1981
|
+
|
|
1982
|
+
## [0.10.33] - 2025-10-27
|
|
1983
|
+
- Improve messagelog and message execution types.
|
|
1984
|
+
|
|
1772
1985
|
## [0.10.32] - 2025-10-14
|
|
1773
1986
|
- Add function to stream to chat frontend.
|
|
1774
1987
|
|
|
@@ -25,18 +25,18 @@ unique_sdk/api_resources/_integrated.py,sha256=O8e673z-RB7FRFMQYn_YEuHijebr5W7KJ
|
|
|
25
25
|
unique_sdk/api_resources/_mcp.py,sha256=zKh0dyn0QnkKk57N2zlGVN_GQoxEp5T2CS38vVm6jQY,3341
|
|
26
26
|
unique_sdk/api_resources/_message.py,sha256=WgdvVS6Gx3gXGlaSlCjE-qrlj3SbkF--EFG7HiSp6cM,9282
|
|
27
27
|
unique_sdk/api_resources/_message_assessment.py,sha256=SSfx6eW7zb_GKe8cFJzCqW-t-_eWEXxKP5cnIb0DhIc,2276
|
|
28
|
-
unique_sdk/api_resources/_message_execution.py,sha256=
|
|
29
|
-
unique_sdk/api_resources/_message_log.py,sha256
|
|
28
|
+
unique_sdk/api_resources/_message_execution.py,sha256=7V_Qovu4vzoXDd2em0AgnAJC460RUX6AE4byztNPlvg,4556
|
|
29
|
+
unique_sdk/api_resources/_message_log.py,sha256=vmNyXlgfALONNrhGi0qFpUWalcKxH6OkVoBSmJbsL2k,3658
|
|
30
30
|
unique_sdk/api_resources/_search.py,sha256=GQItZKoGNOVZfkLLltBmsRZYBIreRKU0lGW8Kgpj1_Q,1959
|
|
31
31
|
unique_sdk/api_resources/_search_string.py,sha256=LZz2_QPZXV1NXucRR06dnDC2miK7J8XBY7dXX2xoDY4,1610
|
|
32
32
|
unique_sdk/api_resources/_short_term_memory.py,sha256=vPRN-Y0WPx74E6y-A3LocGc0TxJdzT-xGL66WzZwKRg,2820
|
|
33
|
-
unique_sdk/api_resources/_space.py,sha256=
|
|
33
|
+
unique_sdk/api_resources/_space.py,sha256=J7rS7Y62QQ7r_VpGLVb3UdhPtu9FxgrY2c515uxaypc,4994
|
|
34
34
|
unique_sdk/utils/chat_history.py,sha256=5UqL9hF1O9pV7skbNOlEibF5rHdYsmG3m5-YEPUowOs,3037
|
|
35
35
|
unique_sdk/utils/chat_in_space.py,sha256=cdjETBLnjv-OE8qsQpm626ks5yBdfQG_KBeG0WIzCbY,5994
|
|
36
36
|
unique_sdk/utils/file_io.py,sha256=sJS-dJLjogG65mLukDO9pGDpKVTP4LhIgiZASnCvjNI,4330
|
|
37
37
|
unique_sdk/utils/sources.py,sha256=DoxxhMLcLhmDfNarjXa41H4JD2GSSDywr71hiC-4pYc,4952
|
|
38
38
|
unique_sdk/utils/token.py,sha256=AzKuAA1AwBtnvSFxGcsHLpxXr_wWE5Mj4jYBbOz2ljA,1740
|
|
39
|
-
unique_sdk-0.10.
|
|
40
|
-
unique_sdk-0.10.
|
|
41
|
-
unique_sdk-0.10.
|
|
42
|
-
unique_sdk-0.10.
|
|
39
|
+
unique_sdk-0.10.34.dist-info/LICENSE,sha256=EJCWoHgrXVBUb47PnjeV4MFIEOR71MAdCOIgv61J-4k,1065
|
|
40
|
+
unique_sdk-0.10.34.dist-info/METADATA,sha256=QIioH-WMisDdwNGhYEHqoWE25UDazCtSqEOTXwi6shw,67880
|
|
41
|
+
unique_sdk-0.10.34.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
42
|
+
unique_sdk-0.10.34.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|