leash-integration-jira 0.1.0

Typed Jira integration for Leash
Documentation
  • Coverage
  • 36.11%
    13 out of 36 items documented0 out of 12 items with examples
  • Size
  • Source code size: 50.93 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 4.5 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2m 12s Average build duration of successful builds.
  • all releases: 2m 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • arvin-unleashed

leash-integration-jira

Typed Jira integration for Leash (Rust) — auto-generated by leash-codegen.

Installation

[dependencies]
leash-integration-jira = "0.1"

Usage

use leash_sdk::LeashIntegrations;
use leash_integration_jira::JiraClient;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let leash = LeashIntegrations::new("your-api-key");
    let client = JiraClient::new(leash);

    let result = client.jira_get().await?;
    println!("{:?}", result);
    Ok(())
}

Available Methods

  • jira_get() — Read any Jira data. Returns TOON format by default (30-60% fewer tokens than...
  • jira_post() — Create Jira resources. Returns TOON format by default (token-efficient). **IM...
  • jira_put() — Replace Jira resources (full update). Returns TOON format by default. **IMPOR...
  • jira_patch() — Partially update Jira resources. Returns TOON format by default. **IMPORTANT...
  • jira_delete() — Delete Jira resources. Returns TOON format by default. Output format: TOO...

License

Apache-2.0