@onecx/integration-interface 7.0.0-rc.7 → 7.0.0-rc.9

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": "7.0.0-rc.7",
3
+ "version": "7.0.0-rc.9",
4
4
  "license": "Apache-2.0",
5
5
  "peerDependencies": {
6
6
  "tslib": "^2.6.3",
7
7
  "rxjs": "^7.8.1",
8
- "@onecx/accelerator": "^7.0.0-rc.7",
9
- "@onecx/nx-migration-utils": "^7.0.0-rc.7",
8
+ "@onecx/accelerator": "^7.0.0-rc.9",
9
+ "@onecx/nx-migration-utils": "^7.0.0-rc.9",
10
10
  "@nx/devkit": "^20.3.0",
11
11
  "@phenomnomnominal/tsquery": "^6",
12
12
  "typescript": "^5.5.4"
@@ -2,5 +2,5 @@ export declare enum EventType {
2
2
  NAVIGATED = "navigated",
3
3
  AUTH_LOGOUT_BUTTON_CLICKED = "authentication#logoutButtonClicked",
4
4
  SLOT_RESIZED = "slot#resized",
5
- SLOT_GROUP_RESIZED = "slot#resized_group"
5
+ SLOT_GROUP_RESIZED = "slotGroup#resized"
6
6
  }
@@ -6,6 +6,6 @@ var EventType;
6
6
  EventType["NAVIGATED"] = "navigated";
7
7
  EventType["AUTH_LOGOUT_BUTTON_CLICKED"] = "authentication#logoutButtonClicked";
8
8
  EventType["SLOT_RESIZED"] = "slot#resized";
9
- EventType["SLOT_GROUP_RESIZED"] = "slot#resized_group";
9
+ EventType["SLOT_GROUP_RESIZED"] = "slotGroup#resized";
10
10
  })(EventType || (exports.EventType = EventType = {}));
11
11
  //# sourceMappingURL=event-type.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"event-type.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/events/v1/event-type.ts"],"names":[],"mappings":";;;AAAA,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,8EAAiE,CAAA;IACjE,0CAA6B,CAAA;IAC7B,sDAAyC,CAAA;AAC3C,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB"}
1
+ {"version":3,"file":"event-type.js","sourceRoot":"","sources":["../../../../../../../../libs/integration-interface/src/lib/topics/events/v1/event-type.ts"],"names":[],"mappings":";;;AAAA,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,oCAAuB,CAAA;IACvB,8EAAiE,CAAA;IACjE,0CAA6B,CAAA;IAC7B,qDAAwC,CAAA;AAC1C,CAAC,EALW,SAAS,yBAAT,SAAS,QAKpB"}
@@ -4,8 +4,8 @@ export type SlotGroupResizedDetails = {
4
4
  height: number;
5
5
  };
6
6
  export type SlotGroupResizedEventPayload = {
7
- slotName: string;
8
- slotDetails: SlotGroupResizedDetails;
7
+ slotGroupName: string;
8
+ slotGroupDetails: SlotGroupResizedDetails;
9
9
  };
10
10
  export type SlotGroupResizedEvent = {
11
11
  type: EventType.SLOT_GROUP_RESIZED;