@onecx/integration-interface 6.14.4 → 6.15.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": "6.14.4",
3
+ "version": "6.15.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,8 +9,8 @@
9
9
  "peerDependencies": {
10
10
  "tslib": "^2.6.3",
11
11
  "rxjs": "^7.8.1",
12
- "@onecx/accelerator": "^6.14.4",
13
- "@onecx/nx-migration-utils": "^6.14.4",
12
+ "@onecx/accelerator": "^6.15.0",
13
+ "@onecx/nx-migration-utils": "^6.15.0",
14
14
  "@nx/devkit": "^20.3.0",
15
15
  "@phenomnomnominal/tsquery": "^6",
16
16
  "typescript": "^5.5.4"
package/src/index.d.ts CHANGED
@@ -6,6 +6,7 @@ export * from './lib/topics/global-error/v1/global-error.topic';
6
6
  export * from './lib/topics/global-loading/v1/global-loading.topic';
7
7
  export * from './lib/topics/current-theme/v1/current-theme.topic';
8
8
  export * from './lib/topics/current-theme/v1/theme.model';
9
+ export * from './lib/topics/current-theme/v1/theme-override.model';
9
10
  export * from './lib/topics/user-profile/v1/user-profile.model';
10
11
  export * from './lib/topics/user-profile/v1/user-profile.topic';
11
12
  export * from './lib/topics/configuration/v1/configuration.topic';
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ tslib_1.__exportStar(require("./lib/topics/global-error/v1/global-error.topic"),
9
9
  tslib_1.__exportStar(require("./lib/topics/global-loading/v1/global-loading.topic"), exports);
10
10
  tslib_1.__exportStar(require("./lib/topics/current-theme/v1/current-theme.topic"), exports);
11
11
  tslib_1.__exportStar(require("./lib/topics/current-theme/v1/theme.model"), exports);
12
+ tslib_1.__exportStar(require("./lib/topics/current-theme/v1/theme-override.model"), exports);
12
13
  tslib_1.__exportStar(require("./lib/topics/user-profile/v1/user-profile.model"), exports);
13
14
  tslib_1.__exportStar(require("./lib/topics/user-profile/v1/user-profile.topic"), exports);
14
15
  tslib_1.__exportStar(require("./lib/topics/configuration/v1/configuration.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;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;AAE3D,+FAAoE;AACpE,+FAAoE;AACpE,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;AACzD,6FAAkE;AAElE,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;AAE3D,+FAAoE;AACpE,+FAAoE;AACpE,kFAAuD"}
@@ -0,0 +1,8 @@
1
+ export declare enum OverrideType {
2
+ PRIMENG = "PRIMENG",
3
+ CSS = "CSS"
4
+ }
5
+ export interface ThemeOverride {
6
+ type?: OverrideType;
7
+ value?: string;
8
+ }
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.OverrideType = void 0;
4
+ var OverrideType;
5
+ (function (OverrideType) {
6
+ OverrideType["PRIMENG"] = "PRIMENG";
7
+ OverrideType["CSS"] = "CSS";
8
+ })(OverrideType || (exports.OverrideType = OverrideType = {}));
9
+ //# sourceMappingURL=theme-override.model.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme-override.model.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/current-theme/v1/theme-override.model.ts"],"names":[],"mappings":";;;AAAA,IAAY,YAGX;AAHD,WAAY,YAAY;IACpB,mCAAmB,CAAA;IACnB,2BAAW,CAAA;AACf,CAAC,EAHW,YAAY,4BAAZ,YAAY,QAGvB"}
@@ -1,3 +1,4 @@
1
+ import { ThemeOverride } from "./theme-override.model";
1
2
  export interface Theme {
2
3
  id?: string;
3
4
  assetsUpdateDate?: string;
@@ -13,4 +14,5 @@ export interface Theme {
13
14
  [key: string]: string;
14
15
  };
15
16
  };
17
+ overrides?: Array<ThemeOverride>;
16
18
  }