@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 +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/lib/topics/current-workspace/v1/endpoint.model.d.ts +4 -0
- package/src/lib/topics/current-workspace/v1/endpoint.model.js +3 -0
- package/src/lib/topics/current-workspace/v1/endpoint.model.js.map +1 -0
- package/src/lib/topics/current-workspace/v1/route.model.d.ts +15 -0
- package/src/lib/topics/current-workspace/v1/route.model.js +3 -0
- package/src/lib/topics/current-workspace/v1/route.model.js.map +1 -0
- package/src/lib/topics/current-workspace/v1/workspace.model.d.ts +2 -0
package/package.json
CHANGED
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;
|
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 @@
|
|
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 @@
|
|
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
|
}
|