max-agent-ui 0.0.32 → 0.0.33

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/index.d.ts CHANGED
@@ -181,12 +181,14 @@ interface AssistantDisplayResponse {
181
181
  rota?: AssistantRotaCalendar;
182
182
  markdown?: string;
183
183
  }
184
- type AssistantHelpIcon = 'budget' | 'calendar' | 'document' | 'megaphone' | 'people' | 'team' | 'time-off' | 'timesheet' | 'workflow';
184
+ type AssistantHelpIcon = 'budget' | 'calendar' | 'document' | 'knowledge' | 'megaphone' | 'people' | 'team' | 'time-off' | 'timesheet' | 'workflow';
185
185
  interface AssistantHelpGuide {
186
+ kind?: 'procedure' | 'information';
186
187
  title: string;
187
188
  summary: string;
188
189
  icon: AssistantHelpIcon;
189
190
  steps: string[];
191
+ content?: string;
190
192
  tips?: string[];
191
193
  restrictions?: string[];
192
194
  accessNote?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "max-agent-ui",
3
- "version": "0.0.32",
3
+ "version": "0.0.33",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },