forked from chocolatey/NuGet.Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIChocolateyPackageSearchMetadata.cs
More file actions
50 lines (43 loc) · 1.75 KB
/
IChocolateyPackageSearchMetadata.cs
File metadata and controls
50 lines (43 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Copyright (c) 2022-Present Chocolatey Software, Inc.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
//////////////////////////////////////////////////////////
// Chocolatey Specific Modification
//////////////////////////////////////////////////////////
using System;
using System.Collections.Generic;
namespace NuGet.Protocol.Core.Types
{
public partial interface IPackageSearchMetadata
{
string PackageHash { get; }
string PackageHashAlgorithm { get; }
long? PackageSize { get; }
int? VersionDownloadCount { get; }
bool IsApproved { get; }
string PackageStatus { get; }
string PackageSubmittedStatus { get; }
string PackageTestResultStatus { get; }
DateTime? PackageTestResultStatusDate { get; }
string PackageValidationResultStatus { get; }
DateTime? PackageValidationResultDate { get; }
DateTime? PackageCleanupResultDate { get; }
DateTime? PackageReviewedDate { get; }
DateTime? PackageApprovedDate { get; }
string PackageReviewer { get; }
bool IsDownloadCacheAvailable { get; }
DateTime? DownloadCacheDate { get; }
IEnumerable<DownloadCache> DownloadCache { get; }
public string PackagePath { get; }
string ReleaseNotes { get; }
Uri ProjectSourceUrl { get; }
Uri PackageSourceUrl { get; }
Uri DocsUrl { get; }
Uri MailingListUrl { get; }
Uri BugTrackerUrl { get; }
string DownloadCacheStatus { get; }
string PackageScanStatus { get; }
DateTime? PackageScanResultDate { get; }
string PackageScanFlagResult { get; }
string AvailableVersionSource { get; set; }
}
}