@authhero/kysely-adapter 10.20.0 → 10.22.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.
- package/dist/kysely-adapter.cjs +1 -1
- package/dist/kysely-adapter.d.ts +212 -0
- package/dist/kysely-adapter.mjs +197 -197
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1973,6 +1973,46 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
1973
1973
|
order?: number | undefined;
|
|
1974
1974
|
visible?: boolean | undefined;
|
|
1975
1975
|
}>,
|
|
1976
|
+
z.ZodObject<{
|
|
1977
|
+
id: z.ZodString;
|
|
1978
|
+
type: z.ZodLiteral<"TEXT">;
|
|
1979
|
+
config: z.ZodObject<{
|
|
1980
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
1981
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
1982
|
+
}, "strip", z.ZodTypeAny, {
|
|
1983
|
+
placeholder?: string | undefined;
|
|
1984
|
+
multiline?: boolean | undefined;
|
|
1985
|
+
}, {
|
|
1986
|
+
placeholder?: string | undefined;
|
|
1987
|
+
multiline?: boolean | undefined;
|
|
1988
|
+
}>;
|
|
1989
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1990
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
1991
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
1992
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1993
|
+
}, "strip", z.ZodTypeAny, {
|
|
1994
|
+
type: "TEXT";
|
|
1995
|
+
id: string;
|
|
1996
|
+
config: {
|
|
1997
|
+
placeholder?: string | undefined;
|
|
1998
|
+
multiline?: boolean | undefined;
|
|
1999
|
+
};
|
|
2000
|
+
visible: boolean;
|
|
2001
|
+
required?: boolean | undefined;
|
|
2002
|
+
sensitive?: boolean | undefined;
|
|
2003
|
+
order?: number | undefined;
|
|
2004
|
+
}, {
|
|
2005
|
+
type: "TEXT";
|
|
2006
|
+
id: string;
|
|
2007
|
+
config: {
|
|
2008
|
+
placeholder?: string | undefined;
|
|
2009
|
+
multiline?: boolean | undefined;
|
|
2010
|
+
};
|
|
2011
|
+
required?: boolean | undefined;
|
|
2012
|
+
sensitive?: boolean | undefined;
|
|
2013
|
+
order?: number | undefined;
|
|
2014
|
+
visible?: boolean | undefined;
|
|
2015
|
+
}>,
|
|
1976
2016
|
z.ZodObject<{
|
|
1977
2017
|
id: z.ZodString;
|
|
1978
2018
|
type: z.ZodLiteral<"NEXT_BUTTON">;
|
|
@@ -2023,6 +2063,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2023
2063
|
visible: boolean;
|
|
2024
2064
|
required?: boolean | undefined;
|
|
2025
2065
|
order?: number | undefined;
|
|
2066
|
+
} | {
|
|
2067
|
+
type: "TEXT";
|
|
2068
|
+
id: string;
|
|
2069
|
+
config: {
|
|
2070
|
+
placeholder?: string | undefined;
|
|
2071
|
+
multiline?: boolean | undefined;
|
|
2072
|
+
};
|
|
2073
|
+
visible: boolean;
|
|
2074
|
+
required?: boolean | undefined;
|
|
2075
|
+
sensitive?: boolean | undefined;
|
|
2076
|
+
order?: number | undefined;
|
|
2026
2077
|
} | {
|
|
2027
2078
|
type: "NEXT_BUTTON";
|
|
2028
2079
|
id: string;
|
|
@@ -2052,6 +2103,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2052
2103
|
required?: boolean | undefined;
|
|
2053
2104
|
order?: number | undefined;
|
|
2054
2105
|
visible?: boolean | undefined;
|
|
2106
|
+
} | {
|
|
2107
|
+
type: "TEXT";
|
|
2108
|
+
id: string;
|
|
2109
|
+
config: {
|
|
2110
|
+
placeholder?: string | undefined;
|
|
2111
|
+
multiline?: boolean | undefined;
|
|
2112
|
+
};
|
|
2113
|
+
required?: boolean | undefined;
|
|
2114
|
+
sensitive?: boolean | undefined;
|
|
2115
|
+
order?: number | undefined;
|
|
2116
|
+
visible?: boolean | undefined;
|
|
2055
2117
|
} | {
|
|
2056
2118
|
type: "NEXT_BUTTON";
|
|
2057
2119
|
id: string;
|
|
@@ -2085,6 +2147,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2085
2147
|
visible: boolean;
|
|
2086
2148
|
required?: boolean | undefined;
|
|
2087
2149
|
order?: number | undefined;
|
|
2150
|
+
} | {
|
|
2151
|
+
type: "TEXT";
|
|
2152
|
+
id: string;
|
|
2153
|
+
config: {
|
|
2154
|
+
placeholder?: string | undefined;
|
|
2155
|
+
multiline?: boolean | undefined;
|
|
2156
|
+
};
|
|
2157
|
+
visible: boolean;
|
|
2158
|
+
required?: boolean | undefined;
|
|
2159
|
+
sensitive?: boolean | undefined;
|
|
2160
|
+
order?: number | undefined;
|
|
2088
2161
|
} | {
|
|
2089
2162
|
type: "NEXT_BUTTON";
|
|
2090
2163
|
id: string;
|
|
@@ -2123,6 +2196,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2123
2196
|
required?: boolean | undefined;
|
|
2124
2197
|
order?: number | undefined;
|
|
2125
2198
|
visible?: boolean | undefined;
|
|
2199
|
+
} | {
|
|
2200
|
+
type: "TEXT";
|
|
2201
|
+
id: string;
|
|
2202
|
+
config: {
|
|
2203
|
+
placeholder?: string | undefined;
|
|
2204
|
+
multiline?: boolean | undefined;
|
|
2205
|
+
};
|
|
2206
|
+
required?: boolean | undefined;
|
|
2207
|
+
sensitive?: boolean | undefined;
|
|
2208
|
+
order?: number | undefined;
|
|
2209
|
+
visible?: boolean | undefined;
|
|
2126
2210
|
} | {
|
|
2127
2211
|
type: "NEXT_BUTTON";
|
|
2128
2212
|
id: string;
|
|
@@ -2318,6 +2402,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2318
2402
|
visible: boolean;
|
|
2319
2403
|
required?: boolean | undefined;
|
|
2320
2404
|
order?: number | undefined;
|
|
2405
|
+
} | {
|
|
2406
|
+
type: "TEXT";
|
|
2407
|
+
id: string;
|
|
2408
|
+
config: {
|
|
2409
|
+
placeholder?: string | undefined;
|
|
2410
|
+
multiline?: boolean | undefined;
|
|
2411
|
+
};
|
|
2412
|
+
visible: boolean;
|
|
2413
|
+
required?: boolean | undefined;
|
|
2414
|
+
sensitive?: boolean | undefined;
|
|
2415
|
+
order?: number | undefined;
|
|
2321
2416
|
} | {
|
|
2322
2417
|
type: "NEXT_BUTTON";
|
|
2323
2418
|
id: string;
|
|
@@ -2425,6 +2520,17 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
2425
2520
|
required?: boolean | undefined;
|
|
2426
2521
|
order?: number | undefined;
|
|
2427
2522
|
visible?: boolean | undefined;
|
|
2523
|
+
} | {
|
|
2524
|
+
type: "TEXT";
|
|
2525
|
+
id: string;
|
|
2526
|
+
config: {
|
|
2527
|
+
placeholder?: string | undefined;
|
|
2528
|
+
multiline?: boolean | undefined;
|
|
2529
|
+
};
|
|
2530
|
+
required?: boolean | undefined;
|
|
2531
|
+
sensitive?: boolean | undefined;
|
|
2532
|
+
order?: number | undefined;
|
|
2533
|
+
visible?: boolean | undefined;
|
|
2428
2534
|
} | {
|
|
2429
2535
|
type: "NEXT_BUTTON";
|
|
2430
2536
|
id: string;
|
|
@@ -2703,6 +2809,46 @@ declare const formSchema: z.ZodObject<{
|
|
|
2703
2809
|
order?: number | undefined;
|
|
2704
2810
|
visible?: boolean | undefined;
|
|
2705
2811
|
}>,
|
|
2812
|
+
z.ZodObject<{
|
|
2813
|
+
id: z.ZodString;
|
|
2814
|
+
type: z.ZodLiteral<"TEXT">;
|
|
2815
|
+
config: z.ZodObject<{
|
|
2816
|
+
placeholder: z.ZodOptional<z.ZodString>;
|
|
2817
|
+
multiline: z.ZodOptional<z.ZodBoolean>;
|
|
2818
|
+
}, "strip", z.ZodTypeAny, {
|
|
2819
|
+
placeholder?: string | undefined;
|
|
2820
|
+
multiline?: boolean | undefined;
|
|
2821
|
+
}, {
|
|
2822
|
+
placeholder?: string | undefined;
|
|
2823
|
+
multiline?: boolean | undefined;
|
|
2824
|
+
}>;
|
|
2825
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
2826
|
+
sensitive: z.ZodOptional<z.ZodBoolean>;
|
|
2827
|
+
order: z.ZodOptional<z.ZodNumber>;
|
|
2828
|
+
visible: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2829
|
+
}, "strip", z.ZodTypeAny, {
|
|
2830
|
+
type: "TEXT";
|
|
2831
|
+
id: string;
|
|
2832
|
+
config: {
|
|
2833
|
+
placeholder?: string | undefined;
|
|
2834
|
+
multiline?: boolean | undefined;
|
|
2835
|
+
};
|
|
2836
|
+
visible: boolean;
|
|
2837
|
+
required?: boolean | undefined;
|
|
2838
|
+
sensitive?: boolean | undefined;
|
|
2839
|
+
order?: number | undefined;
|
|
2840
|
+
}, {
|
|
2841
|
+
type: "TEXT";
|
|
2842
|
+
id: string;
|
|
2843
|
+
config: {
|
|
2844
|
+
placeholder?: string | undefined;
|
|
2845
|
+
multiline?: boolean | undefined;
|
|
2846
|
+
};
|
|
2847
|
+
required?: boolean | undefined;
|
|
2848
|
+
sensitive?: boolean | undefined;
|
|
2849
|
+
order?: number | undefined;
|
|
2850
|
+
visible?: boolean | undefined;
|
|
2851
|
+
}>,
|
|
2706
2852
|
z.ZodObject<{
|
|
2707
2853
|
id: z.ZodString;
|
|
2708
2854
|
type: z.ZodLiteral<"NEXT_BUTTON">;
|
|
@@ -2753,6 +2899,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
2753
2899
|
visible: boolean;
|
|
2754
2900
|
required?: boolean | undefined;
|
|
2755
2901
|
order?: number | undefined;
|
|
2902
|
+
} | {
|
|
2903
|
+
type: "TEXT";
|
|
2904
|
+
id: string;
|
|
2905
|
+
config: {
|
|
2906
|
+
placeholder?: string | undefined;
|
|
2907
|
+
multiline?: boolean | undefined;
|
|
2908
|
+
};
|
|
2909
|
+
visible: boolean;
|
|
2910
|
+
required?: boolean | undefined;
|
|
2911
|
+
sensitive?: boolean | undefined;
|
|
2912
|
+
order?: number | undefined;
|
|
2756
2913
|
} | {
|
|
2757
2914
|
type: "NEXT_BUTTON";
|
|
2758
2915
|
id: string;
|
|
@@ -2782,6 +2939,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
2782
2939
|
required?: boolean | undefined;
|
|
2783
2940
|
order?: number | undefined;
|
|
2784
2941
|
visible?: boolean | undefined;
|
|
2942
|
+
} | {
|
|
2943
|
+
type: "TEXT";
|
|
2944
|
+
id: string;
|
|
2945
|
+
config: {
|
|
2946
|
+
placeholder?: string | undefined;
|
|
2947
|
+
multiline?: boolean | undefined;
|
|
2948
|
+
};
|
|
2949
|
+
required?: boolean | undefined;
|
|
2950
|
+
sensitive?: boolean | undefined;
|
|
2951
|
+
order?: number | undefined;
|
|
2952
|
+
visible?: boolean | undefined;
|
|
2785
2953
|
} | {
|
|
2786
2954
|
type: "NEXT_BUTTON";
|
|
2787
2955
|
id: string;
|
|
@@ -2815,6 +2983,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
2815
2983
|
visible: boolean;
|
|
2816
2984
|
required?: boolean | undefined;
|
|
2817
2985
|
order?: number | undefined;
|
|
2986
|
+
} | {
|
|
2987
|
+
type: "TEXT";
|
|
2988
|
+
id: string;
|
|
2989
|
+
config: {
|
|
2990
|
+
placeholder?: string | undefined;
|
|
2991
|
+
multiline?: boolean | undefined;
|
|
2992
|
+
};
|
|
2993
|
+
visible: boolean;
|
|
2994
|
+
required?: boolean | undefined;
|
|
2995
|
+
sensitive?: boolean | undefined;
|
|
2996
|
+
order?: number | undefined;
|
|
2818
2997
|
} | {
|
|
2819
2998
|
type: "NEXT_BUTTON";
|
|
2820
2999
|
id: string;
|
|
@@ -2853,6 +3032,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
2853
3032
|
required?: boolean | undefined;
|
|
2854
3033
|
order?: number | undefined;
|
|
2855
3034
|
visible?: boolean | undefined;
|
|
3035
|
+
} | {
|
|
3036
|
+
type: "TEXT";
|
|
3037
|
+
id: string;
|
|
3038
|
+
config: {
|
|
3039
|
+
placeholder?: string | undefined;
|
|
3040
|
+
multiline?: boolean | undefined;
|
|
3041
|
+
};
|
|
3042
|
+
required?: boolean | undefined;
|
|
3043
|
+
sensitive?: boolean | undefined;
|
|
3044
|
+
order?: number | undefined;
|
|
3045
|
+
visible?: boolean | undefined;
|
|
2856
3046
|
} | {
|
|
2857
3047
|
type: "NEXT_BUTTON";
|
|
2858
3048
|
id: string;
|
|
@@ -3053,6 +3243,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
3053
3243
|
visible: boolean;
|
|
3054
3244
|
required?: boolean | undefined;
|
|
3055
3245
|
order?: number | undefined;
|
|
3246
|
+
} | {
|
|
3247
|
+
type: "TEXT";
|
|
3248
|
+
id: string;
|
|
3249
|
+
config: {
|
|
3250
|
+
placeholder?: string | undefined;
|
|
3251
|
+
multiline?: boolean | undefined;
|
|
3252
|
+
};
|
|
3253
|
+
visible: boolean;
|
|
3254
|
+
required?: boolean | undefined;
|
|
3255
|
+
sensitive?: boolean | undefined;
|
|
3256
|
+
order?: number | undefined;
|
|
3056
3257
|
} | {
|
|
3057
3258
|
type: "NEXT_BUTTON";
|
|
3058
3259
|
id: string;
|
|
@@ -3163,6 +3364,17 @@ declare const formSchema: z.ZodObject<{
|
|
|
3163
3364
|
required?: boolean | undefined;
|
|
3164
3365
|
order?: number | undefined;
|
|
3165
3366
|
visible?: boolean | undefined;
|
|
3367
|
+
} | {
|
|
3368
|
+
type: "TEXT";
|
|
3369
|
+
id: string;
|
|
3370
|
+
config: {
|
|
3371
|
+
placeholder?: string | undefined;
|
|
3372
|
+
multiline?: boolean | undefined;
|
|
3373
|
+
};
|
|
3374
|
+
required?: boolean | undefined;
|
|
3375
|
+
sensitive?: boolean | undefined;
|
|
3376
|
+
order?: number | undefined;
|
|
3377
|
+
visible?: boolean | undefined;
|
|
3166
3378
|
} | {
|
|
3167
3379
|
type: "NEXT_BUTTON";
|
|
3168
3380
|
id: string;
|