@techdocs/cli 0.0.0-nightly-20250129022746 → 0.0.0-nightly-20250130022848

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,6 +1,6 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20250129022746
3
+ ## 0.0.0-nightly-20250130022848
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -10,8 +10,8 @@
10
10
 
11
11
  - 69f84ac: Internal update to work with dynamic imports.
12
12
  - Updated dependencies
13
- - @backstage/backend-defaults@0.0.0-nightly-20250129022746
14
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20250129022746
13
+ - @backstage/backend-defaults@0.0.0-nightly-20250130022848
14
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20250130022848
15
15
  - @backstage/catalog-model@1.7.3
16
16
  - @backstage/cli-common@0.1.15
17
17
  - @backstage/config@1.3.2
@@ -106,27 +106,6 @@
106
106
  },
107
107
  "path": "../cli/package.json"
108
108
  },
109
- {
110
- "path": "../../plugins/permission-common/config.d.ts",
111
- "value": {
112
- "type": "object",
113
- "properties": {
114
- "permission": {
115
- "description": "Configuration options for Backstage permissions and authorization",
116
- "type": "object",
117
- "properties": {
118
- "enabled": {
119
- "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
120
- "visibility": "frontend",
121
- "type": "boolean"
122
- }
123
- }
124
- }
125
- },
126
- "$schema": "http://json-schema.org/draft-07/schema#"
127
- },
128
- "packageName": "@backstage/plugin-permission-common"
129
- },
130
109
  {
131
110
  "path": "../core-app-api/config.d.ts",
132
111
  "value": {
@@ -459,6 +438,27 @@
459
438
  },
460
439
  "packageName": "@backstage/plugin-techdocs"
461
440
  },
441
+ {
442
+ "path": "../../plugins/permission-common/config.d.ts",
443
+ "value": {
444
+ "type": "object",
445
+ "properties": {
446
+ "permission": {
447
+ "description": "Configuration options for Backstage permissions and authorization",
448
+ "type": "object",
449
+ "properties": {
450
+ "enabled": {
451
+ "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
452
+ "visibility": "frontend",
453
+ "type": "boolean"
454
+ }
455
+ }
456
+ }
457
+ },
458
+ "$schema": "http://json-schema.org/draft-07/schema#"
459
+ },
460
+ "packageName": "@backstage/plugin-permission-common"
461
+ },
462
462
  {
463
463
  "path": "../integration/config.d.ts",
464
464
  "value": {
@@ -3167,6 +3167,112 @@
3167
3167
  },
3168
3168
  "packageName": "@backstage/plugin-auth-backend-module-cloudflare-access-provider"
3169
3169
  },
3170
+ {
3171
+ "path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
3172
+ "value": {
3173
+ "type": "object",
3174
+ "properties": {
3175
+ "auth": {
3176
+ "type": "object",
3177
+ "properties": {
3178
+ "providers": {
3179
+ "type": "object",
3180
+ "properties": {
3181
+ "gcpIap": {
3182
+ "description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
3183
+ "type": "object",
3184
+ "properties": {
3185
+ "audience": {
3186
+ "description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
3187
+ "type": "string"
3188
+ },
3189
+ "jwtHeader": {
3190
+ "description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
3191
+ "type": "string"
3192
+ },
3193
+ "signIn": {
3194
+ "type": "object",
3195
+ "properties": {
3196
+ "resolvers": {
3197
+ "type": "array",
3198
+ "items": {
3199
+ "anyOf": [
3200
+ {
3201
+ "type": "object",
3202
+ "properties": {
3203
+ "resolver": {
3204
+ "type": "string",
3205
+ "const": "emailMatchingUserEntityAnnotation"
3206
+ }
3207
+ },
3208
+ "required": [
3209
+ "resolver"
3210
+ ]
3211
+ },
3212
+ {
3213
+ "type": "object",
3214
+ "properties": {
3215
+ "resolver": {
3216
+ "type": "string",
3217
+ "const": "idMatchingUserEntityAnnotation"
3218
+ }
3219
+ },
3220
+ "required": [
3221
+ "resolver"
3222
+ ]
3223
+ },
3224
+ {
3225
+ "type": "object",
3226
+ "properties": {
3227
+ "resolver": {
3228
+ "type": "string",
3229
+ "const": "emailLocalPartMatchingUserEntityName"
3230
+ },
3231
+ "allowedDomains": {
3232
+ "type": "array",
3233
+ "items": {
3234
+ "type": "string"
3235
+ }
3236
+ }
3237
+ },
3238
+ "required": [
3239
+ "resolver"
3240
+ ]
3241
+ },
3242
+ {
3243
+ "type": "object",
3244
+ "properties": {
3245
+ "resolver": {
3246
+ "type": "string",
3247
+ "const": "emailMatchingUserEntityProfileEmail"
3248
+ }
3249
+ },
3250
+ "required": [
3251
+ "resolver"
3252
+ ]
3253
+ }
3254
+ ]
3255
+ }
3256
+ }
3257
+ },
3258
+ "required": [
3259
+ "resolvers"
3260
+ ]
3261
+ }
3262
+ },
3263
+ "required": [
3264
+ "audience"
3265
+ ]
3266
+ }
3267
+ }
3268
+ }
3269
+ }
3270
+ }
3271
+ },
3272
+ "$schema": "http://json-schema.org/draft-07/schema#"
3273
+ },
3274
+ "packageName": "@backstage/plugin-auth-backend-module-gcp-iap-provider"
3275
+ },
3170
3276
  {
3171
3277
  "path": "../../plugins/auth-backend-module-github-provider/config.d.ts",
3172
3278
  "value": {
@@ -4104,112 +4210,6 @@
4104
4210
  },
4105
4211
  "packageName": "@backstage/plugin-auth-backend-module-onelogin-provider"
4106
4212
  },
4107
- {
4108
- "path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
4109
- "value": {
4110
- "type": "object",
4111
- "properties": {
4112
- "auth": {
4113
- "type": "object",
4114
- "properties": {
4115
- "providers": {
4116
- "type": "object",
4117
- "properties": {
4118
- "gcpIap": {
4119
- "description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
4120
- "type": "object",
4121
- "properties": {
4122
- "audience": {
4123
- "description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
4124
- "type": "string"
4125
- },
4126
- "jwtHeader": {
4127
- "description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
4128
- "type": "string"
4129
- },
4130
- "signIn": {
4131
- "type": "object",
4132
- "properties": {
4133
- "resolvers": {
4134
- "type": "array",
4135
- "items": {
4136
- "anyOf": [
4137
- {
4138
- "type": "object",
4139
- "properties": {
4140
- "resolver": {
4141
- "type": "string",
4142
- "const": "emailMatchingUserEntityAnnotation"
4143
- }
4144
- },
4145
- "required": [
4146
- "resolver"
4147
- ]
4148
- },
4149
- {
4150
- "type": "object",
4151
- "properties": {
4152
- "resolver": {
4153
- "type": "string",
4154
- "const": "idMatchingUserEntityAnnotation"
4155
- }
4156
- },
4157
- "required": [
4158
- "resolver"
4159
- ]
4160
- },
4161
- {
4162
- "type": "object",
4163
- "properties": {
4164
- "resolver": {
4165
- "type": "string",
4166
- "const": "emailLocalPartMatchingUserEntityName"
4167
- },
4168
- "allowedDomains": {
4169
- "type": "array",
4170
- "items": {
4171
- "type": "string"
4172
- }
4173
- }
4174
- },
4175
- "required": [
4176
- "resolver"
4177
- ]
4178
- },
4179
- {
4180
- "type": "object",
4181
- "properties": {
4182
- "resolver": {
4183
- "type": "string",
4184
- "const": "emailMatchingUserEntityProfileEmail"
4185
- }
4186
- },
4187
- "required": [
4188
- "resolver"
4189
- ]
4190
- }
4191
- ]
4192
- }
4193
- }
4194
- },
4195
- "required": [
4196
- "resolvers"
4197
- ]
4198
- }
4199
- },
4200
- "required": [
4201
- "audience"
4202
- ]
4203
- }
4204
- }
4205
- }
4206
- }
4207
- }
4208
- },
4209
- "$schema": "http://json-schema.org/draft-07/schema#"
4210
- },
4211
- "packageName": "@backstage/plugin-auth-backend-module-gcp-iap-provider"
4212
- },
4213
4213
  {
4214
4214
  "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/plugin-catalog-react/node_modules/@backstage/core-components/config.d.ts",
4215
4215
  "value": {
@@ -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.5b071983.js"></script><script defer="defer" src="/static/module-material-ui.b24ef3a3.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.f702282a.js"></script><script defer="defer" src="/static/module-material-table.d6e8d890.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.ae6d33c5.js"></script><script defer="defer" src="/static/vendor.5b071983.js"></script><script defer="defer" src="/static/main.5b071983.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
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.3351f180.js"></script><script defer="defer" src="/static/module-material-ui.b24ef3a3.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.f702282a.js"></script><script defer="defer" src="/static/module-material-table.d6e8d890.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.ae6d33c5.js"></script><script defer="defer" src="/static/vendor.3351f180.js"></script><script defer="defer" src="/static/main.3351f180.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.5b071983.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.b24ef3a3.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.f702282a.js"></script><script defer src="<%= publicPath %>/static/module-material-table.d6e8d890.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.ae6d33c5.js"></script><script defer src="<%= publicPath %>/static/vendor.5b071983.js"></script><script defer src="<%= publicPath %>/static/main.5b071983.js"></script></head>
45
+ <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.3351f180.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.b24ef3a3.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.f702282a.js"></script><script defer src="<%= publicPath %>/static/module-material-table.d6e8d890.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.ae6d33c5.js"></script><script defer src="<%= publicPath %>/static/vendor.3351f180.js"></script><script defer src="<%= publicPath %>/static/main.3351f180.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>