@pagelines/sdk 1.0.742 → 1.0.744

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.
@@ -77,6 +77,7 @@ export declare function getDemoAgentByHandle(handle: string): Partial<{
77
77
  handle: string;
78
78
  }[] | null | undefined;
79
79
  model?: string | null | undefined;
80
+ billingTier?: "essential" | "professional" | "business" | undefined;
80
81
  lastActiveAt?: string | null | undefined;
81
82
  lastMessageAt?: string | null | undefined;
82
83
  runtime?: string | undefined;
@@ -190,6 +190,7 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
190
190
  handle: string;
191
191
  }[] | null | undefined;
192
192
  model?: string | null | undefined;
193
+ billingTier?: "essential" | "professional" | "business" | undefined;
193
194
  lastActiveAt?: string | null | undefined;
194
195
  lastMessageAt?: string | null | undefined;
195
196
  runtime?: string | undefined;
@@ -412,6 +413,7 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
412
413
  handle: string;
413
414
  }[] | null | undefined;
414
415
  model?: string | null | undefined;
416
+ billingTier?: "essential" | "professional" | "business" | undefined;
415
417
  lastActiveAt?: string | null | undefined;
416
418
  lastMessageAt?: string | null | undefined;
417
419
  runtime?: string | undefined;
@@ -534,6 +536,7 @@ export declare class PageLinesSDK extends SettingsObject<PageLinesSDKSettings> {
534
536
  handle: string;
535
537
  }[] | null | undefined;
536
538
  model?: string | null | undefined;
539
+ billingTier?: "essential" | "professional" | "business" | undefined;
537
540
  lastActiveAt?: string | null | undefined;
538
541
  lastMessageAt?: string | null | undefined;
539
542
  runtime?: string | undefined;
@@ -72,6 +72,7 @@ export declare function useWidgetState(props: {
72
72
  handle: string;
73
73
  }[] | null | undefined;
74
74
  model?: string | null | undefined;
75
+ billingTier?: "essential" | "professional" | "business" | undefined;
75
76
  lastActiveAt?: string | null | undefined;
76
77
  lastMessageAt?: string | null | undefined;
77
78
  runtime?: string | undefined;
@@ -202,6 +203,7 @@ export declare function useWidgetState(props: {
202
203
  handle: string;
203
204
  }[] | null | undefined;
204
205
  model?: string | null | undefined;
206
+ billingTier?: "essential" | "professional" | "business" | undefined;
205
207
  lastActiveAt?: string | null | undefined;
206
208
  lastMessageAt?: string | null | undefined;
207
209
  runtime?: string | undefined;
@@ -332,6 +334,7 @@ export declare function useWidgetState(props: {
332
334
  handle: string;
333
335
  }[] | null | undefined;
334
336
  model?: string | null | undefined;
337
+ billingTier?: "essential" | "professional" | "business" | undefined;
335
338
  lastActiveAt?: string | null | undefined;
336
339
  lastMessageAt?: string | null | undefined;
337
340
  runtime?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pagelines/sdk",
3
- "version": "1.0.742",
3
+ "version": "1.0.744",
4
4
  "description": "PageLines SDK for agent management, auth, and billing",
5
5
  "type": "module",
6
6
  "main": "./dist/sdk.js",
@@ -84,7 +84,7 @@
84
84
  },
85
85
  "scripts": {
86
86
  "dev": "WATCH=1 NODE_OPTIONS=--disable-warning=DEP0205 node scripts/dev-watch.mjs",
87
- "build": "NODE_OPTIONS=--disable-warning=DEP0205 vite build --config vite.config.sdk.ts",
87
+ "build": "pnpm --filter @pagelines/core build && NODE_OPTIONS=--disable-warning=DEP0205 vite build --config vite.config.sdk.ts",
88
88
  "preview": "vite preview --config vite.config.sdk.ts",
89
89
  "typecheck": "vue-tsc --noEmit",
90
90
  "test": "vitest run",