1PasswordConnectSDK 1.0.8

dotnet add package 1PasswordConnectSDK --version 1.0.8
NuGet\Install-Package 1PasswordConnectSDK -Version 1.0.8
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="1PasswordConnectSDK" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add 1PasswordConnectSDK --version 1.0.8
#r "nuget: 1PasswordConnectSDK, 1.0.8"
#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.
// Install 1PasswordConnectSDK as a Cake Addin
#addin nuget:?package=1PasswordConnectSDK&version=1.0.8

// Install 1PasswordConnectSDK as a Cake Tool
#tool nuget:?package=1PasswordConnectSDK&version=1.0.8

AN UNOFFICIAL 1PASSWORD CONNECT SDK

This project is a WIP. Currently only supports:

  • Vaults
    • Get All Vaults w/ Search & Filtering
    • Get Single Vault
  • Items
    • Get All Items By Vault w/ Search & Filtering
    • Get Sinlge Item
    • Create Item
    • Delete Item
    • Replace Item
  • Server
    • Health Check
    • Heartbeat

To Setup:

Install: Nuget Install

Startup.cs

services.AddOpConnect(
    Configuration.GetSection(OpConnectOptions.OpConnect).Get<OpConnectOptions>()
);

appsettings.json

"OpConnect": {
    "Token": "<ACCESS_TOKEN>",
    "BaseUrl": "http://localhost:8080/"
}

Inject service:

private readonly IOpConnect _opConnect;

public WeatherForecastController(
    IOpConnect opConnect
)
{
    _opConnect = opConnect;
}

[HttpGet]
public async Task<IEnumerable<WeatherForecast>> Get()
{
    var vaults = await opConnect.Vault.GetListAsync();
    Console.WriteLine(vaults?[0].Id);

    ...
}

SCIM Filter builder:

var filter = new FilterBuilder<Item>().Group()
                 .Field(item => item.Title)
                 .Eq("test")
                 .Or()
                 .Field(item => item.Title)
                 .Eq("test2")
                 .GroupEnd()
                 .And()
                 .Group()
                 .Field(item => item.Id)
                 .Eq("test3")
                 .Or()
                 .Field(item => item.Id)
                 .Eq("test4")
                 .GroupEnd();
Console.WriteLine(filter.ToString()); // (title eq test or title eq test2) and (id eq test3 or id eq test4)

More documentation to come.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.8 417 11/23/2021
1.0.7 474 11/5/2021
1.0.6 476 11/5/2021
1.0.5 443 11/1/2021
1.0.4 403 11/1/2021
1.0.3 404 10/31/2021
1.0.2 387 10/30/2021
1.0.1 387 10/30/2021
1.0.0 413 10/30/2021