@lyeve-labs/client 0.2.2 → 0.3.0
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 +7 -1
- package/dist/index.d.ts +7 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -229,12 +229,18 @@ interface Entitlements {
|
|
|
229
229
|
plan: string;
|
|
230
230
|
/** License state: free | active | grace | expired. */
|
|
231
231
|
state: string;
|
|
232
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* Entitled feature names, matched verbatim. These are unprefixed and
|
|
234
|
+
* kebab-case ("rbac", "schema-ui", "cache-redis"): the plugin name, or the
|
|
235
|
+
* SKU minus its "plugin-" prefix. A "feature:"-prefixed id matches nothing.
|
|
236
|
+
*/
|
|
233
237
|
features: string[];
|
|
234
238
|
/** License expiry (ISO 8601), null when unlicensed or perpetual. */
|
|
235
239
|
expires_at: string | null;
|
|
236
240
|
/** Full days until expiry, -1 when unlicensed or perpetual. */
|
|
237
241
|
days_remaining: number;
|
|
242
|
+
/** Maximum tenants this plan allows; 0 means unlimited. */
|
|
243
|
+
tenant_quota: number;
|
|
238
244
|
}
|
|
239
245
|
|
|
240
246
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -229,12 +229,18 @@ interface Entitlements {
|
|
|
229
229
|
plan: string;
|
|
230
230
|
/** License state: free | active | grace | expired. */
|
|
231
231
|
state: string;
|
|
232
|
-
/**
|
|
232
|
+
/**
|
|
233
|
+
* Entitled feature names, matched verbatim. These are unprefixed and
|
|
234
|
+
* kebab-case ("rbac", "schema-ui", "cache-redis"): the plugin name, or the
|
|
235
|
+
* SKU minus its "plugin-" prefix. A "feature:"-prefixed id matches nothing.
|
|
236
|
+
*/
|
|
233
237
|
features: string[];
|
|
234
238
|
/** License expiry (ISO 8601), null when unlicensed or perpetual. */
|
|
235
239
|
expires_at: string | null;
|
|
236
240
|
/** Full days until expiry, -1 when unlicensed or perpetual. */
|
|
237
241
|
days_remaining: number;
|
|
242
|
+
/** Maximum tenants this plan allows; 0 means unlimited. */
|
|
243
|
+
tenant_quota: number;
|
|
238
244
|
}
|
|
239
245
|
|
|
240
246
|
/**
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lyeve-labs/client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Framework-agnostic TypeScript SDK for the LyEve Core API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "LyEve <info@lyeve.com>",
|
|
7
7
|
"type": "module",
|
|
8
|
-
"packageManager": "pnpm@
|
|
8
|
+
"packageManager": "pnpm@10.33.4",
|
|
9
9
|
"engines": {
|
|
10
10
|
"node": ">=20"
|
|
11
11
|
},
|