@onecx/integration-interface 6.8.1 → 7.0.0-rc.1

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/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@onecx/integration-interface",
3
- "version": "6.8.1",
3
+ "version": "7.0.0-rc.1",
4
4
  "license": "Apache-2.0",
5
5
  "peerDependencies": {
6
6
  "tslib": "^2.6.3",
7
7
  "rxjs": "^7.8.1",
8
- "@onecx/accelerator": "^6.8.1",
9
- "@onecx/nx-migration-utils": "^6.8.1",
8
+ "@onecx/accelerator": "^7.0.0-rc.1",
9
+ "@onecx/nx-migration-utils": "^7.0.0-rc.1",
10
10
  "@nx/devkit": "^20.3.0",
11
11
  "@phenomnomnominal/tsquery": "^6",
12
12
  "typescript": "^5.5.4"
package/src/index.d.ts CHANGED
@@ -21,6 +21,7 @@ export * from './lib/topics/remote-components/v1/remote-component.model';
21
21
  export * from './lib/topics/remote-components/v1/remote-components-info.model';
22
22
  export * from './lib/topics/remote-components/v1/slot.model';
23
23
  export * from './lib/topics/remote-components/v1/remote-components.topic';
24
+ export * from './lib/topics/static-menu-visible/v1/static-menu-visible.topic';
24
25
  export * from './lib/topics/permissions/v1/permissions.topic';
25
26
  export * from './lib/topics/permissions-rpc/v1/permissions-rpc.topic';
26
27
  export * from './lib/topics/permissions-rpc/v1/permissions-rpc.model';
package/src/index.js CHANGED
@@ -24,6 +24,7 @@ tslib_1.__exportStar(require("./lib/topics/remote-components/v1/remote-component
24
24
  tslib_1.__exportStar(require("./lib/topics/remote-components/v1/remote-components-info.model"), exports);
25
25
  tslib_1.__exportStar(require("./lib/topics/remote-components/v1/slot.model"), exports);
26
26
  tslib_1.__exportStar(require("./lib/topics/remote-components/v1/remote-components.topic"), exports);
27
+ tslib_1.__exportStar(require("./lib/topics/static-menu-visible/v1/static-menu-visible.topic"), exports);
27
28
  tslib_1.__exportStar(require("./lib/topics/permissions/v1/permissions.topic"), exports);
28
29
  tslib_1.__exportStar(require("./lib/topics/permissions-rpc/v1/permissions-rpc.topic"), exports);
29
30
  tslib_1.__exportStar(require("./lib/topics/permissions-rpc/v1/permissions-rpc.model"), exports);
package/src/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/integration-interface/src/index.ts"],"names":[],"mappings":";;;AAAA,wFAA6D;AAC7D,qFAA0D;AAC1D,0FAA+D;AAC/D,uFAA4D;AAE5D,0FAA+D;AAE/D,8FAAmE;AAEnE,4FAAiE;AACjE,oFAAyD;AAEzD,0FAA+D;AAC/D,0FAA+D;AAE/D,4FAAiE;AAEjE,oGAAyE;AACzE,0GAA+E;AAC/E,4FAAiE;AACjE,wFAA6D;AAC7D,2FAAgE;AAEhE,iGAAsE;AAEtE,gFAAqD;AACrD,gFAAqD;AAErD,mGAAwE;AACxE,yGAA8E;AAC9E,uFAA4D;AAC5D,oGAAyE;AAEzE,wFAA6D;AAE7D,gGAAqE;AACrE,gGAAqE;AAErE,8EAAmD;AACnD,kFAAuD;AACvD,sFAA2D;AAC3D,yFAA8D;AAE9D,kGAAuE;AACvE,kGAAuE;AAEvE,sFAA2D"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/integration-interface/src/index.ts"],"names":[],"mappings":";;;AAAA,wFAA6D;AAC7D,qFAA0D;AAC1D,0FAA+D;AAC/D,uFAA4D;AAE5D,0FAA+D;AAE/D,8FAAmE;AAEnE,4FAAiE;AACjE,oFAAyD;AAEzD,0FAA+D;AAC/D,0FAA+D;AAE/D,4FAAiE;AAEjE,oGAAyE;AACzE,0GAA+E;AAC/E,4FAAiE;AACjE,wFAA6D;AAC7D,2FAAgE;AAEhE,iGAAsE;AAEtE,gFAAqD;AACrD,gFAAqD;AAErD,mGAAwE;AACxE,yGAA8E;AAC9E,uFAA4D;AAC5D,oGAAyE;AACzE,wGAA6E;AAE7E,wFAA6D;AAE7D,gGAAqE;AACrE,gGAAqE;AAErE,8EAAmD;AACnD,kFAAuD;AACvD,sFAA2D;AAC3D,yFAA8D;AAE9D,kGAAuE;AACvE,kGAAuE;AAEvE,sFAA2D"}
@@ -0,0 +1,6 @@
1
+ import { Topic } from '@onecx/accelerator';
2
+ export declare class StaticMenuVisibleTopic extends Topic<{
3
+ isVisible: boolean;
4
+ }> {
5
+ constructor();
6
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StaticMenuVisibleTopic = void 0;
4
+ const accelerator_1 = require("@onecx/accelerator");
5
+ class StaticMenuVisibleTopic extends accelerator_1.Topic {
6
+ constructor() {
7
+ super('staticMenuVisible', 1);
8
+ }
9
+ }
10
+ exports.StaticMenuVisibleTopic = StaticMenuVisibleTopic;
11
+ //# sourceMappingURL=static-menu-visible.topic.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"static-menu-visible.topic.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/static-menu-visible/v1/static-menu-visible.topic.ts"],"names":[],"mappings":";;;AAAA,oDAA0C;AAE1C,MAAa,sBAAuB,SAAQ,mBAA6B;IACvE;QACE,KAAK,CAAC,mBAAmB,EAAE,CAAC,CAAC,CAAA;IAC/B,CAAC;CACF;AAJD,wDAIC"}