@ttoss/cloudformation 0.13.0 → 0.13.2
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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -50,11 +50,11 @@ type PolicyStatement = {
|
|
|
50
50
|
Sid?: string;
|
|
51
51
|
Effect: 'Allow' | 'Deny';
|
|
52
52
|
Action: string | string[];
|
|
53
|
-
Resource?: CloudFormationValue<string | string
|
|
53
|
+
Resource?: CloudFormationValue<string> | Array<CloudFormationValue<string>>;
|
|
54
54
|
Principal?: CloudFormationValue<string | Record<string, string | string[]>>;
|
|
55
55
|
Condition?: Record<string, Record<string, CloudFormationValue<string | string[]>>>;
|
|
56
56
|
NotAction?: string | string[];
|
|
57
|
-
NotResource?: CloudFormationValue<string | string
|
|
57
|
+
NotResource?: CloudFormationValue<string> | Array<CloudFormationValue<string>>;
|
|
58
58
|
NotPrincipal?: CloudFormationValue<string | Record<string, string | string[]>>;
|
|
59
59
|
};
|
|
60
60
|
type PolicyDocument = {
|
package/dist/index.d.ts
CHANGED
|
@@ -50,11 +50,11 @@ type PolicyStatement = {
|
|
|
50
50
|
Sid?: string;
|
|
51
51
|
Effect: 'Allow' | 'Deny';
|
|
52
52
|
Action: string | string[];
|
|
53
|
-
Resource?: CloudFormationValue<string | string
|
|
53
|
+
Resource?: CloudFormationValue<string> | Array<CloudFormationValue<string>>;
|
|
54
54
|
Principal?: CloudFormationValue<string | Record<string, string | string[]>>;
|
|
55
55
|
Condition?: Record<string, Record<string, CloudFormationValue<string | string[]>>>;
|
|
56
56
|
NotAction?: string | string[];
|
|
57
|
-
NotResource?: CloudFormationValue<string | string
|
|
57
|
+
NotResource?: CloudFormationValue<string> | Array<CloudFormationValue<string>>;
|
|
58
58
|
NotPrincipal?: CloudFormationValue<string | Record<string, string | string[]>>;
|
|
59
59
|
};
|
|
60
60
|
type PolicyDocument = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/cloudformation",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "CloudFormation utils.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"repository": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"js-yaml": "^4.1.1",
|
|
28
|
-
"@ttoss/read-config-file": "^2.2.
|
|
28
|
+
"@ttoss/read-config-file": "^2.2.12"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/jest": "^30.0.0",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"@types/node": "^24.12.0",
|
|
34
34
|
"jest": "^30.3.0",
|
|
35
35
|
"tsup": "^8.5.1",
|
|
36
|
-
"@ttoss/
|
|
37
|
-
"@ttoss/
|
|
36
|
+
"@ttoss/config": "^1.37.11",
|
|
37
|
+
"@ttoss/test-utils": "^4.2.11"
|
|
38
38
|
},
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public",
|