@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.cjs +101 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +194 -4
- package/dist/index.d.ts +194 -4
- package/dist/index.js +101 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
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
|
-
*
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -124,11 +124,50 @@ function throwFromResponse(status, body) {
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
// src/resources/workflows.ts
|
|
127
|
+
var WorkflowCollaboratorsResource = class {
|
|
128
|
+
constructor(client) {
|
|
129
|
+
this.client = client;
|
|
130
|
+
}
|
|
131
|
+
client;
|
|
132
|
+
/** List a workflow's collaborators (id, name, avatar, role — never email). */
|
|
133
|
+
list(workflowId) {
|
|
134
|
+
return this.client.request(
|
|
135
|
+
"GET",
|
|
136
|
+
`/v1/workflows/${encodeURIComponent(workflowId)}/collaborators`
|
|
137
|
+
);
|
|
138
|
+
}
|
|
139
|
+
/** Add a collaborator by `userId` OR `email` (exactly one), at the given role. */
|
|
140
|
+
add(workflowId, input) {
|
|
141
|
+
return this.client.request(
|
|
142
|
+
"POST",
|
|
143
|
+
`/v1/workflows/${encodeURIComponent(workflowId)}/collaborators`,
|
|
144
|
+
{ body: input }
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
/** Change a collaborator's role. */
|
|
148
|
+
update(workflowId, userId, input) {
|
|
149
|
+
return this.client.request(
|
|
150
|
+
"PATCH",
|
|
151
|
+
`/v1/workflows/${encodeURIComponent(workflowId)}/collaborators/${encodeURIComponent(userId)}`,
|
|
152
|
+
{ body: input }
|
|
153
|
+
);
|
|
154
|
+
}
|
|
155
|
+
/** Remove a collaborator — or yourself. Returns `{ success: true }`. */
|
|
156
|
+
remove(workflowId, userId) {
|
|
157
|
+
return this.client.request(
|
|
158
|
+
"DELETE",
|
|
159
|
+
`/v1/workflows/${encodeURIComponent(workflowId)}/collaborators/${encodeURIComponent(userId)}`
|
|
160
|
+
);
|
|
161
|
+
}
|
|
162
|
+
};
|
|
127
163
|
var WorkflowsResource = class {
|
|
128
164
|
constructor(client) {
|
|
129
165
|
this.client = client;
|
|
166
|
+
this.collaborators = new WorkflowCollaboratorsResource(client);
|
|
130
167
|
}
|
|
131
168
|
client;
|
|
169
|
+
/** The people this workflow is shared with. See {@link WorkflowCollaboratorsResource}. */
|
|
170
|
+
collaborators;
|
|
132
171
|
/** List workflows for a project. Returns metadata only — `nodes`/`edges` are not included. */
|
|
133
172
|
list(params) {
|
|
134
173
|
return this.client.request(
|
|
@@ -210,6 +249,37 @@ var WorkflowsResource = class {
|
|
|
210
249
|
body: { projectId, workflow_json: workflowJson }
|
|
211
250
|
});
|
|
212
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* Set a workflow's visibility — `"private"` (creator + explicit collaborators)
|
|
254
|
+
* or `"workspace"` (everyone in its workspace). Only the creator or a workspace
|
|
255
|
+
* admin may change it; anyone else gets HTTP 403. Thin wrapper over `update()`:
|
|
256
|
+
* the visibility lever lives on `PATCH /v1/workflows/:id`.
|
|
257
|
+
*/
|
|
258
|
+
setVisibility(id, visibility) {
|
|
259
|
+
return this.client.request("PATCH", `/v1/workflows/${encodeURIComponent(id)}`, {
|
|
260
|
+
body: { visibility }
|
|
261
|
+
});
|
|
262
|
+
}
|
|
263
|
+
/**
|
|
264
|
+
* Move a workflow to another project (`POST /v1/workflows/:id/move`); its folder
|
|
265
|
+
* is cleared. When the move takes the workflow out of a workspace, collaborator
|
|
266
|
+
* grants that came from that workspace are dropped and returned as
|
|
267
|
+
* `droppedCollaborators`.
|
|
268
|
+
*/
|
|
269
|
+
move(id, params) {
|
|
270
|
+
return this.client.request("POST", `/v1/workflows/${encodeURIComponent(id)}/move`, {
|
|
271
|
+
body: params
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* Workflows other people shared with you (`GET /v1/workflows/shared-with-me`) —
|
|
276
|
+
* grants on work that is NOT in a workspace you belong to (workspace work already
|
|
277
|
+
* shows in that workspace's own lists). Each carries the `grantedRole` you hold.
|
|
278
|
+
* Empty when the organizations feature is off server-side.
|
|
279
|
+
*/
|
|
280
|
+
sharedWithMe() {
|
|
281
|
+
return this.client.request("GET", "/v1/workflows/shared-with-me");
|
|
282
|
+
}
|
|
213
283
|
};
|
|
214
284
|
|
|
215
285
|
// src/resources/projects.ts
|
|
@@ -762,6 +832,8 @@ var LocationsResource = class {
|
|
|
762
832
|
list(params = {}) {
|
|
763
833
|
const query = {};
|
|
764
834
|
if (params.archived) query.archived = "true";
|
|
835
|
+
if (params.limit !== void 0) query.limit = String(params.limit);
|
|
836
|
+
if (params.cursor) query.cursor = params.cursor;
|
|
765
837
|
return this.client.request("GET", "/v1/locations", { query });
|
|
766
838
|
}
|
|
767
839
|
/**
|
|
@@ -939,6 +1011,8 @@ var ObjectsResource = class {
|
|
|
939
1011
|
const query = {};
|
|
940
1012
|
if (params.archived) query.archived = "true";
|
|
941
1013
|
if (params.projectId) query.projectId = params.projectId;
|
|
1014
|
+
if (params.limit !== void 0) query.limit = String(params.limit);
|
|
1015
|
+
if (params.cursor) query.cursor = params.cursor;
|
|
942
1016
|
return this.client.request("GET", "/v1/objects", { query });
|
|
943
1017
|
}
|
|
944
1018
|
/**
|
|
@@ -1123,6 +1197,8 @@ var CreaturesResource = class {
|
|
|
1123
1197
|
const query = {};
|
|
1124
1198
|
if (params.archived) query.archived = "true";
|
|
1125
1199
|
if (params.projectId) query.projectId = params.projectId;
|
|
1200
|
+
if (params.limit !== void 0) query.limit = String(params.limit);
|
|
1201
|
+
if (params.cursor) query.cursor = params.cursor;
|
|
1126
1202
|
return this.client.request("GET", "/v1/creatures", { query });
|
|
1127
1203
|
}
|
|
1128
1204
|
/**
|
|
@@ -1786,7 +1862,13 @@ var MediaResource = class {
|
|
|
1786
1862
|
* gives per-image RELATIVE size hints for the smart layout: `0` auto
|
|
1787
1863
|
* ("don't care", default), `1` big (~2× linear vs medium), `2` medium,
|
|
1788
1864
|
* `3` small (~½ linear). All-equal hints change nothing; grid ignores them.
|
|
1789
|
-
*
|
|
1865
|
+
* For storyboards, set `numbered` to stamp a 1-based sequence badge at each
|
|
1866
|
+
* image's corner (top-left by default; `badgePosition: "top-right"` moves it;
|
|
1867
|
+
* in `imageUrls` order) and pass `imageLabels`
|
|
1868
|
+
* (index-aligned with `imageUrls`; `null`/`""`/omitted = no caption for that
|
|
1869
|
+
* image) to caption images after the number, e.g. `3 · Close-up`. Badges are
|
|
1870
|
+
* an overlay only — they never change the layout, the output size or the
|
|
1871
|
+
* credit cost. Poll `jobs.get(jobId)` for the finished image.
|
|
1790
1872
|
*/
|
|
1791
1873
|
imageCollage(input) {
|
|
1792
1874
|
return this.client.request("POST", "/v1/image-collage", { body: input });
|
|
@@ -2051,6 +2133,20 @@ var PickerCatalogsResource = class {
|
|
|
2051
2133
|
}
|
|
2052
2134
|
};
|
|
2053
2135
|
|
|
2136
|
+
// src/resources/catalogs.ts
|
|
2137
|
+
var CatalogsResource = class {
|
|
2138
|
+
constructor(client) {
|
|
2139
|
+
this.client = client;
|
|
2140
|
+
}
|
|
2141
|
+
client;
|
|
2142
|
+
/** Every catalog, projected & pack-composed (honors the deployment's
|
|
2143
|
+
* registered vendored packs). Cached publicly 5 min. */
|
|
2144
|
+
list(opts = {}) {
|
|
2145
|
+
const qs = opts.detail ? `?detail=${opts.detail}` : "";
|
|
2146
|
+
return this.client.request("GET", `/v1/catalogs${qs}`);
|
|
2147
|
+
}
|
|
2148
|
+
};
|
|
2149
|
+
|
|
2054
2150
|
// src/resources/models.ts
|
|
2055
2151
|
var ModelsResource = class {
|
|
2056
2152
|
constructor(client) {
|
|
@@ -2518,7 +2614,7 @@ var WorkspacesResource = class {
|
|
|
2518
2614
|
return this.client.request("POST", "/v1/workspaces/join", { body: { code } });
|
|
2519
2615
|
}
|
|
2520
2616
|
};
|
|
2521
|
-
var SDK_VERSION = "1.
|
|
2617
|
+
var SDK_VERSION = "1.22.0" ;
|
|
2522
2618
|
var CLIENT_HEADER = "X-Nodaro-Client";
|
|
2523
2619
|
var isBrowser = () => typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
2524
2620
|
var NodaroClient = class _NodaroClient {
|
|
@@ -2563,6 +2659,7 @@ var NodaroClient = class _NodaroClient {
|
|
|
2563
2659
|
library;
|
|
2564
2660
|
presets;
|
|
2565
2661
|
pickerCatalogs;
|
|
2662
|
+
catalogs;
|
|
2566
2663
|
models;
|
|
2567
2664
|
shots;
|
|
2568
2665
|
recast;
|
|
@@ -2605,6 +2702,7 @@ var NodaroClient = class _NodaroClient {
|
|
|
2605
2702
|
this.library = new LibraryResource(this);
|
|
2606
2703
|
this.presets = new PresetsResource(this);
|
|
2607
2704
|
this.pickerCatalogs = new PickerCatalogsResource(this);
|
|
2705
|
+
this.catalogs = new CatalogsResource(this);
|
|
2608
2706
|
this.models = new ModelsResource(this);
|
|
2609
2707
|
this.shots = new ShotsResource(this);
|
|
2610
2708
|
this.recast = new RecastResource(this);
|
|
@@ -2737,6 +2835,6 @@ function supabaseAuth(supabase) {
|
|
|
2737
2835
|
};
|
|
2738
2836
|
}
|
|
2739
2837
|
|
|
2740
|
-
export { AppsResource, AudioResource, CREATURE_ASSET_TYPES, CallbackAuth, CharactersResource, CommunityResource, CreaturesResource, CreditsResource, DeveloperAppsResource, ExecutionsResource, ForbiddenError, InsufficientCreditsError, JobAbortedError, JobFailedError, JobTimeoutError, JobsResource, LibraryResource, LocationsResource, MediaResource, ModelsResource, NodaroClient, NodaroError, NodesResource, NotFoundError, OAuthResource, ObjectsResource, OrganizationsResource, PickerCatalogsResource, PipelinesResource, PresetsResource, ProjectsResource, PromptHelperResource, RateLimitedError, RecastResource, ReduceResource, ShotsResource, StaticTokenAuth, StorageExceededError, TemplatesResource, TutorialsResource, UnauthorizedError, UploadsResource, VideoProResource, VoicesResource, WorkflowConflictError, WorkflowsResource, WorkspacesResource, buildPersonSeedPrompt, createClient, supabaseAuth, throwFromResponse };
|
|
2838
|
+
export { AppsResource, AudioResource, CREATURE_ASSET_TYPES, CallbackAuth, CatalogsResource, CharactersResource, CommunityResource, CreaturesResource, CreditsResource, DeveloperAppsResource, ExecutionsResource, ForbiddenError, InsufficientCreditsError, JobAbortedError, JobFailedError, JobTimeoutError, JobsResource, LibraryResource, LocationsResource, MediaResource, ModelsResource, NodaroClient, NodaroError, NodesResource, NotFoundError, OAuthResource, ObjectsResource, OrganizationsResource, PickerCatalogsResource, PipelinesResource, PresetsResource, ProjectsResource, PromptHelperResource, RateLimitedError, RecastResource, ReduceResource, ShotsResource, StaticTokenAuth, StorageExceededError, TemplatesResource, TutorialsResource, UnauthorizedError, UploadsResource, VideoProResource, VoicesResource, WorkflowConflictError, WorkflowsResource, WorkspacesResource, buildPersonSeedPrompt, createClient, supabaseAuth, throwFromResponse };
|
|
2741
2839
|
//# sourceMappingURL=index.js.map
|
|
2742
2840
|
//# sourceMappingURL=index.js.map
|