inQuiry 0.2.0

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

// Install inQuiry as a Cake Tool
#tool nuget:?package=inQuiry&version=0.2.0

inQuiry is an F# type provider for inRiver PIM. The purpose is to provide a strongly typed alternative to the Remoting API that requires less coding, ease of use and security. This is done by generating types in compile time that will supply most of the boilerplate coding needed for the Remoting API.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
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
0.2.0 1,128 6/28/2017
0.1.0 974 5/31/2017

The purpose of this release is to show that it is possible to update fields
on an entity. In order to support this, all properties on entity objects has
been done Optional, because each field type in inRiver supports being set
or unset. This means for a boolean, it can be true, false and not set.
We've also added functionality to get single entities from inRiver. You can
get an entity by its internal id `pim.Product.get 42` or you can get it by
any unique property set on the entity. `pim.Item.getByNumber "A001"`.
Changes made to an entity can be saved back to inRiver and this is done with
the same function as you use to create the entity `pim.Activity.save activity`.