@nodaro/sdk 1.19.0 → 1.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -1,4 +1,4 @@
1
- import { GenericNode, GenericEdge, WorkflowExport, WorkflowImportReport, ConnectedReference, TtsProvider, EntityStyle, CharacterAspectRatio, CharacterAttachColumn, LocationAssetType, LocationAttachColumn, SurroundDirection, ObjectAssetType, ObjectAttachColumn, ObjectAspectRatio, CreatureAttachColumn, PipelineInput, PipelineStatus, PipelineMode, PipelineStageName, SubGateName, ChatEnabledStage, ProposedChange, ReduceStrategyId, ReduceMeta, Voice, VoiceLibraryParams, VoiceLibraryResponse, VoiceClone, AudioFxPreset, BrowseCommunityParams, BrowseCommunityResult, CommunityCard, CommunityFullDetail, CommunityEntityType, CloneListingResult, FavoriteListingResult, CommunityReportReason, ReportListingResult, PublishListingParams, PublishListingResult, SharedListing, OrganizationView, OrgKind, OrgSettings, OrgPage, OrgMemberView, MemberStatus, WorkspaceRole, InvitationDelivery, InvitationState, InvitationView, InvitationPreview, OrgAuditEntry, WorkspaceSummary, WorkspaceView, WorkspaceSettings, WorkspaceMemberView, JoinCodeView, MeOrganizations } from '@nodaro/shared';
1
+ import { CollaboratorRole, GenericNode, GenericEdge, WorkflowExport, WorkflowImportReport, WorkflowVisibility, ConnectedReference, TtsProvider, EntityStyle, CharacterAspectRatio, CharacterAttachColumn, LocationAssetType, LocationAttachColumn, SurroundDirection, ObjectAssetType, ObjectAttachColumn, ObjectAspectRatio, CreatureAttachColumn, PipelineInput, PipelineStatus, PipelineMode, PipelineStageName, SubGateName, ChatEnabledStage, ProposedChange, ReduceStrategyId, ReduceMeta, Voice, VoiceLibraryParams, VoiceLibraryResponse, VoiceClone, AudioFxPreset, BrowseCommunityParams, BrowseCommunityResult, CommunityCard, CommunityFullDetail, CommunityEntityType, CloneListingResult, FavoriteListingResult, CommunityReportReason, ReportListingResult, PublishListingParams, PublishListingResult, SharedListing, OrganizationView, OrgKind, OrgSettings, OrgPage, OrgMemberView, MemberStatus, WorkspaceRole, InvitationDelivery, InvitationState, InvitationView, InvitationPreview, OrgAuditEntry, WorkspaceSummary, WorkspaceView, WorkspaceSettings, WorkspaceMemberView, JoinCodeView, MeOrganizations } from '@nodaro/shared';
2
2
  export { AudioFxPreset, BrowseCommunityParams, BrowseCommunityResult, CHARACTER_ASPECT_DEFAULTS, CHARACTER_ASPECT_OPTIONS, CHARACTER_STYLES, OBJECT_ASPECT_DEFAULTS as CREATURE_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS as CREATURE_ASPECT_OPTIONS, CREATURE_ATTACH_COLUMNS, CharacterAspectRatio, CloneListingResult, CommunityCard, CommunityEntityType, CommunityReportReason, CommunitySort, ConnectedReference, ObjectAspectRatio as CreatureAspectRatio, CreatureAttachColumn, EntityStyle, FavoriteListingResult, GenericEdge, GenericNode, InvitationDelivery, InvitationPreview, InvitationState, InvitationView, JoinCodeView, LOCATION_ASSET_TYPES, LOCATION_ATTACH_COLUMNS, LocationAssetType, LocationAttachColumn, MeOrganizations, MemberStatus, OBJECT_ASPECT_DEFAULTS, OBJECT_ASPECT_OPTIONS, OBJECT_ASSET_TYPES, OBJECT_ATTACH_COLUMNS, ObjectAspectRatio, ObjectAssetType, ObjectAttachColumn, OrgAuditEntry, OrgErrorCode, OrgKind, OrgMemberView, OrgPage, OrgRole, OrgSettings, OrgStatus, OrganizationSummary, OrganizationView, PipelineStageName, PublishListingParams, PublishListingResult, ReduceMeta, ReduceStrategyId, ReportListingResult, SURROUND_DIRECTIONS, SharedListing, SharedVoice, SurroundDirection, Voice, VoiceClone, VoiceLibraryParams, VoiceLibraryResponse, WORKSPACE_HEADER, WorkflowExport, WorkflowExportCharacter, WorkflowExportLocation, WorkflowExportObject, WorkspaceMemberView, WorkspaceRole, WorkspaceSettings, WorkspaceSummary, WorkspaceView } from '@nodaro/shared';
3
3
  import { PersonValue, WizardNodeContext, WizardQuestion, WizardSelection, RecommendedModel, FactoryPreset } from '@nodaro/prompts';
4
4
  export { PEOPLE, PERSON_DIMENSION_LABELS, PERSON_DIMENSION_ORDER, PersonValue, RecommendedModel, WizardNodeContext, WizardOption, WizardQuestion, WizardSelection, buildPersonHints } from '@nodaro/prompts';
@@ -109,8 +109,68 @@ interface RunWorkflowResult {
109
109
  executionId: string;
110
110
  status: "pending" | "running";
111
111
  }
112
+ /** A person granted access to a workflow. Email is never returned (privacy). */
113
+ interface Collaborator {
114
+ userId: string;
115
+ name?: string | null;
116
+ avatar?: string | null;
117
+ role: CollaboratorRole;
118
+ }
119
+ interface AddCollaboratorInput {
120
+ /** Provide exactly one of `userId` or `email`. */
121
+ userId?: string;
122
+ email?: string;
123
+ role: CollaboratorRole;
124
+ }
125
+ /** A workflow someone else shared with you, plus the role you hold on it. */
126
+ interface SharedWorkflow extends Workflow {
127
+ grantedRole: CollaboratorRole;
128
+ }
129
+ /** A grant dropped because a move took the workflow out of the workspace the
130
+ * access came from. */
131
+ interface DroppedCollaborator {
132
+ userId: string;
133
+ name: string | null;
134
+ }
135
+ /**
136
+ * The people a workflow is shared with — reached as `client.workflows.collaborators`.
137
+ * All four endpoints are served by the organizations feature and exist only when
138
+ * it is enabled server-side; against an install without it they 404
139
+ * (→ `NotFoundError`). The active workspace travels on the request like every
140
+ * other call, so a workspace admin's grants apply automatically.
141
+ */
142
+ declare class WorkflowCollaboratorsResource {
143
+ private client;
144
+ constructor(client: NodaroClient);
145
+ /** List a workflow's collaborators (id, name, avatar, role — never email). */
146
+ list(workflowId: string): Promise<{
147
+ data: Collaborator[];
148
+ }>;
149
+ /** Add a collaborator by `userId` OR `email` (exactly one), at the given role. */
150
+ add(workflowId: string, input: AddCollaboratorInput): Promise<{
151
+ data: {
152
+ userId: string;
153
+ role: CollaboratorRole;
154
+ };
155
+ }>;
156
+ /** Change a collaborator's role. */
157
+ update(workflowId: string, userId: string, input: {
158
+ role: CollaboratorRole;
159
+ }): Promise<{
160
+ data: {
161
+ userId: string;
162
+ role: CollaboratorRole;
163
+ };
164
+ }>;
165
+ /** Remove a collaborator — or yourself. Returns `{ success: true }`. */
166
+ remove(workflowId: string, userId: string): Promise<{
167
+ success: true;
168
+ }>;
169
+ }
112
170
  declare class WorkflowsResource {
113
171
  private client;
172
+ /** The people this workflow is shared with. See {@link WorkflowCollaboratorsResource}. */
173
+ readonly collaborators: WorkflowCollaboratorsResource;
114
174
  constructor(client: NodaroClient);
115
175
  /** List workflows for a project. Returns metadata only — `nodes`/`edges` are not included. */
116
176
  list(params: ListWorkflowsParams): Promise<{
@@ -173,6 +233,36 @@ declare class WorkflowsResource {
173
233
  data: Workflow;
174
234
  importReport?: WorkflowImportReport;
175
235
  }>;
236
+ /**
237
+ * Set a workflow's visibility — `"private"` (creator + explicit collaborators)
238
+ * or `"workspace"` (everyone in its workspace). Only the creator or a workspace
239
+ * admin may change it; anyone else gets HTTP 403. Thin wrapper over `update()`:
240
+ * the visibility lever lives on `PATCH /v1/workflows/:id`.
241
+ */
242
+ setVisibility(id: string, visibility: WorkflowVisibility): Promise<{
243
+ data: Workflow;
244
+ }>;
245
+ /**
246
+ * Move a workflow to another project (`POST /v1/workflows/:id/move`); its folder
247
+ * is cleared. When the move takes the workflow out of a workspace, collaborator
248
+ * grants that came from that workspace are dropped and returned as
249
+ * `droppedCollaborators`.
250
+ */
251
+ move(id: string, params: {
252
+ projectId: string;
253
+ }): Promise<{
254
+ data: Workflow;
255
+ droppedCollaborators: DroppedCollaborator[];
256
+ }>;
257
+ /**
258
+ * Workflows other people shared with you (`GET /v1/workflows/shared-with-me`) —
259
+ * grants on work that is NOT in a workspace you belong to (workspace work already
260
+ * shows in that workspace's own lists). Each carries the `grantedRole` you hold.
261
+ * Empty when the organizations feature is off server-side.
262
+ */
263
+ sharedWithMe(): Promise<{
264
+ data: SharedWorkflow[];
265
+ }>;
176
266
  }
177
267
 
178
268
  interface Project {
@@ -1732,6 +1822,14 @@ interface UpdateLocationResult {
1732
1822
  interface ListLocationsParams {
1733
1823
  /** When true, return archived locations instead of active ones. */
1734
1824
  archived?: boolean;
1825
+ /**
1826
+ * Max rows to return (cap 500). OPT-IN: omitted, the server returns the
1827
+ * full legacy listing with no `nextCursor`; supplied, the response is one
1828
+ * page plus `nextCursor` — keep passing it back until it is `null`.
1829
+ */
1830
+ limit?: number;
1831
+ /** Opaque cursor from a prior page's `nextCursor` (fetches the next page). */
1832
+ cursor?: string;
1735
1833
  }
1736
1834
  /**
1737
1835
  * Input for `client.locations.generate()` — fires the
@@ -1926,6 +2024,7 @@ declare class LocationsResource {
1926
2024
  */
1927
2025
  list(params?: ListLocationsParams): Promise<{
1928
2026
  locations: Location[];
2027
+ nextCursor?: string | null;
1929
2028
  }>;
1930
2029
  /**
1931
2030
  * Convenience wrapper for `list({ archived: true })`. Returns soft-deleted
@@ -1936,6 +2035,7 @@ declare class LocationsResource {
1936
2035
  */
1937
2036
  listArchived(params?: Omit<ListLocationsParams, "archived">): Promise<{
1938
2037
  locations: Location[];
2038
+ nextCursor?: string | null;
1939
2039
  }>;
1940
2040
  /**
1941
2041
  * Fetch a single location including in-flight asset job state. Soft-deleted
@@ -2273,6 +2373,14 @@ interface ListObjectsParams {
2273
2373
  archived?: boolean;
2274
2374
  /** Optional project filter — server-scoped to the caller's user. */
2275
2375
  projectId?: string;
2376
+ /**
2377
+ * Max rows to return (cap 500). OPT-IN: omitted, the server returns the
2378
+ * full legacy listing with no `nextCursor`; supplied, the response is one
2379
+ * page plus `nextCursor` — keep passing it back until it is `null`.
2380
+ */
2381
+ limit?: number;
2382
+ /** Opaque cursor from a prior page's `nextCursor` (fetches the next page). */
2383
+ cursor?: string;
2276
2384
  }
2277
2385
  /**
2278
2386
  * Input for `client.objects.generate()` — fires the
@@ -2428,6 +2536,7 @@ declare class ObjectsResource {
2428
2536
  */
2429
2537
  list(params?: ListObjectsParams): Promise<{
2430
2538
  objects: Object$1[];
2539
+ nextCursor?: string | null;
2431
2540
  }>;
2432
2541
  /**
2433
2542
  * Convenience wrapper for `list({ archived: true })`. Returns soft-deleted
@@ -2438,6 +2547,7 @@ declare class ObjectsResource {
2438
2547
  */
2439
2548
  listArchived(params?: Omit<ListObjectsParams, "archived">): Promise<{
2440
2549
  objects: Object$1[];
2550
+ nextCursor?: string | null;
2441
2551
  }>;
2442
2552
  /**
2443
2553
  * Fetch a single object including in-flight asset job state. Soft-deleted
@@ -2827,6 +2937,14 @@ interface ListCreaturesParams {
2827
2937
  archived?: boolean;
2828
2938
  /** Optional project filter — server-scoped to the caller's user. */
2829
2939
  projectId?: string;
2940
+ /**
2941
+ * Max rows to return (cap 500). OPT-IN: omitted, the server returns the
2942
+ * full legacy listing with no `nextCursor`; supplied, the response is one
2943
+ * page plus `nextCursor` — keep passing it back until it is `null`.
2944
+ */
2945
+ limit?: number;
2946
+ /** Opaque cursor from a prior page's `nextCursor` (fetches the next page). */
2947
+ cursor?: string;
2830
2948
  }
2831
2949
  /**
2832
2950
  * Input for `client.creatures.generate()` — fires the
@@ -2983,6 +3101,7 @@ declare class CreaturesResource {
2983
3101
  */
2984
3102
  list(params?: ListCreaturesParams): Promise<{
2985
3103
  creatures: Creature[];
3104
+ nextCursor?: string | null;
2986
3105
  }>;
2987
3106
  /**
2988
3107
  * Convenience wrapper for `list({ archived: true })`. Returns soft-deleted
@@ -2993,6 +3112,7 @@ declare class CreaturesResource {
2993
3112
  */
2994
3113
  listArchived(params?: Omit<ListCreaturesParams, "archived">): Promise<{
2995
3114
  creatures: Creature[];
3115
+ nextCursor?: string | null;
2996
3116
  }>;
2997
3117
  /**
2998
3118
  * Fetch a single creature including in-flight asset job state. Soft-deleted
@@ -3942,11 +4062,21 @@ declare class MediaResource {
3942
4062
  * gives per-image RELATIVE size hints for the smart layout: `0` auto
3943
4063
  * ("don't care", default), `1` big (~2× linear vs medium), `2` medium,
3944
4064
  * `3` small (~½ linear). All-equal hints change nothing; grid ignores them.
3945
- * Poll `jobs.get(jobId)` for the finished image.
4065
+ * For storyboards, set `numbered` to stamp a 1-based sequence badge at each
4066
+ * image's corner (top-left by default; `badgePosition: "top-right"` moves it;
4067
+ * in `imageUrls` order) and pass `imageLabels`
4068
+ * (index-aligned with `imageUrls`; `null`/`""`/omitted = no caption for that
4069
+ * image) to caption images after the number, e.g. `3 · Close-up`. Badges are
4070
+ * an overlay only — they never change the layout, the output size or the
4071
+ * credit cost. Poll `jobs.get(jobId)` for the finished image.
3946
4072
  */
3947
4073
  imageCollage(input: {
3948
4074
  imageUrls: string[];
3949
4075
  imageSizes?: Array<0 | 1 | 2 | 3>;
4076
+ numbered?: boolean;
4077
+ imageLabels?: Array<string | null>;
4078
+ /** Corner the badges sit in — `"top-left"` (default, storyboard convention) or `"top-right"`. */
4079
+ badgePosition?: "top-left" | "top-right";
3950
4080
  layout?: "smart" | "grid";
3951
4081
  resolution?: "2K" | "4K";
3952
4082
  aspectRatio?: string;
@@ -4415,6 +4545,13 @@ interface PickerOption {
4415
4545
  category?: string;
4416
4546
  /** The prompt fragment this id injects downstream. Present only when detail="full". */
4417
4547
  promptHint?: string;
4548
+ /**
4549
+ * Short professional term injected by compact hint mode; `label` is for
4550
+ * display. Present at BOTH detail levels — a thin client renders `label`
4551
+ * and injects `term`. Empty for a no-op ("auto"/"none") entry that injects
4552
+ * nothing.
4553
+ */
4554
+ term?: string;
4418
4555
  icon?: string;
4419
4556
  }
4420
4557
  interface PickerDimension {
@@ -4449,7 +4586,7 @@ interface PickerCatalogSummary {
4449
4586
  optionCount: number;
4450
4587
  }
4451
4588
  interface GetPickerCatalogOptions {
4452
- /** "compact" (default) = id, label, category, icon; "full" additionally includes description + promptHint. */
4589
+ /** "compact" (default) = id, label, category, term, icon; "full" additionally includes description + promptHint. */
4453
4590
  detail?: "compact" | "full";
4454
4591
  /** single-dim: filter to one category. */
4455
4592
  category?: string;
@@ -4506,6 +4643,58 @@ declare class PickerCatalogsResource {
4506
4643
  }>;
4507
4644
  }
4508
4645
 
4646
+ /**
4647
+ * Catalog projection types. Mirror `@nodaro/shared`'s `ProjectedCatalog` so the
4648
+ * SDK stays dependency-free (same convention as `picker-catalogs.ts`). Tag-free
4649
+ * by design — the deferred `CatalogPolicy` never crosses the wire.
4650
+ */
4651
+ interface ProjectedCatalogOption {
4652
+ id: string;
4653
+ label: string;
4654
+ description?: string;
4655
+ category?: string;
4656
+ /** The prompt fragment this id injects downstream. Present only when detail="full". */
4657
+ promptHint?: string;
4658
+ /**
4659
+ * Short professional term injected by compact hint mode; `label` is for
4660
+ * display. Present at BOTH detail levels — a thin client renders `label`
4661
+ * and injects `term`. Empty for a no-op ("auto"/"none") entry that injects
4662
+ * nothing.
4663
+ */
4664
+ term?: string;
4665
+ icon?: string;
4666
+ }
4667
+ interface ProjectedCatalogDimension {
4668
+ field: string;
4669
+ label: string;
4670
+ options: ProjectedCatalogOption[];
4671
+ }
4672
+ interface ProjectedCatalog {
4673
+ nodeType: string;
4674
+ label: string;
4675
+ catalogId: string;
4676
+ kind: "single" | "multi";
4677
+ valueField?: string;
4678
+ defaultValue?: string;
4679
+ categoryOrder?: string[];
4680
+ categoryLabels?: Record<string, string>;
4681
+ detail: "compact" | "full";
4682
+ options?: ProjectedCatalogOption[];
4683
+ fields?: string[];
4684
+ dimensions?: ProjectedCatalogDimension[];
4685
+ }
4686
+ declare class CatalogsResource {
4687
+ private client;
4688
+ constructor(client: NodaroClient);
4689
+ /** Every catalog, projected & pack-composed (honors the deployment's
4690
+ * registered vendored packs). Cached publicly 5 min. */
4691
+ list(opts?: {
4692
+ detail?: "compact" | "full";
4693
+ }): Promise<{
4694
+ data: ProjectedCatalog[];
4695
+ }>;
4696
+ }
4697
+
4509
4698
  /**
4510
4699
  * Model-catalog types. Mirrors the backend's `GET /v1/models` projection
4511
4700
  * (itself shared with the MCP `list_models` tool) so the SDK stays
@@ -5440,6 +5629,7 @@ declare class NodaroClient {
5440
5629
  readonly library: LibraryResource;
5441
5630
  readonly presets: PresetsResource;
5442
5631
  readonly pickerCatalogs: PickerCatalogsResource;
5632
+ readonly catalogs: CatalogsResource;
5443
5633
  readonly models: ModelsResource;
5444
5634
  readonly shots: ShotsResource;
5445
5635
  readonly recast: RecastResource;
@@ -5571,4 +5761,4 @@ interface ApiErrorBody {
5571
5761
  }
5572
5762
  declare function throwFromResponse(status: number, body: ApiErrorBody): never;
5573
5763
 
5574
- export { type AccessTokenResponse, type AnalyzeInput, type AnalyzeResult, type AppRun, type AppRunResult, type ApplyChatProposalResult, type ApproveCreatureMainImageResult, type ApproveMainImageResult, type ApproveObjectMainImageResult, type ApprovePortraitResult, AppsResource, AudioResource, type Auth, type BranchPipelineInput, type BranchPipelineResult, type BrowseTemplatesParams, type BrowseTemplatesResult, CREATURE_ASSET_TYPES, CallbackAuth, type CancelExecutionParams, type CancelJobResult, type Character, type CharacterDetail, type CharacterUsage, CharactersResource, type ChatStageResult, type ChatTurn, type ClientOptions, type CloneTemplateParams, type CloneTemplateResult, CommunityResource, type ContinueVideoProResult, type CreateCreatureInput, type CreateDeveloperAppInput, type CreateDeveloperAppResult, type CreateLocationInput, type CreateObjectInput, type CreateOrgInput, type CreateProjectInput, type CreateRecastInput, type CreateShotInput, type CreateWorkflowInput, type CreateWorkspaceInput, type Creature, type CreatureAssetType, type CreatureDetail, type CreatureReferencePhoto, type CreatureReferencePhotoKind, CreaturesResource, CreditsResource, type DeleteAppRunResult, type DeveloperApp, type DeveloperAppScope, type DeveloperAppStatus, DeveloperAppsResource, type DownloadVideoProgress, type DubbingInput, type DuplicateCharacterInput, type EnhanceInput, type EstimateRecastInput, type EstimateRecastRescoreInput, type ExchangeCodeInput, type ExecutionStatus, type ExecutionTriggerType, ExecutionsResource, type FactoryPresetsResult, ForbiddenError, type GenerateAssetInput, type GenerateCharacterInput, type GenerateCharacterResult, type GenerateCreatureAssetInput, type GenerateCreatureAssetResult, type GenerateCreatureInput, type GenerateCreatureMotionInput, type GenerateCreatureMotionResult, type GenerateCreatureResult, type GenerateImageParams, type GenerateInput, type GenerateLocationAssetInput, type GenerateLocationInput, type GenerateLocationResult, type GenerateMotionInput, type GenerateObjectAssetInput, type GenerateObjectAssetResult, type GenerateObjectInput, type GenerateObjectMotionInput, type GenerateObjectMotionResult, type GenerateObjectResult, type GenerateSurroundContinuationInput, type GenerateVideoParams, type GetPickerCatalogOptions, InsufficientCreditsError, type InviteInput, type Job, JobAbortedError, JobFailedError, type JobStatus, type JobStatusResult, JobTimeoutError, JobsResource, type LibraryAsset, LibraryResource, type ListAppRunsParams, type ListAppsParams, type ListAppsResult, type ListCharactersParams, type ListCharactersResult, type ListCreaturesParams, type ListExecutionsForWorkflowParams, type ListExecutionsPage, type ListInvitationsOptions, type ListLibraryParams, type ListLibraryResult, type ListLocationsParams, type ListModelsOptions, type ListObjectsParams, type ListWorkflowsParams, type Location, type LocationDetail, type LocationReferencePhoto, type LocationReferencePhotoKind, LocationsResource, MediaResource, type ModelCostsResult, type ModelSummary, type ModelsListResult, ModelsResource, NodaroClient, NodaroError, type NodeCategory, type NodeDescriptor, type NodeExecutionState, type NodeInputField, type NodeInputSchema, type NodeJobOutput, type NodePreset, type NodePresetGroup, NodesResource, NotFoundError, type OAuthAppInfo, OAuthResource, type Object$1 as Object, type ObjectCategory, type ObjectDetail, type ObjectReferencePhoto, type ObjectReferencePhotoKind, ObjectsResource, OrganizationsResource, type OutputType, type PickerCatalog, type PickerCatalogSummary, PickerCatalogsResource, type PickerDimension, type PickerOption, PipelinesResource, PresetsResource, type Project, ProjectsResource, PromptHelperResource, type PromptResult, type PublishedApp, type PublishedAppDetail, RateLimitedError, type RecaptionCreatureResult, type RecaptionLocationResult, type RecaptionObjectResult, type RecaptionResult, type RecastAudioLayerName, type RecastAudioManifestV1, type RecastAudioMix, type RecastAudioMixControl, type RecastAudioSectionReplacement, type RecastEstimate, type RecastRescoreOperation, type RecastRescoreQuote, type RecastRescoreReplacement, type RecastRescoreRequestV2, type RecastRescoreResponse, RecastResource, type RecastRunSnapshot, type RecastScriptImportResult, type RecastScriptValidation, type RecastScriptValidationError, type ReduceInput, ReduceResource, type ReduceResult, type ReferencePhoto, type ReferencePhotoKind, type ResolveRecastGateInput, type RotateSecretResult, type RunAndWaitOptions, type RunManyResult, type RunNodeResult, type RunWorkflowParams, type RunWorkflowResult, type Shot, type ShotEntityRef, type ShotMode, ShotsResource, StaticTokenAuth, type StopVideoProResult, StorageExceededError, type StructuredReferenceParams, type Template, type TemplateBrowseCard, type TemplateSort, TemplatesResource, type TutorialCategory, type TutorialFlowItem, type TutorialVideoItem, TutorialsResource, UnauthorizedError, type UpdateCreatureInput, type UpdateCreatureResult, type UpdateDeveloperAppInput, type UpdateLocationInput, type UpdateLocationResult, type UpdateObjectInput, type UpdateObjectResult, type UpdateProjectInput, type UpdateShotInput, type UpdateWorkflowInput, type UploadResult, UploadsResource, type UpsertCharacterInput, type UpsertCharacterResult, type UpsertCreatureInput, type UpsertCreatureResult, type UpsertObjectInput, type UpsertObjectResult, type UserBalance, type UserIdentity, type VcpAnalysis, type VcpAnalysisSpeaker, type VcpAnalyzeInput, type VcpExportInput, type VcpExportTrack, type VideoMetadata, VideoProResource, type VoiceChangerProInput, type VoiceChangerProVoice, type VoiceDesignInput, type VoiceRemixInput, VoicesResource, type Workflow, WorkflowConflictError, type WorkflowExecution, type WorkflowExecutionSummary, WorkflowsResource, WorkspacesResource, buildPersonSeedPrompt, createClient, supabaseAuth, throwFromResponse };
5764
+ export { type AccessTokenResponse, type AnalyzeInput, type AnalyzeResult, type AppRun, type AppRunResult, type ApplyChatProposalResult, type ApproveCreatureMainImageResult, type ApproveMainImageResult, type ApproveObjectMainImageResult, type ApprovePortraitResult, AppsResource, AudioResource, type Auth, type BranchPipelineInput, type BranchPipelineResult, type BrowseTemplatesParams, type BrowseTemplatesResult, CREATURE_ASSET_TYPES, CallbackAuth, type CancelExecutionParams, type CancelJobResult, CatalogsResource, type Character, type CharacterDetail, type CharacterUsage, CharactersResource, type ChatStageResult, type ChatTurn, type ClientOptions, type CloneTemplateParams, type CloneTemplateResult, CommunityResource, type ContinueVideoProResult, type CreateCreatureInput, type CreateDeveloperAppInput, type CreateDeveloperAppResult, type CreateLocationInput, type CreateObjectInput, type CreateOrgInput, type CreateProjectInput, type CreateRecastInput, type CreateShotInput, type CreateWorkflowInput, type CreateWorkspaceInput, type Creature, type CreatureAssetType, type CreatureDetail, type CreatureReferencePhoto, type CreatureReferencePhotoKind, CreaturesResource, CreditsResource, type DeleteAppRunResult, type DeveloperApp, type DeveloperAppScope, type DeveloperAppStatus, DeveloperAppsResource, type DownloadVideoProgress, type DubbingInput, type DuplicateCharacterInput, type EnhanceInput, type EstimateRecastInput, type EstimateRecastRescoreInput, type ExchangeCodeInput, type ExecutionStatus, type ExecutionTriggerType, ExecutionsResource, type FactoryPresetsResult, ForbiddenError, type GenerateAssetInput, type GenerateCharacterInput, type GenerateCharacterResult, type GenerateCreatureAssetInput, type GenerateCreatureAssetResult, type GenerateCreatureInput, type GenerateCreatureMotionInput, type GenerateCreatureMotionResult, type GenerateCreatureResult, type GenerateImageParams, type GenerateInput, type GenerateLocationAssetInput, type GenerateLocationInput, type GenerateLocationResult, type GenerateMotionInput, type GenerateObjectAssetInput, type GenerateObjectAssetResult, type GenerateObjectInput, type GenerateObjectMotionInput, type GenerateObjectMotionResult, type GenerateObjectResult, type GenerateSurroundContinuationInput, type GenerateVideoParams, type GetPickerCatalogOptions, InsufficientCreditsError, type InviteInput, type Job, JobAbortedError, JobFailedError, type JobStatus, type JobStatusResult, JobTimeoutError, JobsResource, type LibraryAsset, LibraryResource, type ListAppRunsParams, type ListAppsParams, type ListAppsResult, type ListCharactersParams, type ListCharactersResult, type ListCreaturesParams, type ListExecutionsForWorkflowParams, type ListExecutionsPage, type ListInvitationsOptions, type ListLibraryParams, type ListLibraryResult, type ListLocationsParams, type ListModelsOptions, type ListObjectsParams, type ListWorkflowsParams, type Location, type LocationDetail, type LocationReferencePhoto, type LocationReferencePhotoKind, LocationsResource, MediaResource, type ModelCostsResult, type ModelSummary, type ModelsListResult, ModelsResource, NodaroClient, NodaroError, type NodeCategory, type NodeDescriptor, type NodeExecutionState, type NodeInputField, type NodeInputSchema, type NodeJobOutput, type NodePreset, type NodePresetGroup, NodesResource, NotFoundError, type OAuthAppInfo, OAuthResource, type Object$1 as Object, type ObjectCategory, type ObjectDetail, type ObjectReferencePhoto, type ObjectReferencePhotoKind, ObjectsResource, OrganizationsResource, type OutputType, type PickerCatalog, type PickerCatalogSummary, PickerCatalogsResource, type PickerDimension, type PickerOption, PipelinesResource, PresetsResource, type Project, type ProjectedCatalog, type ProjectedCatalogDimension, type ProjectedCatalogOption, ProjectsResource, PromptHelperResource, type PromptResult, type PublishedApp, type PublishedAppDetail, RateLimitedError, type RecaptionCreatureResult, type RecaptionLocationResult, type RecaptionObjectResult, type RecaptionResult, type RecastAudioLayerName, type RecastAudioManifestV1, type RecastAudioMix, type RecastAudioMixControl, type RecastAudioSectionReplacement, type RecastEstimate, type RecastRescoreOperation, type RecastRescoreQuote, type RecastRescoreReplacement, type RecastRescoreRequestV2, type RecastRescoreResponse, RecastResource, type RecastRunSnapshot, type RecastScriptImportResult, type RecastScriptValidation, type RecastScriptValidationError, type ReduceInput, ReduceResource, type ReduceResult, type ReferencePhoto, type ReferencePhotoKind, type ResolveRecastGateInput, type RotateSecretResult, type RunAndWaitOptions, type RunManyResult, type RunNodeResult, type RunWorkflowParams, type RunWorkflowResult, type Shot, type ShotEntityRef, type ShotMode, ShotsResource, StaticTokenAuth, type StopVideoProResult, StorageExceededError, type StructuredReferenceParams, type Template, type TemplateBrowseCard, type TemplateSort, TemplatesResource, type TutorialCategory, type TutorialFlowItem, type TutorialVideoItem, TutorialsResource, UnauthorizedError, type UpdateCreatureInput, type UpdateCreatureResult, type UpdateDeveloperAppInput, type UpdateLocationInput, type UpdateLocationResult, type UpdateObjectInput, type UpdateObjectResult, type UpdateProjectInput, type UpdateShotInput, type UpdateWorkflowInput, type UploadResult, UploadsResource, type UpsertCharacterInput, type UpsertCharacterResult, type UpsertCreatureInput, type UpsertCreatureResult, type UpsertObjectInput, type UpsertObjectResult, type UserBalance, type UserIdentity, type VcpAnalysis, type VcpAnalysisSpeaker, type VcpAnalyzeInput, type VcpExportInput, type VcpExportTrack, type VideoMetadata, VideoProResource, type VoiceChangerProInput, type VoiceChangerProVoice, type VoiceDesignInput, type VoiceRemixInput, VoicesResource, type Workflow, WorkflowConflictError, type WorkflowExecution, type WorkflowExecutionSummary, WorkflowsResource, WorkspacesResource, buildPersonSeedPrompt, createClient, supabaseAuth, throwFromResponse };