@gymmymac/bob-widget 3.2.14 → 3.2.17
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/CHANGELOG.md +31 -0
- package/dist/components/Bob.d.ts +8 -0
- package/dist/hooks/useBobChat.d.ts +9 -1
- package/dist/index.js +28 -28
- package/dist/index.mjs +7764 -3933
- package/dist/types/partner.d.ts +8 -0
- package/package.json +1 -1
package/dist/types/partner.d.ts
CHANGED
|
@@ -84,4 +84,12 @@ export interface StandaloneWidgetProps {
|
|
|
84
84
|
debug?: boolean;
|
|
85
85
|
/** Additional CSS class for container */
|
|
86
86
|
className?: string;
|
|
87
|
+
/** Optional pre-identified vehicle — Bob skips REGO lookup and goes straight to parts */
|
|
88
|
+
initialVehicle?: {
|
|
89
|
+
vehicle_id: string | number;
|
|
90
|
+
make: string;
|
|
91
|
+
model: string;
|
|
92
|
+
year: number;
|
|
93
|
+
[key: string]: unknown;
|
|
94
|
+
};
|
|
87
95
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gymmymac/bob-widget",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.17",
|
|
4
4
|
"description": "Bob - AI-powered automotive parts assistant widget with multi-tenant support, RAF animations, swipeable interactions, and GA4 analytics",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|