@elisym/sdk 0.10.2 → 0.10.3

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/dist/index.d.cts CHANGED
@@ -73,6 +73,7 @@ interface Agent {
73
73
  /** Count of all rated feedback events targeting this agent (last 30 days). */
74
74
  totalRatingCount?: number;
75
75
  picture?: string;
76
+ banner?: string;
76
77
  name?: string;
77
78
  about?: string;
78
79
  }
package/dist/index.d.ts CHANGED
@@ -73,6 +73,7 @@ interface Agent {
73
73
  /** Count of all rated feedback events targeting this agent (last 30 days). */
74
74
  totalRatingCount?: number;
75
75
  picture?: string;
76
+ banner?: string;
76
77
  name?: string;
77
78
  about?: string;
78
79
  }
package/dist/index.js CHANGED
@@ -1191,6 +1191,9 @@ var DiscoveryService = class {
1191
1191
  if (typeof meta.picture === "string") {
1192
1192
  agent.picture = meta.picture;
1193
1193
  }
1194
+ if (typeof meta.banner === "string") {
1195
+ agent.banner = meta.banner;
1196
+ }
1194
1197
  if (typeof meta.name === "string") {
1195
1198
  agent.name = meta.name;
1196
1199
  }