Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ v7 is a full TypeScript rewrite. It replaces the v6 OpenAPI-Generator surface wi

- **SDK documentation:** https://themeparks.github.io/ThemeParks_JavaScript/
- **API reference:** https://themeparks.github.io/ThemeParks_JavaScript/modules.html
- **Cookbook:** https://themeparks.github.io/ThemeParks_JavaScript/cookbook/
- **Cookbook:** https://themeparks.github.io/ThemeParks_JavaScript/documents/cookbook.html
- **Underlying API:** https://api.themeparks.wiki
- **Issues:** https://github.com/ThemeParks/ThemeParks_JavaScript/issues
- **Changelog:** [CHANGELOG.md](./CHANGELOG.md)
Expand Down
11 changes: 10 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@ export { ThemeParks, type ThemeParksOptions } from './client';
export { ApiError, NetworkError, RateLimitError, ThemeParksError, TimeoutError } from './errors';
export { InMemoryLruCache, type Cache } from './cache';
export type { FetchLike, FetchLikeResponse, RetryConfig, TransportOptions } from './transport';
export type { Destinations, Entity, EntityChildren, EntityLive, EntitySchedule } from './raw';
export {
RawClient,
type Destinations,
type Entity,
type EntityChildren,
type EntityLive,
type EntitySchedule,
} from './raw';
export { EntityHandle } from './ergonomic/entity';
export { DestinationsApi } from './ergonomic/destinations';
export {
currentWaitTime,
narrowQueues,
Expand Down
1 change: 1 addition & 0 deletions typedoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"exclude": ["**/node_modules/**", "src/_generated/**", "test/**", "scripts/**"],
"name": "themeparks",
"readme": "README.md",
"projectDocuments": ["docs/cookbook.md"],
"includeVersion": true,
Comment on lines 7 to 9
Copy link

Copilot AI Apr 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description/title mentions repointing the README cookbook URL, but this PR doesn't include any change to README.md. If the deployed cookbook path changed as part of this TypeDoc update, please update the README link accordingly; otherwise, consider updating the PR description/title to avoid implying a README change that isn't present.

Copilot uses AI. Check for mistakes.
"excludeInternal": true,
"categorizeByGroup": true,
Expand Down
Loading