Jezda.Common.Integrations 1.0.38

dotnet add package Jezda.Common.Integrations --version 1.0.38
                    
NuGet\Install-Package Jezda.Common.Integrations -Version 1.0.38
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Jezda.Common.Integrations" Version="1.0.38" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Jezda.Common.Integrations" Version="1.0.38" />
                    
Directory.Packages.props
<PackageReference Include="Jezda.Common.Integrations" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Jezda.Common.Integrations --version 1.0.38
                    
#r "nuget: Jezda.Common.Integrations, 1.0.38"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Jezda.Common.Integrations@1.0.38
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Jezda.Common.Integrations&version=1.0.38
                    
Install as a Cake Addin
#tool nuget:?package=Jezda.Common.Integrations&version=1.0.38
                    
Install as a Cake Tool

Jezda.Common.Integrations

Core library providing the foundation for external service integrations within the Jezda ecosystem. This library defines the base abstractions and shared logic for building strongly-typed, consistent integration clients.

🎯 Purpose

  • Standardization: Enforces a consistent pattern for all external integrations (HTTP methods, logging, serialization).
  • Abstractions: Provides base classes like BaseIntegrationClient to reduce boilerplate code.
  • Resilience: Central place for handling common HTTP policies (can be extended with Polly).

📦 Components

BaseIntegrationClient

An abstract base class that encapsulates HttpClient operations.

  • Methods: GetAsync, PostAsync, PutAsync, DeleteAsync
  • Features:
    • Automatic System.Text.Json serialization/deserialization (camelCase).
    • Built-in logging for request/response flow.
    • Standardized error handling (throws exceptions on non-success status codes).

🚀 How to Implement a New Integration

  1. Create a new project (e.g., Jezda.Common.Integrations.Jira).
  2. Reference this core library.
  3. Inherit from BaseIntegrationClient.
public class JiraClient : BaseIntegrationClient, IJiraClient
{
    public JiraClient(HttpClient httpClient, ILogger<JiraClient> logger) 
        : base(httpClient, logger)
    {
    }

    public async Task<Issue> GetIssueAsync(string key)
    {
        return await GetAsync<Issue>($"issue/{key}");
    }
}
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Jezda.Common.Integrations:

Package Downloads
Jezda.Common.Integrations.AzureDevOps

Azure DevOps integration client and external task provider for importing projects and work items. Includes typed HttpClient and IExternalTaskProvider implementation.

Jezda.Common.Integrations.GitHub

GitHub integration client and external task provider for importing repositories and issues. Includes typed HttpClient and IExternalTaskProvider implementation.

Jezda.Common.Integrations.Jira

Jira integration client and external task provider for importing projects and issues. Includes typed HttpClient and IExternalTaskProvider implementation.

Jezda.Common.Integrations.ClickUp

ClickUp integration external task provider for importing workspaces and tasks. Includes IExternalTaskProvider implementation with Bearer token authentication.

Jezda.Common.Integrations.Monday

Monday.com integration external task provider for importing boards and items via GraphQL API. Includes IExternalTaskProvider implementation with Bearer token authentication.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.38 224 5/11/2026
1.0.37 701 3/12/2026
1.0.36 143 3/8/2026
1.0.35 149 2/17/2026