@kumori/aurora-interfaces 1.0.23 → 1.0.25

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.
@@ -148,7 +148,7 @@ const callToActionDefinitions: callToAction[] = [
148
148
  // (exitos) que conviene que el usuario pueda abrir con un click.
149
149
  {
150
150
  type: "tenant-created",
151
- criticality: "low",
151
+ criticality: "high",
152
152
  actions: [
153
153
  { label: "View tenant", buttonType: "text", route: ROUTE_NAMES.TENANTS },
154
154
  ],
@@ -77,6 +77,7 @@ export class User implements UserData {
77
77
  this.platform = platform ?? userData.platform;
78
78
  this.status = userData.status || "logged";
79
79
  this.notifications = userData.notifications || [];
80
+ this.callToActionNotifications = userData.callToActionNotifications || [];
80
81
  this.plans = userData.plans || [];
81
82
  this.provider = userData.provider;
82
83
  this.discoveryMethod = userData.discoveryMethod;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-interfaces",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "aurora interfaces",
5
5
  "main": "export-interfaces.ts",
6
6
  "repository": {