@digo-labs/common 0.1.12 → 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/auth.d.ts +23 -0
- package/dist/constants.d.ts +4 -1
- package/dist/fonts.d.ts +12 -24
- package/dist/icons.d.ts +8 -0
- package/dist/images.d.ts +14 -0
- package/dist/index.css +274 -0
- package/dist/index.d.ts +2 -3
- package/dist/index.js +216 -129
- package/dist/index.js.map +1 -1
- package/dist/models.d.ts +3 -1
- package/dist/schemas/database.d.ts +3 -1
- package/dist/session-storage.d.ts +4 -0
- package/dist/types/common-types.d.ts +3 -0
- package/dist/types/websocket-types.d.ts +1 -0
- package/package.json +1 -1
- package/dist/font-parser.d.ts +0 -2
- package/dist/font-types.d.ts +0 -11
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
export declare const databaseGetAllBodySchema: z.ZodObject<{
|
|
3
3
|
table: z.ZodString;
|
|
4
|
-
limit: z.
|
|
4
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
5
5
|
offset: z.ZodOptional<z.ZodNumber>;
|
|
6
6
|
}, z.core.$strip>;
|
|
7
7
|
export type DatabaseGetAllBody = z.infer<typeof databaseGetAllBodySchema>;
|
|
@@ -23,6 +23,8 @@ export declare const databaseGetByBodySchema: z.ZodObject<{
|
|
|
23
23
|
table: z.ZodString;
|
|
24
24
|
column: z.ZodString;
|
|
25
25
|
value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
26
|
+
limit: z.ZodDefault<z.ZodNumber>;
|
|
27
|
+
offset: z.ZodOptional<z.ZodNumber>;
|
|
26
28
|
}, z.core.$strip>;
|
|
27
29
|
export type DatabaseGetByBody = z.infer<typeof databaseGetByBodySchema>;
|
|
28
30
|
export declare const databaseGetByResponseSchema: z.ZodObject<{
|
|
@@ -4,6 +4,7 @@ export interface Time {
|
|
|
4
4
|
seconds: number;
|
|
5
5
|
}
|
|
6
6
|
export type Vector3 = [number, number, number];
|
|
7
|
+
export type Side = 'top' | 'right' | 'bottom' | 'left';
|
|
7
8
|
export declare enum BedrockStyle {
|
|
8
9
|
ANIMATED_FILM = "3D_ANIMATED_FAMILY_FILM",
|
|
9
10
|
FLAT_VECTOR_ILLUSTRATION = "FLAT_VECTOR_ILLUSTRATION",
|
|
@@ -42,4 +43,6 @@ export interface CodeLanguageMetadata {
|
|
|
42
43
|
}
|
|
43
44
|
export type Orientation = 'horizontal' | 'vertical';
|
|
44
45
|
export type Alignment = 'left' | 'center' | 'right';
|
|
46
|
+
export type Breakpoint = 'sm' | 'md' | 'lg' | 'xl' | '2xl';
|
|
47
|
+
export type ClassGroups = Record<string, (string | Record<string, string[]>)[]>;
|
|
45
48
|
export {};
|
package/package.json
CHANGED
package/dist/font-parser.d.ts
DELETED
package/dist/font-types.d.ts
DELETED