Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
4f3659f
chore: Update recommended Prettier VS Code extension ID.
mderazon Jan 1, 2026
3090952
chore: Update copyright year and various package dependencies.
mderazon Jan 1, 2026
807e168
feat: Add 429 Too Many Requests error responses and standardize 401/4…
mderazon Jan 1, 2026
5f7fc37
fix: Update booking webhook schema by changing owner to string ID and…
mderazon Jan 2, 2026
8f53cf2
feat: Implement expandable fields for Conversation schema, add Bot, W…
mderazon Jan 2, 2026
34d13ec
Update deps
mderazon Jan 5, 2026
e6f89fd
Update location text in scheduling endpoint for clarity
mderazon Jan 5, 2026
f785615
More clarity
mderazon Jan 5, 2026
bf96f2b
Merge branch 'origin/docusaurus-main' into docusaurus-dev
mderazon Jan 8, 2026
c714ff1
Update dependencies
mderazon Jan 8, 2026
7dcbec7
Update default formatter in VSCode settings to use the correct Pretti…
mderazon Jan 8, 2026
9e90e55
Removing CDN URL
Jan 15, 2026
28a804e
Merge pull request #14 from scheduleonce/feature/Remove-CDN-URL
anegiso Jan 15, 2026
3b18219
Removed https://cdn.jsdelivr.net (#15)
anegiso Jan 19, 2026
c943beb
Dependencies upgrade
mderazon Jan 19, 2026
6628f80
Remove note about unsupported custom fields in booking calendar descr…
mderazon Jan 19, 2026
2cf3f2d
Fix vuln
mderazon Jan 19, 2026
9417770
Bump lodash-es from 4.17.22 to 4.17.23
dependabot[bot] Jan 22, 2026
aeb01e6
Merge pull request #17 from scheduleonce/dependabot/npm_and_yarn/loda…
ryadavso Jan 22, 2026
57f1cfe
Bump lodash from 4.17.21 to 4.17.23
dependabot[bot] Jan 22, 2026
66259b3
Merge pull request #18 from scheduleonce/dependabot/npm_and_yarn/loda…
anegiso Jan 23, 2026
2bffbf6
Migrate back to the old Prettier
mderazon Jan 23, 2026
1819410
Update dependencies
mderazon Jan 23, 2026
5e145e2
Merge branch 'docusaurus-main' into docusaurus-dev and resolve confli…
mderazon Jan 23, 2026
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
2 changes: 1 addition & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"recommendations": ["prettier.prettier-vscode"]
"recommendations": ["esbenp.prettier-vscode"]
}
5 changes: 5 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ const config: Config = {
],
],
plugins: [
// Load Scalar standalone script once globally
"./src/plugins/scalarScriptPlugin.js",
// Product Badge Enhancement Plugin
"./src/plugins/productBadgePlugin.js",
// Booking Calendars API Reference
Expand All @@ -74,6 +76,7 @@ const config: Config = {
label: "Booking Calendars API Reference",
route: "/reference/booking-calendars",
showNavLink: false,
cdn: "",
configuration: {
url: "/booking-calendars-api.yaml",
metaData: {
Expand All @@ -94,6 +97,7 @@ const config: Config = {
label: "Booking Pages API Reference",
route: "/reference/booking-pages",
showNavLink: false,
cdn: "",
configuration: {
url: "/booking-pages-api.yaml",
metaData: {
Expand All @@ -114,6 +118,7 @@ const config: Config = {
label: "OnceHub v1 API Reference (Deprecated)",
route: "/reference/oncehub-v1",
showNavLink: false,
cdn: "",
configuration: {
url: "/oncehub-v1.yaml",
metaData: {
Expand Down
1 change: 0 additions & 1 deletion openapi/resources/booking-calendars/schedule.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ booking-calendars--id--schedule:
> Notes On Using This Endpoint
> * This endpoint is designed to be used with the "Get available time slots" endpoint. First, retrieve available time slots for a specific time range, and then use this endpoint to book one of those slots.
> * You can only select a location from those offered within the available time slots.
> * This endpoint doesn't support booking calendars with required custom fields.
> * All datetime strings are [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) in full form. For example, `2024-11-29T09:30:00.000Z`.

> [!tip]
Expand Down
Loading