Skip to content

Commit d564719

Browse files
authored
[create-pull-request] automated change
1 parent 4a2c0ed commit d564719

39 files changed

+10084
-7806
lines changed

.openapi-generator/FILES

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ docs/CatalogInstanceUsageApi.md
3636
docs/CatalogInstancesApi.md
3737
docs/CatalogRegionsApi.md
3838
docs/CatalogUsage.md
39+
docs/ClearIdenfyVerificationResultRequest.md
3940
docs/ComposeApi.md
4041
docs/ComposeReply.md
4142
docs/ConfigFile.md
@@ -175,6 +176,7 @@ docs/GetServiceReply.md
175176
docs/GetSnapshotReply.md
176177
docs/GetSubscriptionReply.md
177178
docs/GetUserOrganizationInvitationReply.md
179+
docs/GetUserSettingsReply.md
178180
docs/GitDeploymentMetadata.md
179181
docs/GitEnvDeploymentMetadata.md
180182
docs/GitHubRegistryConfiguration.md
@@ -383,6 +385,8 @@ docs/UpdateServiceReply.md
383385
docs/UpdateSnapshotReply.md
384386
docs/UpdateSnapshotRequest.md
385387
docs/UpdateUserRequestUserUpdateBody.md
388+
docs/UpdateUserSettingsReply.md
389+
docs/UpdateUserSettingsRequest.md
386390
docs/UpsertSignupQualificationReply.md
387391
docs/UpsertSignupQualificationRequest.md
388392
docs/Usage.md
@@ -392,6 +396,7 @@ docs/User.md
392396
docs/UserFlags.md
393397
docs/UserReply.md
394398
docs/UserRoleRole.md
399+
docs/UserSettings.md
395400
docs/UsersApi.md
396401
docs/VerifyDockerImageReply.md
397402
docs/VerifyDockerImageReplyErrCode.md
@@ -470,6 +475,7 @@ koyeb/models/catalog_gpu_details.py
470475
koyeb/models/catalog_instance.py
471476
koyeb/models/catalog_instance_list_item.py
472477
koyeb/models/catalog_usage.py
478+
koyeb/models/clear_idenfy_verification_result_request.py
473479
koyeb/models/compose_reply.py
474480
koyeb/models/config_file.py
475481
koyeb/models/confirm_payment_authorization_reply.py
@@ -603,6 +609,7 @@ koyeb/models/get_service_reply.py
603609
koyeb/models/get_snapshot_reply.py
604610
koyeb/models/get_subscription_reply.py
605611
koyeb/models/get_user_organization_invitation_reply.py
612+
koyeb/models/get_user_settings_reply.py
606613
koyeb/models/git_deployment_metadata.py
607614
koyeb/models/git_env_deployment_metadata.py
608615
koyeb/models/git_hub_registry_configuration.py
@@ -786,6 +793,8 @@ koyeb/models/update_service_reply.py
786793
koyeb/models/update_snapshot_reply.py
787794
koyeb/models/update_snapshot_request.py
788795
koyeb/models/update_user_request_user_update_body.py
796+
koyeb/models/update_user_settings_reply.py
797+
koyeb/models/update_user_settings_request.py
789798
koyeb/models/upsert_signup_qualification_reply.py
790799
koyeb/models/upsert_signup_qualification_request.py
791800
koyeb/models/usage.py
@@ -794,6 +803,7 @@ koyeb/models/user.py
794803
koyeb/models/user_flags.py
795804
koyeb/models/user_reply.py
796805
koyeb/models/user_role_role.py
806+
koyeb/models/user_settings.py
797807
koyeb/models/verify_docker_image_reply.py
798808
koyeb/models/verify_docker_image_reply_err_code.py
799809
koyeb/py.typed
@@ -838,6 +848,7 @@ test/test_catalog_instance_usage_api.py
838848
test/test_catalog_instances_api.py
839849
test/test_catalog_regions_api.py
840850
test/test_catalog_usage.py
851+
test/test_clear_idenfy_verification_result_request.py
841852
test/test_compose_api.py
842853
test/test_compose_reply.py
843854
test/test_config_file.py
@@ -977,6 +988,7 @@ test/test_get_service_reply.py
977988
test/test_get_snapshot_reply.py
978989
test/test_get_subscription_reply.py
979990
test/test_get_user_organization_invitation_reply.py
991+
test/test_get_user_settings_reply.py
980992
test/test_git_deployment_metadata.py
981993
test/test_git_env_deployment_metadata.py
982994
test/test_git_hub_registry_configuration.py
@@ -1185,6 +1197,8 @@ test/test_update_service_reply.py
11851197
test/test_update_snapshot_reply.py
11861198
test/test_update_snapshot_request.py
11871199
test/test_update_user_request_user_update_body.py
1200+
test/test_update_user_settings_reply.py
1201+
test/test_update_user_settings_request.py
11881202
test/test_upsert_signup_qualification_reply.py
11891203
test/test_upsert_signup_qualification_request.py
11901204
test/test_usage.py
@@ -1194,6 +1208,7 @@ test/test_user.py
11941208
test/test_user_flags.py
11951209
test/test_user_reply.py
11961210
test/test_user_role_role.py
1211+
test/test_user_settings.py
11971212
test/test_users_api.py
11981213
test/test_verify_docker_image_reply.py
11991214
test/test_verify_docker_image_reply_err_code.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ TEST_OPTS=-v -test.timeout 300s
33
GIT_USER_ID?=koyeb
44
GIT_REPO_ID?=koyeb-api-client-python
55
OPENAPI_GENERATOR_VERSION?=latest
6-
PACKAGE_VERSION?=2025.7.0
6+
PACKAGE_VERSION?=2025.8.0
77

88

99
.PHONY: gen

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The Koyeb API allows you to interact with the Koyeb platform in a simple, progra
55
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
66

77
- API version: 1.0.0
8-
- Package version: 2025.7.0
8+
- Package version: 2025.8.0
99
- Generator version: 7.14.0
1010
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1111

@@ -161,12 +161,14 @@ Class | Method | HTTP request | Description
161161
*PersistentVolumesApi* | [**list_persistent_volumes**](docs/PersistentVolumesApi.md#list_persistent_volumes) | **GET** /v1/volumes | List all PersistentVolumes
162162
*PersistentVolumesApi* | [**update_persistent_volume**](docs/PersistentVolumesApi.md#update_persistent_volume) | **POST** /v1/volumes/{id} | Update a PersistentVolume
163163
*ProfileApi* | [**accept_organization_invitation**](docs/ProfileApi.md#accept_organization_invitation) | **POST** /v1/account/organization_invitations/{id}/accept | Accept Organization Invitation
164+
*ProfileApi* | [**clear_idenfy_verification_result**](docs/ProfileApi.md#clear_idenfy_verification_result) | **POST** /v1/account/idenfy | ClearIdenfyVerificationResult marks the current result for idenfy as superseded
164165
*ProfileApi* | [**decline_organization_invitation**](docs/ProfileApi.md#decline_organization_invitation) | **POST** /v1/account/organization_invitations/{id}/decline | Decline Organization Invitation
165166
*ProfileApi* | [**get_current_organization**](docs/ProfileApi.md#get_current_organization) | **GET** /v1/account/organization | Get Current Organization
166167
*ProfileApi* | [**get_current_user**](docs/ProfileApi.md#get_current_user) | **GET** /v1/account/profile | Get Current User
167168
*ProfileApi* | [**get_idenfy_token**](docs/ProfileApi.md#get_idenfy_token) | **GET** /v1/account/idenfy | Begin a session with iDenfy, emit an authToken
168169
*ProfileApi* | [**get_o_auth_options**](docs/ProfileApi.md#get_o_auth_options) | **GET** /v1/account/oauth | Get OAuth Providers
169170
*ProfileApi* | [**get_user_organization_invitation**](docs/ProfileApi.md#get_user_organization_invitation) | **GET** /v1/account/organization_invitations/{id} | Get User Organization Invitation
171+
*ProfileApi* | [**get_user_settings**](docs/ProfileApi.md#get_user_settings) | **GET** /v1/account/settings |
170172
*ProfileApi* | [**list_user_organization_invitations**](docs/ProfileApi.md#list_user_organization_invitations) | **GET** /v1/account/organization_invitations | List User Organization Invitations
171173
*ProfileApi* | [**list_user_organizations**](docs/ProfileApi.md#list_user_organizations) | **GET** /v1/account/organizations | List User Organizations
172174
*ProfileApi* | [**o_auth_callback**](docs/ProfileApi.md#o_auth_callback) | **POST** /v1/account/oauth | Authenticate using OAuth
@@ -176,6 +178,7 @@ Class | Method | HTTP request | Description
176178
*ProfileApi* | [**update_password**](docs/ProfileApi.md#update_password) | **POST** /v1/account/update_password | Update Password
177179
*ProfileApi* | [**update_user**](docs/ProfileApi.md#update_user) | **PUT** /v1/account/profile | Update User
178180
*ProfileApi* | [**update_user2**](docs/ProfileApi.md#update_user2) | **PATCH** /v1/account/profile | Update User
181+
*ProfileApi* | [**update_user_settings**](docs/ProfileApi.md#update_user_settings) | **PATCH** /v1/account/settings |
179182
*ProfileApi* | [**validate**](docs/ProfileApi.md#validate) | **POST** /v1/account/validate/{id} | Validate
180183
*ProvisioningApi* | [**create_stage_attempt**](docs/ProvisioningApi.md#create_stage_attempt) | **POST** /v1/provisioning/{deployment_id}/status/{stage}/{attempt} | Create an attempt for a stage
181184
*ProvisioningApi* | [**declare_stage_progress**](docs/ProvisioningApi.md#declare_stage_progress) | **PATCH** /v1/provisioning/{deployment_id}/status/{stage}/{attempt} | Declare stage progress
@@ -276,6 +279,7 @@ Class | Method | HTTP request | Description
276279
- [CatalogInstance](docs/CatalogInstance.md)
277280
- [CatalogInstanceListItem](docs/CatalogInstanceListItem.md)
278281
- [CatalogUsage](docs/CatalogUsage.md)
282+
- [ClearIdenfyVerificationResultRequest](docs/ClearIdenfyVerificationResultRequest.md)
279283
- [ComposeReply](docs/ComposeReply.md)
280284
- [ConfigFile](docs/ConfigFile.md)
281285
- [ConfirmPaymentAuthorizationReply](docs/ConfirmPaymentAuthorizationReply.md)
@@ -409,6 +413,7 @@ Class | Method | HTTP request | Description
409413
- [GetSnapshotReply](docs/GetSnapshotReply.md)
410414
- [GetSubscriptionReply](docs/GetSubscriptionReply.md)
411415
- [GetUserOrganizationInvitationReply](docs/GetUserOrganizationInvitationReply.md)
416+
- [GetUserSettingsReply](docs/GetUserSettingsReply.md)
412417
- [GitDeploymentMetadata](docs/GitDeploymentMetadata.md)
413418
- [GitEnvDeploymentMetadata](docs/GitEnvDeploymentMetadata.md)
414419
- [GitHubRegistryConfiguration](docs/GitHubRegistryConfiguration.md)
@@ -592,6 +597,8 @@ Class | Method | HTTP request | Description
592597
- [UpdateSnapshotReply](docs/UpdateSnapshotReply.md)
593598
- [UpdateSnapshotRequest](docs/UpdateSnapshotRequest.md)
594599
- [UpdateUserRequestUserUpdateBody](docs/UpdateUserRequestUserUpdateBody.md)
600+
- [UpdateUserSettingsReply](docs/UpdateUserSettingsReply.md)
601+
- [UpdateUserSettingsRequest](docs/UpdateUserSettingsRequest.md)
595602
- [UpsertSignupQualificationReply](docs/UpsertSignupQualificationReply.md)
596603
- [UpsertSignupQualificationRequest](docs/UpsertSignupQualificationRequest.md)
597604
- [Usage](docs/Usage.md)
@@ -600,6 +607,7 @@ Class | Method | HTTP request | Description
600607
- [UserFlags](docs/UserFlags.md)
601608
- [UserReply](docs/UserReply.md)
602609
- [UserRoleRole](docs/UserRoleRole.md)
610+
- [UserSettings](docs/UserSettings.md)
603611
- [VerifyDockerImageReply](docs/VerifyDockerImageReply.md)
604612
- [VerifyDockerImageReplyErrCode](docs/VerifyDockerImageReplyErrCode.md)
605613

bumpver.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpver]
2-
current_version = "2025.7.0"
2+
current_version = "2025.8.0"
33
version_pattern = "YYYY.MM.PATCH[PYTAGNUM]"
44
commit = false
55
tag = false

docs/CatalogInstance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
2323
**gpu** | [**CatalogGPUDetails**](CatalogGPUDetails.md) | | [optional]
2424
**service_types** | **List[str]** | | [optional]
2525
**volumes_enabled** | **bool** | | [optional]
26+
**light_sleep_enabled** | **bool** | | [optional]
2627

2728
## Example
2829

docs/CatalogInstanceListItem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
2323
**gpu** | [**CatalogGPUDetails**](CatalogGPUDetails.md) | | [optional]
2424
**service_types** | **List[str]** | | [optional]
2525
**volumes_enabled** | **bool** | | [optional]
26+
**light_sleep_enabled** | **bool** | | [optional]
2627

2728
## Example
2829

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# ClearIdenfyVerificationResultRequest
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**user_id** | **str** | | [optional]
9+
**organization_id** | **str** | | [optional]
10+
11+
## Example
12+
13+
```python
14+
from koyeb.models.clear_idenfy_verification_result_request import ClearIdenfyVerificationResultRequest
15+
16+
# TODO update the JSON string below
17+
json = "{}"
18+
# create an instance of ClearIdenfyVerificationResultRequest from a JSON string
19+
clear_idenfy_verification_result_request_instance = ClearIdenfyVerificationResultRequest.from_json(json)
20+
# print the JSON string representation of the object
21+
print(ClearIdenfyVerificationResultRequest.to_json())
22+
23+
# convert the object into a dict
24+
clear_idenfy_verification_result_request_dict = clear_idenfy_verification_result_request_instance.to_dict()
25+
# create an instance of ClearIdenfyVerificationResultRequest from a dict
26+
clear_idenfy_verification_result_request_from_dict = ClearIdenfyVerificationResultRequest.from_dict(clear_idenfy_verification_result_request_dict)
27+
```
28+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29+
30+

docs/GetUserSettingsReply.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# GetUserSettingsReply
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**settings** | [**UserSettings**](UserSettings.md) | | [optional]
9+
10+
## Example
11+
12+
```python
13+
from koyeb.models.get_user_settings_reply import GetUserSettingsReply
14+
15+
# TODO update the JSON string below
16+
json = "{}"
17+
# create an instance of GetUserSettingsReply from a JSON string
18+
get_user_settings_reply_instance = GetUserSettingsReply.from_json(json)
19+
# print the JSON string representation of the object
20+
print(GetUserSettingsReply.to_json())
21+
22+
# convert the object into a dict
23+
get_user_settings_reply_dict = get_user_settings_reply_instance.to_dict()
24+
# create an instance of GetUserSettingsReply from a dict
25+
get_user_settings_reply_from_dict = GetUserSettingsReply.from_dict(get_user_settings_reply_dict)
26+
```
27+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28+
29+

0 commit comments

Comments
 (0)