@pluno/product-agent-web 0.1.185 → 0.1.187
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 +7 -0
- package/dist/modelSelection.d.ts +10 -0
- package/dist/product-agent-sdk.js +806 -765
- package/dist/product-agent-widget.js +2264 -2187
- package/dist/scheduledCheckIn.d.ts +5 -0
- package/package.json +1 -1
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
export declare const SCHEDULE_FOLLOW_UP_TOOL_NAME = "schedule_follow_up";
|
|
2
2
|
export declare const SCRIBBLED_SCHEDULE_ICON_PATHS: readonly ["M8 2.2c3.4-.2 5.8 2.4 5.7 5.8-.1 3.5-2.5 5.8-5.8 5.8-3.4 0-5.9-2.3-5.7-5.8.1-3.3 2.3-5.5 5.8-5.8Z", "M8.1 2.8c3-.1 5 2 5 5.1 0 3-2.1 5.1-5.1 5.2"];
|
|
3
3
|
export declare function getScheduledCheckInClockHandPaths(dueAt: string): string[];
|
|
4
|
+
export type ScheduledCheckIn = {
|
|
5
|
+
id: string | null;
|
|
6
|
+
dueAt: string;
|
|
7
|
+
};
|
|
8
|
+
export declare function getScheduledCheckIn(output: unknown): ScheduledCheckIn | null;
|
|
4
9
|
export declare function getScheduledCheckInAt(output: unknown): string | null;
|
|
5
10
|
export declare function formatNextCheckIn(dueAt: string, now?: Date): string | null;
|
|
6
11
|
export declare function getNextScheduledCheckInRefreshDelay(dueAt: string, now?: Date): number | null;
|
package/package.json
CHANGED