@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.
@@ -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?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
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?: "horizontal" | "vertical" | null | undefined;
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?: "link" | "default" | "destructive" | "secondary" | "outline" | "ghost" | null | undefined;
9
- size?: "default" | "xs" | "sm" | "lg" | "icon" | "icon-xs" | "icon-sm" | "icon-lg" | null | undefined;
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?: "horizontal" | "vertical" | "responsive" | null | undefined;
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?: "image" | "default" | "icon" | null | undefined;
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?: "in" | "contains" | "starts_with" | "ends_with" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "not_in" | undefined;
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?: "in" | "contains" | "starts_with" | "ends_with" | "eq" | "ne" | "gt" | "gte" | "lt" | "lte" | "not_in" | undefined;
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?: "error" | "success" | "pending" | "idle" | null | undefined;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tulip-systems/core",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "license": "AGPL-3.0",