Compare commits
16 Commits
39e78821cf
...
maser
| Author | SHA1 | Date | |
|---|---|---|---|
| 8059ad679e | |||
|
|
137579bbcc | ||
|
|
4aa696410c | ||
|
|
3be920c06a | ||
|
|
4aa4a0add5 | ||
|
|
650f2c58d3 | ||
|
|
8e367e89c4 | ||
|
|
193c2c41cd | ||
|
|
6ee87f8b02 | ||
|
|
8249c99132 | ||
|
|
b1834c3417 | ||
|
|
dc0cfd6010 | ||
|
|
18b3a7dfff | ||
|
|
d9784115ce | ||
|
|
d0ae6c4541 | ||
|
|
e8cffa5fa0 |
@@ -7,9 +7,9 @@ namespace WindreamHub.Legacy.Client.Models.Authentication
|
|||||||
public int? UserID { get; set; }
|
public int? UserID { get; set; }
|
||||||
public string UserName { get; set; }
|
public string UserName { get; set; }
|
||||||
public string FullUserName { get; set; }
|
public string FullUserName { get; set; }
|
||||||
public bool IsValidUser { get; set; }
|
public bool? IsValidUser { get; set; }
|
||||||
public ErrorDetails Error { get; set; }
|
public ErrorDetails Error { get; set; }
|
||||||
public List<ErrorDetails> Errors { get; set; }
|
public List<ErrorDetails> Errors { get; set; }
|
||||||
public bool HasErrors { get; set; }
|
public bool? HasErrors { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
13
src/WindreamHub.Legacy.Client/Models/Documents/Flag.cs
Normal file
13
src/WindreamHub.Legacy.Client/Models/Documents/Flag.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents
|
||||||
|
{
|
||||||
|
public enum Flag
|
||||||
|
{
|
||||||
|
CreateObject = 1,
|
||||||
|
CheckIn = 2,
|
||||||
|
CreateNewVersion = 4,
|
||||||
|
UseDefaultLocation = 8,
|
||||||
|
ReturnIndexingDetails = 16,
|
||||||
|
ForceOverwrite = 32,
|
||||||
|
CreateTree = 64
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request.Delete
|
||||||
|
{
|
||||||
|
public class DeleteItem
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Location { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request.Delete
|
||||||
|
{
|
||||||
|
public class DocDeleteBody
|
||||||
|
{
|
||||||
|
public DeleteItem Item { get; set; }
|
||||||
|
public int Flags { get; set; }
|
||||||
|
public int ResponseDetails { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||||
{
|
{
|
||||||
public class DocCreateBody
|
public class DocBody
|
||||||
{
|
{
|
||||||
public Item Item { get; set; }
|
public Item Item { get; set; }
|
||||||
public bool CreateFolder { get; set; }
|
public bool? CreateFolder { get; set; }
|
||||||
public int? ResponseDetails { get; set; }
|
public int? ResponseDetails { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,4 @@
|
|||||||
using System;
|
using System.Collections.Generic;
|
||||||
using System.Collections.Generic;
|
|
||||||
|
|
||||||
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
namespace WindreamHub.Legacy.Client.Models.Documents.Request
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,14 +8,14 @@
|
|||||||
public int? Type { get; set; }
|
public int? Type { get; set; }
|
||||||
public int? UnderlyingType { get; set; }
|
public int? UnderlyingType { get; set; }
|
||||||
public string Column { get; set; }
|
public string Column { get; set; }
|
||||||
public bool IsSystem { get; set; }
|
public bool? IsSystem { get; set; }
|
||||||
public bool IsSortable { get; set; }
|
public bool? IsSortable { get; set; }
|
||||||
public VectorDetails VectorDetails { get; set; }
|
public VectorDetails VectorDetails { get; set; }
|
||||||
public TypeSpecificDetails TypeSpecificDetails { get; set; }
|
public TypeSpecificDetails TypeSpecificDetails { get; set; }
|
||||||
public int? MaxSize { get; set; }
|
public int? MaxSize { get; set; }
|
||||||
public bool AlwaysModifiable { get; set; }
|
public bool? AlwaysModifiable { get; set; }
|
||||||
public int? PreDigits { get; set; }
|
public int? PreDigits { get; set; }
|
||||||
public int? PostDigits { get; set; }
|
public int? PostDigits { get; set; }
|
||||||
public bool IsFulltext { get; set; }
|
public bool? IsFulltext { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Response.Delete
|
||||||
|
{
|
||||||
|
public class DocDelErrorResponse
|
||||||
|
{
|
||||||
|
public ErrorDetail Error { get; set; }
|
||||||
|
public List<Error> Errors { get; set; }
|
||||||
|
public bool HasErrors { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
namespace WindreamHub.Legacy.Client.Models.Documents.Response.Delete
|
||||||
|
{
|
||||||
|
public class ErrorDetail
|
||||||
|
{
|
||||||
|
public string Message { get; set; }
|
||||||
|
public int? ErrorCode { get; set; }
|
||||||
|
public int? Type { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
namespace WindreamHub.Legacy.Client.Models.Documents.Response
|
namespace WindreamHub.Legacy.Client.Models.Documents.Response
|
||||||
{
|
{
|
||||||
public class DocCreatResponse
|
public class DocResponse
|
||||||
{
|
{
|
||||||
public Item Item { get; set; }
|
public Item Item { get; set; }
|
||||||
public IndexingDetails IndexingDetails { get; set; }
|
public IndexingDetails IndexingDetails { get; set; }
|
||||||
public Error Error { get; set; }
|
public Error Error { get; set; }
|
||||||
public List<Error> Errors { get; set; }
|
public List<Error> Errors { get; set; }
|
||||||
public bool HasErrors { get; set; }
|
public bool? HasErrors { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,6 +2,6 @@
|
|||||||
{
|
{
|
||||||
public class IndexingDetails
|
public class IndexingDetails
|
||||||
{
|
{
|
||||||
public bool IndexEventRequired { get; set; }
|
public bool? IndexEventRequired { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,6 +2,6 @@
|
|||||||
{
|
{
|
||||||
public class TypeSpecificDetails
|
public class TypeSpecificDetails
|
||||||
{
|
{
|
||||||
public bool OnceEditable { get; set; }
|
public bool? OnceEditable { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -5,6 +5,7 @@ using System.Threading;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Newtonsoft.Json;
|
using Newtonsoft.Json;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace WindreamHub.Legacy.Client.Models
|
namespace WindreamHub.Legacy.Client.Models
|
||||||
{
|
{
|
||||||
@@ -94,7 +95,13 @@ namespace WindreamHub.Legacy.Client.Models
|
|||||||
|
|
||||||
public static string Serialize(this object model) => JsonConvert.SerializeObject(model);
|
public static string Serialize(this object model) => JsonConvert.SerializeObject(model);
|
||||||
|
|
||||||
public static HttpContent ToContent(this string json, Encoding encoding = null, string mediaType = "application/json")
|
public static T Deserialize<T>(this string json) => JsonConvert.DeserializeObject<T>(json);
|
||||||
|
|
||||||
|
public static dynamic Deserialize(this string json) => JsonConvert.DeserializeObject<dynamic>(json);
|
||||||
|
|
||||||
|
public static IEnumerable<dynamic> DeserializeList(this string json) => JsonConvert.DeserializeObject<IEnumerable<dynamic>>(json);
|
||||||
|
|
||||||
|
public static HttpContent ToContent(this string json, Encoding encoding = null, string mediaType = "application/json")
|
||||||
=> new StringContent(json, encoding ?? Encoding.UTF8, mediaType);
|
=> new StringContent(json, encoding ?? Encoding.UTF8, mediaType);
|
||||||
|
|
||||||
public static HttpContent Stringify(this object model, Encoding encoding = null, string mediaType = "application/json")
|
public static HttpContent Stringify(this object model, Encoding encoding = null, string mediaType = "application/json")
|
||||||
|
|||||||
@@ -8,6 +8,6 @@
|
|||||||
|
|
||||||
public object Errors { get; set; }
|
public object Errors { get; set; }
|
||||||
|
|
||||||
public bool HasErrors { get; set; }
|
public bool? HasErrors { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -14,7 +14,7 @@ namespace WindreamHub.Legacy.Client.Routes
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<SimplifiedResponse<ValidationResponse, object>> IsValidUser()
|
public async Task<SimplifiedResponse<ValidationResponse, object>> IsValidUserAsync()
|
||||||
{
|
{
|
||||||
return await FetchAsync(route: "/IsValidUser", HttpMethod.Get).ThenAsync(res => res.Simplify<ValidationResponse, object>());
|
return await FetchAsync(route: "/IsValidUser", HttpMethod.Get).ThenAsync(res => res.Simplify<ValidationResponse, object>());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,12 @@ using System.Threading.Tasks;
|
|||||||
using WindreamHub.Legacy.Client.Models;
|
using WindreamHub.Legacy.Client.Models;
|
||||||
using WindreamHub.Legacy.Client.Models.Documents.Response;
|
using WindreamHub.Legacy.Client.Models.Documents.Response;
|
||||||
using WindreamHub.Legacy.Client.Models.Documents.Request;
|
using WindreamHub.Legacy.Client.Models.Documents.Request;
|
||||||
|
using System.IO;
|
||||||
|
using System.Web;
|
||||||
|
using WindreamHub.Legacy.Client.Models.Documents;
|
||||||
|
using System.Linq;
|
||||||
|
using WindreamHub.Legacy.Client.Models.Documents.Response.Delete;
|
||||||
|
using WindreamHub.Legacy.Client.Models.Documents.Request.Delete;
|
||||||
|
|
||||||
namespace WindreamHub.Legacy.Client.Routes
|
namespace WindreamHub.Legacy.Client.Routes
|
||||||
{
|
{
|
||||||
@@ -15,12 +21,102 @@ namespace WindreamHub.Legacy.Client.Routes
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<SimplifiedResponse<DocCreatResponse, object>> Create(HttpContent docCreateBody)
|
//Create
|
||||||
=> await FetchAsync(route: "/Create", method: HttpMethod.Post, body: docCreateBody)
|
public async Task<SimplifiedResponse<TData, TError>> CreateAsync<TData, TError>(DocBody docCreateBody)
|
||||||
.ThenAsync(res => res.Simplify<DocCreatResponse, object>());
|
|
||||||
|
|
||||||
public async Task<SimplifiedResponse<DocCreatResponse, object>> Create(DocCreateBody docCreateBody)
|
|
||||||
=> await FetchAsync(route: "/Create", method: HttpMethod.Post, body: docCreateBody.Stringify())
|
=> await FetchAsync(route: "/Create", method: HttpMethod.Post, body: docCreateBody.Stringify())
|
||||||
.ThenAsync(res => res.Simplify<DocCreatResponse, object>());
|
.ThenAsync(res => res.Simplify<TData, TError>());
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<dynamic, dynamic>> CreateDynamicAsync(DocBody docCreateBody) => CreateAsync<dynamic, dynamic>(docCreateBody);
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<DocResponse, DocResponse>> CreateAsync(DocBody docCreateBody) => CreateAsync<DocResponse, DocResponse>(docCreateBody);
|
||||||
|
|
||||||
|
//Upload
|
||||||
|
public async Task<SimplifiedResponse<TData, TError>> UploadAsync<TData, TError>(string path, long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
{
|
||||||
|
using (var fileStream = File.OpenRead(path))
|
||||||
|
{
|
||||||
|
var fileContent = new StreamContent(fileStream);
|
||||||
|
var formData = new MultipartFormDataContent
|
||||||
|
{
|
||||||
|
{ fileContent, "file" },
|
||||||
|
};
|
||||||
|
|
||||||
|
var query = HttpUtility.ParseQueryString(string.Empty);
|
||||||
|
|
||||||
|
if (item_id != null)
|
||||||
|
query["parameter.item.id"] = item_id.ToString();
|
||||||
|
|
||||||
|
if (item_location != null)
|
||||||
|
query["parameter.item.location"] = item_location;
|
||||||
|
|
||||||
|
if (item_name != null)
|
||||||
|
query["parameter.item.name"] = item_name;
|
||||||
|
|
||||||
|
if (flags != null && flags.Length > 0)
|
||||||
|
query["parameter.flags"] = string.Join(",", flags.Select(flag => (int)flag));
|
||||||
|
|
||||||
|
if (stream_identity != null)
|
||||||
|
query["parameter.stream.__identity"] = stream_identity.ToString();
|
||||||
|
|
||||||
|
return await FetchAsync(route: $"/Upload?{query}", method: HttpMethod.Post, body: fileContent).ThenAsync(res => res.Simplify<TData, TError>());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<dynamic, dynamic>> UploadDynamicAsync(string path, long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
=> UploadAsync<dynamic, dynamic>(path: path, item_id: item_id, item_location: item_location, item_name: item_name, stream_identity: stream_identity, flags: flags);
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<DocResponse, DocResponse>> UploadAsync(string path, long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
=> UploadAsync<DocResponse, DocResponse>(path: path, item_id: item_id, item_location: item_location, item_name: item_name, stream_identity: stream_identity, flags: flags);
|
||||||
|
|
||||||
|
//Update
|
||||||
|
public async Task<SimplifiedResponse<TData, TError>> UpdateAsync<TData, TError>(DocBody docUpdateBody)
|
||||||
|
=> await FetchAsync(route: "/Update", method: HttpMethod.Post, body: docUpdateBody.Stringify())
|
||||||
|
.ThenAsync(res => res.Simplify<TData, TError>());
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<dynamic, dynamic>> UpdateDynamicAsync(DocBody docUpdateBody)
|
||||||
|
=> UpdateAsync<dynamic, dynamic>(docUpdateBody);
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<DocResponse, DocResponse>> UpdateAsync(DocBody docUpdateBody)
|
||||||
|
=> UpdateAsync<DocResponse, DocResponse>(docUpdateBody);
|
||||||
|
|
||||||
|
//Download
|
||||||
|
public async Task<SimplifiedResponse<TData, TError>> DownloadAsync<TData, TError>(long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
{
|
||||||
|
var query = HttpUtility.ParseQueryString(string.Empty);
|
||||||
|
|
||||||
|
if (item_id != null)
|
||||||
|
query["parameter.item.id"] = item_id.ToString();
|
||||||
|
|
||||||
|
if (item_location != null)
|
||||||
|
query["parameter.item.location"] = item_location;
|
||||||
|
|
||||||
|
if (item_name != null)
|
||||||
|
query["parameter.item.name"] = item_name;
|
||||||
|
|
||||||
|
if (flags != null && flags.Length > 0)
|
||||||
|
query["parameter.flags"] = string.Join(",", flags.Select(flag => (int)flag));
|
||||||
|
|
||||||
|
if (stream_identity != null)
|
||||||
|
query["parameter.stream.__identity"] = stream_identity.ToString();
|
||||||
|
|
||||||
|
return await FetchAsync(route: $"/Download?{query}", method: HttpMethod.Get).ThenAsync(res => res.Simplify<TData, TError>());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<dynamic, dynamic>> DownloadDynamicAsync(long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
=> DownloadAsync<dynamic, dynamic>(item_id: item_id, item_location: item_location, item_name: item_name, stream_identity: stream_identity, flags: flags);
|
||||||
|
|
||||||
|
public Task<SimplifiedResponse<DocResponse, DocResponse>> DownloadAsync(long? item_id = null, string item_location = null, string item_name = null, object stream_identity = null, params Flag[] flags)
|
||||||
|
=> DownloadAsync<DocResponse, DocResponse>(item_id: item_id, item_location: item_location, item_name: item_name, stream_identity: stream_identity, flags: flags);
|
||||||
|
|
||||||
|
//Delete
|
||||||
|
public async Task<SimplifiedResponse<TData, TError>> DeleteAsync<TData, TError>(DocDeleteBody docDeleteBody)
|
||||||
|
=> await FetchAsync(route: "/Delete", HttpMethod.Post, body: docDeleteBody.Stringify())
|
||||||
|
.ThenAsync(res => res.Simplify<TData, TError>());
|
||||||
|
|
||||||
|
public async Task<SimplifiedResponse<dynamic, dynamic>> DeleteDynamicAsync(DocDeleteBody docDeleteBody)
|
||||||
|
=> await DeleteAsync<dynamic, dynamic>(docDeleteBody: docDeleteBody);
|
||||||
|
|
||||||
|
public async Task<SimplifiedResponse<DocResponse, DocDelErrorResponse>> DeleteAsync(DocDeleteBody docDeleteBody)
|
||||||
|
=> await DeleteAsync<DocResponse, DocDelErrorResponse>(docDeleteBody: docDeleteBody);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -16,7 +16,7 @@ namespace WindreamHub.Legacy.Client.Route
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<SimplifiedResponse<SystemDetailsResponse, object>> GetSystemDetails()
|
public async Task<SimplifiedResponse<SystemDetailsResponse, object>> GetSystemDetailsAsync()
|
||||||
=> await FetchAsync(route: "/GetSystemDetails")
|
=> await FetchAsync(route: "/GetSystemDetails")
|
||||||
.ThenAsync(res => res.Simplify<SystemDetailsResponse, object>());
|
.ThenAsync(res => res.Simplify<SystemDetailsResponse, object>());
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,8 +33,8 @@ namespace WindreamHub.Legacy.Client
|
|||||||
public async Task<bool> AuthenticateAsync(ICredential credential)
|
public async Task<bool> AuthenticateAsync(ICredential credential)
|
||||||
{
|
{
|
||||||
_client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credential.AuthorizationHeader);
|
_client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credential.AuthorizationHeader);
|
||||||
var res = await Authentication.IsValidUser();
|
var res = await Authentication.IsValidUserAsync();
|
||||||
return res.Ok && res.Data.IsValidUser;
|
return res.Ok && (res.Data.IsValidUser ?? false);
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<bool> AuthenticateAsync(string domain, string name, string password)
|
public async Task<bool> AuthenticateAsync(string domain, string name, string password)
|
||||||
|
|||||||
@@ -74,6 +74,7 @@
|
|||||||
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
|
<HintPath>..\..\packages\System.ValueTuple.4.5.0\lib\net461\System.ValueTuple.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="System.Web" />
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
@@ -84,6 +85,11 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="DIExtensions.cs" />
|
<Compile Include="DIExtensions.cs" />
|
||||||
<Compile Include="Models\Authentication\ErrorDetails.cs" />
|
<Compile Include="Models\Authentication\ErrorDetails.cs" />
|
||||||
|
<Compile Include="Models\Documents\Flag.cs" />
|
||||||
|
<Compile Include="Models\Documents\Request\Delete\DeleteItem.cs" />
|
||||||
|
<Compile Include="Models\Documents\Request\Delete\DocDeleteBody.cs" />
|
||||||
|
<Compile Include="Models\Documents\Response\Delete\DocDelErrorResponse.cs" />
|
||||||
|
<Compile Include="Models\Documents\Response\Delete\ErrorDetail.cs" />
|
||||||
<Compile Include="Models\Documents\Response\Error.cs" />
|
<Compile Include="Models\Documents\Response\Error.cs" />
|
||||||
<Compile Include="Models\Shared\ErrorItem.cs" />
|
<Compile Include="Models\Shared\ErrorItem.cs" />
|
||||||
<Compile Include="Models\Authentication\ICredential.cs" />
|
<Compile Include="Models\Authentication\ICredential.cs" />
|
||||||
@@ -92,9 +98,9 @@
|
|||||||
<Compile Include="Models\Documents\Request\Attribute.cs" />
|
<Compile Include="Models\Documents\Request\Attribute.cs" />
|
||||||
<Compile Include="Models\Documents\Request\Item.cs" />
|
<Compile Include="Models\Documents\Request\Item.cs" />
|
||||||
<Compile Include="Models\Documents\Request\ObjectType.cs" />
|
<Compile Include="Models\Documents\Request\ObjectType.cs" />
|
||||||
<Compile Include="Models\Documents\Request\DocCreateBody.cs" />
|
<Compile Include="Models\Documents\Request\DocBody.cs" />
|
||||||
<Compile Include="Models\Documents\Response\Attribute.cs" />
|
<Compile Include="Models\Documents\Response\Attribute.cs" />
|
||||||
<Compile Include="Models\Documents\Response\DocCreatResponse.cs" />
|
<Compile Include="Models\Documents\Response\DocResponse.cs" />
|
||||||
<Compile Include="Models\Documents\Response\IndexingDetails.cs" />
|
<Compile Include="Models\Documents\Response\IndexingDetails.cs" />
|
||||||
<Compile Include="Models\Documents\Response\Item.cs" />
|
<Compile Include="Models\Documents\Response\Item.cs" />
|
||||||
<Compile Include="Models\Documents\Response\ObjectType.cs" />
|
<Compile Include="Models\Documents\Response\ObjectType.cs" />
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<package>
|
|
||||||
<metadata>
|
|
||||||
<id>WindreamHub.Legacy.Client</id>
|
|
||||||
<version>1.0.0</version>
|
|
||||||
<title>WindreamHub.Legacy.Client</title>
|
|
||||||
<authors>Digital Data GmbH</authors>
|
|
||||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
||||||
<license type="expression">MIT</license>
|
|
||||||
<icon>Assets\icon.png</icon>
|
|
||||||
<projectUrl>http://git.dd:3000/tekh/WindreamHub.git</projectUrl>
|
|
||||||
<description>This package provides the client library for the Windream. It includes functionality for making HTTP requests to the Windream Webservice API, facilitating integration and communication with Windream document management systems. This version is specifically designed to be compatible with .NET Framework.</description>
|
|
||||||
<copyright>Copyright 2024</copyright>
|
|
||||||
<tags>digital data core http windream legacy</tags>
|
|
||||||
<dependencies>
|
|
||||||
<dependency id="DigitalData.Core.Client.Legacy" version="1.0.1.2" />
|
|
||||||
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="8.0.0" />
|
|
||||||
<dependency id="Microsoft.Extensions.DependencyInjection" version="8.0.0" />
|
|
||||||
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="8.0.1" />
|
|
||||||
<dependency id="Microsoft.Extensions.Options" version="8.0.2" />
|
|
||||||
<dependency id="Microsoft.Extensions.Primitives" version="8.0.0" />
|
|
||||||
<dependency id="Newtonsoft.Json" version="13.0.1" />
|
|
||||||
<dependency id="System.Buffers" version="4.5.1" />
|
|
||||||
<dependency id="System.Memory" version="4.5.5" />
|
|
||||||
<dependency id="System.Numerics.Vectors" version="4.5.0" />
|
|
||||||
<dependency id="System.Runtime.CompilerServices.Unsafe" version="6.0.0" />
|
|
||||||
<dependency id="System.Threading.Tasks.Extensions" version="4.5.4" />
|
|
||||||
<dependency id="System.ValueTuple" version="4.5.0" />
|
|
||||||
</dependencies>
|
|
||||||
</metadata>
|
|
||||||
<files>
|
|
||||||
<file src="bin\Release\WindreamHub.Legacy.Client.dll" target="lib\net462\WindreamHub.Legacy.Client.dll" />
|
|
||||||
<file src="Assets\icon.png" target="Assets\" />
|
|
||||||
</files>
|
|
||||||
</package>
|
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
<package id="Microsoft.Extensions.Options" version="8.0.2" targetFramework="net462" />
|
<package id="Microsoft.Extensions.Options" version="8.0.2" targetFramework="net462" />
|
||||||
<package id="Microsoft.Extensions.Primitives" version="8.0.0" targetFramework="net462" />
|
<package id="Microsoft.Extensions.Primitives" version="8.0.0" targetFramework="net462" />
|
||||||
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net462" />
|
<package id="Newtonsoft.Json" version="13.0.1" targetFramework="net462" />
|
||||||
<package id="NuGet.CommandLine" version="6.10.1" targetFramework="net462" developmentDependency="true" />
|
<package id="NuGet.CommandLine" version="6.11.0" targetFramework="net462" developmentDependency="true" />
|
||||||
<package id="System.Buffers" version="4.5.1" targetFramework="net462" />
|
<package id="System.Buffers" version="4.5.1" targetFramework="net462" />
|
||||||
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
<package id="System.Memory" version="4.5.5" targetFramework="net462" />
|
||||||
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
<package id="System.Numerics.Vectors" version="4.5.0" targetFramework="net462" />
|
||||||
|
|||||||
Reference in New Issue
Block a user