Skip to content

Commit c12edec

Browse files
authored
Merge pull request #51 from tower/develop
v0.3.15 release
2 parents e1bcdf9 + ceecab9 commit c12edec

135 files changed

Lines changed: 701 additions & 281 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ futures-util = "0.3"
3232
glob = "0.3"
3333
http = "1.1"
3434
indicatif = "0.17"
35-
log = "0.4"
35+
log = { version = "0.4", features = ["kv"] }
3636
pem = "3"
3737
promptly = "0.3"
3838
rand = "0.8"
@@ -61,6 +61,7 @@ tower-api = { path = "crates/tower-api" }
6161
tower-cmd = { path = "crates/tower-cmd" }
6262
tower-package = { path = "crates/tower-package" }
6363
tower-runtime = { path = "crates/tower-runtime" }
64+
tower-telemetry = { path = "crates/tower-telemetry" }
6465
url = { version = "2", features = ["serde"] }
6566
webbrowser = "1"
6667

crates/tower-api/README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ For more information, please visit [https://tower.dev](https://tower.dev)
88

99
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.
1010

11-
- API version: v0.5.12
11+
- API version: v0.5.23
1212
- Package version: 1.0.0
1313
- Generator version: 7.13.0
1414
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`
@@ -28,14 +28,15 @@ All URIs are relative to *https://api.tower.dev/v1*
2828
Class | Method | HTTP request | Description
2929
------------ | ------------- | ------------- | -------------
3030
*DefaultApi* | [**accept_invitation**](docs/DefaultApi.md#accept_invitation) | **POST** /accounts/invite | Accept an invitation code
31-
*DefaultApi* | [**acknowledge_alert**](docs/DefaultApi.md#acknowledge_alert) | **POST** /alerts/{alert_id}/acknowledge | Acknowledge alert
31+
*DefaultApi* | [**acknowledge_alert**](docs/DefaultApi.md#acknowledge_alert) | **POST** /alerts/{alert_seq}/acknowledge | Acknowledge alert
3232
*DefaultApi* | [**cancel_run**](docs/DefaultApi.md#cancel_run) | **POST** /apps/{slug}/runs/{seq} | Cancel run
3333
*DefaultApi* | [**claim_device_login_ticket**](docs/DefaultApi.md#claim_device_login_ticket) | **POST** /login/device/claim | Claim a device login ticket
3434
*DefaultApi* | [**create_account**](docs/DefaultApi.md#create_account) | **POST** /accounts | Create account
3535
*DefaultApi* | [**create_api_key**](docs/DefaultApi.md#create_api_key) | **POST** /api-keys | Create API Key
3636
*DefaultApi* | [**create_app**](docs/DefaultApi.md#create_app) | **POST** /apps | Create app
3737
*DefaultApi* | [**create_catalog**](docs/DefaultApi.md#create_catalog) | **POST** /catalogs | Create catalog
3838
*DefaultApi* | [**create_device_login_ticket**](docs/DefaultApi.md#create_device_login_ticket) | **GET** /login/device | Create device login ticket
39+
*DefaultApi* | [**create_password_reset**](docs/DefaultApi.md#create_password_reset) | **POST** /accounts/password-reset | Create password reset
3940
*DefaultApi* | [**create_secret**](docs/DefaultApi.md#create_secret) | **POST** /secrets | Create secret
4041
*DefaultApi* | [**create_session**](docs/DefaultApi.md#create_session) | **POST** /session | Create session
4142
*DefaultApi* | [**create_team**](docs/DefaultApi.md#create_team) | **POST** /teams | Create team
@@ -77,11 +78,13 @@ Class | Method | HTTP request | Description
7778
*DefaultApi* | [**remove_team_member**](docs/DefaultApi.md#remove_team_member) | **DELETE** /teams/{slug}/members | Remove team member
7879
*DefaultApi* | [**resend_team_invitation**](docs/DefaultApi.md#resend_team_invitation) | **POST** /teams/{slug}/invites/resend | Resend team invitation
7980
*DefaultApi* | [**run_app**](docs/DefaultApi.md#run_app) | **POST** /apps/{slug}/runs | Run app
81+
*DefaultApi* | [**stream_alerts**](docs/DefaultApi.md#stream_alerts) | **GET** /alerts/stream | Stream alert notifications
8082
*DefaultApi* | [**stream_run_logs**](docs/DefaultApi.md#stream_run_logs) | **GET** /apps/{slug}/runs/{seq}/logs/stream | Stream run logs
8183
*DefaultApi* | [**update_account_slug**](docs/DefaultApi.md#update_account_slug) | **PUT** /accounts/{slug} | Update account slug
8284
*DefaultApi* | [**update_app**](docs/DefaultApi.md#update_app) | **PUT** /apps/{name} | Update app
8385
*DefaultApi* | [**update_catalog**](docs/DefaultApi.md#update_catalog) | **PUT** /catalogs/{slug} | Update catalog
8486
*DefaultApi* | [**update_my_team_invitation**](docs/DefaultApi.md#update_my_team_invitation) | **PUT** /team-invites | Update my team invitation
87+
*DefaultApi* | [**update_password_reset**](docs/DefaultApi.md#update_password_reset) | **POST** /accounts/password-reset/{code} | Update password reset
8588
*DefaultApi* | [**update_secret**](docs/DefaultApi.md#update_secret) | **PUT** /secrets/{name} | Update secret
8689
*DefaultApi* | [**update_team**](docs/DefaultApi.md#update_team) | **PUT** /teams/{slug} | Update team
8790
*DefaultApi* | [**update_user**](docs/DefaultApi.md#update_user) | **PUT** /user | Update user profile
@@ -94,7 +97,6 @@ Class | Method | HTTP request | Description
9497
- [Account](docs/Account.md)
9598
- [AcknowledgeAlertResponse](docs/AcknowledgeAlertResponse.md)
9699
- [Alert](docs/Alert.md)
97-
- [AlertDetail](docs/AlertDetail.md)
98100
- [ApiKey](docs/ApiKey.md)
99101
- [App](docs/App.md)
100102
- [AppStatistics](docs/AppStatistics.md)
@@ -115,6 +117,8 @@ Class | Method | HTTP request | Description
115117
- [CreateCatalogParams](docs/CreateCatalogParams.md)
116118
- [CreateCatalogResponse](docs/CreateCatalogResponse.md)
117119
- [CreateDeviceLoginTicketResponse](docs/CreateDeviceLoginTicketResponse.md)
120+
- [CreatePasswordResetParams](docs/CreatePasswordResetParams.md)
121+
- [CreatePasswordResetResponse](docs/CreatePasswordResetResponse.md)
118122
- [CreateSecretParams](docs/CreateSecretParams.md)
119123
- [CreateSecretResponse](docs/CreateSecretResponse.md)
120124
- [CreateSessionParams](docs/CreateSessionParams.md)
@@ -153,6 +157,7 @@ Class | Method | HTTP request | Description
153157
- [InviteTeamMemberParams](docs/InviteTeamMemberParams.md)
154158
- [InviteTeamMemberResponse](docs/InviteTeamMemberResponse.md)
155159
- [LeaveTeamResponse](docs/LeaveTeamResponse.md)
160+
- [ListAlerts200Response](docs/ListAlerts200Response.md)
156161
- [ListAlertsResponse](docs/ListAlertsResponse.md)
157162
- [ListApiKeysResponse](docs/ListApiKeysResponse.md)
158163
- [ListAppEnvironmentsResponse](docs/ListAppEnvironmentsResponse.md)
@@ -167,7 +172,6 @@ Class | Method | HTTP request | Description
167172
- [ListTeamMembersResponse](docs/ListTeamMembersResponse.md)
168173
- [ListTeamsResponse](docs/ListTeamsResponse.md)
169174
- [LogLine](docs/LogLine.md)
170-
- [LogLineError](docs/LogLineError.md)
171175
- [Pagination](docs/Pagination.md)
172176
- [Parameter](docs/Parameter.md)
173177
- [RefreshSessionParams](docs/RefreshSessionParams.md)
@@ -179,14 +183,17 @@ Class | Method | HTTP request | Description
179183
- [Run](docs/Run.md)
180184
- [RunAppParams](docs/RunAppParams.md)
181185
- [RunAppResponse](docs/RunAppResponse.md)
186+
- [RunFailureAlert](docs/RunFailureAlert.md)
182187
- [RunLogLine](docs/RunLogLine.md)
183188
- [RunParameter](docs/RunParameter.md)
184189
- [RunResults](docs/RunResults.md)
185190
- [RunStatistics](docs/RunStatistics.md)
186191
- [Secret](docs/Secret.md)
187192
- [SeriesPoint](docs/SeriesPoint.md)
188193
- [Session](docs/Session.md)
194+
- [SseWarning](docs/SseWarning.md)
189195
- [StatisticsSettings](docs/StatisticsSettings.md)
196+
- [StreamAlerts200ResponseInner](docs/StreamAlerts200ResponseInner.md)
190197
- [StreamRunLogs200ResponseInner](docs/StreamRunLogs200ResponseInner.md)
191198
- [Team](docs/Team.md)
192199
- [TeamInvitation](docs/TeamInvitation.md)
@@ -199,6 +206,8 @@ Class | Method | HTTP request | Description
199206
- [UpdateCatalogResponse](docs/UpdateCatalogResponse.md)
200207
- [UpdateMyTeamInvitationParams](docs/UpdateMyTeamInvitationParams.md)
201208
- [UpdateMyTeamInvitationResponse](docs/UpdateMyTeamInvitationResponse.md)
209+
- [UpdatePasswordResetParams](docs/UpdatePasswordResetParams.md)
210+
- [UpdatePasswordResetResponse](docs/UpdatePasswordResetResponse.md)
202211
- [UpdateSecretParams](docs/UpdateSecretParams.md)
203212
- [UpdateSecretResponse](docs/UpdateSecretResponse.md)
204213
- [UpdateTeamParams](docs/UpdateTeamParams.md)

crates/tower-api/src/apis/configuration.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* REST API to interact with Tower Services.
55
*
6-
* The version of the OpenAPI document: v0.5.12
6+
* The version of the OpenAPI document: v0.5.23
77
* Contact: hello@tower.dev
88
* Generated by: https://openapi-generator.tech
99
*/

0 commit comments

Comments
 (0)