@ttoss/cloud-roles 0.8.30 → 0.8.32
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/esm/index.js +7 -2
- package/dist/index.js +6 -2
- package/package.json +4 -4
package/dist/esm/index.js
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
/** Powered by @ttoss/config. https://ttoss.dev/docs/modules/packages/config/ */
|
|
2
|
+
var __defProp = Object.defineProperty;
|
|
3
|
+
var __name = (target, value) => __defProp(target, "name", {
|
|
4
|
+
value,
|
|
5
|
+
configurable: true
|
|
6
|
+
});
|
|
2
7
|
|
|
3
8
|
// src/index.ts
|
|
4
9
|
var IAM_PATH = "/custom-iam/";
|
|
5
|
-
var createRolesTemplate = ({
|
|
10
|
+
var createRolesTemplate = /* @__PURE__ */__name(({
|
|
6
11
|
path = IAM_PATH,
|
|
7
12
|
resources
|
|
8
13
|
}) => {
|
|
@@ -34,5 +39,5 @@ var createRolesTemplate = ({
|
|
|
34
39
|
Resources: resources,
|
|
35
40
|
Outputs: outputs
|
|
36
41
|
};
|
|
37
|
-
};
|
|
42
|
+
}, "createRolesTemplate");
|
|
38
43
|
export { IAM_PATH, createRolesTemplate };
|
package/dist/index.js
CHANGED
|
@@ -5,6 +5,10 @@ var __defProp = Object.defineProperty;
|
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
6
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
7
7
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __name = (target, value) => __defProp(target, "name", {
|
|
9
|
+
value,
|
|
10
|
+
configurable: true
|
|
11
|
+
});
|
|
8
12
|
var __export = (target, all) => {
|
|
9
13
|
for (var name in all) __defProp(target, name, {
|
|
10
14
|
get: all[name],
|
|
@@ -32,7 +36,7 @@ __export(index_exports, {
|
|
|
32
36
|
});
|
|
33
37
|
module.exports = __toCommonJS(index_exports);
|
|
34
38
|
var IAM_PATH = "/custom-iam/";
|
|
35
|
-
var createRolesTemplate = ({
|
|
39
|
+
var createRolesTemplate = /* @__PURE__ */__name(({
|
|
36
40
|
path = IAM_PATH,
|
|
37
41
|
resources
|
|
38
42
|
}) => {
|
|
@@ -64,7 +68,7 @@ var createRolesTemplate = ({
|
|
|
64
68
|
Resources: resources,
|
|
65
69
|
Outputs: outputs
|
|
66
70
|
};
|
|
67
|
-
};
|
|
71
|
+
}, "createRolesTemplate");
|
|
68
72
|
// Annotate the CommonJS export names for ESM import in node:
|
|
69
73
|
0 && (module.exports = {
|
|
70
74
|
IAM_PATH,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ttoss/cloud-roles",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.32",
|
|
4
4
|
"description": "Create CloudFormation templates for roles with TypeScript.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "ttoss",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@ttoss/cloudformation": "^0.11.
|
|
26
|
+
"@ttoss/cloudformation": "^0.11.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/jest": "^30.0.0",
|
|
30
30
|
"jest": "^30.0.4",
|
|
31
31
|
"tsup": "^8.5.0",
|
|
32
|
-
"@ttoss/test-utils": "^2.1.
|
|
33
|
-
"@ttoss/config": "^1.35.
|
|
32
|
+
"@ttoss/test-utils": "^2.1.28",
|
|
33
|
+
"@ttoss/config": "^1.35.8"
|
|
34
34
|
},
|
|
35
35
|
"keywords": [],
|
|
36
36
|
"publishConfig": {
|