amigo_sdk 0.9.0__py3-none-any.whl → 0.10.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.
- amigo_sdk/__init__.py +1 -1
- amigo_sdk/generated/model.py +15 -9
- {amigo_sdk-0.9.0.dist-info → amigo_sdk-0.10.0.dist-info}/METADATA +1 -1
- {amigo_sdk-0.9.0.dist-info → amigo_sdk-0.10.0.dist-info}/RECORD +7 -7
- {amigo_sdk-0.9.0.dist-info → amigo_sdk-0.10.0.dist-info}/WHEEL +0 -0
- {amigo_sdk-0.9.0.dist-info → amigo_sdk-0.10.0.dist-info}/entry_points.txt +0 -0
- {amigo_sdk-0.9.0.dist-info → amigo_sdk-0.10.0.dist-info}/licenses/LICENSE +0 -0
amigo_sdk/__init__.py
CHANGED
amigo_sdk/generated/model.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: <stdin>
|
|
3
|
-
# timestamp: 2025-08-
|
|
3
|
+
# timestamp: 2025-08-26T14:45:34+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -9453,11 +9453,17 @@ class AmigoLibPydanticBaseModelStrippedNonemptyString1(RootModel[str]):
|
|
|
9453
9453
|
root: str = Field(..., min_length=1)
|
|
9454
9454
|
|
|
9455
9455
|
|
|
9456
|
-
class AmigoLibPydanticBaseModelStrippedNonemptyString2(
|
|
9457
|
-
|
|
9456
|
+
class AmigoLibPydanticBaseModelStrippedNonemptyString2(
|
|
9457
|
+
AmigoLibPydanticBaseModelStrippedNonemptyString1
|
|
9458
|
+
):
|
|
9459
|
+
pass
|
|
9458
9460
|
|
|
9459
9461
|
|
|
9460
9462
|
class AmigoLibPydanticBaseModelStrippedNonemptyString3(RootModel[str]):
|
|
9463
|
+
root: str = Field(..., max_length=256, min_length=1)
|
|
9464
|
+
|
|
9465
|
+
|
|
9466
|
+
class AmigoLibPydanticBaseModelStrippedNonemptyString4(RootModel[str]):
|
|
9461
9467
|
root: str = Field(..., max_length=3, min_length=1)
|
|
9462
9468
|
|
|
9463
9469
|
|
|
@@ -9785,7 +9791,7 @@ class MetricUpdateMetricRequest(BaseModel):
|
|
|
9785
9791
|
|
|
9786
9792
|
|
|
9787
9793
|
class OrganizationCreateAgentRequest(BaseModel):
|
|
9788
|
-
agent_name:
|
|
9794
|
+
agent_name: AmigoLibPydanticBaseModelStrippedNonemptyString3 = Field(
|
|
9789
9795
|
..., description='The name of the new agent.'
|
|
9790
9796
|
)
|
|
9791
9797
|
|
|
@@ -10472,7 +10478,7 @@ class OrganizationCreateOrganizationResponse(BaseModel):
|
|
|
10472
10478
|
|
|
10473
10479
|
|
|
10474
10480
|
class OrganizationCreateServiceHierarchicalStateMachineRequest(BaseModel):
|
|
10475
|
-
state_machine_name:
|
|
10481
|
+
state_machine_name: AmigoLibPydanticBaseModelStrippedNonemptyString3 = Field(
|
|
10476
10482
|
..., description='The name of the new state machine.'
|
|
10477
10483
|
)
|
|
10478
10484
|
|
|
@@ -11642,7 +11648,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
|
|
|
11642
11648
|
[], description='The IDs of the messages to retrieve.', title='Id'
|
|
11643
11649
|
)
|
|
11644
11650
|
message_type: Optional[List[MessageType]] = Field(
|
|
11645
|
-
['
|
|
11651
|
+
['external-event', 'user-message', 'agent-message'],
|
|
11646
11652
|
description='The type of messages to retrieve.',
|
|
11647
11653
|
title='Message Type',
|
|
11648
11654
|
)
|
|
@@ -14205,7 +14211,7 @@ class OrganizationCreateOrganizationRequest(BaseModel):
|
|
|
14205
14211
|
title='Onboarding Instructions',
|
|
14206
14212
|
)
|
|
14207
14213
|
)
|
|
14208
|
-
azure_devops_team_name:
|
|
14214
|
+
azure_devops_team_name: AmigoLibPydanticBaseModelStrippedNonemptyString2 = Field(
|
|
14209
14215
|
...,
|
|
14210
14216
|
description="The name of the Azure DevOps team to create (if it doesn't exist) for this organization. All orgs with the same Azure DevOps team name will share access to the same Azure DevOps resources, namely\nthe source code for tools.",
|
|
14211
14217
|
)
|
|
@@ -14353,7 +14359,7 @@ class OrganizationModifyOrganizationRequest(BaseModel):
|
|
|
14353
14359
|
|
|
14354
14360
|
|
|
14355
14361
|
class RoleCreateRoleRequest(BaseModel):
|
|
14356
|
-
role_name:
|
|
14362
|
+
role_name: AmigoLibPydanticBaseModelStrippedNonemptyString3 = Field(
|
|
14357
14363
|
...,
|
|
14358
14364
|
description='The name of the role to create. The role must have a max length of 256 characters.',
|
|
14359
14365
|
)
|
|
@@ -15206,7 +15212,7 @@ class MetricSearchMetricsResponse(BaseModel):
|
|
|
15206
15212
|
|
|
15207
15213
|
|
|
15208
15214
|
class OrganizationCreateAgentVersionRequest(BaseModel):
|
|
15209
|
-
initials: Optional[
|
|
15215
|
+
initials: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString4] = Field(
|
|
15210
15216
|
None, description="The agent's initials."
|
|
15211
15217
|
)
|
|
15212
15218
|
identity: Optional[IdentityInput] = Field(
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
amigo_sdk/__init__.py,sha256=
|
|
1
|
+
amigo_sdk/__init__.py,sha256=zTslmbvamdtcfPsHWs1-RY6Zm9GqYxBfd9IfmADx-Co,154
|
|
2
2
|
amigo_sdk/_retry_utils.py,sha256=kFjw9Wqye6MB5-B4rjLxsbSNcfYBIztcollIoncd1hY,2142
|
|
3
3
|
amigo_sdk/auth.py,sha256=WaM9PcEcnaC6CzNsgRKueHkdSAxNbRylzpR_3Q6guQ0,1765
|
|
4
4
|
amigo_sdk/config.py,sha256=0eZIo-hcJ8ODftKAr-mwB-FGJxGO5PT5T4dRpyWPqAg,1491
|
|
5
5
|
amigo_sdk/errors.py,sha256=RkRyF5eAASd8fIOS6YvL9rLDvLAYWqHfpHSCR7jqvl4,4840
|
|
6
6
|
amigo_sdk/http_client.py,sha256=z8h8FKHRxGzULRz_C60mL5PfYSAv8e_RHUndVo0vHrM,13452
|
|
7
7
|
amigo_sdk/sdk_client.py,sha256=Kr9M9o66pOLu0T2VDvqdYMmPZzgKJyTELu7BSPgGrYQ,6152
|
|
8
|
-
amigo_sdk/generated/model.py,sha256=
|
|
8
|
+
amigo_sdk/generated/model.py,sha256=JHa-HjkOKDQoeoXIhqSU_Bh9b3DVfV7faofcbETr43M,427284
|
|
9
9
|
amigo_sdk/resources/conversation.py,sha256=pGM2vtUsem8ClVfzZne1qqKZdM4o7aWaRdAYXXKEMFw,14784
|
|
10
10
|
amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
|
|
11
11
|
amigo_sdk/resources/service.py,sha256=SiwEHXCQk4r1b_tGv47M08VuB7RALDHJQzWlpuD937g,1571
|
|
12
12
|
amigo_sdk/resources/user.py,sha256=i4t5aVzBI37KwAtLKSDWTMwf4D4KQdSDoUiblFe1u7o,3529
|
|
13
|
-
amigo_sdk-0.
|
|
14
|
-
amigo_sdk-0.
|
|
15
|
-
amigo_sdk-0.
|
|
16
|
-
amigo_sdk-0.
|
|
17
|
-
amigo_sdk-0.
|
|
13
|
+
amigo_sdk-0.10.0.dist-info/METADATA,sha256=cpQjUGl6f3XwRN6q6jud4Wnp_0TSzZZvADEWbFuWn18,5983
|
|
14
|
+
amigo_sdk-0.10.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
15
|
+
amigo_sdk-0.10.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
|
|
16
|
+
amigo_sdk-0.10.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
|
|
17
|
+
amigo_sdk-0.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|