@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 +3 -2
- package/dist/index.d.ts +3 -2
- package/package.json +1 -1
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