amigo_sdk 0.74.0__py3-none-any.whl → 0.75.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.74.0"
1
+ __version__ = "0.75.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-04T00:27:11+00:00
3
+ # timestamp: 2025-12-04T01:13:30+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1955,6 +1955,20 @@ class DynamicBehaviorSetGetDynamicBehaviorInvocationsResponse(BaseModel):
1955
1955
  )
1956
1956
 
1957
1957
 
1958
+ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1959
+ BaseModel
1960
+ ):
1961
+ id: str = Field(..., title='Id')
1962
+ name: str = Field(..., title='Name')
1963
+ is_active: bool = Field(..., title='Is Active')
1964
+ applied_to_services: List[str] = Field(..., title='Applied To Services')
1965
+ tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1966
+ created_at: AwareDatetime = Field(..., title='Created At')
1967
+ creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1968
+ updated_at: AwareDatetime = Field(..., title='Updated At')
1969
+ updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1970
+
1971
+
1958
1972
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1959
1973
  applied_to_services_ids: List[str] = Field(
1960
1974
  ...,
@@ -1975,18 +1989,14 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponseFilterValues(BaseModel):
1975
1989
  )
1976
1990
 
1977
1991
 
1978
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance(
1979
- BaseModel
1980
- ):
1981
- id: str = Field(..., title='Id')
1982
- name: str = Field(..., title='Name')
1983
- is_active: bool = Field(..., title='Is Active')
1984
- applied_to_services: List[str] = Field(..., title='Applied To Services')
1985
- tags: Dict[str, Optional[str]] = Field(..., title='Tags')
1986
- created_at: AwareDatetime = Field(..., title='Created At')
1987
- creator: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1988
- updated_at: AwareDatetime = Field(..., title='Updated At')
1989
- updated_by: AmigoLibMongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1992
+ class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
1993
+ dynamic_behavior_sets: List[
1994
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
1995
+ ] = Field(
1996
+ ...,
1997
+ description='The retrieved dynamic behavior sets.',
1998
+ title='Dynamic Behavior Sets',
1999
+ )
1990
2000
 
1991
2001
 
1992
2002
  class DynamicBehaviorSetUpdateDynamicBehaviorSetRequestAppliedToService(
@@ -10742,6 +10752,13 @@ class OrganizationCreateOrganizationRequestPreferences(BaseModel):
10742
10752
  )
10743
10753
 
10744
10754
 
10755
+ class OrganizationCreateOrganizationRequestUserDimension(BaseModel):
10756
+ description: str = Field(..., min_length=1)
10757
+ tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
10758
+ ..., title='Tags'
10759
+ )
10760
+
10761
+
10745
10762
  class OrganizationCreateOrganizationResponse(BaseModel):
10746
10763
  org_id: str = Field(
10747
10764
  ...,
@@ -10765,19 +10782,19 @@ class OrganizationCreateServiceHierarchicalStateMachineResponse(BaseModel):
10765
10782
  )
10766
10783
 
10767
10784
 
10768
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState(
10785
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState(
10769
10786
  AnnotationStateInputNextState
10770
10787
  ):
10771
10788
  pass
10772
10789
 
10773
10790
 
10774
- class OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition(
10791
+ class OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition(
10775
10792
  BaseModel
10776
10793
  ):
10777
10794
  description: str = Field(..., min_length=1)
10778
10795
  next_state: Union[
10779
10796
  StateOrRefName,
10780
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitConditionNextState,
10797
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitConditionNextState,
10781
10798
  ] = Field(..., title='Next State')
10782
10799
 
10783
10800
 
@@ -10883,18 +10900,22 @@ class OrganizationGetUserDimensionsResponse(BaseModel):
10883
10900
  )
10884
10901
 
10885
10902
 
10903
+ class OrganizationModifyOrganizationRequestUserDimensions(
10904
+ RootModel[List[OrganizationCreateOrganizationRequestUserDimension]]
10905
+ ):
10906
+ root: List[OrganizationCreateOrganizationRequestUserDimension] = Field(
10907
+ ...,
10908
+ description='User dimensions for the organization. If not set or `null`, this field is not updated.',
10909
+ min_length=1,
10910
+ title='User Dimensions',
10911
+ )
10912
+
10913
+
10886
10914
  OrganizationModifyOrganizationRequestPreferences = (
10887
10915
  OrganizationCreateOrganizationRequestPreferences
10888
10916
  )
10889
10917
 
10890
10918
 
10891
- class OrganizationModifyOrganizationRequestUserDimension(BaseModel):
10892
- description: str = Field(..., min_length=1)
10893
- tags: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
10894
- ..., title='Tags'
10895
- )
10896
-
10897
-
10898
10919
  class RoleAssignRoleRequest(BaseModel):
10899
10920
  user_id: str = Field(
10900
10921
  ...,
@@ -11661,7 +11682,7 @@ class UserGetMemoriesResponse(BaseModel):
11661
11682
  )
11662
11683
 
11663
11684
 
11664
- class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11685
+ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11665
11686
  num_conversations: int = Field(
11666
11687
  ...,
11667
11688
  description='The number of conversations the user has created.',
@@ -11679,6 +11700,31 @@ class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11679
11700
  )
11680
11701
 
11681
11702
 
11703
+ class UserSearchUsersResponseUserInstance(BaseModel):
11704
+ org_id: str = Field(
11705
+ ...,
11706
+ description='The ID of the organization that this user belongs to.',
11707
+ title='Org Id',
11708
+ )
11709
+ user_id: str = Field(
11710
+ ..., description='The identifier of the user.', title='User Id'
11711
+ )
11712
+ first_name: str = Field(
11713
+ ..., description='The first name of the user.', title='First Name'
11714
+ )
11715
+ last_name: str = Field(
11716
+ ..., description='The last name of the user.', title='Last Name'
11717
+ )
11718
+ email: str = Field(..., description='Email of the user.', title='Email')
11719
+ user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
11720
+ ..., description="Statistics about the user's usage of the Amigo platform."
11721
+ )
11722
+ role: str = Field(..., description='The ID of the role of the user.', title='Role')
11723
+ preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
11724
+ ..., description='The preferences of the user.'
11725
+ )
11726
+
11727
+
11682
11728
  class UserSignInWithApiKeyResponse(BaseModel):
11683
11729
  id_token: str = Field(
11684
11730
  ...,
@@ -12100,7 +12146,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
12100
12146
  [], description='The IDs of the messages to retrieve.', title='Id'
12101
12147
  )
12102
12148
  message_type: Optional[List[MessageType]] = Field(
12103
- ['agent-message', 'external-event', 'user-message'],
12149
+ ['user-message', 'external-event', 'agent-message'],
12104
12150
  description='The type of messages to retrieve.',
12105
12151
  title='Message Type',
12106
12152
  )
@@ -14445,7 +14491,7 @@ class DynamicBehaviorSetGetDynamicBehaviorSetVersionsResponse(BaseModel):
14445
14491
 
14446
14492
  class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14447
14493
  dynamic_behavior_sets: List[
14448
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14494
+ DynamicBehaviorSetGetDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14449
14495
  ] = Field(
14450
14496
  ...,
14451
14497
  description='The retrieved dynamic behavior sets.',
@@ -14469,16 +14515,6 @@ class DynamicBehaviorSetGetDynamicBehaviorSetsResponse(BaseModel):
14469
14515
  )
14470
14516
 
14471
14517
 
14472
- class DynamicBehaviorSetSearchDynamicBehaviorSetsResponse(BaseModel):
14473
- dynamic_behavior_sets: List[
14474
- DynamicBehaviorSetSearchDynamicBehaviorSetsResponseDynamicBehaviorSetInstance
14475
- ] = Field(
14476
- ...,
14477
- description='The retrieved dynamic behavior sets.',
14478
- title='Dynamic Behavior Sets',
14479
- )
14480
-
14481
-
14482
14518
  class MetricCreateMetricRequest(BaseModel):
14483
14519
  name: str = Field(
14484
14520
  ...,
@@ -14535,7 +14571,7 @@ class OrganizationCreateOrganizationRequest(BaseModel):
14535
14571
  description='Additional descriptions of the services offered by this organization that is displayed below `main_description` in a smaller font.',
14536
14572
  min_length=1,
14537
14573
  )
14538
- user_dimensions: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
14574
+ user_dimensions: List[OrganizationCreateOrganizationRequestUserDimension] = Field(
14539
14575
  ...,
14540
14576
  description='User dimensions for the organization.',
14541
14577
  title='User Dimensions',
@@ -14679,17 +14715,6 @@ class OrganizationGetOrganizationMetricsResponse(BaseModel):
14679
14715
  )
14680
14716
 
14681
14717
 
14682
- class OrganizationModifyOrganizationRequestUserDimensions(
14683
- RootModel[List[OrganizationModifyOrganizationRequestUserDimension]]
14684
- ):
14685
- root: List[OrganizationModifyOrganizationRequestUserDimension] = Field(
14686
- ...,
14687
- description='User dimensions for the organization. If not set or `null`, this field is not updated.',
14688
- min_length=1,
14689
- title='User Dimensions',
14690
- )
14691
-
14692
-
14693
14718
  class OrganizationModifyOrganizationRequest(BaseModel):
14694
14719
  title: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
14695
14720
  None,
@@ -14747,7 +14772,7 @@ class OrganizationModifyOrganizationRequest(BaseModel):
14747
14772
  )
14748
14773
 
14749
14774
 
14750
- class RoleModifyRoleRequestPermissionGrant(BaseModel):
14775
+ class RoleCreateRoleRequestPermissionGrant(BaseModel):
14751
14776
  action: AmigoLibMongoCollectionsRoleRolePermissionGrantAction = Field(
14752
14777
  ...,
14753
14778
  description='Whether this grant allows or denies the specified access.',
@@ -14764,6 +14789,29 @@ class RoleModifyRoleRequestPermissionGrant(BaseModel):
14764
14789
  description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = None
14765
14790
 
14766
14791
 
14792
+ class RoleModifyRoleRequest(BaseModel):
14793
+ description: Optional[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
14794
+ None,
14795
+ description='A description about the role. Only updated if specified. This field is a mutable field.',
14796
+ )
14797
+ permission_grants: Optional[List[RoleCreateRoleRequestPermissionGrant]] = Field(
14798
+ None,
14799
+ description='A list of permission grants associated with this role. Only updated if specified. This field is an immutable field.',
14800
+ title='Permission Grants',
14801
+ )
14802
+ frontend_view: Optional[FrontendView] = Field(
14803
+ None,
14804
+ description='The frontend view for the user of this role. Only updated if specified. This field is an immutable field.',
14805
+ )
14806
+ inherited_from: Optional[Union[RoleModifyRoleRequestInheritedFrom, FieldNotSet]] = (
14807
+ Field(
14808
+ {},
14809
+ description='The ID of the role that this role inherits from. Only updated if specified. This field is an immutable field.',
14810
+ title='Inherited From',
14811
+ )
14812
+ )
14813
+
14814
+
14767
14815
  class ServiceCreateServiceRequestVersionSet(BaseModel):
14768
14816
  agent_version_number: Optional[int] = Field(
14769
14817
  ...,
@@ -15074,28 +15122,23 @@ class UserGetUserModelResponse(BaseModel):
15074
15122
  )
15075
15123
 
15076
15124
 
15077
- class UserSearchUsersResponseUserInstance(BaseModel):
15078
- org_id: str = Field(
15079
- ...,
15080
- description='The ID of the organization that this user belongs to.',
15081
- title='Org Id',
15082
- )
15083
- user_id: str = Field(
15084
- ..., description='The identifier of the user.', title='User Id'
15085
- )
15086
- first_name: str = Field(
15087
- ..., description='The first name of the user.', title='First Name'
15125
+ class UserGetUsersResponse(BaseModel):
15126
+ users: List[UserSearchUsersResponseUserInstance] = Field(
15127
+ ..., description='Users in this organization.', title='Users'
15088
15128
  )
15089
- last_name: str = Field(
15090
- ..., description='The last name of the user.', title='Last Name'
15129
+ has_more: bool = Field(
15130
+ ..., description='Whether there are more users to retrieve.', title='Has More'
15091
15131
  )
15092
- email: str = Field(..., description='Email of the user.', title='Email')
15093
- user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
15094
- ..., description="Statistics about the user's usage of the Amigo platform."
15132
+ continuation_token: Optional[int] = Field(
15133
+ ...,
15134
+ description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
15135
+ title='Continuation Token',
15095
15136
  )
15096
- role: str = Field(..., description='The ID of the role of the user.', title='Role')
15097
- preferences: AmigoLibMongoCollectionsUserUserPreferences = Field(
15098
- ..., description='The preferences of the user.'
15137
+
15138
+
15139
+ class UserSearchUsersResponse(BaseModel):
15140
+ users: List[UserSearchUsersResponseUserInstance] = Field(
15141
+ ..., description='Users in this organization.', title='Users'
15099
15142
  )
15100
15143
 
15101
15144
 
@@ -15194,7 +15237,7 @@ class ActionStateInput(BaseModel):
15194
15237
  Field(..., title='Boundary Constraints')
15195
15238
  )
15196
15239
  exit_conditions: List[
15197
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15240
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15198
15241
  ] = Field(..., title='Exit Conditions')
15199
15242
  action_tool_call_specs: List[ToolCallSpecInput] = Field(
15200
15243
  ..., title='Action Tool Call Specs'
@@ -15303,7 +15346,7 @@ class DecisionStateInput(BaseModel):
15303
15346
  type: Literal['decision'] = Field(..., title='Type')
15304
15347
  name: str = Field(..., pattern='^[A-Za-z0-9_]+$')
15305
15348
  exit_conditions: List[
15306
- OrganizationCreateServiceHierarchicalStateMachineVersionRequestDecisionStateExitCondition
15349
+ OrganizationCreateServiceHierarchicalStateMachineVersionRequestActionStateExitCondition
15307
15350
  ] = Field(..., title='Exit Conditions')
15308
15351
  decision_guidelines: List[AmigoLibPydanticBaseModelStrippedNonemptyString1] = Field(
15309
15352
  ..., title='Decision Guidelines'
@@ -15961,7 +16004,7 @@ class RoleCreateRoleRequest(BaseModel):
15961
16004
  description: str = Field(
15962
16005
  ..., description='A description about the role.', min_length=1
15963
16006
  )
15964
- permission_grants: List[RoleModifyRoleRequestPermissionGrant] = Field(
16007
+ permission_grants: List[RoleCreateRoleRequestPermissionGrant] = Field(
15965
16008
  ...,
15966
16009
  description='A list of permission grants associated with this role.',
15967
16010
  title='Permission Grants',
@@ -15987,29 +16030,6 @@ class RoleGetRolesResponse(BaseModel):
15987
16030
  )
15988
16031
 
15989
16032
 
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
-
16013
16033
  class ServiceCreateServiceRequest(BaseModel):
16014
16034
  service_hierarchical_state_machine_id: str = Field(
16015
16035
  ...,
@@ -16174,7 +16194,7 @@ class SimulationUpdateSimulationUnitTestRequest(BaseModel):
16174
16194
  )
16175
16195
 
16176
16196
 
16177
- class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16197
+ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
16178
16198
  id: str = Field(..., description='The ID of the tool invocation.', title='Id')
16179
16199
  org_id: str = Field(..., description='The ID of the organization.', title='Org Id')
16180
16200
  created_at: Optional[AwareDatetime] = Field(None, title='Created At')
@@ -16201,34 +16221,6 @@ class ToolGetToolInvocationsResponseToolInvocationInstance(BaseModel):
16201
16221
  )
16202
16222
 
16203
16223
 
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
-
16212
- class UserGetUsersResponse(BaseModel):
16213
- users: List[UserSearchUsersResponseUserInstance] = Field(
16214
- ..., description='Users in this organization.', title='Users'
16215
- )
16216
- has_more: bool = Field(
16217
- ..., description='Whether there are more users to retrieve.', title='Has More'
16218
- )
16219
- continuation_token: Optional[int] = Field(
16220
- ...,
16221
- description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
16222
- title='Continuation Token',
16223
- )
16224
-
16225
-
16226
- class UserSearchUsersResponse(BaseModel):
16227
- users: List[UserSearchUsersResponseUserInstance] = Field(
16228
- ..., description='Users in this organization.', title='Users'
16229
- )
16230
-
16231
-
16232
16224
  class SimulationUnitTestSetRunInstance(BaseModel):
16233
16225
  org_id: str = Field(..., title='Org Id')
16234
16226
  id: str = Field(..., title='Id')
@@ -16328,7 +16320,7 @@ class SimulationGetSimulationUnitTestSetRunsResponse(BaseModel):
16328
16320
 
16329
16321
 
16330
16322
  class ToolGetToolInvocationsResponse(BaseModel):
16331
- tool_invocations: List[ToolGetToolInvocationsResponseToolInvocationInstance] = (
16323
+ tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16332
16324
  Field(
16333
16325
  ..., description='The list of tool invocations.', title='Tool Invocations'
16334
16326
  )
@@ -16343,3 +16335,11 @@ class ToolGetToolInvocationsResponse(BaseModel):
16343
16335
  description='The continuation token to retrieve the next page of tool invocations, or null if there are no more tool invocations.',
16344
16336
  title='Continuation Token',
16345
16337
  )
16338
+
16339
+
16340
+ class ToolSearchToolInvocationsResponse(BaseModel):
16341
+ tool_invocations: List[ToolSearchToolInvocationsResponseToolInvocationInstance] = (
16342
+ Field(
16343
+ ..., description='The list of tool invocations.', title='Tool Invocations'
16344
+ )
16345
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.74.0
3
+ Version: 0.75.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=zcnT1jXMI4F2yOY5rFAyC_15LeisrPmDXMdxxNQMUZ0,139
1
+ amigo_sdk/__init__.py,sha256=tzY6nagu7lgJ1MKARQEIKkdcAKo2EjbmL6C88h2QsjU,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=A755nDbPWQIWas25oXKOalCz4X8W1rpSPGOGzsSKT68,456912
9
+ amigo_sdk/generated/model.py,sha256=stIlA3cf-9diXa8V1obNAun6xX5d6u_BAyRl8S13fZ8,456896
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.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,,
14
+ amigo_sdk-0.75.0.dist-info/METADATA,sha256=8puY-2UtB259Cym1UM1XjY0KcEHAVF5mzpzeeFRunRk,8499
15
+ amigo_sdk-0.75.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
16
+ amigo_sdk-0.75.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
17
+ amigo_sdk-0.75.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
18
+ amigo_sdk-0.75.0.dist-info/RECORD,,