authhero 0.190.0 → 0.193.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/authhero.cjs +47 -47
- package/dist/authhero.d.ts +770 -362
- package/dist/authhero.mjs +9459 -8887
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -13909,41 +13909,27 @@ export declare const resourceServerOptionsSchema: z.ZodObject<{
|
|
|
13909
13909
|
}, {
|
|
13910
13910
|
bound_access_tokens?: boolean | undefined;
|
|
13911
13911
|
}>>;
|
|
13912
|
-
}, "
|
|
13913
|
-
token_dialect
|
|
13914
|
-
|
|
13915
|
-
|
|
13916
|
-
|
|
13917
|
-
|
|
13918
|
-
|
|
13919
|
-
|
|
13920
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13921
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13922
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13923
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13924
|
-
}, "strip", z.ZodTypeAny, {
|
|
13925
|
-
bound_access_tokens?: boolean | undefined;
|
|
13926
|
-
}, {
|
|
13927
|
-
bound_access_tokens?: boolean | undefined;
|
|
13928
|
-
}>>;
|
|
13929
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
13930
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
13931
|
-
"access_token",
|
|
13932
|
-
"access_token_authz"
|
|
13933
|
-
]>>;
|
|
13934
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
13935
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
13936
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
13937
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13938
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13939
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13940
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13941
|
-
}, "strip", z.ZodTypeAny, {
|
|
13912
|
+
}, "strip", z.ZodTypeAny, {
|
|
13913
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13914
|
+
enforce_policies?: boolean | undefined;
|
|
13915
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13916
|
+
skip_userinfo?: boolean | undefined;
|
|
13917
|
+
persist_client_authorization?: boolean | undefined;
|
|
13918
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13919
|
+
mtls?: {
|
|
13942
13920
|
bound_access_tokens?: boolean | undefined;
|
|
13943
|
-
}
|
|
13921
|
+
} | undefined;
|
|
13922
|
+
}, {
|
|
13923
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13924
|
+
enforce_policies?: boolean | undefined;
|
|
13925
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13926
|
+
skip_userinfo?: boolean | undefined;
|
|
13927
|
+
persist_client_authorization?: boolean | undefined;
|
|
13928
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13929
|
+
mtls?: {
|
|
13944
13930
|
bound_access_tokens?: boolean | undefined;
|
|
13945
|
-
}
|
|
13946
|
-
}
|
|
13931
|
+
} | undefined;
|
|
13932
|
+
}>;
|
|
13947
13933
|
export type ResourceServerOptions = z.infer<typeof resourceServerOptionsSchema>;
|
|
13948
13934
|
export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
13949
13935
|
name: z.ZodString;
|
|
@@ -13982,62 +13968,41 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
13982
13968
|
}, {
|
|
13983
13969
|
bound_access_tokens?: boolean | undefined;
|
|
13984
13970
|
}>>;
|
|
13985
|
-
}, "
|
|
13986
|
-
token_dialect
|
|
13987
|
-
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
|
|
13991
|
-
|
|
13992
|
-
|
|
13993
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13994
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13995
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13996
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13997
|
-
}, "strip", z.ZodTypeAny, {
|
|
13998
|
-
bound_access_tokens?: boolean | undefined;
|
|
13999
|
-
}, {
|
|
14000
|
-
bound_access_tokens?: boolean | undefined;
|
|
14001
|
-
}>>;
|
|
14002
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14003
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14004
|
-
"access_token",
|
|
14005
|
-
"access_token_authz"
|
|
14006
|
-
]>>;
|
|
14007
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14008
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14009
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14010
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14011
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14012
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14013
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14014
|
-
}, "strip", z.ZodTypeAny, {
|
|
13971
|
+
}, "strip", z.ZodTypeAny, {
|
|
13972
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13973
|
+
enforce_policies?: boolean | undefined;
|
|
13974
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13975
|
+
skip_userinfo?: boolean | undefined;
|
|
13976
|
+
persist_client_authorization?: boolean | undefined;
|
|
13977
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13978
|
+
mtls?: {
|
|
14015
13979
|
bound_access_tokens?: boolean | undefined;
|
|
14016
|
-
}
|
|
13980
|
+
} | undefined;
|
|
13981
|
+
}, {
|
|
13982
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13983
|
+
enforce_policies?: boolean | undefined;
|
|
13984
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13985
|
+
skip_userinfo?: boolean | undefined;
|
|
13986
|
+
persist_client_authorization?: boolean | undefined;
|
|
13987
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13988
|
+
mtls?: {
|
|
14017
13989
|
bound_access_tokens?: boolean | undefined;
|
|
14018
|
-
}
|
|
14019
|
-
}
|
|
13990
|
+
} | undefined;
|
|
13991
|
+
}>>;
|
|
14020
13992
|
}, "strip", z.ZodTypeAny, {
|
|
14021
13993
|
name: string;
|
|
14022
13994
|
identifier: string;
|
|
14023
|
-
options?:
|
|
14024
|
-
token_dialect
|
|
14025
|
-
|
|
14026
|
-
|
|
14027
|
-
|
|
14028
|
-
|
|
14029
|
-
|
|
14030
|
-
|
|
14031
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14032
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14033
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14034
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14035
|
-
}, "strip", z.ZodTypeAny, {
|
|
14036
|
-
bound_access_tokens?: boolean | undefined;
|
|
14037
|
-
}, {
|
|
13995
|
+
options?: {
|
|
13996
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13997
|
+
enforce_policies?: boolean | undefined;
|
|
13998
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13999
|
+
skip_userinfo?: boolean | undefined;
|
|
14000
|
+
persist_client_authorization?: boolean | undefined;
|
|
14001
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14002
|
+
mtls?: {
|
|
14038
14003
|
bound_access_tokens?: boolean | undefined;
|
|
14039
|
-
}
|
|
14040
|
-
}
|
|
14004
|
+
} | undefined;
|
|
14005
|
+
} | undefined;
|
|
14041
14006
|
scopes?: {
|
|
14042
14007
|
value: string;
|
|
14043
14008
|
description?: string | undefined;
|
|
@@ -14052,24 +14017,17 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
14052
14017
|
}, {
|
|
14053
14018
|
name: string;
|
|
14054
14019
|
identifier: string;
|
|
14055
|
-
options?:
|
|
14056
|
-
token_dialect
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
|
|
14061
|
-
|
|
14062
|
-
|
|
14063
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14064
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14065
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14066
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14067
|
-
}, "strip", z.ZodTypeAny, {
|
|
14068
|
-
bound_access_tokens?: boolean | undefined;
|
|
14069
|
-
}, {
|
|
14020
|
+
options?: {
|
|
14021
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14022
|
+
enforce_policies?: boolean | undefined;
|
|
14023
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14024
|
+
skip_userinfo?: boolean | undefined;
|
|
14025
|
+
persist_client_authorization?: boolean | undefined;
|
|
14026
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14027
|
+
mtls?: {
|
|
14070
14028
|
bound_access_tokens?: boolean | undefined;
|
|
14071
|
-
}
|
|
14072
|
-
}
|
|
14029
|
+
} | undefined;
|
|
14030
|
+
} | undefined;
|
|
14073
14031
|
scopes?: {
|
|
14074
14032
|
value: string;
|
|
14075
14033
|
description?: string | undefined;
|
|
@@ -14122,63 +14080,42 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14122
14080
|
}, {
|
|
14123
14081
|
bound_access_tokens?: boolean | undefined;
|
|
14124
14082
|
}>>;
|
|
14125
|
-
}, "
|
|
14126
|
-
token_dialect
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
|
|
14131
|
-
|
|
14132
|
-
|
|
14133
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14134
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14135
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14136
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14137
|
-
}, "strip", z.ZodTypeAny, {
|
|
14138
|
-
bound_access_tokens?: boolean | undefined;
|
|
14139
|
-
}, {
|
|
14140
|
-
bound_access_tokens?: boolean | undefined;
|
|
14141
|
-
}>>;
|
|
14142
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14143
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14144
|
-
"access_token",
|
|
14145
|
-
"access_token_authz"
|
|
14146
|
-
]>>;
|
|
14147
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14148
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14149
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14150
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14151
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14152
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14153
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14154
|
-
}, "strip", z.ZodTypeAny, {
|
|
14083
|
+
}, "strip", z.ZodTypeAny, {
|
|
14084
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14085
|
+
enforce_policies?: boolean | undefined;
|
|
14086
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14087
|
+
skip_userinfo?: boolean | undefined;
|
|
14088
|
+
persist_client_authorization?: boolean | undefined;
|
|
14089
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14090
|
+
mtls?: {
|
|
14155
14091
|
bound_access_tokens?: boolean | undefined;
|
|
14156
|
-
}
|
|
14092
|
+
} | undefined;
|
|
14093
|
+
}, {
|
|
14094
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14095
|
+
enforce_policies?: boolean | undefined;
|
|
14096
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14097
|
+
skip_userinfo?: boolean | undefined;
|
|
14098
|
+
persist_client_authorization?: boolean | undefined;
|
|
14099
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14100
|
+
mtls?: {
|
|
14157
14101
|
bound_access_tokens?: boolean | undefined;
|
|
14158
|
-
}
|
|
14159
|
-
}
|
|
14102
|
+
} | undefined;
|
|
14103
|
+
}>>;
|
|
14160
14104
|
id: z.ZodOptional<z.ZodString>;
|
|
14161
14105
|
}, "strip", z.ZodTypeAny, {
|
|
14162
14106
|
name: string;
|
|
14163
14107
|
identifier: string;
|
|
14164
|
-
options?:
|
|
14165
|
-
token_dialect
|
|
14166
|
-
|
|
14167
|
-
|
|
14168
|
-
|
|
14169
|
-
|
|
14170
|
-
|
|
14171
|
-
|
|
14172
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14173
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14174
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14175
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14176
|
-
}, "strip", z.ZodTypeAny, {
|
|
14177
|
-
bound_access_tokens?: boolean | undefined;
|
|
14178
|
-
}, {
|
|
14108
|
+
options?: {
|
|
14109
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14110
|
+
enforce_policies?: boolean | undefined;
|
|
14111
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14112
|
+
skip_userinfo?: boolean | undefined;
|
|
14113
|
+
persist_client_authorization?: boolean | undefined;
|
|
14114
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14115
|
+
mtls?: {
|
|
14179
14116
|
bound_access_tokens?: boolean | undefined;
|
|
14180
|
-
}
|
|
14181
|
-
}
|
|
14117
|
+
} | undefined;
|
|
14118
|
+
} | undefined;
|
|
14182
14119
|
created_at?: string | undefined;
|
|
14183
14120
|
updated_at?: string | undefined;
|
|
14184
14121
|
id?: string | undefined;
|
|
@@ -14196,24 +14133,17 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14196
14133
|
}, {
|
|
14197
14134
|
name: string;
|
|
14198
14135
|
identifier: string;
|
|
14199
|
-
options?:
|
|
14200
|
-
token_dialect
|
|
14201
|
-
|
|
14202
|
-
|
|
14203
|
-
|
|
14204
|
-
|
|
14205
|
-
|
|
14206
|
-
|
|
14207
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14208
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14209
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14210
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14211
|
-
}, "strip", z.ZodTypeAny, {
|
|
14212
|
-
bound_access_tokens?: boolean | undefined;
|
|
14213
|
-
}, {
|
|
14136
|
+
options?: {
|
|
14137
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14138
|
+
enforce_policies?: boolean | undefined;
|
|
14139
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14140
|
+
skip_userinfo?: boolean | undefined;
|
|
14141
|
+
persist_client_authorization?: boolean | undefined;
|
|
14142
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14143
|
+
mtls?: {
|
|
14214
14144
|
bound_access_tokens?: boolean | undefined;
|
|
14215
|
-
}
|
|
14216
|
-
}
|
|
14145
|
+
} | undefined;
|
|
14146
|
+
} | undefined;
|
|
14217
14147
|
created_at?: string | undefined;
|
|
14218
14148
|
updated_at?: string | undefined;
|
|
14219
14149
|
id?: string | undefined;
|
|
@@ -14269,63 +14199,42 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14269
14199
|
}, {
|
|
14270
14200
|
bound_access_tokens?: boolean | undefined;
|
|
14271
14201
|
}>>;
|
|
14272
|
-
}, "
|
|
14273
|
-
token_dialect
|
|
14274
|
-
|
|
14275
|
-
|
|
14276
|
-
|
|
14277
|
-
|
|
14278
|
-
|
|
14279
|
-
|
|
14280
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14281
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14282
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14283
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14284
|
-
}, "strip", z.ZodTypeAny, {
|
|
14285
|
-
bound_access_tokens?: boolean | undefined;
|
|
14286
|
-
}, {
|
|
14287
|
-
bound_access_tokens?: boolean | undefined;
|
|
14288
|
-
}>>;
|
|
14289
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14290
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14291
|
-
"access_token",
|
|
14292
|
-
"access_token_authz"
|
|
14293
|
-
]>>;
|
|
14294
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14295
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14296
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14297
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14298
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14299
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14300
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14301
|
-
}, "strip", z.ZodTypeAny, {
|
|
14202
|
+
}, "strip", z.ZodTypeAny, {
|
|
14203
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14204
|
+
enforce_policies?: boolean | undefined;
|
|
14205
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14206
|
+
skip_userinfo?: boolean | undefined;
|
|
14207
|
+
persist_client_authorization?: boolean | undefined;
|
|
14208
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14209
|
+
mtls?: {
|
|
14302
14210
|
bound_access_tokens?: boolean | undefined;
|
|
14303
|
-
}
|
|
14211
|
+
} | undefined;
|
|
14212
|
+
}, {
|
|
14213
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14214
|
+
enforce_policies?: boolean | undefined;
|
|
14215
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14216
|
+
skip_userinfo?: boolean | undefined;
|
|
14217
|
+
persist_client_authorization?: boolean | undefined;
|
|
14218
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14219
|
+
mtls?: {
|
|
14304
14220
|
bound_access_tokens?: boolean | undefined;
|
|
14305
|
-
}
|
|
14306
|
-
}
|
|
14221
|
+
} | undefined;
|
|
14222
|
+
}>>;
|
|
14307
14223
|
id: z.ZodOptional<z.ZodString>;
|
|
14308
14224
|
}, "strip", z.ZodTypeAny, {
|
|
14309
14225
|
name: string;
|
|
14310
14226
|
identifier: string;
|
|
14311
|
-
options?:
|
|
14312
|
-
token_dialect
|
|
14313
|
-
|
|
14314
|
-
|
|
14315
|
-
|
|
14316
|
-
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14320
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14321
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14322
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14323
|
-
}, "strip", z.ZodTypeAny, {
|
|
14324
|
-
bound_access_tokens?: boolean | undefined;
|
|
14325
|
-
}, {
|
|
14227
|
+
options?: {
|
|
14228
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14229
|
+
enforce_policies?: boolean | undefined;
|
|
14230
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14231
|
+
skip_userinfo?: boolean | undefined;
|
|
14232
|
+
persist_client_authorization?: boolean | undefined;
|
|
14233
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14234
|
+
mtls?: {
|
|
14326
14235
|
bound_access_tokens?: boolean | undefined;
|
|
14327
|
-
}
|
|
14328
|
-
}
|
|
14236
|
+
} | undefined;
|
|
14237
|
+
} | undefined;
|
|
14329
14238
|
created_at?: string | undefined;
|
|
14330
14239
|
updated_at?: string | undefined;
|
|
14331
14240
|
id?: string | undefined;
|
|
@@ -14343,24 +14252,17 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14343
14252
|
}, {
|
|
14344
14253
|
name: string;
|
|
14345
14254
|
identifier: string;
|
|
14346
|
-
options?:
|
|
14347
|
-
token_dialect
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14355
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14356
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14357
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14358
|
-
}, "strip", z.ZodTypeAny, {
|
|
14359
|
-
bound_access_tokens?: boolean | undefined;
|
|
14360
|
-
}, {
|
|
14255
|
+
options?: {
|
|
14256
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14257
|
+
enforce_policies?: boolean | undefined;
|
|
14258
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14259
|
+
skip_userinfo?: boolean | undefined;
|
|
14260
|
+
persist_client_authorization?: boolean | undefined;
|
|
14261
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14262
|
+
mtls?: {
|
|
14361
14263
|
bound_access_tokens?: boolean | undefined;
|
|
14362
|
-
}
|
|
14363
|
-
}
|
|
14264
|
+
} | undefined;
|
|
14265
|
+
} | undefined;
|
|
14364
14266
|
created_at?: string | undefined;
|
|
14365
14267
|
updated_at?: string | undefined;
|
|
14366
14268
|
id?: string | undefined;
|
|
@@ -14377,145 +14279,206 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14377
14279
|
verificationKey?: string | undefined;
|
|
14378
14280
|
}>, "many">;
|
|
14379
14281
|
export type ResourceServerList = z.infer<typeof resourceServerListSchema>;
|
|
14380
|
-
export declare const
|
|
14381
|
-
|
|
14382
|
-
|
|
14383
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14384
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14385
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14386
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14387
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14388
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14389
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14390
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14391
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14392
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
14393
|
-
export type PermissionSource = z.infer<typeof permissionSourceSchema>;
|
|
14394
|
-
export declare const permissionSchema: z.ZodObject<{
|
|
14282
|
+
export declare const rolePermissionInsertSchema: z.ZodObject<{
|
|
14283
|
+
role_id: z.ZodString;
|
|
14284
|
+
resource_server_identifier: z.ZodString;
|
|
14395
14285
|
permission_name: z.ZodString;
|
|
14396
|
-
|
|
14286
|
+
}, "strip", z.ZodTypeAny, {
|
|
14287
|
+
role_id: string;
|
|
14288
|
+
resource_server_identifier: string;
|
|
14289
|
+
permission_name: string;
|
|
14290
|
+
}, {
|
|
14291
|
+
role_id: string;
|
|
14292
|
+
resource_server_identifier: string;
|
|
14293
|
+
permission_name: string;
|
|
14294
|
+
}>;
|
|
14295
|
+
export type RolePermissionInsert = z.infer<typeof rolePermissionInsertSchema>;
|
|
14296
|
+
export declare const rolePermissionSchema: z.ZodObject<{
|
|
14297
|
+
tenant_id: z.ZodString;
|
|
14298
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14299
|
+
role_id: z.ZodString;
|
|
14397
14300
|
resource_server_identifier: z.ZodString;
|
|
14398
|
-
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
|
|
14402
|
-
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
|
|
14407
|
-
|
|
14408
|
-
|
|
14409
|
-
|
|
14410
|
-
|
|
14411
|
-
|
|
14301
|
+
permission_name: z.ZodString;
|
|
14302
|
+
}, "strip", z.ZodTypeAny, {
|
|
14303
|
+
tenant_id: string;
|
|
14304
|
+
role_id: string;
|
|
14305
|
+
resource_server_identifier: string;
|
|
14306
|
+
permission_name: string;
|
|
14307
|
+
created_at?: string | undefined;
|
|
14308
|
+
}, {
|
|
14309
|
+
tenant_id: string;
|
|
14310
|
+
role_id: string;
|
|
14311
|
+
resource_server_identifier: string;
|
|
14312
|
+
permission_name: string;
|
|
14313
|
+
created_at?: string | undefined;
|
|
14314
|
+
}>;
|
|
14315
|
+
export type RolePermission = z.infer<typeof rolePermissionSchema>;
|
|
14316
|
+
export declare const rolePermissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14317
|
+
tenant_id: z.ZodString;
|
|
14412
14318
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14413
|
-
|
|
14414
|
-
|
|
14319
|
+
role_id: z.ZodString;
|
|
14320
|
+
resource_server_identifier: z.ZodString;
|
|
14415
14321
|
permission_name: z.ZodString;
|
|
14416
|
-
|
|
14322
|
+
}, "strip", z.ZodTypeAny, {
|
|
14323
|
+
tenant_id: string;
|
|
14324
|
+
role_id: string;
|
|
14325
|
+
resource_server_identifier: string;
|
|
14326
|
+
permission_name: string;
|
|
14327
|
+
created_at?: string | undefined;
|
|
14328
|
+
}, {
|
|
14329
|
+
tenant_id: string;
|
|
14330
|
+
role_id: string;
|
|
14331
|
+
resource_server_identifier: string;
|
|
14332
|
+
permission_name: string;
|
|
14333
|
+
created_at?: string | undefined;
|
|
14334
|
+
}>, "many">;
|
|
14335
|
+
export type RolePermissionList = z.infer<typeof rolePermissionListSchema>;
|
|
14336
|
+
export declare const rolePermissionWithDetailsSchema: z.ZodObject<{
|
|
14337
|
+
role_id: z.ZodString;
|
|
14417
14338
|
resource_server_identifier: z.ZodString;
|
|
14418
14339
|
resource_server_name: z.ZodString;
|
|
14419
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14420
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14421
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14422
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14423
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14424
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14425
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14426
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14427
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14428
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14429
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14430
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14431
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14432
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14433
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14434
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14435
14340
|
permission_name: z.ZodString;
|
|
14436
14341
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14342
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14343
|
+
}, "strip", z.ZodTypeAny, {
|
|
14344
|
+
role_id: string;
|
|
14345
|
+
resource_server_identifier: string;
|
|
14346
|
+
permission_name: string;
|
|
14347
|
+
resource_server_name: string;
|
|
14348
|
+
description?: string | null | undefined;
|
|
14349
|
+
created_at?: string | undefined;
|
|
14350
|
+
}, {
|
|
14351
|
+
role_id: string;
|
|
14352
|
+
resource_server_identifier: string;
|
|
14353
|
+
permission_name: string;
|
|
14354
|
+
resource_server_name: string;
|
|
14355
|
+
description?: string | null | undefined;
|
|
14356
|
+
created_at?: string | undefined;
|
|
14357
|
+
}>;
|
|
14358
|
+
export type RolePermissionWithDetails = z.infer<typeof rolePermissionWithDetailsSchema>;
|
|
14359
|
+
export declare const rolePermissionWithDetailsListSchema: z.ZodArray<z.ZodObject<{
|
|
14360
|
+
role_id: z.ZodString;
|
|
14437
14361
|
resource_server_identifier: z.ZodString;
|
|
14438
14362
|
resource_server_name: z.ZodString;
|
|
14439
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14440
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14441
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14442
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14443
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14444
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14445
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14446
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14447
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14448
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14449
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14450
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14451
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14452
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14453
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14454
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
14455
|
-
export type Permission = z.infer<typeof permissionSchema>;
|
|
14456
|
-
export type PermissionInsert = z.input<typeof permissionSchema>;
|
|
14457
|
-
export declare const permissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14458
14363
|
permission_name: z.ZodString;
|
|
14459
14364
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14365
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14366
|
+
}, "strip", z.ZodTypeAny, {
|
|
14367
|
+
role_id: string;
|
|
14368
|
+
resource_server_identifier: string;
|
|
14369
|
+
permission_name: string;
|
|
14370
|
+
resource_server_name: string;
|
|
14371
|
+
description?: string | null | undefined;
|
|
14372
|
+
created_at?: string | undefined;
|
|
14373
|
+
}, {
|
|
14374
|
+
role_id: string;
|
|
14375
|
+
resource_server_identifier: string;
|
|
14376
|
+
permission_name: string;
|
|
14377
|
+
resource_server_name: string;
|
|
14378
|
+
description?: string | null | undefined;
|
|
14379
|
+
created_at?: string | undefined;
|
|
14380
|
+
}>, "many">;
|
|
14381
|
+
export type RolePermissionWithDetailsList = z.infer<typeof rolePermissionWithDetailsListSchema>;
|
|
14382
|
+
export declare const userPermissionInsertSchema: z.ZodObject<{
|
|
14383
|
+
user_id: z.ZodString;
|
|
14460
14384
|
resource_server_identifier: z.ZodString;
|
|
14461
|
-
|
|
14462
|
-
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
|
|
14472
|
-
|
|
14473
|
-
|
|
14474
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14385
|
+
permission_name: z.ZodString;
|
|
14386
|
+
}, "strip", z.ZodTypeAny, {
|
|
14387
|
+
user_id: string;
|
|
14388
|
+
resource_server_identifier: string;
|
|
14389
|
+
permission_name: string;
|
|
14390
|
+
}, {
|
|
14391
|
+
user_id: string;
|
|
14392
|
+
resource_server_identifier: string;
|
|
14393
|
+
permission_name: string;
|
|
14394
|
+
}>;
|
|
14395
|
+
export type UserPermissionInsert = z.infer<typeof userPermissionInsertSchema>;
|
|
14396
|
+
export declare const userPermissionSchema: z.ZodObject<{
|
|
14397
|
+
tenant_id: z.ZodString;
|
|
14475
14398
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14476
|
-
|
|
14477
|
-
|
|
14399
|
+
user_id: z.ZodString;
|
|
14400
|
+
resource_server_identifier: z.ZodString;
|
|
14478
14401
|
permission_name: z.ZodString;
|
|
14479
|
-
|
|
14402
|
+
}, "strip", z.ZodTypeAny, {
|
|
14403
|
+
user_id: string;
|
|
14404
|
+
tenant_id: string;
|
|
14405
|
+
resource_server_identifier: string;
|
|
14406
|
+
permission_name: string;
|
|
14407
|
+
created_at?: string | undefined;
|
|
14408
|
+
}, {
|
|
14409
|
+
user_id: string;
|
|
14410
|
+
tenant_id: string;
|
|
14411
|
+
resource_server_identifier: string;
|
|
14412
|
+
permission_name: string;
|
|
14413
|
+
created_at?: string | undefined;
|
|
14414
|
+
}>;
|
|
14415
|
+
export type UserPermission = z.infer<typeof userPermissionSchema>;
|
|
14416
|
+
export declare const userPermissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14417
|
+
tenant_id: z.ZodString;
|
|
14418
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14419
|
+
user_id: z.ZodString;
|
|
14420
|
+
resource_server_identifier: z.ZodString;
|
|
14421
|
+
permission_name: z.ZodString;
|
|
14422
|
+
}, "strip", z.ZodTypeAny, {
|
|
14423
|
+
user_id: string;
|
|
14424
|
+
tenant_id: string;
|
|
14425
|
+
resource_server_identifier: string;
|
|
14426
|
+
permission_name: string;
|
|
14427
|
+
created_at?: string | undefined;
|
|
14428
|
+
}, {
|
|
14429
|
+
user_id: string;
|
|
14430
|
+
tenant_id: string;
|
|
14431
|
+
resource_server_identifier: string;
|
|
14432
|
+
permission_name: string;
|
|
14433
|
+
created_at?: string | undefined;
|
|
14434
|
+
}>, "many">;
|
|
14435
|
+
export type UserPermissionList = z.infer<typeof userPermissionListSchema>;
|
|
14436
|
+
export declare const userPermissionWithDetailsSchema: z.ZodObject<{
|
|
14437
|
+
user_id: z.ZodString;
|
|
14480
14438
|
resource_server_identifier: z.ZodString;
|
|
14481
14439
|
resource_server_name: z.ZodString;
|
|
14482
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14483
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14484
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14485
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14486
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14487
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14488
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14489
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14490
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14491
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14492
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14493
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14494
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14495
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14496
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14497
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14498
14440
|
permission_name: z.ZodString;
|
|
14499
14441
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14442
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14443
|
+
}, "strip", z.ZodTypeAny, {
|
|
14444
|
+
user_id: string;
|
|
14445
|
+
resource_server_identifier: string;
|
|
14446
|
+
permission_name: string;
|
|
14447
|
+
resource_server_name: string;
|
|
14448
|
+
description?: string | null | undefined;
|
|
14449
|
+
created_at?: string | undefined;
|
|
14450
|
+
}, {
|
|
14451
|
+
user_id: string;
|
|
14452
|
+
resource_server_identifier: string;
|
|
14453
|
+
permission_name: string;
|
|
14454
|
+
resource_server_name: string;
|
|
14455
|
+
description?: string | null | undefined;
|
|
14456
|
+
created_at?: string | undefined;
|
|
14457
|
+
}>;
|
|
14458
|
+
export type UserPermissionWithDetails = z.infer<typeof userPermissionWithDetailsSchema>;
|
|
14459
|
+
export declare const userPermissionWithDetailsListSchema: z.ZodArray<z.ZodObject<{
|
|
14460
|
+
user_id: z.ZodString;
|
|
14500
14461
|
resource_server_identifier: z.ZodString;
|
|
14501
14462
|
resource_server_name: z.ZodString;
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14505
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14506
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14507
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14508
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14509
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14510
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14511
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14512
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14513
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14514
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14463
|
+
permission_name: z.ZodString;
|
|
14464
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14515
14465
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14516
|
-
|
|
14517
|
-
|
|
14518
|
-
|
|
14466
|
+
}, "strip", z.ZodTypeAny, {
|
|
14467
|
+
user_id: string;
|
|
14468
|
+
resource_server_identifier: string;
|
|
14469
|
+
permission_name: string;
|
|
14470
|
+
resource_server_name: string;
|
|
14471
|
+
description?: string | null | undefined;
|
|
14472
|
+
created_at?: string | undefined;
|
|
14473
|
+
}, {
|
|
14474
|
+
user_id: string;
|
|
14475
|
+
resource_server_identifier: string;
|
|
14476
|
+
permission_name: string;
|
|
14477
|
+
resource_server_name: string;
|
|
14478
|
+
description?: string | null | undefined;
|
|
14479
|
+
created_at?: string | undefined;
|
|
14480
|
+
}>, "many">;
|
|
14481
|
+
export type UserPermissionWithDetailsList = z.infer<typeof userPermissionWithDetailsListSchema>;
|
|
14519
14482
|
export declare const roleInsertSchema: z.ZodObject<{
|
|
14520
14483
|
name: z.ZodString;
|
|
14521
14484
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14733,15 +14696,15 @@ export interface ResourceServersAdapter {
|
|
|
14733
14696
|
update(tenant_id: string, id: string, resourceServer: Partial<ResourceServerInsert>): Promise<boolean>;
|
|
14734
14697
|
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
14735
14698
|
}
|
|
14736
|
-
export interface
|
|
14737
|
-
permissions:
|
|
14699
|
+
export interface RolePermissionsAdapter {
|
|
14700
|
+
assign(tenant_id: string, role_id: string, permissions: RolePermissionInsert[]): Promise<boolean>;
|
|
14701
|
+
remove(tenant_id: string, role_id: string, permissions: Pick<RolePermissionInsert, "resource_server_identifier" | "permission_name">[]): Promise<boolean>;
|
|
14702
|
+
list(tenant_id: string, role_id: string, params?: ListParams): Promise<RolePermissionWithDetailsList>;
|
|
14738
14703
|
}
|
|
14739
|
-
export interface
|
|
14740
|
-
|
|
14741
|
-
|
|
14742
|
-
list(tenant_id: string, params?: ListParams): Promise<
|
|
14743
|
-
update(tenant_id: string, permission_id: string, permission: Partial<PermissionInsert>): Promise<boolean>;
|
|
14744
|
-
remove(tenant_id: string, permission_id: string): Promise<boolean>;
|
|
14704
|
+
export interface UserPermissionsAdapter {
|
|
14705
|
+
assign(tenant_id: string, user_id: string, permissions: UserPermissionInsert[]): Promise<boolean>;
|
|
14706
|
+
remove(tenant_id: string, user_id: string, permissions: Pick<UserPermissionInsert, "resource_server_identifier" | "permission_name">[]): Promise<boolean>;
|
|
14707
|
+
list(tenant_id: string, user_id: string, params?: ListParams): Promise<UserPermissionWithDetailsList>;
|
|
14745
14708
|
}
|
|
14746
14709
|
export interface ListRolesResponse {
|
|
14747
14710
|
roles: Role[];
|
|
@@ -14774,7 +14737,8 @@ export interface DataAdapters {
|
|
|
14774
14737
|
promptSettings: PromptSettingsAdapter;
|
|
14775
14738
|
refreshTokens: RefreshTokensAdapter;
|
|
14776
14739
|
resourceServers: ResourceServersAdapter;
|
|
14777
|
-
|
|
14740
|
+
rolePermissions: RolePermissionsAdapter;
|
|
14741
|
+
userPermissions: UserPermissionsAdapter;
|
|
14778
14742
|
roles: RolesAdapter;
|
|
14779
14743
|
sessions: SessionsAdapter;
|
|
14780
14744
|
tenants: TenantsDataAdapter;
|
|
@@ -14957,8 +14921,8 @@ export declare type Fetcher = {
|
|
|
14957
14921
|
export type Bindings = {
|
|
14958
14922
|
ENVIRONMENT: string;
|
|
14959
14923
|
AUTH_URL: string;
|
|
14960
|
-
JWKS_URL
|
|
14961
|
-
JWKS_SERVICE
|
|
14924
|
+
JWKS_URL?: string;
|
|
14925
|
+
JWKS_SERVICE?: Fetcher;
|
|
14962
14926
|
ISSUER: string;
|
|
14963
14927
|
UNIVERSAL_LOGIN_URL?: string;
|
|
14964
14928
|
OAUTH_API_URL?: string;
|
|
@@ -15230,6 +15194,290 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15230
15194
|
Bindings: Bindings;
|
|
15231
15195
|
Variables: Variables;
|
|
15232
15196
|
}, import("hono/types").MergeSchemaPath<{
|
|
15197
|
+
"/": {
|
|
15198
|
+
$get: {
|
|
15199
|
+
input: {
|
|
15200
|
+
query: {
|
|
15201
|
+
sort?: string | undefined;
|
|
15202
|
+
page?: string | undefined;
|
|
15203
|
+
per_page?: string | undefined;
|
|
15204
|
+
include_totals?: string | undefined;
|
|
15205
|
+
q?: string | undefined;
|
|
15206
|
+
};
|
|
15207
|
+
} & {
|
|
15208
|
+
header: {
|
|
15209
|
+
"tenant-id": string;
|
|
15210
|
+
};
|
|
15211
|
+
};
|
|
15212
|
+
output: {
|
|
15213
|
+
name: string;
|
|
15214
|
+
identifier: string;
|
|
15215
|
+
options?: {
|
|
15216
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
15217
|
+
enforce_policies?: boolean | undefined | undefined;
|
|
15218
|
+
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
15219
|
+
skip_userinfo?: boolean | undefined | undefined;
|
|
15220
|
+
persist_client_authorization?: boolean | undefined | undefined;
|
|
15221
|
+
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
15222
|
+
mtls?: {
|
|
15223
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
15224
|
+
} | undefined;
|
|
15225
|
+
} | undefined;
|
|
15226
|
+
created_at?: string | undefined | undefined;
|
|
15227
|
+
updated_at?: string | undefined | undefined;
|
|
15228
|
+
id?: string | undefined | undefined;
|
|
15229
|
+
scopes?: {
|
|
15230
|
+
value: string;
|
|
15231
|
+
description?: string | undefined | undefined;
|
|
15232
|
+
}[] | undefined;
|
|
15233
|
+
signing_alg?: string | undefined | undefined;
|
|
15234
|
+
signing_secret?: string | undefined | undefined;
|
|
15235
|
+
token_lifetime?: number | undefined | undefined;
|
|
15236
|
+
token_lifetime_for_web?: number | undefined | undefined;
|
|
15237
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined | undefined;
|
|
15238
|
+
allow_offline_access?: boolean | undefined | undefined;
|
|
15239
|
+
verificationKey?: string | undefined | undefined;
|
|
15240
|
+
}[] | {
|
|
15241
|
+
length: number;
|
|
15242
|
+
start: number;
|
|
15243
|
+
limit: number;
|
|
15244
|
+
resource_servers: {
|
|
15245
|
+
name: string;
|
|
15246
|
+
identifier: string;
|
|
15247
|
+
options?: {
|
|
15248
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
15249
|
+
enforce_policies?: boolean | undefined | undefined;
|
|
15250
|
+
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
15251
|
+
skip_userinfo?: boolean | undefined | undefined;
|
|
15252
|
+
persist_client_authorization?: boolean | undefined | undefined;
|
|
15253
|
+
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
15254
|
+
mtls?: {
|
|
15255
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
15256
|
+
} | undefined;
|
|
15257
|
+
} | undefined;
|
|
15258
|
+
created_at?: string | undefined | undefined;
|
|
15259
|
+
updated_at?: string | undefined | undefined;
|
|
15260
|
+
id?: string | undefined | undefined;
|
|
15261
|
+
scopes?: {
|
|
15262
|
+
value: string;
|
|
15263
|
+
description?: string | undefined | undefined;
|
|
15264
|
+
}[] | undefined;
|
|
15265
|
+
signing_alg?: string | undefined | undefined;
|
|
15266
|
+
signing_secret?: string | undefined | undefined;
|
|
15267
|
+
token_lifetime?: number | undefined | undefined;
|
|
15268
|
+
token_lifetime_for_web?: number | undefined | undefined;
|
|
15269
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined | undefined;
|
|
15270
|
+
allow_offline_access?: boolean | undefined | undefined;
|
|
15271
|
+
verificationKey?: string | undefined | undefined;
|
|
15272
|
+
}[];
|
|
15273
|
+
};
|
|
15274
|
+
outputFormat: "json";
|
|
15275
|
+
status: 200;
|
|
15276
|
+
};
|
|
15277
|
+
};
|
|
15278
|
+
} & {
|
|
15279
|
+
"/:id": {
|
|
15280
|
+
$get: {
|
|
15281
|
+
input: {
|
|
15282
|
+
param: {
|
|
15283
|
+
id: string;
|
|
15284
|
+
};
|
|
15285
|
+
} & {
|
|
15286
|
+
header: {
|
|
15287
|
+
"tenant-id": string;
|
|
15288
|
+
};
|
|
15289
|
+
};
|
|
15290
|
+
output: {
|
|
15291
|
+
name: string;
|
|
15292
|
+
identifier: string;
|
|
15293
|
+
options?: {
|
|
15294
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
15295
|
+
enforce_policies?: boolean | undefined | undefined;
|
|
15296
|
+
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
15297
|
+
skip_userinfo?: boolean | undefined | undefined;
|
|
15298
|
+
persist_client_authorization?: boolean | undefined | undefined;
|
|
15299
|
+
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
15300
|
+
mtls?: {
|
|
15301
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
15302
|
+
} | undefined;
|
|
15303
|
+
} | undefined;
|
|
15304
|
+
created_at?: string | undefined | undefined;
|
|
15305
|
+
updated_at?: string | undefined | undefined;
|
|
15306
|
+
id?: string | undefined | undefined;
|
|
15307
|
+
scopes?: {
|
|
15308
|
+
value: string;
|
|
15309
|
+
description?: string | undefined | undefined;
|
|
15310
|
+
}[] | undefined;
|
|
15311
|
+
signing_alg?: string | undefined | undefined;
|
|
15312
|
+
signing_secret?: string | undefined | undefined;
|
|
15313
|
+
token_lifetime?: number | undefined | undefined;
|
|
15314
|
+
token_lifetime_for_web?: number | undefined | undefined;
|
|
15315
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined | undefined;
|
|
15316
|
+
allow_offline_access?: boolean | undefined | undefined;
|
|
15317
|
+
verificationKey?: string | undefined | undefined;
|
|
15318
|
+
};
|
|
15319
|
+
outputFormat: "json";
|
|
15320
|
+
status: 200;
|
|
15321
|
+
};
|
|
15322
|
+
};
|
|
15323
|
+
} & {
|
|
15324
|
+
"/:id": {
|
|
15325
|
+
$delete: {
|
|
15326
|
+
input: {
|
|
15327
|
+
param: {
|
|
15328
|
+
id: string;
|
|
15329
|
+
};
|
|
15330
|
+
} & {
|
|
15331
|
+
header: {
|
|
15332
|
+
"tenant-id": string;
|
|
15333
|
+
};
|
|
15334
|
+
};
|
|
15335
|
+
output: {};
|
|
15336
|
+
outputFormat: string;
|
|
15337
|
+
status: 200;
|
|
15338
|
+
};
|
|
15339
|
+
};
|
|
15340
|
+
} & {
|
|
15341
|
+
"/:id": {
|
|
15342
|
+
$patch: {
|
|
15343
|
+
input: {
|
|
15344
|
+
param: {
|
|
15345
|
+
id: string;
|
|
15346
|
+
};
|
|
15347
|
+
} & {
|
|
15348
|
+
header: {
|
|
15349
|
+
"tenant-id": string;
|
|
15350
|
+
};
|
|
15351
|
+
} & {
|
|
15352
|
+
json: {
|
|
15353
|
+
name?: string | undefined;
|
|
15354
|
+
options?: {
|
|
15355
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
15356
|
+
enforce_policies?: boolean | undefined;
|
|
15357
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
15358
|
+
skip_userinfo?: boolean | undefined;
|
|
15359
|
+
persist_client_authorization?: boolean | undefined;
|
|
15360
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
15361
|
+
mtls?: {
|
|
15362
|
+
bound_access_tokens?: boolean | undefined;
|
|
15363
|
+
} | undefined;
|
|
15364
|
+
} | undefined;
|
|
15365
|
+
scopes?: {
|
|
15366
|
+
value: string;
|
|
15367
|
+
description?: string | undefined;
|
|
15368
|
+
}[] | undefined;
|
|
15369
|
+
identifier?: string | undefined;
|
|
15370
|
+
signing_alg?: string | undefined;
|
|
15371
|
+
signing_secret?: string | undefined;
|
|
15372
|
+
token_lifetime?: number | undefined;
|
|
15373
|
+
token_lifetime_for_web?: number | undefined;
|
|
15374
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined;
|
|
15375
|
+
allow_offline_access?: boolean | undefined;
|
|
15376
|
+
verificationKey?: string | undefined;
|
|
15377
|
+
};
|
|
15378
|
+
};
|
|
15379
|
+
output: {
|
|
15380
|
+
name: string;
|
|
15381
|
+
identifier: string;
|
|
15382
|
+
options?: {
|
|
15383
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
15384
|
+
enforce_policies?: boolean | undefined | undefined;
|
|
15385
|
+
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
15386
|
+
skip_userinfo?: boolean | undefined | undefined;
|
|
15387
|
+
persist_client_authorization?: boolean | undefined | undefined;
|
|
15388
|
+
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
15389
|
+
mtls?: {
|
|
15390
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
15391
|
+
} | undefined;
|
|
15392
|
+
} | undefined;
|
|
15393
|
+
created_at?: string | undefined | undefined;
|
|
15394
|
+
updated_at?: string | undefined | undefined;
|
|
15395
|
+
id?: string | undefined | undefined;
|
|
15396
|
+
scopes?: {
|
|
15397
|
+
value: string;
|
|
15398
|
+
description?: string | undefined | undefined;
|
|
15399
|
+
}[] | undefined;
|
|
15400
|
+
signing_alg?: string | undefined | undefined;
|
|
15401
|
+
signing_secret?: string | undefined | undefined;
|
|
15402
|
+
token_lifetime?: number | undefined | undefined;
|
|
15403
|
+
token_lifetime_for_web?: number | undefined | undefined;
|
|
15404
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined | undefined;
|
|
15405
|
+
allow_offline_access?: boolean | undefined | undefined;
|
|
15406
|
+
verificationKey?: string | undefined | undefined;
|
|
15407
|
+
};
|
|
15408
|
+
outputFormat: "json";
|
|
15409
|
+
status: 200;
|
|
15410
|
+
};
|
|
15411
|
+
};
|
|
15412
|
+
} & {
|
|
15413
|
+
"/": {
|
|
15414
|
+
$post: {
|
|
15415
|
+
input: {
|
|
15416
|
+
header: {
|
|
15417
|
+
"tenant-id": string;
|
|
15418
|
+
};
|
|
15419
|
+
} & {
|
|
15420
|
+
json: {
|
|
15421
|
+
name: string;
|
|
15422
|
+
identifier: string;
|
|
15423
|
+
options?: {
|
|
15424
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
15425
|
+
enforce_policies?: boolean | undefined;
|
|
15426
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
15427
|
+
skip_userinfo?: boolean | undefined;
|
|
15428
|
+
persist_client_authorization?: boolean | undefined;
|
|
15429
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
15430
|
+
mtls?: {
|
|
15431
|
+
bound_access_tokens?: boolean | undefined;
|
|
15432
|
+
} | undefined;
|
|
15433
|
+
} | undefined;
|
|
15434
|
+
scopes?: {
|
|
15435
|
+
value: string;
|
|
15436
|
+
description?: string | undefined;
|
|
15437
|
+
}[] | undefined;
|
|
15438
|
+
signing_alg?: string | undefined;
|
|
15439
|
+
signing_secret?: string | undefined;
|
|
15440
|
+
token_lifetime?: number | undefined;
|
|
15441
|
+
token_lifetime_for_web?: number | undefined;
|
|
15442
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined;
|
|
15443
|
+
allow_offline_access?: boolean | undefined;
|
|
15444
|
+
verificationKey?: string | undefined;
|
|
15445
|
+
};
|
|
15446
|
+
};
|
|
15447
|
+
output: {
|
|
15448
|
+
name: string;
|
|
15449
|
+
identifier: string;
|
|
15450
|
+
options?: {
|
|
15451
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined | undefined;
|
|
15452
|
+
enforce_policies?: boolean | undefined | undefined;
|
|
15453
|
+
allow_skipping_userinfo?: boolean | undefined | undefined;
|
|
15454
|
+
skip_userinfo?: boolean | undefined | undefined;
|
|
15455
|
+
persist_client_authorization?: boolean | undefined | undefined;
|
|
15456
|
+
enable_introspection_endpoint?: boolean | undefined | undefined;
|
|
15457
|
+
mtls?: {
|
|
15458
|
+
bound_access_tokens?: boolean | undefined | undefined;
|
|
15459
|
+
} | undefined;
|
|
15460
|
+
} | undefined;
|
|
15461
|
+
created_at?: string | undefined | undefined;
|
|
15462
|
+
updated_at?: string | undefined | undefined;
|
|
15463
|
+
id?: string | undefined | undefined;
|
|
15464
|
+
scopes?: {
|
|
15465
|
+
value: string;
|
|
15466
|
+
description?: string | undefined | undefined;
|
|
15467
|
+
}[] | undefined;
|
|
15468
|
+
signing_alg?: string | undefined | undefined;
|
|
15469
|
+
signing_secret?: string | undefined | undefined;
|
|
15470
|
+
token_lifetime?: number | undefined | undefined;
|
|
15471
|
+
token_lifetime_for_web?: number | undefined | undefined;
|
|
15472
|
+
skip_consent_for_verifiable_first_party_clients?: boolean | undefined | undefined;
|
|
15473
|
+
allow_offline_access?: boolean | undefined | undefined;
|
|
15474
|
+
verificationKey?: string | undefined | undefined;
|
|
15475
|
+
};
|
|
15476
|
+
outputFormat: "json";
|
|
15477
|
+
status: 201;
|
|
15478
|
+
};
|
|
15479
|
+
};
|
|
15480
|
+
}, "/resource-servers"> & import("hono/types").MergeSchemaPath<{
|
|
15233
15481
|
"/": {
|
|
15234
15482
|
$get: {
|
|
15235
15483
|
input: {
|
|
@@ -15359,6 +15607,86 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15359
15607
|
status: 200;
|
|
15360
15608
|
};
|
|
15361
15609
|
};
|
|
15610
|
+
} & {
|
|
15611
|
+
"/:id/permissions": {
|
|
15612
|
+
$get: {
|
|
15613
|
+
input: {
|
|
15614
|
+
param: {
|
|
15615
|
+
id: string;
|
|
15616
|
+
};
|
|
15617
|
+
} & {
|
|
15618
|
+
query: {
|
|
15619
|
+
sort?: string | undefined;
|
|
15620
|
+
page?: string | undefined;
|
|
15621
|
+
per_page?: string | undefined;
|
|
15622
|
+
include_totals?: string | undefined;
|
|
15623
|
+
q?: string | undefined;
|
|
15624
|
+
};
|
|
15625
|
+
} & {
|
|
15626
|
+
header: {
|
|
15627
|
+
"tenant-id": string;
|
|
15628
|
+
};
|
|
15629
|
+
};
|
|
15630
|
+
output: {
|
|
15631
|
+
role_id: string;
|
|
15632
|
+
resource_server_identifier: string;
|
|
15633
|
+
permission_name: string;
|
|
15634
|
+
resource_server_name: string;
|
|
15635
|
+
description?: string | null | undefined | undefined;
|
|
15636
|
+
created_at?: string | undefined | undefined;
|
|
15637
|
+
}[];
|
|
15638
|
+
outputFormat: "json";
|
|
15639
|
+
status: 200;
|
|
15640
|
+
};
|
|
15641
|
+
};
|
|
15642
|
+
} & {
|
|
15643
|
+
"/:id/permissions": {
|
|
15644
|
+
$post: {
|
|
15645
|
+
input: {
|
|
15646
|
+
param: {
|
|
15647
|
+
id: string;
|
|
15648
|
+
};
|
|
15649
|
+
} & {
|
|
15650
|
+
header: {
|
|
15651
|
+
"tenant-id": string;
|
|
15652
|
+
};
|
|
15653
|
+
} & {
|
|
15654
|
+
json: {
|
|
15655
|
+
permissions: {
|
|
15656
|
+
resource_server_identifier: string;
|
|
15657
|
+
permission_name: string;
|
|
15658
|
+
}[];
|
|
15659
|
+
};
|
|
15660
|
+
};
|
|
15661
|
+
output: {};
|
|
15662
|
+
outputFormat: string;
|
|
15663
|
+
status: 201;
|
|
15664
|
+
};
|
|
15665
|
+
};
|
|
15666
|
+
} & {
|
|
15667
|
+
"/:id/permissions": {
|
|
15668
|
+
$delete: {
|
|
15669
|
+
input: {
|
|
15670
|
+
param: {
|
|
15671
|
+
id: string;
|
|
15672
|
+
};
|
|
15673
|
+
} & {
|
|
15674
|
+
header: {
|
|
15675
|
+
"tenant-id": string;
|
|
15676
|
+
};
|
|
15677
|
+
} & {
|
|
15678
|
+
json: {
|
|
15679
|
+
permissions: {
|
|
15680
|
+
resource_server_identifier: string;
|
|
15681
|
+
permission_name: string;
|
|
15682
|
+
}[];
|
|
15683
|
+
};
|
|
15684
|
+
};
|
|
15685
|
+
output: {};
|
|
15686
|
+
outputFormat: string;
|
|
15687
|
+
status: 200;
|
|
15688
|
+
};
|
|
15689
|
+
};
|
|
15362
15690
|
}, "/roles"> & import("hono/types").MergeSchemaPath<{
|
|
15363
15691
|
"/": {
|
|
15364
15692
|
$get: {
|
|
@@ -18186,6 +18514,86 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
18186
18514
|
status: 200;
|
|
18187
18515
|
};
|
|
18188
18516
|
};
|
|
18517
|
+
} & {
|
|
18518
|
+
"/:user_id/permissions": {
|
|
18519
|
+
$get: {
|
|
18520
|
+
input: {
|
|
18521
|
+
param: {
|
|
18522
|
+
user_id: string;
|
|
18523
|
+
};
|
|
18524
|
+
} & {
|
|
18525
|
+
query: {
|
|
18526
|
+
sort?: string | undefined;
|
|
18527
|
+
page?: string | undefined;
|
|
18528
|
+
per_page?: string | undefined;
|
|
18529
|
+
include_totals?: string | undefined;
|
|
18530
|
+
q?: string | undefined;
|
|
18531
|
+
};
|
|
18532
|
+
} & {
|
|
18533
|
+
header: {
|
|
18534
|
+
"tenant-id": string;
|
|
18535
|
+
};
|
|
18536
|
+
};
|
|
18537
|
+
output: {
|
|
18538
|
+
user_id: string;
|
|
18539
|
+
resource_server_identifier: string;
|
|
18540
|
+
permission_name: string;
|
|
18541
|
+
resource_server_name: string;
|
|
18542
|
+
description?: string | null | undefined | undefined;
|
|
18543
|
+
created_at?: string | undefined | undefined;
|
|
18544
|
+
}[];
|
|
18545
|
+
outputFormat: "json";
|
|
18546
|
+
status: 200;
|
|
18547
|
+
};
|
|
18548
|
+
};
|
|
18549
|
+
} & {
|
|
18550
|
+
"/:user_id/permissions": {
|
|
18551
|
+
$post: {
|
|
18552
|
+
input: {
|
|
18553
|
+
param: {
|
|
18554
|
+
user_id: string;
|
|
18555
|
+
};
|
|
18556
|
+
} & {
|
|
18557
|
+
header: {
|
|
18558
|
+
"tenant-id": string;
|
|
18559
|
+
};
|
|
18560
|
+
} & {
|
|
18561
|
+
json: {
|
|
18562
|
+
permissions: {
|
|
18563
|
+
resource_server_identifier: string;
|
|
18564
|
+
permission_name: string;
|
|
18565
|
+
}[];
|
|
18566
|
+
};
|
|
18567
|
+
};
|
|
18568
|
+
output: {};
|
|
18569
|
+
outputFormat: string;
|
|
18570
|
+
status: 201;
|
|
18571
|
+
};
|
|
18572
|
+
};
|
|
18573
|
+
} & {
|
|
18574
|
+
"/:user_id/permissions": {
|
|
18575
|
+
$delete: {
|
|
18576
|
+
input: {
|
|
18577
|
+
param: {
|
|
18578
|
+
user_id: string;
|
|
18579
|
+
};
|
|
18580
|
+
} & {
|
|
18581
|
+
header: {
|
|
18582
|
+
"tenant-id": string;
|
|
18583
|
+
};
|
|
18584
|
+
} & {
|
|
18585
|
+
json: {
|
|
18586
|
+
permissions: {
|
|
18587
|
+
resource_server_identifier: string;
|
|
18588
|
+
permission_name: string;
|
|
18589
|
+
}[];
|
|
18590
|
+
};
|
|
18591
|
+
};
|
|
18592
|
+
output: {};
|
|
18593
|
+
outputFormat: string;
|
|
18594
|
+
status: 200;
|
|
18595
|
+
};
|
|
18596
|
+
};
|
|
18189
18597
|
}, "/users"> & import("hono/types").MergeSchemaPath<{
|
|
18190
18598
|
"/": {
|
|
18191
18599
|
$get: {
|