amigo_sdk 0.1.1__tar.gz → 0.2.0__tar.gz

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.
Files changed (41) hide show
  1. amigo_sdk-0.2.0/.github/workflows/auto-release.yml +18 -0
  2. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/.github/workflows/release.yml +12 -0
  3. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/PKG-INFO +1 -1
  4. amigo_sdk-0.2.0/src/amigo_sdk/__init__.py +1 -0
  5. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/generated/model.py +1 -1
  6. amigo_sdk-0.1.1/src/amigo_sdk/__init__.py +0 -1
  7. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/.github/workflows/test.yml +0 -0
  8. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/.gitignore +0 -0
  9. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/CONTRIBUTING.md +0 -0
  10. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/LICENSE +0 -0
  11. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/README.md +0 -0
  12. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/pyproject.toml +0 -0
  13. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/scripts/__init__.py +0 -0
  14. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/scripts/aliases.json +0 -0
  15. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/scripts/check.py +0 -0
  16. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/scripts/gen_models.py +0 -0
  17. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/auth.py +0 -0
  18. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/config.py +0 -0
  19. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/errors.py +0 -0
  20. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/http_client.py +0 -0
  21. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/resources/conversation.py +0 -0
  22. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/resources/organization.py +0 -0
  23. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/resources/service.py +0 -0
  24. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/resources/user.py +0 -0
  25. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/src/amigo_sdk/sdk_client.py +0 -0
  26. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/__init__.py +0 -0
  27. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/conftest.py +0 -0
  28. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/integration/test_conversation_integration.py +0 -0
  29. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/integration/test_organization_integration.py +0 -0
  30. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/integration/test_user_integration.py +0 -0
  31. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/__init__.py +0 -0
  32. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/helpers.py +0 -0
  33. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/test_conversation.py +0 -0
  34. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/test_organization.py +0 -0
  35. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/test_service.py +0 -0
  36. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/resources/test_user.py +0 -0
  37. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/test_auth.py +0 -0
  38. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/test_config.py +0 -0
  39. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/test_errors.py +0 -0
  40. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/test_http_client.py +0 -0
  41. {amigo_sdk-0.1.1 → amigo_sdk-0.2.0}/tests/test_sdk_client.py +0 -0
@@ -0,0 +1,18 @@
1
+ name: Auto Release (Backend API changes)
2
+
3
+ on:
4
+ repository_dispatch:
5
+ types: [openapi-updated]
6
+
7
+ permissions:
8
+ contents: write
9
+
10
+ jobs:
11
+ release-on-dispatch:
12
+ name: Trigger SDK release (minor)
13
+ uses: ./.github/workflows/release.yml
14
+ with:
15
+ version_type: minor
16
+ # Allow optional dry runs via client payload: { "dry_run": true }
17
+ dry_run: ${{ github.event.client_payload.dry_run == true }}
18
+ secrets: inherit
@@ -17,6 +17,18 @@ on:
17
17
  required: false
18
18
  default: false
19
19
  type: boolean
20
+ workflow_call:
21
+ inputs:
22
+ version_type:
23
+ description: "Version increment type (patch|minor|major)"
24
+ required: true
25
+ type: string
26
+ default: "patch"
27
+ dry_run:
28
+ description: "Dry run (skip upload)"
29
+ required: false
30
+ type: boolean
31
+ default: false
20
32
 
21
33
  permissions:
22
34
  contents: write
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amigo_sdk
3
- Version: 0.1.1
3
+ Version: 0.2.0
4
4
  Summary: Amigo AI Python SDK
5
5
  Author: Amigo AI
6
6
  License-File: LICENSE
@@ -0,0 +1 @@
1
+ __version__ = "0.2.0"
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: <stdin>
3
- # timestamp: 2025-08-21T11:46:17+00:00
3
+ # timestamp: 2025-08-21T13:41:15+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -1 +0,0 @@
1
- __version__ = "0.1.1"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes