aws-iam-data 0.0.28 → 0.0.30
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/{src → dist}/awsIamData.d.ts +15 -6
- package/dist/data/json/changelog.json +3105 -0
- package/dist/data/json/iam.json +309642 -0
- package/dist/data/json/metadata.json +23083 -0
- package/dist/data/json/reports.json +420 -0
- package/dist/index.js +14 -0
- package/package.json +5 -4
- package/data/json/changelog.json +0 -3086
- package/data/json/iam.json +0 -309413
- package/data/json/metadata.json +0 -23070
- package/data/json/reports.json +0 -420
- package/src/index.js +0 -11
|
@@ -63,14 +63,23 @@ export interface ConditionKey {
|
|
|
63
63
|
|
|
64
64
|
export interface Changelog extends Array<ChangelogEntry>{}
|
|
65
65
|
|
|
66
|
+
export interface ChangelogActions {
|
|
67
|
+
[key: string]: string[] | undefined;
|
|
68
|
+
}
|
|
69
|
+
|
|
66
70
|
export interface ChangelogEntry {
|
|
67
71
|
dateOfChange: string;
|
|
68
72
|
addedServices: string[];
|
|
69
73
|
removedServices: string[];
|
|
70
|
-
addedActions:
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
addedActions: ChangelogActions;
|
|
75
|
+
removedActions: ChangelogActions;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export interface ReportEntry {
|
|
79
|
+
key: string;
|
|
80
|
+
value: number;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export interface Report {
|
|
84
|
+
[key: string]: ReportEntry[];
|
|
76
85
|
}
|