@trustify-da/trustify-da-api-model 2.0.2-rc.172 → 2.0.2-rc.173
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
ee37155c5876a1f5c3ec080e9e5f76a3948ff12aa40dbe3d7e458d6044b81490
|
|
@@ -16,6 +16,10 @@ export class ProviderStatus {
|
|
|
16
16
|
'name'?: string;
|
|
17
17
|
'code'?: number;
|
|
18
18
|
'message'?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Warnings from the provider. The key is the affected package URL, the value is an array of warning messages.
|
|
21
|
+
*/
|
|
22
|
+
'warnings'?: { [key: string]: Array<string>; };
|
|
19
23
|
|
|
20
24
|
static readonly discriminator: string | undefined = undefined;
|
|
21
25
|
|
|
@@ -43,6 +47,12 @@ export class ProviderStatus {
|
|
|
43
47
|
"baseName": "message",
|
|
44
48
|
"type": "string",
|
|
45
49
|
"format": ""
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"name": "warnings",
|
|
53
|
+
"baseName": "warnings",
|
|
54
|
+
"type": "{ [key: string]: Array<string>; }",
|
|
55
|
+
"format": ""
|
|
46
56
|
} ];
|
|
47
57
|
|
|
48
58
|
static getAttributeTypeMap() {
|
package/package.json
CHANGED