@techdocs/cli 1.10.4-next.1 → 1.10.4-next.2

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @techdocs/cli
2
2
 
3
+ ## 1.10.4-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-defaults@0.15.0-next.2
9
+
3
10
  ## 1.10.4-next.1
4
11
 
5
12
  ### Patch Changes
@@ -1591,6 +1591,30 @@
1591
1591
  },
1592
1592
  "packageName": "@backstage/backend-app-api"
1593
1593
  },
1594
+ {
1595
+ "path": "../../plugins/events-node/config.d.ts",
1596
+ "value": {
1597
+ "type": "object",
1598
+ "properties": {
1599
+ "events": {
1600
+ "type": "object",
1601
+ "properties": {
1602
+ "useEventBus": {
1603
+ "description": "Whether to use the event bus API in the events plugin backend to\ndistribute events across multiple instances when publishing and\nsubscribing to events.\n\nThe default is 'auto', which means means that the event bus API will be\nused if it's available, but will be disabled if the events backend\nreturns a 404.\n\nIf set to 'never', the events service will only ever publish events\nlocally to the same instance, while if set to 'always', the event bus API\nwill never be disabled, even if the events backend returns a 404.",
1604
+ "enum": [
1605
+ "always",
1606
+ "auto",
1607
+ "never"
1608
+ ],
1609
+ "type": "string"
1610
+ }
1611
+ }
1612
+ }
1613
+ },
1614
+ "$schema": "http://json-schema.org/draft-07/schema#"
1615
+ },
1616
+ "packageName": "@backstage/plugin-events-node"
1617
+ },
1594
1618
  {
1595
1619
  "path": "../backend-defaults/config.d.ts",
1596
1620
  "value": {
@@ -1784,6 +1808,74 @@
1784
1808
  "items": {
1785
1809
  "type": "string"
1786
1810
  }
1811
+ },
1812
+ "filter": {
1813
+ "description": "Filter configuration for actions. Allows controlling which actions\nare exposed to consumers based on patterns and attributes.",
1814
+ "type": "object",
1815
+ "properties": {
1816
+ "include": {
1817
+ "description": "Rules for actions to include. An action must match at least one rule to be included.\nEach rule can specify an id pattern and/or attribute constraints.\nIf no include rules are specified, all actions are included by default.",
1818
+ "type": "array",
1819
+ "items": {
1820
+ "type": "object",
1821
+ "properties": {
1822
+ "id": {
1823
+ "description": "Glob pattern for action IDs to match.\nAction IDs have the format `{pluginId}:{actionName}`.",
1824
+ "type": "string"
1825
+ },
1826
+ "attributes": {
1827
+ "description": "Attribute constraints. All specified attributes must match.\nActions are compared against their resolved attributes (with defaults applied).",
1828
+ "type": "object",
1829
+ "properties": {
1830
+ "destructive": {
1831
+ "description": "If specified, only match actions where destructive matches this value.\nActions default to destructive: true if not explicitly set.",
1832
+ "type": "boolean"
1833
+ },
1834
+ "readOnly": {
1835
+ "description": "If specified, only match actions where readOnly matches this value.\nActions default to readOnly: false if not explicitly set.",
1836
+ "type": "boolean"
1837
+ },
1838
+ "idempotent": {
1839
+ "description": "If specified, only match actions where idempotent matches this value.\nActions default to idempotent: false if not explicitly set.",
1840
+ "type": "boolean"
1841
+ }
1842
+ }
1843
+ }
1844
+ }
1845
+ }
1846
+ },
1847
+ "exclude": {
1848
+ "description": "Rules for actions to exclude. Exclusions take precedence over inclusions.\nEach rule can specify an id pattern and/or attribute constraints.",
1849
+ "type": "array",
1850
+ "items": {
1851
+ "type": "object",
1852
+ "properties": {
1853
+ "id": {
1854
+ "description": "Glob pattern for action IDs to match.\nAction IDs have the format `{pluginId}:{actionName}`.",
1855
+ "type": "string"
1856
+ },
1857
+ "attributes": {
1858
+ "description": "Attribute constraints. All specified attributes must match.\nActions are compared against their resolved attributes (with defaults applied).",
1859
+ "type": "object",
1860
+ "properties": {
1861
+ "destructive": {
1862
+ "description": "If specified, only match actions where destructive matches this value.\nActions default to destructive: true if not explicitly set.",
1863
+ "type": "boolean"
1864
+ },
1865
+ "readOnly": {
1866
+ "description": "If specified, only match actions where readOnly matches this value.\nActions default to readOnly: false if not explicitly set.",
1867
+ "type": "boolean"
1868
+ },
1869
+ "idempotent": {
1870
+ "description": "If specified, only match actions where idempotent matches this value.\nActions default to idempotent: false if not explicitly set.",
1871
+ "type": "boolean"
1872
+ }
1873
+ }
1874
+ }
1875
+ }
1876
+ }
1877
+ }
1878
+ }
1787
1879
  }
1788
1880
  }
1789
1881
  },
@@ -3162,30 +3254,6 @@
3162
3254
  },
3163
3255
  "packageName": "@backstage/backend-defaults"
3164
3256
  },
3165
- {
3166
- "path": "../../plugins/events-node/config.d.ts",
3167
- "value": {
3168
- "type": "object",
3169
- "properties": {
3170
- "events": {
3171
- "type": "object",
3172
- "properties": {
3173
- "useEventBus": {
3174
- "description": "Whether to use the event bus API in the events plugin backend to\ndistribute events across multiple instances when publishing and\nsubscribing to events.\n\nThe default is 'auto', which means means that the event bus API will be\nused if it's available, but will be disabled if the events backend\nreturns a 404.\n\nIf set to 'never', the events service will only ever publish events\nlocally to the same instance, while if set to 'always', the event bus API\nwill never be disabled, even if the events backend returns a 404.",
3175
- "enum": [
3176
- "always",
3177
- "auto",
3178
- "never"
3179
- ],
3180
- "type": "string"
3181
- }
3182
- }
3183
- }
3184
- },
3185
- "$schema": "http://json-schema.org/draft-07/schema#"
3186
- },
3187
- "packageName": "@backstage/plugin-events-node"
3188
- },
3189
3257
  {
3190
3258
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3191
3259
  "value": {
@@ -1,4 +1,4 @@
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="color-scheme" content="light dark"/><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.47f251b0.js"></script><script defer="defer" src="/static/module-material-ui.9517effb.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.5a3a2d93.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.a4b20610.js"></script><script defer="defer" src="/static/main.c03cc860.js"></script><link href="/static/main.e1e2baaa.css" rel="stylesheet"><script type="backstage.io/config">[
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="color-scheme" content="light dark"/><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.47f251b0.js"></script><script defer="defer" src="/static/module-material-ui.9517effb.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.5a3a2d93.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-parse5.94980036.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.8b5ff4b7.js"></script><script defer="defer" src="/static/vendor.55ff2174.js"></script><script defer="defer" src="/static/main.48ae5130.js"></script><link href="/static/main.684cd846.css" rel="stylesheet"><script type="backstage.io/config">[
2
2
  {
3
3
  "context": "app-config.yaml",
4
4
  "data": {
@@ -43,7 +43,7 @@
43
43
  color="#5bbad5"
44
44
  />
45
45
  <title><%= config.getString('app.title') %></title>
46
- <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.47f251b0.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.9517effb.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.5a3a2d93.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.a4b20610.js"></script><script defer src="<%= publicPath %>/static/main.c03cc860.js"></script><link href="<%= publicPath %>/static/main.e1e2baaa.css" rel="stylesheet"></head>
46
+ <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.47f251b0.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.9517effb.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.5a3a2d93.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-parse5.94980036.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.8b5ff4b7.js"></script><script defer src="<%= publicPath %>/static/vendor.55ff2174.js"></script><script defer src="<%= publicPath %>/static/main.48ae5130.js"></script><link href="<%= publicPath %>/static/main.684cd846.css" rel="stylesheet"></head>
47
47
  <body>
48
48
  <noscript>You need to enable JavaScript to run this app.</noscript>
49
49
  <div id="root"></div>