@techdocs/cli 1.8.20-next.0 → 1.8.20-next.1
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 +445 -45
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/{2177.9af93c36.chunk.js → 2177.e1184707.chunk.js} +2 -2
- package/dist/embedded-app/static/{2177.9af93c36.chunk.js.map → 2177.e1184707.chunk.js.map} +1 -1
- package/dist/embedded-app/static/main.abfbd79f.js +533 -0
- package/dist/embedded-app/static/main.abfbd79f.js.map +1 -0
- package/dist/embedded-app/static/module-remix-run.e486ee73.js +14 -0
- package/dist/embedded-app/static/module-remix-run.e486ee73.js.map +1 -0
- package/dist/embedded-app/static/{runtime.500b1c12.js → runtime.abfbd79f.js} +2 -2
- package/dist/embedded-app/static/{runtime.500b1c12.js.map → runtime.abfbd79f.js.map} +1 -1
- package/dist/embedded-app/static/vendor.abfbd79f.js +169 -0
- package/dist/embedded-app/static/vendor.abfbd79f.js.map +1 -0
- package/dist/index.cjs.js +1 -1
- package/package.json +7 -7
- package/dist/embedded-app/static/main.500b1c12.js +0 -533
- package/dist/embedded-app/static/main.500b1c12.js.map +0 -1
- package/dist/embedded-app/static/module-react-router-dom.bf7ca63f.js +0 -23
- package/dist/embedded-app/static/module-react-router-dom.bf7ca63f.js.map +0 -1
- package/dist/embedded-app/static/module-react-router.fae32787.js +0 -23
- package/dist/embedded-app/static/module-react-router.fae32787.js.map +0 -1
- package/dist/embedded-app/static/vendor.500b1c12.js +0 -151
- package/dist/embedded-app/static/vendor.500b1c12.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
+
## 1.8.20-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-defaults@0.5.1-next.1
|
|
9
|
+
- @backstage/catalog-model@1.7.0
|
|
10
|
+
- @backstage/cli-common@0.1.14
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/plugin-techdocs-node@1.12.12-next.1
|
|
13
|
+
|
|
3
14
|
## 1.8.20-next.0
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -1631,6 +1631,451 @@
|
|
|
1631
1631
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1632
1632
|
}
|
|
1633
1633
|
},
|
|
1634
|
+
{
|
|
1635
|
+
"path": "../../node_modules/@backstage/backend-common/node_modules/@backstage/integration/config.d.ts",
|
|
1636
|
+
"value": {
|
|
1637
|
+
"type": "object",
|
|
1638
|
+
"properties": {
|
|
1639
|
+
"integrations": {
|
|
1640
|
+
"description": "Configuration for integrations towards various external repository provider systems",
|
|
1641
|
+
"visibility": "frontend",
|
|
1642
|
+
"type": "object",
|
|
1643
|
+
"properties": {
|
|
1644
|
+
"azure": {
|
|
1645
|
+
"description": "Integration configuration for Azure",
|
|
1646
|
+
"type": "array",
|
|
1647
|
+
"items": {
|
|
1648
|
+
"type": "object",
|
|
1649
|
+
"properties": {
|
|
1650
|
+
"host": {
|
|
1651
|
+
"description": "The hostname of the given Azure instance",
|
|
1652
|
+
"visibility": "frontend",
|
|
1653
|
+
"type": "string"
|
|
1654
|
+
},
|
|
1655
|
+
"token": {
|
|
1656
|
+
"description": "Token used to authenticate requests.",
|
|
1657
|
+
"visibility": "secret",
|
|
1658
|
+
"deprecated": "Use `credentials` instead.",
|
|
1659
|
+
"type": "string"
|
|
1660
|
+
},
|
|
1661
|
+
"credential": {
|
|
1662
|
+
"description": "The credential to use for requests.\n\nIf no credential is specified anonymous access is used.",
|
|
1663
|
+
"deepVisibility": "secret",
|
|
1664
|
+
"deprecated": "Use `credentials` instead.",
|
|
1665
|
+
"type": "object",
|
|
1666
|
+
"properties": {
|
|
1667
|
+
"clientId": {
|
|
1668
|
+
"type": "string"
|
|
1669
|
+
},
|
|
1670
|
+
"clientSecret": {
|
|
1671
|
+
"type": "string"
|
|
1672
|
+
},
|
|
1673
|
+
"tenantId": {
|
|
1674
|
+
"type": "string"
|
|
1675
|
+
},
|
|
1676
|
+
"personalAccessToken": {
|
|
1677
|
+
"type": "string"
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
},
|
|
1681
|
+
"credentials": {
|
|
1682
|
+
"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.",
|
|
1683
|
+
"deepVisibility": "secret",
|
|
1684
|
+
"type": "array",
|
|
1685
|
+
"items": {
|
|
1686
|
+
"type": "object",
|
|
1687
|
+
"properties": {
|
|
1688
|
+
"clientId": {
|
|
1689
|
+
"type": "string"
|
|
1690
|
+
},
|
|
1691
|
+
"clientSecret": {
|
|
1692
|
+
"type": "string"
|
|
1693
|
+
},
|
|
1694
|
+
"tenantId": {
|
|
1695
|
+
"type": "string"
|
|
1696
|
+
},
|
|
1697
|
+
"personalAccessToken": {
|
|
1698
|
+
"type": "string"
|
|
1699
|
+
}
|
|
1700
|
+
}
|
|
1701
|
+
}
|
|
1702
|
+
}
|
|
1703
|
+
},
|
|
1704
|
+
"required": [
|
|
1705
|
+
"host"
|
|
1706
|
+
]
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
"bitbucket": {
|
|
1710
|
+
"description": "Integration configuration for Bitbucket",
|
|
1711
|
+
"deprecated": "replaced by bitbucketCloud and bitbucketServer",
|
|
1712
|
+
"type": "array",
|
|
1713
|
+
"items": {
|
|
1714
|
+
"type": "object",
|
|
1715
|
+
"properties": {
|
|
1716
|
+
"host": {
|
|
1717
|
+
"description": "The hostname of the given Bitbucket instance",
|
|
1718
|
+
"visibility": "frontend",
|
|
1719
|
+
"type": "string"
|
|
1720
|
+
},
|
|
1721
|
+
"token": {
|
|
1722
|
+
"description": "Token used to authenticate requests.",
|
|
1723
|
+
"visibility": "secret",
|
|
1724
|
+
"type": "string"
|
|
1725
|
+
},
|
|
1726
|
+
"apiBaseUrl": {
|
|
1727
|
+
"description": "The base url for the Bitbucket API, for example https://api.bitbucket.org/2.0",
|
|
1728
|
+
"visibility": "frontend",
|
|
1729
|
+
"type": "string"
|
|
1730
|
+
},
|
|
1731
|
+
"username": {
|
|
1732
|
+
"description": "The username to use for authenticated requests.",
|
|
1733
|
+
"visibility": "secret",
|
|
1734
|
+
"type": "string"
|
|
1735
|
+
},
|
|
1736
|
+
"appPassword": {
|
|
1737
|
+
"description": "Bitbucket app password used to authenticate requests.",
|
|
1738
|
+
"visibility": "secret",
|
|
1739
|
+
"type": "string"
|
|
1740
|
+
}
|
|
1741
|
+
},
|
|
1742
|
+
"required": [
|
|
1743
|
+
"host"
|
|
1744
|
+
]
|
|
1745
|
+
}
|
|
1746
|
+
},
|
|
1747
|
+
"bitbucketCloud": {
|
|
1748
|
+
"description": "Integration configuration for Bitbucket Cloud",
|
|
1749
|
+
"type": "array",
|
|
1750
|
+
"items": {
|
|
1751
|
+
"type": "object",
|
|
1752
|
+
"properties": {
|
|
1753
|
+
"username": {
|
|
1754
|
+
"description": "The username to use for authenticated requests.",
|
|
1755
|
+
"visibility": "secret",
|
|
1756
|
+
"type": "string"
|
|
1757
|
+
},
|
|
1758
|
+
"appPassword": {
|
|
1759
|
+
"description": "Bitbucket Cloud app password used to authenticate requests.",
|
|
1760
|
+
"visibility": "secret",
|
|
1761
|
+
"type": "string"
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
"required": [
|
|
1765
|
+
"appPassword",
|
|
1766
|
+
"username"
|
|
1767
|
+
]
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"bitbucketServer": {
|
|
1771
|
+
"description": "Integration configuration for Bitbucket Server",
|
|
1772
|
+
"type": "array",
|
|
1773
|
+
"items": {
|
|
1774
|
+
"type": "object",
|
|
1775
|
+
"properties": {
|
|
1776
|
+
"host": {
|
|
1777
|
+
"description": "The hostname of the given Bitbucket Server instance",
|
|
1778
|
+
"visibility": "frontend",
|
|
1779
|
+
"type": "string"
|
|
1780
|
+
},
|
|
1781
|
+
"token": {
|
|
1782
|
+
"description": "Token used to authenticate requests.",
|
|
1783
|
+
"visibility": "secret",
|
|
1784
|
+
"type": "string"
|
|
1785
|
+
},
|
|
1786
|
+
"username": {
|
|
1787
|
+
"description": "Username used to authenticate requests with Basic Auth.",
|
|
1788
|
+
"visibility": "secret",
|
|
1789
|
+
"type": "string"
|
|
1790
|
+
},
|
|
1791
|
+
"password": {
|
|
1792
|
+
"description": "Password (or token as password) used to authenticate requests with Basic Auth.",
|
|
1793
|
+
"visibility": "secret",
|
|
1794
|
+
"type": "string"
|
|
1795
|
+
},
|
|
1796
|
+
"apiBaseUrl": {
|
|
1797
|
+
"description": "The base url for the Bitbucket Server API, for example https://<host>/rest/api/1.0",
|
|
1798
|
+
"visibility": "frontend",
|
|
1799
|
+
"type": "string"
|
|
1800
|
+
}
|
|
1801
|
+
},
|
|
1802
|
+
"required": [
|
|
1803
|
+
"host"
|
|
1804
|
+
]
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
"gerrit": {
|
|
1808
|
+
"description": "Integration configuration for Gerrit",
|
|
1809
|
+
"type": "array",
|
|
1810
|
+
"items": {
|
|
1811
|
+
"type": "object",
|
|
1812
|
+
"properties": {
|
|
1813
|
+
"host": {
|
|
1814
|
+
"description": "The hostname of the given Gerrit instance",
|
|
1815
|
+
"visibility": "frontend",
|
|
1816
|
+
"type": "string"
|
|
1817
|
+
},
|
|
1818
|
+
"baseUrl": {
|
|
1819
|
+
"description": "The base url for the Gerrit instance.",
|
|
1820
|
+
"visibility": "frontend",
|
|
1821
|
+
"type": "string"
|
|
1822
|
+
},
|
|
1823
|
+
"gitilesBaseUrl": {
|
|
1824
|
+
"description": "The gitiles base url.",
|
|
1825
|
+
"visibility": "frontend",
|
|
1826
|
+
"type": "string"
|
|
1827
|
+
},
|
|
1828
|
+
"cloneUrl": {
|
|
1829
|
+
"description": "The base url for cloning repos.",
|
|
1830
|
+
"visibility": "frontend",
|
|
1831
|
+
"type": "string"
|
|
1832
|
+
},
|
|
1833
|
+
"username": {
|
|
1834
|
+
"description": "The username to use for authenticated requests.",
|
|
1835
|
+
"visibility": "secret",
|
|
1836
|
+
"type": "string"
|
|
1837
|
+
},
|
|
1838
|
+
"password": {
|
|
1839
|
+
"description": "Gerrit password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
1840
|
+
"visibility": "secret",
|
|
1841
|
+
"type": "string"
|
|
1842
|
+
}
|
|
1843
|
+
},
|
|
1844
|
+
"required": [
|
|
1845
|
+
"gitilesBaseUrl",
|
|
1846
|
+
"host"
|
|
1847
|
+
]
|
|
1848
|
+
}
|
|
1849
|
+
},
|
|
1850
|
+
"github": {
|
|
1851
|
+
"description": "Integration configuration for GitHub",
|
|
1852
|
+
"type": "array",
|
|
1853
|
+
"items": {
|
|
1854
|
+
"type": "object",
|
|
1855
|
+
"properties": {
|
|
1856
|
+
"host": {
|
|
1857
|
+
"description": "The hostname of the given GitHub instance",
|
|
1858
|
+
"visibility": "frontend",
|
|
1859
|
+
"type": "string"
|
|
1860
|
+
},
|
|
1861
|
+
"token": {
|
|
1862
|
+
"description": "Token used to authenticate requests.",
|
|
1863
|
+
"visibility": "secret",
|
|
1864
|
+
"type": "string"
|
|
1865
|
+
},
|
|
1866
|
+
"apiBaseUrl": {
|
|
1867
|
+
"description": "The base url for the GitHub API, for example https://api.github.com",
|
|
1868
|
+
"visibility": "frontend",
|
|
1869
|
+
"type": "string"
|
|
1870
|
+
},
|
|
1871
|
+
"rawBaseUrl": {
|
|
1872
|
+
"description": "The base url for GitHub raw resources, for example https://raw.githubusercontent.com",
|
|
1873
|
+
"visibility": "frontend",
|
|
1874
|
+
"type": "string"
|
|
1875
|
+
},
|
|
1876
|
+
"apps": {
|
|
1877
|
+
"description": "GitHub Apps configuration",
|
|
1878
|
+
"type": "array",
|
|
1879
|
+
"items": {
|
|
1880
|
+
"type": "object",
|
|
1881
|
+
"properties": {
|
|
1882
|
+
"appId": {
|
|
1883
|
+
"description": "The numeric GitHub App ID, string for environment variables",
|
|
1884
|
+
"type": [
|
|
1885
|
+
"string",
|
|
1886
|
+
"number"
|
|
1887
|
+
]
|
|
1888
|
+
},
|
|
1889
|
+
"privateKey": {
|
|
1890
|
+
"description": "The private key to use for auth against the app",
|
|
1891
|
+
"visibility": "secret",
|
|
1892
|
+
"type": "string"
|
|
1893
|
+
},
|
|
1894
|
+
"webhookSecret": {
|
|
1895
|
+
"description": "The secret used for webhooks",
|
|
1896
|
+
"visibility": "secret",
|
|
1897
|
+
"type": "string"
|
|
1898
|
+
},
|
|
1899
|
+
"clientId": {
|
|
1900
|
+
"description": "The client ID to use",
|
|
1901
|
+
"type": "string"
|
|
1902
|
+
},
|
|
1903
|
+
"clientSecret": {
|
|
1904
|
+
"description": "The client secret to use",
|
|
1905
|
+
"visibility": "secret",
|
|
1906
|
+
"type": "string"
|
|
1907
|
+
},
|
|
1908
|
+
"allowedInstallationOwners": {
|
|
1909
|
+
"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",
|
|
1910
|
+
"type": "array",
|
|
1911
|
+
"items": {
|
|
1912
|
+
"type": "string"
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1915
|
+
},
|
|
1916
|
+
"required": [
|
|
1917
|
+
"appId",
|
|
1918
|
+
"clientId",
|
|
1919
|
+
"clientSecret",
|
|
1920
|
+
"privateKey",
|
|
1921
|
+
"webhookSecret"
|
|
1922
|
+
]
|
|
1923
|
+
}
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
1926
|
+
"required": [
|
|
1927
|
+
"host"
|
|
1928
|
+
]
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1931
|
+
"gitlab": {
|
|
1932
|
+
"description": "Integration configuration for GitLab",
|
|
1933
|
+
"type": "array",
|
|
1934
|
+
"items": {
|
|
1935
|
+
"type": "object",
|
|
1936
|
+
"properties": {
|
|
1937
|
+
"host": {
|
|
1938
|
+
"description": "The host of the target that this matches on, e.g. \"gitlab.com\".",
|
|
1939
|
+
"visibility": "frontend",
|
|
1940
|
+
"type": "string"
|
|
1941
|
+
},
|
|
1942
|
+
"apiBaseUrl": {
|
|
1943
|
+
"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.",
|
|
1944
|
+
"visibility": "frontend",
|
|
1945
|
+
"type": "string"
|
|
1946
|
+
},
|
|
1947
|
+
"token": {
|
|
1948
|
+
"description": "The authorization token to use for requests to this provider.\n\nIf no token is specified, anonymous access is used.",
|
|
1949
|
+
"visibility": "secret",
|
|
1950
|
+
"type": "string"
|
|
1951
|
+
},
|
|
1952
|
+
"baseUrl": {
|
|
1953
|
+
"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}.",
|
|
1954
|
+
"visibility": "frontend",
|
|
1955
|
+
"type": "string"
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"required": [
|
|
1959
|
+
"host"
|
|
1960
|
+
]
|
|
1961
|
+
}
|
|
1962
|
+
},
|
|
1963
|
+
"googleGcs": {
|
|
1964
|
+
"description": "Integration configuration for Google Cloud Storage",
|
|
1965
|
+
"type": "object",
|
|
1966
|
+
"properties": {
|
|
1967
|
+
"clientEmail": {
|
|
1968
|
+
"description": "Service account email used to authenticate requests.",
|
|
1969
|
+
"type": "string"
|
|
1970
|
+
},
|
|
1971
|
+
"privateKey": {
|
|
1972
|
+
"description": "Service account private key used to authenticate requests.",
|
|
1973
|
+
"visibility": "secret",
|
|
1974
|
+
"type": "string"
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
},
|
|
1978
|
+
"awsS3": {
|
|
1979
|
+
"description": "Integration configuration for AWS S3 Service",
|
|
1980
|
+
"type": "array",
|
|
1981
|
+
"items": {
|
|
1982
|
+
"type": "object",
|
|
1983
|
+
"properties": {
|
|
1984
|
+
"endpoint": {
|
|
1985
|
+
"description": "AWS Endpoint.\nThe endpoint URI to send requests to. The default endpoint is built from the configured region.",
|
|
1986
|
+
"visibility": "frontend",
|
|
1987
|
+
"type": "string"
|
|
1988
|
+
},
|
|
1989
|
+
"s3ForcePathStyle": {
|
|
1990
|
+
"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.",
|
|
1991
|
+
"visibility": "frontend",
|
|
1992
|
+
"type": "boolean"
|
|
1993
|
+
},
|
|
1994
|
+
"accessKeyId": {
|
|
1995
|
+
"description": "Account access key used to authenticate requests.",
|
|
1996
|
+
"type": "string"
|
|
1997
|
+
},
|
|
1998
|
+
"secretAccessKey": {
|
|
1999
|
+
"description": "Account secret key used to authenticate requests.",
|
|
2000
|
+
"visibility": "secret",
|
|
2001
|
+
"type": "string"
|
|
2002
|
+
},
|
|
2003
|
+
"roleArn": {
|
|
2004
|
+
"description": "ARN of the role to be assumed",
|
|
2005
|
+
"type": "string"
|
|
2006
|
+
},
|
|
2007
|
+
"externalId": {
|
|
2008
|
+
"description": "External ID to use when assuming role",
|
|
2009
|
+
"type": "string"
|
|
2010
|
+
}
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"gitea": {
|
|
2015
|
+
"description": "Integration configuration for Gitea",
|
|
2016
|
+
"type": "array",
|
|
2017
|
+
"items": {
|
|
2018
|
+
"type": "object",
|
|
2019
|
+
"properties": {
|
|
2020
|
+
"host": {
|
|
2021
|
+
"description": "The hostname of the given Gitea instance",
|
|
2022
|
+
"visibility": "frontend",
|
|
2023
|
+
"type": "string"
|
|
2024
|
+
},
|
|
2025
|
+
"baseUrl": {
|
|
2026
|
+
"description": "The base url for the Gitea instance.",
|
|
2027
|
+
"visibility": "frontend",
|
|
2028
|
+
"type": "string"
|
|
2029
|
+
},
|
|
2030
|
+
"username": {
|
|
2031
|
+
"description": "The username to use for authenticated requests.",
|
|
2032
|
+
"visibility": "secret",
|
|
2033
|
+
"type": "string"
|
|
2034
|
+
},
|
|
2035
|
+
"password": {
|
|
2036
|
+
"description": "Gitea password used to authenticate requests. This can be either a password\nor a generated access token.",
|
|
2037
|
+
"visibility": "secret",
|
|
2038
|
+
"type": "string"
|
|
2039
|
+
}
|
|
2040
|
+
},
|
|
2041
|
+
"required": [
|
|
2042
|
+
"host"
|
|
2043
|
+
]
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"harness": {
|
|
2047
|
+
"description": "Integration configuration for Harness Code",
|
|
2048
|
+
"type": "array",
|
|
2049
|
+
"items": {
|
|
2050
|
+
"type": "object",
|
|
2051
|
+
"properties": {
|
|
2052
|
+
"host": {
|
|
2053
|
+
"description": "The hostname of the given Harness Code instance",
|
|
2054
|
+
"visibility": "frontend",
|
|
2055
|
+
"type": "string"
|
|
2056
|
+
},
|
|
2057
|
+
"apiKey": {
|
|
2058
|
+
"description": "The apikey to use for authenticated requests.",
|
|
2059
|
+
"visibility": "secret",
|
|
2060
|
+
"type": "string"
|
|
2061
|
+
},
|
|
2062
|
+
"token": {
|
|
2063
|
+
"description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
|
|
2064
|
+
"visibility": "secret",
|
|
2065
|
+
"type": "string"
|
|
2066
|
+
}
|
|
2067
|
+
},
|
|
2068
|
+
"required": [
|
|
2069
|
+
"host"
|
|
2070
|
+
]
|
|
2071
|
+
}
|
|
2072
|
+
}
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
},
|
|
2076
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2077
|
+
}
|
|
2078
|
+
},
|
|
1634
2079
|
{
|
|
1635
2080
|
"path": "../integration-aws-node/config.d.ts",
|
|
1636
2081
|
"value": {
|
|
@@ -2605,51 +3050,6 @@
|
|
|
2605
3050
|
],
|
|
2606
3051
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2607
3052
|
}
|
|
2608
|
-
},
|
|
2609
|
-
{
|
|
2610
|
-
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/plugin-catalog-react/node_modules/@backstage/core-components/config.d.ts",
|
|
2611
|
-
"value": {
|
|
2612
|
-
"type": "object",
|
|
2613
|
-
"properties": {
|
|
2614
|
-
"auth": {
|
|
2615
|
-
"type": "object",
|
|
2616
|
-
"properties": {
|
|
2617
|
-
"autologout": {
|
|
2618
|
-
"description": "Autologout feature configuration",
|
|
2619
|
-
"type": "object",
|
|
2620
|
-
"properties": {
|
|
2621
|
-
"enabled": {
|
|
2622
|
-
"description": "Enable or disable the autologout feature",
|
|
2623
|
-
"visibility": "frontend",
|
|
2624
|
-
"type": "boolean"
|
|
2625
|
-
},
|
|
2626
|
-
"idleTimeoutMinutes": {
|
|
2627
|
-
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
2628
|
-
"visibility": "frontend",
|
|
2629
|
-
"type": "number"
|
|
2630
|
-
},
|
|
2631
|
-
"promptBeforeIdleSeconds": {
|
|
2632
|
-
"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.",
|
|
2633
|
-
"visibility": "frontend",
|
|
2634
|
-
"type": "number"
|
|
2635
|
-
},
|
|
2636
|
-
"useWorkerTimers": {
|
|
2637
|
-
"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.",
|
|
2638
|
-
"visibility": "frontend",
|
|
2639
|
-
"type": "boolean"
|
|
2640
|
-
},
|
|
2641
|
-
"logoutIfDisconnected": {
|
|
2642
|
-
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
2643
|
-
"visibility": "frontend",
|
|
2644
|
-
"type": "boolean"
|
|
2645
|
-
}
|
|
2646
|
-
}
|
|
2647
|
-
}
|
|
2648
|
-
}
|
|
2649
|
-
}
|
|
2650
|
-
},
|
|
2651
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2652
|
-
}
|
|
2653
3053
|
}
|
|
2654
3054
|
],
|
|
2655
3055
|
"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.abfbd79f.js"></script><script defer="defer" src="/static/module-material-ui.116dde6e.js"></script><script defer="defer" src="/static/module-lodash.aa647045.js"></script><script defer="defer" src="/static/module-date-fns.c633d602.js"></script><script defer="defer" src="/static/module-mui.f5e57c92.js"></script><script defer="defer" src="/static/module-material-table.84f30b2f.js"></script><script defer="defer" src="/static/module-react-dom.42a304d3.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.b474cfe9.js"></script><script defer="defer" src="/static/module-zod.4f2eeb8c.js"></script><script defer="defer" src="/static/module-i18next.f50c1612.js"></script><script defer="defer" src="/static/module-remix-run.e486ee73.js"></script><script defer="defer" src="/static/vendor.abfbd79f.js"></script><script defer="defer" src="/static/main.abfbd79f.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
color="#5bbad5"
|
|
43
43
|
/>
|
|
44
44
|
<title><%= config.getString('app.title') %></title>
|
|
45
|
-
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.
|
|
45
|
+
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.abfbd79f.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.116dde6e.js"></script><script defer src="<%= publicPath %>/static/module-lodash.aa647045.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.c633d602.js"></script><script defer src="<%= publicPath %>/static/module-mui.f5e57c92.js"></script><script defer src="<%= publicPath %>/static/module-material-table.84f30b2f.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.42a304d3.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.b474cfe9.js"></script><script defer src="<%= publicPath %>/static/module-zod.4f2eeb8c.js"></script><script defer src="<%= publicPath %>/static/module-i18next.f50c1612.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.e486ee73.js"></script><script defer src="<%= publicPath %>/static/vendor.abfbd79f.js"></script><script defer src="<%= publicPath %>/static/main.abfbd79f.js"></script></head>
|
|
46
46
|
<body>
|
|
47
47
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
48
48
|
<div id="root"></div>
|