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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ futures-util = "0.3"
glob = "0.3"
http = "1.1"
indicatif = "0.17"
log = "0.4"
log = { version = "0.4", features = ["kv"] }
pem = "3"
promptly = "0.3"
rand = "0.8"
Expand Down Expand Up @@ -61,6 +61,7 @@ tower-api = { path = "crates/tower-api" }
tower-cmd = { path = "crates/tower-cmd" }
tower-package = { path = "crates/tower-package" }
tower-runtime = { path = "crates/tower-runtime" }
tower-telemetry = { path = "crates/tower-telemetry" }
url = { version = "2", features = ["serde"] }
webbrowser = "1"

Expand Down
17 changes: 13 additions & 4 deletions crates/tower-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ For more information, please visit [https://tower.dev](https://tower.dev)

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: v0.5.12
- API version: v0.5.23
- Package version: 1.0.0
- Generator version: 7.13.0
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`
Expand All @@ -28,14 +28,15 @@ All URIs are relative to *https://api.tower.dev/v1*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**accept_invitation**](docs/DefaultApi.md#accept_invitation) | **POST** /accounts/invite | Accept an invitation code
*DefaultApi* | [**acknowledge_alert**](docs/DefaultApi.md#acknowledge_alert) | **POST** /alerts/{alert_id}/acknowledge | Acknowledge alert
*DefaultApi* | [**acknowledge_alert**](docs/DefaultApi.md#acknowledge_alert) | **POST** /alerts/{alert_seq}/acknowledge | Acknowledge alert
*DefaultApi* | [**cancel_run**](docs/DefaultApi.md#cancel_run) | **POST** /apps/{slug}/runs/{seq} | Cancel run
*DefaultApi* | [**claim_device_login_ticket**](docs/DefaultApi.md#claim_device_login_ticket) | **POST** /login/device/claim | Claim a device login ticket
*DefaultApi* | [**create_account**](docs/DefaultApi.md#create_account) | **POST** /accounts | Create account
*DefaultApi* | [**create_api_key**](docs/DefaultApi.md#create_api_key) | **POST** /api-keys | Create API Key
*DefaultApi* | [**create_app**](docs/DefaultApi.md#create_app) | **POST** /apps | Create app
*DefaultApi* | [**create_catalog**](docs/DefaultApi.md#create_catalog) | **POST** /catalogs | Create catalog
*DefaultApi* | [**create_device_login_ticket**](docs/DefaultApi.md#create_device_login_ticket) | **GET** /login/device | Create device login ticket
*DefaultApi* | [**create_password_reset**](docs/DefaultApi.md#create_password_reset) | **POST** /accounts/password-reset | Create password reset
*DefaultApi* | [**create_secret**](docs/DefaultApi.md#create_secret) | **POST** /secrets | Create secret
*DefaultApi* | [**create_session**](docs/DefaultApi.md#create_session) | **POST** /session | Create session
*DefaultApi* | [**create_team**](docs/DefaultApi.md#create_team) | **POST** /teams | Create team
Expand Down Expand Up @@ -77,11 +78,13 @@ Class | Method | HTTP request | Description
*DefaultApi* | [**remove_team_member**](docs/DefaultApi.md#remove_team_member) | **DELETE** /teams/{slug}/members | Remove team member
*DefaultApi* | [**resend_team_invitation**](docs/DefaultApi.md#resend_team_invitation) | **POST** /teams/{slug}/invites/resend | Resend team invitation
*DefaultApi* | [**run_app**](docs/DefaultApi.md#run_app) | **POST** /apps/{slug}/runs | Run app
*DefaultApi* | [**stream_alerts**](docs/DefaultApi.md#stream_alerts) | **GET** /alerts/stream | Stream alert notifications
*DefaultApi* | [**stream_run_logs**](docs/DefaultApi.md#stream_run_logs) | **GET** /apps/{slug}/runs/{seq}/logs/stream | Stream run logs
*DefaultApi* | [**update_account_slug**](docs/DefaultApi.md#update_account_slug) | **PUT** /accounts/{slug} | Update account slug
*DefaultApi* | [**update_app**](docs/DefaultApi.md#update_app) | **PUT** /apps/{name} | Update app
*DefaultApi* | [**update_catalog**](docs/DefaultApi.md#update_catalog) | **PUT** /catalogs/{slug} | Update catalog
*DefaultApi* | [**update_my_team_invitation**](docs/DefaultApi.md#update_my_team_invitation) | **PUT** /team-invites | Update my team invitation
*DefaultApi* | [**update_password_reset**](docs/DefaultApi.md#update_password_reset) | **POST** /accounts/password-reset/{code} | Update password reset
*DefaultApi* | [**update_secret**](docs/DefaultApi.md#update_secret) | **PUT** /secrets/{name} | Update secret
*DefaultApi* | [**update_team**](docs/DefaultApi.md#update_team) | **PUT** /teams/{slug} | Update team
*DefaultApi* | [**update_user**](docs/DefaultApi.md#update_user) | **PUT** /user | Update user profile
Expand All @@ -94,7 +97,6 @@ Class | Method | HTTP request | Description
- [Account](docs/Account.md)
- [AcknowledgeAlertResponse](docs/AcknowledgeAlertResponse.md)
- [Alert](docs/Alert.md)
- [AlertDetail](docs/AlertDetail.md)
- [ApiKey](docs/ApiKey.md)
- [App](docs/App.md)
- [AppStatistics](docs/AppStatistics.md)
Expand All @@ -115,6 +117,8 @@ Class | Method | HTTP request | Description
- [CreateCatalogParams](docs/CreateCatalogParams.md)
- [CreateCatalogResponse](docs/CreateCatalogResponse.md)
- [CreateDeviceLoginTicketResponse](docs/CreateDeviceLoginTicketResponse.md)
- [CreatePasswordResetParams](docs/CreatePasswordResetParams.md)
- [CreatePasswordResetResponse](docs/CreatePasswordResetResponse.md)
- [CreateSecretParams](docs/CreateSecretParams.md)
- [CreateSecretResponse](docs/CreateSecretResponse.md)
- [CreateSessionParams](docs/CreateSessionParams.md)
Expand Down Expand Up @@ -153,6 +157,7 @@ Class | Method | HTTP request | Description
- [InviteTeamMemberParams](docs/InviteTeamMemberParams.md)
- [InviteTeamMemberResponse](docs/InviteTeamMemberResponse.md)
- [LeaveTeamResponse](docs/LeaveTeamResponse.md)
- [ListAlerts200Response](docs/ListAlerts200Response.md)
- [ListAlertsResponse](docs/ListAlertsResponse.md)
- [ListApiKeysResponse](docs/ListApiKeysResponse.md)
- [ListAppEnvironmentsResponse](docs/ListAppEnvironmentsResponse.md)
Expand All @@ -167,7 +172,6 @@ Class | Method | HTTP request | Description
- [ListTeamMembersResponse](docs/ListTeamMembersResponse.md)
- [ListTeamsResponse](docs/ListTeamsResponse.md)
- [LogLine](docs/LogLine.md)
- [LogLineError](docs/LogLineError.md)
- [Pagination](docs/Pagination.md)
- [Parameter](docs/Parameter.md)
- [RefreshSessionParams](docs/RefreshSessionParams.md)
Expand All @@ -179,14 +183,17 @@ Class | Method | HTTP request | Description
- [Run](docs/Run.md)
- [RunAppParams](docs/RunAppParams.md)
- [RunAppResponse](docs/RunAppResponse.md)
- [RunFailureAlert](docs/RunFailureAlert.md)
- [RunLogLine](docs/RunLogLine.md)
- [RunParameter](docs/RunParameter.md)
- [RunResults](docs/RunResults.md)
- [RunStatistics](docs/RunStatistics.md)
- [Secret](docs/Secret.md)
- [SeriesPoint](docs/SeriesPoint.md)
- [Session](docs/Session.md)
- [SseWarning](docs/SseWarning.md)
- [StatisticsSettings](docs/StatisticsSettings.md)
- [StreamAlerts200ResponseInner](docs/StreamAlerts200ResponseInner.md)
- [StreamRunLogs200ResponseInner](docs/StreamRunLogs200ResponseInner.md)
- [Team](docs/Team.md)
- [TeamInvitation](docs/TeamInvitation.md)
Expand All @@ -199,6 +206,8 @@ Class | Method | HTTP request | Description
- [UpdateCatalogResponse](docs/UpdateCatalogResponse.md)
- [UpdateMyTeamInvitationParams](docs/UpdateMyTeamInvitationParams.md)
- [UpdateMyTeamInvitationResponse](docs/UpdateMyTeamInvitationResponse.md)
- [UpdatePasswordResetParams](docs/UpdatePasswordResetParams.md)
- [UpdatePasswordResetResponse](docs/UpdatePasswordResetResponse.md)
- [UpdateSecretParams](docs/UpdateSecretParams.md)
- [UpdateSecretResponse](docs/UpdateSecretResponse.md)
- [UpdateTeamParams](docs/UpdateTeamParams.md)
Expand Down
2 changes: 1 addition & 1 deletion crates/tower-api/src/apis/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*
* REST API to interact with Tower Services.
*
* The version of the OpenAPI document: v0.5.12
* The version of the OpenAPI document: v0.5.23
* Contact: hello@tower.dev
* Generated by: https://openapi-generator.tech
*/
Expand Down
Loading
Loading