@chucky.cloud/sdk 0.3.1 → 0.3.2

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.cts CHANGED
@@ -1613,9 +1613,10 @@ declare function mcpServer(name: string, version?: string): McpServerBuilder;
1613
1613
  * Types for JWT tokens used for authentication and budget control.
1614
1614
  */
1615
1615
  /**
1616
- * Budget window types
1616
+ * Budget window types.
1617
+ * Use 'lifetime' for one-time tokens where the budget never resets.
1617
1618
  */
1618
- type BudgetWindow = 'hour' | 'day' | 'week' | 'month';
1619
+ type BudgetWindow = 'hour' | 'day' | 'week' | 'month' | 'lifetime';
1619
1620
  /**
1620
1621
  * Budget configuration in a token
1621
1622
  */
package/dist/index.d.ts CHANGED
@@ -1613,9 +1613,10 @@ declare function mcpServer(name: string, version?: string): McpServerBuilder;
1613
1613
  * Types for JWT tokens used for authentication and budget control.
1614
1614
  */
1615
1615
  /**
1616
- * Budget window types
1616
+ * Budget window types.
1617
+ * Use 'lifetime' for one-time tokens where the budget never resets.
1617
1618
  */
1618
- type BudgetWindow = 'hour' | 'day' | 'week' | 'month';
1619
+ type BudgetWindow = 'hour' | 'day' | 'week' | 'month' | 'lifetime';
1619
1620
  /**
1620
1621
  * Budget configuration in a token
1621
1622
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chucky.cloud/sdk",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Universal TypeScript SDK for Chucky - build Claude-powered AI assistants for browser and Node.js",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",