@flowcore/cli-plugin-iam 1.2.1 → 1.2.3

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/.npmrc ADDED
@@ -0,0 +1 @@
1
+ @jsr:registry=https://npm.jsr.io
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.3](https://github.com/flowcore-io/cli-plugin-iam/compare/v1.2.2...v1.2.3) (2024-10-23)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **configuration:** :rocket: moved back to using jsr ([e3c107c](https://github.com/flowcore-io/cli-plugin-iam/commit/e3c107cedec7962e72eb13333015af9f3525bfd1))
9
+ * include npmrc file in package ([1332d3e](https://github.com/flowcore-io/cli-plugin-iam/commit/1332d3e5b17024ed0a1e6e3cad2d5b8b8d2ee7dc))
10
+
11
+ ## [1.2.2](https://github.com/flowcore-io/cli-plugin-iam/compare/v1.2.1...v1.2.2) (2024-10-22)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **configuration:** :bug: changed capitalization of policy document action dto ([6db5015](https://github.com/flowcore-io/cli-plugin-iam/commit/6db5015a1574f4ca146808d19f4fab60df2ed909))
17
+
3
18
  ## [1.2.1](https://github.com/flowcore-io/cli-plugin-iam/compare/v1.2.0...v1.2.1) (2024-10-22)
4
19
 
5
20
 
package/README.md CHANGED
@@ -18,7 +18,7 @@ $ npm install -g @flowcore/cli-plugin-iam
18
18
  $ iam COMMAND
19
19
  running command...
20
20
  $ iam (--version)
21
- @flowcore/cli-plugin-iam/1.2.1 linux-x64 node-v20.18.0
21
+ @flowcore/cli-plugin-iam/1.2.3 linux-x64 node-v20.18.0
22
22
  $ iam --help [COMMAND]
23
23
  USAGE
24
24
  $ iam COMMAND
@@ -53,7 +53,7 @@ DESCRIPTION
53
53
  Delete a policy
54
54
  ```
55
55
 
56
- _See code: [src/commands/delete/policy.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.1/src/commands/delete/policy.ts)_
56
+ _See code: [src/commands/delete/policy.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.3/src/commands/delete/policy.ts)_
57
57
 
58
58
  ## `iam delete role NAME`
59
59
 
@@ -76,7 +76,7 @@ DESCRIPTION
76
76
  Delete a role
77
77
  ```
78
78
 
79
- _See code: [src/commands/delete/role.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.1/src/commands/delete/role.ts)_
79
+ _See code: [src/commands/delete/role.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.3/src/commands/delete/role.ts)_
80
80
 
81
81
  ## `iam get policy [NAME]`
82
82
 
@@ -99,7 +99,7 @@ DESCRIPTION
99
99
  Get a policy
100
100
  ```
101
101
 
102
- _See code: [src/commands/get/policy.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.1/src/commands/get/policy.ts)_
102
+ _See code: [src/commands/get/policy.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.3/src/commands/get/policy.ts)_
103
103
 
104
104
  ## `iam get role [NAME]`
105
105
 
@@ -122,5 +122,5 @@ DESCRIPTION
122
122
  Get a role
123
123
  ```
124
124
 
125
- _See code: [src/commands/get/role.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.1/src/commands/get/role.ts)_
125
+ _See code: [src/commands/get/role.ts](https://github.com/flowcore-io/cli-plugin-iam/blob/v1.2.3/src/commands/get/role.ts)_
126
126
  <!-- commandsstop -->
@@ -3,10 +3,10 @@ import { z } from "zod";
3
3
  import type { Api as IamApi } from "../utils/clients/iam/Api.js";
4
4
  export declare enum PolicyDocumentAction {
5
5
  ALL = "*",
6
- FETCH = "FETCH",
7
- INGEST = "INGEST",
8
- READ = "READ",
9
- WRITE = "WRITE"
6
+ FETCH = "fetch",
7
+ INGEST = "ingest",
8
+ READ = "read",
9
+ WRITE = "write"
10
10
  }
11
11
  export declare const policyDto: z.ZodObject<z.objectUtil.extendShape<{
12
12
  apiVersion: z.ZodString;
@@ -7,10 +7,10 @@ import { z } from "zod";
7
7
  export var PolicyDocumentAction;
8
8
  (function (PolicyDocumentAction) {
9
9
  PolicyDocumentAction["ALL"] = "*";
10
- PolicyDocumentAction["FETCH"] = "FETCH";
11
- PolicyDocumentAction["INGEST"] = "INGEST";
12
- PolicyDocumentAction["READ"] = "READ";
13
- PolicyDocumentAction["WRITE"] = "WRITE";
10
+ PolicyDocumentAction["FETCH"] = "fetch";
11
+ PolicyDocumentAction["INGEST"] = "ingest";
12
+ PolicyDocumentAction["READ"] = "read";
13
+ PolicyDocumentAction["WRITE"] = "write";
14
14
  })(PolicyDocumentAction || (PolicyDocumentAction = {}));
15
15
  export const policyDto = baseResourceDto.extend({
16
16
  spec: z.object({
@@ -245,5 +245,5 @@
245
245
  ]
246
246
  }
247
247
  },
248
- "version": "1.2.1"
248
+ "version": "1.2.3"
249
249
  }
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "@oclif/core": "^4.0.21",
10
10
  "@oclif/plugin-help": "^6",
11
11
  "@oclif/plugin-plugins": "^5.4.7",
12
- "@opentf/obj-diff": "^0.12.0",
12
+ "@opentf/obj-diff": "npm:@jsr/opentf__obj-diff",
13
13
  "add": "^2.0.6",
14
14
  "dayjs": "^1.11.10",
15
15
  "deepmerge": "^4.3.1",
@@ -53,7 +53,8 @@
53
53
  "files": [
54
54
  "/bin",
55
55
  "/dist",
56
- "/oclif.manifest.json"
56
+ "/oclif.manifest.json",
57
+ ".npmrc"
57
58
  ],
58
59
  "homepage": "https://github.com/flowcore-io/cli-plugin-iam",
59
60
  "license": "MIT",
@@ -90,7 +91,7 @@
90
91
  "version": "oclif readme && git add README.md",
91
92
  "update-schema": "rover graph introspect https://graph.api.flowcore.io/graphql -o schema.gql"
92
93
  },
93
- "version": "1.2.1",
94
+ "version": "1.2.3",
94
95
  "bugs": "https://github.com/flowcore-io/cli-plugin-iam/issues",
95
96
  "keywords": [
96
97
  "oclif"