@techdocs/cli 1.8.22 → 1.8.24-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 +11 -0
- package/dist/embedded-app/.config-schema.json +862 -17
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/5724.a8d74000.chunk.js +4 -0
- package/dist/embedded-app/static/{5724.058de6d8.chunk.js.map → 5724.a8d74000.chunk.js.map} +1 -1
- package/dist/embedded-app/static/8803.5b4b94d4.chunk.js +11 -0
- package/dist/embedded-app/static/8803.5b4b94d4.chunk.js.map +1 -0
- package/dist/embedded-app/static/main.e6c05760.js +553 -0
- package/dist/embedded-app/static/main.e6c05760.js.map +1 -0
- package/dist/embedded-app/static/{runtime.b66c4152.js → runtime.e6c05760.js} +2 -2
- package/dist/embedded-app/static/{runtime.b66c4152.js.map → runtime.e6c05760.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.b66c4152.js → vendor.e6c05760.js} +1 -1
- package/dist/embedded-app/static/{vendor.b66c4152.js.map → vendor.e6c05760.js.map} +1 -1
- package/dist/package.json.cjs.js +1 -1
- package/package.json +7 -7
- package/dist/embedded-app/static/5724.058de6d8.chunk.js +0 -4
- package/dist/embedded-app/static/9605.fe23b89f.chunk.js +0 -11
- package/dist/embedded-app/static/9605.fe23b89f.chunk.js.map +0 -1
- package/dist/embedded-app/static/main.b66c4152.js +0 -553
- package/dist/embedded-app/static/main.b66c4152.js.map +0 -1
|
@@ -1456,6 +1456,235 @@
|
|
|
1456
1456
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1457
1457
|
}
|
|
1458
1458
|
},
|
|
1459
|
+
{
|
|
1460
|
+
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-app-api/config.d.ts",
|
|
1461
|
+
"value": {
|
|
1462
|
+
"type": "object",
|
|
1463
|
+
"properties": {
|
|
1464
|
+
"app": {
|
|
1465
|
+
"description": "Generic frontend configuration.",
|
|
1466
|
+
"type": "object",
|
|
1467
|
+
"properties": {
|
|
1468
|
+
"baseUrl": {
|
|
1469
|
+
"description": "The public absolute root URL that the frontend.",
|
|
1470
|
+
"visibility": "frontend",
|
|
1471
|
+
"type": "string"
|
|
1472
|
+
},
|
|
1473
|
+
"title": {
|
|
1474
|
+
"description": "The title of the app, as shown in the Backstage web interface.",
|
|
1475
|
+
"visibility": "frontend",
|
|
1476
|
+
"type": "string"
|
|
1477
|
+
},
|
|
1478
|
+
"support": {
|
|
1479
|
+
"description": "Information about support of this Backstage instance and how to contact the integrator team.",
|
|
1480
|
+
"type": "object",
|
|
1481
|
+
"properties": {
|
|
1482
|
+
"url": {
|
|
1483
|
+
"description": "The primary support url.",
|
|
1484
|
+
"visibility": "frontend",
|
|
1485
|
+
"type": "string"
|
|
1486
|
+
},
|
|
1487
|
+
"items": {
|
|
1488
|
+
"description": "A list of categorized support item groupings.",
|
|
1489
|
+
"type": "array",
|
|
1490
|
+
"items": {
|
|
1491
|
+
"type": "object",
|
|
1492
|
+
"properties": {
|
|
1493
|
+
"title": {
|
|
1494
|
+
"description": "The title of the support item grouping.",
|
|
1495
|
+
"visibility": "frontend",
|
|
1496
|
+
"type": "string"
|
|
1497
|
+
},
|
|
1498
|
+
"icon": {
|
|
1499
|
+
"description": "An optional icon for the support item grouping.",
|
|
1500
|
+
"visibility": "frontend",
|
|
1501
|
+
"type": "string"
|
|
1502
|
+
},
|
|
1503
|
+
"links": {
|
|
1504
|
+
"description": "A list of support links for the Backstage instance inside this grouping.",
|
|
1505
|
+
"type": "array",
|
|
1506
|
+
"items": {
|
|
1507
|
+
"type": "object",
|
|
1508
|
+
"properties": {
|
|
1509
|
+
"url": {
|
|
1510
|
+
"visibility": "frontend",
|
|
1511
|
+
"type": "string"
|
|
1512
|
+
},
|
|
1513
|
+
"title": {
|
|
1514
|
+
"visibility": "frontend",
|
|
1515
|
+
"type": "string"
|
|
1516
|
+
}
|
|
1517
|
+
},
|
|
1518
|
+
"required": [
|
|
1519
|
+
"url"
|
|
1520
|
+
]
|
|
1521
|
+
}
|
|
1522
|
+
}
|
|
1523
|
+
},
|
|
1524
|
+
"required": [
|
|
1525
|
+
"links",
|
|
1526
|
+
"title"
|
|
1527
|
+
]
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1530
|
+
},
|
|
1531
|
+
"required": [
|
|
1532
|
+
"items",
|
|
1533
|
+
"url"
|
|
1534
|
+
]
|
|
1535
|
+
},
|
|
1536
|
+
"routes": {
|
|
1537
|
+
"type": "object",
|
|
1538
|
+
"properties": {
|
|
1539
|
+
"bindings": {
|
|
1540
|
+
"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.",
|
|
1541
|
+
"deepVisibility": "frontend",
|
|
1542
|
+
"type": "object",
|
|
1543
|
+
"additionalProperties": {
|
|
1544
|
+
"anyOf": [
|
|
1545
|
+
{
|
|
1546
|
+
"const": false,
|
|
1547
|
+
"type": "boolean"
|
|
1548
|
+
},
|
|
1549
|
+
{
|
|
1550
|
+
"type": "string"
|
|
1551
|
+
}
|
|
1552
|
+
]
|
|
1553
|
+
}
|
|
1554
|
+
}
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
"required": [
|
|
1559
|
+
"baseUrl"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
"backend": {
|
|
1563
|
+
"description": "Generic backend configuration.",
|
|
1564
|
+
"type": "object",
|
|
1565
|
+
"properties": {
|
|
1566
|
+
"baseUrl": {
|
|
1567
|
+
"description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
|
|
1568
|
+
"visibility": "frontend",
|
|
1569
|
+
"type": "string"
|
|
1570
|
+
}
|
|
1571
|
+
},
|
|
1572
|
+
"required": [
|
|
1573
|
+
"baseUrl"
|
|
1574
|
+
]
|
|
1575
|
+
},
|
|
1576
|
+
"organization": {
|
|
1577
|
+
"description": "Configuration that provides information about the organization that the app is for.",
|
|
1578
|
+
"type": "object",
|
|
1579
|
+
"properties": {
|
|
1580
|
+
"name": {
|
|
1581
|
+
"description": "The name of the organization that the app belongs to.",
|
|
1582
|
+
"visibility": "frontend",
|
|
1583
|
+
"type": "string"
|
|
1584
|
+
}
|
|
1585
|
+
}
|
|
1586
|
+
},
|
|
1587
|
+
"homepage": {
|
|
1588
|
+
"description": "This config was used by the HomepageTimer but has been replaced by the HeaderWorldClock in the home plugin",
|
|
1589
|
+
"deprecated": "in favor of the HeaderWorldClock which is found in the home plugin",
|
|
1590
|
+
"type": "object",
|
|
1591
|
+
"properties": {
|
|
1592
|
+
"clocks": {
|
|
1593
|
+
"type": "array",
|
|
1594
|
+
"items": {
|
|
1595
|
+
"type": "object",
|
|
1596
|
+
"properties": {
|
|
1597
|
+
"label": {
|
|
1598
|
+
"visibility": "frontend",
|
|
1599
|
+
"type": "string"
|
|
1600
|
+
},
|
|
1601
|
+
"timezone": {
|
|
1602
|
+
"visibility": "frontend",
|
|
1603
|
+
"type": "string"
|
|
1604
|
+
}
|
|
1605
|
+
},
|
|
1606
|
+
"required": [
|
|
1607
|
+
"label",
|
|
1608
|
+
"timezone"
|
|
1609
|
+
]
|
|
1610
|
+
}
|
|
1611
|
+
}
|
|
1612
|
+
}
|
|
1613
|
+
},
|
|
1614
|
+
"auth": {
|
|
1615
|
+
"description": "Configuration that provides information on available configured authentication providers.",
|
|
1616
|
+
"type": "object",
|
|
1617
|
+
"properties": {
|
|
1618
|
+
"environment": {
|
|
1619
|
+
"description": "The 'environment' attribute added as an optional parameter to have configurable environment value for `auth.providers`.\ndefault value: 'development'\noptional values: 'development' | 'production'",
|
|
1620
|
+
"visibility": "frontend",
|
|
1621
|
+
"type": "string"
|
|
1622
|
+
}
|
|
1623
|
+
}
|
|
1624
|
+
},
|
|
1625
|
+
"enableExperimentalRedirectFlow": {
|
|
1626
|
+
"description": "Enable redirect authentication flow type, instead of a popup for authentication.",
|
|
1627
|
+
"visibility": "frontend",
|
|
1628
|
+
"type": "boolean"
|
|
1629
|
+
},
|
|
1630
|
+
"discovery": {
|
|
1631
|
+
"description": "Discovery options.",
|
|
1632
|
+
"visibility": "frontend",
|
|
1633
|
+
"type": "object",
|
|
1634
|
+
"properties": {
|
|
1635
|
+
"endpoints": {
|
|
1636
|
+
"description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
|
|
1637
|
+
"visibility": "frontend",
|
|
1638
|
+
"type": "array",
|
|
1639
|
+
"items": {
|
|
1640
|
+
"type": "object",
|
|
1641
|
+
"properties": {
|
|
1642
|
+
"target": {
|
|
1643
|
+
"description": "The target baseUrl to use for the plugin\n\nCan be either a string or an object with internal and external keys. (Internal is used for the backend, external for the frontend)\nTargets with `{{pluginId}}` or `{{ pluginId }} in the url will be replaced with the pluginId.",
|
|
1644
|
+
"visibility": "frontend",
|
|
1645
|
+
"anyOf": [
|
|
1646
|
+
{
|
|
1647
|
+
"type": "object",
|
|
1648
|
+
"properties": {
|
|
1649
|
+
"external": {
|
|
1650
|
+
"visibility": "frontend",
|
|
1651
|
+
"type": "string"
|
|
1652
|
+
}
|
|
1653
|
+
},
|
|
1654
|
+
"required": [
|
|
1655
|
+
"external"
|
|
1656
|
+
]
|
|
1657
|
+
},
|
|
1658
|
+
{
|
|
1659
|
+
"type": "string"
|
|
1660
|
+
}
|
|
1661
|
+
]
|
|
1662
|
+
},
|
|
1663
|
+
"plugins": {
|
|
1664
|
+
"description": "Array of plugins which use the target baseUrl.",
|
|
1665
|
+
"visibility": "frontend",
|
|
1666
|
+
"type": "array",
|
|
1667
|
+
"items": {
|
|
1668
|
+
"type": "string"
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
},
|
|
1672
|
+
"required": [
|
|
1673
|
+
"plugins",
|
|
1674
|
+
"target"
|
|
1675
|
+
]
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"required": [
|
|
1682
|
+
"app",
|
|
1683
|
+
"backend"
|
|
1684
|
+
],
|
|
1685
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1686
|
+
}
|
|
1687
|
+
},
|
|
1459
1688
|
{
|
|
1460
1689
|
"path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/core-components/config.d.ts",
|
|
1461
1690
|
"value": {
|
|
@@ -2152,10 +2381,6 @@
|
|
|
2152
2381
|
},
|
|
2153
2382
|
"defaultTtl": {
|
|
2154
2383
|
"description": "An optional default TTL (in milliseconds, if given as a number)."
|
|
2155
|
-
},
|
|
2156
|
-
"useRedisSets": {
|
|
2157
|
-
"description": "Whether or not [useRedisSets](https://github.com/jaredwray/keyv/tree/main/packages/redis#useredissets) should be configured to this redis cache.\nDefaults to true if unspecified.",
|
|
2158
|
-
"type": "boolean"
|
|
2159
2384
|
}
|
|
2160
2385
|
},
|
|
2161
2386
|
"required": [
|
|
@@ -4278,28 +4503,73 @@
|
|
|
4278
4503
|
}
|
|
4279
4504
|
},
|
|
4280
4505
|
{
|
|
4281
|
-
"path": "
|
|
4506
|
+
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/plugin-catalog-react/node_modules/@backstage/core-components/config.d.ts",
|
|
4282
4507
|
"value": {
|
|
4283
4508
|
"type": "object",
|
|
4284
4509
|
"properties": {
|
|
4285
|
-
"
|
|
4286
|
-
"description": "Configuration for access to AWS accounts",
|
|
4510
|
+
"auth": {
|
|
4287
4511
|
"type": "object",
|
|
4288
4512
|
"properties": {
|
|
4289
|
-
"
|
|
4290
|
-
"description": "
|
|
4513
|
+
"autologout": {
|
|
4514
|
+
"description": "Autologout feature configuration",
|
|
4291
4515
|
"type": "object",
|
|
4292
4516
|
"properties": {
|
|
4293
|
-
"
|
|
4294
|
-
"description": "
|
|
4295
|
-
"
|
|
4517
|
+
"enabled": {
|
|
4518
|
+
"description": "Enable or disable the autologout feature",
|
|
4519
|
+
"visibility": "frontend",
|
|
4520
|
+
"type": "boolean"
|
|
4296
4521
|
},
|
|
4297
|
-
"
|
|
4298
|
-
"description": "
|
|
4299
|
-
"
|
|
4522
|
+
"idleTimeoutMinutes": {
|
|
4523
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
4524
|
+
"visibility": "frontend",
|
|
4525
|
+
"type": "number"
|
|
4300
4526
|
},
|
|
4301
|
-
"
|
|
4302
|
-
"description": "
|
|
4527
|
+
"promptBeforeIdleSeconds": {
|
|
4528
|
+
"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.",
|
|
4529
|
+
"visibility": "frontend",
|
|
4530
|
+
"type": "number"
|
|
4531
|
+
},
|
|
4532
|
+
"useWorkerTimers": {
|
|
4533
|
+
"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.",
|
|
4534
|
+
"visibility": "frontend",
|
|
4535
|
+
"type": "boolean"
|
|
4536
|
+
},
|
|
4537
|
+
"logoutIfDisconnected": {
|
|
4538
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
4539
|
+
"visibility": "frontend",
|
|
4540
|
+
"type": "boolean"
|
|
4541
|
+
}
|
|
4542
|
+
}
|
|
4543
|
+
}
|
|
4544
|
+
}
|
|
4545
|
+
}
|
|
4546
|
+
},
|
|
4547
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4548
|
+
}
|
|
4549
|
+
},
|
|
4550
|
+
{
|
|
4551
|
+
"path": "../integration-aws-node/config.d.ts",
|
|
4552
|
+
"value": {
|
|
4553
|
+
"type": "object",
|
|
4554
|
+
"properties": {
|
|
4555
|
+
"aws": {
|
|
4556
|
+
"description": "Configuration for access to AWS accounts",
|
|
4557
|
+
"type": "object",
|
|
4558
|
+
"properties": {
|
|
4559
|
+
"accountDefaults": {
|
|
4560
|
+
"description": "Defaults for retrieving AWS account credentials",
|
|
4561
|
+
"type": "object",
|
|
4562
|
+
"properties": {
|
|
4563
|
+
"roleName": {
|
|
4564
|
+
"description": "The IAM role to assume to retrieve temporary AWS credentials",
|
|
4565
|
+
"type": "string"
|
|
4566
|
+
},
|
|
4567
|
+
"partition": {
|
|
4568
|
+
"description": "The AWS partition of the IAM role, e.g. \"aws\", \"aws-cn\"",
|
|
4569
|
+
"type": "string"
|
|
4570
|
+
},
|
|
4571
|
+
"region": {
|
|
4572
|
+
"description": "The STS regional endpoint to use when retrieving temporary AWS credentials, e.g. \"ap-northeast-1\"",
|
|
4303
4573
|
"type": "string"
|
|
4304
4574
|
},
|
|
4305
4575
|
"externalId": {
|
|
@@ -4385,6 +4655,581 @@
|
|
|
4385
4655
|
},
|
|
4386
4656
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4387
4657
|
}
|
|
4658
|
+
},
|
|
4659
|
+
{
|
|
4660
|
+
"path": "../../node_modules/@backstage/backend-common/node_modules/@backstage/backend-plugin-api/config.d.ts",
|
|
4661
|
+
"value": {
|
|
4662
|
+
"type": "object",
|
|
4663
|
+
"properties": {
|
|
4664
|
+
"backend": {
|
|
4665
|
+
"type": "object",
|
|
4666
|
+
"properties": {
|
|
4667
|
+
"workingDirectory": {
|
|
4668
|
+
"description": "An absolute path to a directory that can be used as a working dir, for\nexample as scratch space for large operations.",
|
|
4669
|
+
"type": "string"
|
|
4670
|
+
}
|
|
4671
|
+
}
|
|
4672
|
+
}
|
|
4673
|
+
},
|
|
4674
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4675
|
+
}
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"path": "../../node_modules/@backstage/backend-common/node_modules/@backstage/integration/config.d.ts",
|
|
4679
|
+
"value": {
|
|
4680
|
+
"type": "object",
|
|
4681
|
+
"properties": {
|
|
4682
|
+
"integrations": {
|
|
4683
|
+
"description": "Configuration for integrations towards various external repository provider systems",
|
|
4684
|
+
"visibility": "frontend",
|
|
4685
|
+
"type": "object",
|
|
4686
|
+
"properties": {
|
|
4687
|
+
"azure": {
|
|
4688
|
+
"description": "Integration configuration for Azure",
|
|
4689
|
+
"type": "array",
|
|
4690
|
+
"items": {
|
|
4691
|
+
"type": "object",
|
|
4692
|
+
"properties": {
|
|
4693
|
+
"host": {
|
|
4694
|
+
"description": "The hostname of the given Azure instance",
|
|
4695
|
+
"visibility": "frontend",
|
|
4696
|
+
"type": "string"
|
|
4697
|
+
},
|
|
4698
|
+
"token": {
|
|
4699
|
+
"description": "Token used to authenticate requests.",
|
|
4700
|
+
"visibility": "secret",
|
|
4701
|
+
"deprecated": "Use `credentials` instead.",
|
|
4702
|
+
"type": "string"
|
|
4703
|
+
},
|
|
4704
|
+
"credential": {
|
|
4705
|
+
"description": "The credential to use for requests.\n\nIf no credential is specified anonymous access is used.",
|
|
4706
|
+
"deepVisibility": "secret",
|
|
4707
|
+
"deprecated": "Use `credentials` instead.",
|
|
4708
|
+
"type": "object",
|
|
4709
|
+
"properties": {
|
|
4710
|
+
"clientId": {
|
|
4711
|
+
"type": "string"
|
|
4712
|
+
},
|
|
4713
|
+
"clientSecret": {
|
|
4714
|
+
"type": "string"
|
|
4715
|
+
},
|
|
4716
|
+
"tenantId": {
|
|
4717
|
+
"type": "string"
|
|
4718
|
+
},
|
|
4719
|
+
"personalAccessToken": {
|
|
4720
|
+
"type": "string"
|
|
4721
|
+
}
|
|
4722
|
+
}
|
|
4723
|
+
},
|
|
4724
|
+
"credentials": {
|
|
4725
|
+
"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.",
|
|
4726
|
+
"deepVisibility": "secret",
|
|
4727
|
+
"type": "array",
|
|
4728
|
+
"items": {
|
|
4729
|
+
"type": "object",
|
|
4730
|
+
"properties": {
|
|
4731
|
+
"clientId": {
|
|
4732
|
+
"type": "string"
|
|
4733
|
+
},
|
|
4734
|
+
"clientSecret": {
|
|
4735
|
+
"type": "string"
|
|
4736
|
+
},
|
|
4737
|
+
"tenantId": {
|
|
4738
|
+
"type": "string"
|
|
4739
|
+
},
|
|
4740
|
+
"personalAccessToken": {
|
|
4741
|
+
"type": "string"
|
|
4742
|
+
}
|
|
4743
|
+
}
|
|
4744
|
+
}
|
|
4745
|
+
}
|
|
4746
|
+
},
|
|
4747
|
+
"required": [
|
|
4748
|
+
"host"
|
|
4749
|
+
]
|
|
4750
|
+
}
|
|
4751
|
+
},
|
|
4752
|
+
"bitbucket": {
|
|
4753
|
+
"description": "Integration configuration for Bitbucket",
|
|
4754
|
+
"deprecated": "replaced by bitbucketCloud and bitbucketServer",
|
|
4755
|
+
"type": "array",
|
|
4756
|
+
"items": {
|
|
4757
|
+
"type": "object",
|
|
4758
|
+
"properties": {
|
|
4759
|
+
"host": {
|
|
4760
|
+
"description": "The hostname of the given Bitbucket instance",
|
|
4761
|
+
"visibility": "frontend",
|
|
4762
|
+
"type": "string"
|
|
4763
|
+
},
|
|
4764
|
+
"token": {
|
|
4765
|
+
"description": "Token used to authenticate requests.",
|
|
4766
|
+
"visibility": "secret",
|
|
4767
|
+
"type": "string"
|
|
4768
|
+
},
|
|
4769
|
+
"apiBaseUrl": {
|
|
4770
|
+
"description": "The base url for the Bitbucket API, for example https://api.bitbucket.org/2.0",
|
|
4771
|
+
"visibility": "frontend",
|
|
4772
|
+
"type": "string"
|
|
4773
|
+
},
|
|
4774
|
+
"username": {
|
|
4775
|
+
"description": "The username to use for authenticated requests.",
|
|
4776
|
+
"visibility": "secret",
|
|
4777
|
+
"type": "string"
|
|
4778
|
+
},
|
|
4779
|
+
"appPassword": {
|
|
4780
|
+
"description": "Bitbucket app password used to authenticate requests.",
|
|
4781
|
+
"visibility": "secret",
|
|
4782
|
+
"type": "string"
|
|
4783
|
+
}
|
|
4784
|
+
},
|
|
4785
|
+
"required": [
|
|
4786
|
+
"host"
|
|
4787
|
+
]
|
|
4788
|
+
}
|
|
4789
|
+
},
|
|
4790
|
+
"bitbucketCloud": {
|
|
4791
|
+
"description": "Integration configuration for Bitbucket Cloud",
|
|
4792
|
+
"type": "array",
|
|
4793
|
+
"items": {
|
|
4794
|
+
"type": "object",
|
|
4795
|
+
"properties": {
|
|
4796
|
+
"username": {
|
|
4797
|
+
"description": "The username to use for authenticated requests.",
|
|
4798
|
+
"visibility": "secret",
|
|
4799
|
+
"type": "string"
|
|
4800
|
+
},
|
|
4801
|
+
"appPassword": {
|
|
4802
|
+
"description": "Bitbucket Cloud app password used to authenticate requests.",
|
|
4803
|
+
"visibility": "secret",
|
|
4804
|
+
"type": "string"
|
|
4805
|
+
}
|
|
4806
|
+
},
|
|
4807
|
+
"required": [
|
|
4808
|
+
"appPassword",
|
|
4809
|
+
"username"
|
|
4810
|
+
]
|
|
4811
|
+
}
|
|
4812
|
+
},
|
|
4813
|
+
"bitbucketServer": {
|
|
4814
|
+
"description": "Integration configuration for Bitbucket Server",
|
|
4815
|
+
"type": "array",
|
|
4816
|
+
"items": {
|
|
4817
|
+
"type": "object",
|
|
4818
|
+
"properties": {
|
|
4819
|
+
"host": {
|
|
4820
|
+
"description": "The hostname of the given Bitbucket Server instance",
|
|
4821
|
+
"visibility": "frontend",
|
|
4822
|
+
"type": "string"
|
|
4823
|
+
},
|
|
4824
|
+
"token": {
|
|
4825
|
+
"description": "Token used to authenticate requests.",
|
|
4826
|
+
"visibility": "secret",
|
|
4827
|
+
"type": "string"
|
|
4828
|
+
},
|
|
4829
|
+
"username": {
|
|
4830
|
+
"description": "Username used to authenticate requests with Basic Auth.",
|
|
4831
|
+
"visibility": "secret",
|
|
4832
|
+
"type": "string"
|
|
4833
|
+
},
|
|
4834
|
+
"password": {
|
|
4835
|
+
"description": "Password (or token as password) used to authenticate requests with Basic Auth.",
|
|
4836
|
+
"visibility": "secret",
|
|
4837
|
+
"type": "string"
|
|
4838
|
+
},
|
|
4839
|
+
"apiBaseUrl": {
|
|
4840
|
+
"description": "The base url for the Bitbucket Server API, for example https://<host>/rest/api/1.0",
|
|
4841
|
+
"visibility": "frontend",
|
|
4842
|
+
"type": "string"
|
|
4843
|
+
}
|
|
4844
|
+
},
|
|
4845
|
+
"required": [
|
|
4846
|
+
"host"
|
|
4847
|
+
]
|
|
4848
|
+
}
|
|
4849
|
+
},
|
|
4850
|
+
"gerrit": {
|
|
4851
|
+
"description": "Integration configuration for Gerrit",
|
|
4852
|
+
"type": "array",
|
|
4853
|
+
"items": {
|
|
4854
|
+
"type": "object",
|
|
4855
|
+
"properties": {
|
|
4856
|
+
"host": {
|
|
4857
|
+
"description": "The hostname of the given Gerrit instance",
|
|
4858
|
+
"visibility": "frontend",
|
|
4859
|
+
"type": "string"
|
|
4860
|
+
},
|
|
4861
|
+
"baseUrl": {
|
|
4862
|
+
"description": "The base url for the Gerrit instance.",
|
|
4863
|
+
"visibility": "frontend",
|
|
4864
|
+
"type": "string"
|
|
4865
|
+
},
|
|
4866
|
+
"gitilesBaseUrl": {
|
|
4867
|
+
"description": "The gitiles base url.",
|
|
4868
|
+
"visibility": "frontend",
|
|
4869
|
+
"type": "string"
|
|
4870
|
+
},
|
|
4871
|
+
"cloneUrl": {
|
|
4872
|
+
"description": "The base url for cloning repos.",
|
|
4873
|
+
"visibility": "frontend",
|
|
4874
|
+
"type": "string"
|
|
4875
|
+
},
|
|
4876
|
+
"username": {
|
|
4877
|
+
"description": "The username to use for authenticated requests.",
|
|
4878
|
+
"visibility": "secret",
|
|
4879
|
+
"type": "string"
|
|
4880
|
+
},
|
|
4881
|
+
"password": {
|
|
4882
|
+
"description": "Gerrit password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
4883
|
+
"visibility": "secret",
|
|
4884
|
+
"type": "string"
|
|
4885
|
+
}
|
|
4886
|
+
},
|
|
4887
|
+
"required": [
|
|
4888
|
+
"gitilesBaseUrl",
|
|
4889
|
+
"host"
|
|
4890
|
+
]
|
|
4891
|
+
}
|
|
4892
|
+
},
|
|
4893
|
+
"github": {
|
|
4894
|
+
"description": "Integration configuration for GitHub",
|
|
4895
|
+
"type": "array",
|
|
4896
|
+
"items": {
|
|
4897
|
+
"type": "object",
|
|
4898
|
+
"properties": {
|
|
4899
|
+
"host": {
|
|
4900
|
+
"description": "The hostname of the given GitHub instance",
|
|
4901
|
+
"visibility": "frontend",
|
|
4902
|
+
"type": "string"
|
|
4903
|
+
},
|
|
4904
|
+
"token": {
|
|
4905
|
+
"description": "Token used to authenticate requests.",
|
|
4906
|
+
"visibility": "secret",
|
|
4907
|
+
"type": "string"
|
|
4908
|
+
},
|
|
4909
|
+
"apiBaseUrl": {
|
|
4910
|
+
"description": "The base url for the GitHub API, for example https://api.github.com",
|
|
4911
|
+
"visibility": "frontend",
|
|
4912
|
+
"type": "string"
|
|
4913
|
+
},
|
|
4914
|
+
"rawBaseUrl": {
|
|
4915
|
+
"description": "The base url for GitHub raw resources, for example https://raw.githubusercontent.com",
|
|
4916
|
+
"visibility": "frontend",
|
|
4917
|
+
"type": "string"
|
|
4918
|
+
},
|
|
4919
|
+
"apps": {
|
|
4920
|
+
"description": "GitHub Apps configuration",
|
|
4921
|
+
"type": "array",
|
|
4922
|
+
"items": {
|
|
4923
|
+
"type": "object",
|
|
4924
|
+
"properties": {
|
|
4925
|
+
"appId": {
|
|
4926
|
+
"description": "The numeric GitHub App ID, string for environment variables",
|
|
4927
|
+
"type": [
|
|
4928
|
+
"string",
|
|
4929
|
+
"number"
|
|
4930
|
+
]
|
|
4931
|
+
},
|
|
4932
|
+
"privateKey": {
|
|
4933
|
+
"description": "The private key to use for auth against the app",
|
|
4934
|
+
"visibility": "secret",
|
|
4935
|
+
"type": "string"
|
|
4936
|
+
},
|
|
4937
|
+
"webhookSecret": {
|
|
4938
|
+
"description": "The secret used for webhooks",
|
|
4939
|
+
"visibility": "secret",
|
|
4940
|
+
"type": "string"
|
|
4941
|
+
},
|
|
4942
|
+
"clientId": {
|
|
4943
|
+
"description": "The client ID to use",
|
|
4944
|
+
"type": "string"
|
|
4945
|
+
},
|
|
4946
|
+
"clientSecret": {
|
|
4947
|
+
"description": "The client secret to use",
|
|
4948
|
+
"visibility": "secret",
|
|
4949
|
+
"type": "string"
|
|
4950
|
+
},
|
|
4951
|
+
"allowedInstallationOwners": {
|
|
4952
|
+
"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",
|
|
4953
|
+
"type": "array",
|
|
4954
|
+
"items": {
|
|
4955
|
+
"type": "string"
|
|
4956
|
+
}
|
|
4957
|
+
}
|
|
4958
|
+
},
|
|
4959
|
+
"required": [
|
|
4960
|
+
"appId",
|
|
4961
|
+
"clientId",
|
|
4962
|
+
"clientSecret",
|
|
4963
|
+
"privateKey",
|
|
4964
|
+
"webhookSecret"
|
|
4965
|
+
]
|
|
4966
|
+
}
|
|
4967
|
+
}
|
|
4968
|
+
},
|
|
4969
|
+
"required": [
|
|
4970
|
+
"host"
|
|
4971
|
+
]
|
|
4972
|
+
}
|
|
4973
|
+
},
|
|
4974
|
+
"gitlab": {
|
|
4975
|
+
"description": "Integration configuration for GitLab",
|
|
4976
|
+
"type": "array",
|
|
4977
|
+
"items": {
|
|
4978
|
+
"type": "object",
|
|
4979
|
+
"properties": {
|
|
4980
|
+
"host": {
|
|
4981
|
+
"description": "The host of the target that this matches on, e.g. \"gitlab.com\".",
|
|
4982
|
+
"visibility": "frontend",
|
|
4983
|
+
"type": "string"
|
|
4984
|
+
},
|
|
4985
|
+
"apiBaseUrl": {
|
|
4986
|
+
"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.",
|
|
4987
|
+
"visibility": "frontend",
|
|
4988
|
+
"type": "string"
|
|
4989
|
+
},
|
|
4990
|
+
"token": {
|
|
4991
|
+
"description": "The authorization token to use for requests to this provider.\n\nIf no token is specified, anonymous access is used.",
|
|
4992
|
+
"visibility": "secret",
|
|
4993
|
+
"type": "string"
|
|
4994
|
+
},
|
|
4995
|
+
"baseUrl": {
|
|
4996
|
+
"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}.",
|
|
4997
|
+
"visibility": "frontend",
|
|
4998
|
+
"type": "string"
|
|
4999
|
+
}
|
|
5000
|
+
},
|
|
5001
|
+
"required": [
|
|
5002
|
+
"host"
|
|
5003
|
+
]
|
|
5004
|
+
}
|
|
5005
|
+
},
|
|
5006
|
+
"googleGcs": {
|
|
5007
|
+
"description": "Integration configuration for Google Cloud Storage",
|
|
5008
|
+
"type": "object",
|
|
5009
|
+
"properties": {
|
|
5010
|
+
"clientEmail": {
|
|
5011
|
+
"description": "Service account email used to authenticate requests.",
|
|
5012
|
+
"type": "string"
|
|
5013
|
+
},
|
|
5014
|
+
"privateKey": {
|
|
5015
|
+
"description": "Service account private key used to authenticate requests.",
|
|
5016
|
+
"visibility": "secret",
|
|
5017
|
+
"type": "string"
|
|
5018
|
+
}
|
|
5019
|
+
}
|
|
5020
|
+
},
|
|
5021
|
+
"awsS3": {
|
|
5022
|
+
"description": "Integration configuration for AWS S3 Service",
|
|
5023
|
+
"type": "array",
|
|
5024
|
+
"items": {
|
|
5025
|
+
"type": "object",
|
|
5026
|
+
"properties": {
|
|
5027
|
+
"endpoint": {
|
|
5028
|
+
"description": "AWS Endpoint.\nThe endpoint URI to send requests to. The default endpoint is built from the configured region.",
|
|
5029
|
+
"visibility": "frontend",
|
|
5030
|
+
"type": "string"
|
|
5031
|
+
},
|
|
5032
|
+
"s3ForcePathStyle": {
|
|
5033
|
+
"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.",
|
|
5034
|
+
"visibility": "frontend",
|
|
5035
|
+
"type": "boolean"
|
|
5036
|
+
},
|
|
5037
|
+
"accessKeyId": {
|
|
5038
|
+
"description": "Account access key used to authenticate requests.",
|
|
5039
|
+
"type": "string"
|
|
5040
|
+
},
|
|
5041
|
+
"secretAccessKey": {
|
|
5042
|
+
"description": "Account secret key used to authenticate requests.",
|
|
5043
|
+
"visibility": "secret",
|
|
5044
|
+
"type": "string"
|
|
5045
|
+
},
|
|
5046
|
+
"roleArn": {
|
|
5047
|
+
"description": "ARN of the role to be assumed",
|
|
5048
|
+
"type": "string"
|
|
5049
|
+
},
|
|
5050
|
+
"externalId": {
|
|
5051
|
+
"description": "External ID to use when assuming role",
|
|
5052
|
+
"type": "string"
|
|
5053
|
+
}
|
|
5054
|
+
}
|
|
5055
|
+
}
|
|
5056
|
+
},
|
|
5057
|
+
"gitea": {
|
|
5058
|
+
"description": "Integration configuration for Gitea",
|
|
5059
|
+
"type": "array",
|
|
5060
|
+
"items": {
|
|
5061
|
+
"type": "object",
|
|
5062
|
+
"properties": {
|
|
5063
|
+
"host": {
|
|
5064
|
+
"description": "The hostname of the given Gitea instance",
|
|
5065
|
+
"visibility": "frontend",
|
|
5066
|
+
"type": "string"
|
|
5067
|
+
},
|
|
5068
|
+
"baseUrl": {
|
|
5069
|
+
"description": "The base url for the Gitea instance.",
|
|
5070
|
+
"visibility": "frontend",
|
|
5071
|
+
"type": "string"
|
|
5072
|
+
},
|
|
5073
|
+
"username": {
|
|
5074
|
+
"description": "The username to use for authenticated requests.",
|
|
5075
|
+
"visibility": "secret",
|
|
5076
|
+
"type": "string"
|
|
5077
|
+
},
|
|
5078
|
+
"password": {
|
|
5079
|
+
"description": "Gitea password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
5080
|
+
"visibility": "secret",
|
|
5081
|
+
"type": "string"
|
|
5082
|
+
}
|
|
5083
|
+
},
|
|
5084
|
+
"required": [
|
|
5085
|
+
"host"
|
|
5086
|
+
]
|
|
5087
|
+
}
|
|
5088
|
+
},
|
|
5089
|
+
"harness": {
|
|
5090
|
+
"description": "Integration configuration for Harness Code",
|
|
5091
|
+
"type": "array",
|
|
5092
|
+
"items": {
|
|
5093
|
+
"type": "object",
|
|
5094
|
+
"properties": {
|
|
5095
|
+
"host": {
|
|
5096
|
+
"description": "The hostname of the given Harness Code instance",
|
|
5097
|
+
"visibility": "frontend",
|
|
5098
|
+
"type": "string"
|
|
5099
|
+
},
|
|
5100
|
+
"apiKey": {
|
|
5101
|
+
"description": "The apikey to use for authenticated requests.",
|
|
5102
|
+
"visibility": "secret",
|
|
5103
|
+
"type": "string"
|
|
5104
|
+
},
|
|
5105
|
+
"token": {
|
|
5106
|
+
"description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
|
|
5107
|
+
"visibility": "secret",
|
|
5108
|
+
"type": "string"
|
|
5109
|
+
}
|
|
5110
|
+
},
|
|
5111
|
+
"required": [
|
|
5112
|
+
"host"
|
|
5113
|
+
]
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
}
|
|
5117
|
+
}
|
|
5118
|
+
},
|
|
5119
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
5120
|
+
}
|
|
5121
|
+
},
|
|
5122
|
+
{
|
|
5123
|
+
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/frontend-app-api/config.d.ts",
|
|
5124
|
+
"value": {
|
|
5125
|
+
"type": "object",
|
|
5126
|
+
"properties": {
|
|
5127
|
+
"app": {
|
|
5128
|
+
"type": "object",
|
|
5129
|
+
"properties": {
|
|
5130
|
+
"experimental": {
|
|
5131
|
+
"type": "object",
|
|
5132
|
+
"properties": {
|
|
5133
|
+
"packages": {
|
|
5134
|
+
"visibility": "frontend",
|
|
5135
|
+
"deepVisibility": "frontend",
|
|
5136
|
+
"anyOf": [
|
|
5137
|
+
{
|
|
5138
|
+
"type": "object",
|
|
5139
|
+
"properties": {
|
|
5140
|
+
"include": {
|
|
5141
|
+
"type": "array",
|
|
5142
|
+
"items": {
|
|
5143
|
+
"type": "string"
|
|
5144
|
+
}
|
|
5145
|
+
},
|
|
5146
|
+
"exclude": {
|
|
5147
|
+
"type": "array",
|
|
5148
|
+
"items": {
|
|
5149
|
+
"type": "string"
|
|
5150
|
+
}
|
|
5151
|
+
}
|
|
5152
|
+
}
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"const": "all",
|
|
5156
|
+
"type": "string"
|
|
5157
|
+
}
|
|
5158
|
+
]
|
|
5159
|
+
}
|
|
5160
|
+
}
|
|
5161
|
+
},
|
|
5162
|
+
"routes": {
|
|
5163
|
+
"type": "object",
|
|
5164
|
+
"properties": {
|
|
5165
|
+
"bindings": {
|
|
5166
|
+
"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.",
|
|
5167
|
+
"deepVisibility": "frontend",
|
|
5168
|
+
"type": "object",
|
|
5169
|
+
"additionalProperties": {
|
|
5170
|
+
"anyOf": [
|
|
5171
|
+
{
|
|
5172
|
+
"const": false,
|
|
5173
|
+
"type": "boolean"
|
|
5174
|
+
},
|
|
5175
|
+
{
|
|
5176
|
+
"type": "string"
|
|
5177
|
+
}
|
|
5178
|
+
]
|
|
5179
|
+
}
|
|
5180
|
+
}
|
|
5181
|
+
}
|
|
5182
|
+
},
|
|
5183
|
+
"extensions": {
|
|
5184
|
+
"deepVisibility": "frontend",
|
|
5185
|
+
"type": "array",
|
|
5186
|
+
"items": {
|
|
5187
|
+
"anyOf": [
|
|
5188
|
+
{
|
|
5189
|
+
"type": "object",
|
|
5190
|
+
"additionalProperties": {
|
|
5191
|
+
"anyOf": [
|
|
5192
|
+
{
|
|
5193
|
+
"type": "object",
|
|
5194
|
+
"properties": {
|
|
5195
|
+
"attachTo": {
|
|
5196
|
+
"type": "object",
|
|
5197
|
+
"properties": {
|
|
5198
|
+
"id": {
|
|
5199
|
+
"type": "string"
|
|
5200
|
+
},
|
|
5201
|
+
"input": {
|
|
5202
|
+
"type": "string"
|
|
5203
|
+
}
|
|
5204
|
+
},
|
|
5205
|
+
"required": [
|
|
5206
|
+
"id",
|
|
5207
|
+
"input"
|
|
5208
|
+
]
|
|
5209
|
+
},
|
|
5210
|
+
"disabled": {
|
|
5211
|
+
"type": "boolean"
|
|
5212
|
+
},
|
|
5213
|
+
"config": {}
|
|
5214
|
+
}
|
|
5215
|
+
},
|
|
5216
|
+
{
|
|
5217
|
+
"type": "boolean"
|
|
5218
|
+
}
|
|
5219
|
+
]
|
|
5220
|
+
}
|
|
5221
|
+
},
|
|
5222
|
+
{
|
|
5223
|
+
"type": "string"
|
|
5224
|
+
}
|
|
5225
|
+
]
|
|
5226
|
+
}
|
|
5227
|
+
}
|
|
5228
|
+
}
|
|
5229
|
+
}
|
|
5230
|
+
},
|
|
5231
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
5232
|
+
}
|
|
4388
5233
|
}
|
|
4389
5234
|
],
|
|
4390
5235
|
"backstageConfigSchemaVersion": 1
|