katucharts.js 0.2.20 → 0.2.21
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/katucharts.es.js +1106 -1105
- package/dist/katucharts.umd.js +4 -4
- package/dist/license/LicenseManager.d.ts +6 -7
- package/package.json +1 -1
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
* Validation is hybrid:
|
|
5
5
|
* - Offline: Ed25519 signature check, synchronous and instant. The bundle
|
|
6
6
|
* carries only the public key, so it can verify keys but never sign them.
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* backend falls back to the offline signature.
|
|
7
|
+
* - Online: a background POST to the issuing backend confirms the key is
|
|
8
|
+
* genuine, the subscription is active, and the current host is within the
|
|
9
|
+
* key's seat limit. Results are cached with an offline grace window. In
|
|
10
|
+
* 'strict' mode, once the grace window lapses a successful online check
|
|
11
|
+
* becomes mandatory; in 'lenient' mode an unreachable backend falls back to
|
|
12
|
+
* the offline signature.
|
|
14
13
|
*/
|
|
15
14
|
export interface LicensePayload {
|
|
16
15
|
customer: string;
|