amigo_sdk 0.102.0__py3-none-any.whl → 0.104.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.102.0"
1
+ __version__ = "0.104.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: 2026-01-11T17:03:09+00:00
3
+ # timestamp: 2026-01-12T16:41:39+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1397,6 +1397,11 @@ class Action(Enum):
1397
1397
  deny = 'Deny'
1398
1398
 
1399
1399
 
1400
+ class MongoCollectionsServiceServiceTag(BaseModel):
1401
+ key: str = Field(..., title='Key')
1402
+ value: str | None = Field(..., title='Value')
1403
+
1404
+
1400
1405
  class MongoCollectionsServiceServiceVersionSet(BaseModel):
1401
1406
  agent_version_number: int | None = Field(
1402
1407
  ...,
@@ -1457,11 +1462,6 @@ class MongoCollectionsSimulationScenarioSimulationScenarioUserInfo(
1457
1462
  pass
1458
1463
 
1459
1464
 
1460
- class MongoCollectionsSimulationUnitTestSimulationUnitTestTag(BaseModel):
1461
- key: str = Field(..., title='Key')
1462
- value: str | None = Field(..., title='Value')
1463
-
1464
-
1465
1465
  class MongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo(
1466
1466
  MongoCollectionsDynamicBehaviorSetDynamicBehaviorSetUserInfo
1467
1467
  ):
@@ -1502,6 +1502,12 @@ class MongoCollectionsSimulationUnitTestSetRunSimulationUnitTestSetRunUserInfo(
1502
1502
  pass
1503
1503
 
1504
1504
 
1505
+ class MongoCollectionsToolInvocationToolInvocationVersion(BaseModel):
1506
+ major: int = Field(..., title='Major')
1507
+ minor: int = Field(..., title='Minor')
1508
+ patch: int = Field(..., title='Patch')
1509
+
1510
+
1505
1511
  class MongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1506
1512
  user_id: str = Field(..., description='The ID of the user.', title='User Id')
1507
1513
  user_org_id: str = Field(
@@ -1509,12 +1515,6 @@ class MongoCollectionsToolVersionToolVersionUserInfo(BaseModel):
1509
1515
  )
1510
1516
 
1511
1517
 
1512
- class MongoCollectionsToolVersionToolVersionVersion(BaseModel):
1513
- major: int = Field(..., title='Major')
1514
- minor: int = Field(..., title='Minor')
1515
- patch: int = Field(..., title='Patch')
1516
-
1517
-
1518
1518
  class MongoCollectionsUserUserPreferences(BaseModel):
1519
1519
  enable_response_recommendation: bool | None = Field(
1520
1520
  False,
@@ -1641,6 +1641,7 @@ class ConversationGenerateConversationStarterRequest(BaseModel):
1641
1641
  facets: list[PydanticBaseModelStrippedNonemptyString1] = Field(
1642
1642
  ...,
1643
1643
  description='The facets that the generated conversation starter should be about. Each generated starter is related to some of these facets.',
1644
+ min_length=1,
1644
1645
  title='Facets',
1645
1646
  )
1646
1647
  min_count: int = Field(
@@ -10575,6 +10576,11 @@ class OrganizationCreateOrganizationRequestPreferences(BaseModel):
10575
10576
  )
10576
10577
 
10577
10578
 
10579
+ class OrganizationCreateOrganizationRequestUserDimension(BaseModel):
10580
+ description: str = Field(..., min_length=1)
10581
+ tags: list[PydanticBaseModelStrippedNonemptyString1] = Field(..., title='Tags')
10582
+
10583
+
10578
10584
  class OrganizationCreateOrganizationResponse(BaseModel):
10579
10585
  org_id: str = Field(
10580
10586
  ...,
@@ -10749,17 +10755,23 @@ class OrganizationGetUserDimensionsResponse(BaseModel):
10749
10755
  )
10750
10756
 
10751
10757
 
10758
+ class UserDimensions(
10759
+ RootModel[list[OrganizationCreateOrganizationRequestUserDimension]]
10760
+ ):
10761
+ root: list[OrganizationCreateOrganizationRequestUserDimension] = Field(
10762
+ ...,
10763
+ description='User dimensions for the organization. If not set or `null`, this field is not updated.',
10764
+ min_length=1,
10765
+ title='User Dimensions',
10766
+ )
10767
+
10768
+
10752
10769
  class OrganizationModifyOrganizationRequestPreferences(
10753
10770
  OrganizationCreateOrganizationRequestPreferences
10754
10771
  ):
10755
10772
  pass
10756
10773
 
10757
10774
 
10758
- class OrganizationModifyOrganizationRequestUserDimension(BaseModel):
10759
- description: str = Field(..., min_length=1)
10760
- tags: list[PydanticBaseModelStrippedNonemptyString1] = Field(..., title='Tags')
10761
-
10762
-
10763
10775
  class RoleAssignRoleRequest(BaseModel):
10764
10776
  user_id: str = Field(
10765
10777
  ...,
@@ -11363,6 +11375,22 @@ class ToolGetToolsResponseFilterValues(BaseModel):
11363
11375
  )
11364
11376
 
11365
11377
 
11378
+ class InvocationMode(Enum):
11379
+ regular = 'regular'
11380
+ conversation_simulation = 'conversation-simulation'
11381
+
11382
+
11383
+ class ToolInvokeToolVersionRequestInput(BaseModel):
11384
+ input_parameters: dict[str, Any] = Field(
11385
+ ...,
11386
+ description='The input parameters for the tool invocation.',
11387
+ title='Input Parameters',
11388
+ )
11389
+ invocation_mode: InvocationMode = Field(
11390
+ ..., description='The mode of invocation.', title='Invocation Mode'
11391
+ )
11392
+
11393
+
11366
11394
  class ToolModifyToolRequest(BaseModel):
11367
11395
  description: PydanticBaseModelStrippedNonemptyString1 | None = Field(
11368
11396
  None, description='A description of this tool. Only updates if not-null.'
@@ -11407,19 +11435,34 @@ class ToolPublishToolVersionResponse(BaseModel):
11407
11435
  )
11408
11436
 
11409
11437
 
11410
- class InvocationMode(Enum):
11411
- regular = 'regular'
11412
- conversation_simulation = 'conversation-simulation'
11413
-
11414
-
11415
- class ToolTestToolRequestInput(BaseModel):
11416
- input_parameters: dict[str, Any] = Field(
11438
+ class ToolTestToolRequest(BaseModel):
11439
+ inputs: list[ToolInvokeToolVersionRequestInput] = Field(
11417
11440
  ...,
11418
- description='The input parameters for the tool invocation.',
11419
- title='Input Parameters',
11441
+ description='The list of inputs for the tool invocation.',
11442
+ max_length=10,
11443
+ min_length=1,
11444
+ title='Inputs',
11420
11445
  )
11421
- invocation_mode: InvocationMode = Field(
11422
- ..., description='The mode of invocation.', title='Invocation Mode'
11446
+ commit_branch: str = Field(
11447
+ ...,
11448
+ description='The branch in the tools repo whose tip will be tested.',
11449
+ title='Commit Branch',
11450
+ )
11451
+ project_path: str = Field(
11452
+ ...,
11453
+ description='The directory in the tools repo that contains the `pyproject.toml` file corresponding to the tool version to publish.',
11454
+ pattern='^[-\\w\\d_/]+$',
11455
+ title='Project Path',
11456
+ )
11457
+ required_envvars: dict[str, str] = Field(
11458
+ ...,
11459
+ description='The environment variables required for the tool to run.',
11460
+ title='Required Envvars',
11461
+ )
11462
+ required_secret_envvars: dict[str, str] = Field(
11463
+ ...,
11464
+ description='The secret environment variables required for the tool to run.',
11465
+ title='Required Secret Envvars',
11423
11466
  )
11424
11467
 
11425
11468
 
@@ -11489,7 +11532,7 @@ class UserGetMemoriesResponse(BaseModel):
11489
11532
  )
11490
11533
 
11491
11534
 
11492
- class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11535
+ class UserSearchUsersResponseUserInstanceUserStats(BaseModel):
11493
11536
  num_conversations: int = Field(
11494
11537
  ...,
11495
11538
  description='The number of conversations the user has created.',
@@ -11507,31 +11550,6 @@ class UserGetUsersResponseUserInstanceUserStats(BaseModel):
11507
11550
  )
11508
11551
 
11509
11552
 
11510
- class UserSearchUsersResponseUserInstance(BaseModel):
11511
- org_id: str = Field(
11512
- ...,
11513
- description='The ID of the organization that this user belongs to.',
11514
- title='Org Id',
11515
- )
11516
- user_id: str = Field(
11517
- ..., description='The identifier of the user.', title='User Id'
11518
- )
11519
- first_name: str = Field(
11520
- ..., description='The first name of the user.', title='First Name'
11521
- )
11522
- last_name: str = Field(
11523
- ..., description='The last name of the user.', title='Last Name'
11524
- )
11525
- email: str = Field(..., description='Email of the user.', title='Email')
11526
- user_stats: UserGetUsersResponseUserInstanceUserStats = Field(
11527
- ..., description="Statistics about the user's usage of the Amigo platform."
11528
- )
11529
- role: str = Field(..., description='The ID of the role of the user.', title='Role')
11530
- preferences: MongoCollectionsUserUserPreferences = Field(
11531
- ..., description='The preferences of the user.'
11532
- )
11533
-
11534
-
11535
11553
  class UserSignInWithApiKeyResponse(BaseModel):
11536
11554
  id_token: str = Field(
11537
11555
  ...,
@@ -11941,7 +11959,7 @@ class GetConversationMessagesParametersQuery(BaseModel):
11941
11959
  title='Id',
11942
11960
  )
11943
11961
  message_type: list[MessageType] | None = Field(
11944
- ['agent-message', 'external-event', 'user-message'],
11962
+ ['agent-message', 'user-message', 'external-event'],
11945
11963
  description='The type of messages to retrieve.',
11946
11964
  title='Message Type',
11947
11965
  )
@@ -13604,7 +13622,7 @@ class ServiceInstance(BaseModel):
13604
13622
  agent_id: str = Field(
13605
13623
  ..., description='The ID of the agent that this service uses.', title='Agent Id'
13606
13624
  )
13607
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13625
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
13608
13626
  ..., description='The tags of the service.', title='Tags'
13609
13627
  )
13610
13628
 
@@ -13657,7 +13675,7 @@ class SimulationUnitTestSet(BaseModel):
13657
13675
  description='Whether the unit test set has been deleted.',
13658
13676
  title='Is Deleted',
13659
13677
  )
13660
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13678
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
13661
13679
  ..., description='The tags of the simulation unit test set.', title='Tags'
13662
13680
  )
13663
13681
  creator: MongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -13694,7 +13712,7 @@ class SimulationUnitTestSetInstance(BaseModel):
13694
13712
  description='Whether the unit test set has been deleted.',
13695
13713
  title='Is Deleted',
13696
13714
  )
13697
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13715
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
13698
13716
  ..., description='The tags of the simulation unit test set.', title='Tags'
13699
13717
  )
13700
13718
  creator: MongoCollectionsSimulationUnitTestSetSimulationUnitTestSetUserInfo
@@ -13822,7 +13840,7 @@ class ToolInstance(BaseModel):
13822
13840
  description='A list of encrypted environment variables that some versions of this tool uses.',
13823
13841
  title='Secret Envvars',
13824
13842
  )
13825
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
13843
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
13826
13844
  ..., description='The tags of the simulation persona.', title='Tags'
13827
13845
  )
13828
13846
 
@@ -13837,7 +13855,7 @@ class ToolVersionInstance(BaseModel):
13837
13855
  description='The ID of the tool that this version belongs to.',
13838
13856
  title='Tool Id',
13839
13857
  )
13840
- version: MongoCollectionsToolVersionToolVersionVersion = Field(
13858
+ version: MongoCollectionsToolInvocationToolInvocationVersion = Field(
13841
13859
  ..., description='The version of the tool.'
13842
13860
  )
13843
13861
  required_envvars: list[str] = Field(
@@ -14197,7 +14215,7 @@ class OrganizationCreateOrganizationRequest(BaseModel):
14197
14215
  description='Additional descriptions of the services offered by this organization that is displayed below `main_description` in a smaller font.',
14198
14216
  min_length=1,
14199
14217
  )
14200
- user_dimensions: list[OrganizationModifyOrganizationRequestUserDimension] = Field(
14218
+ user_dimensions: list[OrganizationCreateOrganizationRequestUserDimension] = Field(
14201
14219
  ...,
14202
14220
  description='User dimensions for the organization.',
14203
14221
  title='User Dimensions',
@@ -14367,17 +14385,6 @@ class OrganizationGetApiKeysResponse(BaseModel):
14367
14385
  )
14368
14386
 
14369
14387
 
14370
- class UserDimensions(
14371
- RootModel[list[OrganizationModifyOrganizationRequestUserDimension]]
14372
- ):
14373
- root: list[OrganizationModifyOrganizationRequestUserDimension] = Field(
14374
- ...,
14375
- description='User dimensions for the organization. If not set or `null`, this field is not updated.',
14376
- min_length=1,
14377
- title='User Dimensions',
14378
- )
14379
-
14380
-
14381
14388
  class OrganizationModifyOrganizationRequest(BaseModel):
14382
14389
  title: PydanticBaseModelStrippedNonemptyString1 | None = Field(
14383
14390
  None,
@@ -14698,7 +14705,7 @@ class ToolGetToolsResponse(BaseModel):
14698
14705
 
14699
14706
 
14700
14707
  class ToolInvokeToolVersionRequest(BaseModel):
14701
- inputs: list[ToolTestToolRequestInput] = Field(
14708
+ inputs: list[ToolInvokeToolVersionRequestInput] = Field(
14702
14709
  ...,
14703
14710
  description='The list of inputs for the tool invocation.',
14704
14711
  max_length=10,
@@ -14722,37 +14729,6 @@ class ToolModifyToolEnvvarsRequest(BaseModel):
14722
14729
  deletes: list[DeleteRequest] | None = Field(default_factory=list, title='Deletes')
14723
14730
 
14724
14731
 
14725
- class ToolTestToolRequest(BaseModel):
14726
- inputs: list[ToolTestToolRequestInput] = Field(
14727
- ...,
14728
- description='The list of inputs for the tool invocation.',
14729
- max_length=10,
14730
- min_length=1,
14731
- title='Inputs',
14732
- )
14733
- commit_branch: str = Field(
14734
- ...,
14735
- description='The branch in the tools repo whose tip will be tested.',
14736
- title='Commit Branch',
14737
- )
14738
- project_path: str = Field(
14739
- ...,
14740
- description='The directory in the tools repo that contains the `pyproject.toml` file corresponding to the tool version to publish.',
14741
- pattern='^[-\\w\\d_/]+$',
14742
- title='Project Path',
14743
- )
14744
- required_envvars: dict[str, str] = Field(
14745
- ...,
14746
- description='The environment variables required for the tool to run.',
14747
- title='Required Envvars',
14748
- )
14749
- required_secret_envvars: dict[str, str] = Field(
14750
- ...,
14751
- description='The secret environment variables required for the tool to run.',
14752
- title='Required Secret Envvars',
14753
- )
14754
-
14755
-
14756
14732
  class ToolTestToolResponse(ToolInvokeToolVersionResponse):
14757
14733
  pass
14758
14734
 
@@ -14794,23 +14770,28 @@ class UserGetUserModelResponse(BaseModel):
14794
14770
  )
14795
14771
 
14796
14772
 
14797
- class UserGetUsersResponse(BaseModel):
14798
- users: list[UserSearchUsersResponseUserInstance] = Field(
14799
- ..., description='Users in this organization.', title='Users'
14773
+ class UserSearchUsersResponseUserInstance(BaseModel):
14774
+ org_id: str = Field(
14775
+ ...,
14776
+ description='The ID of the organization that this user belongs to.',
14777
+ title='Org Id',
14800
14778
  )
14801
- has_more: bool = Field(
14802
- ..., description='Whether there are more users to retrieve.', title='Has More'
14779
+ user_id: str = Field(
14780
+ ..., description='The identifier of the user.', title='User Id'
14803
14781
  )
14804
- continuation_token: int | None = Field(
14805
- ...,
14806
- description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
14807
- title='Continuation Token',
14782
+ first_name: str = Field(
14783
+ ..., description='The first name of the user.', title='First Name'
14808
14784
  )
14809
-
14810
-
14811
- class UserSearchUsersResponse(BaseModel):
14812
- users: list[UserSearchUsersResponseUserInstance] = Field(
14813
- ..., description='Users in this organization.', title='Users'
14785
+ last_name: str = Field(
14786
+ ..., description='The last name of the user.', title='Last Name'
14787
+ )
14788
+ email: str = Field(..., description='Email of the user.', title='Email')
14789
+ user_stats: UserSearchUsersResponseUserInstanceUserStats = Field(
14790
+ ..., description="Statistics about the user's usage of the Amigo platform."
14791
+ )
14792
+ role: str = Field(..., description='The ID of the role of the user.', title='Role')
14793
+ preferences: MongoCollectionsUserUserPreferences = Field(
14794
+ ..., description='The preferences of the user.'
14814
14795
  )
14815
14796
 
14816
14797
 
@@ -14949,7 +14930,7 @@ class Metric(BaseModel):
14949
14930
  additional_notes: str | None = Field(
14950
14931
  ..., description='Additional notes about the metric.', title='Additional Notes'
14951
14932
  )
14952
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
14933
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
14953
14934
  ..., description='The tags of the metric.', title='Tags'
14954
14935
  )
14955
14936
  creator: MongoCollectionsMetricMetricUserInfo = Field(
@@ -15022,7 +15003,7 @@ class MetricInstance(BaseModel):
15022
15003
  additional_notes: str | None = Field(
15023
15004
  ..., description='Additional notes about the metric.', title='Additional Notes'
15024
15005
  )
15025
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15006
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
15026
15007
  ..., description='The tags of the metric.', title='Tags'
15027
15008
  )
15028
15009
  creator: MongoCollectionsMetricMetricUserInfo = Field(
@@ -15118,7 +15099,7 @@ class SimulationUnitTest(BaseModel):
15118
15099
  is_deleted: bool = Field(
15119
15100
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15120
15101
  )
15121
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15102
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
15122
15103
  ..., description='The tags of the simulation persona.', title='Tags'
15123
15104
  )
15124
15105
  creator: MongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -15163,7 +15144,7 @@ class SimulationUnitTestInstance(BaseModel):
15163
15144
  is_deleted: bool = Field(
15164
15145
  ..., description='Whether the unit test has been deleted.', title='Is Deleted'
15165
15146
  )
15166
- tags: list[MongoCollectionsSimulationUnitTestSimulationUnitTestTag] = Field(
15147
+ tags: list[MongoCollectionsServiceServiceTag] = Field(
15167
15148
  ..., description='The tags of the simulation persona.', title='Tags'
15168
15149
  )
15169
15150
  creator: MongoCollectionsSimulationUnitTestSimulationUnitTestUserInfo
@@ -15617,11 +15598,31 @@ class ToolSearchToolInvocationsResponseToolInvocationInstance(BaseModel):
15617
15598
  tool_id: str = Field(
15618
15599
  ..., description='The ID of the tool that was invoked.', title='Tool Id'
15619
15600
  )
15620
- tool_version: MongoCollectionsToolVersionToolVersionVersion = Field(
15601
+ tool_version: MongoCollectionsToolInvocationToolInvocationVersion = Field(
15621
15602
  ..., description='The version of the tool that was invoked.'
15622
15603
  )
15623
15604
 
15624
15605
 
15606
+ class UserGetUsersResponse(BaseModel):
15607
+ users: list[UserSearchUsersResponseUserInstance] = Field(
15608
+ ..., description='Users in this organization.', title='Users'
15609
+ )
15610
+ has_more: bool = Field(
15611
+ ..., description='Whether there are more users to retrieve.', title='Has More'
15612
+ )
15613
+ continuation_token: int | None = Field(
15614
+ ...,
15615
+ description='A token to supply to the next request to retrieve the next page of users. Only populated if `has_more` is `True`.',
15616
+ title='Continuation Token',
15617
+ )
15618
+
15619
+
15620
+ class UserSearchUsersResponse(BaseModel):
15621
+ users: list[UserSearchUsersResponseUserInstance] = Field(
15622
+ ..., description='Users in this organization.', title='Users'
15623
+ )
15624
+
15625
+
15625
15626
  class ServiceHierarchicalStateMachineInstance(BaseModel):
15626
15627
  id: str = Field(..., description='The ID of the state machine version.', title='Id')
15627
15628
  org_id: str = Field(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.102.0
3
+ Version: 0.104.0
4
4
  Summary: Amigo AI Python SDK
5
5
  Author: Amigo AI
6
6
  License-File: LICENSE
@@ -2,7 +2,7 @@ scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  scripts/aliases.json,sha256=c1_bkZyvNDQ8iMrKtUuZQqdP87GdLnRPrb3wjX533eQ,322
3
3
  scripts/check.py,sha256=ikFavw1IjX51FNjO-kIzXjYdep3on0dKZHYvPElPFtc,2872
4
4
  scripts/gen_models.py,sha256=c4J_gHYQIBL3CcKg5z8oUusLvPePytfvLdZ7STHBcNk,3553
5
- amigo_sdk/__init__.py,sha256=ixE1KvxMPLHcN32FvrfCrXNnwjLtlKINSUkicXOP6Sg,140
5
+ amigo_sdk/__init__.py,sha256=iolFD9HiwaCApwA9XPByWngpt0x-TKchVyAi54_jF9g,140
6
6
  amigo_sdk/_retry_utils.py,sha256=VbA_Uwv268J80d11R9XfnCjZiV-NwE1aXRsSlRjjRio,2108
7
7
  amigo_sdk/auth.py,sha256=WaM9PcEcnaC6CzNsgRKueHkdSAxNbRylzpR_3Q6guQ0,1765
8
8
  amigo_sdk/config.py,sha256=0eZIo-hcJ8ODftKAr-mwB-FGJxGO5PT5T4dRpyWPqAg,1491
@@ -10,13 +10,13 @@ amigo_sdk/errors.py,sha256=Yn12AxIQ6zE9jnGLWO0MUVbBsmw77Kzh82AijyreOkA,4818
10
10
  amigo_sdk/http_client.py,sha256=tfMXHqMTmlz2ja7aJhOVgbwAiJNlKCzPcK4UGNqXHO8,13488
11
11
  amigo_sdk/models.py,sha256=V-G6iL43_ZNOPDcatCJCSszGWGz-nzp_RSyGNm-rBAc,45
12
12
  amigo_sdk/sdk_client.py,sha256=5nj8hzjHSFRs9JMNabdYIhQAcFE2G1jI_r7SHVGr9No,6106
13
- amigo_sdk/generated/model.py,sha256=xJ2NaRKchd1YfaOpK1ZAfob9FEh069SJgFlU7Eoxefs,442821
13
+ amigo_sdk/generated/model.py,sha256=bCMB3cgF9NlJMhN1FB30GFMOUDHKDOpMKLz58TirWxE,442696
14
14
  amigo_sdk/resources/conversation.py,sha256=X47PbPA6NqdkqXgxAPOjlO1E0W7t695tn1tPWSikMOk,14807
15
15
  amigo_sdk/resources/organization.py,sha256=yX4UlOHNegRzFW4gCJrCxjiLCAGnGegasjviR1yad_Q,1211
16
16
  amigo_sdk/resources/service.py,sha256=t1iA3nS9co-wuR-x5jBhAXXTWfMeGsLwfQcLycwVrCA,1536
17
17
  amigo_sdk/resources/user.py,sha256=P14lN-3fmIvELUjn_vpSaYpNsK-xd8zNmUV_KfcZPAU,4138
18
- amigo_sdk-0.102.0.dist-info/METADATA,sha256=kMVedcC1hG-TID0TkvUc1lrRzScITRWCzSmHKoW6jQY,8500
19
- amigo_sdk-0.102.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
20
- amigo_sdk-0.102.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
21
- amigo_sdk-0.102.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
22
- amigo_sdk-0.102.0.dist-info/RECORD,,
18
+ amigo_sdk-0.104.0.dist-info/METADATA,sha256=OmL3cpSgmbOHoaG39xbqN263nnr4t3nhQ05IvFDP9WI,8500
19
+ amigo_sdk-0.104.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
20
+ amigo_sdk-0.104.0.dist-info/entry_points.txt,sha256=ivKZ8S9W6SH796zUDHeM-qHodrwmkmUItophi-jJWK0,82
21
+ amigo_sdk-0.104.0.dist-info/licenses/LICENSE,sha256=tx3FiTVbGxwBUOxQbNh05AAQlC2jd5hGvNpIkSfVbCo,1062
22
+ amigo_sdk-0.104.0.dist-info/RECORD,,