Skip to content

Commit

Permalink
Merge branch 'main' into handle-cache-miss
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed Nov 11, 2024
2 parents 264a361 + 720c61b commit 8838293
Show file tree
Hide file tree
Showing 213 changed files with 27,488 additions and 25,412 deletions.
736 changes: 523 additions & 213 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := bash

VERSION = 0.7.1
VERSION = 0.8.0-rc.1

DOCUSIGN_SPEC_DIR = $(CURDIR)/specs/docusign
DOCUSIGN_SPEC = $(DOCUSIGN_SPEC_DIR)/docusign.yaml
Expand Down
18 changes: 9 additions & 9 deletions docusign/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "docusign"
description = "A fully generated & opinionated API client for the DocuSign API."
version = "0.7.1"
version = "0.8.0-rc.1"
documentation = "https://docs.rs/docusign/"
repository = "https://github.com/oxidecomputer/third-party-api-clients/tree/main/docusign"
readme = "README.md"
Expand All @@ -17,29 +17,29 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]

[dependencies]
async-recursion = "^1.0"
chrono = { version = "0.4", default-features = false, features = ["serde"] }
chrono = { version = "0.4.38", default-features = false, features = ["serde"] }
dirs = { version = "^3.0.2", optional = true }
http = "^0.2.4"
http = "1"
jsonwebtoken = "8"
log = { version = "^0.4", features = ["serde"] }
mime = "0.3"
openssl = { version = "0.10", default-features = false, optional = true }
parse_link_header = "0.3.3"
pem = { version = "1.1.0", default-features = false, optional = true }
percent-encoding = "2.2"
reqwest = { version = "0.11.14", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.2.1"
reqwest-middleware = "0.2.2"
reqwest-retry = "0.2.2"
reqwest-tracing = "0.4.4"
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart"] }
reqwest-conditional-middleware = "0.3"
reqwest-middleware = { version = "0.3", features = ["multipart"] }
reqwest-retry = "0.5"
reqwest-tracing = "0.5"
ring = { version = "0.16", default-features = false, optional = true }
schemars = { version = "0.8", features = ["bytes", "chrono", "url", "uuid1"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "^0.7"
url = { version = "2", features = ["serde"] }
bytes = { version = "1", features = ["serde"] }
async-trait = "^0.1.51"
async-trait = "^0.1.80"
uuid = { version = "1.1", features = ["serde", "v4"] }
thiserror = "1"
tokio = { version = "1.25.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion docusign/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To install the library, add the following to your `Cargo.toml` file.

```toml
[dependencies]
docusign = "0.7.1"
docusign = "0.8.0-rc.1"
```

## Basic example
Expand Down
4 changes: 3 additions & 1 deletion docusign/src/account_password_rules.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ impl AccountPasswordRules {
pub async fn password_rules_get(
&self,
) -> ClientResult<crate::Response<crate::types::UserPasswordRules>> {
let url = self.client.url("/v2.1/current_user/password_rules", None);
let url = self
.client
.url("/v2.1/current_user/password_rules", None);
self.client
.get(
&url,
Expand Down
4 changes: 3 additions & 1 deletion docusign/src/accounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,9 @@ impl Accounts {
pub async fn get_provisioning(
&self,
) -> ClientResult<crate::Response<crate::types::ProvisioningInformation>> {
let url = self.client.url("/v2.1/accounts/provisioning", None);
let url = self
.client
.url("/v2.1/accounts/provisioning", None);
self.client
.get(
&url,
Expand Down
8 changes: 6 additions & 2 deletions docusign/src/appliance_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,9 @@ impl ApplianceInfo {
*
*/
pub async fn envelope_post_error(&self) -> ClientResult<crate::Response<()>> {
let url = self.client.url("/v2.1/display_appliance_info/error", None);
let url = self
.client
.url("/v2.1/display_appliance_info/error", None);
self.client
.post(
&url,
Expand All @@ -889,7 +891,9 @@ impl ApplianceInfo {
pub async fn envelope_post_redeem(
&self,
) -> ClientResult<crate::Response<crate::types::ApplianceInfo>> {
let url = self.client.url("/v2.1/display_appliance_info/redeem", None);
let url = self
.client
.url("/v2.1/display_appliance_info/redeem", None);
self.client
.post(
&url,
Expand Down
2 changes: 1 addition & 1 deletion docusign/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
//!
//! ```toml
//! [dependencies]
//! docusign = "0.7.1"
//! docusign = "0.8.0-rc.1"
//! ```
//!
//! ## Basic example
Expand Down
8 changes: 6 additions & 2 deletions docusign/src/notary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ impl Notary {
&self,
body: &crate::types::NotaryData,
) -> ClientResult<crate::Response<crate::types::NotaryData>> {
let url = self.client.url("/v2.1/current_user/notary", None);
let url = self
.client
.url("/v2.1/current_user/notary", None);
self.client
.put(
&url,
Expand All @@ -81,7 +83,9 @@ impl Notary {
&self,
body: &crate::types::NotaryData,
) -> ClientResult<crate::Response<crate::types::NotaryData>> {
let url = self.client.url("/v2.1/current_user/notary", None);
let url = self
.client
.url("/v2.1/current_user/notary", None);
self.client
.post(
&url,
Expand Down
12 changes: 9 additions & 3 deletions docusign/src/request_logs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ impl RequestLogs {
* Deletes the request log files.
*/
pub async fn api_delete_logs(&self) -> ClientResult<crate::Response<()>> {
let url = self.client.url("/v2.1/diagnostics/request_logs", None);
let url = self
.client
.url("/v2.1/diagnostics/request_logs", None);
self.client
.delete(
&url,
Expand Down Expand Up @@ -118,7 +120,9 @@ impl RequestLogs {
pub async fn api_get_setting(
&self,
) -> ClientResult<crate::Response<crate::types::DiagnosticsSettingsInformation>> {
let url = self.client.url("/v2.1/diagnostics/settings", None);
let url = self
.client
.url("/v2.1/diagnostics/settings", None);
self.client
.get(
&url,
Expand Down Expand Up @@ -151,7 +155,9 @@ impl RequestLogs {
&self,
body: &crate::types::DiagnosticsSettingsInformation,
) -> ClientResult<crate::Response<crate::types::DiagnosticsSettingsInformation>> {
let url = self.client.url("/v2.1/diagnostics/settings", None);
let url = self
.client
.url("/v2.1/diagnostics/settings", None);
self.client
.put(
&url,
Expand Down
Loading

0 comments on commit 8838293

Please sign in to comment.