@onecx/integration-interface 4.42.0 → 4.43.0

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@onecx/integration-interface",
3
- "version": "4.42.0",
3
+ "version": "4.43.0",
4
4
  "peerDependencies": {
5
5
  "tslib": "^2.3.0",
6
6
  "rxjs": "7.8.1",
package/src/index.d.ts CHANGED
@@ -12,6 +12,8 @@ export * from './lib/topics/configuration/v1/configuration.topic';
12
12
  export * from './lib/topics/current-workspace/v1/current-workspace.topic';
13
13
  export * from './lib/topics/current-workspace/v1/mfe-portal-registration.model';
14
14
  export * from './lib/topics/current-workspace/v1/workspace.model';
15
+ export * from './lib/topics/current-workspace/v1/route.model';
16
+ export * from './lib/topics/current-workspace/v1/endpoint.model';
15
17
  export * from './lib/topics/is-authenticated/v1/isAuthenticated.topic';
16
18
  export * from './lib/topics/message/v1/message.model';
17
19
  export * from './lib/topics/message/v1/message.topic';
package/src/index.js CHANGED
@@ -15,6 +15,8 @@ tslib_1.__exportStar(require("./lib/topics/configuration/v1/configuration.topic"
15
15
  tslib_1.__exportStar(require("./lib/topics/current-workspace/v1/current-workspace.topic"), exports);
16
16
  tslib_1.__exportStar(require("./lib/topics/current-workspace/v1/mfe-portal-registration.model"), exports);
17
17
  tslib_1.__exportStar(require("./lib/topics/current-workspace/v1/workspace.model"), exports);
18
+ tslib_1.__exportStar(require("./lib/topics/current-workspace/v1/route.model"), exports);
19
+ tslib_1.__exportStar(require("./lib/topics/current-workspace/v1/endpoint.model"), exports);
18
20
  tslib_1.__exportStar(require("./lib/topics/is-authenticated/v1/isAuthenticated.topic"), exports);
19
21
  tslib_1.__exportStar(require("./lib/topics/message/v1/message.model"), exports);
20
22
  tslib_1.__exportStar(require("./lib/topics/message/v1/message.topic"), 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;AAEjE,iGAAsE;AAEtE,gFAAqD;AACrD,gFAAqD;AAErD,mGAAwE;AACxE,yGAA8E;AAC9E,uFAA4D;AAC5D,oGAAyE;AAEzE,wFAA6D;AAE7D,gGAAqE;AACrE,gGAAqE;AAErE,8EAAmD;AACnD,kFAAuD"}
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"}
@@ -0,0 +1,4 @@
1
+ export interface Endpoint {
2
+ name?: string;
3
+ path?: string;
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=endpoint.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"endpoint.model.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/current-workspace/v1/endpoint.model.ts"],"names":[],"mappings":""}
@@ -0,0 +1,15 @@
1
+ import { Endpoint } from './endpoint.model';
2
+ export interface Route {
3
+ url?: string;
4
+ baseUrl?: string;
5
+ remoteEntryUrl?: string;
6
+ appId?: string;
7
+ productName?: string;
8
+ technology?: string;
9
+ exposedModule?: string;
10
+ pathMatch?: string;
11
+ remoteName?: string;
12
+ elementName?: string;
13
+ displayName?: string;
14
+ endpoints?: Array<Endpoint>;
15
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=route.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"route.model.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/current-workspace/v1/route.model.ts"],"names":[],"mappings":""}
@@ -1,4 +1,5 @@
1
1
  import { MicrofrontendRegistration } from './mfe-portal-registration.model';
2
+ import { Route } from './route.model';
2
3
  export interface Workspace {
3
4
  id?: string;
4
5
  /**
@@ -58,4 +59,5 @@ export interface Workspace {
58
59
  */
59
60
  userUploaded?: boolean;
60
61
  logoSmallImageUrl?: string;
62
+ routes?: Array<Route>;
61
63
  }