zudoku 0.82.3 → 0.82.5
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/cli/cli.js +67 -25
- package/dist/cli/worker.js +57 -0
- package/dist/declarations/config/config.d.ts +3 -0
- package/dist/declarations/config/validators/HeaderNavigationSchema.d.ts +304 -0
- package/dist/declarations/config/validators/ZudokuConfig.d.ts +152 -0
- package/dist/declarations/config/validators/icon-types.d.ts +1 -1
- package/dist/declarations/lib/authentication/providers/entra.d.ts +13 -0
- package/dist/declarations/lib/authentication/providers/openid.d.ts +4 -1
- package/dist/declarations/lib/authentication/providers/util.d.ts +4 -0
- package/dist/declarations/lib/plugins/openapi/McpClientLogos.d.ts +4 -0
- package/dist/declarations/lib/plugins/openapi/mcp-configs.d.ts +3 -0
- package/dist/declarations/lib/ui/Form.d.ts +4 -2
- package/dist/flat-config.d.ts +18 -1
- package/docs/configuration/authentication-azure-ad.md +17 -15
- package/docs/configuration/authentication.md +22 -2
- package/docs/guides/mcp-servers.md +26 -0
- package/package.json +69 -66
- package/src/config/config.ts +4 -0
- package/src/config/validators/ZudokuConfig.ts +19 -0
- package/src/config/validators/icon-types.ts +38 -0
- package/src/lib/auth/issuer.ts +7 -1
- package/src/lib/authentication/providers/entra.tsx +97 -0
- package/src/lib/authentication/providers/openid.tsx +29 -13
- package/src/lib/authentication/providers/util.ts +7 -0
- package/src/lib/components/MobileTopNavigation.tsx +5 -0
- package/src/lib/components/TopNavigation.tsx +8 -1
- package/src/lib/plugins/openapi/MCPEndpoint.tsx +347 -228
- package/src/lib/plugins/openapi/McpClientLogos.tsx +72 -0
- package/src/lib/plugins/openapi/mcp-configs.ts +55 -0
- package/src/zuplo/enrich-with-zuplo-mcp.ts +14 -2
package/dist/cli/cli.js
CHANGED
|
@@ -134,7 +134,6 @@ var init_llms = __esm({
|
|
|
134
134
|
});
|
|
135
135
|
|
|
136
136
|
// src/cli/cli.ts
|
|
137
|
-
import * as Sentry2 from "@sentry/node";
|
|
138
137
|
import { hideBin } from "yargs/helpers";
|
|
139
138
|
import yargs from "yargs/yargs";
|
|
140
139
|
|
|
@@ -894,6 +893,7 @@ var IconNames = [
|
|
|
894
893
|
"accessibility",
|
|
895
894
|
"activity",
|
|
896
895
|
"activity-square",
|
|
896
|
+
"ad",
|
|
897
897
|
"air-vent",
|
|
898
898
|
"airplay",
|
|
899
899
|
"alarm-check",
|
|
@@ -1064,6 +1064,7 @@ var IconNames = [
|
|
|
1064
1064
|
"banknote",
|
|
1065
1065
|
"banknote-arrow-down",
|
|
1066
1066
|
"banknote-arrow-up",
|
|
1067
|
+
"banknote-check",
|
|
1067
1068
|
"banknote-x",
|
|
1068
1069
|
"bar-chart",
|
|
1069
1070
|
"bar-chart-2",
|
|
@@ -1127,6 +1128,7 @@ var IconNames = [
|
|
|
1127
1128
|
"bolt",
|
|
1128
1129
|
"bomb",
|
|
1129
1130
|
"bone",
|
|
1131
|
+
"bone-fracture",
|
|
1130
1132
|
"book",
|
|
1131
1133
|
"book-a",
|
|
1132
1134
|
"book-alert",
|
|
@@ -1332,6 +1334,7 @@ var IconNames = [
|
|
|
1332
1334
|
"circle-dot-dashed",
|
|
1333
1335
|
"circle-ellipsis",
|
|
1334
1336
|
"circle-equal",
|
|
1337
|
+
"circle-euro",
|
|
1335
1338
|
"circle-fading-arrow-up",
|
|
1336
1339
|
"circle-fading-plus",
|
|
1337
1340
|
"circle-gauge",
|
|
@@ -1389,6 +1392,8 @@ var IconNames = [
|
|
|
1389
1392
|
"clock-9",
|
|
1390
1393
|
"clock-alert",
|
|
1391
1394
|
"clock-arrow-down",
|
|
1395
|
+
"clock-arrow-left",
|
|
1396
|
+
"clock-arrow-right",
|
|
1392
1397
|
"clock-arrow-up",
|
|
1393
1398
|
"clock-check",
|
|
1394
1399
|
"clock-fading",
|
|
@@ -1476,8 +1481,14 @@ var IconNames = [
|
|
|
1476
1481
|
"cylinder",
|
|
1477
1482
|
"dam",
|
|
1478
1483
|
"database",
|
|
1484
|
+
"database-arrow-down",
|
|
1485
|
+
"database-arrow-up",
|
|
1479
1486
|
"database-backup",
|
|
1487
|
+
"database-check",
|
|
1488
|
+
"database-minus",
|
|
1489
|
+
"database-plus",
|
|
1480
1490
|
"database-search",
|
|
1491
|
+
"database-x",
|
|
1481
1492
|
"database-zap",
|
|
1482
1493
|
"decimals-arrow-left",
|
|
1483
1494
|
"decimals-arrow-right",
|
|
@@ -1552,6 +1563,7 @@ var IconNames = [
|
|
|
1552
1563
|
"external-link",
|
|
1553
1564
|
"eye",
|
|
1554
1565
|
"eye-closed",
|
|
1566
|
+
"eye-dashed",
|
|
1555
1567
|
"eye-off",
|
|
1556
1568
|
"factory",
|
|
1557
1569
|
"fan",
|
|
@@ -1761,6 +1773,7 @@ var IconNames = [
|
|
|
1761
1773
|
"glasses",
|
|
1762
1774
|
"globe",
|
|
1763
1775
|
"globe-2",
|
|
1776
|
+
"globe-check",
|
|
1764
1777
|
"globe-lock",
|
|
1765
1778
|
"globe-off",
|
|
1766
1779
|
"globe-x",
|
|
@@ -1948,6 +1961,8 @@ var IconNames = [
|
|
|
1948
1961
|
"list-ordered",
|
|
1949
1962
|
"list-plus",
|
|
1950
1963
|
"list-restart",
|
|
1964
|
+
"list-sort-ascending",
|
|
1965
|
+
"list-sort-descending",
|
|
1951
1966
|
"list-start",
|
|
1952
1967
|
"list-todo",
|
|
1953
1968
|
"list-tree",
|
|
@@ -2182,7 +2197,9 @@ var IconNames = [
|
|
|
2182
2197
|
"panels-right-bottom",
|
|
2183
2198
|
"panels-top-bottom",
|
|
2184
2199
|
"panels-top-left",
|
|
2200
|
+
"paper-bag",
|
|
2185
2201
|
"paperclip",
|
|
2202
|
+
"parasol",
|
|
2186
2203
|
"parentheses",
|
|
2187
2204
|
"parking-circle",
|
|
2188
2205
|
"parking-circle-off",
|
|
@@ -2205,12 +2222,14 @@ var IconNames = [
|
|
|
2205
2222
|
"pencil-line",
|
|
2206
2223
|
"pencil-off",
|
|
2207
2224
|
"pencil-ruler",
|
|
2225
|
+
"pencil-sparkles",
|
|
2208
2226
|
"pentagon",
|
|
2209
2227
|
"percent",
|
|
2210
2228
|
"percent-circle",
|
|
2211
2229
|
"percent-diamond",
|
|
2212
2230
|
"percent-square",
|
|
2213
2231
|
"person-standing",
|
|
2232
|
+
"phi",
|
|
2214
2233
|
"philippine-peso",
|
|
2215
2234
|
"phone",
|
|
2216
2235
|
"phone-call",
|
|
@@ -2242,6 +2261,7 @@ var IconNames = [
|
|
|
2242
2261
|
"plane-takeoff",
|
|
2243
2262
|
"play",
|
|
2244
2263
|
"play-circle",
|
|
2264
|
+
"play-off",
|
|
2245
2265
|
"play-square",
|
|
2246
2266
|
"plug",
|
|
2247
2267
|
"plug-2",
|
|
@@ -2252,6 +2272,7 @@ var IconNames = [
|
|
|
2252
2272
|
"plus-square",
|
|
2253
2273
|
"pocket-knife",
|
|
2254
2274
|
"podcast",
|
|
2275
|
+
"podium",
|
|
2255
2276
|
"pointer",
|
|
2256
2277
|
"pointer-off",
|
|
2257
2278
|
"popcorn",
|
|
@@ -2350,13 +2371,17 @@ var IconNames = [
|
|
|
2350
2371
|
"saudi-riyal",
|
|
2351
2372
|
"save",
|
|
2352
2373
|
"save-all",
|
|
2374
|
+
"save-check",
|
|
2353
2375
|
"save-off",
|
|
2376
|
+
"save-pen",
|
|
2377
|
+
"save-plus",
|
|
2354
2378
|
"scale",
|
|
2355
2379
|
"scale-3-d",
|
|
2356
2380
|
"scale-3d",
|
|
2357
2381
|
"scaling",
|
|
2358
2382
|
"scan",
|
|
2359
2383
|
"scan-barcode",
|
|
2384
|
+
"scan-box",
|
|
2360
2385
|
"scan-eye",
|
|
2361
2386
|
"scan-face",
|
|
2362
2387
|
"scan-heart",
|
|
@@ -2393,6 +2418,7 @@ var IconNames = [
|
|
|
2393
2418
|
"server-cog",
|
|
2394
2419
|
"server-crash",
|
|
2395
2420
|
"server-off",
|
|
2421
|
+
"server-plus",
|
|
2396
2422
|
"settings",
|
|
2397
2423
|
"settings-2",
|
|
2398
2424
|
"shapes",
|
|
@@ -2410,6 +2436,7 @@ var IconNames = [
|
|
|
2410
2436
|
"shield-cog-corner",
|
|
2411
2437
|
"shield-ellipsis",
|
|
2412
2438
|
"shield-half",
|
|
2439
|
+
"shield-keyhole",
|
|
2413
2440
|
"shield-minus",
|
|
2414
2441
|
"shield-off",
|
|
2415
2442
|
"shield-plus",
|
|
@@ -2564,8 +2591,12 @@ var IconNames = [
|
|
|
2564
2591
|
"squirrel",
|
|
2565
2592
|
"stamp",
|
|
2566
2593
|
"star",
|
|
2594
|
+
"star-check",
|
|
2567
2595
|
"star-half",
|
|
2596
|
+
"star-minus",
|
|
2568
2597
|
"star-off",
|
|
2598
|
+
"star-plus",
|
|
2599
|
+
"star-x",
|
|
2569
2600
|
"stars",
|
|
2570
2601
|
"step-back",
|
|
2571
2602
|
"step-forward",
|
|
@@ -2586,6 +2617,7 @@ var IconNames = [
|
|
|
2586
2617
|
"strikethrough",
|
|
2587
2618
|
"subscript",
|
|
2588
2619
|
"subtitles",
|
|
2620
|
+
"summary",
|
|
2589
2621
|
"sun",
|
|
2590
2622
|
"sun-dim",
|
|
2591
2623
|
"sun-medium",
|
|
@@ -2613,6 +2645,8 @@ var IconNames = [
|
|
|
2613
2645
|
"tablet-smartphone",
|
|
2614
2646
|
"tablets",
|
|
2615
2647
|
"tag",
|
|
2648
|
+
"tag-plus",
|
|
2649
|
+
"tag-x",
|
|
2616
2650
|
"tags",
|
|
2617
2651
|
"tally-1",
|
|
2618
2652
|
"tally-2",
|
|
@@ -2741,6 +2775,7 @@ var IconNames = [
|
|
|
2741
2775
|
"user-plus",
|
|
2742
2776
|
"user-plus-2",
|
|
2743
2777
|
"user-round",
|
|
2778
|
+
"user-round-arrow-left",
|
|
2744
2779
|
"user-round-check",
|
|
2745
2780
|
"user-round-cog",
|
|
2746
2781
|
"user-round-key",
|
|
@@ -2803,6 +2838,7 @@ var IconNames = [
|
|
|
2803
2838
|
"waves-vertical",
|
|
2804
2839
|
"waypoints",
|
|
2805
2840
|
"webcam",
|
|
2841
|
+
"webcam-off",
|
|
2806
2842
|
"webhook",
|
|
2807
2843
|
"webhook-off",
|
|
2808
2844
|
"weight",
|
|
@@ -2826,6 +2862,7 @@ var IconNames = [
|
|
|
2826
2862
|
"worm",
|
|
2827
2863
|
"wrap-text",
|
|
2828
2864
|
"wrench",
|
|
2865
|
+
"wrench-off",
|
|
2829
2866
|
"x",
|
|
2830
2867
|
"x-circle",
|
|
2831
2868
|
"x-line-top",
|
|
@@ -3384,6 +3421,25 @@ var AuthenticationSchema = z7.discriminatedUnion("type", [
|
|
|
3384
3421
|
authorizationParams: z7.record(z7.string(), z7.string()).optional(),
|
|
3385
3422
|
forwardAuthorizationParams: z7.array(z7.string()).optional()
|
|
3386
3423
|
}),
|
|
3424
|
+
z7.object({
|
|
3425
|
+
type: z7.literal("entra"),
|
|
3426
|
+
basePath: z7.string().optional(),
|
|
3427
|
+
clientId: z7.string(),
|
|
3428
|
+
// Tenant id or one of Entra's multi-tenant authorities
|
|
3429
|
+
// (common/organizations/consumers). Defaults to "common".
|
|
3430
|
+
tenantId: z7.string().optional(),
|
|
3431
|
+
// Full issuer override, e.g. for CIAM tenants on *.ciamlogin.com.
|
|
3432
|
+
issuer: z7.string().optional(),
|
|
3433
|
+
audience: z7.string().optional(),
|
|
3434
|
+
scopes: z7.array(z7.string()).optional(),
|
|
3435
|
+
redirectToAfterSignUp: z7.string().optional(),
|
|
3436
|
+
redirectToAfterSignIn: z7.string().optional(),
|
|
3437
|
+
redirectToAfterSignOut: z7.string().optional(),
|
|
3438
|
+
signUp: SignUpOpenIdSchema.optional(),
|
|
3439
|
+
disableSignUp: z7.boolean().optional(),
|
|
3440
|
+
authorizationParams: z7.record(z7.string(), z7.string()).optional(),
|
|
3441
|
+
forwardAuthorizationParams: z7.array(z7.string()).optional()
|
|
3442
|
+
}),
|
|
3387
3443
|
z7.object({
|
|
3388
3444
|
type: z7.literal("azureb2c"),
|
|
3389
3445
|
basePath: z7.string().optional(),
|
|
@@ -3840,6 +3896,7 @@ async function loadZudokuConfig(configEnv, rootDir) {
|
|
|
3840
3896
|
}
|
|
3841
3897
|
|
|
3842
3898
|
// src/lib/authentication/providers/util.ts
|
|
3899
|
+
var getEntraIssuer = (config) => config.issuer ?? `https://login.microsoftonline.com/${config.tenantId ?? "common"}/v2.0`;
|
|
3843
3900
|
var getClerkFrontendApi = (publishableKey) => {
|
|
3844
3901
|
const parts = publishableKey.split("_");
|
|
3845
3902
|
if (parts.length !== 3 || !parts[2]) {
|
|
@@ -3873,6 +3930,9 @@ var getIssuer = async (config) => {
|
|
|
3873
3930
|
case "openid": {
|
|
3874
3931
|
return config.authentication.issuer;
|
|
3875
3932
|
}
|
|
3933
|
+
case "entra": {
|
|
3934
|
+
return getEntraIssuer(config.authentication);
|
|
3935
|
+
}
|
|
3876
3936
|
case "supabase": {
|
|
3877
3937
|
return config.authentication.supabaseUrl;
|
|
3878
3938
|
}
|
|
@@ -8506,17 +8566,7 @@ var bundleSSREntry = async (options) => {
|
|
|
8506
8566
|
};
|
|
8507
8567
|
|
|
8508
8568
|
// src/cli/common/output.ts
|
|
8509
|
-
import * as Sentry from "@sentry/node";
|
|
8510
8569
|
import colors8 from "picocolors";
|
|
8511
|
-
|
|
8512
|
-
// src/cli/common/constants.ts
|
|
8513
|
-
var CLI_XDG_FOLDER_NAME = "zudoku";
|
|
8514
|
-
var VERSION_CHECK_FILE = "version.json";
|
|
8515
|
-
var SENTRY_DSN = void 0;
|
|
8516
|
-
var MAX_WAIT_PENDING_TIME_MS = 1e3;
|
|
8517
|
-
var POST_HOG_CAPTURE_KEY = void 0;
|
|
8518
|
-
|
|
8519
|
-
// src/cli/common/output.ts
|
|
8520
8570
|
function printDiagnosticsToConsole(message) {
|
|
8521
8571
|
console.error(colors8.bold(colors8.blue(message)));
|
|
8522
8572
|
}
|
|
@@ -8590,6 +8640,11 @@ async function build(argv) {
|
|
|
8590
8640
|
// src/cli/common/analytics/lib.ts
|
|
8591
8641
|
import { PostHog } from "posthog-node";
|
|
8592
8642
|
|
|
8643
|
+
// src/cli/common/constants.ts
|
|
8644
|
+
var CLI_XDG_FOLDER_NAME = "zudoku";
|
|
8645
|
+
var VERSION_CHECK_FILE = "version.json";
|
|
8646
|
+
var POST_HOG_CAPTURE_KEY = void 0;
|
|
8647
|
+
|
|
8593
8648
|
// src/cli/common/machine-id/lib.ts
|
|
8594
8649
|
import { execSync } from "node:child_process";
|
|
8595
8650
|
import { createHash } from "node:crypto";
|
|
@@ -9402,12 +9457,6 @@ To fix, run:
|
|
|
9402
9457
|
// src/cli/cli.ts
|
|
9403
9458
|
process.env.ZUDOKU_ENV = process.env.ZUDOKU_INTERNAL_DEV ? "internal" : "module";
|
|
9404
9459
|
var packageJson = getZudokuPackageJson();
|
|
9405
|
-
if (SENTRY_DSN) {
|
|
9406
|
-
Sentry2.init({
|
|
9407
|
-
dsn: SENTRY_DSN,
|
|
9408
|
-
release: packageJson?.version
|
|
9409
|
-
});
|
|
9410
|
-
}
|
|
9411
9460
|
var cli = yargs(hideBin(process.argv)).option("zuplo", {
|
|
9412
9461
|
type: "boolean",
|
|
9413
9462
|
description: "Enable Zuplo mode",
|
|
@@ -9421,14 +9470,7 @@ var cli = yargs(hideBin(process.argv)).option("zuplo", {
|
|
|
9421
9470
|
try {
|
|
9422
9471
|
void warnIfOutdatedVersion(packageJson?.version);
|
|
9423
9472
|
await cli.argv;
|
|
9424
|
-
void Sentry2.close(MAX_WAIT_PENDING_TIME_MS).then(() => {
|
|
9425
|
-
process.exit(0);
|
|
9426
|
-
});
|
|
9427
|
-
} catch (err) {
|
|
9428
|
-
if (err instanceof Error) {
|
|
9429
|
-
Sentry2.captureException(err);
|
|
9430
|
-
}
|
|
9431
|
-
throw err;
|
|
9432
9473
|
} finally {
|
|
9433
9474
|
await shutdownAnalytics();
|
|
9434
9475
|
}
|
|
9476
|
+
process.exit();
|
package/dist/cli/worker.js
CHANGED
|
@@ -92,6 +92,7 @@ var IconNames = [
|
|
|
92
92
|
"accessibility",
|
|
93
93
|
"activity",
|
|
94
94
|
"activity-square",
|
|
95
|
+
"ad",
|
|
95
96
|
"air-vent",
|
|
96
97
|
"airplay",
|
|
97
98
|
"alarm-check",
|
|
@@ -262,6 +263,7 @@ var IconNames = [
|
|
|
262
263
|
"banknote",
|
|
263
264
|
"banknote-arrow-down",
|
|
264
265
|
"banknote-arrow-up",
|
|
266
|
+
"banknote-check",
|
|
265
267
|
"banknote-x",
|
|
266
268
|
"bar-chart",
|
|
267
269
|
"bar-chart-2",
|
|
@@ -325,6 +327,7 @@ var IconNames = [
|
|
|
325
327
|
"bolt",
|
|
326
328
|
"bomb",
|
|
327
329
|
"bone",
|
|
330
|
+
"bone-fracture",
|
|
328
331
|
"book",
|
|
329
332
|
"book-a",
|
|
330
333
|
"book-alert",
|
|
@@ -530,6 +533,7 @@ var IconNames = [
|
|
|
530
533
|
"circle-dot-dashed",
|
|
531
534
|
"circle-ellipsis",
|
|
532
535
|
"circle-equal",
|
|
536
|
+
"circle-euro",
|
|
533
537
|
"circle-fading-arrow-up",
|
|
534
538
|
"circle-fading-plus",
|
|
535
539
|
"circle-gauge",
|
|
@@ -587,6 +591,8 @@ var IconNames = [
|
|
|
587
591
|
"clock-9",
|
|
588
592
|
"clock-alert",
|
|
589
593
|
"clock-arrow-down",
|
|
594
|
+
"clock-arrow-left",
|
|
595
|
+
"clock-arrow-right",
|
|
590
596
|
"clock-arrow-up",
|
|
591
597
|
"clock-check",
|
|
592
598
|
"clock-fading",
|
|
@@ -674,8 +680,14 @@ var IconNames = [
|
|
|
674
680
|
"cylinder",
|
|
675
681
|
"dam",
|
|
676
682
|
"database",
|
|
683
|
+
"database-arrow-down",
|
|
684
|
+
"database-arrow-up",
|
|
677
685
|
"database-backup",
|
|
686
|
+
"database-check",
|
|
687
|
+
"database-minus",
|
|
688
|
+
"database-plus",
|
|
678
689
|
"database-search",
|
|
690
|
+
"database-x",
|
|
679
691
|
"database-zap",
|
|
680
692
|
"decimals-arrow-left",
|
|
681
693
|
"decimals-arrow-right",
|
|
@@ -750,6 +762,7 @@ var IconNames = [
|
|
|
750
762
|
"external-link",
|
|
751
763
|
"eye",
|
|
752
764
|
"eye-closed",
|
|
765
|
+
"eye-dashed",
|
|
753
766
|
"eye-off",
|
|
754
767
|
"factory",
|
|
755
768
|
"fan",
|
|
@@ -959,6 +972,7 @@ var IconNames = [
|
|
|
959
972
|
"glasses",
|
|
960
973
|
"globe",
|
|
961
974
|
"globe-2",
|
|
975
|
+
"globe-check",
|
|
962
976
|
"globe-lock",
|
|
963
977
|
"globe-off",
|
|
964
978
|
"globe-x",
|
|
@@ -1146,6 +1160,8 @@ var IconNames = [
|
|
|
1146
1160
|
"list-ordered",
|
|
1147
1161
|
"list-plus",
|
|
1148
1162
|
"list-restart",
|
|
1163
|
+
"list-sort-ascending",
|
|
1164
|
+
"list-sort-descending",
|
|
1149
1165
|
"list-start",
|
|
1150
1166
|
"list-todo",
|
|
1151
1167
|
"list-tree",
|
|
@@ -1380,7 +1396,9 @@ var IconNames = [
|
|
|
1380
1396
|
"panels-right-bottom",
|
|
1381
1397
|
"panels-top-bottom",
|
|
1382
1398
|
"panels-top-left",
|
|
1399
|
+
"paper-bag",
|
|
1383
1400
|
"paperclip",
|
|
1401
|
+
"parasol",
|
|
1384
1402
|
"parentheses",
|
|
1385
1403
|
"parking-circle",
|
|
1386
1404
|
"parking-circle-off",
|
|
@@ -1403,12 +1421,14 @@ var IconNames = [
|
|
|
1403
1421
|
"pencil-line",
|
|
1404
1422
|
"pencil-off",
|
|
1405
1423
|
"pencil-ruler",
|
|
1424
|
+
"pencil-sparkles",
|
|
1406
1425
|
"pentagon",
|
|
1407
1426
|
"percent",
|
|
1408
1427
|
"percent-circle",
|
|
1409
1428
|
"percent-diamond",
|
|
1410
1429
|
"percent-square",
|
|
1411
1430
|
"person-standing",
|
|
1431
|
+
"phi",
|
|
1412
1432
|
"philippine-peso",
|
|
1413
1433
|
"phone",
|
|
1414
1434
|
"phone-call",
|
|
@@ -1440,6 +1460,7 @@ var IconNames = [
|
|
|
1440
1460
|
"plane-takeoff",
|
|
1441
1461
|
"play",
|
|
1442
1462
|
"play-circle",
|
|
1463
|
+
"play-off",
|
|
1443
1464
|
"play-square",
|
|
1444
1465
|
"plug",
|
|
1445
1466
|
"plug-2",
|
|
@@ -1450,6 +1471,7 @@ var IconNames = [
|
|
|
1450
1471
|
"plus-square",
|
|
1451
1472
|
"pocket-knife",
|
|
1452
1473
|
"podcast",
|
|
1474
|
+
"podium",
|
|
1453
1475
|
"pointer",
|
|
1454
1476
|
"pointer-off",
|
|
1455
1477
|
"popcorn",
|
|
@@ -1548,13 +1570,17 @@ var IconNames = [
|
|
|
1548
1570
|
"saudi-riyal",
|
|
1549
1571
|
"save",
|
|
1550
1572
|
"save-all",
|
|
1573
|
+
"save-check",
|
|
1551
1574
|
"save-off",
|
|
1575
|
+
"save-pen",
|
|
1576
|
+
"save-plus",
|
|
1552
1577
|
"scale",
|
|
1553
1578
|
"scale-3-d",
|
|
1554
1579
|
"scale-3d",
|
|
1555
1580
|
"scaling",
|
|
1556
1581
|
"scan",
|
|
1557
1582
|
"scan-barcode",
|
|
1583
|
+
"scan-box",
|
|
1558
1584
|
"scan-eye",
|
|
1559
1585
|
"scan-face",
|
|
1560
1586
|
"scan-heart",
|
|
@@ -1591,6 +1617,7 @@ var IconNames = [
|
|
|
1591
1617
|
"server-cog",
|
|
1592
1618
|
"server-crash",
|
|
1593
1619
|
"server-off",
|
|
1620
|
+
"server-plus",
|
|
1594
1621
|
"settings",
|
|
1595
1622
|
"settings-2",
|
|
1596
1623
|
"shapes",
|
|
@@ -1608,6 +1635,7 @@ var IconNames = [
|
|
|
1608
1635
|
"shield-cog-corner",
|
|
1609
1636
|
"shield-ellipsis",
|
|
1610
1637
|
"shield-half",
|
|
1638
|
+
"shield-keyhole",
|
|
1611
1639
|
"shield-minus",
|
|
1612
1640
|
"shield-off",
|
|
1613
1641
|
"shield-plus",
|
|
@@ -1762,8 +1790,12 @@ var IconNames = [
|
|
|
1762
1790
|
"squirrel",
|
|
1763
1791
|
"stamp",
|
|
1764
1792
|
"star",
|
|
1793
|
+
"star-check",
|
|
1765
1794
|
"star-half",
|
|
1795
|
+
"star-minus",
|
|
1766
1796
|
"star-off",
|
|
1797
|
+
"star-plus",
|
|
1798
|
+
"star-x",
|
|
1767
1799
|
"stars",
|
|
1768
1800
|
"step-back",
|
|
1769
1801
|
"step-forward",
|
|
@@ -1784,6 +1816,7 @@ var IconNames = [
|
|
|
1784
1816
|
"strikethrough",
|
|
1785
1817
|
"subscript",
|
|
1786
1818
|
"subtitles",
|
|
1819
|
+
"summary",
|
|
1787
1820
|
"sun",
|
|
1788
1821
|
"sun-dim",
|
|
1789
1822
|
"sun-medium",
|
|
@@ -1811,6 +1844,8 @@ var IconNames = [
|
|
|
1811
1844
|
"tablet-smartphone",
|
|
1812
1845
|
"tablets",
|
|
1813
1846
|
"tag",
|
|
1847
|
+
"tag-plus",
|
|
1848
|
+
"tag-x",
|
|
1814
1849
|
"tags",
|
|
1815
1850
|
"tally-1",
|
|
1816
1851
|
"tally-2",
|
|
@@ -1939,6 +1974,7 @@ var IconNames = [
|
|
|
1939
1974
|
"user-plus",
|
|
1940
1975
|
"user-plus-2",
|
|
1941
1976
|
"user-round",
|
|
1977
|
+
"user-round-arrow-left",
|
|
1942
1978
|
"user-round-check",
|
|
1943
1979
|
"user-round-cog",
|
|
1944
1980
|
"user-round-key",
|
|
@@ -2001,6 +2037,7 @@ var IconNames = [
|
|
|
2001
2037
|
"waves-vertical",
|
|
2002
2038
|
"waypoints",
|
|
2003
2039
|
"webcam",
|
|
2040
|
+
"webcam-off",
|
|
2004
2041
|
"webhook",
|
|
2005
2042
|
"webhook-off",
|
|
2006
2043
|
"weight",
|
|
@@ -2024,6 +2061,7 @@ var IconNames = [
|
|
|
2024
2061
|
"worm",
|
|
2025
2062
|
"wrap-text",
|
|
2026
2063
|
"wrench",
|
|
2064
|
+
"wrench-off",
|
|
2027
2065
|
"x",
|
|
2028
2066
|
"x-circle",
|
|
2029
2067
|
"x-line-top",
|
|
@@ -2617,6 +2655,25 @@ var AuthenticationSchema = z4.discriminatedUnion("type", [
|
|
|
2617
2655
|
authorizationParams: z4.record(z4.string(), z4.string()).optional(),
|
|
2618
2656
|
forwardAuthorizationParams: z4.array(z4.string()).optional()
|
|
2619
2657
|
}),
|
|
2658
|
+
z4.object({
|
|
2659
|
+
type: z4.literal("entra"),
|
|
2660
|
+
basePath: z4.string().optional(),
|
|
2661
|
+
clientId: z4.string(),
|
|
2662
|
+
// Tenant id or one of Entra's multi-tenant authorities
|
|
2663
|
+
// (common/organizations/consumers). Defaults to "common".
|
|
2664
|
+
tenantId: z4.string().optional(),
|
|
2665
|
+
// Full issuer override, e.g. for CIAM tenants on *.ciamlogin.com.
|
|
2666
|
+
issuer: z4.string().optional(),
|
|
2667
|
+
audience: z4.string().optional(),
|
|
2668
|
+
scopes: z4.array(z4.string()).optional(),
|
|
2669
|
+
redirectToAfterSignUp: z4.string().optional(),
|
|
2670
|
+
redirectToAfterSignIn: z4.string().optional(),
|
|
2671
|
+
redirectToAfterSignOut: z4.string().optional(),
|
|
2672
|
+
signUp: SignUpOpenIdSchema.optional(),
|
|
2673
|
+
disableSignUp: z4.boolean().optional(),
|
|
2674
|
+
authorizationParams: z4.record(z4.string(), z4.string()).optional(),
|
|
2675
|
+
forwardAuthorizationParams: z4.array(z4.string()).optional()
|
|
2676
|
+
}),
|
|
2620
2677
|
z4.object({
|
|
2621
2678
|
type: z4.literal("azureb2c"),
|
|
2622
2679
|
basePath: z4.string().optional(),
|
|
@@ -22,3 +22,6 @@ export type FirebaseAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
|
22
22
|
export type AzureB2CAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
23
23
|
type: "azureb2c";
|
|
24
24
|
}>;
|
|
25
|
+
export type EntraAuthenticationConfig = Extract<AuthenticationConfig, {
|
|
26
|
+
type: "entra";
|
|
27
|
+
}>;
|