@apify/docs-theme 1.0.231 → 1.0.233

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/docs-theme",
3
- "version": "1.0.231",
3
+ "version": "1.0.233",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "files": [
package/src/config.js CHANGED
@@ -53,13 +53,13 @@ const themeConfig = {
53
53
  },
54
54
  {
55
55
  label: 'Client for JavaScript',
56
- href: `${absoluteUrl}/api/client/js/`, // we need a trailing slash here, we'd get redirected there anyway
56
+ href: `${absoluteUrl}/api/client/js/docs`,
57
57
  target: '_self',
58
58
  rel: 'dofollow',
59
59
  },
60
60
  {
61
61
  label: 'Client for Python',
62
- href: `${absoluteUrl}/api/client/python/`, // we need a trailing slash here, we'd get redirected there anyway
62
+ href: `${absoluteUrl}/api/client/python/docs/overview`,
63
63
  target: '_self',
64
64
  rel: 'dofollow',
65
65
  },
@@ -76,13 +76,13 @@ const themeConfig = {
76
76
  items: [
77
77
  {
78
78
  label: 'SDK for JavaScript',
79
- href: `${absoluteUrl}/sdk/js/`, // we need a trailing slash here, we'd get redirected there anyway
79
+ href: `${absoluteUrl}/sdk/js/docs/overview`,
80
80
  target: '_self',
81
81
  rel: 'dofollow',
82
82
  },
83
83
  {
84
84
  html: 'SDK for Python',
85
- href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway
85
+ href: `${absoluteUrl}/sdk/python/docs/overview`,
86
86
  target: '_self',
87
87
  rel: 'dofollow',
88
88
  },
@@ -90,7 +90,7 @@ const themeConfig = {
90
90
  },
91
91
  {
92
92
  label: 'CLI',
93
- href: `${absoluteUrl}/cli/`, // we need a trailing slash here, we'd get redirected there anyway
93
+ href: `${absoluteUrl}/cli/docs`,
94
94
  position: 'left',
95
95
  activeBasePath: 'cli',
96
96
  target: '_self',
@@ -188,13 +188,13 @@ const themeConfig = {
188
188
  },
189
189
  {
190
190
  label: 'Client for JavaScript',
191
- href: `${absoluteUrl}/api/client/js/`, // we need a trailing slash here, we'd get redirected there anyway
191
+ href: `${absoluteUrl}/api/client/js/docs`,
192
192
  target: '_self',
193
193
  rel: 'dofollow',
194
194
  },
195
195
  {
196
196
  label: 'Client for Python',
197
- href: `${absoluteUrl}/api/client/python/`, // we need a trailing slash here, we'd get redirected there anyway
197
+ href: `${absoluteUrl}/api/client/python/docs/overview`,
198
198
  target: '_self',
199
199
  rel: 'dofollow',
200
200
  },
@@ -205,13 +205,13 @@ const themeConfig = {
205
205
  items: [
206
206
  {
207
207
  label: 'SDK for JavaScript',
208
- href: `${absoluteUrl}/sdk/js/`, // we need a trailing slash here, we'd get redirected there anyway
208
+ href: `${absoluteUrl}/sdk/js/docs/overview`,
209
209
  target: '_self',
210
210
  rel: 'dofollow',
211
211
  },
212
212
  {
213
213
  label: 'SDK for Python',
214
- href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway
214
+ href: `${absoluteUrl}/sdk/python/docs/overview`,
215
215
  target: '_self',
216
216
  rel: 'dofollow',
217
217
  },
@@ -222,7 +222,7 @@ const themeConfig = {
222
222
  items: [
223
223
  {
224
224
  label: 'CLI',
225
- href: `${absoluteUrl}/cli/`, // we need a trailing slash here, we'd get redirected there anyway
225
+ href: `${absoluteUrl}/cli/docs`,
226
226
  position: 'left',
227
227
  target: '_self',
228
228
  rel: 'dofollow',
@@ -2026,3 +2026,11 @@ div[class^="navbarSearchContainer"] {
2026
2026
  width: 14px !important;
2027
2027
  height: 15px !important;
2028
2028
  }
2029
+
2030
+ /* Array brackets in API schema - rendered via CSS so they don't leak into .md export */
2031
+ .openapi-array-bracket-open::before {
2032
+ content: "Array [";
2033
+ }
2034
+ .openapi-array-bracket-close::before {
2035
+ content: "]";
2036
+ }