@pagelines/sdk 1.0.656 → 1.0.657

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.
@@ -25,3 +25,16 @@ export declare function formatChatVisualTick(args: {
25
25
  value: number;
26
26
  shared: ChatVisualSeries | undefined;
27
27
  }): string;
28
+ export declare const CHAT_VISUAL_X_LABEL_ANGLE = -40;
29
+ export declare const CHAT_VISUAL_ANGLED_BOTTOM_ALLOWANCE = 36;
30
+ export interface ChatVisualXLabelPlan {
31
+ mode: 'horizontal' | 'angled';
32
+ entries: Array<{
33
+ index: number;
34
+ text: string;
35
+ }>;
36
+ }
37
+ export declare function planChatVisualXLabels(args: {
38
+ labels: string[];
39
+ plotWidth: number;
40
+ }): ChatVisualXLabelPlan;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagelines/sdk",
3
- "version": "1.0.656",
3
+ "version": "1.0.657",
4
4
  "description": "PageLines SDK for agent management, auth, and billing",
5
5
  "type": "module",
6
6
  "main": "./dist/sdk.js",