@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20230829 → 0.0.20230922
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/index.d.ts +10 -1
- package/package.json +1 -1
- package/tests.ts +4 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://containeranalysis.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230922
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1022,6 +1022,12 @@ declare namespace gapi.client {
|
|
|
1022
1022
|
*/
|
|
1023
1023
|
fileHashes?:
|
|
1024
1024
|
{ [P in string]: ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes };
|
|
1025
|
+
/** Output only. A copy of the build's `source.connected_repository`, if exists, with any revisions resolved. */
|
|
1026
|
+
resolvedConnectedRepository?:
|
|
1027
|
+
ContaineranalysisGoogleDevtoolsCloudbuildV1ConnectedRepository;
|
|
1028
|
+
/** Output only. A copy of the build's `source.git_source`, if exists, with any revisions resolved. */
|
|
1029
|
+
resolvedGitSource?:
|
|
1030
|
+
ContaineranalysisGoogleDevtoolsCloudbuildV1GitSource;
|
|
1025
1031
|
/** A copy of the build's `source.repo_source`, if exists, with any revisions resolved. */
|
|
1026
1032
|
resolvedRepoSource?:
|
|
1027
1033
|
ContaineranalysisGoogleDevtoolsCloudbuildV1RepoSource;
|
|
@@ -2450,6 +2456,9 @@ declare namespace gapi.client {
|
|
|
2450
2456
|
/** Details of all known distros and packages affected by this vulnerability. */
|
|
2451
2457
|
details?:
|
|
2452
2458
|
Detail[];
|
|
2459
|
+
/** Occurrence-specific extra details about the vulnerability. */
|
|
2460
|
+
extraDetails?:
|
|
2461
|
+
string;
|
|
2453
2462
|
/** The note provider assigned severity of this vulnerability. */
|
|
2454
2463
|
severity?:
|
|
2455
2464
|
string;
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230922
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -257,6 +257,7 @@ gapi.load('client', async () => {
|
|
|
257
257
|
vendor: "Test string",
|
|
258
258
|
}
|
|
259
259
|
],
|
|
260
|
+
extraDetails: "Test string",
|
|
260
261
|
severity: "Test string",
|
|
261
262
|
sourceUpdateTime: "Test string",
|
|
262
263
|
windowsDetails: [
|
|
@@ -549,6 +550,7 @@ gapi.load('client', async () => {
|
|
|
549
550
|
vendor: "Test string",
|
|
550
551
|
}
|
|
551
552
|
],
|
|
553
|
+
extraDetails: "Test string",
|
|
552
554
|
severity: "Test string",
|
|
553
555
|
sourceUpdateTime: "Test string",
|
|
554
556
|
windowsDetails: [
|
|
@@ -866,6 +868,7 @@ gapi.load('client', async () => {
|
|
|
866
868
|
vendor: "Test string",
|
|
867
869
|
}
|
|
868
870
|
],
|
|
871
|
+
extraDetails: "Test string",
|
|
869
872
|
severity: "Test string",
|
|
870
873
|
sourceUpdateTime: "Test string",
|
|
871
874
|
windowsDetails: [
|