projectInfo

projectInfo

Returns information about the current project.

Signature

projectInfo(): Promise<ProjectInfo>

Parameters

None.

Returns

Promise<ProjectInfo> — Object containing project details:

type ProjectInfo = {
  projectName: string;
  modelId: string;
  modelIdBase62: string;
  publishedId: string;
  workspaceId: string;
}
Property
Type
Description

projectName

string

Name of the project

modelId

string

Unique model identifier (UUID)

modelIdBase62

string

Model ID in Base62 format

publishedId

string

Published version identifier

workspaceId

string

Workspace identifier

Usage

Last updated