Skip to content

Commit

Permalink
First pass. Test with git dep
Browse files Browse the repository at this point in the history
  • Loading branch information
augustuswm committed May 23, 2024
1 parent 31f85e8 commit b355fab
Show file tree
Hide file tree
Showing 142 changed files with 28,142 additions and 25,107 deletions.
643 changes: 463 additions & 180 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions docusign/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,27 +19,27 @@ rustls-tls = ["reqwest/rustls-tls", "ring", "pem"]
async-recursion = "^1.0"
chrono = { version = "0.4", 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 = { git = "https://github.com/oxidecomputer/reqwest-conditional-middleware.git" }
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
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
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 b355fab

Please sign in to comment.