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/fesm2022/max-agent-ui.mjs +39 -13
- package/fesm2022/max-agent-ui.mjs.map +1 -1
- package/index.d.ts +4 -0
- package/package.json +1 -1
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; }]>;
|