@floegence/redevplugin-ui 1.1.0 → 1.1.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.
@@ -86,7 +86,7 @@ export declare const redevPluginContractArtifacts: readonly [{
86
86
  readonly id: "host-capability-contract-schema";
87
87
  readonly path: "spec/plugin/host-capability-contract-v1.schema.json";
88
88
  readonly version: "host-capability-contract-v1";
89
- readonly sha256: "0a653e36d44104f1d16b06ee424648086c146f23c907b176bdf470ae73025485";
89
+ readonly sha256: "4816f59ac0819d02fb05ddd48f2ac12a2d2103a8e15d5257ca8b7d5188ab21a4";
90
90
  }, {
91
91
  readonly id: "host-capability-pin-schema";
92
92
  readonly path: "spec/plugin/host-capability-pin-v1.schema.json";
@@ -166,7 +166,7 @@ export declare const redevPluginContractArtifacts: readonly [{
166
166
  readonly id: "plugin-platform-openapi";
167
167
  readonly path: "spec/openapi/plugin-platform-v15.yaml";
168
168
  readonly version: "plugin-platform-v15";
169
- readonly sha256: "d89af4d7a1a17f6abc9f9a5c418e8f33a2e50daf8e6b64c8c37171213bf15218";
169
+ readonly sha256: "2e52294ca38c568df62297b2092f0dea91288c3692903760bf8504821e1809e1";
170
170
  }, {
171
171
  readonly id: "presentation-icon-evidence-schema";
172
172
  readonly path: "spec/plugin/presentation-icon-evidence-v1.schema.json";
@@ -83,7 +83,7 @@ export const redevPluginContractArtifacts = [
83
83
  id: "host-capability-contract-schema",
84
84
  path: "spec/plugin/host-capability-contract-v1.schema.json",
85
85
  version: "host-capability-contract-v1",
86
- sha256: "0a653e36d44104f1d16b06ee424648086c146f23c907b176bdf470ae73025485",
86
+ sha256: "4816f59ac0819d02fb05ddd48f2ac12a2d2103a8e15d5257ca8b7d5188ab21a4",
87
87
  },
88
88
  {
89
89
  id: "host-capability-pin-schema",
@@ -179,7 +179,7 @@ export const redevPluginContractArtifacts = [
179
179
  id: "plugin-platform-openapi",
180
180
  path: "spec/openapi/plugin-platform-v15.yaml",
181
181
  version: "plugin-platform-v15",
182
- sha256: "d89af4d7a1a17f6abc9f9a5c418e8f33a2e50daf8e6b64c8c37171213bf15218",
182
+ sha256: "2e52294ca38c568df62297b2092f0dea91288c3692903760bf8504821e1809e1",
183
183
  },
184
184
  {
185
185
  id: "presentation-icon-evidence-schema",
@@ -1344,8 +1344,21 @@ export interface components {
1344
1344
  SessionScopeRevokeResult: components["schemas"]["SessionScopeV1PublicRevokeResult"];
1345
1345
  SessionScopeRevokeCompleteResult: components["schemas"]["SessionScopeV1CompleteRevokeResult"];
1346
1346
  SessionScopeRevokeIncompleteResult: components["schemas"]["SessionScopeV1IncompleteRevokeResult"];
1347
+ PluginActionState: {
1348
+ can_open: boolean;
1349
+ can_enable: boolean;
1350
+ can_disable: boolean;
1351
+ can_uninstall: boolean;
1352
+ /** @enum {string} */
1353
+ blocked_reason?: "disabled" | "permission_required" | "policy_restricted" | "package_invalid" | "signature_invalid" | "signature_revoked" | "runtime_unavailable" | "incompatible";
1354
+ /** @enum {string} */
1355
+ recovery_action?: "retry";
1356
+ };
1357
+ PluginCatalogRecord: components["schemas"]["PluginRecord"] & {
1358
+ action_state: components["schemas"]["PluginActionState"];
1359
+ };
1347
1360
  PluginCatalogResult: {
1348
- plugins: components["schemas"]["PluginRecord"][];
1361
+ plugins: components["schemas"]["PluginCatalogRecord"][];
1349
1362
  };
1350
1363
  PluginCompatibilityManifest: components["schemas"]["CompatibilityManifestV18"];
1351
1364
  ExecutionList: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floegence/redevplugin-ui",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {
@@ -40,7 +40,7 @@
40
40
  "dist"
41
41
  ],
42
42
  "dependencies": {
43
- "@floegence/redevplugin-contracts": "1.1.0"
43
+ "@floegence/redevplugin-contracts": "1.1.2"
44
44
  },
45
45
  "publishConfig": {
46
46
  "access": "public"