Skip to main content
GET
Get Resolved Package
The resolved package endpoint returns the complete package with all compiled components, assets, and resolved dependencies in a format ready for runtime execution. This is the format used by client SDKs to render content.

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID
version
string
required
Package version (e.g., 1.0.0)

Query Parameters

includeDependencies
boolean
default:"false"
Set to true to include resolved dependencies in the response

Response

id
string
Package ID
version
string
Package version
components
object
Map of component names to compiled JavaScript code
assets
object
Map of component names to their asset arrays
dependencies
object
Map of dependency identifiers to their resolved content (only present if includeDependencies=true)

Example Response

Dependency Resolution

Dependencies are recursively resolved and flattened into the dependencies object. Each dependency is keyed by {projectId}@{version}. All transitive dependencies are included in the response, deduplicated by version.

Use Cases

Mobile SDK Integration

The resolved format is optimized for client SDKs:

Web Rendering

Code Examples