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.
<PackageVersion Include="1PasswordConnectSDK" Version="1.0.8" />
                    
Directory.Packages.props
<PackageReference Include="1PasswordConnectSDK" />
                    
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 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.
#addin nuget:?package=1PasswordConnectSDK&version=1.0.8
                    
Install 1PasswordConnectSDK as a Cake Addin
#tool nuget:?package=1PasswordConnectSDK&version=1.0.8
                    
Install 1PasswordConnectSDK as a Cake Tool

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.  net9.0 was computed.  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

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 523 11/23/2021
1.0.7 535 11/5/2021
1.0.6 540 11/5/2021
1.0.5 506 11/1/2021
1.0.4 466 11/1/2021
1.0.3 466 10/31/2021
1.0.2 450 10/30/2021
1.0.1 454 10/30/2021
1.0.0 472 10/30/2021