Skip to content
Open
Changes from 8 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
a03d64b
initial commit
45huto5h Jul 18, 2025
a0cf0ce
made changes
45huto5h Jul 18, 2025
ad84ffe
added casses for MD-SESSION-TOKEN & MD-API-TOKEN
45huto5h Jul 18, 2025
7493aba
initial commit
45huto5h Aug 4, 2025
5a4a025
removed unwanted comment
45huto5h Aug 4, 2025
756314d
after npm install
45huto5h Aug 4, 2025
7b5caa3
undid the yarn.lock
45huto5h Aug 4, 2025
5430110
undid the package-lock.json
45huto5h Aug 4, 2025
df7406d
Fix build issues: prism v2.x compatibility, SSR safety, missing compo…
45huto5h Aug 6, 2025
4ee28d9
finishing touch
45huto5h Aug 6, 2025
e4d743f
lint checks fixed
45huto5h Aug 6, 2025
3986cbb
Fix MDX compilation and SSR Redux issues
45huto5h Aug 6, 2025
98a213a
Fix unnecessary escape characters in regex patterns
45huto5h Aug 6, 2025
8a34b54
Temporarily disable clean-script in CI to fix base branch incompatibi…
45huto5h Aug 6, 2025
7fa5845
Trigger CI rebuild with clean cache
45huto5h Aug 6, 2025
7202a72
Add fallback error handling for prism theme imports
45huto5h Aug 6, 2025
f1292d6
Undid the last commit
45huto5h Aug 6, 2025
e07cc8c
created new files from scratch
45huto5h Aug 7, 2025
9b82f02
Fix prism-react-renderer imports with fallback handling
45huto5h Aug 7, 2025
027e250
Update GitHub Actions cache from deprecated v2 to v4
45huto5h Aug 7, 2025
be6fd47
Update all deprecated GitHub Actions to latest versions
45huto5h Aug 7, 2025
3dc0a02
Fix ESLint import order warnings and formatting
45huto5h Aug 7, 2025
3498047
Update all deprecated GitHub Actions to latest versions
45huto5h Aug 7, 2025
d4fadca
Remove temporary update script
45huto5h Aug 7, 2025
001f291
Update script to handle all deprecated GitHub Actions including artif…
45huto5h Aug 7, 2025
edb1feb
Changes made into few more files
45huto5h Aug 7, 2025
3321b9c
Add .mjs theme files for backward compatibility with main branch
45huto5h Aug 7, 2025
cb2903b
fix: update all GitHub Actions to latest versions
45huto5h Aug 7, 2025
fe50026
fix: use latest compressed-size-action commit with updated dependencies
45huto5h Aug 7, 2025
60b2875
fix: use full commit SHA for compressed-size-action
45huto5h Aug 7, 2025
12b84c7
resolved dependencies conflict
45huto5h Aug 12, 2025
4497c46
synced yarn file with package.json
45huto5h Aug 12, 2025
5c6dcd0
updated prism-react-renderer version
45huto5h Aug 12, 2025
c5fe87c
updated prism-react-renderer version
45huto5h Aug 12, 2025
bb0ccdd
updated package.json
45huto5h Aug 12, 2025
02a8f40
modified clean command
45huto5h Aug 12, 2025
279386b
reverted last 2 commits
45huto5h Aug 12, 2025
04f2a21
package.json in demo is updated
45huto5h Aug 12, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ function buildPostmanRequest(
if (username === undefined || password === undefined) {
otherHeaders.push({
key: "Authorization",
value: "Basic BASE_64_ENCODING_OF{client_id:api_key}",
value: "Basic <BASE64_ENCODED_CREDENTIALS>",
});
continue;
}
Expand Down
Loading