@authhero/adapter-interfaces 0.80.0 → 0.81.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/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +324 -360
- package/dist/adapter-interfaces.mjs +806 -778
- package/package.json +1 -1
|
@@ -13906,41 +13906,27 @@ export declare const resourceServerOptionsSchema: z.ZodObject<{
|
|
|
13906
13906
|
}, {
|
|
13907
13907
|
bound_access_tokens?: boolean | undefined;
|
|
13908
13908
|
}>>;
|
|
13909
|
-
}, "
|
|
13910
|
-
token_dialect
|
|
13911
|
-
|
|
13912
|
-
|
|
13913
|
-
|
|
13914
|
-
|
|
13915
|
-
|
|
13916
|
-
|
|
13917
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13918
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13919
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13920
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13921
|
-
}, "strip", z.ZodTypeAny, {
|
|
13922
|
-
bound_access_tokens?: boolean | undefined;
|
|
13923
|
-
}, {
|
|
13924
|
-
bound_access_tokens?: boolean | undefined;
|
|
13925
|
-
}>>;
|
|
13926
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
13927
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
13928
|
-
"access_token",
|
|
13929
|
-
"access_token_authz"
|
|
13930
|
-
]>>;
|
|
13931
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
13932
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
13933
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
13934
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13935
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13936
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13937
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13938
|
-
}, "strip", z.ZodTypeAny, {
|
|
13909
|
+
}, "strip", z.ZodTypeAny, {
|
|
13910
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13911
|
+
enforce_policies?: boolean | undefined;
|
|
13912
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13913
|
+
skip_userinfo?: boolean | undefined;
|
|
13914
|
+
persist_client_authorization?: boolean | undefined;
|
|
13915
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13916
|
+
mtls?: {
|
|
13939
13917
|
bound_access_tokens?: boolean | undefined;
|
|
13940
|
-
}
|
|
13918
|
+
} | undefined;
|
|
13919
|
+
}, {
|
|
13920
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13921
|
+
enforce_policies?: boolean | undefined;
|
|
13922
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13923
|
+
skip_userinfo?: boolean | undefined;
|
|
13924
|
+
persist_client_authorization?: boolean | undefined;
|
|
13925
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13926
|
+
mtls?: {
|
|
13941
13927
|
bound_access_tokens?: boolean | undefined;
|
|
13942
|
-
}
|
|
13943
|
-
}
|
|
13928
|
+
} | undefined;
|
|
13929
|
+
}>;
|
|
13944
13930
|
export type ResourceServerOptions = z.infer<typeof resourceServerOptionsSchema>;
|
|
13945
13931
|
export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
13946
13932
|
name: z.ZodString;
|
|
@@ -13979,62 +13965,41 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
13979
13965
|
}, {
|
|
13980
13966
|
bound_access_tokens?: boolean | undefined;
|
|
13981
13967
|
}>>;
|
|
13982
|
-
}, "
|
|
13983
|
-
token_dialect
|
|
13984
|
-
|
|
13985
|
-
|
|
13986
|
-
|
|
13987
|
-
|
|
13988
|
-
|
|
13989
|
-
|
|
13990
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
13991
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
13992
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
13993
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
13994
|
-
}, "strip", z.ZodTypeAny, {
|
|
13995
|
-
bound_access_tokens?: boolean | undefined;
|
|
13996
|
-
}, {
|
|
13997
|
-
bound_access_tokens?: boolean | undefined;
|
|
13998
|
-
}>>;
|
|
13999
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14000
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14001
|
-
"access_token",
|
|
14002
|
-
"access_token_authz"
|
|
14003
|
-
]>>;
|
|
14004
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14005
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14006
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14007
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14008
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14009
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14010
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14011
|
-
}, "strip", z.ZodTypeAny, {
|
|
13968
|
+
}, "strip", z.ZodTypeAny, {
|
|
13969
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13970
|
+
enforce_policies?: boolean | undefined;
|
|
13971
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13972
|
+
skip_userinfo?: boolean | undefined;
|
|
13973
|
+
persist_client_authorization?: boolean | undefined;
|
|
13974
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13975
|
+
mtls?: {
|
|
14012
13976
|
bound_access_tokens?: boolean | undefined;
|
|
14013
|
-
}
|
|
13977
|
+
} | undefined;
|
|
13978
|
+
}, {
|
|
13979
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13980
|
+
enforce_policies?: boolean | undefined;
|
|
13981
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13982
|
+
skip_userinfo?: boolean | undefined;
|
|
13983
|
+
persist_client_authorization?: boolean | undefined;
|
|
13984
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13985
|
+
mtls?: {
|
|
14014
13986
|
bound_access_tokens?: boolean | undefined;
|
|
14015
|
-
}
|
|
14016
|
-
}
|
|
13987
|
+
} | undefined;
|
|
13988
|
+
}>>;
|
|
14017
13989
|
}, "strip", z.ZodTypeAny, {
|
|
14018
13990
|
name: string;
|
|
14019
13991
|
identifier: string;
|
|
14020
|
-
options?:
|
|
14021
|
-
token_dialect
|
|
14022
|
-
|
|
14023
|
-
|
|
14024
|
-
|
|
14025
|
-
|
|
14026
|
-
|
|
14027
|
-
|
|
14028
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14029
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14030
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14031
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14032
|
-
}, "strip", z.ZodTypeAny, {
|
|
14033
|
-
bound_access_tokens?: boolean | undefined;
|
|
14034
|
-
}, {
|
|
13992
|
+
options?: {
|
|
13993
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
13994
|
+
enforce_policies?: boolean | undefined;
|
|
13995
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
13996
|
+
skip_userinfo?: boolean | undefined;
|
|
13997
|
+
persist_client_authorization?: boolean | undefined;
|
|
13998
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
13999
|
+
mtls?: {
|
|
14035
14000
|
bound_access_tokens?: boolean | undefined;
|
|
14036
|
-
}
|
|
14037
|
-
}
|
|
14001
|
+
} | undefined;
|
|
14002
|
+
} | undefined;
|
|
14038
14003
|
scopes?: {
|
|
14039
14004
|
value: string;
|
|
14040
14005
|
description?: string | undefined;
|
|
@@ -14049,24 +14014,17 @@ export declare const resourceServerInsertSchema: z.ZodObject<{
|
|
|
14049
14014
|
}, {
|
|
14050
14015
|
name: string;
|
|
14051
14016
|
identifier: string;
|
|
14052
|
-
options?:
|
|
14053
|
-
token_dialect
|
|
14054
|
-
|
|
14055
|
-
|
|
14056
|
-
|
|
14057
|
-
|
|
14058
|
-
|
|
14059
|
-
|
|
14060
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14061
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14062
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14063
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14064
|
-
}, "strip", z.ZodTypeAny, {
|
|
14065
|
-
bound_access_tokens?: boolean | undefined;
|
|
14066
|
-
}, {
|
|
14017
|
+
options?: {
|
|
14018
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14019
|
+
enforce_policies?: boolean | undefined;
|
|
14020
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14021
|
+
skip_userinfo?: boolean | undefined;
|
|
14022
|
+
persist_client_authorization?: boolean | undefined;
|
|
14023
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14024
|
+
mtls?: {
|
|
14067
14025
|
bound_access_tokens?: boolean | undefined;
|
|
14068
|
-
}
|
|
14069
|
-
}
|
|
14026
|
+
} | undefined;
|
|
14027
|
+
} | undefined;
|
|
14070
14028
|
scopes?: {
|
|
14071
14029
|
value: string;
|
|
14072
14030
|
description?: string | undefined;
|
|
@@ -14119,63 +14077,42 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14119
14077
|
}, {
|
|
14120
14078
|
bound_access_tokens?: boolean | undefined;
|
|
14121
14079
|
}>>;
|
|
14122
|
-
}, "
|
|
14123
|
-
token_dialect
|
|
14124
|
-
|
|
14125
|
-
|
|
14126
|
-
|
|
14127
|
-
|
|
14128
|
-
|
|
14129
|
-
|
|
14130
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14131
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14132
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14133
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14134
|
-
}, "strip", z.ZodTypeAny, {
|
|
14135
|
-
bound_access_tokens?: boolean | undefined;
|
|
14136
|
-
}, {
|
|
14137
|
-
bound_access_tokens?: boolean | undefined;
|
|
14138
|
-
}>>;
|
|
14139
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14140
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14141
|
-
"access_token",
|
|
14142
|
-
"access_token_authz"
|
|
14143
|
-
]>>;
|
|
14144
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14145
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14146
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14147
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14148
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14149
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14150
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14151
|
-
}, "strip", z.ZodTypeAny, {
|
|
14080
|
+
}, "strip", z.ZodTypeAny, {
|
|
14081
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14082
|
+
enforce_policies?: boolean | undefined;
|
|
14083
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14084
|
+
skip_userinfo?: boolean | undefined;
|
|
14085
|
+
persist_client_authorization?: boolean | undefined;
|
|
14086
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14087
|
+
mtls?: {
|
|
14152
14088
|
bound_access_tokens?: boolean | undefined;
|
|
14153
|
-
}
|
|
14089
|
+
} | undefined;
|
|
14090
|
+
}, {
|
|
14091
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14092
|
+
enforce_policies?: boolean | undefined;
|
|
14093
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14094
|
+
skip_userinfo?: boolean | undefined;
|
|
14095
|
+
persist_client_authorization?: boolean | undefined;
|
|
14096
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14097
|
+
mtls?: {
|
|
14154
14098
|
bound_access_tokens?: boolean | undefined;
|
|
14155
|
-
}
|
|
14156
|
-
}
|
|
14099
|
+
} | undefined;
|
|
14100
|
+
}>>;
|
|
14157
14101
|
id: z.ZodOptional<z.ZodString>;
|
|
14158
14102
|
}, "strip", z.ZodTypeAny, {
|
|
14159
14103
|
name: string;
|
|
14160
14104
|
identifier: string;
|
|
14161
|
-
options?:
|
|
14162
|
-
token_dialect
|
|
14163
|
-
|
|
14164
|
-
|
|
14165
|
-
|
|
14166
|
-
|
|
14167
|
-
|
|
14168
|
-
|
|
14169
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14170
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14171
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14172
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14173
|
-
}, "strip", z.ZodTypeAny, {
|
|
14174
|
-
bound_access_tokens?: boolean | undefined;
|
|
14175
|
-
}, {
|
|
14105
|
+
options?: {
|
|
14106
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14107
|
+
enforce_policies?: boolean | undefined;
|
|
14108
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14109
|
+
skip_userinfo?: boolean | undefined;
|
|
14110
|
+
persist_client_authorization?: boolean | undefined;
|
|
14111
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14112
|
+
mtls?: {
|
|
14176
14113
|
bound_access_tokens?: boolean | undefined;
|
|
14177
|
-
}
|
|
14178
|
-
}
|
|
14114
|
+
} | undefined;
|
|
14115
|
+
} | undefined;
|
|
14179
14116
|
created_at?: string | undefined;
|
|
14180
14117
|
updated_at?: string | undefined;
|
|
14181
14118
|
id?: string | undefined;
|
|
@@ -14193,24 +14130,17 @@ export declare const resourceServerSchema: z.ZodObject<{
|
|
|
14193
14130
|
}, {
|
|
14194
14131
|
name: string;
|
|
14195
14132
|
identifier: string;
|
|
14196
|
-
options?:
|
|
14197
|
-
token_dialect
|
|
14198
|
-
|
|
14199
|
-
|
|
14200
|
-
|
|
14201
|
-
|
|
14202
|
-
|
|
14203
|
-
|
|
14204
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14205
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14206
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14207
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14208
|
-
}, "strip", z.ZodTypeAny, {
|
|
14209
|
-
bound_access_tokens?: boolean | undefined;
|
|
14210
|
-
}, {
|
|
14133
|
+
options?: {
|
|
14134
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14135
|
+
enforce_policies?: boolean | undefined;
|
|
14136
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14137
|
+
skip_userinfo?: boolean | undefined;
|
|
14138
|
+
persist_client_authorization?: boolean | undefined;
|
|
14139
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14140
|
+
mtls?: {
|
|
14211
14141
|
bound_access_tokens?: boolean | undefined;
|
|
14212
|
-
}
|
|
14213
|
-
}
|
|
14142
|
+
} | undefined;
|
|
14143
|
+
} | undefined;
|
|
14214
14144
|
created_at?: string | undefined;
|
|
14215
14145
|
updated_at?: string | undefined;
|
|
14216
14146
|
id?: string | undefined;
|
|
@@ -14266,63 +14196,42 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14266
14196
|
}, {
|
|
14267
14197
|
bound_access_tokens?: boolean | undefined;
|
|
14268
14198
|
}>>;
|
|
14269
|
-
}, "
|
|
14270
|
-
token_dialect
|
|
14271
|
-
|
|
14272
|
-
|
|
14273
|
-
|
|
14274
|
-
|
|
14275
|
-
|
|
14276
|
-
|
|
14277
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14278
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14279
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14280
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14281
|
-
}, "strip", z.ZodTypeAny, {
|
|
14282
|
-
bound_access_tokens?: boolean | undefined;
|
|
14283
|
-
}, {
|
|
14284
|
-
bound_access_tokens?: boolean | undefined;
|
|
14285
|
-
}>>;
|
|
14286
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14287
|
-
token_dialect: z.ZodOptional<z.ZodEnum<[
|
|
14288
|
-
"access_token",
|
|
14289
|
-
"access_token_authz"
|
|
14290
|
-
]>>;
|
|
14291
|
-
enforce_policies: z.ZodOptional<z.ZodBoolean>;
|
|
14292
|
-
allow_skipping_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14293
|
-
skip_userinfo: z.ZodOptional<z.ZodBoolean>;
|
|
14294
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14295
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14296
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14297
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14298
|
-
}, "strip", z.ZodTypeAny, {
|
|
14199
|
+
}, "strip", z.ZodTypeAny, {
|
|
14200
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14201
|
+
enforce_policies?: boolean | undefined;
|
|
14202
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14203
|
+
skip_userinfo?: boolean | undefined;
|
|
14204
|
+
persist_client_authorization?: boolean | undefined;
|
|
14205
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14206
|
+
mtls?: {
|
|
14299
14207
|
bound_access_tokens?: boolean | undefined;
|
|
14300
|
-
}
|
|
14208
|
+
} | undefined;
|
|
14209
|
+
}, {
|
|
14210
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14211
|
+
enforce_policies?: boolean | undefined;
|
|
14212
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14213
|
+
skip_userinfo?: boolean | undefined;
|
|
14214
|
+
persist_client_authorization?: boolean | undefined;
|
|
14215
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14216
|
+
mtls?: {
|
|
14301
14217
|
bound_access_tokens?: boolean | undefined;
|
|
14302
|
-
}
|
|
14303
|
-
}
|
|
14218
|
+
} | undefined;
|
|
14219
|
+
}>>;
|
|
14304
14220
|
id: z.ZodOptional<z.ZodString>;
|
|
14305
14221
|
}, "strip", z.ZodTypeAny, {
|
|
14306
14222
|
name: string;
|
|
14307
14223
|
identifier: string;
|
|
14308
|
-
options?:
|
|
14309
|
-
token_dialect
|
|
14310
|
-
|
|
14311
|
-
|
|
14312
|
-
|
|
14313
|
-
|
|
14314
|
-
|
|
14315
|
-
|
|
14316
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14317
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14318
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14319
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14320
|
-
}, "strip", z.ZodTypeAny, {
|
|
14321
|
-
bound_access_tokens?: boolean | undefined;
|
|
14322
|
-
}, {
|
|
14224
|
+
options?: {
|
|
14225
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14226
|
+
enforce_policies?: boolean | undefined;
|
|
14227
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14228
|
+
skip_userinfo?: boolean | undefined;
|
|
14229
|
+
persist_client_authorization?: boolean | undefined;
|
|
14230
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14231
|
+
mtls?: {
|
|
14323
14232
|
bound_access_tokens?: boolean | undefined;
|
|
14324
|
-
}
|
|
14325
|
-
}
|
|
14233
|
+
} | undefined;
|
|
14234
|
+
} | undefined;
|
|
14326
14235
|
created_at?: string | undefined;
|
|
14327
14236
|
updated_at?: string | undefined;
|
|
14328
14237
|
id?: string | undefined;
|
|
@@ -14340,24 +14249,17 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14340
14249
|
}, {
|
|
14341
14250
|
name: string;
|
|
14342
14251
|
identifier: string;
|
|
14343
|
-
options?:
|
|
14344
|
-
token_dialect
|
|
14345
|
-
|
|
14346
|
-
|
|
14347
|
-
|
|
14348
|
-
|
|
14349
|
-
|
|
14350
|
-
|
|
14351
|
-
persist_client_authorization: z.ZodOptional<z.ZodBoolean>;
|
|
14352
|
-
enable_introspection_endpoint: z.ZodOptional<z.ZodBoolean>;
|
|
14353
|
-
mtls: z.ZodOptional<z.ZodObject<{
|
|
14354
|
-
bound_access_tokens: z.ZodOptional<z.ZodBoolean>;
|
|
14355
|
-
}, "strip", z.ZodTypeAny, {
|
|
14356
|
-
bound_access_tokens?: boolean | undefined;
|
|
14357
|
-
}, {
|
|
14252
|
+
options?: {
|
|
14253
|
+
token_dialect?: "access_token" | "access_token_authz" | undefined;
|
|
14254
|
+
enforce_policies?: boolean | undefined;
|
|
14255
|
+
allow_skipping_userinfo?: boolean | undefined;
|
|
14256
|
+
skip_userinfo?: boolean | undefined;
|
|
14257
|
+
persist_client_authorization?: boolean | undefined;
|
|
14258
|
+
enable_introspection_endpoint?: boolean | undefined;
|
|
14259
|
+
mtls?: {
|
|
14358
14260
|
bound_access_tokens?: boolean | undefined;
|
|
14359
|
-
}
|
|
14360
|
-
}
|
|
14261
|
+
} | undefined;
|
|
14262
|
+
} | undefined;
|
|
14361
14263
|
created_at?: string | undefined;
|
|
14362
14264
|
updated_at?: string | undefined;
|
|
14363
14265
|
id?: string | undefined;
|
|
@@ -14374,145 +14276,206 @@ export declare const resourceServerListSchema: z.ZodArray<z.ZodObject<{
|
|
|
14374
14276
|
verificationKey?: string | undefined;
|
|
14375
14277
|
}>, "many">;
|
|
14376
14278
|
export type ResourceServerList = z.infer<typeof resourceServerListSchema>;
|
|
14377
|
-
export declare const
|
|
14378
|
-
|
|
14379
|
-
|
|
14380
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14381
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14382
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14383
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14384
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14385
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14386
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14387
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14388
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14389
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
14390
|
-
export type PermissionSource = z.infer<typeof permissionSourceSchema>;
|
|
14391
|
-
export declare const permissionSchema: z.ZodObject<{
|
|
14279
|
+
export declare const rolePermissionInsertSchema: z.ZodObject<{
|
|
14280
|
+
role_id: z.ZodString;
|
|
14281
|
+
resource_server_identifier: z.ZodString;
|
|
14392
14282
|
permission_name: z.ZodString;
|
|
14393
|
-
|
|
14283
|
+
}, "strip", z.ZodTypeAny, {
|
|
14284
|
+
role_id: string;
|
|
14285
|
+
resource_server_identifier: string;
|
|
14286
|
+
permission_name: string;
|
|
14287
|
+
}, {
|
|
14288
|
+
role_id: string;
|
|
14289
|
+
resource_server_identifier: string;
|
|
14290
|
+
permission_name: string;
|
|
14291
|
+
}>;
|
|
14292
|
+
export type RolePermissionInsert = z.infer<typeof rolePermissionInsertSchema>;
|
|
14293
|
+
export declare const rolePermissionSchema: z.ZodObject<{
|
|
14294
|
+
tenant_id: z.ZodString;
|
|
14295
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14296
|
+
role_id: z.ZodString;
|
|
14394
14297
|
resource_server_identifier: z.ZodString;
|
|
14395
|
-
|
|
14396
|
-
|
|
14397
|
-
|
|
14398
|
-
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
|
|
14402
|
-
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14406
|
-
|
|
14407
|
-
|
|
14408
|
-
|
|
14298
|
+
permission_name: z.ZodString;
|
|
14299
|
+
}, "strip", z.ZodTypeAny, {
|
|
14300
|
+
tenant_id: string;
|
|
14301
|
+
role_id: string;
|
|
14302
|
+
resource_server_identifier: string;
|
|
14303
|
+
permission_name: string;
|
|
14304
|
+
created_at?: string | undefined;
|
|
14305
|
+
}, {
|
|
14306
|
+
tenant_id: string;
|
|
14307
|
+
role_id: string;
|
|
14308
|
+
resource_server_identifier: string;
|
|
14309
|
+
permission_name: string;
|
|
14310
|
+
created_at?: string | undefined;
|
|
14311
|
+
}>;
|
|
14312
|
+
export type RolePermission = z.infer<typeof rolePermissionSchema>;
|
|
14313
|
+
export declare const rolePermissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14314
|
+
tenant_id: z.ZodString;
|
|
14409
14315
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14410
|
-
|
|
14411
|
-
|
|
14316
|
+
role_id: z.ZodString;
|
|
14317
|
+
resource_server_identifier: z.ZodString;
|
|
14412
14318
|
permission_name: z.ZodString;
|
|
14413
|
-
|
|
14319
|
+
}, "strip", z.ZodTypeAny, {
|
|
14320
|
+
tenant_id: string;
|
|
14321
|
+
role_id: string;
|
|
14322
|
+
resource_server_identifier: string;
|
|
14323
|
+
permission_name: string;
|
|
14324
|
+
created_at?: string | undefined;
|
|
14325
|
+
}, {
|
|
14326
|
+
tenant_id: string;
|
|
14327
|
+
role_id: string;
|
|
14328
|
+
resource_server_identifier: string;
|
|
14329
|
+
permission_name: string;
|
|
14330
|
+
created_at?: string | undefined;
|
|
14331
|
+
}>, "many">;
|
|
14332
|
+
export type RolePermissionList = z.infer<typeof rolePermissionListSchema>;
|
|
14333
|
+
export declare const rolePermissionWithDetailsSchema: z.ZodObject<{
|
|
14334
|
+
role_id: z.ZodString;
|
|
14414
14335
|
resource_server_identifier: z.ZodString;
|
|
14415
14336
|
resource_server_name: z.ZodString;
|
|
14416
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14417
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14418
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14419
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14420
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14421
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14422
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14423
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14424
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14425
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14426
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14427
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14428
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14429
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14430
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14431
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14432
14337
|
permission_name: z.ZodString;
|
|
14433
14338
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14339
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14340
|
+
}, "strip", z.ZodTypeAny, {
|
|
14341
|
+
role_id: string;
|
|
14342
|
+
resource_server_identifier: string;
|
|
14343
|
+
permission_name: string;
|
|
14344
|
+
resource_server_name: string;
|
|
14345
|
+
description?: string | null | undefined;
|
|
14346
|
+
created_at?: string | undefined;
|
|
14347
|
+
}, {
|
|
14348
|
+
role_id: string;
|
|
14349
|
+
resource_server_identifier: string;
|
|
14350
|
+
permission_name: string;
|
|
14351
|
+
resource_server_name: string;
|
|
14352
|
+
description?: string | null | undefined;
|
|
14353
|
+
created_at?: string | undefined;
|
|
14354
|
+
}>;
|
|
14355
|
+
export type RolePermissionWithDetails = z.infer<typeof rolePermissionWithDetailsSchema>;
|
|
14356
|
+
export declare const rolePermissionWithDetailsListSchema: z.ZodArray<z.ZodObject<{
|
|
14357
|
+
role_id: z.ZodString;
|
|
14434
14358
|
resource_server_identifier: z.ZodString;
|
|
14435
14359
|
resource_server_name: z.ZodString;
|
|
14436
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14437
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14438
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14439
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14440
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14441
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14442
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14443
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14444
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14445
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14446
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14447
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14448
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14449
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14450
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14451
|
-
}, z.ZodTypeAny, "passthrough">>;
|
|
14452
|
-
export type Permission = z.infer<typeof permissionSchema>;
|
|
14453
|
-
export type PermissionInsert = z.input<typeof permissionSchema>;
|
|
14454
|
-
export declare const permissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14455
14360
|
permission_name: z.ZodString;
|
|
14456
14361
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14362
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14363
|
+
}, "strip", z.ZodTypeAny, {
|
|
14364
|
+
role_id: string;
|
|
14365
|
+
resource_server_identifier: string;
|
|
14366
|
+
permission_name: string;
|
|
14367
|
+
resource_server_name: string;
|
|
14368
|
+
description?: string | null | undefined;
|
|
14369
|
+
created_at?: string | undefined;
|
|
14370
|
+
}, {
|
|
14371
|
+
role_id: string;
|
|
14372
|
+
resource_server_identifier: string;
|
|
14373
|
+
permission_name: string;
|
|
14374
|
+
resource_server_name: string;
|
|
14375
|
+
description?: string | null | undefined;
|
|
14376
|
+
created_at?: string | undefined;
|
|
14377
|
+
}>, "many">;
|
|
14378
|
+
export type RolePermissionWithDetailsList = z.infer<typeof rolePermissionWithDetailsListSchema>;
|
|
14379
|
+
export declare const userPermissionInsertSchema: z.ZodObject<{
|
|
14380
|
+
user_id: z.ZodString;
|
|
14457
14381
|
resource_server_identifier: z.ZodString;
|
|
14458
|
-
|
|
14459
|
-
|
|
14460
|
-
|
|
14461
|
-
|
|
14462
|
-
|
|
14463
|
-
|
|
14464
|
-
|
|
14465
|
-
|
|
14466
|
-
|
|
14467
|
-
|
|
14468
|
-
|
|
14469
|
-
|
|
14470
|
-
|
|
14471
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14382
|
+
permission_name: z.ZodString;
|
|
14383
|
+
}, "strip", z.ZodTypeAny, {
|
|
14384
|
+
user_id: string;
|
|
14385
|
+
resource_server_identifier: string;
|
|
14386
|
+
permission_name: string;
|
|
14387
|
+
}, {
|
|
14388
|
+
user_id: string;
|
|
14389
|
+
resource_server_identifier: string;
|
|
14390
|
+
permission_name: string;
|
|
14391
|
+
}>;
|
|
14392
|
+
export type UserPermissionInsert = z.infer<typeof userPermissionInsertSchema>;
|
|
14393
|
+
export declare const userPermissionSchema: z.ZodObject<{
|
|
14394
|
+
tenant_id: z.ZodString;
|
|
14472
14395
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14473
|
-
|
|
14474
|
-
|
|
14396
|
+
user_id: z.ZodString;
|
|
14397
|
+
resource_server_identifier: z.ZodString;
|
|
14475
14398
|
permission_name: z.ZodString;
|
|
14476
|
-
|
|
14399
|
+
}, "strip", z.ZodTypeAny, {
|
|
14400
|
+
user_id: string;
|
|
14401
|
+
tenant_id: string;
|
|
14402
|
+
resource_server_identifier: string;
|
|
14403
|
+
permission_name: string;
|
|
14404
|
+
created_at?: string | undefined;
|
|
14405
|
+
}, {
|
|
14406
|
+
user_id: string;
|
|
14407
|
+
tenant_id: string;
|
|
14408
|
+
resource_server_identifier: string;
|
|
14409
|
+
permission_name: string;
|
|
14410
|
+
created_at?: string | undefined;
|
|
14411
|
+
}>;
|
|
14412
|
+
export type UserPermission = z.infer<typeof userPermissionSchema>;
|
|
14413
|
+
export declare const userPermissionListSchema: z.ZodArray<z.ZodObject<{
|
|
14414
|
+
tenant_id: z.ZodString;
|
|
14415
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14416
|
+
user_id: z.ZodString;
|
|
14417
|
+
resource_server_identifier: z.ZodString;
|
|
14418
|
+
permission_name: z.ZodString;
|
|
14419
|
+
}, "strip", z.ZodTypeAny, {
|
|
14420
|
+
user_id: string;
|
|
14421
|
+
tenant_id: string;
|
|
14422
|
+
resource_server_identifier: string;
|
|
14423
|
+
permission_name: string;
|
|
14424
|
+
created_at?: string | undefined;
|
|
14425
|
+
}, {
|
|
14426
|
+
user_id: string;
|
|
14427
|
+
tenant_id: string;
|
|
14428
|
+
resource_server_identifier: string;
|
|
14429
|
+
permission_name: string;
|
|
14430
|
+
created_at?: string | undefined;
|
|
14431
|
+
}>, "many">;
|
|
14432
|
+
export type UserPermissionList = z.infer<typeof userPermissionListSchema>;
|
|
14433
|
+
export declare const userPermissionWithDetailsSchema: z.ZodObject<{
|
|
14434
|
+
user_id: z.ZodString;
|
|
14477
14435
|
resource_server_identifier: z.ZodString;
|
|
14478
14436
|
resource_server_name: z.ZodString;
|
|
14479
|
-
sources: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14480
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14481
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14482
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14483
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14484
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14485
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14486
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14487
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14488
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14489
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14490
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14491
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14492
|
-
created_at: z.ZodOptional<z.ZodString>;
|
|
14493
|
-
updated_at: z.ZodOptional<z.ZodString>;
|
|
14494
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14495
14437
|
permission_name: z.ZodString;
|
|
14496
14438
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14439
|
+
created_at: z.ZodOptional<z.ZodString>;
|
|
14440
|
+
}, "strip", z.ZodTypeAny, {
|
|
14441
|
+
user_id: string;
|
|
14442
|
+
resource_server_identifier: string;
|
|
14443
|
+
permission_name: string;
|
|
14444
|
+
resource_server_name: string;
|
|
14445
|
+
description?: string | null | undefined;
|
|
14446
|
+
created_at?: string | undefined;
|
|
14447
|
+
}, {
|
|
14448
|
+
user_id: string;
|
|
14449
|
+
resource_server_identifier: string;
|
|
14450
|
+
permission_name: string;
|
|
14451
|
+
resource_server_name: string;
|
|
14452
|
+
description?: string | null | undefined;
|
|
14453
|
+
created_at?: string | undefined;
|
|
14454
|
+
}>;
|
|
14455
|
+
export type UserPermissionWithDetails = z.infer<typeof userPermissionWithDetailsSchema>;
|
|
14456
|
+
export declare const userPermissionWithDetailsListSchema: z.ZodArray<z.ZodObject<{
|
|
14457
|
+
user_id: z.ZodString;
|
|
14497
14458
|
resource_server_identifier: z.ZodString;
|
|
14498
14459
|
resource_server_name: z.ZodString;
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14502
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14503
|
-
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
14504
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14505
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14506
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14507
|
-
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
14508
|
-
source_id: z.ZodOptional<z.ZodString>;
|
|
14509
|
-
source_name: z.ZodOptional<z.ZodString>;
|
|
14510
|
-
source_type: z.ZodOptional<z.ZodString>;
|
|
14511
|
-
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
14460
|
+
permission_name: z.ZodString;
|
|
14461
|
+
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14512
14462
|
created_at: z.ZodOptional<z.ZodString>;
|
|
14513
|
-
|
|
14514
|
-
|
|
14515
|
-
|
|
14463
|
+
}, "strip", z.ZodTypeAny, {
|
|
14464
|
+
user_id: string;
|
|
14465
|
+
resource_server_identifier: string;
|
|
14466
|
+
permission_name: string;
|
|
14467
|
+
resource_server_name: string;
|
|
14468
|
+
description?: string | null | undefined;
|
|
14469
|
+
created_at?: string | undefined;
|
|
14470
|
+
}, {
|
|
14471
|
+
user_id: string;
|
|
14472
|
+
resource_server_identifier: string;
|
|
14473
|
+
permission_name: string;
|
|
14474
|
+
resource_server_name: string;
|
|
14475
|
+
description?: string | null | undefined;
|
|
14476
|
+
created_at?: string | undefined;
|
|
14477
|
+
}>, "many">;
|
|
14478
|
+
export type UserPermissionWithDetailsList = z.infer<typeof userPermissionWithDetailsListSchema>;
|
|
14516
14479
|
export declare const roleInsertSchema: z.ZodObject<{
|
|
14517
14480
|
name: z.ZodString;
|
|
14518
14481
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -14730,15 +14693,15 @@ export interface ResourceServersAdapter {
|
|
|
14730
14693
|
update(tenant_id: string, id: string, resourceServer: Partial<ResourceServerInsert>): Promise<boolean>;
|
|
14731
14694
|
remove(tenant_id: string, id: string): Promise<boolean>;
|
|
14732
14695
|
}
|
|
14733
|
-
export interface
|
|
14734
|
-
permissions:
|
|
14696
|
+
export interface RolePermissionsAdapter {
|
|
14697
|
+
assign(tenant_id: string, role_id: string, permissions: RolePermissionInsert[]): Promise<boolean>;
|
|
14698
|
+
remove(tenant_id: string, role_id: string, permissions: Pick<RolePermissionInsert, "resource_server_identifier" | "permission_name">[]): Promise<boolean>;
|
|
14699
|
+
list(tenant_id: string, role_id: string, params?: ListParams): Promise<RolePermissionWithDetailsList>;
|
|
14735
14700
|
}
|
|
14736
|
-
export interface
|
|
14737
|
-
|
|
14738
|
-
|
|
14739
|
-
list(tenant_id: string, params?: ListParams): Promise<
|
|
14740
|
-
update(tenant_id: string, permission_id: string, permission: Partial<PermissionInsert>): Promise<boolean>;
|
|
14741
|
-
remove(tenant_id: string, permission_id: string): Promise<boolean>;
|
|
14701
|
+
export interface UserPermissionsAdapter {
|
|
14702
|
+
assign(tenant_id: string, user_id: string, permissions: UserPermissionInsert[]): Promise<boolean>;
|
|
14703
|
+
remove(tenant_id: string, user_id: string, permissions: Pick<UserPermissionInsert, "resource_server_identifier" | "permission_name">[]): Promise<boolean>;
|
|
14704
|
+
list(tenant_id: string, user_id: string, params?: ListParams): Promise<UserPermissionWithDetailsList>;
|
|
14742
14705
|
}
|
|
14743
14706
|
export interface ListRolesResponse {
|
|
14744
14707
|
roles: Role[];
|
|
@@ -14771,7 +14734,8 @@ export interface DataAdapters {
|
|
|
14771
14734
|
promptSettings: PromptSettingsAdapter;
|
|
14772
14735
|
refreshTokens: RefreshTokensAdapter;
|
|
14773
14736
|
resourceServers: ResourceServersAdapter;
|
|
14774
|
-
|
|
14737
|
+
rolePermissions: RolePermissionsAdapter;
|
|
14738
|
+
userPermissions: UserPermissionsAdapter;
|
|
14775
14739
|
roles: RolesAdapter;
|
|
14776
14740
|
sessions: SessionsAdapter;
|
|
14777
14741
|
tenants: TenantsDataAdapter;
|