@techdocs/cli 1.8.20 → 1.8.21
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
|
@@ -2845,6 +2845,29 @@
|
|
|
2845
2845
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2846
2846
|
}
|
|
2847
2847
|
},
|
|
2848
|
+
{
|
|
2849
|
+
"path": "../../plugins/events-node/config.d.ts",
|
|
2850
|
+
"value": {
|
|
2851
|
+
"type": "object",
|
|
2852
|
+
"properties": {
|
|
2853
|
+
"events": {
|
|
2854
|
+
"type": "object",
|
|
2855
|
+
"properties": {
|
|
2856
|
+
"useEventBus": {
|
|
2857
|
+
"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.",
|
|
2858
|
+
"enum": [
|
|
2859
|
+
"always",
|
|
2860
|
+
"auto",
|
|
2861
|
+
"never"
|
|
2862
|
+
],
|
|
2863
|
+
"type": "string"
|
|
2864
|
+
}
|
|
2865
|
+
}
|
|
2866
|
+
}
|
|
2867
|
+
},
|
|
2868
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2869
|
+
}
|
|
2870
|
+
},
|
|
2848
2871
|
{
|
|
2849
2872
|
"path": "../../plugins/auth-backend-module-atlassian-provider/config.d.ts",
|
|
2850
2873
|
"value": {
|
|
@@ -3171,7 +3194,7 @@
|
|
|
3171
3194
|
}
|
|
3172
3195
|
},
|
|
3173
3196
|
{
|
|
3174
|
-
"path": "../../plugins/auth-backend-module-
|
|
3197
|
+
"path": "../../plugins/auth-backend-module-cloudflare-access-provider/config.d.ts",
|
|
3175
3198
|
"value": {
|
|
3176
3199
|
"type": "object",
|
|
3177
3200
|
"properties": {
|
|
@@ -3181,16 +3204,36 @@
|
|
|
3181
3204
|
"providers": {
|
|
3182
3205
|
"type": "object",
|
|
3183
3206
|
"properties": {
|
|
3184
|
-
"
|
|
3185
|
-
"
|
|
3207
|
+
"cfaccess": {
|
|
3208
|
+
"visibility": "frontend",
|
|
3186
3209
|
"type": "object",
|
|
3187
3210
|
"properties": {
|
|
3188
|
-
"
|
|
3189
|
-
"description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
|
|
3211
|
+
"teamName": {
|
|
3190
3212
|
"type": "string"
|
|
3191
3213
|
},
|
|
3192
|
-
"
|
|
3193
|
-
"
|
|
3214
|
+
"serviceTokens": {
|
|
3215
|
+
"deepVisibility": "secret",
|
|
3216
|
+
"type": "array",
|
|
3217
|
+
"items": {
|
|
3218
|
+
"type": "object",
|
|
3219
|
+
"properties": {
|
|
3220
|
+
"token": {
|
|
3221
|
+
"type": "string"
|
|
3222
|
+
},
|
|
3223
|
+
"subject": {
|
|
3224
|
+
"type": "string"
|
|
3225
|
+
}
|
|
3226
|
+
},
|
|
3227
|
+
"required": [
|
|
3228
|
+
"subject",
|
|
3229
|
+
"token"
|
|
3230
|
+
]
|
|
3231
|
+
}
|
|
3232
|
+
},
|
|
3233
|
+
"jwtHeaderName": {
|
|
3234
|
+
"type": "string"
|
|
3235
|
+
},
|
|
3236
|
+
"authorizationCookieName": {
|
|
3194
3237
|
"type": "string"
|
|
3195
3238
|
},
|
|
3196
3239
|
"signIn": {
|
|
@@ -3200,30 +3243,6 @@
|
|
|
3200
3243
|
"type": "array",
|
|
3201
3244
|
"items": {
|
|
3202
3245
|
"anyOf": [
|
|
3203
|
-
{
|
|
3204
|
-
"type": "object",
|
|
3205
|
-
"properties": {
|
|
3206
|
-
"resolver": {
|
|
3207
|
-
"type": "string",
|
|
3208
|
-
"const": "emailMatchingUserEntityAnnotation"
|
|
3209
|
-
}
|
|
3210
|
-
},
|
|
3211
|
-
"required": [
|
|
3212
|
-
"resolver"
|
|
3213
|
-
]
|
|
3214
|
-
},
|
|
3215
|
-
{
|
|
3216
|
-
"type": "object",
|
|
3217
|
-
"properties": {
|
|
3218
|
-
"resolver": {
|
|
3219
|
-
"type": "string",
|
|
3220
|
-
"const": "idMatchingUserEntityAnnotation"
|
|
3221
|
-
}
|
|
3222
|
-
},
|
|
3223
|
-
"required": [
|
|
3224
|
-
"resolver"
|
|
3225
|
-
]
|
|
3226
|
-
},
|
|
3227
3246
|
{
|
|
3228
3247
|
"type": "object",
|
|
3229
3248
|
"properties": {
|
|
@@ -3264,8 +3283,11 @@
|
|
|
3264
3283
|
}
|
|
3265
3284
|
},
|
|
3266
3285
|
"required": [
|
|
3267
|
-
"
|
|
3286
|
+
"teamName"
|
|
3268
3287
|
]
|
|
3288
|
+
},
|
|
3289
|
+
"backstageTokenExpiration": {
|
|
3290
|
+
"description": "The backstage token expiration."
|
|
3269
3291
|
}
|
|
3270
3292
|
}
|
|
3271
3293
|
}
|
|
@@ -3276,7 +3298,7 @@
|
|
|
3276
3298
|
}
|
|
3277
3299
|
},
|
|
3278
3300
|
{
|
|
3279
|
-
"path": "../../plugins/auth-backend-module-
|
|
3301
|
+
"path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
|
|
3280
3302
|
"value": {
|
|
3281
3303
|
"type": "object",
|
|
3282
3304
|
"properties": {
|
|
@@ -3286,36 +3308,16 @@
|
|
|
3286
3308
|
"providers": {
|
|
3287
3309
|
"type": "object",
|
|
3288
3310
|
"properties": {
|
|
3289
|
-
"
|
|
3290
|
-
"
|
|
3311
|
+
"gcpIap": {
|
|
3312
|
+
"description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
|
|
3291
3313
|
"type": "object",
|
|
3292
3314
|
"properties": {
|
|
3293
|
-
"
|
|
3294
|
-
"
|
|
3295
|
-
},
|
|
3296
|
-
"serviceTokens": {
|
|
3297
|
-
"deepVisibility": "secret",
|
|
3298
|
-
"type": "array",
|
|
3299
|
-
"items": {
|
|
3300
|
-
"type": "object",
|
|
3301
|
-
"properties": {
|
|
3302
|
-
"token": {
|
|
3303
|
-
"type": "string"
|
|
3304
|
-
},
|
|
3305
|
-
"subject": {
|
|
3306
|
-
"type": "string"
|
|
3307
|
-
}
|
|
3308
|
-
},
|
|
3309
|
-
"required": [
|
|
3310
|
-
"subject",
|
|
3311
|
-
"token"
|
|
3312
|
-
]
|
|
3313
|
-
}
|
|
3314
|
-
},
|
|
3315
|
-
"jwtHeaderName": {
|
|
3315
|
+
"audience": {
|
|
3316
|
+
"description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
|
|
3316
3317
|
"type": "string"
|
|
3317
3318
|
},
|
|
3318
|
-
"
|
|
3319
|
+
"jwtHeader": {
|
|
3320
|
+
"description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
|
|
3319
3321
|
"type": "string"
|
|
3320
3322
|
},
|
|
3321
3323
|
"signIn": {
|
|
@@ -3325,6 +3327,30 @@
|
|
|
3325
3327
|
"type": "array",
|
|
3326
3328
|
"items": {
|
|
3327
3329
|
"anyOf": [
|
|
3330
|
+
{
|
|
3331
|
+
"type": "object",
|
|
3332
|
+
"properties": {
|
|
3333
|
+
"resolver": {
|
|
3334
|
+
"type": "string",
|
|
3335
|
+
"const": "emailMatchingUserEntityAnnotation"
|
|
3336
|
+
}
|
|
3337
|
+
},
|
|
3338
|
+
"required": [
|
|
3339
|
+
"resolver"
|
|
3340
|
+
]
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"type": "object",
|
|
3344
|
+
"properties": {
|
|
3345
|
+
"resolver": {
|
|
3346
|
+
"type": "string",
|
|
3347
|
+
"const": "idMatchingUserEntityAnnotation"
|
|
3348
|
+
}
|
|
3349
|
+
},
|
|
3350
|
+
"required": [
|
|
3351
|
+
"resolver"
|
|
3352
|
+
]
|
|
3353
|
+
},
|
|
3328
3354
|
{
|
|
3329
3355
|
"type": "object",
|
|
3330
3356
|
"properties": {
|
|
@@ -3365,11 +3391,8 @@
|
|
|
3365
3391
|
}
|
|
3366
3392
|
},
|
|
3367
3393
|
"required": [
|
|
3368
|
-
"
|
|
3394
|
+
"audience"
|
|
3369
3395
|
]
|
|
3370
|
-
},
|
|
3371
|
-
"backstageTokenExpiration": {
|
|
3372
|
-
"description": "The backstage token expiration."
|
|
3373
3396
|
}
|
|
3374
3397
|
}
|
|
3375
3398
|
}
|
package/dist/package.json.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techdocs/cli",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.21",
|
|
4
4
|
"description": "Utility CLI for managing TechDocs sites in Backstage.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "cli"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"watch": "./src"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-defaults": "^0.5.
|
|
47
|
+
"@backstage/backend-defaults": "^0.5.2",
|
|
48
48
|
"@backstage/catalog-model": "^1.7.0",
|
|
49
49
|
"@backstage/cli-common": "^0.1.14",
|
|
50
50
|
"@backstage/config": "^1.2.0",
|