@techdocs/cli 1.8.13 → 1.8.15-next.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/CHANGELOG.md +4 -4
- package/dist/embedded-app/.config-schema.json +511 -12
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/static/{5724.49186426.chunk.js → 5724.e0714125.chunk.js} +1 -1
- package/dist/embedded-app/static/5724.e0714125.chunk.js.map +1 -0
- package/dist/embedded-app/static/main.fc9ef40b.js +508 -0
- package/dist/embedded-app/static/main.fc9ef40b.js.map +1 -0
- package/dist/embedded-app/static/{runtime.b93296e6.js → runtime.fc9ef40b.js} +2 -2
- package/dist/embedded-app/static/{runtime.b93296e6.js.map → runtime.fc9ef40b.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.b93296e6.js → vendor.fc9ef40b.js} +52 -52
- package/dist/embedded-app/static/{vendor.b93296e6.js.map → vendor.fc9ef40b.js.map} +1 -1
- package/dist/index.cjs.js +1 -1
- package/package.json +4 -4
- package/dist/embedded-app/static/5724.49186426.chunk.js.map +0 -1
- package/dist/embedded-app/static/main.b93296e6.js +0 -508
- package/dist/embedded-app/static/main.b93296e6.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 1.8.
|
|
3
|
+
## 1.8.15-next.0
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- c964a3d: Import discovery from backend-defaults instead of backend-common
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @backstage/backend-defaults@0.3.
|
|
10
|
-
- @backstage/plugin-techdocs-node@1.12.
|
|
9
|
+
- @backstage/backend-defaults@0.3.3-next.0
|
|
10
|
+
- @backstage/plugin-techdocs-node@1.12.7-next.0
|
|
11
11
|
- @backstage/catalog-model@1.5.0
|
|
12
12
|
- @backstage/cli-common@0.1.14
|
|
13
13
|
- @backstage/config@1.2.0
|
|
@@ -942,10 +942,19 @@
|
|
|
942
942
|
"type": "object",
|
|
943
943
|
"properties": {
|
|
944
944
|
"bindings": {
|
|
945
|
+
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
945
946
|
"deepVisibility": "frontend",
|
|
946
947
|
"type": "object",
|
|
947
948
|
"additionalProperties": {
|
|
948
|
-
"
|
|
949
|
+
"anyOf": [
|
|
950
|
+
{
|
|
951
|
+
"const": false,
|
|
952
|
+
"type": "boolean"
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
"type": "string"
|
|
956
|
+
}
|
|
957
|
+
]
|
|
949
958
|
}
|
|
950
959
|
}
|
|
951
960
|
}
|
|
@@ -1477,6 +1486,51 @@
|
|
|
1477
1486
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1478
1487
|
}
|
|
1479
1488
|
},
|
|
1489
|
+
{
|
|
1490
|
+
"path": "../../node_modules/@backstage-community/plugin-stackstorm/node_modules/@backstage/core-components/config.d.ts",
|
|
1491
|
+
"value": {
|
|
1492
|
+
"type": "object",
|
|
1493
|
+
"properties": {
|
|
1494
|
+
"auth": {
|
|
1495
|
+
"type": "object",
|
|
1496
|
+
"properties": {
|
|
1497
|
+
"autologout": {
|
|
1498
|
+
"description": "Autologout feature configuration",
|
|
1499
|
+
"type": "object",
|
|
1500
|
+
"properties": {
|
|
1501
|
+
"enabled": {
|
|
1502
|
+
"description": "Enable or disable the autologout feature",
|
|
1503
|
+
"visibility": "frontend",
|
|
1504
|
+
"type": "boolean"
|
|
1505
|
+
},
|
|
1506
|
+
"idleTimeoutMinutes": {
|
|
1507
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
1508
|
+
"visibility": "frontend",
|
|
1509
|
+
"type": "number"
|
|
1510
|
+
},
|
|
1511
|
+
"promptBeforeIdleSeconds": {
|
|
1512
|
+
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
1513
|
+
"visibility": "frontend",
|
|
1514
|
+
"type": "number"
|
|
1515
|
+
},
|
|
1516
|
+
"useWorkerTimers": {
|
|
1517
|
+
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
1518
|
+
"visibility": "frontend",
|
|
1519
|
+
"type": "boolean"
|
|
1520
|
+
},
|
|
1521
|
+
"logoutIfDisconnected": {
|
|
1522
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
1523
|
+
"visibility": "frontend",
|
|
1524
|
+
"type": "boolean"
|
|
1525
|
+
}
|
|
1526
|
+
}
|
|
1527
|
+
}
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1480
1534
|
{
|
|
1481
1535
|
"path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/core-components/config.d.ts",
|
|
1482
1536
|
"value": {
|
|
@@ -1632,7 +1686,7 @@
|
|
|
1632
1686
|
}
|
|
1633
1687
|
},
|
|
1634
1688
|
{
|
|
1635
|
-
"path": "../backend-
|
|
1689
|
+
"path": "../backend-app-api/config.d.ts",
|
|
1636
1690
|
"value": {
|
|
1637
1691
|
"type": "object",
|
|
1638
1692
|
"properties": {
|
|
@@ -1640,7 +1694,6 @@
|
|
|
1640
1694
|
"type": "object",
|
|
1641
1695
|
"properties": {
|
|
1642
1696
|
"auth": {
|
|
1643
|
-
"description": "Options used by the default auth, httpAuth and userInfo services.",
|
|
1644
1697
|
"type": "object",
|
|
1645
1698
|
"properties": {
|
|
1646
1699
|
"dangerouslyDisableDefaultAuthPolicy": {
|
|
@@ -1966,17 +2019,17 @@
|
|
|
1966
2019
|
}
|
|
1967
2020
|
},
|
|
1968
2021
|
"discovery": {
|
|
1969
|
-
"description": "
|
|
2022
|
+
"description": "Discovery options.",
|
|
1970
2023
|
"type": "object",
|
|
1971
2024
|
"properties": {
|
|
1972
2025
|
"endpoints": {
|
|
1973
|
-
"description": "
|
|
2026
|
+
"description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
|
|
1974
2027
|
"type": "array",
|
|
1975
2028
|
"items": {
|
|
1976
2029
|
"type": "object",
|
|
1977
2030
|
"properties": {
|
|
1978
2031
|
"target": {
|
|
1979
|
-
"description": "The target
|
|
2032
|
+
"description": "The target baseUrl to use for the plugin\n\nCan be either a string or an object with internal and external keys.\nTargets with `{{pluginId}}` or `{{ pluginId }} in the url will be replaced with the pluginId.",
|
|
1980
2033
|
"anyOf": [
|
|
1981
2034
|
{
|
|
1982
2035
|
"type": "object",
|
|
@@ -1999,7 +2052,7 @@
|
|
|
1999
2052
|
]
|
|
2000
2053
|
},
|
|
2001
2054
|
"plugins": {
|
|
2002
|
-
"description": "Array of plugins which use the target
|
|
2055
|
+
"description": "Array of plugins which use the target baseUrl.",
|
|
2003
2056
|
"type": "array",
|
|
2004
2057
|
"items": {
|
|
2005
2058
|
"type": "string"
|
|
@@ -2022,7 +2075,7 @@
|
|
|
2022
2075
|
}
|
|
2023
2076
|
},
|
|
2024
2077
|
{
|
|
2025
|
-
"path": "../backend-
|
|
2078
|
+
"path": "../backend-defaults/config.d.ts",
|
|
2026
2079
|
"value": {
|
|
2027
2080
|
"type": "object",
|
|
2028
2081
|
"properties": {
|
|
@@ -2030,6 +2083,7 @@
|
|
|
2030
2083
|
"type": "object",
|
|
2031
2084
|
"properties": {
|
|
2032
2085
|
"auth": {
|
|
2086
|
+
"description": "Options used by the default auth, httpAuth and userInfo services.",
|
|
2033
2087
|
"type": "object",
|
|
2034
2088
|
"properties": {
|
|
2035
2089
|
"dangerouslyDisableDefaultAuthPolicy": {
|
|
@@ -2355,17 +2409,17 @@
|
|
|
2355
2409
|
}
|
|
2356
2410
|
},
|
|
2357
2411
|
"discovery": {
|
|
2358
|
-
"description": "
|
|
2412
|
+
"description": "Options used by the default discovery service.",
|
|
2359
2413
|
"type": "object",
|
|
2360
2414
|
"properties": {
|
|
2361
2415
|
"endpoints": {
|
|
2362
|
-
"description": "
|
|
2416
|
+
"description": "A list of target baseUrls and the associated plugins.",
|
|
2363
2417
|
"type": "array",
|
|
2364
2418
|
"items": {
|
|
2365
2419
|
"type": "object",
|
|
2366
2420
|
"properties": {
|
|
2367
2421
|
"target": {
|
|
2368
|
-
"description": "The target
|
|
2422
|
+
"description": "The target base URL to use for the plugin.\n\nCan be either a string or an object with internal and external keys.\nTargets with `{{pluginId}}` or `{{ pluginId }} in the URL will be replaced with the plugin ID.",
|
|
2369
2423
|
"anyOf": [
|
|
2370
2424
|
{
|
|
2371
2425
|
"type": "object",
|
|
@@ -2388,7 +2442,7 @@
|
|
|
2388
2442
|
]
|
|
2389
2443
|
},
|
|
2390
2444
|
"plugins": {
|
|
2391
|
-
"description": "Array of plugins which use the target
|
|
2445
|
+
"description": "Array of plugins which use the target base URL.",
|
|
2392
2446
|
"type": "array",
|
|
2393
2447
|
"items": {
|
|
2394
2448
|
"type": "string"
|
|
@@ -2409,6 +2463,451 @@
|
|
|
2409
2463
|
},
|
|
2410
2464
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2411
2465
|
}
|
|
2466
|
+
},
|
|
2467
|
+
{
|
|
2468
|
+
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/integration/config.d.ts",
|
|
2469
|
+
"value": {
|
|
2470
|
+
"type": "object",
|
|
2471
|
+
"properties": {
|
|
2472
|
+
"integrations": {
|
|
2473
|
+
"description": "Configuration for integrations towards various external repository provider systems",
|
|
2474
|
+
"visibility": "frontend",
|
|
2475
|
+
"type": "object",
|
|
2476
|
+
"properties": {
|
|
2477
|
+
"azure": {
|
|
2478
|
+
"description": "Integration configuration for Azure",
|
|
2479
|
+
"type": "array",
|
|
2480
|
+
"items": {
|
|
2481
|
+
"type": "object",
|
|
2482
|
+
"properties": {
|
|
2483
|
+
"host": {
|
|
2484
|
+
"description": "The hostname of the given Azure instance",
|
|
2485
|
+
"visibility": "frontend",
|
|
2486
|
+
"type": "string"
|
|
2487
|
+
},
|
|
2488
|
+
"token": {
|
|
2489
|
+
"description": "Token used to authenticate requests.",
|
|
2490
|
+
"visibility": "secret",
|
|
2491
|
+
"deprecated": "Use `credentials` instead.",
|
|
2492
|
+
"type": "string"
|
|
2493
|
+
},
|
|
2494
|
+
"credential": {
|
|
2495
|
+
"description": "The credential to use for requests.\n\nIf no credential is specified anonymous access is used.",
|
|
2496
|
+
"deepVisibility": "secret",
|
|
2497
|
+
"deprecated": "Use `credentials` instead.",
|
|
2498
|
+
"type": "object",
|
|
2499
|
+
"properties": {
|
|
2500
|
+
"clientId": {
|
|
2501
|
+
"type": "string"
|
|
2502
|
+
},
|
|
2503
|
+
"clientSecret": {
|
|
2504
|
+
"type": "string"
|
|
2505
|
+
},
|
|
2506
|
+
"tenantId": {
|
|
2507
|
+
"type": "string"
|
|
2508
|
+
},
|
|
2509
|
+
"personalAccessToken": {
|
|
2510
|
+
"type": "string"
|
|
2511
|
+
}
|
|
2512
|
+
}
|
|
2513
|
+
},
|
|
2514
|
+
"credentials": {
|
|
2515
|
+
"description": "The credentials to use for requests. If multiple credentials are specified the first one that matches the organization is used.\nIf not organization matches the first credential without an organization is used.\n\nIf no credentials are specified at all, either a default credential (for Azure DevOps) or anonymous access (for Azure DevOps Server) is used.",
|
|
2516
|
+
"deepVisibility": "secret",
|
|
2517
|
+
"type": "array",
|
|
2518
|
+
"items": {
|
|
2519
|
+
"type": "object",
|
|
2520
|
+
"properties": {
|
|
2521
|
+
"clientId": {
|
|
2522
|
+
"type": "string"
|
|
2523
|
+
},
|
|
2524
|
+
"clientSecret": {
|
|
2525
|
+
"type": "string"
|
|
2526
|
+
},
|
|
2527
|
+
"tenantId": {
|
|
2528
|
+
"type": "string"
|
|
2529
|
+
},
|
|
2530
|
+
"personalAccessToken": {
|
|
2531
|
+
"type": "string"
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
}
|
|
2535
|
+
}
|
|
2536
|
+
},
|
|
2537
|
+
"required": [
|
|
2538
|
+
"host"
|
|
2539
|
+
]
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
"bitbucket": {
|
|
2543
|
+
"description": "Integration configuration for Bitbucket",
|
|
2544
|
+
"deprecated": "replaced by bitbucketCloud and bitbucketServer",
|
|
2545
|
+
"type": "array",
|
|
2546
|
+
"items": {
|
|
2547
|
+
"type": "object",
|
|
2548
|
+
"properties": {
|
|
2549
|
+
"host": {
|
|
2550
|
+
"description": "The hostname of the given Bitbucket instance",
|
|
2551
|
+
"visibility": "frontend",
|
|
2552
|
+
"type": "string"
|
|
2553
|
+
},
|
|
2554
|
+
"token": {
|
|
2555
|
+
"description": "Token used to authenticate requests.",
|
|
2556
|
+
"visibility": "secret",
|
|
2557
|
+
"type": "string"
|
|
2558
|
+
},
|
|
2559
|
+
"apiBaseUrl": {
|
|
2560
|
+
"description": "The base url for the Bitbucket API, for example https://api.bitbucket.org/2.0",
|
|
2561
|
+
"visibility": "frontend",
|
|
2562
|
+
"type": "string"
|
|
2563
|
+
},
|
|
2564
|
+
"username": {
|
|
2565
|
+
"description": "The username to use for authenticated requests.",
|
|
2566
|
+
"visibility": "secret",
|
|
2567
|
+
"type": "string"
|
|
2568
|
+
},
|
|
2569
|
+
"appPassword": {
|
|
2570
|
+
"description": "Bitbucket app password used to authenticate requests.",
|
|
2571
|
+
"visibility": "secret",
|
|
2572
|
+
"type": "string"
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
"required": [
|
|
2576
|
+
"host"
|
|
2577
|
+
]
|
|
2578
|
+
}
|
|
2579
|
+
},
|
|
2580
|
+
"bitbucketCloud": {
|
|
2581
|
+
"description": "Integration configuration for Bitbucket Cloud",
|
|
2582
|
+
"type": "array",
|
|
2583
|
+
"items": {
|
|
2584
|
+
"type": "object",
|
|
2585
|
+
"properties": {
|
|
2586
|
+
"username": {
|
|
2587
|
+
"description": "The username to use for authenticated requests.",
|
|
2588
|
+
"visibility": "secret",
|
|
2589
|
+
"type": "string"
|
|
2590
|
+
},
|
|
2591
|
+
"appPassword": {
|
|
2592
|
+
"description": "Bitbucket Cloud app password used to authenticate requests.",
|
|
2593
|
+
"visibility": "secret",
|
|
2594
|
+
"type": "string"
|
|
2595
|
+
}
|
|
2596
|
+
},
|
|
2597
|
+
"required": [
|
|
2598
|
+
"appPassword",
|
|
2599
|
+
"username"
|
|
2600
|
+
]
|
|
2601
|
+
}
|
|
2602
|
+
},
|
|
2603
|
+
"bitbucketServer": {
|
|
2604
|
+
"description": "Integration configuration for Bitbucket Server",
|
|
2605
|
+
"type": "array",
|
|
2606
|
+
"items": {
|
|
2607
|
+
"type": "object",
|
|
2608
|
+
"properties": {
|
|
2609
|
+
"host": {
|
|
2610
|
+
"description": "The hostname of the given Bitbucket Server instance",
|
|
2611
|
+
"visibility": "frontend",
|
|
2612
|
+
"type": "string"
|
|
2613
|
+
},
|
|
2614
|
+
"token": {
|
|
2615
|
+
"description": "Token used to authenticate requests.",
|
|
2616
|
+
"visibility": "secret",
|
|
2617
|
+
"type": "string"
|
|
2618
|
+
},
|
|
2619
|
+
"username": {
|
|
2620
|
+
"description": "Username used to authenticate requests with Basic Auth.",
|
|
2621
|
+
"visibility": "secret",
|
|
2622
|
+
"type": "string"
|
|
2623
|
+
},
|
|
2624
|
+
"password": {
|
|
2625
|
+
"description": "Password (or token as password) used to authenticate requests with Basic Auth.",
|
|
2626
|
+
"visibility": "secret",
|
|
2627
|
+
"type": "string"
|
|
2628
|
+
},
|
|
2629
|
+
"apiBaseUrl": {
|
|
2630
|
+
"description": "The base url for the Bitbucket Server API, for example https://<host>/rest/api/1.0",
|
|
2631
|
+
"visibility": "frontend",
|
|
2632
|
+
"type": "string"
|
|
2633
|
+
}
|
|
2634
|
+
},
|
|
2635
|
+
"required": [
|
|
2636
|
+
"host"
|
|
2637
|
+
]
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
"gerrit": {
|
|
2641
|
+
"description": "Integration configuration for Gerrit",
|
|
2642
|
+
"type": "array",
|
|
2643
|
+
"items": {
|
|
2644
|
+
"type": "object",
|
|
2645
|
+
"properties": {
|
|
2646
|
+
"host": {
|
|
2647
|
+
"description": "The hostname of the given Gerrit instance",
|
|
2648
|
+
"visibility": "frontend",
|
|
2649
|
+
"type": "string"
|
|
2650
|
+
},
|
|
2651
|
+
"baseUrl": {
|
|
2652
|
+
"description": "The base url for the Gerrit instance.",
|
|
2653
|
+
"visibility": "frontend",
|
|
2654
|
+
"type": "string"
|
|
2655
|
+
},
|
|
2656
|
+
"gitilesBaseUrl": {
|
|
2657
|
+
"description": "The gitiles base url.",
|
|
2658
|
+
"visibility": "frontend",
|
|
2659
|
+
"type": "string"
|
|
2660
|
+
},
|
|
2661
|
+
"cloneUrl": {
|
|
2662
|
+
"description": "The base url for cloning repos.",
|
|
2663
|
+
"visibility": "frontend",
|
|
2664
|
+
"type": "string"
|
|
2665
|
+
},
|
|
2666
|
+
"username": {
|
|
2667
|
+
"description": "The username to use for authenticated requests.",
|
|
2668
|
+
"visibility": "secret",
|
|
2669
|
+
"type": "string"
|
|
2670
|
+
},
|
|
2671
|
+
"password": {
|
|
2672
|
+
"description": "Gerrit password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
2673
|
+
"visibility": "secret",
|
|
2674
|
+
"type": "string"
|
|
2675
|
+
}
|
|
2676
|
+
},
|
|
2677
|
+
"required": [
|
|
2678
|
+
"gitilesBaseUrl",
|
|
2679
|
+
"host"
|
|
2680
|
+
]
|
|
2681
|
+
}
|
|
2682
|
+
},
|
|
2683
|
+
"github": {
|
|
2684
|
+
"description": "Integration configuration for GitHub",
|
|
2685
|
+
"type": "array",
|
|
2686
|
+
"items": {
|
|
2687
|
+
"type": "object",
|
|
2688
|
+
"properties": {
|
|
2689
|
+
"host": {
|
|
2690
|
+
"description": "The hostname of the given GitHub instance",
|
|
2691
|
+
"visibility": "frontend",
|
|
2692
|
+
"type": "string"
|
|
2693
|
+
},
|
|
2694
|
+
"token": {
|
|
2695
|
+
"description": "Token used to authenticate requests.",
|
|
2696
|
+
"visibility": "secret",
|
|
2697
|
+
"type": "string"
|
|
2698
|
+
},
|
|
2699
|
+
"apiBaseUrl": {
|
|
2700
|
+
"description": "The base url for the GitHub API, for example https://api.github.com",
|
|
2701
|
+
"visibility": "frontend",
|
|
2702
|
+
"type": "string"
|
|
2703
|
+
},
|
|
2704
|
+
"rawBaseUrl": {
|
|
2705
|
+
"description": "The base url for GitHub raw resources, for example https://raw.githubusercontent.com",
|
|
2706
|
+
"visibility": "frontend",
|
|
2707
|
+
"type": "string"
|
|
2708
|
+
},
|
|
2709
|
+
"apps": {
|
|
2710
|
+
"description": "GitHub Apps configuration",
|
|
2711
|
+
"type": "array",
|
|
2712
|
+
"items": {
|
|
2713
|
+
"type": "object",
|
|
2714
|
+
"properties": {
|
|
2715
|
+
"appId": {
|
|
2716
|
+
"description": "The numeric GitHub App ID, string for environment variables",
|
|
2717
|
+
"type": [
|
|
2718
|
+
"string",
|
|
2719
|
+
"number"
|
|
2720
|
+
]
|
|
2721
|
+
},
|
|
2722
|
+
"privateKey": {
|
|
2723
|
+
"description": "The private key to use for auth against the app",
|
|
2724
|
+
"visibility": "secret",
|
|
2725
|
+
"type": "string"
|
|
2726
|
+
},
|
|
2727
|
+
"webhookSecret": {
|
|
2728
|
+
"description": "The secret used for webhooks",
|
|
2729
|
+
"visibility": "secret",
|
|
2730
|
+
"type": "string"
|
|
2731
|
+
},
|
|
2732
|
+
"clientId": {
|
|
2733
|
+
"description": "The client ID to use",
|
|
2734
|
+
"type": "string"
|
|
2735
|
+
},
|
|
2736
|
+
"clientSecret": {
|
|
2737
|
+
"description": "The client secret to use",
|
|
2738
|
+
"visibility": "secret",
|
|
2739
|
+
"type": "string"
|
|
2740
|
+
},
|
|
2741
|
+
"allowedInstallationOwners": {
|
|
2742
|
+
"description": "List of installation owners allowed to be used by this GitHub app. The GitHub UI does not provide a way to list the installations.\nHowever you can list the installations with the GitHub API. You can find the list of installations here:\nhttps://api.github.com/app/installations\nThe relevant documentation for this is here.\nhttps://docs.github.com/en/rest/reference/apps#list-installations-for-the-authenticated-app--code-samples",
|
|
2743
|
+
"type": "array",
|
|
2744
|
+
"items": {
|
|
2745
|
+
"type": "string"
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2749
|
+
"required": [
|
|
2750
|
+
"appId",
|
|
2751
|
+
"clientId",
|
|
2752
|
+
"clientSecret",
|
|
2753
|
+
"privateKey",
|
|
2754
|
+
"webhookSecret"
|
|
2755
|
+
]
|
|
2756
|
+
}
|
|
2757
|
+
}
|
|
2758
|
+
},
|
|
2759
|
+
"required": [
|
|
2760
|
+
"host"
|
|
2761
|
+
]
|
|
2762
|
+
}
|
|
2763
|
+
},
|
|
2764
|
+
"gitlab": {
|
|
2765
|
+
"description": "Integration configuration for GitLab",
|
|
2766
|
+
"type": "array",
|
|
2767
|
+
"items": {
|
|
2768
|
+
"type": "object",
|
|
2769
|
+
"properties": {
|
|
2770
|
+
"host": {
|
|
2771
|
+
"description": "The host of the target that this matches on, e.g. \"gitlab.com\".",
|
|
2772
|
+
"visibility": "frontend",
|
|
2773
|
+
"type": "string"
|
|
2774
|
+
},
|
|
2775
|
+
"apiBaseUrl": {
|
|
2776
|
+
"description": "The base URL of the API of this provider, e.g.\n\"https://gitlab.com/api/v4\", with no trailing slash.\n\nMay be omitted specifically for public GitLab; then it will be deduced.",
|
|
2777
|
+
"visibility": "frontend",
|
|
2778
|
+
"type": "string"
|
|
2779
|
+
},
|
|
2780
|
+
"token": {
|
|
2781
|
+
"description": "The authorization token to use for requests to this provider.\n\nIf no token is specified, anonymous access is used.",
|
|
2782
|
+
"visibility": "secret",
|
|
2783
|
+
"type": "string"
|
|
2784
|
+
},
|
|
2785
|
+
"baseUrl": {
|
|
2786
|
+
"description": "The baseUrl of this provider, e.g. \"https://gitlab.com\", which is\npassed into the GitLab client.\n\nIf no baseUrl is provided, it will default to https://${host}.",
|
|
2787
|
+
"visibility": "frontend",
|
|
2788
|
+
"type": "string"
|
|
2789
|
+
}
|
|
2790
|
+
},
|
|
2791
|
+
"required": [
|
|
2792
|
+
"host"
|
|
2793
|
+
]
|
|
2794
|
+
}
|
|
2795
|
+
},
|
|
2796
|
+
"googleGcs": {
|
|
2797
|
+
"description": "Integration configuration for Google Cloud Storage",
|
|
2798
|
+
"type": "object",
|
|
2799
|
+
"properties": {
|
|
2800
|
+
"clientEmail": {
|
|
2801
|
+
"description": "Service account email used to authenticate requests.",
|
|
2802
|
+
"type": "string"
|
|
2803
|
+
},
|
|
2804
|
+
"privateKey": {
|
|
2805
|
+
"description": "Service account private key used to authenticate requests.",
|
|
2806
|
+
"visibility": "secret",
|
|
2807
|
+
"type": "string"
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
},
|
|
2811
|
+
"awsS3": {
|
|
2812
|
+
"description": "Integration configuration for AWS S3 Service",
|
|
2813
|
+
"type": "array",
|
|
2814
|
+
"items": {
|
|
2815
|
+
"type": "object",
|
|
2816
|
+
"properties": {
|
|
2817
|
+
"endpoint": {
|
|
2818
|
+
"description": "AWS Endpoint.\nThe endpoint URI to send requests to. The default endpoint is built from the configured region.",
|
|
2819
|
+
"visibility": "frontend",
|
|
2820
|
+
"type": "string"
|
|
2821
|
+
},
|
|
2822
|
+
"s3ForcePathStyle": {
|
|
2823
|
+
"description": "Whether to use path style URLs when communicating with S3.\nDefaults to false.\nThis allows providers like LocalStack, Minio and Wasabi (and possibly others) to be used.",
|
|
2824
|
+
"visibility": "frontend",
|
|
2825
|
+
"type": "boolean"
|
|
2826
|
+
},
|
|
2827
|
+
"accessKeyId": {
|
|
2828
|
+
"description": "Account access key used to authenticate requests.",
|
|
2829
|
+
"type": "string"
|
|
2830
|
+
},
|
|
2831
|
+
"secretAccessKey": {
|
|
2832
|
+
"description": "Account secret key used to authenticate requests.",
|
|
2833
|
+
"visibility": "secret",
|
|
2834
|
+
"type": "string"
|
|
2835
|
+
},
|
|
2836
|
+
"roleArn": {
|
|
2837
|
+
"description": "ARN of the role to be assumed",
|
|
2838
|
+
"type": "string"
|
|
2839
|
+
},
|
|
2840
|
+
"externalId": {
|
|
2841
|
+
"description": "External ID to use when assuming role",
|
|
2842
|
+
"type": "string"
|
|
2843
|
+
}
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
},
|
|
2847
|
+
"gitea": {
|
|
2848
|
+
"description": "Integration configuration for Gitea",
|
|
2849
|
+
"type": "array",
|
|
2850
|
+
"items": {
|
|
2851
|
+
"type": "object",
|
|
2852
|
+
"properties": {
|
|
2853
|
+
"host": {
|
|
2854
|
+
"description": "The hostname of the given Gitea instance",
|
|
2855
|
+
"visibility": "frontend",
|
|
2856
|
+
"type": "string"
|
|
2857
|
+
},
|
|
2858
|
+
"baseUrl": {
|
|
2859
|
+
"description": "The base url for the Gitea instance.",
|
|
2860
|
+
"visibility": "frontend",
|
|
2861
|
+
"type": "string"
|
|
2862
|
+
},
|
|
2863
|
+
"username": {
|
|
2864
|
+
"description": "The username to use for authenticated requests.",
|
|
2865
|
+
"visibility": "secret",
|
|
2866
|
+
"type": "string"
|
|
2867
|
+
},
|
|
2868
|
+
"password": {
|
|
2869
|
+
"description": "Gitea password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
2870
|
+
"visibility": "secret",
|
|
2871
|
+
"type": "string"
|
|
2872
|
+
}
|
|
2873
|
+
},
|
|
2874
|
+
"required": [
|
|
2875
|
+
"host"
|
|
2876
|
+
]
|
|
2877
|
+
}
|
|
2878
|
+
},
|
|
2879
|
+
"harness": {
|
|
2880
|
+
"description": "Integration configuration for Harness Code",
|
|
2881
|
+
"type": "array",
|
|
2882
|
+
"items": {
|
|
2883
|
+
"type": "object",
|
|
2884
|
+
"properties": {
|
|
2885
|
+
"host": {
|
|
2886
|
+
"description": "The hostname of the given Harness Code instance",
|
|
2887
|
+
"visibility": "frontend",
|
|
2888
|
+
"type": "string"
|
|
2889
|
+
},
|
|
2890
|
+
"apiKey": {
|
|
2891
|
+
"description": "The apikey to use for authenticated requests.",
|
|
2892
|
+
"visibility": "secret",
|
|
2893
|
+
"type": "string"
|
|
2894
|
+
},
|
|
2895
|
+
"token": {
|
|
2896
|
+
"description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
|
|
2897
|
+
"visibility": "secret",
|
|
2898
|
+
"type": "string"
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2901
|
+
"required": [
|
|
2902
|
+
"host"
|
|
2903
|
+
]
|
|
2904
|
+
}
|
|
2905
|
+
}
|
|
2906
|
+
}
|
|
2907
|
+
}
|
|
2908
|
+
},
|
|
2909
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2910
|
+
}
|
|
2412
2911
|
}
|
|
2413
2912
|
],
|
|
2414
2913
|
"backstageConfigSchemaVersion": 1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.fc9ef40b.js"></script><script defer="defer" src="/static/module-material-ui.1eefc717.js"></script><script defer="defer" src="/static/module-lodash.1a2b8e11.js"></script><script defer="defer" src="/static/module-date-fns.196adaa7.js"></script><script defer="defer" src="/static/module-mui.bb6867cb.js"></script><script defer="defer" src="/static/module-material-table.892da5bc.js"></script><script defer="defer" src="/static/module-react-dom.3e65b8bc.js"></script><script defer="defer" src="/static/module-react-router.07ec2a81.js"></script><script defer="defer" src="/static/module-react-router-dom.ba9d01bf.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.8a51ed97.js"></script><script defer="defer" src="/static/module-zod.52dba18e.js"></script><script defer="defer" src="/static/module-i18next.40b7c233.js"></script><script defer="defer" src="/static/vendor.fc9ef40b.js"></script><script defer="defer" src="/static/main.fc9ef40b.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|