@authhero/kysely-adapter 0.28.1 → 2.0.0

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.
@@ -1508,6 +1508,16 @@ declare const hookSchema: z.ZodObject<z.objectUtil.extendShape<{
1508
1508
  priority?: number | undefined;
1509
1509
  }>;
1510
1510
  export type Hook = z.infer<typeof hookSchema>;
1511
+ export interface ListParams {
1512
+ page: number;
1513
+ per_page: number;
1514
+ include_totals: boolean;
1515
+ q?: string;
1516
+ sort?: {
1517
+ sort_by: string;
1518
+ sort_order: "asc" | "desc";
1519
+ };
1520
+ }
1511
1521
  declare const loginInsertSchema: z.ZodObject<{
1512
1522
  auth0Client: z.ZodOptional<z.ZodString>;
1513
1523
  authParams: z.ZodObject<{
@@ -2995,16 +3005,6 @@ declare const emailProviderSchema: z.ZodObject<{
2995
3005
  settings?: {} | undefined;
2996
3006
  }>;
2997
3007
  export type EmailProvider = z.infer<typeof emailProviderSchema>;
2998
- export interface ListParams {
2999
- page: number;
3000
- per_page: number;
3001
- include_totals: boolean;
3002
- q?: string;
3003
- sort?: {
3004
- sort_by: string;
3005
- sort_order: "asc" | "desc";
3006
- };
3007
- }
3008
3008
  export interface ListCodesResponse extends Totals {
3009
3009
  codes: Code[];
3010
3010
  }