amigo_sdk 0.56.0__py3-none-any.whl → 0.57.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.56.0"
1
+ __version__ = "0.57.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-11-11T19:37:59+00:00
3
+ # timestamp: 2025-11-11T20:01:59+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1601,11 +1601,6 @@ class AmigoLibMongoCollectionsDynamicBehaviorSetVersionAction(BaseModel):
1601
1601
  )
1602
1602
 
1603
1603
 
1604
- class AmigoLibMongoCollectionsMetricMetricTag(BaseModel):
1605
- key: str = Field(..., title='Key')
1606
- value: Optional[str] = Field(..., title='Value')
1607
-
1608
-
1609
1604
  AmigoLibMongoCollectionsMetricMetricUserInfo = (
1610
1605
  AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1611
1606
  )
@@ -1693,6 +1688,11 @@ AmigoLibMongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo
1693
1688
  )
1694
1689
 
1695
1690
 
1691
+ class AmigoLibMongoCollectionsToolToolTag(BaseModel):
1692
+ key: str = Field(..., title='Key')
1693
+ value: Optional[str] = Field(..., title='Value')
1694
+
1695
+
1696
1696
  class AmigoLibMongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1697
1697
  major: int = Field(..., title='Major')
1698
1698
  minor: int = Field(..., title='Minor')
@@ -1937,20 +1937,6 @@ class DynamicBehaviorSetGetDynamicBehaviorInvocationsResponse(BaseModel):
1937
1937
  )
1938
1938
 
1939
1939
 
1940
- class DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1941
- BaseModel
1942
- ):
1943
- id: str = Field(..., title='Id')
1944
- name: str = Field(..., title='Name')
1945
- is_active: bool = Field(..., title='Is Active')
1946
- applied_to_services: List[str] = Field(..., title='Applied To Services')
1947
- tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1948
- created_at: AwareDatetime = Field(..., title='Created At')
1949
- creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1950
- updated_at: AwareDatetime = Field(..., title='Updated At')
1951
- updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1952
-
1953
-
1954
1940
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1955
1941
  applied_to_services_ids: List[str] = Field(
1956
1942
  ...,
@@ -1971,14 +1957,18 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1971
1957
  )
1972
1958
 
1973
1959
 
1974
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
1975
- dynamic_behavior_sets: List[
1976
- DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
1977
- ] = Field(
1978
- ...,
1979
- description='The retrieved dynamic behavior sets.',
1980
- title='Dynamic Behavior Sets',
1981
- )
1960
+ class DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1961
+ BaseModel
1962
+ ):
1963
+ id: str = Field(..., title='Id')
1964
+ name: str = Field(..., title='Name')
1965
+ is_active: bool = Field(..., title='Is Active')
1966
+ applied_to_services: List[str] = Field(..., title='Applied To Services')
1967
+ tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1968
+ created_at: AwareDatetime = Field(..., title='Created At')
1969
+ creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1970
+ updated_at: AwareDatetime = Field(..., title='Updated At')
1971
+ updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1982
1972
 
1983
1973
 
1984
1974
  class DynamicBehaviorSetUpdateDynamicBehaviorSetRequestAppliedToService(
@@ -11230,37 +11220,6 @@ class SimulationGetSimulationScenariosResponseFilterValues(BaseModel):
11230
11220
  )
11231
11221
 
11232
11222
 
11233
- class SimulationGetSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11234
- id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11235
- name: str = Field(
11236
- ..., description='The name of the simulation scenario.', title='Name'
11237
- )
11238
- tags: Dict[str, Optional[str]] = Field(
11239
- ..., description='The tags of the simulation scenario.', title='Tags'
11240
- )
11241
- is_deleted: bool = Field(
11242
- ...,
11243
- description='Whether the simulation scenario is deleted.',
11244
- title='Is Deleted',
11245
- )
11246
- created_at: AwareDatetime = Field(
11247
- ...,
11248
- description='The timestamp when the simulation scenario was created.',
11249
- title='Created At',
11250
- )
11251
- creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11252
- Field(..., description='The user who created the simulation scenario.')
11253
- )
11254
- updated_at: AwareDatetime = Field(
11255
- ...,
11256
- description='The timestamp when the simulation scenario was last updated.',
11257
- title='Updated At',
11258
- )
11259
- updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11260
- Field(..., description='The user who last updated the simulation scenario.')
11261
- )
11262
-
11263
-
11264
11223
  class SimulationGetSimulationUnitTestSetRunArtifactsResponse(BaseModel):
11265
11224
  presigned_url: str = Field(
11266
11225
  ...,
@@ -11383,13 +11342,34 @@ class SimulationSearchSimulationPersonasResponseSimulationPersonaInstance(BaseMo
11383
11342
  )
11384
11343
 
11385
11344
 
11386
- class SimulationSearchSimulationScenariosResponse(BaseModel):
11387
- simulation_scenarios: List[
11388
- SimulationGetSimulationScenariosResponseSimulationScenarioInstance
11389
- ] = Field(
11345
+ class SimulationSearchSimulationScenariosResponseSimulationScenarioInstance(BaseModel):
11346
+ id: str = Field(..., description='The ID of the simulation scenario.', title='Id')
11347
+ name: str = Field(
11348
+ ..., description='The name of the simulation scenario.', title='Name'
11349
+ )
11350
+ tags: Dict[str, Optional[str]] = Field(
11351
+ ..., description='The tags of the simulation scenario.', title='Tags'
11352
+ )
11353
+ is_deleted: bool = Field(
11390
11354
  ...,
11391
- description='The list of simulation scenarios.',
11392
- title='Simulation Scenarios',
11355
+ description='Whether the simulation scenario is deleted.',
11356
+ title='Is Deleted',
11357
+ )
11358
+ created_at: AwareDatetime = Field(
11359
+ ...,
11360
+ description='The timestamp when the simulation scenario was created.',
11361
+ title='Created At',
11362
+ )
11363
+ creator: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11364
+ Field(..., description='The user who created the simulation scenario.')
11365
+ )
11366
+ updated_at: AwareDatetime = Field(
11367
+ ...,
11368
+ description='The timestamp when the simulation scenario was last updated.',
11369
+ title='Updated At',
11370
+ )
11371
+ updated_by: AmigoLibMongoCollectionsSimulationScenarioSimulationScenarioUserInfo = (
11372
+ Field(..., description='The user who last updated the simulation scenario.')
11393
11373
  )
11394
11374
 
11395
11375
 
@@ -12141,7 +12121,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12141
12121
  [], description='The IDs of the messages to retrieve.', title='Id'
12142
12122
  )
12143
12123
  message_type: Optional[List[MessageType]] = Field(
12144
- ['user-message', 'agent-message', 'external-event'],
12124
+ ['user-message', 'external-event', 'agent-message'],
12145
12125
  description='The type of messages to retrieve.',
12146
12126
  title='Message Type',
12147
12127
  )
@@ -13872,7 +13852,7 @@ class ServiceInstance(BaseModel):
13872
13852
  agent_id: str = Field(
13873
13853
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13874
13854
  )
13875
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13855
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
13876
13856
  ..., description='The tags of the service.', title='Tags'
13877
13857
  )
13878
13858
 
@@ -13925,7 +13905,7 @@ class SimulationUnitTestSet(BaseModel):
13925
13905
  description='Whether the unit test set has been deleted.',
13926
13906
  title='Is Deleted',
13927
13907
  )
13928
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13908
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
13929
13909
  ..., description='The tags of the simulation unit test set.', title='Tags'
13930
13910
  )
13931
13911
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -13964,7 +13944,7 @@ class SimulationUnitTestSetInstance(BaseModel):
13964
13944
  description='Whether the unit test set has been deleted.',
13965
13945
  title='Is Deleted',
13966
13946
  )
13967
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
13947
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
13968
13948
  ..., description='The tags of the simulation unit test set.', title='Tags'
13969
13949
  )
13970
13950
  creator: AmigoLibMongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -14076,7 +14056,7 @@ class ToolInstance(BaseModel):
14076
14056
  description='A list of encrypted environment variables that some versions of this tool uses.',
14077
14057
  title='Secret Envvars',
14078
14058
  )
14079
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
14059
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
14080
14060
  ..., description='The tags of the simulation persona.', title='Tags'
14081
14061
  )
14082
14062
 
@@ -14410,7 +14390,7 @@ class DynamicBehaviorSetGetDynamicBehaviorSetVersionsResponse(BaseModel):
14410
14390
 
14411
14391
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14412
14392
  dynamic_behavior_sets: List[
14413
- DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14393
+ DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14414
14394
  ] = Field(
14415
14395
  ...,
14416
14396
  description='The retrieved dynamic behavior sets.',
@@ -14434,6 +14414,16 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14434
14414
  )
14435
14415
 
14436
14416
 
14417
+ class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
14418
+ dynamic_behavior_sets: List[
14419
+ DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14420
+ ] = Field(
14421
+ ...,
14422
+ description='The retrieved dynamic behavior sets.',
14423
+ title='Dynamic Behavior Sets',
14424
+ )
14425
+
14426
+
14437
14427
  class MetricCreateMetricRequest(BaseModel):
14438
14428
  name: str = Field(
14439
14429
  ...,
@@ -14702,7 +14692,7 @@ class OrganizationModifyOrganizationRequest(BaseModel):
14702
14692
  )
14703
14693
 
14704
14694
 
14705
- class RoleModifyRoleRequestPermissionGrant(BaseModel):
14695
+ class RoleCreateRoleRequestPermissionGrant(BaseModel):
14706
14696
  action: AmigoLibMongoCollectionsRoleRolePermissionGrantAction = Field(
14707
14697
  ...,
14708
14698
  description='Whether this grant allows or denies the specified access.',
@@ -14719,6 +14709,29 @@ class RoleModifyRoleRequestPermissionGrant(BaseModel):
14719
14709
  description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = None
14720
14710
 
14721
14711
 
14712
+ class RoleModifyRoleRequest(BaseModel):
14713
+ description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
14714
+ None,
14715
+ description='A description about the role. Only updated if specified. This field is a mutable field.',
14716
+ )
14717
+ permission_grants: Optional[List[RoleCreateRoleRequestPermissionGrant]] = Field(
14718
+ None,
14719
+ description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
14720
+ title='Permission Grants',
14721
+ )
14722
+ frontend_view: Optional[FrontendView] = Field(
14723
+ None,
14724
+ description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
14725
+ )
14726
+ inherited_from: Optional[Union[RoleModifyRoleRequestInheritedFrom, FieldNotSet]] = (
14727
+ Field(
14728
+ {},
14729
+ description='The ID of the role that this role inherits from. Only updated if specified. This field is an immutable field.',
14730
+ title='Inherited From',
14731
+ )
14732
+ )
14733
+
14734
+
14722
14735
  class ServiceCreateServiceRequestVersionSet(BaseModel):
14723
14736
  agent_version_number: Optional[int] = Field(
14724
14737
  ...,
@@ -14852,7 +14865,7 @@ class SimulationGetSimulationPersonasResponse(BaseModel):
14852
14865
 
14853
14866
  class SimulationGetSimulationScenariosResponse(BaseModel):
14854
14867
  simulation_scenarios: List[
14855
- SimulationGetSimulationScenariosResponseSimulationScenarioInstance
14868
+ SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14856
14869
  ] = Field(
14857
14870
  ...,
14858
14871
  description='The list of simulation scenarios.',
@@ -14908,6 +14921,16 @@ class SimulationSearchSimulationPersonasResponse(BaseModel):
14908
14921
  )
14909
14922
 
14910
14923
 
14924
+ class SimulationSearchSimulationScenariosResponse(BaseModel):
14925
+ simulation_scenarios: List[
14926
+ SimulationSearchSimulationScenariosResponseSimulationScenarioInstance
14927
+ ] = Field(
14928
+ ...,
14929
+ description='The list of simulation scenarios.',
14930
+ title='Simulation Scenarios',
14931
+ )
14932
+
14933
+
14911
14934
  class SimulationSearchSimulationUnitTestSetResponse(BaseModel):
14912
14935
  simulation_unit_test_sets: List[SimulationUnitTestSet] = Field(
14913
14936
  ...,
@@ -15237,7 +15260,7 @@ class Metric(BaseModel):
15237
15260
  additional_notes: Optional[str] = Field(
15238
15261
  ..., description='Additional notes about the metric.', title='Additional Notes'
15239
15262
  )
15240
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15263
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
15241
15264
  ..., description='The tags of the metric.', title='Tags'
15242
15265
  )
15243
15266
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
@@ -15307,7 +15330,7 @@ class MetricInstance(BaseModel):
15307
15330
  additional_notes: Optional[str] = Field(
15308
15331
  ..., description='Additional notes about the metric.', title='Additional Notes'
15309
15332
  )
15310
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15333
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
15311
15334
  ..., description='The tags of the metric.', title='Tags'
15312
15335
  )
15313
15336
  creator: AmigoLibMongoCollectionsMetricMetricUserInfo = Field(
@@ -15509,7 +15532,7 @@ class SimulationUnitTest(BaseModel):
15509
15532
  is_deleted: bool = Field(
15510
15533
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15511
15534
  )
15512
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15535
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
15513
15536
  ..., description='The tags of the simulation persona.', title='Tags'
15514
15537
  )
15515
15538
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -15554,7 +15577,7 @@ class SimulationUnitTestInstance(BaseModel):
15554
15577
  is_deleted: bool = Field(
15555
15578
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15556
15579
  )
15557
- tags: List[AmigoLibMongoCollectionsMetricMetricTag] = Field(
15580
+ tags: List[AmigoLibMongoCollectionsToolToolTag] = Field(
15558
15581
  ..., description='The tags of the simulation persona.', title='Tags'
15559
15582
  )
15560
15583
  creator: AmigoLibMongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -15857,7 +15880,7 @@ class RoleCreateRoleRequest(BaseModel):
15857
15880
  description: str = Field(
15858
15881
  ..., description='A description about the role.', min_length=1
15859
15882
  )
15860
- permission_grants: List[RoleModifyRoleRequestPermissionGrant] = Field(
15883
+ permission_grants: List[RoleCreateRoleRequestPermissionGrant] = Field(
15861
15884
  ...,
15862
15885
  description='A list of permission grants associated with this role.',
15863
15886
  title='Permission Grants',
@@ -15883,29 +15906,6 @@ class RoleGetRolesResponse(BaseModel):
15883
15906
  )
15884
15907
 
15885
15908
 
15886
- class RoleModifyRoleRequest(BaseModel):
15887
- description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
15888
- None,
15889
- description='A description about the role. Only updated if specified. This field is a mutable field.',
15890
- )
15891
- permission_grants: Optional[List[RoleModifyRoleRequestPermissionGrant]] = Field(
15892
- None,
15893
- description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
15894
- title='Permission Grants',
15895
- )
15896
- frontend_view: Optional[FrontendView] = Field(
15897
- None,
15898
- description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
15899
- )
15900
- inherited_from: Optional[Union[RoleModifyRoleRequestInheritedFrom, FieldNotSet]] = (
15901
- Field(
15902
- {},
15903
- description='The ID of the role that this role inherits from. Only updated if specified. This field is an immutable field.',
15904
- title='Inherited From',
15905
- )
15906
- )
15907
-
15908
-
15909
15909
  class ServiceCreateServiceRequest(BaseModel):
15910
15910
  service_hierarchical_state_machine_id: str = Field(
15911
15911
  ...,
@@ -16070,7 +16070,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
16070
16070
  )
16071
16071
 
16072
16072
 
16073
- class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16073
+ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16074
16074
  id: str = Field(..., description='The ID of the tool invocation.', title='Id')
16075
16075
  org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
16076
16076
  created_at: Optional[AwareDatetime] = Field(None, title='Created At')
@@ -16097,14 +16097,6 @@ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16097
16097
  )
16098
16098
 
16099
16099
 
16100
- class ToolSearchToolInvocationsResponse(BaseModel):
16101
- tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16102
- Field(
16103
- ..., description='The list of tool invocations.', title='Tool Invocations'
16104
- )
16105
- )
16106
-
16107
-
16108
16100
  class UserGetUsersResponse(BaseModel):
16109
16101
  users: List[UserGetUsersResponseUserInstance] = Field(
16110
16102
  ..., description='Users in this organization.', title='Users'
@@ -16218,7 +16210,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
16218
16210
 
16219
16211
 
16220
16212
  class ToolGetToolInvocationsResponse(BaseModel):
16221
- tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16213
+ tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16222
16214
  Field(
16223
16215
  ..., description='The list of tool invocations.', title='Tool Invocations'
16224
16216
  )
@@ -16233,3 +16225,11 @@ class ToolGetToolInvocationsResponse(BaseModel):
16233
16225
  description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
16234
16226
  title='Continuation Token',
16235
16227
  )
16228
+
16229
+
16230
+ class ToolSearchToolInvocationsResponse(BaseModel):
16231
+ tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16232
+ Field(
16233
+ ..., description='The list of tool invocations.', title='Tool Invocations'
16234
+ )
16235
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.56.0
3
+ Version: 0.57.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=xtAbVpLB9uTlaHYewA7p0IL8N4ezV9Zp5U2aZhJyM3A,139
1
+ amigo_sdk/__init__.py,sha256=0llxKOaHaoc69AWjNvWLA6SEj6nLiGhZyJuCASHIv2g,139
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
@@ -6,13 +6,13 @@ amigo_sdk/errors.py,sha256=RkRyF5eAASd8fIOS6YvL9rLDvLAYWqHfpHSCR7jqvl4,4840
6
6
  amigo_sdk/http_client.py,sha256=v25UoUbXcMeHTnfJMcrl8RSSwCVkKUL1Jv-0HoXP1B4,13507
7
7
  amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
8
8
  amigo_sdk/sdk_client.py,sha256=Kr9M9o66pOLu0T2VDvqdYMmPZzgKJyTELu7BSPgGrYQ,6152
9
- amigo_sdk/generated/model.py,sha256=wTpk82DBNBsA80bFikmOZMSqDNchZn7jBP7G4yca6hM,452101
9
+ amigo_sdk/generated/model.py,sha256=u0fFcDB3hmPtOjoiOuWcKACBCsCkP5_k73HNdTfonTU,452092
10
10
  amigo_sdk/resources/conversation.py,sha256=5PkJOvLKqnriSS9K9hKw2VRPxRLTuABEbCyPy1fz1r0,14817
11
11
  amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
12
12
  amigo_sdk/resources/service.py,sha256=SiwEHXCQk4r1b_tGv47M08VuB7RALDHJQzWlpuD937g,1571
13
13
  amigo_sdk/resources/user.py,sha256=vZPCw8i-xvcDQik8ouJbm8qVHucRbfxCWI3yYMDj8hg,3517
14
- amigo_sdk-0.56.0.dist-info/METADATA,sha256=CW4oHaZjxktm4CfXSh361h-ByaiybHL46CEEuOzt_D4,8350
15
- amigo_sdk-0.56.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
- amigo_sdk-0.56.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
- amigo_sdk-0.56.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
- amigo_sdk-0.56.0.dist-info/RECORD,,
14
+ amigo_sdk-0.57.0.dist-info/METADATA,sha256=Sl4jnROOqlOl0_t-xYjpsUEqR1SDGFLMO77VGEj7WaE,8350
15
+ amigo_sdk-0.57.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
16
+ amigo_sdk-0.57.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.57.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.57.0.dist-info/RECORD,,