amigo_sdk 0.1.1__tar.gz → 0.3.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.
Potentially problematic release.
This version of amigo_sdk might be problematic. Click here for more details.
- amigo_sdk-0.3.0/.github/workflows/auto-release.yml +18 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/.github/workflows/release.yml +12 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/PKG-INFO +1 -1
- amigo_sdk-0.3.0/src/amigo_sdk/__init__.py +1 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/generated/model.py +1 -1
- amigo_sdk-0.1.1/src/amigo_sdk/__init__.py +0 -1
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/.github/workflows/test.yml +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/.gitignore +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/CONTRIBUTING.md +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/LICENSE +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/README.md +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/pyproject.toml +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/scripts/__init__.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/scripts/aliases.json +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/scripts/check.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/scripts/gen_models.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/auth.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/config.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/errors.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/http_client.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/resources/conversation.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/resources/organization.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/resources/service.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/resources/user.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/src/amigo_sdk/sdk_client.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/__init__.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/conftest.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/integration/test_conversation_integration.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/integration/test_organization_integration.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/integration/test_user_integration.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/__init__.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/helpers.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/test_conversation.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/test_organization.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/test_service.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/resources/test_user.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/test_auth.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/test_config.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/test_errors.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.0}/tests/test_http_client.py +0 -0
- {amigo_sdk-0.1.1 → amigo_sdk-0.3.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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.0"
|
|
@@ -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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|