@digo-labs/common 0.1.13 → 0.1.15
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/constants.d.ts +3 -1
- package/dist/icons.d.ts +4 -0
- package/dist/images.d.ts +7 -0
- package/dist/index.css +8 -0
- package/dist/index.js +133 -77
- package/dist/index.js.map +1 -1
- package/dist/models.d.ts +1 -1
- package/dist/types/common-types.d.ts +2 -0
- package/dist/types/websocket-types.d.ts +1 -0
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CodeLanguageMetadata, ModelPayload } from './types/common-types';
|
|
1
|
+
import { Breakpoint, ClassGroups, CodeLanguageMetadata, ModelPayload } from './types/common-types';
|
|
2
2
|
export declare const BACKEND_URL = "https://api.digo-labs.com";
|
|
3
3
|
export declare const DIGO_HEADERS = "X-Digo-App";
|
|
4
4
|
export declare const DIGO_ADMIN_SECRET = "X-Admin-Secret";
|
|
@@ -6,5 +6,7 @@ export declare const DIGO_STORAGE_BUCKET_SUFFIX = "-digo-labs-storage";
|
|
|
6
6
|
export declare const DIGO_COLORS: string[];
|
|
7
7
|
export declare const WS_URL = "wss://ws.digo-labs.com";
|
|
8
8
|
export declare const AWS_DEFAULT_REGION = "us-east-1";
|
|
9
|
+
export declare const BREAKPOINTS: Record<Breakpoint, number>;
|
|
10
|
+
export declare const TYPO_CLASS_GROUPS: ClassGroups;
|
|
9
11
|
export declare const AI_MODELS: ModelPayload[];
|
|
10
12
|
export declare const LANGUAGE_MAP: Record<string, CodeLanguageMetadata>;
|
package/dist/icons.d.ts
CHANGED
package/dist/images.d.ts
CHANGED
|
@@ -7,8 +7,15 @@ export declare const IMAGES: {
|
|
|
7
7
|
audio3d: string;
|
|
8
8
|
blocks3d: string;
|
|
9
9
|
components3d: string;
|
|
10
|
+
effects3d: string;
|
|
11
|
+
fonts3d: string;
|
|
12
|
+
icons3d: string;
|
|
10
13
|
image3d: string;
|
|
14
|
+
llms3d: string;
|
|
11
15
|
pages3d: string;
|
|
12
16
|
text3d: string;
|
|
13
17
|
video3d: string;
|
|
18
|
+
terminalScreenFrame: string;
|
|
19
|
+
terminalScreenGlass: string;
|
|
20
|
+
terminalSideGlass: string;
|
|
14
21
|
};
|