@authhero/kysely-adapter 11.1.1 → 11.1.2
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.d.ts +14 -0
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -3218,16 +3218,19 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3218
3218
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
3219
3219
|
client_id: z.ZodOptional<z.ZodString>;
|
|
3220
3220
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
3221
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
3221
3222
|
}, "strip", z.ZodTypeAny, {
|
|
3222
3223
|
client_id?: string | undefined;
|
|
3223
3224
|
client_secret?: string | undefined;
|
|
3224
3225
|
token_endpoint?: string | undefined;
|
|
3225
3226
|
userinfo_endpoint?: string | undefined;
|
|
3227
|
+
realm?: string | undefined;
|
|
3226
3228
|
}, {
|
|
3227
3229
|
client_id?: string | undefined;
|
|
3228
3230
|
client_secret?: string | undefined;
|
|
3229
3231
|
token_endpoint?: string | undefined;
|
|
3230
3232
|
userinfo_endpoint?: string | undefined;
|
|
3233
|
+
realm?: string | undefined;
|
|
3231
3234
|
}>>;
|
|
3232
3235
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
3233
3236
|
email: z.ZodOptional<z.ZodObject<{
|
|
@@ -3637,6 +3640,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3637
3640
|
client_secret?: string | undefined;
|
|
3638
3641
|
token_endpoint?: string | undefined;
|
|
3639
3642
|
userinfo_endpoint?: string | undefined;
|
|
3643
|
+
realm?: string | undefined;
|
|
3640
3644
|
} | undefined;
|
|
3641
3645
|
attributes?: {
|
|
3642
3646
|
email?: {
|
|
@@ -3749,6 +3753,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3749
3753
|
client_secret?: string | undefined;
|
|
3750
3754
|
token_endpoint?: string | undefined;
|
|
3751
3755
|
userinfo_endpoint?: string | undefined;
|
|
3756
|
+
realm?: string | undefined;
|
|
3752
3757
|
} | undefined;
|
|
3753
3758
|
attributes?: {
|
|
3754
3759
|
email?: {
|
|
@@ -3861,6 +3866,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3861
3866
|
client_secret?: string | undefined;
|
|
3862
3867
|
token_endpoint?: string | undefined;
|
|
3863
3868
|
userinfo_endpoint?: string | undefined;
|
|
3869
|
+
realm?: string | undefined;
|
|
3864
3870
|
} | undefined;
|
|
3865
3871
|
attributes?: {
|
|
3866
3872
|
email?: {
|
|
@@ -3982,6 +3988,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3982
3988
|
client_secret?: string | undefined;
|
|
3983
3989
|
token_endpoint?: string | undefined;
|
|
3984
3990
|
userinfo_endpoint?: string | undefined;
|
|
3991
|
+
realm?: string | undefined;
|
|
3985
3992
|
} | undefined;
|
|
3986
3993
|
attributes?: {
|
|
3987
3994
|
email?: {
|
|
@@ -4152,16 +4159,19 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4152
4159
|
userinfo_endpoint: z.ZodOptional<z.ZodString>;
|
|
4153
4160
|
client_id: z.ZodOptional<z.ZodString>;
|
|
4154
4161
|
client_secret: z.ZodOptional<z.ZodString>;
|
|
4162
|
+
realm: z.ZodOptional<z.ZodString>;
|
|
4155
4163
|
}, "strip", z.ZodTypeAny, {
|
|
4156
4164
|
client_id?: string | undefined;
|
|
4157
4165
|
client_secret?: string | undefined;
|
|
4158
4166
|
token_endpoint?: string | undefined;
|
|
4159
4167
|
userinfo_endpoint?: string | undefined;
|
|
4168
|
+
realm?: string | undefined;
|
|
4160
4169
|
}, {
|
|
4161
4170
|
client_id?: string | undefined;
|
|
4162
4171
|
client_secret?: string | undefined;
|
|
4163
4172
|
token_endpoint?: string | undefined;
|
|
4164
4173
|
userinfo_endpoint?: string | undefined;
|
|
4174
|
+
realm?: string | undefined;
|
|
4165
4175
|
}>>;
|
|
4166
4176
|
attributes: z.ZodOptional<z.ZodObject<{
|
|
4167
4177
|
email: z.ZodOptional<z.ZodObject<{
|
|
@@ -4571,6 +4581,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4571
4581
|
client_secret?: string | undefined;
|
|
4572
4582
|
token_endpoint?: string | undefined;
|
|
4573
4583
|
userinfo_endpoint?: string | undefined;
|
|
4584
|
+
realm?: string | undefined;
|
|
4574
4585
|
} | undefined;
|
|
4575
4586
|
attributes?: {
|
|
4576
4587
|
email?: {
|
|
@@ -4683,6 +4694,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4683
4694
|
client_secret?: string | undefined;
|
|
4684
4695
|
token_endpoint?: string | undefined;
|
|
4685
4696
|
userinfo_endpoint?: string | undefined;
|
|
4697
|
+
realm?: string | undefined;
|
|
4686
4698
|
} | undefined;
|
|
4687
4699
|
attributes?: {
|
|
4688
4700
|
email?: {
|
|
@@ -4795,6 +4807,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4795
4807
|
client_secret?: string | undefined;
|
|
4796
4808
|
token_endpoint?: string | undefined;
|
|
4797
4809
|
userinfo_endpoint?: string | undefined;
|
|
4810
|
+
realm?: string | undefined;
|
|
4798
4811
|
} | undefined;
|
|
4799
4812
|
attributes?: {
|
|
4800
4813
|
email?: {
|
|
@@ -4918,6 +4931,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4918
4931
|
client_secret?: string | undefined;
|
|
4919
4932
|
token_endpoint?: string | undefined;
|
|
4920
4933
|
userinfo_endpoint?: string | undefined;
|
|
4934
|
+
realm?: string | undefined;
|
|
4921
4935
|
} | undefined;
|
|
4922
4936
|
attributes?: {
|
|
4923
4937
|
email?: {
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "11.1.
|
|
14
|
+
"version": "11.1.2",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"kysely": "^0.27.4",
|
|
44
44
|
"nanoid": "^5.0.8",
|
|
45
|
-
"@authhero/adapter-interfaces": "2.
|
|
45
|
+
"@authhero/adapter-interfaces": "2.2.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"@hono/zod-openapi": "^0.19.2",
|