git0 0.2.6 → 0.2.8

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 (55) hide show
  1. package/docs/404.html +2 -3
  2. package/docs/Footer/index.html +2 -3
  3. package/docs/assets/js/1df93b7f.d8c05d2c.js +2 -0
  4. package/docs/assets/js/22dd74f7.237398b4.js +1 -0
  5. package/docs/assets/js/28ab763d.5714aa16.js +1 -0
  6. package/docs/assets/js/299d276b.1a1baa1c.js +1 -0
  7. package/docs/assets/js/68cef36b.c312447e.js +1 -0
  8. package/docs/assets/js/c3a618e1.965a31da.js +1 -0
  9. package/docs/assets/js/{main.6b27aee7.js → main.cf858a7d.js} +2 -2
  10. package/docs/assets/js/runtime~main.7520dc36.js +1 -0
  11. package/docs/functions/{globals → git0}/index.html +9 -9
  12. package/docs/functions/github-api/index.html +149 -0
  13. package/docs/functions/index.html +4 -5
  14. package/docs/functions/modules/index.html +30 -0
  15. package/docs/index.html +3 -4
  16. package/docs/lunr-index-1749613752315.json +1 -0
  17. package/docs/lunr-index.json +1 -1
  18. package/docs/search-doc-1749613752315.json +1 -0
  19. package/docs/search-doc.json +1 -1
  20. package/docs/sitemap.xml +1 -1
  21. package/docs-config/.docusaurus/client-manifest.json +45 -33
  22. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/p/docs-175.json +1 -0
  23. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/p/index-466.json +1 -1
  24. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-git-0-1-md-d3e.json +19 -0
  25. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-git-0-md-299.json +19 -0
  26. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-github-api-md-28a.json +23 -0
  27. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-index-md-c3a.json +6 -2
  28. package/docs-config/.docusaurus/docusaurus-plugin-content-docs/default/site-src-functions-modules-md-68c.json +19 -0
  29. package/docs-config/.docusaurus/docusaurus.config.mjs +2 -9
  30. package/docs-config/.docusaurus/globalData.json +14 -9
  31. package/docs-config/.docusaurus/registry.js +4 -3
  32. package/docs-config/.docusaurus/routes.js +13 -7
  33. package/docs-config/.docusaurus/routesChunkNames.json +11 -7
  34. package/docs-config/config/customize-docs.js +4 -2
  35. package/docs-config/docusaurus.config.ts +0 -9
  36. package/docs-config/src/functions/{globals.md → git0.md} +4 -2
  37. package/docs-config/src/functions/github-api.md +744 -0
  38. package/docs-config/src/functions/modules.md +4 -0
  39. package/docs-config/src/functions/typedoc-sidebar.cjs +12 -1
  40. package/docs-config/src/pages/index.tsx +289 -279
  41. package/docs-config/tsconfig.json +1 -1
  42. package/package.json +1 -1
  43. package/src/git0.js +2 -2
  44. package/src/github-api.js +1 -1
  45. package/docs/assets/js/1df93b7f.dfdf0ef3.js +0 -2
  46. package/docs/assets/js/22dd74f7.040a4546.js +0 -1
  47. package/docs/assets/js/4a829dc8.10d7db0a.js +0 -1
  48. package/docs/assets/js/c3a618e1.50a89e4d.js +0 -1
  49. package/docs/assets/js/d140250a.62af53aa.js +0 -1
  50. package/docs/assets/js/runtime~main.5c54c19c.js +0 -1
  51. package/docs/lunr-index-1749612068805.json +0 -1
  52. package/docs/search-doc-1749612068805.json +0 -1
  53. package/docs-config/src/index.md +0 -127
  54. /package/docs/assets/js/{1df93b7f.dfdf0ef3.js.LICENSE.txt → 1df93b7f.d8c05d2c.js.LICENSE.txt} +0 -0
  55. /package/docs/assets/js/{main.6b27aee7.js.LICENSE.txt → main.cf858a7d.js.LICENSE.txt} +0 -0
@@ -1,6 +1,17 @@
1
1
  // @ts-check
2
2
  /** @type {import("@docusaurus/plugin-content-docs").SidebarsConfig} */
3
3
  const typedocSidebar = {
4
- items: []
4
+ items: [
5
+ {
6
+ type: "doc",
7
+ id: "functions/git0",
8
+ label: "git0"
9
+ },
10
+ {
11
+ type: "doc",
12
+ id: "functions/github-api",
13
+ label: "github-api"
14
+ }
15
+ ]
5
16
  };
6
17
  module.exports = typedocSidebar.items;