Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 8 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ koyeb/api/docs/ActivityApi.md
koyeb/api/docs/ActivityList.md
koyeb/api/docs/App.md
koyeb/api/docs/AppEvent.md
koyeb/api/docs/AppLifeCycle.md
koyeb/api/docs/AppListItem.md
koyeb/api/docs/AppStatus.md
koyeb/api/docs/AppUsage.md
Expand Down Expand Up @@ -385,6 +386,7 @@ koyeb/api/docs/SecretsApi.md
koyeb/api/docs/SecretsSummary.md
koyeb/api/docs/Service.md
koyeb/api/docs/ServiceEvent.md
koyeb/api/docs/ServiceLifeCycle.md
koyeb/api/docs/ServiceListItem.md
koyeb/api/docs/ServiceState.md
koyeb/api/docs/ServiceStatus.md
Expand Down Expand Up @@ -420,6 +422,8 @@ koyeb/api/docs/UpdateBudgetRequest.md
koyeb/api/docs/UpdateCredentialReply.md
koyeb/api/docs/UpdateDomain.md
koyeb/api/docs/UpdateDomainReply.md
koyeb/api/docs/UpdateOrganizationNameReply.md
koyeb/api/docs/UpdateOrganizationNameRequest.md
koyeb/api/docs/UpdateOrganizationPlanReply.md
koyeb/api/docs/UpdateOrganizationPlanRequest.md
koyeb/api/docs/UpdateOrganizationReply.md
Expand Down Expand Up @@ -455,6 +459,7 @@ koyeb/api/models/activity.py
koyeb/api/models/activity_list.py
koyeb/api/models/app.py
koyeb/api/models/app_event.py
koyeb/api/models/app_life_cycle.py
koyeb/api/models/app_list_item.py
koyeb/api/models/app_status.py
koyeb/api/models/app_usage.py
Expand Down Expand Up @@ -756,6 +761,7 @@ koyeb/api/models/secret_type.py
koyeb/api/models/secrets_summary.py
koyeb/api/models/service.py
koyeb/api/models/service_event.py
koyeb/api/models/service_life_cycle.py
koyeb/api/models/service_list_item.py
koyeb/api/models/service_state.py
koyeb/api/models/service_status.py
Expand Down Expand Up @@ -785,6 +791,8 @@ koyeb/api/models/update_budget_request.py
koyeb/api/models/update_credential_reply.py
koyeb/api/models/update_domain.py
koyeb/api/models/update_domain_reply.py
koyeb/api/models/update_organization_name_reply.py
koyeb/api/models/update_organization_name_request.py
koyeb/api/models/update_organization_plan_reply.py
koyeb/api/models/update_organization_plan_request.py
koyeb/api/models/update_organization_reply.py
Expand Down
2 changes: 1 addition & 1 deletion .openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.17.0-SNAPSHOT
7.18.0-SNAPSHOT
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ PACKAGE_VERSION?=1.2.2
.PHONY: gen-api-client
gen-api-client:
docker run --rm -v `pwd`/spec:/spec -v `pwd`:/builder openapitools/openapi-generator-cli:${OPENAPI_GENERATOR_VERSION} generate --git-user-id ${GIT_USER_ID} --git-repo-id ${GIT_REPO_ID} -i /spec/openapi.json -g python -o /builder --package-name koyeb.api --additional-properties packageVersion=${PACKAGE_VERSION} --additional-properties licenseInfo="Apache-2.0" --additional-properties generateSourceCodeOnly=true
git checkout -- koyeb/__init__.py


.PHONY: gen-docs
Expand All @@ -17,7 +18,7 @@ gen-docs:

.PHONY: format
format:
black koyeb test
black koyeb

.PHONY: fetch-spec
fetch-spec:
Expand Down
879 changes: 659 additions & 220 deletions koyeb/api/__init__.py

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion koyeb/api/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@
from koyeb.api.api.invite_api import InviteApi
from koyeb.api.api.organization_api import OrganizationApi
from koyeb.api.api.sso_api import SsoApi

Loading