@aakash58/chatbot 1.0.93 → 1.0.94
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/aakash58-chatbot.mjs +60 -69
- package/fesm2022/aakash58-chatbot.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, ElementRef, Renderer2, OnDestroy, SimpleChanges, RendererFactory2, OnInit, OnChanges, TrackByFunction, EventEmitter, AfterViewInit, AfterContentInit, QueryList,
|
|
2
|
+
import { InjectionToken, ElementRef, Renderer2, OnDestroy, SimpleChanges, RendererFactory2, OnInit, OnChanges, TrackByFunction, EventEmitter, AfterViewInit, AfterContentInit, QueryList, EnvironmentProviders } from '@angular/core';
|
|
3
3
|
export { provideAppInitializer } from '@angular/core';
|
|
4
4
|
import { OverlayContainer } from '@angular/cdk/overlay';
|
|
5
5
|
import { MatDialogRef, MatDialog } from '@angular/material/dialog';
|
|
@@ -244,7 +244,6 @@ declare class Doohbot extends DoohbotInput implements OnDestroy {
|
|
|
244
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<Doohbot, never>;
|
|
245
245
|
static ɵcmp: i0.ɵɵComponentDeclaration<Doohbot, "app-doohbot", never, { "config": { "alias": "config"; "required": false; }; "platformTenant": { "alias": "platformTenant"; "required": false; }; "subTenant": { "alias": "subTenant"; "required": false; }; "agent": { "alias": "agent"; "required": false; }; "buttonStyle": { "alias": "buttonStyle"; "required": false; }; "enableDrag": { "alias": "enableDrag"; "required": false; }; "enableResize": { "alias": "enableResize"; "required": false; }; "apiConfig": { "alias": "apiConfig"; "required": false; }; "userContext": { "alias": "userContext"; "required": false; }; "themeConfig": { "alias": "themeConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
246
246
|
}
|
|
247
|
-
declare function initializeApp(): Promise<any>;
|
|
248
247
|
|
|
249
248
|
declare const appConst: {
|
|
250
249
|
APP_LOGO: string;
|
|
@@ -481,7 +480,8 @@ declare class DropdownMenu implements AfterContentInit {
|
|
|
481
480
|
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownMenu, "app-dropdown-menu", never, {}, {}, ["menuItems"], ["[trigger]", "*"], true, never>;
|
|
482
481
|
}
|
|
483
482
|
|
|
484
|
-
declare
|
|
483
|
+
declare function initializeDoohbotApp(): () => Promise<any>;
|
|
484
|
+
declare function provideDoohbot(): EnvironmentProviders;
|
|
485
485
|
|
|
486
486
|
declare class AuthResult {
|
|
487
487
|
access_token: string;
|
|
@@ -975,5 +975,5 @@ declare class ResizableDialogDirective implements OnInit, OnDestroy {
|
|
|
975
975
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ResizableDialogDirective, "[resizableDialog]", never, { "enableResize": { "alias": "enableResize"; "required": false; }; }, {}, never, never, true, never>;
|
|
976
976
|
}
|
|
977
977
|
|
|
978
|
-
export { AccountService, AuthInterceptor, AuthService, ChatButtonComponent, ChatFacadeService, ChatHistoryService, ChatHistorySidebarComponent, ChatWindowComponent, ChatbotApiService, Chips, DOOHBOT_API_CONFIG, DOOHBOT_API_URL,
|
|
978
|
+
export { AccountService, AuthInterceptor, AuthService, ChatButtonComponent, ChatFacadeService, ChatHistoryService, ChatHistorySidebarComponent, ChatWindowComponent, ChatbotApiService, Chips, DOOHBOT_API_CONFIG, DOOHBOT_API_URL, DialogComponent, DialogService, Doohbot, DoohbotInput, DraggableDialogDirective, DropdownMenu, FullscreenDirective, LocalStorageService, MenuItem, MessageInputComponent, MessageListComponent, PopoutWindowDirective, PredefinedMessages, ResizableDialogDirective, SnackBar, StorageService, ThemeService, appConst, initializeDoohbotApp, provideDoohbot, provideStorage };
|
|
979
979
|
export type { ChatContext, ChatSession, ChatSessionGroup, DialogData, DoohbotApiConfig, DoohbotThemeConfig, TenantConfig, ThemeMode, UserContext };
|