@microsoft/sarif-multitool-darwin 4.5.4 → 4.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/WorkItems.pdb CHANGED
Binary file
package/WorkItems.xml ADDED
@@ -0,0 +1,227 @@
1
+ <?xml version="1.0"?>
2
+ <doc>
3
+ <assembly>
4
+ <name>WorkItems</name>
5
+ </assembly>
6
+ <members>
7
+ <member name="T:Microsoft.WorkItems.Attachment">
8
+ <summary>
9
+ Represents a file attached to a work item.
10
+ </summary>
11
+ </member>
12
+ <member name="P:Microsoft.WorkItems.Attachment.Text">
13
+ <summary>
14
+ The textual contents of the attachment.
15
+ </summary>
16
+ <remarks>
17
+ Binary attachments are not yet supported.
18
+ </remarks>
19
+ </member>
20
+ <member name="P:Microsoft.WorkItems.Attachment.Name">
21
+ <summary>
22
+ The name of the attachment.
23
+ </summary>
24
+ </member>
25
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.Area">
26
+ <summary>
27
+ Area Path field name.
28
+ </summary>
29
+ </member>
30
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.Description">
31
+ <summary>
32
+ Description field name.
33
+ </summary>
34
+ </member>
35
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.Tags">
36
+ <summary>
37
+ Tags field name.
38
+ </summary>
39
+ </member>
40
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.Title">
41
+ <summary>
42
+ Title field name.
43
+ </summary>
44
+ </member>
45
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.History">
46
+ <summary>
47
+ History field name.
48
+ </summary>
49
+ </member>
50
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.State">
51
+ <summary>
52
+ State field name.
53
+ </summary>
54
+ </member>
55
+ <member name="F:Microsoft.WorkItems.AzureDevOpsFieldNames.ReproSteps">
56
+ <summary>
57
+ ReproSteps filed name.
58
+ </summary>
59
+ </member>
60
+ <member name="T:Microsoft.WorkItems.AzureDevOpsFilingClient">
61
+ <summary>
62
+ Represents an Azure DevOps project in which work items can be filed.
63
+ </summary>
64
+ </member>
65
+ <member name="T:Microsoft.WorkItems.FilingClient">
66
+ <summary>
67
+ Abstract base for classes that represents a system (for example, GitHub or Azure DevOps)
68
+ to which work items can be filed.
69
+ </summary>
70
+ </member>
71
+ <member name="P:Microsoft.WorkItems.FilingClient.Provider">
72
+ <summary>
73
+ The current source control provider.
74
+ </summary>
75
+ </member>
76
+ <member name="P:Microsoft.WorkItems.FilingClient.AccountOrOrganization">
77
+ <summary>
78
+ The Azure DevOps account name or GitHub organization name.
79
+ </summary>
80
+ </member>
81
+ <member name="P:Microsoft.WorkItems.FilingClient.ProjectOrRepository">
82
+ <summary>
83
+ The Azure DevOps project or GitHub repository name.
84
+ </summary>
85
+ </member>
86
+ <member name="P:Microsoft.WorkItems.FilingClient.Logger">
87
+ <summary>
88
+ The logger to send telemetry to Application Insights.
89
+ </summary>
90
+ </member>
91
+ <member name="M:Microsoft.WorkItems.FilingClient.Connect(System.String)">
92
+ <summary>
93
+ Connect to the project in which work items will be filed.
94
+ </summary>
95
+ <param name="personalAccessToken">
96
+ Specifes the personal access used to access the project.
97
+ </param>
98
+ </member>
99
+ <member name="M:Microsoft.WorkItems.FilingClient.FileWorkItems(System.Collections.Generic.IEnumerable{Microsoft.WorkItems.WorkItemModel})">
100
+ <summary>
101
+ Asynchronously file work items for the specified results.
102
+ </summary>
103
+ <param name="workItemModels">
104
+ Describes the work items to be filed.
105
+ </param>
106
+ <returns>
107
+ An object that can be awaited to see the result groups that were actually filed.
108
+ </returns>
109
+ </member>
110
+ <member name="M:Microsoft.WorkItems.FilingClient.GetWorkItemMetadata(Microsoft.WorkItems.WorkItemModel)">
111
+ <summary>
112
+ Asynchronously get file work item metadata for the specified results work item uris.
113
+ </summary>
114
+ <param name="workItemModel">
115
+ Describes the work items to be filed.
116
+ </param>
117
+ <returns>
118
+ An object that can be awaited to have updated work item models.
119
+ </returns>
120
+ </member>
121
+ <member name="T:Microsoft.WorkItems.GitHubFilingClient">
122
+ <summary>
123
+ Represents a GitHub project in which work items can be filed.
124
+ </summary>
125
+ </member>
126
+ <member name="M:Microsoft.WorkItems.IGitHubClientWrapper.CreateWorkItemAsync(System.String,System.String,Octokit.NewIssue)">
127
+ <summary>
128
+ Wraps GitHubClient.Issue.Create.
129
+ Creates a single work item.
130
+ </summary>
131
+ </member>
132
+ <member name="M:Microsoft.WorkItems.IGitHubClientWrapper.UpdateWorkItemAsync(System.String,System.String,System.Int32,Octokit.IssueUpdate)">
133
+ <summary>
134
+ Wraps GitHubClient.Issue.Update
135
+ Creates a single work item.
136
+ </summary>
137
+ </member>
138
+ <member name="T:Microsoft.WorkItems.IGitHubConnection">
139
+ <summary>
140
+ This interface allows for mocking of the low-level Github connection class.
141
+ </summary>
142
+ </member>
143
+ <member name="M:Microsoft.WorkItems.IGitHubConnection.ConnectAsync(System.String,System.String)">
144
+ <summary>
145
+ Provide for the instantiation of the GitHub connection instance.
146
+ </summary>
147
+ <param name="organization">The GitHuub organization URI for the connection.</param>
148
+ <param name="personalAccessToken">A personal access token with sufficient permissions to establish the connection.</param>
149
+ <returns></returns>
150
+ </member>
151
+ <member name="T:Microsoft.WorkItems.IVssConnection">
152
+ <summary>
153
+ This interface allows for mocking of the low-level VssConnection class.
154
+ </summary>
155
+ </member>
156
+ <member name="M:Microsoft.WorkItems.IVssConnection.ConnectAsync(System.Uri,System.String)">
157
+ <summary>
158
+ Provide for both the instantiation of the connection instance followed by
159
+ a call to the VssConnection.ConnectAsync method.
160
+ </summary>
161
+ <param name="accountUri">The AzureDevOps account URI for the connection.</param>
162
+ <param name="personalAccessToken">A personal access token with sufficient permissions to establish the connection.</param>
163
+ <returns></returns>
164
+ </member>
165
+ <member name="M:Microsoft.WorkItems.IVssConnection.GetClientAsync">
166
+ <summary>
167
+ Interface abstraction for VssConnection.GetClientAsync
168
+ </summary>
169
+ <returns></returns>
170
+ </member>
171
+ <member name="M:Microsoft.WorkItems.IWorkItemTrackingHttpClient.CreateAttachmentAsync(System.IO.MemoryStream,System.String,System.String,System.String,System.Object,System.Threading.CancellationToken)">
172
+ <summary>
173
+ Wraps Microsoft.TeamFoundation.WorkItemTracking.WebApi.CreateAttachmentAsync.
174
+ </summary>
175
+ </member>
176
+ <member name="M:Microsoft.WorkItems.IWorkItemTrackingHttpClient.CreateWorkItemAsync(Microsoft.VisualStudio.Services.WebApi.Patch.Json.JsonPatchDocument,System.String,System.String,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Object,System.Threading.CancellationToken)">
177
+ <summary>
178
+ Wraps Microsoft.TeamFoundation.WorkItemTracking.WebApi.CreateWorkItemAsync.
179
+ Creates a single work item.
180
+ </summary>
181
+ </member>
182
+ <member name="M:Microsoft.WorkItems.IWorkItemTrackingHttpClient.UpdateWorkItemAsync(Microsoft.VisualStudio.Services.WebApi.Patch.Json.JsonPatchDocument,System.Int32,System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{System.Boolean},System.Nullable{Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemExpand},System.Object,System.Threading.CancellationToken)">
183
+ <summary>
184
+ Wraps Microsoft.TeamFoundation.WorkItemTracking.WebApi.UpdateWorkItemAsync.
185
+ Updates a single work item.
186
+ </summary>
187
+ </member>
188
+ <member name="M:Microsoft.WorkItems.IWorkItemTrackingHttpClient.GetWorkItemAsync(System.String,System.Int32,System.Collections.Generic.IEnumerable{System.String},System.Nullable{System.DateTime},System.Nullable{Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemExpand},System.Object,System.Threading.CancellationToken)">
189
+ <summary>
190
+ Wraps Microsoft.TeamFoundation.WorkItemTracking.WebApi.GetWorkItemAsync.
191
+ Gets a single work item.
192
+ </summary>
193
+ </member>
194
+ <member name="T:Microsoft.WorkItems.Logging.ApplicationInsightsTelemetryInitializer">
195
+ <summary>
196
+ Assigns a GUID as the operation_Id for the Application Insights traces.
197
+ </summary>
198
+ </member>
199
+ <member name="T:Microsoft.WorkItems.Logging.MetricsLogValues">
200
+ <summary>
201
+ MetricsLogValues is variation of FormattedLogValues that accepts a dictionary which represents the customDimensions
202
+ column in Application Insights.
203
+ https://github.com/aspnet/Logging/blob/master/src/Microsoft.Extensions.Logging.Abstractions/Internal/FormattedLogValues.cs
204
+ </summary>
205
+ </member>
206
+ <member name="P:Microsoft.WorkItems.WorkItemModel.Uri">
207
+ <summary>
208
+ URI to raw work item data.
209
+ </summary>
210
+ </member>
211
+ <member name="P:Microsoft.WorkItems.WorkItemModel.HtmlUri">
212
+ <summary>
213
+ URI to work item as rendered in browser to users.
214
+ </summary>
215
+ </member>
216
+ <member name="P:Microsoft.WorkItems.WorkItemModel.Operation">
217
+ <summary>
218
+ Operation to perform with the model. Ex: Create work item, Update work item.
219
+ </summary>
220
+ </member>
221
+ <member name="T:Microsoft.WorkItems.WorkItemModel`1">
222
+ <summary>
223
+ Describes a work item to be filed.
224
+ </summary>
225
+ </member>
226
+ </members>
227
+ </doc>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <!--
3
+ This file contains the default rule configurations for the SARIF validator tool.
4
+ -->
5
+ <Properties>
6
+ </Properties>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@microsoft/sarif-multitool-darwin",
3
3
  "description": "SARIF Multitool for MacOS (Darwin)",
4
- "version": "4.5.4",
4
+ "version": "4.6.0",
5
5
  "scripts": {
6
6
  "postinstall": "chmod u+x Sarif.Multitool"
7
7
  },