@tulip-systems/core 0.8.0 → 0.8.1
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/components/ui/badge.d.mts +1 -1
- package/dist/components/ui/button-group.d.mts +1 -1
- package/dist/components/ui/button.d.mts +2 -2
- package/dist/components/ui/field.client.d.mts +1 -1
- package/dist/components/ui/item.d.mts +1 -1
- package/dist/modules/auth/handler/create-client.client.d.mts +2 -2
- package/dist/modules/inline-edit/lib/variants.d.mts +1 -1
- package/dist/modules/storage/lib/service.server.d.mts +9 -9
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ import * as class_variance_authority_types0 from "class-variance-authority/types
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/ui/badge.d.ts
|
|
7
7
|
declare const badgeVariants: (props?: ({
|
|
8
|
-
variant?: "
|
|
8
|
+
variant?: "default" | "link" | "outline" | "destructive" | "secondary" | "ghost" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
declare function Badge({
|
|
11
11
|
className,
|
|
@@ -5,7 +5,7 @@ import * as class_variance_authority_types0 from "class-variance-authority/types
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/ui/button-group.d.ts
|
|
7
7
|
declare const buttonGroupVariants: (props?: ({
|
|
8
|
-
orientation?: "
|
|
8
|
+
orientation?: "vertical" | "horizontal" | null | undefined;
|
|
9
9
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
10
10
|
declare function ButtonGroup({
|
|
11
11
|
className,
|
|
@@ -5,8 +5,8 @@ import * as class_variance_authority_types0 from "class-variance-authority/types
|
|
|
5
5
|
|
|
6
6
|
//#region src/components/ui/button.d.ts
|
|
7
7
|
declare const buttonVariants: (props?: ({
|
|
8
|
-
variant?: "
|
|
9
|
-
size?: "default" | "xs" | "sm" | "
|
|
8
|
+
variant?: "default" | "link" | "outline" | "destructive" | "secondary" | "ghost" | null | undefined;
|
|
9
|
+
size?: "default" | "xs" | "sm" | "icon-xs" | "icon-sm" | "lg" | "icon" | "icon-lg" | null | undefined;
|
|
10
10
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
11
11
|
declare function Button({
|
|
12
12
|
className,
|
|
@@ -20,7 +20,7 @@ declare function FieldGroup({
|
|
|
20
20
|
...props
|
|
21
21
|
}: React.ComponentProps<"div">): react_jsx_runtime0.JSX.Element;
|
|
22
22
|
declare const fieldVariants: (props?: ({
|
|
23
|
-
orientation?: "
|
|
23
|
+
orientation?: "vertical" | "horizontal" | "responsive" | null | undefined;
|
|
24
24
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
25
25
|
declare function Field({
|
|
26
26
|
className,
|
|
@@ -27,7 +27,7 @@ declare function Item({
|
|
|
27
27
|
asChild?: boolean;
|
|
28
28
|
}): react_jsx_runtime0.JSX.Element;
|
|
29
29
|
declare const itemMediaVariants: (props?: ({
|
|
30
|
-
variant?: "
|
|
30
|
+
variant?: "default" | "image" | "icon" | null | undefined;
|
|
31
31
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
32
32
|
declare function ItemMedia({
|
|
33
33
|
className,
|
|
@@ -180,7 +180,7 @@ declare function createAuthClient<TAccessControl extends AccessControl, TRoles e
|
|
|
180
180
|
sortDirection?: "asc" | "desc" | undefined;
|
|
181
181
|
filterField?: string | undefined;
|
|
182
182
|
filterValue?: string | number | boolean | string[] | number[] | undefined;
|
|
183
|
-
filterOperator?: "
|
|
183
|
+
filterOperator?: "eq" | "in" | "contains" | "starts_with" | "ends_with" | "ne" | "gt" | "gte" | "lt" | "lte" | "not_in" | undefined;
|
|
184
184
|
}> & Record<string, any>, Record<string, any> | undefined>>(data_0: better_auth0.Prettify<{
|
|
185
185
|
query: {
|
|
186
186
|
searchValue?: string | undefined;
|
|
@@ -192,7 +192,7 @@ declare function createAuthClient<TAccessControl extends AccessControl, TRoles e
|
|
|
192
192
|
sortDirection?: "asc" | "desc" | undefined;
|
|
193
193
|
filterField?: string | undefined;
|
|
194
194
|
filterValue?: string | number | boolean | string[] | number[] | undefined;
|
|
195
|
-
filterOperator?: "
|
|
195
|
+
filterOperator?: "eq" | "in" | "contains" | "starts_with" | "ends_with" | "ne" | "gt" | "gte" | "lt" | "lte" | "not_in" | undefined;
|
|
196
196
|
};
|
|
197
197
|
fetchOptions?: FetchOptions | undefined;
|
|
198
198
|
}>, data_1?: FetchOptions | undefined) => Promise<better_auth_client0.BetterFetchResponse<{
|
|
@@ -4,7 +4,7 @@ import * as class_variance_authority_types0 from "class-variance-authority/types
|
|
|
4
4
|
//#region src/modules/inline-edit/lib/variants.d.ts
|
|
5
5
|
declare const inlineEditVariants: (props?: ({
|
|
6
6
|
variant?: "default" | "table" | null | undefined;
|
|
7
|
-
status?: "
|
|
7
|
+
status?: "success" | "error" | "idle" | "pending" | null | undefined;
|
|
8
8
|
} & class_variance_authority_types0.ClassProp) | undefined) => string;
|
|
9
9
|
type InlineEditVariantsProps = VariantProps<typeof inlineEditVariants>;
|
|
10
10
|
//#endregion
|
|
@@ -1915,19 +1915,19 @@ declare class Storage<TSchema extends TDatabaseSchema> {
|
|
|
1915
1915
|
*/
|
|
1916
1916
|
presignUpload(props: PresignUploadInput): Promise<{
|
|
1917
1917
|
presignedUrl: string;
|
|
1918
|
+
key: string;
|
|
1918
1919
|
id: string;
|
|
1919
1920
|
createdAt: Date;
|
|
1920
1921
|
updatedAt: Date;
|
|
1921
1922
|
name: string | null;
|
|
1922
|
-
key: string;
|
|
1923
1923
|
metadata: unknown;
|
|
1924
1924
|
provider: "s3";
|
|
1925
|
+
status: "error" | "pending" | "ready";
|
|
1926
|
+
size: number | null;
|
|
1925
1927
|
uploadId: string;
|
|
1926
1928
|
visibility: "private" | "public";
|
|
1927
|
-
size: number | null;
|
|
1928
1929
|
contentType: string | null;
|
|
1929
1930
|
bucket: string;
|
|
1930
|
-
status: "error" | "pending" | "ready";
|
|
1931
1931
|
etag: string | null;
|
|
1932
1932
|
uploadedAt: Date;
|
|
1933
1933
|
deletedAt: Date | null;
|
|
@@ -2164,19 +2164,19 @@ declare class Storage<TSchema extends TDatabaseSchema> {
|
|
|
2164
2164
|
* @returns The purged asset record, or null if not found
|
|
2165
2165
|
*/
|
|
2166
2166
|
purgeAsset(input: string): Promise<{
|
|
2167
|
+
key: string;
|
|
2167
2168
|
id: string;
|
|
2168
2169
|
createdAt: Date;
|
|
2169
2170
|
updatedAt: Date;
|
|
2170
2171
|
name: string | null;
|
|
2171
|
-
key: string;
|
|
2172
2172
|
metadata: unknown;
|
|
2173
2173
|
provider: "s3";
|
|
2174
|
+
status: "error" | "pending" | "ready";
|
|
2175
|
+
size: number | null;
|
|
2174
2176
|
uploadId: string;
|
|
2175
2177
|
visibility: "private" | "public";
|
|
2176
|
-
size: number | null;
|
|
2177
2178
|
contentType: string | null;
|
|
2178
2179
|
bucket: string;
|
|
2179
|
-
status: "error" | "pending" | "ready";
|
|
2180
2180
|
etag: string | null;
|
|
2181
2181
|
uploadedAt: Date;
|
|
2182
2182
|
deletedAt: Date | null;
|
|
@@ -2195,19 +2195,19 @@ declare class Storage<TSchema extends TDatabaseSchema> {
|
|
|
2195
2195
|
* @throws {ServerError} If provider deletion fails
|
|
2196
2196
|
*/
|
|
2197
2197
|
purgeAssets(input: string[]): Promise<{
|
|
2198
|
+
key: string;
|
|
2198
2199
|
id: string;
|
|
2199
2200
|
createdAt: Date;
|
|
2200
2201
|
updatedAt: Date;
|
|
2201
2202
|
name: string | null;
|
|
2202
|
-
key: string;
|
|
2203
2203
|
metadata: unknown;
|
|
2204
2204
|
provider: "s3";
|
|
2205
|
+
status: "error" | "pending" | "ready";
|
|
2206
|
+
size: number | null;
|
|
2205
2207
|
uploadId: string;
|
|
2206
2208
|
visibility: "private" | "public";
|
|
2207
|
-
size: number | null;
|
|
2208
2209
|
contentType: string | null;
|
|
2209
2210
|
bucket: string;
|
|
2210
|
-
status: "error" | "pending" | "ready";
|
|
2211
2211
|
etag: string | null;
|
|
2212
2212
|
uploadedAt: Date;
|
|
2213
2213
|
deletedAt: Date | null;
|