amigo_sdk 0.73.0__py3-none-any.whl → 0.74.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 CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "0.73.0"
1
+ __version__ = "0.74.0"
2
2
  from .sdk_client import AmigoClient, AsyncAmigoClient
3
3
 
4
4
  __all__ = ["__version__", "AmigoClient", "AsyncAmigoClient"]
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: <stdin>
3
- # timestamp: 2025-12-03T23:53:32+00:00
3
+ # timestamp: 2025-12-04T00:27:11+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1615,6 +1615,11 @@ class AmigoLibMongoCollectionsDynamicBehaviorSetVersionAction(BaseModel):
1615
1615
  )
1616
1616
 
1617
1617
 
1618
+ class AmigoLibMongoCollectionsMetricMetricTag(BaseModel):
1619
+ key: str = Field(..., title='Key')
1620
+ value: Optional[str] = Field(..., title='Value')
1621
+
1622
+
1618
1623
  AmigoLibMongoCollectionsMetricMetricUserInfo = (
1619
1624
  AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1620
1625
  )
@@ -1663,11 +1668,6 @@ AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo = (
1663
1668
  )
1664
1669
 
1665
1670
 
1666
- class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag(BaseModel):
1667
- key: str = Field(..., title='Key')
1668
- value: Optional[str] = Field(..., title='Value')
1669
-
1670
-
1671
1671
  class AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUnitTestRunDescriptor(
1672
1672
  BaseModel
1673
1673
  ):
@@ -1704,6 +1704,12 @@ AmigoLibMongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo
1704
1704
  )
1705
1705
 
1706
1706
 
1707
+ class AmigoLibMongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1708
+ major: int = Field(..., title='Major')
1709
+ minor: int = Field(..., title='Minor')
1710
+ patch: int = Field(..., title='Patch')
1711
+
1712
+
1707
1713
  class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1708
1714
  user_id: str = Field(..., description='The ID of the user.', title='User Id')
1709
1715
  user_org_id: str = Field(
@@ -1711,12 +1717,6 @@ class AmigoLibMongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1711
1717
  )
1712
1718
 
1713
1719
 
1714
- class AmigoLibMongoCollectionsToolVersionToolVersionVersion(BaseModel):
1715
- major: int = Field(..., title='Major')
1716
- minor: int = Field(..., title='Minor')
1717
- patch: int = Field(..., title='Patch')
1718
-
1719
-
1720
1720
  class AmigoLibMongoCollectionsUserUserPreferences(BaseModel):
1721
1721
  enable_response_recommendation: Optional[bool] = Field(
1722
1722
  False,
@@ -10765,19 +10765,19 @@ class OrganizationCreateServiceHierarchicalStateMachineResponse(BaseModel):
10765
10765
  )
10766
10766
 
10767
10767
 
10768
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState(
10768
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState(
10769
10769
  AnnotationStateInputNextState
10770
10770
  ):
10771
10771
  pass
10772
10772
 
10773
10773
 
10774
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition(
10774
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition(
10775
10775
  BaseModel
10776
10776
  ):
10777
10777
  description: str = Field(..., min_length=1)
10778
10778
  next_state: Union[
10779
10779
  StateOrRefName,
10780
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState,
10780
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState,
10781
10781
  ] = Field(..., title='Next State')
10782
10782
 
10783
10783
 
@@ -10941,6 +10941,13 @@ class RoleModifyRoleResponse(BaseModel):
10941
10941
  )
10942
10942
 
10943
10943
 
10944
+ class ServiceCreateServiceRequestVersionSetLLMConfig(BaseModel):
10945
+ llm_name: LLMType
10946
+ params: Optional[Dict[str, Any]] = Field(
10947
+ {}, description='LLM-specific parameters to use.', title='Params'
10948
+ )
10949
+
10950
+
10944
10951
  class ServiceCreateServiceResponse(BaseModel):
10945
10952
  id: str = Field(..., description='The ID of the newly created service.', title='Id')
10946
10953
 
@@ -11000,13 +11007,6 @@ class ServiceUpdateServiceRequest(BaseModel):
11000
11007
  )
11001
11008
 
11002
11009
 
11003
- class ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig(BaseModel):
11004
- llm_name: LLMType
11005
- params: Optional[Dict[str, Any]] = Field(
11006
- {}, description='LLM-specific parameters to use.', title='Params'
11007
- )
11008
-
11009
-
11010
11010
  class SimulationCreateSimulationPersonaRequestInitialVersion(BaseModel):
11011
11011
  background: str = Field(
11012
11012
  ..., description='The background of the simulation persona.', min_length=1
@@ -12100,7 +12100,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12100
12100
  [], description='The IDs of the messages to retrieve.', title='Id'
12101
12101
  )
12102
12102
  message_type: Optional[List[MessageType]] = Field(
12103
- ['user-message', 'external-event', 'agent-message'],
12103
+ ['agent-message', 'external-event', 'user-message'],
12104
12104
  description='The type of messages to retrieve.',
12105
12105
  title='Message Type',
12106
12106
  )
@@ -13906,9 +13906,9 @@ class ServiceInstance(BaseModel):
13906
13906
  agent_id: str = Field(
13907
13907
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13908
13908
  )
13909
- tags: List[
13910
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
13911
- ] = Field(..., description='The tags of the service.', title='Tags')
13909
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13910
+ ..., description='The tags of the service.', title='Tags'
13911
+ )
13912
13912
 
13913
13913
 
13914
13914
  class SimulationConversationInvocationSource(BaseModel):
@@ -13959,9 +13959,7 @@ class SimulationUnitTestSet(BaseModel):
13959
13959
  description='Whether the unit test set has been deleted.',
13960
13960
  title='Is Deleted',
13961
13961
  )
13962
- tags: List[
13963
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
13964
- ] = Field(
13962
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13965
13963
  ..., description='The tags of the simulation unit test set.', title='Tags'
13966
13964
  )
13967
13965
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14000,9 +13998,7 @@ class SimulationUnitTestSetInstance(BaseModel):
14000
13998
  description='Whether the unit test set has been deleted.',
14001
13999
  title='Is Deleted',
14002
14000
  )
14003
- tags: List[
14004
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14005
- ] = Field(
14001
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
14006
14002
  ..., description='The tags of the simulation unit test set.', title='Tags'
14007
14003
  )
14008
14004
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14118,9 +14114,9 @@ class ToolInstance(BaseModel):
14118
14114
  description='A list of encrypted environment variables that some versions of this tool uses.',
14119
14115
  title='Secret Envvars',
14120
14116
  )
14121
- tags: List[
14122
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
14123
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
14117
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
14118
+ ..., description='The tags of the simulation persona.', title='Tags'
14119
+ )
14124
14120
 
14125
14121
 
14126
14122
  class ToolVersionInstance(BaseModel):
@@ -14133,7 +14129,7 @@ class ToolVersionInstance(BaseModel):
14133
14129
  description='The ID of the tool that this version belongs to.',
14134
14130
  title='Tool Id',
14135
14131
  )
14136
- version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
14132
+ version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
14137
14133
  ..., description='The version of the tool.'
14138
14134
  )
14139
14135
  required_envvars: List[str] = Field(
@@ -14751,7 +14747,7 @@ class OrganizationModifyOrganizationRequest(BaseModel):
14751
14747
  )
14752
14748
 
14753
14749
 
14754
- class RoleCreateRoleRequestPermissionGrant(BaseModel):
14750
+ class RoleModifyRoleRequestPermissionGrant(BaseModel):
14755
14751
  action: AmigoLibMongoCollectionsRoleRolePermissionGrantAction = Field(
14756
14752
  ...,
14757
14753
  description='Whether this grant allows or denies the specified access.',
@@ -14768,29 +14764,6 @@ class RoleCreateRoleRequestPermissionGrant(BaseModel):
14768
14764
  description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = None
14769
14765
 
14770
14766
 
14771
- class RoleModifyRoleRequest(BaseModel):
14772
- description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
14773
- None,
14774
- description='A description about the role. Only updated if specified. This field is a mutable field.',
14775
- )
14776
- permission_grants: Optional[List[RoleCreateRoleRequestPermissionGrant]] = Field(
14777
- None,
14778
- description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
14779
- title='Permission Grants',
14780
- )
14781
- frontend_view: Optional[FrontendView] = Field(
14782
- None,
14783
- description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
14784
- )
14785
- inherited_from: Optional[Union[RoleModifyRoleRequestInheritedFrom, FieldNotSet]] = (
14786
- Field(
14787
- {},
14788
- description='The ID of the role that this role inherits from. Only updated if specified. This field is an immutable field.',
14789
- title='Inherited From',
14790
- )
14791
- )
14792
-
14793
-
14794
14767
  class ServiceCreateServiceRequestVersionSet(BaseModel):
14795
14768
  agent_version_number: Optional[int] = Field(
14796
14769
  ...,
@@ -14802,9 +14775,9 @@ class ServiceCreateServiceRequestVersionSet(BaseModel):
14802
14775
  description='The version number of the state machine to be used. If None, the latest state machine version will be used.',
14803
14776
  title='Service Hierarchical State Machine Version Number',
14804
14777
  )
14805
- llm_model_preferences: Dict[
14806
- str, ServiceUpsertServiceVersionSetRequestVersionSetLLMConfig
14807
- ] = Field(..., title='Llm Model Preferences')
14778
+ llm_model_preferences: Dict[str, ServiceCreateServiceRequestVersionSetLLMConfig] = (
14779
+ Field(..., title='Llm Model Preferences')
14780
+ )
14808
14781
 
14809
14782
 
14810
14783
  class ServiceGetServicesResponse(BaseModel):
@@ -15101,7 +15074,7 @@ class UserGetUserModelResponse(BaseModel):
15101
15074
  )
15102
15075
 
15103
15076
 
15104
- class UserGetUsersResponseUserInstance(BaseModel):
15077
+ class UserSearchUsersResponseUserInstance(BaseModel):
15105
15078
  org_id: str = Field(
15106
15079
  ...,
15107
15080
  description='The ID of the organization that this user belongs to.',
@@ -15126,12 +15099,6 @@ class UserGetUsersResponseUserInstance(BaseModel):
15126
15099
  )
15127
15100
 
15128
15101
 
15129
- class UserSearchUsersResponse(BaseModel):
15130
- users: List[UserGetUsersResponseUserInstance] = Field(
15131
- ..., description='Users in this organization.', title='Users'
15132
- )
15133
-
15134
-
15135
15102
  class WebhookDestinationGetWebhookDeliveriesResponse(BaseModel):
15136
15103
  webhook_deliveries: List[WebhookDeliveryInstance] = Field(
15137
15104
  ..., description='The retrieved webhook deliveries.', title='Webhook Deliveries'
@@ -15227,7 +15194,7 @@ class ActionStateInput(BaseModel):
15227
15194
  Field(..., title='Boundary Constraints')
15228
15195
  )
15229
15196
  exit_conditions: List[
15230
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15197
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15231
15198
  ] = Field(..., title='Exit Conditions')
15232
15199
  action_tool_call_specs: List[ToolCallSpecInput] = Field(
15233
15200
  ..., title='Action Tool Call Specs'
@@ -15336,7 +15303,7 @@ class DecisionStateInput(BaseModel):
15336
15303
  type: Literal['decision'] = Field(..., title='Type')
15337
15304
  name: str = Field(..., pattern='^[A-Za-z0-9_]+$')
15338
15305
  exit_conditions: List[
15339
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15306
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15340
15307
  ] = Field(..., title='Exit Conditions')
15341
15308
  decision_guidelines: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
15342
15309
  ..., title='Decision Guidelines'
@@ -15377,9 +15344,9 @@ class Metric(BaseModel):
15377
15344
  additional_notes: Optional[str] = Field(
15378
15345
  ..., description='Additional notes about the metric.', title='Additional Notes'
15379
15346
  )
15380
- tags: List[
15381
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15382
- ] = Field(..., description='The tags of the metric.', title='Tags')
15347
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15348
+ ..., description='The tags of the metric.', title='Tags'
15349
+ )
15383
15350
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15384
15351
  ..., description='The user who created the metric.'
15385
15352
  )
@@ -15447,9 +15414,9 @@ class MetricInstance(BaseModel):
15447
15414
  additional_notes: Optional[str] = Field(
15448
15415
  ..., description='Additional notes about the metric.', title='Additional Notes'
15449
15416
  )
15450
- tags: List[
15451
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15452
- ] = Field(..., description='The tags of the metric.', title='Tags')
15417
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15418
+ ..., description='The tags of the metric.', title='Tags'
15419
+ )
15453
15420
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
15454
15421
  ..., description='The user who created the metric.'
15455
15422
  )
@@ -15649,9 +15616,9 @@ class SimulationUnitTest(BaseModel):
15649
15616
  is_deleted: bool = Field(
15650
15617
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15651
15618
  )
15652
- tags: List[
15653
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15654
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15619
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15620
+ ..., description='The tags of the simulation persona.', title='Tags'
15621
+ )
15655
15622
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15656
15623
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15657
15624
 
@@ -15694,9 +15661,9 @@ class SimulationUnitTestInstance(BaseModel):
15694
15661
  is_deleted: bool = Field(
15695
15662
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15696
15663
  )
15697
- tags: List[
15698
- AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetTag
15699
- ] = Field(..., description='The tags of the simulation persona.', title='Tags')
15664
+ tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15665
+ ..., description='The tags of the simulation persona.', title='Tags'
15666
+ )
15700
15667
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15701
15668
  updated_by: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
15702
15669
 
@@ -15994,7 +15961,7 @@ class RoleCreateRoleRequest(BaseModel):
15994
15961
  description: str = Field(
15995
15962
  ..., description='A description about the role.', min_length=1
15996
15963
  )
15997
- permission_grants: List[RoleCreateRoleRequestPermissionGrant] = Field(
15964
+ permission_grants: List[RoleModifyRoleRequestPermissionGrant] = Field(
15998
15965
  ...,
15999
15966
  description='A list of permission grants associated with this role.',
16000
15967
  title='Permission Grants',
@@ -16020,6 +15987,29 @@ class RoleGetRolesResponse(BaseModel):
16020
15987
  )
16021
15988
 
16022
15989
 
15990
+ class RoleModifyRoleRequest(BaseModel):
15991
+ description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
15992
+ None,
15993
+ description='A description about the role. Only updated if specified. This field is a mutable field.',
15994
+ )
15995
+ permission_grants: Optional[List[RoleModifyRoleRequestPermissionGrant]] = Field(
15996
+ None,
15997
+ description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
15998
+ title='Permission Grants',
15999
+ )
16000
+ frontend_view: Optional[FrontendView] = Field(
16001
+ None,
16002
+ description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
16003
+ )
16004
+ inherited_from: Optional[Union[RoleModifyRoleRequestInheritedFrom, FieldNotSet]] = (
16005
+ Field(
16006
+ {},
16007
+ description='The ID of the role that this role inherits from. Only updated if specified. This field is an immutable field.',
16008
+ title='Inherited From',
16009
+ )
16010
+ )
16011
+
16012
+
16023
16013
  class ServiceCreateServiceRequest(BaseModel):
16024
16014
  service_hierarchical_state_machine_id: str = Field(
16025
16015
  ...,
@@ -16184,7 +16174,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
16184
16174
  )
16185
16175
 
16186
16176
 
16187
- class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16177
+ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16188
16178
  id: str = Field(..., description='The ID of the tool invocation.', title='Id')
16189
16179
  org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
16190
16180
  created_at: Optional[AwareDatetime] = Field(None, title='Created At')
@@ -16206,13 +16196,21 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16206
16196
  tool_id: str = Field(
16207
16197
  ..., description='The ID of the tool that was invoked.', title='Tool Id'
16208
16198
  )
16209
- tool_version: AmigoLibMongoCollectionsToolVersionToolVersionVersion = Field(
16199
+ tool_version: AmigoLibMongoCollectionsToolInvocationToolInvocationVersion = Field(
16210
16200
  ..., description='The version of the tool that was invoked.'
16211
16201
  )
16212
16202
 
16213
16203
 
16204
+ class ToolSearchToolInvocationsResponse(BaseModel):
16205
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16206
+ Field(
16207
+ ..., description='The list of tool invocations.', title='Tool Invocations'
16208
+ )
16209
+ )
16210
+
16211
+
16214
16212
  class UserGetUsersResponse(BaseModel):
16215
- users: List[UserGetUsersResponseUserInstance] = Field(
16213
+ users: List[UserSearchUsersResponseUserInstance] = Field(
16216
16214
  ..., description='Users in this organization.', title='Users'
16217
16215
  )
16218
16216
  has_more: bool = Field(
@@ -16225,6 +16223,12 @@ class UserGetUsersResponse(BaseModel):
16225
16223
  )
16226
16224
 
16227
16225
 
16226
+ class UserSearchUsersResponse(BaseModel):
16227
+ users: List[UserSearchUsersResponseUserInstance] = Field(
16228
+ ..., description='Users in this organization.', title='Users'
16229
+ )
16230
+
16231
+
16228
16232
  class SimulationUnitTestSetRunInstance(BaseModel):
16229
16233
  org_id: str = Field(..., title='Org Id')
16230
16234
  id: str = Field(..., title='Id')
@@ -16324,7 +16328,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
16324
16328
 
16325
16329
 
16326
16330
  class ToolGetToolInvocationsResponse(BaseModel):
16327
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16331
+ tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16328
16332
  Field(
16329
16333
  ..., description='The list of tool invocations.', title='Tool Invocations'
16330
16334
  )
@@ -16339,11 +16343,3 @@ class ToolGetToolInvocationsResponse(BaseModel):
16339
16343
  description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
16340
16344
  title='Continuation Token',
16341
16345
  )
16342
-
16343
-
16344
- class ToolSearchToolInvocationsResponse(BaseModel):
16345
- tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16346
- Field(
16347
- ..., description='The list of tool invocations.', title='Tool Invocations'
16348
- )
16349
- )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.73.0
3
+ Version: 0.74.0
4
4
  Summary: Amigo AI Python SDK
5
5
  Author: Amigo AI
6
6
  License-File: LICENSE
@@ -1,4 +1,4 @@
1
- amigo_sdk/__init__.py,sha256=M3-cznKBTuATdoY_7EDHlhXFTzv8qPMn-IA749TeT64,139
1
+ amigo_sdk/__init__.py,sha256=zcnT1jXMI4F2yOY5rFAyC_15LeisrPmDXMdxxNQMUZ0,139
2
2
  amigo_sdk/_retry_utils.py,sha256=VbA_Uwv268J80d11R9XfnCjZiV-NwE1aXRsSlRjjRio,2108
3
3
  amigo_sdk/auth.py,sha256=WaM9PcEcnaC6CzNsgRKueHkdSAxNbRylzpR_3Q6guQ0,1765
4
4
  amigo_sdk/config.py,sha256=0eZIo-hcJ8ODftKAr-mwB-FGJxGO5PT5T4dRpyWPqAg,1491
@@ -6,13 +6,13 @@ amigo_sdk/errors.py,sha256=Yn12AxIQ6zE9jnGLWO0MUVbBsmw77Kzh82AijyreOkA,4818
6
6
  amigo_sdk/http_client.py,sha256=tfMXHqMTmlz2ja7aJhOVgbwAiJNlKCzPcK4UGNqXHO8,13488
7
7
  amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
8
8
  amigo_sdk/sdk_client.py,sha256=5nj8hzjHSFRs9JMNabdYIhQAcFE2G1jI_r7SHVGr9No,6106
9
- amigo_sdk/generated/model.py,sha256=1PM-mIT1t9v1EAqYqdrIxDPwG5lgyEF5WQ996wMOVSQ,457200
9
+ amigo_sdk/generated/model.py,sha256=A755nDbPWQIWas25oXKOalCz4X8W1rpSPGOGzsSKT68,456912
10
10
  amigo_sdk/resources/conversation.py,sha256=u4kOx5LPbhX92L41UnmPmaF9TkQA5bGev8N00dMoP9I,14805
11
11
  amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
12
12
  amigo_sdk/resources/service.py,sha256=t1iA3nS9co-wuR-x5jBhAXXTWfMeGsLwfQcLycwVrCA,1536
13
13
  amigo_sdk/resources/user.py,sha256=zikijiuGXgmkBVtrldor6XQGQK6jWXonDvNFuQs6XK4,3472
14
- amigo_sdk-0.73.0.dist-info/METADATA,sha256=7N7JxtjUPVrkhrvvHODEkR8sRfkLGd1j5TeyuSAZV9M,8499
15
- amigo_sdk-0.73.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
- amigo_sdk-0.73.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.73.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.73.0.dist-info/RECORD,,
14
+ amigo_sdk-0.74.0.dist-info/METADATA,sha256=AvRqlGXxUNwkNjwrCiEY4UuAnNjBXtHcV9xwTUbOiQI,8499
15
+ amigo_sdk-0.74.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
+ amigo_sdk-0.74.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.74.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.74.0.dist-info/RECORD,,