@authhero/kysely-adapter 10.42.0 → 10.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/kysely-adapter.cjs +13 -1
- package/dist/kysely-adapter.d.ts +167 -148
- package/dist/kysely-adapter.mjs +6007 -2876
- package/package.json +3 -3
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -1260,121 +1260,116 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
1260
1260
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1261
1261
|
enabled_clients?: string[] | undefined;
|
|
1262
1262
|
}>, "many">;
|
|
1263
|
-
|
|
1263
|
+
disable_sign_ups: z.ZodBoolean;
|
|
1264
|
+
email_validation: z.ZodString;
|
|
1265
|
+
client_id: z.ZodString;
|
|
1264
1266
|
name: z.ZodString;
|
|
1267
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
global: z.ZodDefault<z.ZodBoolean>;
|
|
1269
|
+
client_secret: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
1270
|
+
app_type: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1271
|
+
"native",
|
|
1272
|
+
"spa",
|
|
1273
|
+
"regular_web",
|
|
1274
|
+
"non_interactive",
|
|
1275
|
+
"resource_server",
|
|
1276
|
+
"express_configuration",
|
|
1277
|
+
"rms",
|
|
1278
|
+
"box",
|
|
1279
|
+
"cloudbees",
|
|
1280
|
+
"concur",
|
|
1281
|
+
"dropbox",
|
|
1282
|
+
"mscrm",
|
|
1283
|
+
"echosign",
|
|
1284
|
+
"egnyte",
|
|
1285
|
+
"newrelic",
|
|
1286
|
+
"office365",
|
|
1287
|
+
"salesforce",
|
|
1288
|
+
"sentry",
|
|
1289
|
+
"sharepoint",
|
|
1290
|
+
"slack",
|
|
1291
|
+
"springcm",
|
|
1292
|
+
"zendesk",
|
|
1293
|
+
"zoom",
|
|
1294
|
+
"sso_integration",
|
|
1295
|
+
"oag"
|
|
1296
|
+
]>>>;
|
|
1297
|
+
logo_uri: z.ZodOptional<z.ZodString>;
|
|
1298
|
+
is_first_party: z.ZodDefault<z.ZodBoolean>;
|
|
1299
|
+
oidc_conformant: z.ZodDefault<z.ZodBoolean>;
|
|
1265
1300
|
callbacks: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1266
1301
|
allowed_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1267
1302
|
web_origins: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1268
|
-
|
|
1303
|
+
client_aliases: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1269
1304
|
allowed_clients: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
recipient?: string | undefined;
|
|
1291
|
-
createUpnClaim?: boolean | undefined;
|
|
1292
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1293
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1294
|
-
mapIdentities?: boolean | undefined;
|
|
1295
|
-
signatureAlgorithm?: string | undefined;
|
|
1296
|
-
digestAlgorithm?: string | undefined;
|
|
1297
|
-
issuer?: string | undefined;
|
|
1298
|
-
destination?: string | undefined;
|
|
1299
|
-
lifetimeInSeconds?: number | undefined;
|
|
1300
|
-
signResponse?: boolean | undefined;
|
|
1301
|
-
nameIdentifierFormat?: string | undefined;
|
|
1302
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1303
|
-
authnContextClassRef?: string | undefined;
|
|
1304
|
-
mappings?: Record<string, string> | undefined;
|
|
1305
|
-
}, {
|
|
1306
|
-
audience?: string | undefined;
|
|
1307
|
-
recipient?: string | undefined;
|
|
1308
|
-
createUpnClaim?: boolean | undefined;
|
|
1309
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1310
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1311
|
-
mapIdentities?: boolean | undefined;
|
|
1312
|
-
signatureAlgorithm?: string | undefined;
|
|
1313
|
-
digestAlgorithm?: string | undefined;
|
|
1314
|
-
issuer?: string | undefined;
|
|
1315
|
-
destination?: string | undefined;
|
|
1316
|
-
lifetimeInSeconds?: number | undefined;
|
|
1317
|
-
signResponse?: boolean | undefined;
|
|
1318
|
-
nameIdentifierFormat?: string | undefined;
|
|
1319
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1320
|
-
authnContextClassRef?: string | undefined;
|
|
1321
|
-
mappings?: Record<string, string> | undefined;
|
|
1322
|
-
}>>;
|
|
1323
|
-
}, "strip", z.ZodTypeAny, {
|
|
1324
|
-
samlp?: {
|
|
1325
|
-
audience?: string | undefined;
|
|
1326
|
-
recipient?: string | undefined;
|
|
1327
|
-
createUpnClaim?: boolean | undefined;
|
|
1328
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1329
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1330
|
-
mapIdentities?: boolean | undefined;
|
|
1331
|
-
signatureAlgorithm?: string | undefined;
|
|
1332
|
-
digestAlgorithm?: string | undefined;
|
|
1333
|
-
issuer?: string | undefined;
|
|
1334
|
-
destination?: string | undefined;
|
|
1335
|
-
lifetimeInSeconds?: number | undefined;
|
|
1336
|
-
signResponse?: boolean | undefined;
|
|
1337
|
-
nameIdentifierFormat?: string | undefined;
|
|
1338
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1339
|
-
authnContextClassRef?: string | undefined;
|
|
1340
|
-
mappings?: Record<string, string> | undefined;
|
|
1341
|
-
} | undefined;
|
|
1342
|
-
}, {
|
|
1343
|
-
samlp?: {
|
|
1344
|
-
audience?: string | undefined;
|
|
1345
|
-
recipient?: string | undefined;
|
|
1346
|
-
createUpnClaim?: boolean | undefined;
|
|
1347
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1348
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1349
|
-
mapIdentities?: boolean | undefined;
|
|
1350
|
-
signatureAlgorithm?: string | undefined;
|
|
1351
|
-
digestAlgorithm?: string | undefined;
|
|
1352
|
-
issuer?: string | undefined;
|
|
1353
|
-
destination?: string | undefined;
|
|
1354
|
-
lifetimeInSeconds?: number | undefined;
|
|
1355
|
-
signResponse?: boolean | undefined;
|
|
1356
|
-
nameIdentifierFormat?: string | undefined;
|
|
1357
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1358
|
-
authnContextClassRef?: string | undefined;
|
|
1359
|
-
mappings?: Record<string, string> | undefined;
|
|
1360
|
-
} | undefined;
|
|
1361
|
-
}>>>;
|
|
1362
|
-
email_validation: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1363
|
-
"enabled",
|
|
1364
|
-
"disabled",
|
|
1365
|
-
"enforced"
|
|
1305
|
+
allowed_logout_urls: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1306
|
+
session_transfer: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1307
|
+
oidc_logout: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1308
|
+
grant_types: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
1309
|
+
jwt_configuration: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1310
|
+
signing_keys: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodRecord<z.ZodString, z.ZodAny>, "many">>>;
|
|
1311
|
+
encryption_key: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1312
|
+
sso: z.ZodDefault<z.ZodBoolean>;
|
|
1313
|
+
sso_disabled: z.ZodDefault<z.ZodBoolean>;
|
|
1314
|
+
cross_origin_authentication: z.ZodDefault<z.ZodBoolean>;
|
|
1315
|
+
cross_origin_loc: z.ZodOptional<z.ZodString>;
|
|
1316
|
+
custom_login_page_on: z.ZodDefault<z.ZodBoolean>;
|
|
1317
|
+
custom_login_page: z.ZodOptional<z.ZodString>;
|
|
1318
|
+
custom_login_page_preview: z.ZodOptional<z.ZodString>;
|
|
1319
|
+
form_template: z.ZodOptional<z.ZodString>;
|
|
1320
|
+
addons: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1321
|
+
token_endpoint_auth_method: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1322
|
+
"none",
|
|
1323
|
+
"client_secret_post",
|
|
1324
|
+
"client_secret_basic"
|
|
1366
1325
|
]>>>;
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1326
|
+
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
1327
|
+
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1328
|
+
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
native_social_login: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1330
|
+
refresh_token: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1331
|
+
default_organization: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1332
|
+
organization_usage: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1333
|
+
"deny",
|
|
1334
|
+
"allow",
|
|
1335
|
+
"require"
|
|
1336
|
+
]>>>;
|
|
1337
|
+
organization_require_behavior: z.ZodOptional<z.ZodDefault<z.ZodEnum<[
|
|
1338
|
+
"no_prompt",
|
|
1339
|
+
"pre_login_prompt",
|
|
1340
|
+
"post_login_prompt"
|
|
1341
|
+
]>>>;
|
|
1342
|
+
client_authentication_methods: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1343
|
+
require_pushed_authorization_requests: z.ZodDefault<z.ZodBoolean>;
|
|
1344
|
+
require_proof_of_possession: z.ZodDefault<z.ZodBoolean>;
|
|
1345
|
+
signed_request_object: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1346
|
+
compliance_level: z.ZodOptional<z.ZodEnum<[
|
|
1347
|
+
"none",
|
|
1348
|
+
"fapi1_adv_pkj_par",
|
|
1349
|
+
"fapi1_adv_mtls_par",
|
|
1350
|
+
"fapi2_sp_pkj_mtls",
|
|
1351
|
+
"fapi2_sp_mtls_mtls"
|
|
1352
|
+
]>>;
|
|
1353
|
+
par_request_expiry: z.ZodOptional<z.ZodNumber>;
|
|
1354
|
+
token_quota: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
1355
|
+
created_at: z.ZodString;
|
|
1356
|
+
updated_at: z.ZodString;
|
|
1372
1357
|
}, "strip", z.ZodTypeAny, {
|
|
1373
1358
|
created_at: string;
|
|
1374
1359
|
updated_at: string;
|
|
1375
1360
|
name: string;
|
|
1376
|
-
|
|
1361
|
+
email_validation: string;
|
|
1377
1362
|
disable_sign_ups: boolean;
|
|
1363
|
+
client_id: string;
|
|
1364
|
+
global: boolean;
|
|
1365
|
+
is_first_party: boolean;
|
|
1366
|
+
oidc_conformant: boolean;
|
|
1367
|
+
sso: boolean;
|
|
1368
|
+
sso_disabled: boolean;
|
|
1369
|
+
cross_origin_authentication: boolean;
|
|
1370
|
+
custom_login_page_on: boolean;
|
|
1371
|
+
require_pushed_authorization_requests: boolean;
|
|
1372
|
+
require_proof_of_possession: boolean;
|
|
1378
1373
|
tenant: {
|
|
1379
1374
|
created_at: string;
|
|
1380
1375
|
updated_at: string;
|
|
@@ -1419,39 +1414,48 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
1419
1414
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1420
1415
|
enabled_clients?: string[] | undefined;
|
|
1421
1416
|
}[];
|
|
1417
|
+
description?: string | undefined;
|
|
1418
|
+
refresh_token?: Record<string, any> | undefined;
|
|
1422
1419
|
callbacks?: string[] | undefined;
|
|
1423
1420
|
allowed_origins?: string[] | undefined;
|
|
1424
1421
|
web_origins?: string[] | undefined;
|
|
1425
1422
|
allowed_logout_urls?: string[] | undefined;
|
|
1426
1423
|
allowed_clients?: string[] | undefined;
|
|
1427
|
-
addons?:
|
|
1428
|
-
samlp?: {
|
|
1429
|
-
audience?: string | undefined;
|
|
1430
|
-
recipient?: string | undefined;
|
|
1431
|
-
createUpnClaim?: boolean | undefined;
|
|
1432
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1433
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1434
|
-
mapIdentities?: boolean | undefined;
|
|
1435
|
-
signatureAlgorithm?: string | undefined;
|
|
1436
|
-
digestAlgorithm?: string | undefined;
|
|
1437
|
-
issuer?: string | undefined;
|
|
1438
|
-
destination?: string | undefined;
|
|
1439
|
-
lifetimeInSeconds?: number | undefined;
|
|
1440
|
-
signResponse?: boolean | undefined;
|
|
1441
|
-
nameIdentifierFormat?: string | undefined;
|
|
1442
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1443
|
-
authnContextClassRef?: string | undefined;
|
|
1444
|
-
mappings?: Record<string, string> | undefined;
|
|
1445
|
-
} | undefined;
|
|
1446
|
-
} | undefined;
|
|
1447
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
1424
|
+
addons?: Record<string, any> | undefined;
|
|
1448
1425
|
client_secret?: string | undefined;
|
|
1449
1426
|
client_metadata?: Record<string, string> | undefined;
|
|
1427
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
1428
|
+
logo_uri?: string | undefined;
|
|
1429
|
+
client_aliases?: string[] | undefined;
|
|
1430
|
+
session_transfer?: Record<string, any> | undefined;
|
|
1431
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
1432
|
+
grant_types?: string[] | undefined;
|
|
1433
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
1434
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
1435
|
+
encryption_key?: Record<string, any> | undefined;
|
|
1436
|
+
cross_origin_loc?: string | undefined;
|
|
1437
|
+
custom_login_page?: string | undefined;
|
|
1438
|
+
custom_login_page_preview?: string | undefined;
|
|
1439
|
+
form_template?: string | undefined;
|
|
1440
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
1441
|
+
mobile?: Record<string, any> | undefined;
|
|
1442
|
+
initiate_login_uri?: string | undefined;
|
|
1443
|
+
native_social_login?: Record<string, any> | undefined;
|
|
1444
|
+
default_organization?: Record<string, any> | undefined;
|
|
1445
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
1446
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
1447
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
1448
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
1449
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
1450
|
+
par_request_expiry?: number | undefined;
|
|
1451
|
+
token_quota?: Record<string, any> | undefined;
|
|
1450
1452
|
}, {
|
|
1451
1453
|
created_at: string;
|
|
1452
1454
|
updated_at: string;
|
|
1453
1455
|
name: string;
|
|
1454
|
-
|
|
1456
|
+
email_validation: string;
|
|
1457
|
+
disable_sign_ups: boolean;
|
|
1458
|
+
client_id: string;
|
|
1455
1459
|
tenant: {
|
|
1456
1460
|
created_at: string;
|
|
1457
1461
|
updated_at: string;
|
|
@@ -1496,35 +1500,50 @@ declare const LegacyClientSchema: z.ZodObject<{
|
|
|
1496
1500
|
response_mode?: AuthorizationResponseMode | undefined;
|
|
1497
1501
|
enabled_clients?: string[] | undefined;
|
|
1498
1502
|
}[];
|
|
1503
|
+
description?: string | undefined;
|
|
1504
|
+
refresh_token?: Record<string, any> | undefined;
|
|
1499
1505
|
callbacks?: string[] | undefined;
|
|
1500
1506
|
allowed_origins?: string[] | undefined;
|
|
1501
1507
|
web_origins?: string[] | undefined;
|
|
1502
1508
|
allowed_logout_urls?: string[] | undefined;
|
|
1503
1509
|
allowed_clients?: string[] | undefined;
|
|
1504
|
-
addons?:
|
|
1505
|
-
samlp?: {
|
|
1506
|
-
audience?: string | undefined;
|
|
1507
|
-
recipient?: string | undefined;
|
|
1508
|
-
createUpnClaim?: boolean | undefined;
|
|
1509
|
-
mapUnknownClaimsAsIs?: boolean | undefined;
|
|
1510
|
-
passthroughClaimsWithNoMapping?: boolean | undefined;
|
|
1511
|
-
mapIdentities?: boolean | undefined;
|
|
1512
|
-
signatureAlgorithm?: string | undefined;
|
|
1513
|
-
digestAlgorithm?: string | undefined;
|
|
1514
|
-
issuer?: string | undefined;
|
|
1515
|
-
destination?: string | undefined;
|
|
1516
|
-
lifetimeInSeconds?: number | undefined;
|
|
1517
|
-
signResponse?: boolean | undefined;
|
|
1518
|
-
nameIdentifierFormat?: string | undefined;
|
|
1519
|
-
nameIdentifierProbes?: string[] | undefined;
|
|
1520
|
-
authnContextClassRef?: string | undefined;
|
|
1521
|
-
mappings?: Record<string, string> | undefined;
|
|
1522
|
-
} | undefined;
|
|
1523
|
-
} | undefined;
|
|
1524
|
-
email_validation?: "enabled" | "disabled" | "enforced" | undefined;
|
|
1510
|
+
addons?: Record<string, any> | undefined;
|
|
1525
1511
|
client_secret?: string | undefined;
|
|
1526
|
-
disable_sign_ups?: boolean | undefined;
|
|
1527
1512
|
client_metadata?: Record<string, string> | undefined;
|
|
1513
|
+
global?: boolean | undefined;
|
|
1514
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
1515
|
+
logo_uri?: string | undefined;
|
|
1516
|
+
is_first_party?: boolean | undefined;
|
|
1517
|
+
oidc_conformant?: boolean | undefined;
|
|
1518
|
+
client_aliases?: string[] | undefined;
|
|
1519
|
+
session_transfer?: Record<string, any> | undefined;
|
|
1520
|
+
oidc_logout?: Record<string, any> | undefined;
|
|
1521
|
+
grant_types?: string[] | undefined;
|
|
1522
|
+
jwt_configuration?: Record<string, any> | undefined;
|
|
1523
|
+
signing_keys?: Record<string, any>[] | undefined;
|
|
1524
|
+
encryption_key?: Record<string, any> | undefined;
|
|
1525
|
+
sso?: boolean | undefined;
|
|
1526
|
+
sso_disabled?: boolean | undefined;
|
|
1527
|
+
cross_origin_authentication?: boolean | undefined;
|
|
1528
|
+
cross_origin_loc?: string | undefined;
|
|
1529
|
+
custom_login_page_on?: boolean | undefined;
|
|
1530
|
+
custom_login_page?: string | undefined;
|
|
1531
|
+
custom_login_page_preview?: string | undefined;
|
|
1532
|
+
form_template?: string | undefined;
|
|
1533
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | undefined;
|
|
1534
|
+
mobile?: Record<string, any> | undefined;
|
|
1535
|
+
initiate_login_uri?: string | undefined;
|
|
1536
|
+
native_social_login?: Record<string, any> | undefined;
|
|
1537
|
+
default_organization?: Record<string, any> | undefined;
|
|
1538
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
1539
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
1540
|
+
client_authentication_methods?: Record<string, any> | undefined;
|
|
1541
|
+
require_pushed_authorization_requests?: boolean | undefined;
|
|
1542
|
+
require_proof_of_possession?: boolean | undefined;
|
|
1543
|
+
signed_request_object?: Record<string, any> | undefined;
|
|
1544
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
1545
|
+
par_request_expiry?: number | undefined;
|
|
1546
|
+
token_quota?: Record<string, any> | undefined;
|
|
1528
1547
|
}>;
|
|
1529
1548
|
export type LegacyClient = z.infer<typeof LegacyClientSchema>;
|
|
1530
1549
|
declare const codeTypeSchema: z.ZodEnum<[
|