max-agent-ui 0.0.27 → 0.0.28
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 +7 -3
- package/fesm2022/max-agent-ui.mjs.map +1 -1
- package/index.d.ts +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -409,6 +409,7 @@ interface AssistantBootstrapConfig {
|
|
|
409
409
|
}
|
|
410
410
|
|
|
411
411
|
interface MaxAssistantConfig {
|
|
412
|
+
apiBaseUrl?: string;
|
|
412
413
|
assistantApiUrl?: string;
|
|
413
414
|
app?: AssistantProduct;
|
|
414
415
|
user?: Partial<AssistantUser> | (() => Partial<AssistantUser>);
|
|
@@ -473,6 +474,7 @@ declare class MaxAssistantSupportService {
|
|
|
473
474
|
submitTicket(ticket: AssistantSupportTicketRequest, config?: MaxAssistantConfig): Observable<AssistantSupportTicketResponse>;
|
|
474
475
|
private toTicketResponse;
|
|
475
476
|
private getHeaders;
|
|
477
|
+
private getEndpoint;
|
|
476
478
|
private getUser;
|
|
477
479
|
private mergeConfig;
|
|
478
480
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxAssistantSupportService, [null, { optional: true; }]>;
|