@namiruai/angular 1.10.0 → 1.12.0
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/dist/index.d.ts +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +3 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/namiru-chat.component.d.ts +31 -1
- package/package.json +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { NamiruChatComponent } from "./namiru-chat.component";
|
|
2
|
-
export type { NamiruChatConfig, NamiruChatInstance, LeadCaptureData } from "
|
|
2
|
+
export type { NamiruChatConfig, NamiruChatInstance, LeadCaptureData } from "./namiru-chat.component";
|
package/dist/index.esm.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var
|
|
1
|
+
var u=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var n=(r,e,t,s)=>{for(var a=s>1?void 0:s?m(e,t):e,h=r.length-1,c;h>=0;h--)(c=r[h])&&(a=(s?c(e,t,a):c(a))||a);return s&&a&&u(e,t,a),a};import{Component as p,EventEmitter as d,Input as o,Output as g,ViewChild as f}from"@angular/core";var l="https://namiru.ai/widget.js";function w(){return new Promise((r,e)=>{if(window.NamiruChat){r();return}let t=document.querySelector(`script[src="${l}"]`);if(t){t.addEventListener("load",()=>r()),t.addEventListener("error",()=>e(new Error("Failed to load Namiru widget script")));return}let s=document.createElement("script");s.src=l,s.async=!0,s.onload=()=>r(),s.onerror=()=>e(new Error("Failed to load Namiru widget script")),document.head.appendChild(s)})}var i=class{constructor(){this.leadCapture=new d;this.feedback=new d;this.sessionStart=new d;this.sessionEnd=new d;this.instance=null}async ngOnInit(){if(await w(),!window.NamiruChat)return;let e={agentId:this.agentId,...this.mode&&{mode:this.mode},...this.position&&{position:this.position},...this.width&&{width:this.width},...this.height&&{height:this.height},onLeadCapture:t=>this.leadCapture.emit(t),onFeedback:t=>this.feedback.emit(t),onSessionStart:t=>this.sessionStart.emit(t),onSessionEnd:t=>this.sessionEnd.emit(t)};this.instance=window.NamiruChat.init(e)}ngOnChanges(e){this.instance&&e.agentId&&!e.agentId.firstChange&&(this.instance.destroy(),this.ngOnInit())}ngOnDestroy(){this.instance?.destroy(),this.instance=null}};n([o()],i.prototype,"agentId",2),n([o()],i.prototype,"mode",2),n([o()],i.prototype,"position",2),n([o()],i.prototype,"width",2),n([o()],i.prototype,"height",2),n([g()],i.prototype,"leadCapture",2),n([g()],i.prototype,"feedback",2),n([g()],i.prototype,"sessionStart",2),n([g()],i.prototype,"sessionEnd",2),n([f("container",{static:!0})],i.prototype,"containerRef",2),i=n([p({selector:"namiru-chat",standalone:!0,template:`<div #container [style.width]="mode === 'inline' ? width : null" [style.height]="mode === 'inline' ? height : null"></div>`})],i);export{i as NamiruChatComponent};
|
|
2
2
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/namiru-chat.component.ts"],
|
|
4
|
-
"sourcesContent": ["import {\n Component,\n ElementRef,\n EventEmitter,\n Input,\n OnChanges,\n OnDestroy,\n OnInit,\n Output,\n SimpleChanges,\n ViewChild,\n} from \"@angular/core\";\
|
|
5
|
-
"mappings": "wMAAA,OACE,aAAAA,EAEA,gBAAAC,EACA,SAAAC,EAIA,UAAAC,EAEA,aAAAC,MACK,
|
|
6
|
-
"names": ["Component", "EventEmitter", "Input", "Output", "ViewChild", "
|
|
4
|
+
"sourcesContent": ["import {\n Component,\n ElementRef,\n EventEmitter,\n Input,\n OnChanges,\n OnDestroy,\n OnInit,\n Output,\n SimpleChanges,\n ViewChild,\n} from \"@angular/core\";\n\nexport interface LeadCaptureData {\n email?: string;\n name?: string;\n phone?: string;\n company?: string;\n}\n\nexport interface NamiruChatConfig {\n agentId: string;\n mode?: \"button\" | \"inline\";\n position?: \"bottom-right\" | \"bottom-left\";\n width?: string;\n height?: string;\n container?: HTMLElement;\n serverUrl?: string;\n wsUrl?: string;\n onLeadCapture?: (lead: LeadCaptureData) => void;\n onFeedback?: (rating: \"up\" | \"down\") => void;\n onSessionStart?: (sessionId: string) => void;\n onSessionEnd?: (sessionId: string) => void;\n}\n\nexport interface NamiruChatInstance {\n destroy: () => void;\n updateConfig: (config: Partial<NamiruChatConfig>) => void;\n}\n\ndeclare global {\n interface Window {\n NamiruChat?: {\n init: (config: NamiruChatConfig) => NamiruChatInstance;\n };\n }\n}\n\nconst WIDGET_SCRIPT_URL = \"https://namiru.ai/widget.js\";\n\nfunction loadWidgetScript(): Promise<void> {\n return new Promise((resolve, reject) => {\n if (window.NamiruChat) { resolve(); return; }\n const existing = document.querySelector(`script[src=\"${WIDGET_SCRIPT_URL}\"]`);\n if (existing) {\n existing.addEventListener(\"load\", () => resolve());\n existing.addEventListener(\"error\", () => reject(new Error(\"Failed to load Namiru widget script\")));\n return;\n }\n const script = document.createElement(\"script\");\n script.src = WIDGET_SCRIPT_URL;\n script.async = true;\n script.onload = () => resolve();\n script.onerror = () => reject(new Error(\"Failed to load Namiru widget script\"));\n document.head.appendChild(script);\n });\n}\n\n@Component({\n selector: \"namiru-chat\",\n standalone: true,\n template: `<div #container [style.width]=\"mode === 'inline' ? width : null\" [style.height]=\"mode === 'inline' ? height : null\"></div>`,\n})\nexport class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {\n @Input() agentId!: string;\n @Input() mode?: \"button\" | \"inline\";\n @Input() position?: \"bottom-right\" | \"bottom-left\";\n @Input() width?: string;\n @Input() height?: string;\n\n @Output() leadCapture = new EventEmitter<LeadCaptureData>();\n @Output() feedback = new EventEmitter<\"up\" | \"down\">();\n @Output() sessionStart = new EventEmitter<string>();\n @Output() sessionEnd = new EventEmitter<string>();\n\n @ViewChild(\"container\", { static: true }) containerRef!: ElementRef;\n\n private instance: NamiruChatInstance | null = null;\n\n async ngOnInit(): Promise<void> {\n await loadWidgetScript();\n if (!window.NamiruChat) return;\n\n const config: NamiruChatConfig = {\n agentId: this.agentId,\n ...(this.mode && { mode: this.mode }),\n ...(this.position && { position: this.position }),\n ...(this.width && { width: this.width }),\n ...(this.height && { height: this.height }),\n onLeadCapture: (lead) => this.leadCapture.emit(lead),\n onFeedback: (rating) => this.feedback.emit(rating),\n onSessionStart: (id) => this.sessionStart.emit(id),\n onSessionEnd: (id) => this.sessionEnd.emit(id),\n };\n\n this.instance = window.NamiruChat.init(config);\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n if (!this.instance) return;\n if (changes[\"agentId\"] && !changes[\"agentId\"].firstChange) {\n this.instance.destroy();\n this.ngOnInit();\n }\n }\n\n ngOnDestroy(): void {\n this.instance?.destroy();\n this.instance = null;\n }\n}\n"],
|
|
5
|
+
"mappings": "wMAAA,OACE,aAAAA,EAEA,gBAAAC,EACA,SAAAC,EAIA,UAAAC,EAEA,aAAAC,MACK,gBAqCP,IAAMC,EAAoB,8BAE1B,SAASC,GAAkC,CACzC,OAAO,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtC,GAAI,OAAO,WAAY,CAAED,EAAQ,EAAG,MAAQ,CAC5C,IAAME,EAAW,SAAS,cAAc,eAAeJ,CAAiB,IAAI,EAC5E,GAAII,EAAU,CACZA,EAAS,iBAAiB,OAAQ,IAAMF,EAAQ,CAAC,EACjDE,EAAS,iBAAiB,QAAS,IAAMD,EAAO,IAAI,MAAM,qCAAqC,CAAC,CAAC,EACjG,MACF,CACA,IAAME,EAAS,SAAS,cAAc,QAAQ,EAC9CA,EAAO,IAAML,EACbK,EAAO,MAAQ,GACfA,EAAO,OAAS,IAAMH,EAAQ,EAC9BG,EAAO,QAAU,IAAMF,EAAO,IAAI,MAAM,qCAAqC,CAAC,EAC9E,SAAS,KAAK,YAAYE,CAAM,CAClC,CAAC,CACH,CAOO,IAAMC,EAAN,KAAkE,CAAlE,cAOK,iBAAc,IAAIC,EAClB,cAAW,IAAIA,EACf,kBAAe,IAAIA,EACnB,gBAAa,IAAIA,EAI3B,KAAQ,SAAsC,KAE9C,MAAM,UAA0B,CAE9B,GADA,MAAMN,EAAiB,EACnB,CAAC,OAAO,WAAY,OAExB,IAAMO,EAA2B,CAC/B,QAAS,KAAK,QACd,GAAI,KAAK,MAAQ,CAAE,KAAM,KAAK,IAAK,EACnC,GAAI,KAAK,UAAY,CAAE,SAAU,KAAK,QAAS,EAC/C,GAAI,KAAK,OAAS,CAAE,MAAO,KAAK,KAAM,EACtC,GAAI,KAAK,QAAU,CAAE,OAAQ,KAAK,MAAO,EACzC,cAAgBC,GAAS,KAAK,YAAY,KAAKA,CAAI,EACnD,WAAaC,GAAW,KAAK,SAAS,KAAKA,CAAM,EACjD,eAAiBC,GAAO,KAAK,aAAa,KAAKA,CAAE,EACjD,aAAeA,GAAO,KAAK,WAAW,KAAKA,CAAE,CAC/C,EAEA,KAAK,SAAW,OAAO,WAAW,KAAKH,CAAM,CAC/C,CAEA,YAAYI,EAA8B,CACnC,KAAK,UACNA,EAAQ,SAAc,CAACA,EAAQ,QAAW,cAC5C,KAAK,SAAS,QAAQ,EACtB,KAAK,SAAS,EAElB,CAEA,aAAoB,CAClB,KAAK,UAAU,QAAQ,EACvB,KAAK,SAAW,IAClB,CACF,EA9CWC,EAAA,CAARC,EAAM,GADIR,EACF,uBACAO,EAAA,CAARC,EAAM,GAFIR,EAEF,oBACAO,EAAA,CAARC,EAAM,GAHIR,EAGF,wBACAO,EAAA,CAARC,EAAM,GAJIR,EAIF,qBACAO,EAAA,CAARC,EAAM,GALIR,EAKF,sBAECO,EAAA,CAATE,EAAO,GAPGT,EAOD,2BACAO,EAAA,CAATE,EAAO,GARGT,EAQD,wBACAO,EAAA,CAATE,EAAO,GATGT,EASD,4BACAO,EAAA,CAATE,EAAO,GAVGT,EAUD,0BAEgCO,EAAA,CAAzCG,EAAU,YAAa,CAAE,OAAQ,EAAK,CAAC,GAZ7BV,EAY+B,4BAZ/BA,EAANO,EAAA,CALNI,EAAU,CACT,SAAU,cACV,WAAY,GACZ,SAAU,4HACZ,CAAC,GACYX",
|
|
6
|
+
"names": ["Component", "EventEmitter", "Input", "Output", "ViewChild", "WIDGET_SCRIPT_URL", "loadWidgetScript", "resolve", "reject", "existing", "script", "NamiruChatComponent", "EventEmitter", "config", "lead", "rating", "id", "changes", "__decorateClass", "Input", "Output", "ViewChild", "Component"]
|
|
7
7
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var d=Object.defineProperty;var c=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var m=Object.prototype.hasOwnProperty;var p=(s,t)=>{for(var i in t)d(s,i,{get:t[i],enumerable:!0})},f=(s,t,i,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of u(t))!m.call(s,a)&&a!==i&&d(s,a,{get:()=>t[a],enumerable:!(r=c(t,a))||r.enumerable});return s};var w=s=>f(d({},"__esModule",{value:!0}),s),o=(s,t,i,r)=>{for(var a=r>1?void 0:r?c(t,i):t,g=s.length-1,h;g>=0;g--)(h=s[g])&&(a=(r?h(t,i,a):h(a))||a);return r&&a&&d(t,i,a),a};var v={};p(v,{NamiruChatComponent:()=>n});module.exports=w(v);var e=require("@angular/core");var l="https://namiru.ai/widget.js";function I(){return new Promise((s,t)=>{if(window.NamiruChat){s();return}let i=document.querySelector(`script[src="${l}"]`);if(i){i.addEventListener("load",()=>s()),i.addEventListener("error",()=>t(new Error("Failed to load Namiru widget script")));return}let r=document.createElement("script");r.src=l,r.async=!0,r.onload=()=>s(),r.onerror=()=>t(new Error("Failed to load Namiru widget script")),document.head.appendChild(r)})}var n=class{constructor(){this.leadCapture=new e.EventEmitter;this.feedback=new e.EventEmitter;this.sessionStart=new e.EventEmitter;this.sessionEnd=new e.EventEmitter;this.instance=null}async ngOnInit(){if(await I(),!window.NamiruChat)return;let t={agentId:this.agentId,...this.mode&&{mode:this.mode},...this.position&&{position:this.position},...this.width&&{width:this.width},...this.height&&{height:this.height},onLeadCapture:i=>this.leadCapture.emit(i),onFeedback:i=>this.feedback.emit(i),onSessionStart:i=>this.sessionStart.emit(i),onSessionEnd:i=>this.sessionEnd.emit(i)};this.instance=window.NamiruChat.init(t)}ngOnChanges(t){this.instance&&t.agentId&&!t.agentId.firstChange&&(this.instance.destroy(),this.ngOnInit())}ngOnDestroy(){this.instance?.destroy(),this.instance=null}};o([(0,e.Input)()],n.prototype,"agentId",2),o([(0,e.Input)()],n.prototype,"mode",2),o([(0,e.Input)()],n.prototype,"position",2),o([(0,e.Input)()],n.prototype,"width",2),o([(0,e.Input)()],n.prototype,"height",2),o([(0,e.Output)()],n.prototype,"leadCapture",2),o([(0,e.Output)()],n.prototype,"feedback",2),o([(0,e.Output)()],n.prototype,"sessionStart",2),o([(0,e.Output)()],n.prototype,"sessionEnd",2),o([(0,e.ViewChild)("container",{static:!0})],n.prototype,"containerRef",2),n=o([(0,e.Component)({selector:"namiru-chat",standalone:!0,template:`<div #container [style.width]="mode === 'inline' ? width : null" [style.height]="mode === 'inline' ? height : null"></div>`})],n);
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../src/index.ts", "../src/namiru-chat.component.ts"],
|
|
4
|
-
"sourcesContent": ["export { NamiruChatComponent } from \"./namiru-chat.component\";\nexport type { NamiruChatConfig, NamiruChatInstance, LeadCaptureData } from \"
|
|
5
|
-
"mappings": "
|
|
6
|
-
"names": ["src_exports", "__export", "NamiruChatComponent", "__toCommonJS", "import_core", "
|
|
4
|
+
"sourcesContent": ["export { NamiruChatComponent } from \"./namiru-chat.component\";\nexport type { NamiruChatConfig, NamiruChatInstance, LeadCaptureData } from \"./namiru-chat.component\";\n", "import {\n Component,\n ElementRef,\n EventEmitter,\n Input,\n OnChanges,\n OnDestroy,\n OnInit,\n Output,\n SimpleChanges,\n ViewChild,\n} from \"@angular/core\";\n\nexport interface LeadCaptureData {\n email?: string;\n name?: string;\n phone?: string;\n company?: string;\n}\n\nexport interface NamiruChatConfig {\n agentId: string;\n mode?: \"button\" | \"inline\";\n position?: \"bottom-right\" | \"bottom-left\";\n width?: string;\n height?: string;\n container?: HTMLElement;\n serverUrl?: string;\n wsUrl?: string;\n onLeadCapture?: (lead: LeadCaptureData) => void;\n onFeedback?: (rating: \"up\" | \"down\") => void;\n onSessionStart?: (sessionId: string) => void;\n onSessionEnd?: (sessionId: string) => void;\n}\n\nexport interface NamiruChatInstance {\n destroy: () => void;\n updateConfig: (config: Partial<NamiruChatConfig>) => void;\n}\n\ndeclare global {\n interface Window {\n NamiruChat?: {\n init: (config: NamiruChatConfig) => NamiruChatInstance;\n };\n }\n}\n\nconst WIDGET_SCRIPT_URL = \"https://namiru.ai/widget.js\";\n\nfunction loadWidgetScript(): Promise<void> {\n return new Promise((resolve, reject) => {\n if (window.NamiruChat) { resolve(); return; }\n const existing = document.querySelector(`script[src=\"${WIDGET_SCRIPT_URL}\"]`);\n if (existing) {\n existing.addEventListener(\"load\", () => resolve());\n existing.addEventListener(\"error\", () => reject(new Error(\"Failed to load Namiru widget script\")));\n return;\n }\n const script = document.createElement(\"script\");\n script.src = WIDGET_SCRIPT_URL;\n script.async = true;\n script.onload = () => resolve();\n script.onerror = () => reject(new Error(\"Failed to load Namiru widget script\"));\n document.head.appendChild(script);\n });\n}\n\n@Component({\n selector: \"namiru-chat\",\n standalone: true,\n template: `<div #container [style.width]=\"mode === 'inline' ? width : null\" [style.height]=\"mode === 'inline' ? height : null\"></div>`,\n})\nexport class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {\n @Input() agentId!: string;\n @Input() mode?: \"button\" | \"inline\";\n @Input() position?: \"bottom-right\" | \"bottom-left\";\n @Input() width?: string;\n @Input() height?: string;\n\n @Output() leadCapture = new EventEmitter<LeadCaptureData>();\n @Output() feedback = new EventEmitter<\"up\" | \"down\">();\n @Output() sessionStart = new EventEmitter<string>();\n @Output() sessionEnd = new EventEmitter<string>();\n\n @ViewChild(\"container\", { static: true }) containerRef!: ElementRef;\n\n private instance: NamiruChatInstance | null = null;\n\n async ngOnInit(): Promise<void> {\n await loadWidgetScript();\n if (!window.NamiruChat) return;\n\n const config: NamiruChatConfig = {\n agentId: this.agentId,\n ...(this.mode && { mode: this.mode }),\n ...(this.position && { position: this.position }),\n ...(this.width && { width: this.width }),\n ...(this.height && { height: this.height }),\n onLeadCapture: (lead) => this.leadCapture.emit(lead),\n onFeedback: (rating) => this.feedback.emit(rating),\n onSessionStart: (id) => this.sessionStart.emit(id),\n onSessionEnd: (id) => this.sessionEnd.emit(id),\n };\n\n this.instance = window.NamiruChat.init(config);\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n if (!this.instance) return;\n if (changes[\"agentId\"] && !changes[\"agentId\"].firstChange) {\n this.instance.destroy();\n this.ngOnInit();\n }\n }\n\n ngOnDestroy(): void {\n this.instance?.destroy();\n this.instance = null;\n }\n}\n"],
|
|
5
|
+
"mappings": "2iBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,yBAAAE,IAAA,eAAAC,EAAAH,GCAA,IAAAI,EAWO,yBAqCP,IAAMC,EAAoB,8BAE1B,SAASC,GAAkC,CACzC,OAAO,IAAI,QAAQ,CAACC,EAASC,IAAW,CACtC,GAAI,OAAO,WAAY,CAAED,EAAQ,EAAG,MAAQ,CAC5C,IAAME,EAAW,SAAS,cAAc,eAAeJ,CAAiB,IAAI,EAC5E,GAAII,EAAU,CACZA,EAAS,iBAAiB,OAAQ,IAAMF,EAAQ,CAAC,EACjDE,EAAS,iBAAiB,QAAS,IAAMD,EAAO,IAAI,MAAM,qCAAqC,CAAC,CAAC,EACjG,MACF,CACA,IAAME,EAAS,SAAS,cAAc,QAAQ,EAC9CA,EAAO,IAAML,EACbK,EAAO,MAAQ,GACfA,EAAO,OAAS,IAAMH,EAAQ,EAC9BG,EAAO,QAAU,IAAMF,EAAO,IAAI,MAAM,qCAAqC,CAAC,EAC9E,SAAS,KAAK,YAAYE,CAAM,CAClC,CAAC,CACH,CAOO,IAAMC,EAAN,KAAkE,CAAlE,cAOK,iBAAc,IAAI,eAClB,cAAW,IAAI,eACf,kBAAe,IAAI,eACnB,gBAAa,IAAI,eAI3B,KAAQ,SAAsC,KAE9C,MAAM,UAA0B,CAE9B,GADA,MAAML,EAAiB,EACnB,CAAC,OAAO,WAAY,OAExB,IAAMM,EAA2B,CAC/B,QAAS,KAAK,QACd,GAAI,KAAK,MAAQ,CAAE,KAAM,KAAK,IAAK,EACnC,GAAI,KAAK,UAAY,CAAE,SAAU,KAAK,QAAS,EAC/C,GAAI,KAAK,OAAS,CAAE,MAAO,KAAK,KAAM,EACtC,GAAI,KAAK,QAAU,CAAE,OAAQ,KAAK,MAAO,EACzC,cAAgBC,GAAS,KAAK,YAAY,KAAKA,CAAI,EACnD,WAAaC,GAAW,KAAK,SAAS,KAAKA,CAAM,EACjD,eAAiBC,GAAO,KAAK,aAAa,KAAKA,CAAE,EACjD,aAAeA,GAAO,KAAK,WAAW,KAAKA,CAAE,CAC/C,EAEA,KAAK,SAAW,OAAO,WAAW,KAAKH,CAAM,CAC/C,CAEA,YAAYI,EAA8B,CACnC,KAAK,UACNA,EAAQ,SAAc,CAACA,EAAQ,QAAW,cAC5C,KAAK,SAAS,QAAQ,EACtB,KAAK,SAAS,EAElB,CAEA,aAAoB,CAClB,KAAK,UAAU,QAAQ,EACvB,KAAK,SAAW,IAClB,CACF,EA9CWC,EAAA,IAAR,SAAM,GADIN,EACF,uBACAM,EAAA,IAAR,SAAM,GAFIN,EAEF,oBACAM,EAAA,IAAR,SAAM,GAHIN,EAGF,wBACAM,EAAA,IAAR,SAAM,GAJIN,EAIF,qBACAM,EAAA,IAAR,SAAM,GALIN,EAKF,sBAECM,EAAA,IAAT,UAAO,GAPGN,EAOD,2BACAM,EAAA,IAAT,UAAO,GARGN,EAQD,wBACAM,EAAA,IAAT,UAAO,GATGN,EASD,4BACAM,EAAA,IAAT,UAAO,GAVGN,EAUD,0BAEgCM,EAAA,IAAzC,aAAU,YAAa,CAAE,OAAQ,EAAK,CAAC,GAZ7BN,EAY+B,4BAZ/BA,EAANM,EAAA,IALN,aAAU,CACT,SAAU,cACV,WAAY,GACZ,SAAU,4HACZ,CAAC,GACYN",
|
|
6
|
+
"names": ["src_exports", "__export", "NamiruChatComponent", "__toCommonJS", "import_core", "WIDGET_SCRIPT_URL", "loadWidgetScript", "resolve", "reject", "existing", "script", "NamiruChatComponent", "config", "lead", "rating", "id", "changes", "__decorateClass"]
|
|
7
7
|
}
|
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
|
|
2
|
-
|
|
2
|
+
export interface LeadCaptureData {
|
|
3
|
+
email?: string;
|
|
4
|
+
name?: string;
|
|
5
|
+
phone?: string;
|
|
6
|
+
company?: string;
|
|
7
|
+
}
|
|
8
|
+
export interface NamiruChatConfig {
|
|
9
|
+
agentId: string;
|
|
10
|
+
mode?: "button" | "inline";
|
|
11
|
+
position?: "bottom-right" | "bottom-left";
|
|
12
|
+
width?: string;
|
|
13
|
+
height?: string;
|
|
14
|
+
container?: HTMLElement;
|
|
15
|
+
serverUrl?: string;
|
|
16
|
+
wsUrl?: string;
|
|
17
|
+
onLeadCapture?: (lead: LeadCaptureData) => void;
|
|
18
|
+
onFeedback?: (rating: "up" | "down") => void;
|
|
19
|
+
onSessionStart?: (sessionId: string) => void;
|
|
20
|
+
onSessionEnd?: (sessionId: string) => void;
|
|
21
|
+
}
|
|
22
|
+
export interface NamiruChatInstance {
|
|
23
|
+
destroy: () => void;
|
|
24
|
+
updateConfig: (config: Partial<NamiruChatConfig>) => void;
|
|
25
|
+
}
|
|
26
|
+
declare global {
|
|
27
|
+
interface Window {
|
|
28
|
+
NamiruChat?: {
|
|
29
|
+
init: (config: NamiruChatConfig) => NamiruChatInstance;
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
}
|
|
3
33
|
export declare class NamiruChatComponent implements OnInit, OnDestroy, OnChanges {
|
|
4
34
|
agentId: string;
|
|
5
35
|
mode?: "button" | "inline";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namiruai/angular",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "Angular wrapper for Namiru AI chat widget",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -36,8 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@angular/core": ">=15.0.0",
|
|
39
|
-
"@angular/common": ">=15.0.0"
|
|
40
|
-
"@namiruai/chat": "^1.0.0"
|
|
39
|
+
"@angular/common": ">=15.0.0"
|
|
41
40
|
},
|
|
42
41
|
"devDependencies": {
|
|
43
42
|
"@angular/core": "^17.0.0",
|