@techdocs/cli 1.9.0-next.1 → 1.9.0-next.3

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.
@@ -459,6 +459,150 @@
459
459
  },
460
460
  "packageName": "@backstage/plugin-techdocs"
461
461
  },
462
+ {
463
+ "path": "../frontend-app-api/config.d.ts",
464
+ "value": {
465
+ "type": "object",
466
+ "properties": {
467
+ "app": {
468
+ "type": "object",
469
+ "properties": {
470
+ "experimental": {
471
+ "type": "object",
472
+ "properties": {
473
+ "packages": {
474
+ "visibility": "frontend",
475
+ "deepVisibility": "frontend",
476
+ "anyOf": [
477
+ {
478
+ "type": "object",
479
+ "properties": {
480
+ "include": {
481
+ "type": "array",
482
+ "items": {
483
+ "type": "string"
484
+ }
485
+ },
486
+ "exclude": {
487
+ "type": "array",
488
+ "items": {
489
+ "type": "string"
490
+ }
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "const": "all",
496
+ "type": "string"
497
+ }
498
+ ]
499
+ }
500
+ }
501
+ },
502
+ "routes": {
503
+ "type": "object",
504
+ "properties": {
505
+ "bindings": {
506
+ "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.",
507
+ "deepVisibility": "frontend",
508
+ "type": "object",
509
+ "additionalProperties": {
510
+ "anyOf": [
511
+ {
512
+ "const": false,
513
+ "type": "boolean"
514
+ },
515
+ {
516
+ "type": "string"
517
+ }
518
+ ]
519
+ }
520
+ }
521
+ }
522
+ },
523
+ "extensions": {
524
+ "deepVisibility": "frontend",
525
+ "type": "array",
526
+ "items": {
527
+ "anyOf": [
528
+ {
529
+ "type": "object",
530
+ "additionalProperties": {
531
+ "anyOf": [
532
+ {
533
+ "type": "object",
534
+ "properties": {
535
+ "attachTo": {
536
+ "type": "object",
537
+ "properties": {
538
+ "id": {
539
+ "type": "string"
540
+ },
541
+ "input": {
542
+ "type": "string"
543
+ }
544
+ },
545
+ "required": [
546
+ "id",
547
+ "input"
548
+ ]
549
+ },
550
+ "disabled": {
551
+ "type": "boolean"
552
+ },
553
+ "config": {}
554
+ }
555
+ },
556
+ {
557
+ "type": "boolean"
558
+ }
559
+ ]
560
+ }
561
+ },
562
+ {
563
+ "type": "string"
564
+ }
565
+ ]
566
+ }
567
+ }
568
+ }
569
+ }
570
+ },
571
+ "$schema": "http://json-schema.org/draft-07/schema#"
572
+ },
573
+ "packageName": "@backstage/frontend-app-api"
574
+ },
575
+ {
576
+ "path": "../../plugins/catalog/config.d.ts",
577
+ "value": {
578
+ "type": "object",
579
+ "properties": {
580
+ "catalog": {
581
+ "type": "object",
582
+ "properties": {
583
+ "experimentalPagination": {
584
+ "deepVisibility": "frontend",
585
+ "anyOf": [
586
+ {
587
+ "type": "object",
588
+ "properties": {
589
+ "limit": {
590
+ "type": "number"
591
+ }
592
+ }
593
+ },
594
+ {
595
+ "type": "boolean"
596
+ }
597
+ ]
598
+ }
599
+ }
600
+ }
601
+ },
602
+ "$schema": "http://json-schema.org/draft-07/schema#"
603
+ },
604
+ "packageName": "@backstage/plugin-catalog"
605
+ },
462
606
  {
463
607
  "path": "../integration/config.d.ts",
464
608
  "value": {
@@ -905,150 +1049,6 @@
905
1049
  },
906
1050
  "packageName": "@backstage/integration"
907
1051
  },
908
- {
909
- "path": "../frontend-app-api/config.d.ts",
910
- "value": {
911
- "type": "object",
912
- "properties": {
913
- "app": {
914
- "type": "object",
915
- "properties": {
916
- "experimental": {
917
- "type": "object",
918
- "properties": {
919
- "packages": {
920
- "visibility": "frontend",
921
- "deepVisibility": "frontend",
922
- "anyOf": [
923
- {
924
- "type": "object",
925
- "properties": {
926
- "include": {
927
- "type": "array",
928
- "items": {
929
- "type": "string"
930
- }
931
- },
932
- "exclude": {
933
- "type": "array",
934
- "items": {
935
- "type": "string"
936
- }
937
- }
938
- }
939
- },
940
- {
941
- "const": "all",
942
- "type": "string"
943
- }
944
- ]
945
- }
946
- }
947
- },
948
- "routes": {
949
- "type": "object",
950
- "properties": {
951
- "bindings": {
952
- "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.",
953
- "deepVisibility": "frontend",
954
- "type": "object",
955
- "additionalProperties": {
956
- "anyOf": [
957
- {
958
- "const": false,
959
- "type": "boolean"
960
- },
961
- {
962
- "type": "string"
963
- }
964
- ]
965
- }
966
- }
967
- }
968
- },
969
- "extensions": {
970
- "deepVisibility": "frontend",
971
- "type": "array",
972
- "items": {
973
- "anyOf": [
974
- {
975
- "type": "object",
976
- "additionalProperties": {
977
- "anyOf": [
978
- {
979
- "type": "object",
980
- "properties": {
981
- "attachTo": {
982
- "type": "object",
983
- "properties": {
984
- "id": {
985
- "type": "string"
986
- },
987
- "input": {
988
- "type": "string"
989
- }
990
- },
991
- "required": [
992
- "id",
993
- "input"
994
- ]
995
- },
996
- "disabled": {
997
- "type": "boolean"
998
- },
999
- "config": {}
1000
- }
1001
- },
1002
- {
1003
- "type": "boolean"
1004
- }
1005
- ]
1006
- }
1007
- },
1008
- {
1009
- "type": "string"
1010
- }
1011
- ]
1012
- }
1013
- }
1014
- }
1015
- }
1016
- },
1017
- "$schema": "http://json-schema.org/draft-07/schema#"
1018
- },
1019
- "packageName": "@backstage/frontend-app-api"
1020
- },
1021
- {
1022
- "path": "../../plugins/catalog/config.d.ts",
1023
- "value": {
1024
- "type": "object",
1025
- "properties": {
1026
- "catalog": {
1027
- "type": "object",
1028
- "properties": {
1029
- "experimentalPagination": {
1030
- "deepVisibility": "frontend",
1031
- "anyOf": [
1032
- {
1033
- "type": "object",
1034
- "properties": {
1035
- "limit": {
1036
- "type": "number"
1037
- }
1038
- }
1039
- },
1040
- {
1041
- "type": "boolean"
1042
- }
1043
- ]
1044
- }
1045
- }
1046
- }
1047
- },
1048
- "$schema": "http://json-schema.org/draft-07/schema#"
1049
- },
1050
- "packageName": "@backstage/plugin-catalog"
1051
- },
1052
1052
  {
1053
1053
  "path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
1054
1054
  "value": {
@@ -1135,6 +1135,52 @@
1135
1135
  },
1136
1136
  "packageName": "@backstage/backend-plugin-api"
1137
1137
  },
1138
+ {
1139
+ "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1140
+ "value": {
1141
+ "type": "object",
1142
+ "properties": {
1143
+ "auth": {
1144
+ "description": "Configuration options for the auth plugin",
1145
+ "type": "object",
1146
+ "properties": {
1147
+ "providers": {
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "guest": {
1151
+ "type": "object",
1152
+ "properties": {
1153
+ "userEntityRef": {
1154
+ "description": "The entity reference to use for the guest user.",
1155
+ "default": "user:development/guest",
1156
+ "type": "string"
1157
+ },
1158
+ "ownershipEntityRefs": {
1159
+ "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1160
+ "default": "[userEntityRef]",
1161
+ "type": "array",
1162
+ "items": {
1163
+ "type": "string"
1164
+ }
1165
+ },
1166
+ "dangerouslyAllowOutsideDevelopment": {
1167
+ "description": "Allow users to sign in with the guest provider outside of their development environments.",
1168
+ "type": "boolean"
1169
+ }
1170
+ }
1171
+ }
1172
+ }
1173
+ }
1174
+ },
1175
+ "required": [
1176
+ "providers"
1177
+ ]
1178
+ }
1179
+ },
1180
+ "$schema": "http://json-schema.org/draft-07/schema#"
1181
+ },
1182
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1183
+ },
1138
1184
  {
1139
1185
  "path": "../../plugins/auth-backend/config.d.ts",
1140
1186
  "value": {
@@ -1393,52 +1439,6 @@
1393
1439
  },
1394
1440
  "packageName": "@backstage/plugin-auth-backend"
1395
1441
  },
1396
- {
1397
- "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1398
- "value": {
1399
- "type": "object",
1400
- "properties": {
1401
- "auth": {
1402
- "description": "Configuration options for the auth plugin",
1403
- "type": "object",
1404
- "properties": {
1405
- "providers": {
1406
- "type": "object",
1407
- "properties": {
1408
- "guest": {
1409
- "type": "object",
1410
- "properties": {
1411
- "userEntityRef": {
1412
- "description": "The entity reference to use for the guest user.",
1413
- "default": "user:development/guest",
1414
- "type": "string"
1415
- },
1416
- "ownershipEntityRefs": {
1417
- "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1418
- "default": "[userEntityRef]",
1419
- "type": "array",
1420
- "items": {
1421
- "type": "string"
1422
- }
1423
- },
1424
- "dangerouslyAllowOutsideDevelopment": {
1425
- "description": "Allow users to sign in with the guest provider outside of their development environments.",
1426
- "type": "boolean"
1427
- }
1428
- }
1429
- }
1430
- }
1431
- }
1432
- },
1433
- "required": [
1434
- "providers"
1435
- ]
1436
- }
1437
- },
1438
- "$schema": "http://json-schema.org/draft-07/schema#"
1439
- },
1440
- "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1441
- },
1442
1442
  {
1443
1443
  "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-components/config.d.ts",
1444
1444
  "value": {
@@ -2310,6 +2310,15 @@
2310
2310
  "instance": {
2311
2311
  "description": "The instance connection name for the cloudsql instance, e.g. `project:region:instance`",
2312
2312
  "type": "string"
2313
+ },
2314
+ "ipAddressType": {
2315
+ "description": "The ip address type to use for the connection. Defaults to 'PUBLIC'",
2316
+ "enum": [
2317
+ "PRIVATE",
2318
+ "PSC",
2319
+ "PUBLIC"
2320
+ ],
2321
+ "type": "string"
2313
2322
  }
2314
2323
  },
2315
2324
  "required": [
@@ -2832,7 +2841,8 @@
2832
2841
  "required": [
2833
2842
  "resolvers"
2834
2843
  ]
2835
- }
2844
+ },
2845
+ "sessionDuration": {}
2836
2846
  },
2837
2847
  "required": [
2838
2848
  "clientId",
@@ -2887,7 +2897,8 @@
2887
2897
  },
2888
2898
  "connectionScope": {
2889
2899
  "type": "string"
2890
- }
2900
+ },
2901
+ "sessionDuration": {}
2891
2902
  },
2892
2903
  "required": [
2893
2904
  "clientId",
@@ -2998,7 +3009,8 @@
2998
3009
  "required": [
2999
3010
  "resolvers"
3000
3011
  ]
3001
- }
3012
+ },
3013
+ "sessionDuration": {}
3002
3014
  },
3003
3015
  "required": [
3004
3016
  "clientId",
@@ -3044,7 +3056,8 @@
3044
3056
  },
3045
3057
  "callbackUrl": {
3046
3058
  "type": "string"
3047
- }
3059
+ },
3060
+ "sessionDuration": {}
3048
3061
  },
3049
3062
  "required": [
3050
3063
  "clientId",
@@ -3157,7 +3170,8 @@
3157
3170
  },
3158
3171
  "backstageTokenExpiration": {
3159
3172
  "description": "The backstage token expiration."
3160
- }
3173
+ },
3174
+ "sessionDuration": {}
3161
3175
  }
3162
3176
  }
3163
3177
  }
@@ -3258,7 +3272,8 @@
3258
3272
  "required": [
3259
3273
  "resolvers"
3260
3274
  ]
3261
- }
3275
+ },
3276
+ "sessionDuration": {}
3262
3277
  },
3263
3278
  "required": [
3264
3279
  "audience"
@@ -3372,7 +3387,8 @@
3372
3387
  "required": [
3373
3388
  "resolvers"
3374
3389
  ]
3375
- }
3390
+ },
3391
+ "sessionDuration": {}
3376
3392
  },
3377
3393
  "required": [
3378
3394
  "clientId",
@@ -3488,7 +3504,8 @@
3488
3504
  "required": [
3489
3505
  "resolvers"
3490
3506
  ]
3491
- }
3507
+ },
3508
+ "sessionDuration": {}
3492
3509
  },
3493
3510
  "required": [
3494
3511
  "clientId",
@@ -3602,7 +3619,8 @@
3602
3619
  "required": [
3603
3620
  "resolvers"
3604
3621
  ]
3605
- }
3622
+ },
3623
+ "sessionDuration": {}
3606
3624
  },
3607
3625
  "required": [
3608
3626
  "clientId",
@@ -3724,7 +3742,8 @@
3724
3742
  "required": [
3725
3743
  "resolvers"
3726
3744
  ]
3727
- }
3745
+ },
3746
+ "sessionDuration": {}
3728
3747
  },
3729
3748
  "required": [
3730
3749
  "clientId",
@@ -3851,7 +3870,8 @@
3851
3870
  "required": [
3852
3871
  "resolvers"
3853
3872
  ]
3854
- }
3873
+ },
3874
+ "sessionDuration": {}
3855
3875
  },
3856
3876
  "required": [
3857
3877
  "authorizationUrl",
@@ -3871,7 +3891,7 @@
3871
3891
  "packageName": "@backstage/plugin-auth-backend-module-oauth2-provider"
3872
3892
  },
3873
3893
  {
3874
- "path": "../../plugins/auth-backend-module-oidc-provider/config.d.ts",
3894
+ "path": "../../plugins/auth-backend-module-okta-provider/config.d.ts",
3875
3895
  "value": {
3876
3896
  "type": "object",
3877
3897
  "properties": {
@@ -3881,7 +3901,7 @@
3881
3901
  "providers": {
3882
3902
  "type": "object",
3883
3903
  "properties": {
3884
- "oidc": {
3904
+ "okta": {
3885
3905
  "visibility": "frontend",
3886
3906
  "type": "object",
3887
3907
  "additionalProperties": {
@@ -3894,16 +3914,16 @@
3894
3914
  "visibility": "secret",
3895
3915
  "type": "string"
3896
3916
  },
3897
- "metadataUrl": {
3917
+ "audience": {
3898
3918
  "type": "string"
3899
3919
  },
3900
- "callbackUrl": {
3920
+ "authServerId": {
3901
3921
  "type": "string"
3902
3922
  },
3903
- "tokenEndpointAuthMethod": {
3923
+ "idp": {
3904
3924
  "type": "string"
3905
3925
  },
3906
- "tokenSignedResponseAlg": {
3926
+ "callbackUrl": {
3907
3927
  "type": "string"
3908
3928
  },
3909
3929
  "additionalScopes": {
@@ -3919,9 +3939,6 @@
3919
3939
  }
3920
3940
  ]
3921
3941
  },
3922
- "prompt": {
3923
- "type": "string"
3924
- },
3925
3942
  "signIn": {
3926
3943
  "type": "object",
3927
3944
  "properties": {
@@ -3929,6 +3946,18 @@
3929
3946
  "type": "array",
3930
3947
  "items": {
3931
3948
  "anyOf": [
3949
+ {
3950
+ "type": "object",
3951
+ "properties": {
3952
+ "resolver": {
3953
+ "type": "string",
3954
+ "const": "emailMatchingUserEntityAnnotation"
3955
+ }
3956
+ },
3957
+ "required": [
3958
+ "resolver"
3959
+ ]
3960
+ },
3932
3961
  {
3933
3962
  "type": "object",
3934
3963
  "properties": {
@@ -3966,12 +3995,12 @@
3966
3995
  "required": [
3967
3996
  "resolvers"
3968
3997
  ]
3969
- }
3998
+ },
3999
+ "sessionDuration": {}
3970
4000
  },
3971
4001
  "required": [
3972
4002
  "clientId",
3973
- "clientSecret",
3974
- "metadataUrl"
4003
+ "clientSecret"
3975
4004
  ]
3976
4005
  }
3977
4006
  }
@@ -3982,10 +4011,10 @@
3982
4011
  },
3983
4012
  "$schema": "http://json-schema.org/draft-07/schema#"
3984
4013
  },
3985
- "packageName": "@backstage/plugin-auth-backend-module-oidc-provider"
4014
+ "packageName": "@backstage/plugin-auth-backend-module-okta-provider"
3986
4015
  },
3987
4016
  {
3988
- "path": "../../plugins/auth-backend-module-okta-provider/config.d.ts",
4017
+ "path": "../../plugins/auth-backend-module-oidc-provider/config.d.ts",
3989
4018
  "value": {
3990
4019
  "type": "object",
3991
4020
  "properties": {
@@ -3995,7 +4024,7 @@
3995
4024
  "providers": {
3996
4025
  "type": "object",
3997
4026
  "properties": {
3998
- "okta": {
4027
+ "oidc": {
3999
4028
  "visibility": "frontend",
4000
4029
  "type": "object",
4001
4030
  "additionalProperties": {
@@ -4008,16 +4037,16 @@
4008
4037
  "visibility": "secret",
4009
4038
  "type": "string"
4010
4039
  },
4011
- "audience": {
4040
+ "metadataUrl": {
4012
4041
  "type": "string"
4013
4042
  },
4014
- "authServerId": {
4043
+ "callbackUrl": {
4015
4044
  "type": "string"
4016
4045
  },
4017
- "idp": {
4046
+ "tokenEndpointAuthMethod": {
4018
4047
  "type": "string"
4019
4048
  },
4020
- "callbackUrl": {
4049
+ "tokenSignedResponseAlg": {
4021
4050
  "type": "string"
4022
4051
  },
4023
4052
  "additionalScopes": {
@@ -4033,6 +4062,9 @@
4033
4062
  }
4034
4063
  ]
4035
4064
  },
4065
+ "prompt": {
4066
+ "type": "string"
4067
+ },
4036
4068
  "signIn": {
4037
4069
  "type": "object",
4038
4070
  "properties": {
@@ -4040,18 +4072,6 @@
4040
4072
  "type": "array",
4041
4073
  "items": {
4042
4074
  "anyOf": [
4043
- {
4044
- "type": "object",
4045
- "properties": {
4046
- "resolver": {
4047
- "type": "string",
4048
- "const": "emailMatchingUserEntityAnnotation"
4049
- }
4050
- },
4051
- "required": [
4052
- "resolver"
4053
- ]
4054
- },
4055
4075
  {
4056
4076
  "type": "object",
4057
4077
  "properties": {
@@ -4089,11 +4109,13 @@
4089
4109
  "required": [
4090
4110
  "resolvers"
4091
4111
  ]
4092
- }
4112
+ },
4113
+ "sessionDuration": {}
4093
4114
  },
4094
4115
  "required": [
4095
4116
  "clientId",
4096
- "clientSecret"
4117
+ "clientSecret",
4118
+ "metadataUrl"
4097
4119
  ]
4098
4120
  }
4099
4121
  }
@@ -4104,7 +4126,7 @@
4104
4126
  },
4105
4127
  "$schema": "http://json-schema.org/draft-07/schema#"
4106
4128
  },
4107
- "packageName": "@backstage/plugin-auth-backend-module-okta-provider"
4129
+ "packageName": "@backstage/plugin-auth-backend-module-oidc-provider"
4108
4130
  },
4109
4131
  {
4110
4132
  "path": "../../plugins/auth-backend-module-onelogin-provider/config.d.ts",
@@ -4192,7 +4214,8 @@
4192
4214
  "required": [
4193
4215
  "resolvers"
4194
4216
  ]
4195
- }
4217
+ },
4218
+ "sessionDuration": {}
4196
4219
  },
4197
4220
  "required": [
4198
4221
  "clientId",