max-agent-ui 0.0.27 → 0.0.29

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
@@ -246,8 +246,10 @@ interface AssistantResponseTablePagination {
246
246
  offset: number;
247
247
  pageSize: 250;
248
248
  totalRecords: number;
249
+ totalRecordsExact?: boolean;
249
250
  returnedRecords: number;
250
251
  remainingRecords: number;
252
+ hasMore?: boolean;
251
253
  nextOffset?: number;
252
254
  }
253
255
  interface AssistantResponseTableAction {
@@ -409,6 +411,7 @@ interface AssistantBootstrapConfig {
409
411
  }
410
412
 
411
413
  interface MaxAssistantConfig {
414
+ apiBaseUrl?: string;
412
415
  assistantApiUrl?: string;
413
416
  app?: AssistantProduct;
414
417
  user?: Partial<AssistantUser> | (() => Partial<AssistantUser>);
@@ -473,6 +476,7 @@ declare class MaxAssistantSupportService {
473
476
  submitTicket(ticket: AssistantSupportTicketRequest, config?: MaxAssistantConfig): Observable<AssistantSupportTicketResponse>;
474
477
  private toTicketResponse;
475
478
  private getHeaders;
479
+ private getEndpoint;
476
480
  private getUser;
477
481
  private mergeConfig;
478
482
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxAssistantSupportService, [null, { optional: true; }]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "max-agent-ui",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },