@techdocs/cli 1.6.1-next.1 → 1.6.1-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.
Files changed (27) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/embedded-app/.config-schema.json +151 -151
  3. package/dist/embedded-app/index.html +1 -1
  4. package/dist/embedded-app/static/1059.84ba853b.chunk.js +10 -0
  5. package/dist/embedded-app/static/1059.84ba853b.chunk.js.map +1 -0
  6. package/dist/embedded-app/static/3510.6d8cb98c.chunk.js +3 -0
  7. package/dist/embedded-app/static/3510.6d8cb98c.chunk.js.map +1 -0
  8. package/dist/embedded-app/static/8096.60ff0c3e.chunk.js +11 -0
  9. package/dist/embedded-app/static/8096.60ff0c3e.chunk.js.map +1 -0
  10. package/dist/embedded-app/static/main.21f1591c.js +487 -0
  11. package/dist/embedded-app/static/main.21f1591c.js.map +1 -0
  12. package/dist/embedded-app/static/{runtime.f8ffa716.js → runtime.21f1591c.js} +2 -2
  13. package/dist/embedded-app/static/{runtime.f8ffa716.js.map → runtime.21f1591c.js.map} +1 -1
  14. package/dist/embedded-app/static/vendor.21f1591c.js +206 -0
  15. package/dist/embedded-app/static/vendor.21f1591c.js.map +1 -0
  16. package/dist/index.cjs.js +1 -1
  17. package/package.json +3 -3
  18. package/dist/embedded-app/static/4966.e30bae7f.chunk.js +0 -49
  19. package/dist/embedded-app/static/4966.e30bae7f.chunk.js.map +0 -1
  20. package/dist/embedded-app/static/7893.2112ad7c.chunk.js +0 -3
  21. package/dist/embedded-app/static/7893.2112ad7c.chunk.js.map +0 -1
  22. package/dist/embedded-app/static/967.dadcb6bd.chunk.js +0 -11
  23. package/dist/embedded-app/static/967.dadcb6bd.chunk.js.map +0 -1
  24. package/dist/embedded-app/static/main.f8ffa716.js +0 -487
  25. package/dist/embedded-app/static/main.f8ffa716.js.map +0 -1
  26. package/dist/embedded-app/static/vendor.f8ffa716.js +0 -167
  27. package/dist/embedded-app/static/vendor.f8ffa716.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @techdocs/cli
2
2
 
3
+ ## 1.6.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.19.9-next.2
9
+ - @backstage/plugin-techdocs-node@1.10.0-next.2
10
+
3
11
  ## 1.6.1-next.1
4
12
 
5
13
  ### Patch Changes
@@ -368,6 +368,157 @@
368
368
  "$schema": "http://json-schema.org/draft-07/schema#"
369
369
  }
370
370
  },
371
+ {
372
+ "path": "../../plugins/techdocs/config.d.ts",
373
+ "value": {
374
+ "type": "object",
375
+ "properties": {
376
+ "techdocs": {
377
+ "description": "Configuration options for the techdocs plugin",
378
+ "type": "object",
379
+ "properties": {
380
+ "builder": {
381
+ "description": "Documentation building process depends on the builder attr",
382
+ "visibility": "frontend",
383
+ "enum": [
384
+ "external",
385
+ "local"
386
+ ],
387
+ "type": "string"
388
+ },
389
+ "legacyUseCaseSensitiveTripletPaths": {
390
+ "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
391
+ "visibility": "frontend",
392
+ "type": "boolean"
393
+ },
394
+ "sanitizer": {
395
+ "type": "object",
396
+ "properties": {
397
+ "allowedIframeHosts": {
398
+ "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
399
+ "visibility": "frontend",
400
+ "type": "array",
401
+ "items": {
402
+ "type": "string"
403
+ }
404
+ }
405
+ }
406
+ }
407
+ },
408
+ "required": [
409
+ "builder"
410
+ ]
411
+ }
412
+ },
413
+ "required": [
414
+ "techdocs"
415
+ ],
416
+ "$schema": "http://json-schema.org/draft-07/schema#"
417
+ }
418
+ },
419
+ {
420
+ "path": "../frontend-app-api/config.d.ts",
421
+ "value": {
422
+ "type": "object",
423
+ "properties": {
424
+ "app": {
425
+ "type": "object",
426
+ "properties": {
427
+ "experimental": {
428
+ "type": "object",
429
+ "properties": {
430
+ "packages": {
431
+ "visibility": "frontend",
432
+ "deepVisibility": "frontend",
433
+ "anyOf": [
434
+ {
435
+ "type": "object",
436
+ "properties": {
437
+ "include": {
438
+ "type": "array",
439
+ "items": {
440
+ "type": "string"
441
+ }
442
+ },
443
+ "exclude": {
444
+ "type": "array",
445
+ "items": {
446
+ "type": "string"
447
+ }
448
+ }
449
+ }
450
+ },
451
+ {
452
+ "const": "all",
453
+ "type": "string"
454
+ }
455
+ ]
456
+ }
457
+ }
458
+ },
459
+ "routes": {
460
+ "type": "object",
461
+ "properties": {
462
+ "bindings": {
463
+ "deepVisibility": "frontend",
464
+ "type": "object",
465
+ "additionalProperties": {
466
+ "type": "string"
467
+ }
468
+ }
469
+ }
470
+ },
471
+ "extensions": {
472
+ "deepVisibility": "frontend",
473
+ "type": "array",
474
+ "items": {
475
+ "anyOf": [
476
+ {
477
+ "type": "object",
478
+ "additionalProperties": {
479
+ "anyOf": [
480
+ {
481
+ "type": "object",
482
+ "properties": {
483
+ "attachTo": {
484
+ "type": "object",
485
+ "properties": {
486
+ "id": {
487
+ "type": "string"
488
+ },
489
+ "input": {
490
+ "type": "string"
491
+ }
492
+ },
493
+ "required": [
494
+ "id",
495
+ "input"
496
+ ]
497
+ },
498
+ "disabled": {
499
+ "type": "boolean"
500
+ },
501
+ "config": {}
502
+ }
503
+ },
504
+ {
505
+ "type": "boolean"
506
+ }
507
+ ]
508
+ }
509
+ },
510
+ {
511
+ "type": "string"
512
+ }
513
+ ]
514
+ }
515
+ }
516
+ }
517
+ }
518
+ },
519
+ "$schema": "http://json-schema.org/draft-07/schema#"
520
+ }
521
+ },
371
522
  {
372
523
  "path": "../integration/config.d.ts",
373
524
  "value": {
@@ -780,157 +931,6 @@
780
931
  "$schema": "http://json-schema.org/draft-07/schema#"
781
932
  }
782
933
  },
783
- {
784
- "path": "../../plugins/techdocs/config.d.ts",
785
- "value": {
786
- "type": "object",
787
- "properties": {
788
- "techdocs": {
789
- "description": "Configuration options for the techdocs plugin",
790
- "type": "object",
791
- "properties": {
792
- "builder": {
793
- "description": "Documentation building process depends on the builder attr",
794
- "visibility": "frontend",
795
- "enum": [
796
- "external",
797
- "local"
798
- ],
799
- "type": "string"
800
- },
801
- "legacyUseCaseSensitiveTripletPaths": {
802
- "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
803
- "visibility": "frontend",
804
- "type": "boolean"
805
- },
806
- "sanitizer": {
807
- "type": "object",
808
- "properties": {
809
- "allowedIframeHosts": {
810
- "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
811
- "visibility": "frontend",
812
- "type": "array",
813
- "items": {
814
- "type": "string"
815
- }
816
- }
817
- }
818
- }
819
- },
820
- "required": [
821
- "builder"
822
- ]
823
- }
824
- },
825
- "required": [
826
- "techdocs"
827
- ],
828
- "$schema": "http://json-schema.org/draft-07/schema#"
829
- }
830
- },
831
- {
832
- "path": "../frontend-app-api/config.d.ts",
833
- "value": {
834
- "type": "object",
835
- "properties": {
836
- "app": {
837
- "type": "object",
838
- "properties": {
839
- "experimental": {
840
- "type": "object",
841
- "properties": {
842
- "packages": {
843
- "visibility": "frontend",
844
- "deepVisibility": "frontend",
845
- "anyOf": [
846
- {
847
- "type": "object",
848
- "properties": {
849
- "include": {
850
- "type": "array",
851
- "items": {
852
- "type": "string"
853
- }
854
- },
855
- "exclude": {
856
- "type": "array",
857
- "items": {
858
- "type": "string"
859
- }
860
- }
861
- }
862
- },
863
- {
864
- "const": "all",
865
- "type": "string"
866
- }
867
- ]
868
- }
869
- }
870
- },
871
- "routes": {
872
- "type": "object",
873
- "properties": {
874
- "bindings": {
875
- "deepVisibility": "frontend",
876
- "type": "object",
877
- "additionalProperties": {
878
- "type": "string"
879
- }
880
- }
881
- }
882
- },
883
- "extensions": {
884
- "deepVisibility": "frontend",
885
- "type": "array",
886
- "items": {
887
- "anyOf": [
888
- {
889
- "type": "object",
890
- "additionalProperties": {
891
- "anyOf": [
892
- {
893
- "type": "object",
894
- "properties": {
895
- "attachTo": {
896
- "type": "object",
897
- "properties": {
898
- "id": {
899
- "type": "string"
900
- },
901
- "input": {
902
- "type": "string"
903
- }
904
- },
905
- "required": [
906
- "id",
907
- "input"
908
- ]
909
- },
910
- "disabled": {
911
- "type": "boolean"
912
- },
913
- "config": {}
914
- }
915
- },
916
- {
917
- "type": "boolean"
918
- }
919
- ]
920
- }
921
- },
922
- {
923
- "type": "string"
924
- }
925
- ]
926
- }
927
- }
928
- }
929
- }
930
- },
931
- "$schema": "http://json-schema.org/draft-07/schema#"
932
- }
933
- },
934
934
  {
935
935
  "path": "../backend-common/config.d.ts",
936
936
  "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 platform 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><script defer="defer" src="/static/runtime.f8ffa716.js"></script><script defer="defer" src="/static/module-material-ui.263ce9b5.js"></script><script defer="defer" src="/static/module-lodash.fa492ce2.js"></script><script defer="defer" src="/static/module-date-fns.b8b6c380.js"></script><script defer="defer" src="/static/module-material-table.3c68edc1.js"></script><script defer="defer" src="/static/module-react-dom.f7ae1c8b.js"></script><script defer="defer" src="/static/module-react-router.05179f87.js"></script><script defer="defer" src="/static/module-react-router-dom.8eff32d7.js"></script><script defer="defer" src="/static/module-zod.9e0f365e.js"></script><script defer="defer" src="/static/module-i18next.db8a27ed.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.0ca788d0.js"></script><script defer="defer" src="/static/vendor.f8ffa716.js"></script><script defer="defer" src="/static/main.f8ffa716.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 platform 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><script defer="defer" src="/static/runtime.21f1591c.js"></script><script defer="defer" src="/static/module-material-ui.263ce9b5.js"></script><script defer="defer" src="/static/module-lodash.fa492ce2.js"></script><script defer="defer" src="/static/module-date-fns.b8b6c380.js"></script><script defer="defer" src="/static/module-material-table.3c68edc1.js"></script><script defer="defer" src="/static/module-react-dom.f7ae1c8b.js"></script><script defer="defer" src="/static/module-react-router.05179f87.js"></script><script defer="defer" src="/static/module-react-router-dom.8eff32d7.js"></script><script defer="defer" src="/static/module-zod.9e0f365e.js"></script><script defer="defer" src="/static/module-i18next.db8a27ed.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.0ca788d0.js"></script><script defer="defer" src="/static/vendor.21f1591c.js"></script><script defer="defer" src="/static/main.21f1591c.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>