tetrons 2.3.75 → 2.3.77

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.mts CHANGED
@@ -2,11 +2,13 @@ import React from 'react';
2
2
 
3
3
  type EditorContentProps = {
4
4
  apiKey: string;
5
+ addOns?: string[];
5
6
  };
6
7
  declare function EditorContent({ apiKey }: EditorContentProps): React.JSX.Element;
7
8
 
8
9
  declare function initializeTetrons(apiKey: string): Promise<void>;
9
10
  declare function getTetronsVersion(): "" | "free" | "pro" | "premium" | "platinum";
10
11
  declare function isApiKeyValid(): boolean;
12
+ declare function isTetronsLicenseValid(): boolean;
11
13
 
12
- export { EditorContent, EditorContent as default, getTetronsVersion, initializeTetrons, isApiKeyValid };
14
+ export { EditorContent, EditorContent as default, getTetronsVersion, initializeTetrons, isApiKeyValid, isTetronsLicenseValid };
package/dist/index.d.ts CHANGED
@@ -2,11 +2,13 @@ import React from 'react';
2
2
 
3
3
  type EditorContentProps = {
4
4
  apiKey: string;
5
+ addOns?: string[];
5
6
  };
6
7
  declare function EditorContent({ apiKey }: EditorContentProps): React.JSX.Element;
7
8
 
8
9
  declare function initializeTetrons(apiKey: string): Promise<void>;
9
10
  declare function getTetronsVersion(): "" | "free" | "pro" | "premium" | "platinum";
10
11
  declare function isApiKeyValid(): boolean;
12
+ declare function isTetronsLicenseValid(): boolean;
11
13
 
12
- export { EditorContent, EditorContent as default, getTetronsVersion, initializeTetrons, isApiKeyValid };
14
+ export { EditorContent, EditorContent as default, getTetronsVersion, initializeTetrons, isApiKeyValid, isTetronsLicenseValid };