@supernova-studio/client 1.69.0 → 1.69.2
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.mts +868 -390
- package/dist/index.d.ts +868 -390
- package/dist/index.js +56 -53
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1685 -1682
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _supernova_studio_model from '@supernova-studio/model';
|
|
2
|
-
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType,
|
|
2
|
+
import { AnalyzeCodeComponentsInPackage, DependencyDefinition, Registry, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, SsoProvider, PublishedDocPageVisitsEntry, DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageSnapshot, ElementGroupSnapshot, DocumentationPageApproval, OmitStrict, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType, ForgeProjectArtifact, ProjectFeature, ForgeSection, ForgeRelation } from '@supernova-studio/model';
|
|
3
3
|
import z$1, { z, ZodSchema, ZodTypeDef } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
5
5
|
import { RequestInit } from 'node-fetch';
|
|
@@ -54251,6 +54251,246 @@ declare const DTOForgeProjectIterationTagSet: z$1.ZodObject<{
|
|
|
54251
54251
|
};
|
|
54252
54252
|
}>;
|
|
54253
54253
|
type DTOForgeProjectIterationTagSet = z$1.infer<typeof DTOForgeProjectIterationTagSet>;
|
|
54254
|
+
declare const DTOForgeProjectIterationUpdated: z$1.ZodObject<{
|
|
54255
|
+
type: z$1.ZodLiteral<"ProjectIterationUpdated">;
|
|
54256
|
+
data: z$1.ZodObject<{
|
|
54257
|
+
id: z$1.ZodString;
|
|
54258
|
+
name: z$1.ZodString;
|
|
54259
|
+
baseIterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
54260
|
+
startedFromMessageId: z$1.ZodString;
|
|
54261
|
+
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54262
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
54263
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
54264
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54265
|
+
description: z$1.ZodString;
|
|
54266
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
54267
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54268
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54269
|
+
description: string;
|
|
54270
|
+
}, {
|
|
54271
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54272
|
+
description: string;
|
|
54273
|
+
}>>;
|
|
54274
|
+
creditsCost: z$1.ZodOptional<z$1.ZodNumber>;
|
|
54275
|
+
staticPreviewUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
54276
|
+
isBookmarked: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54277
|
+
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
54278
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
54279
|
+
id: z$1.ZodString;
|
|
54280
|
+
name: z$1.ZodString;
|
|
54281
|
+
deduplicationKey: z$1.ZodString;
|
|
54282
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54283
|
+
storagePath: z$1.ZodString;
|
|
54284
|
+
url: z$1.ZodString;
|
|
54285
|
+
size: z$1.ZodNumber;
|
|
54286
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
54287
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
54288
|
+
userId: z$1.ZodString;
|
|
54289
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54290
|
+
type: "UserUpload";
|
|
54291
|
+
userId: string;
|
|
54292
|
+
}, {
|
|
54293
|
+
type: "UserUpload";
|
|
54294
|
+
userId: string;
|
|
54295
|
+
}>, z$1.ZodObject<{
|
|
54296
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
54297
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
54298
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54299
|
+
type: "Figma";
|
|
54300
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54301
|
+
}, {
|
|
54302
|
+
type: "Figma";
|
|
54303
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54304
|
+
}>]>>;
|
|
54305
|
+
}, "id" | "url" | "source"> & {
|
|
54306
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
54307
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54308
|
+
id: string;
|
|
54309
|
+
url: string;
|
|
54310
|
+
name?: string | undefined;
|
|
54311
|
+
source?: {
|
|
54312
|
+
type: "UserUpload";
|
|
54313
|
+
userId: string;
|
|
54314
|
+
} | {
|
|
54315
|
+
type: "Figma";
|
|
54316
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54317
|
+
} | undefined;
|
|
54318
|
+
}, {
|
|
54319
|
+
id: string;
|
|
54320
|
+
url: string;
|
|
54321
|
+
name?: string | undefined;
|
|
54322
|
+
source?: {
|
|
54323
|
+
type: "UserUpload";
|
|
54324
|
+
userId: string;
|
|
54325
|
+
} | {
|
|
54326
|
+
type: "Figma";
|
|
54327
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54328
|
+
} | undefined;
|
|
54329
|
+
}>>;
|
|
54330
|
+
createdAt: z$1.ZodString;
|
|
54331
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54332
|
+
artifactsDiff: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodObject<{
|
|
54333
|
+
created: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54334
|
+
updated: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54335
|
+
deleted: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54336
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54337
|
+
created: string[];
|
|
54338
|
+
updated: string[];
|
|
54339
|
+
deleted: string[];
|
|
54340
|
+
}, {
|
|
54341
|
+
created?: string[] | undefined;
|
|
54342
|
+
updated?: string[] | undefined;
|
|
54343
|
+
deleted?: string[] | undefined;
|
|
54344
|
+
}>>>;
|
|
54345
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54346
|
+
id: string;
|
|
54347
|
+
createdAt: string;
|
|
54348
|
+
name: string;
|
|
54349
|
+
startedFromMessageId: string;
|
|
54350
|
+
updatedAt?: string | undefined;
|
|
54351
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54352
|
+
error?: {
|
|
54353
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54354
|
+
description: string;
|
|
54355
|
+
} | undefined;
|
|
54356
|
+
thumbnailUrl?: string | undefined;
|
|
54357
|
+
baseIterationId?: string | undefined;
|
|
54358
|
+
isInProgress?: boolean | undefined;
|
|
54359
|
+
errorDescription?: string | null | undefined;
|
|
54360
|
+
creditsCost?: number | undefined;
|
|
54361
|
+
staticPreviewUrl?: string | undefined;
|
|
54362
|
+
isBookmarked?: boolean | undefined;
|
|
54363
|
+
thumbnail?: {
|
|
54364
|
+
id: string;
|
|
54365
|
+
url: string;
|
|
54366
|
+
name?: string | undefined;
|
|
54367
|
+
source?: {
|
|
54368
|
+
type: "UserUpload";
|
|
54369
|
+
userId: string;
|
|
54370
|
+
} | {
|
|
54371
|
+
type: "Figma";
|
|
54372
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54373
|
+
} | undefined;
|
|
54374
|
+
} | undefined;
|
|
54375
|
+
artifactsDiff?: {
|
|
54376
|
+
created: string[];
|
|
54377
|
+
updated: string[];
|
|
54378
|
+
deleted: string[];
|
|
54379
|
+
} | null | undefined;
|
|
54380
|
+
}, {
|
|
54381
|
+
id: string;
|
|
54382
|
+
createdAt: string;
|
|
54383
|
+
name: string;
|
|
54384
|
+
startedFromMessageId: string;
|
|
54385
|
+
updatedAt?: string | undefined;
|
|
54386
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54387
|
+
error?: {
|
|
54388
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54389
|
+
description: string;
|
|
54390
|
+
} | undefined;
|
|
54391
|
+
thumbnailUrl?: string | undefined;
|
|
54392
|
+
baseIterationId?: string | undefined;
|
|
54393
|
+
isInProgress?: boolean | undefined;
|
|
54394
|
+
errorDescription?: string | null | undefined;
|
|
54395
|
+
creditsCost?: number | undefined;
|
|
54396
|
+
staticPreviewUrl?: string | undefined;
|
|
54397
|
+
isBookmarked?: boolean | undefined;
|
|
54398
|
+
thumbnail?: {
|
|
54399
|
+
id: string;
|
|
54400
|
+
url: string;
|
|
54401
|
+
name?: string | undefined;
|
|
54402
|
+
source?: {
|
|
54403
|
+
type: "UserUpload";
|
|
54404
|
+
userId: string;
|
|
54405
|
+
} | {
|
|
54406
|
+
type: "Figma";
|
|
54407
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54408
|
+
} | undefined;
|
|
54409
|
+
} | undefined;
|
|
54410
|
+
artifactsDiff?: {
|
|
54411
|
+
created?: string[] | undefined;
|
|
54412
|
+
updated?: string[] | undefined;
|
|
54413
|
+
deleted?: string[] | undefined;
|
|
54414
|
+
} | null | undefined;
|
|
54415
|
+
}>;
|
|
54416
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54417
|
+
type: "ProjectIterationUpdated";
|
|
54418
|
+
data: {
|
|
54419
|
+
id: string;
|
|
54420
|
+
createdAt: string;
|
|
54421
|
+
name: string;
|
|
54422
|
+
startedFromMessageId: string;
|
|
54423
|
+
updatedAt?: string | undefined;
|
|
54424
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54425
|
+
error?: {
|
|
54426
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54427
|
+
description: string;
|
|
54428
|
+
} | undefined;
|
|
54429
|
+
thumbnailUrl?: string | undefined;
|
|
54430
|
+
baseIterationId?: string | undefined;
|
|
54431
|
+
isInProgress?: boolean | undefined;
|
|
54432
|
+
errorDescription?: string | null | undefined;
|
|
54433
|
+
creditsCost?: number | undefined;
|
|
54434
|
+
staticPreviewUrl?: string | undefined;
|
|
54435
|
+
isBookmarked?: boolean | undefined;
|
|
54436
|
+
thumbnail?: {
|
|
54437
|
+
id: string;
|
|
54438
|
+
url: string;
|
|
54439
|
+
name?: string | undefined;
|
|
54440
|
+
source?: {
|
|
54441
|
+
type: "UserUpload";
|
|
54442
|
+
userId: string;
|
|
54443
|
+
} | {
|
|
54444
|
+
type: "Figma";
|
|
54445
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54446
|
+
} | undefined;
|
|
54447
|
+
} | undefined;
|
|
54448
|
+
artifactsDiff?: {
|
|
54449
|
+
created: string[];
|
|
54450
|
+
updated: string[];
|
|
54451
|
+
deleted: string[];
|
|
54452
|
+
} | null | undefined;
|
|
54453
|
+
};
|
|
54454
|
+
}, {
|
|
54455
|
+
type: "ProjectIterationUpdated";
|
|
54456
|
+
data: {
|
|
54457
|
+
id: string;
|
|
54458
|
+
createdAt: string;
|
|
54459
|
+
name: string;
|
|
54460
|
+
startedFromMessageId: string;
|
|
54461
|
+
updatedAt?: string | undefined;
|
|
54462
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54463
|
+
error?: {
|
|
54464
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54465
|
+
description: string;
|
|
54466
|
+
} | undefined;
|
|
54467
|
+
thumbnailUrl?: string | undefined;
|
|
54468
|
+
baseIterationId?: string | undefined;
|
|
54469
|
+
isInProgress?: boolean | undefined;
|
|
54470
|
+
errorDescription?: string | null | undefined;
|
|
54471
|
+
creditsCost?: number | undefined;
|
|
54472
|
+
staticPreviewUrl?: string | undefined;
|
|
54473
|
+
isBookmarked?: boolean | undefined;
|
|
54474
|
+
thumbnail?: {
|
|
54475
|
+
id: string;
|
|
54476
|
+
url: string;
|
|
54477
|
+
name?: string | undefined;
|
|
54478
|
+
source?: {
|
|
54479
|
+
type: "UserUpload";
|
|
54480
|
+
userId: string;
|
|
54481
|
+
} | {
|
|
54482
|
+
type: "Figma";
|
|
54483
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54484
|
+
} | undefined;
|
|
54485
|
+
} | undefined;
|
|
54486
|
+
artifactsDiff?: {
|
|
54487
|
+
created?: string[] | undefined;
|
|
54488
|
+
updated?: string[] | undefined;
|
|
54489
|
+
deleted?: string[] | undefined;
|
|
54490
|
+
} | null | undefined;
|
|
54491
|
+
};
|
|
54492
|
+
}>;
|
|
54493
|
+
type DTOForgeProjectIterationUpdated = z$1.infer<typeof DTOForgeProjectIterationUpdated>;
|
|
54254
54494
|
declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
54255
54495
|
type: z$1.ZodLiteral<"ProjectMembersCreated">;
|
|
54256
54496
|
data: z$1.ZodArray<z$1.ZodObject<{
|
|
@@ -54582,6 +54822,244 @@ declare const DTOForgeProjectRoomEvent: z$1.ZodDiscriminatedUnion<"type", [z$1.Z
|
|
|
54582
54822
|
featureId: string;
|
|
54583
54823
|
messageId?: string | undefined;
|
|
54584
54824
|
};
|
|
54825
|
+
}>, z$1.ZodObject<{
|
|
54826
|
+
type: z$1.ZodLiteral<"ProjectIterationUpdated">;
|
|
54827
|
+
data: z$1.ZodObject<{
|
|
54828
|
+
id: z$1.ZodString;
|
|
54829
|
+
name: z$1.ZodString;
|
|
54830
|
+
baseIterationId: z$1.ZodOptional<z$1.ZodString>;
|
|
54831
|
+
startedFromMessageId: z$1.ZodString;
|
|
54832
|
+
isInProgress: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54833
|
+
state: z$1.ZodOptional<z$1.ZodEnum<["InProgress", "Success", "Error", "Timeout"]>>;
|
|
54834
|
+
errorDescription: z$1.ZodOptional<z$1.ZodNullable<z$1.ZodString>>;
|
|
54835
|
+
error: z$1.ZodOptional<z$1.ZodObject<{
|
|
54836
|
+
description: z$1.ZodString;
|
|
54837
|
+
type: z$1.ZodEnum<["PackageInstall", "Build", "Compile", "Unknown", "Runtime"]>;
|
|
54838
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54839
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54840
|
+
description: string;
|
|
54841
|
+
}, {
|
|
54842
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54843
|
+
description: string;
|
|
54844
|
+
}>>;
|
|
54845
|
+
creditsCost: z$1.ZodOptional<z$1.ZodNumber>;
|
|
54846
|
+
staticPreviewUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
54847
|
+
isBookmarked: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54848
|
+
thumbnailUrl: z$1.ZodOptional<z$1.ZodString>;
|
|
54849
|
+
thumbnail: z$1.ZodOptional<z$1.ZodObject<Pick<{
|
|
54850
|
+
id: z$1.ZodString;
|
|
54851
|
+
name: z$1.ZodString;
|
|
54852
|
+
deduplicationKey: z$1.ZodString;
|
|
54853
|
+
pendingUpload: z$1.ZodOptional<z$1.ZodBoolean>;
|
|
54854
|
+
storagePath: z$1.ZodString;
|
|
54855
|
+
url: z$1.ZodString;
|
|
54856
|
+
size: z$1.ZodNumber;
|
|
54857
|
+
source: z$1.ZodOptional<z$1.ZodDiscriminatedUnion<"type", [z$1.ZodObject<{
|
|
54858
|
+
type: z$1.ZodLiteral<"UserUpload">;
|
|
54859
|
+
userId: z$1.ZodString;
|
|
54860
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54861
|
+
type: "UserUpload";
|
|
54862
|
+
userId: string;
|
|
54863
|
+
}, {
|
|
54864
|
+
type: "UserUpload";
|
|
54865
|
+
userId: string;
|
|
54866
|
+
}>, z$1.ZodObject<{
|
|
54867
|
+
type: z$1.ZodLiteral<"Figma">;
|
|
54868
|
+
renderMode: z$1.ZodEnum<["Image", "HTML", "JSON"]>;
|
|
54869
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54870
|
+
type: "Figma";
|
|
54871
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54872
|
+
}, {
|
|
54873
|
+
type: "Figma";
|
|
54874
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54875
|
+
}>]>>;
|
|
54876
|
+
}, "id" | "url" | "source"> & {
|
|
54877
|
+
name: z$1.ZodOptional<z$1.ZodString>;
|
|
54878
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54879
|
+
id: string;
|
|
54880
|
+
url: string;
|
|
54881
|
+
name?: string | undefined;
|
|
54882
|
+
source?: {
|
|
54883
|
+
type: "UserUpload";
|
|
54884
|
+
userId: string;
|
|
54885
|
+
} | {
|
|
54886
|
+
type: "Figma";
|
|
54887
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54888
|
+
} | undefined;
|
|
54889
|
+
}, {
|
|
54890
|
+
id: string;
|
|
54891
|
+
url: string;
|
|
54892
|
+
name?: string | undefined;
|
|
54893
|
+
source?: {
|
|
54894
|
+
type: "UserUpload";
|
|
54895
|
+
userId: string;
|
|
54896
|
+
} | {
|
|
54897
|
+
type: "Figma";
|
|
54898
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54899
|
+
} | undefined;
|
|
54900
|
+
}>>;
|
|
54901
|
+
createdAt: z$1.ZodString;
|
|
54902
|
+
updatedAt: z$1.ZodOptional<z$1.ZodString>;
|
|
54903
|
+
artifactsDiff: z$1.ZodNullable<z$1.ZodOptional<z$1.ZodObject<{
|
|
54904
|
+
created: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54905
|
+
updated: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54906
|
+
deleted: z$1.ZodDefault<z$1.ZodOptional<z$1.ZodArray<z$1.ZodString, "many">>>;
|
|
54907
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54908
|
+
created: string[];
|
|
54909
|
+
updated: string[];
|
|
54910
|
+
deleted: string[];
|
|
54911
|
+
}, {
|
|
54912
|
+
created?: string[] | undefined;
|
|
54913
|
+
updated?: string[] | undefined;
|
|
54914
|
+
deleted?: string[] | undefined;
|
|
54915
|
+
}>>>;
|
|
54916
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54917
|
+
id: string;
|
|
54918
|
+
createdAt: string;
|
|
54919
|
+
name: string;
|
|
54920
|
+
startedFromMessageId: string;
|
|
54921
|
+
updatedAt?: string | undefined;
|
|
54922
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54923
|
+
error?: {
|
|
54924
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54925
|
+
description: string;
|
|
54926
|
+
} | undefined;
|
|
54927
|
+
thumbnailUrl?: string | undefined;
|
|
54928
|
+
baseIterationId?: string | undefined;
|
|
54929
|
+
isInProgress?: boolean | undefined;
|
|
54930
|
+
errorDescription?: string | null | undefined;
|
|
54931
|
+
creditsCost?: number | undefined;
|
|
54932
|
+
staticPreviewUrl?: string | undefined;
|
|
54933
|
+
isBookmarked?: boolean | undefined;
|
|
54934
|
+
thumbnail?: {
|
|
54935
|
+
id: string;
|
|
54936
|
+
url: string;
|
|
54937
|
+
name?: string | undefined;
|
|
54938
|
+
source?: {
|
|
54939
|
+
type: "UserUpload";
|
|
54940
|
+
userId: string;
|
|
54941
|
+
} | {
|
|
54942
|
+
type: "Figma";
|
|
54943
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54944
|
+
} | undefined;
|
|
54945
|
+
} | undefined;
|
|
54946
|
+
artifactsDiff?: {
|
|
54947
|
+
created: string[];
|
|
54948
|
+
updated: string[];
|
|
54949
|
+
deleted: string[];
|
|
54950
|
+
} | null | undefined;
|
|
54951
|
+
}, {
|
|
54952
|
+
id: string;
|
|
54953
|
+
createdAt: string;
|
|
54954
|
+
name: string;
|
|
54955
|
+
startedFromMessageId: string;
|
|
54956
|
+
updatedAt?: string | undefined;
|
|
54957
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54958
|
+
error?: {
|
|
54959
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54960
|
+
description: string;
|
|
54961
|
+
} | undefined;
|
|
54962
|
+
thumbnailUrl?: string | undefined;
|
|
54963
|
+
baseIterationId?: string | undefined;
|
|
54964
|
+
isInProgress?: boolean | undefined;
|
|
54965
|
+
errorDescription?: string | null | undefined;
|
|
54966
|
+
creditsCost?: number | undefined;
|
|
54967
|
+
staticPreviewUrl?: string | undefined;
|
|
54968
|
+
isBookmarked?: boolean | undefined;
|
|
54969
|
+
thumbnail?: {
|
|
54970
|
+
id: string;
|
|
54971
|
+
url: string;
|
|
54972
|
+
name?: string | undefined;
|
|
54973
|
+
source?: {
|
|
54974
|
+
type: "UserUpload";
|
|
54975
|
+
userId: string;
|
|
54976
|
+
} | {
|
|
54977
|
+
type: "Figma";
|
|
54978
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
54979
|
+
} | undefined;
|
|
54980
|
+
} | undefined;
|
|
54981
|
+
artifactsDiff?: {
|
|
54982
|
+
created?: string[] | undefined;
|
|
54983
|
+
updated?: string[] | undefined;
|
|
54984
|
+
deleted?: string[] | undefined;
|
|
54985
|
+
} | null | undefined;
|
|
54986
|
+
}>;
|
|
54987
|
+
}, "strip", z$1.ZodTypeAny, {
|
|
54988
|
+
type: "ProjectIterationUpdated";
|
|
54989
|
+
data: {
|
|
54990
|
+
id: string;
|
|
54991
|
+
createdAt: string;
|
|
54992
|
+
name: string;
|
|
54993
|
+
startedFromMessageId: string;
|
|
54994
|
+
updatedAt?: string | undefined;
|
|
54995
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
54996
|
+
error?: {
|
|
54997
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
54998
|
+
description: string;
|
|
54999
|
+
} | undefined;
|
|
55000
|
+
thumbnailUrl?: string | undefined;
|
|
55001
|
+
baseIterationId?: string | undefined;
|
|
55002
|
+
isInProgress?: boolean | undefined;
|
|
55003
|
+
errorDescription?: string | null | undefined;
|
|
55004
|
+
creditsCost?: number | undefined;
|
|
55005
|
+
staticPreviewUrl?: string | undefined;
|
|
55006
|
+
isBookmarked?: boolean | undefined;
|
|
55007
|
+
thumbnail?: {
|
|
55008
|
+
id: string;
|
|
55009
|
+
url: string;
|
|
55010
|
+
name?: string | undefined;
|
|
55011
|
+
source?: {
|
|
55012
|
+
type: "UserUpload";
|
|
55013
|
+
userId: string;
|
|
55014
|
+
} | {
|
|
55015
|
+
type: "Figma";
|
|
55016
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
55017
|
+
} | undefined;
|
|
55018
|
+
} | undefined;
|
|
55019
|
+
artifactsDiff?: {
|
|
55020
|
+
created: string[];
|
|
55021
|
+
updated: string[];
|
|
55022
|
+
deleted: string[];
|
|
55023
|
+
} | null | undefined;
|
|
55024
|
+
};
|
|
55025
|
+
}, {
|
|
55026
|
+
type: "ProjectIterationUpdated";
|
|
55027
|
+
data: {
|
|
55028
|
+
id: string;
|
|
55029
|
+
createdAt: string;
|
|
55030
|
+
name: string;
|
|
55031
|
+
startedFromMessageId: string;
|
|
55032
|
+
updatedAt?: string | undefined;
|
|
55033
|
+
state?: "InProgress" | "Success" | "Error" | "Timeout" | undefined;
|
|
55034
|
+
error?: {
|
|
55035
|
+
type: "Unknown" | "Build" | "PackageInstall" | "Compile" | "Runtime";
|
|
55036
|
+
description: string;
|
|
55037
|
+
} | undefined;
|
|
55038
|
+
thumbnailUrl?: string | undefined;
|
|
55039
|
+
baseIterationId?: string | undefined;
|
|
55040
|
+
isInProgress?: boolean | undefined;
|
|
55041
|
+
errorDescription?: string | null | undefined;
|
|
55042
|
+
creditsCost?: number | undefined;
|
|
55043
|
+
staticPreviewUrl?: string | undefined;
|
|
55044
|
+
isBookmarked?: boolean | undefined;
|
|
55045
|
+
thumbnail?: {
|
|
55046
|
+
id: string;
|
|
55047
|
+
url: string;
|
|
55048
|
+
name?: string | undefined;
|
|
55049
|
+
source?: {
|
|
55050
|
+
type: "UserUpload";
|
|
55051
|
+
userId: string;
|
|
55052
|
+
} | {
|
|
55053
|
+
type: "Figma";
|
|
55054
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
55055
|
+
} | undefined;
|
|
55056
|
+
} | undefined;
|
|
55057
|
+
artifactsDiff?: {
|
|
55058
|
+
created?: string[] | undefined;
|
|
55059
|
+
updated?: string[] | undefined;
|
|
55060
|
+
deleted?: string[] | undefined;
|
|
55061
|
+
} | null | undefined;
|
|
55062
|
+
};
|
|
54585
55063
|
}>]>;
|
|
54586
55064
|
type DTOForgeProjectRoomEvent = z$1.infer<typeof DTOForgeProjectRoomEvent>;
|
|
54587
55065
|
|
|
@@ -350767,6 +351245,51 @@ declare const DTOWorkspace: z.ZodObject<{
|
|
|
350767
351245
|
aiCustomInstruction?: string | undefined;
|
|
350768
351246
|
}>;
|
|
350769
351247
|
type DTOWorkspace = z.infer<typeof DTOWorkspace>;
|
|
351248
|
+
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
351249
|
+
valid: boolean;
|
|
351250
|
+
keys: string[];
|
|
351251
|
+
};
|
|
351252
|
+
declare const DTONpmRegistryUpdateInput: z.ZodObject<{
|
|
351253
|
+
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
351254
|
+
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
351255
|
+
bypassProxy: z.ZodOptional<z.ZodBoolean>;
|
|
351256
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
351257
|
+
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
351258
|
+
registryType: z.ZodString;
|
|
351259
|
+
authType: z.ZodString;
|
|
351260
|
+
authHeaderName: z.ZodString;
|
|
351261
|
+
authHeaderValue: z.ZodString;
|
|
351262
|
+
accessToken: z.ZodString;
|
|
351263
|
+
username: z.ZodString;
|
|
351264
|
+
password: z.ZodString;
|
|
351265
|
+
}, "strip", z.ZodTypeAny, {
|
|
351266
|
+
accessToken: string;
|
|
351267
|
+
username: string;
|
|
351268
|
+
registryType: string;
|
|
351269
|
+
authType: string;
|
|
351270
|
+
password: string;
|
|
351271
|
+
enabledScopes: string[];
|
|
351272
|
+
authHeaderName: string;
|
|
351273
|
+
authHeaderValue: string;
|
|
351274
|
+
customRegistryUrl?: string | undefined;
|
|
351275
|
+
bypassProxy?: boolean | undefined;
|
|
351276
|
+
npmProxyVersion?: number | undefined;
|
|
351277
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351278
|
+
}, {
|
|
351279
|
+
accessToken: string;
|
|
351280
|
+
username: string;
|
|
351281
|
+
registryType: string;
|
|
351282
|
+
authType: string;
|
|
351283
|
+
password: string;
|
|
351284
|
+
enabledScopes: string[];
|
|
351285
|
+
authHeaderName: string;
|
|
351286
|
+
authHeaderValue: string;
|
|
351287
|
+
customRegistryUrl?: string | undefined;
|
|
351288
|
+
bypassProxy?: boolean | undefined;
|
|
351289
|
+
npmProxyVersion?: number | undefined;
|
|
351290
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351291
|
+
}>;
|
|
351292
|
+
type DTONpmRegistryUpdateInput = z.infer<typeof DTONpmRegistryUpdateInput>;
|
|
350770
351293
|
declare const DTOWorkspaceCreateInput: z.ZodObject<{
|
|
350771
351294
|
name: z.ZodString;
|
|
350772
351295
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -350775,6 +351298,349 @@ declare const DTOWorkspaceCreateInput: z.ZodObject<{
|
|
|
350775
351298
|
name: string;
|
|
350776
351299
|
}>;
|
|
350777
351300
|
type DTOWorkspaceCreateInput = z.infer<typeof DTOWorkspaceCreateInput>;
|
|
351301
|
+
declare const DTOWorkspaceUpdateInput: z.ZodObject<{
|
|
351302
|
+
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
351303
|
+
isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
|
|
351304
|
+
isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
|
|
351305
|
+
entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
351306
|
+
isEnabled: z.ZodBoolean;
|
|
351307
|
+
name: z.ZodString;
|
|
351308
|
+
range: z.ZodEffects<z.ZodString, string, string>;
|
|
351309
|
+
}, "strip", z.ZodTypeAny, {
|
|
351310
|
+
name: string;
|
|
351311
|
+
isEnabled: boolean;
|
|
351312
|
+
range: string;
|
|
351313
|
+
}, {
|
|
351314
|
+
name: string;
|
|
351315
|
+
isEnabled: boolean;
|
|
351316
|
+
range: string;
|
|
351317
|
+
}>, "many">>;
|
|
351318
|
+
}, "strip", z.ZodTypeAny, {
|
|
351319
|
+
entries?: {
|
|
351320
|
+
name: string;
|
|
351321
|
+
isEnabled: boolean;
|
|
351322
|
+
range: string;
|
|
351323
|
+
}[] | undefined;
|
|
351324
|
+
isEnabledForCloud?: boolean | undefined;
|
|
351325
|
+
isEnabledForDocs?: boolean | undefined;
|
|
351326
|
+
}, {
|
|
351327
|
+
entries?: {
|
|
351328
|
+
name: string;
|
|
351329
|
+
isEnabled: boolean;
|
|
351330
|
+
range: string;
|
|
351331
|
+
}[] | undefined;
|
|
351332
|
+
isEnabledForCloud?: boolean | undefined;
|
|
351333
|
+
isEnabledForDocs?: boolean | undefined;
|
|
351334
|
+
}>>;
|
|
351335
|
+
sso: z.ZodOptional<z.ZodObject<{
|
|
351336
|
+
providerId: z.ZodOptional<z.ZodString>;
|
|
351337
|
+
defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
|
|
351338
|
+
autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
351339
|
+
skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
|
|
351340
|
+
areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
351341
|
+
isTestMode: z.ZodOptional<z.ZodBoolean>;
|
|
351342
|
+
emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
351343
|
+
metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
351344
|
+
}, "strip", z.ZodTypeAny, {
|
|
351345
|
+
providerId?: string | undefined;
|
|
351346
|
+
metadataXml?: string | null | undefined;
|
|
351347
|
+
emailDomains?: string[] | undefined;
|
|
351348
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
351349
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351350
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351351
|
+
areInvitesDisabled?: boolean | undefined;
|
|
351352
|
+
isTestMode?: boolean | undefined;
|
|
351353
|
+
}, {
|
|
351354
|
+
providerId?: string | undefined;
|
|
351355
|
+
metadataXml?: string | null | undefined;
|
|
351356
|
+
emailDomains?: string[] | undefined;
|
|
351357
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
351358
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351359
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351360
|
+
areInvitesDisabled?: boolean | undefined;
|
|
351361
|
+
isTestMode?: boolean | undefined;
|
|
351362
|
+
}>>;
|
|
351363
|
+
npmRegistrySettings: z.ZodOptional<z.ZodObject<{
|
|
351364
|
+
enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
351365
|
+
customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
351366
|
+
bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
351367
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
351368
|
+
npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
351369
|
+
registryType: z.ZodOptional<z.ZodString>;
|
|
351370
|
+
authType: z.ZodOptional<z.ZodString>;
|
|
351371
|
+
authHeaderName: z.ZodOptional<z.ZodString>;
|
|
351372
|
+
authHeaderValue: z.ZodOptional<z.ZodString>;
|
|
351373
|
+
accessToken: z.ZodOptional<z.ZodString>;
|
|
351374
|
+
username: z.ZodOptional<z.ZodString>;
|
|
351375
|
+
password: z.ZodOptional<z.ZodString>;
|
|
351376
|
+
}, "strip", z.ZodTypeAny, {
|
|
351377
|
+
accessToken?: string | undefined;
|
|
351378
|
+
username?: string | undefined;
|
|
351379
|
+
registryType?: string | undefined;
|
|
351380
|
+
customRegistryUrl?: string | undefined;
|
|
351381
|
+
authType?: string | undefined;
|
|
351382
|
+
password?: string | undefined;
|
|
351383
|
+
enabledScopes?: string[] | undefined;
|
|
351384
|
+
bypassProxy?: boolean | undefined;
|
|
351385
|
+
npmProxyVersion?: number | undefined;
|
|
351386
|
+
authHeaderName?: string | undefined;
|
|
351387
|
+
authHeaderValue?: string | undefined;
|
|
351388
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351389
|
+
}, {
|
|
351390
|
+
accessToken?: string | undefined;
|
|
351391
|
+
username?: string | undefined;
|
|
351392
|
+
registryType?: string | undefined;
|
|
351393
|
+
customRegistryUrl?: string | undefined;
|
|
351394
|
+
authType?: string | undefined;
|
|
351395
|
+
password?: string | undefined;
|
|
351396
|
+
enabledScopes?: string[] | undefined;
|
|
351397
|
+
bypassProxy?: boolean | undefined;
|
|
351398
|
+
npmProxyVersion?: number | undefined;
|
|
351399
|
+
authHeaderName?: string | undefined;
|
|
351400
|
+
authHeaderValue?: string | undefined;
|
|
351401
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351402
|
+
}>>;
|
|
351403
|
+
profile: z.ZodOptional<z.ZodObject<{
|
|
351404
|
+
name: z.ZodOptional<z.ZodString>;
|
|
351405
|
+
handle: z.ZodOptional<z.ZodString>;
|
|
351406
|
+
color: z.ZodOptional<z.ZodString>;
|
|
351407
|
+
avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
351408
|
+
billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
351409
|
+
address?: {
|
|
351410
|
+
state?: string | undefined;
|
|
351411
|
+
street1?: string | undefined;
|
|
351412
|
+
street2?: string | undefined;
|
|
351413
|
+
city?: string | undefined;
|
|
351414
|
+
postal?: string | undefined;
|
|
351415
|
+
country?: string | undefined;
|
|
351416
|
+
} | undefined;
|
|
351417
|
+
email?: string | undefined;
|
|
351418
|
+
notes?: string | undefined;
|
|
351419
|
+
companyName?: string | undefined;
|
|
351420
|
+
companyId?: string | undefined;
|
|
351421
|
+
vat?: string | undefined;
|
|
351422
|
+
poNumber?: string | undefined;
|
|
351423
|
+
}, z.ZodTypeDef, {
|
|
351424
|
+
address?: {
|
|
351425
|
+
state?: string | null | undefined;
|
|
351426
|
+
street1?: string | null | undefined;
|
|
351427
|
+
street2?: string | null | undefined;
|
|
351428
|
+
city?: string | null | undefined;
|
|
351429
|
+
postal?: string | null | undefined;
|
|
351430
|
+
country?: string | null | undefined;
|
|
351431
|
+
} | null | undefined;
|
|
351432
|
+
email?: string | null | undefined;
|
|
351433
|
+
notes?: string | null | undefined;
|
|
351434
|
+
companyName?: string | null | undefined;
|
|
351435
|
+
companyId?: string | null | undefined;
|
|
351436
|
+
vat?: string | null | undefined;
|
|
351437
|
+
poNumber?: string | null | undefined;
|
|
351438
|
+
}>>>, {
|
|
351439
|
+
address?: {
|
|
351440
|
+
state?: string | undefined;
|
|
351441
|
+
street1?: string | undefined;
|
|
351442
|
+
street2?: string | undefined;
|
|
351443
|
+
city?: string | undefined;
|
|
351444
|
+
postal?: string | undefined;
|
|
351445
|
+
country?: string | undefined;
|
|
351446
|
+
} | undefined;
|
|
351447
|
+
email?: string | undefined;
|
|
351448
|
+
notes?: string | undefined;
|
|
351449
|
+
companyName?: string | undefined;
|
|
351450
|
+
companyId?: string | undefined;
|
|
351451
|
+
vat?: string | undefined;
|
|
351452
|
+
poNumber?: string | undefined;
|
|
351453
|
+
} | undefined, {
|
|
351454
|
+
address?: {
|
|
351455
|
+
state?: string | null | undefined;
|
|
351456
|
+
street1?: string | null | undefined;
|
|
351457
|
+
street2?: string | null | undefined;
|
|
351458
|
+
city?: string | null | undefined;
|
|
351459
|
+
postal?: string | null | undefined;
|
|
351460
|
+
country?: string | null | undefined;
|
|
351461
|
+
} | null | undefined;
|
|
351462
|
+
email?: string | null | undefined;
|
|
351463
|
+
notes?: string | null | undefined;
|
|
351464
|
+
companyName?: string | null | undefined;
|
|
351465
|
+
companyId?: string | null | undefined;
|
|
351466
|
+
vat?: string | null | undefined;
|
|
351467
|
+
poNumber?: string | null | undefined;
|
|
351468
|
+
} | null | undefined>>;
|
|
351469
|
+
}, "strip", z.ZodTypeAny, {
|
|
351470
|
+
name?: string | undefined;
|
|
351471
|
+
avatar?: string | undefined;
|
|
351472
|
+
handle?: string | undefined;
|
|
351473
|
+
color?: string | undefined;
|
|
351474
|
+
billingDetails?: {
|
|
351475
|
+
address?: {
|
|
351476
|
+
state?: string | undefined;
|
|
351477
|
+
street1?: string | undefined;
|
|
351478
|
+
street2?: string | undefined;
|
|
351479
|
+
city?: string | undefined;
|
|
351480
|
+
postal?: string | undefined;
|
|
351481
|
+
country?: string | undefined;
|
|
351482
|
+
} | undefined;
|
|
351483
|
+
email?: string | undefined;
|
|
351484
|
+
notes?: string | undefined;
|
|
351485
|
+
companyName?: string | undefined;
|
|
351486
|
+
companyId?: string | undefined;
|
|
351487
|
+
vat?: string | undefined;
|
|
351488
|
+
poNumber?: string | undefined;
|
|
351489
|
+
} | undefined;
|
|
351490
|
+
}, {
|
|
351491
|
+
name?: string | undefined;
|
|
351492
|
+
avatar?: string | null | undefined;
|
|
351493
|
+
handle?: string | undefined;
|
|
351494
|
+
color?: string | undefined;
|
|
351495
|
+
billingDetails?: {
|
|
351496
|
+
address?: {
|
|
351497
|
+
state?: string | null | undefined;
|
|
351498
|
+
street1?: string | null | undefined;
|
|
351499
|
+
street2?: string | null | undefined;
|
|
351500
|
+
city?: string | null | undefined;
|
|
351501
|
+
postal?: string | null | undefined;
|
|
351502
|
+
country?: string | null | undefined;
|
|
351503
|
+
} | null | undefined;
|
|
351504
|
+
email?: string | null | undefined;
|
|
351505
|
+
notes?: string | null | undefined;
|
|
351506
|
+
companyName?: string | null | undefined;
|
|
351507
|
+
companyId?: string | null | undefined;
|
|
351508
|
+
vat?: string | null | undefined;
|
|
351509
|
+
poNumber?: string | null | undefined;
|
|
351510
|
+
} | null | undefined;
|
|
351511
|
+
}>>;
|
|
351512
|
+
aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351513
|
+
projectsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351514
|
+
defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
|
|
351515
|
+
defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
351516
|
+
aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
351517
|
+
aiCustomInstruction: z.ZodOptional<z.ZodString>;
|
|
351518
|
+
}, "strip", z.ZodTypeAny, {
|
|
351519
|
+
profile?: {
|
|
351520
|
+
name?: string | undefined;
|
|
351521
|
+
avatar?: string | undefined;
|
|
351522
|
+
handle?: string | undefined;
|
|
351523
|
+
color?: string | undefined;
|
|
351524
|
+
billingDetails?: {
|
|
351525
|
+
address?: {
|
|
351526
|
+
state?: string | undefined;
|
|
351527
|
+
street1?: string | undefined;
|
|
351528
|
+
street2?: string | undefined;
|
|
351529
|
+
city?: string | undefined;
|
|
351530
|
+
postal?: string | undefined;
|
|
351531
|
+
country?: string | undefined;
|
|
351532
|
+
} | undefined;
|
|
351533
|
+
email?: string | undefined;
|
|
351534
|
+
notes?: string | undefined;
|
|
351535
|
+
companyName?: string | undefined;
|
|
351536
|
+
companyId?: string | undefined;
|
|
351537
|
+
vat?: string | undefined;
|
|
351538
|
+
poNumber?: string | undefined;
|
|
351539
|
+
} | undefined;
|
|
351540
|
+
} | undefined;
|
|
351541
|
+
npmRegistrySettings?: {
|
|
351542
|
+
accessToken?: string | undefined;
|
|
351543
|
+
username?: string | undefined;
|
|
351544
|
+
registryType?: string | undefined;
|
|
351545
|
+
customRegistryUrl?: string | undefined;
|
|
351546
|
+
authType?: string | undefined;
|
|
351547
|
+
password?: string | undefined;
|
|
351548
|
+
enabledScopes?: string[] | undefined;
|
|
351549
|
+
bypassProxy?: boolean | undefined;
|
|
351550
|
+
npmProxyVersion?: number | undefined;
|
|
351551
|
+
authHeaderName?: string | undefined;
|
|
351552
|
+
authHeaderValue?: string | undefined;
|
|
351553
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351554
|
+
} | undefined;
|
|
351555
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
351556
|
+
projectsEnabled?: boolean | undefined;
|
|
351557
|
+
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
351558
|
+
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
351559
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
351560
|
+
aiCustomInstruction?: string | undefined;
|
|
351561
|
+
ipWhitelist?: {
|
|
351562
|
+
entries?: {
|
|
351563
|
+
name: string;
|
|
351564
|
+
isEnabled: boolean;
|
|
351565
|
+
range: string;
|
|
351566
|
+
}[] | undefined;
|
|
351567
|
+
isEnabledForCloud?: boolean | undefined;
|
|
351568
|
+
isEnabledForDocs?: boolean | undefined;
|
|
351569
|
+
} | undefined;
|
|
351570
|
+
sso?: {
|
|
351571
|
+
providerId?: string | undefined;
|
|
351572
|
+
metadataXml?: string | null | undefined;
|
|
351573
|
+
emailDomains?: string[] | undefined;
|
|
351574
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
351575
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351576
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351577
|
+
areInvitesDisabled?: boolean | undefined;
|
|
351578
|
+
isTestMode?: boolean | undefined;
|
|
351579
|
+
} | undefined;
|
|
351580
|
+
}, {
|
|
351581
|
+
profile?: {
|
|
351582
|
+
name?: string | undefined;
|
|
351583
|
+
avatar?: string | null | undefined;
|
|
351584
|
+
handle?: string | undefined;
|
|
351585
|
+
color?: string | undefined;
|
|
351586
|
+
billingDetails?: {
|
|
351587
|
+
address?: {
|
|
351588
|
+
state?: string | null | undefined;
|
|
351589
|
+
street1?: string | null | undefined;
|
|
351590
|
+
street2?: string | null | undefined;
|
|
351591
|
+
city?: string | null | undefined;
|
|
351592
|
+
postal?: string | null | undefined;
|
|
351593
|
+
country?: string | null | undefined;
|
|
351594
|
+
} | null | undefined;
|
|
351595
|
+
email?: string | null | undefined;
|
|
351596
|
+
notes?: string | null | undefined;
|
|
351597
|
+
companyName?: string | null | undefined;
|
|
351598
|
+
companyId?: string | null | undefined;
|
|
351599
|
+
vat?: string | null | undefined;
|
|
351600
|
+
poNumber?: string | null | undefined;
|
|
351601
|
+
} | null | undefined;
|
|
351602
|
+
} | undefined;
|
|
351603
|
+
npmRegistrySettings?: {
|
|
351604
|
+
accessToken?: string | undefined;
|
|
351605
|
+
username?: string | undefined;
|
|
351606
|
+
registryType?: string | undefined;
|
|
351607
|
+
customRegistryUrl?: string | undefined;
|
|
351608
|
+
authType?: string | undefined;
|
|
351609
|
+
password?: string | undefined;
|
|
351610
|
+
enabledScopes?: string[] | undefined;
|
|
351611
|
+
bypassProxy?: boolean | undefined;
|
|
351612
|
+
npmProxyVersion?: number | undefined;
|
|
351613
|
+
authHeaderName?: string | undefined;
|
|
351614
|
+
authHeaderValue?: string | undefined;
|
|
351615
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
351616
|
+
} | undefined;
|
|
351617
|
+
aiFeaturesEnabled?: boolean | undefined;
|
|
351618
|
+
projectsEnabled?: boolean | undefined;
|
|
351619
|
+
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
351620
|
+
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
351621
|
+
aiAskFeaturesEnabled?: boolean | undefined;
|
|
351622
|
+
aiCustomInstruction?: string | undefined;
|
|
351623
|
+
ipWhitelist?: {
|
|
351624
|
+
entries?: {
|
|
351625
|
+
name: string;
|
|
351626
|
+
isEnabled: boolean;
|
|
351627
|
+
range: string;
|
|
351628
|
+
}[] | undefined;
|
|
351629
|
+
isEnabledForCloud?: boolean | undefined;
|
|
351630
|
+
isEnabledForDocs?: boolean | undefined;
|
|
351631
|
+
} | undefined;
|
|
351632
|
+
sso?: {
|
|
351633
|
+
providerId?: string | undefined;
|
|
351634
|
+
metadataXml?: string | null | undefined;
|
|
351635
|
+
emailDomains?: string[] | undefined;
|
|
351636
|
+
defaultAutoInviteValue?: boolean | undefined;
|
|
351637
|
+
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
351638
|
+
skipDocsSupernovaLogin?: boolean | undefined;
|
|
351639
|
+
areInvitesDisabled?: boolean | undefined;
|
|
351640
|
+
isTestMode?: boolean | undefined;
|
|
351641
|
+
} | undefined;
|
|
351642
|
+
}>;
|
|
351643
|
+
type DTOWorkspaceUpdateInput = z.infer<typeof DTOWorkspaceUpdateInput>;
|
|
350778
351644
|
declare const DTOWorkspaceResponse: z.ZodObject<{
|
|
350779
351645
|
workspace: z.ZodObject<{
|
|
350780
351646
|
id: z.ZodString;
|
|
@@ -355600,394 +356466,6 @@ declare const DTOUserNotificationSettingsResponse: z.ZodObject<{
|
|
|
355600
356466
|
}>;
|
|
355601
356467
|
type DTOUserNotificationSettingsResponse = z.infer<typeof DTOUserNotificationSettingsResponse>;
|
|
355602
356468
|
|
|
355603
|
-
declare function validateSsoPayload(ssoPayload: Partial<SsoProvider> | undefined): {
|
|
355604
|
-
valid: boolean;
|
|
355605
|
-
keys: string[];
|
|
355606
|
-
};
|
|
355607
|
-
declare const NpmRegistryInput: z.ZodObject<{
|
|
355608
|
-
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
355609
|
-
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
355610
|
-
bypassProxy: z.ZodOptional<z.ZodBoolean>;
|
|
355611
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
355612
|
-
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
355613
|
-
registryType: z.ZodString;
|
|
355614
|
-
authType: z.ZodString;
|
|
355615
|
-
authHeaderName: z.ZodString;
|
|
355616
|
-
authHeaderValue: z.ZodString;
|
|
355617
|
-
accessToken: z.ZodString;
|
|
355618
|
-
username: z.ZodString;
|
|
355619
|
-
password: z.ZodString;
|
|
355620
|
-
}, "strip", z.ZodTypeAny, {
|
|
355621
|
-
accessToken: string;
|
|
355622
|
-
username: string;
|
|
355623
|
-
registryType: string;
|
|
355624
|
-
authType: string;
|
|
355625
|
-
password: string;
|
|
355626
|
-
enabledScopes: string[];
|
|
355627
|
-
authHeaderName: string;
|
|
355628
|
-
authHeaderValue: string;
|
|
355629
|
-
customRegistryUrl?: string | undefined;
|
|
355630
|
-
bypassProxy?: boolean | undefined;
|
|
355631
|
-
npmProxyVersion?: number | undefined;
|
|
355632
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355633
|
-
}, {
|
|
355634
|
-
accessToken: string;
|
|
355635
|
-
username: string;
|
|
355636
|
-
registryType: string;
|
|
355637
|
-
authType: string;
|
|
355638
|
-
password: string;
|
|
355639
|
-
enabledScopes: string[];
|
|
355640
|
-
authHeaderName: string;
|
|
355641
|
-
authHeaderValue: string;
|
|
355642
|
-
customRegistryUrl?: string | undefined;
|
|
355643
|
-
bypassProxy?: boolean | undefined;
|
|
355644
|
-
npmProxyVersion?: number | undefined;
|
|
355645
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355646
|
-
}>;
|
|
355647
|
-
declare const WorkspaceConfigurationPayload: z.ZodObject<{
|
|
355648
|
-
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
355649
|
-
isEnabledForCloud: z.ZodOptional<z.ZodBoolean>;
|
|
355650
|
-
isEnabledForDocs: z.ZodOptional<z.ZodBoolean>;
|
|
355651
|
-
entries: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
355652
|
-
isEnabled: z.ZodBoolean;
|
|
355653
|
-
name: z.ZodString;
|
|
355654
|
-
range: z.ZodEffects<z.ZodString, string, string>;
|
|
355655
|
-
}, "strip", z.ZodTypeAny, {
|
|
355656
|
-
name: string;
|
|
355657
|
-
isEnabled: boolean;
|
|
355658
|
-
range: string;
|
|
355659
|
-
}, {
|
|
355660
|
-
name: string;
|
|
355661
|
-
isEnabled: boolean;
|
|
355662
|
-
range: string;
|
|
355663
|
-
}>, "many">>;
|
|
355664
|
-
}, "strip", z.ZodTypeAny, {
|
|
355665
|
-
entries?: {
|
|
355666
|
-
name: string;
|
|
355667
|
-
isEnabled: boolean;
|
|
355668
|
-
range: string;
|
|
355669
|
-
}[] | undefined;
|
|
355670
|
-
isEnabledForCloud?: boolean | undefined;
|
|
355671
|
-
isEnabledForDocs?: boolean | undefined;
|
|
355672
|
-
}, {
|
|
355673
|
-
entries?: {
|
|
355674
|
-
name: string;
|
|
355675
|
-
isEnabled: boolean;
|
|
355676
|
-
range: string;
|
|
355677
|
-
}[] | undefined;
|
|
355678
|
-
isEnabledForCloud?: boolean | undefined;
|
|
355679
|
-
isEnabledForDocs?: boolean | undefined;
|
|
355680
|
-
}>>;
|
|
355681
|
-
sso: z.ZodOptional<z.ZodObject<{
|
|
355682
|
-
providerId: z.ZodOptional<z.ZodString>;
|
|
355683
|
-
defaultAutoInviteValue: z.ZodOptional<z.ZodBoolean>;
|
|
355684
|
-
autoInviteDomains: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
355685
|
-
skipDocsSupernovaLogin: z.ZodOptional<z.ZodBoolean>;
|
|
355686
|
-
areInvitesDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
355687
|
-
isTestMode: z.ZodOptional<z.ZodBoolean>;
|
|
355688
|
-
emailDomains: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
355689
|
-
metadataXml: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
355690
|
-
}, "strip", z.ZodTypeAny, {
|
|
355691
|
-
providerId?: string | undefined;
|
|
355692
|
-
metadataXml?: string | null | undefined;
|
|
355693
|
-
emailDomains?: string[] | undefined;
|
|
355694
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
355695
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
355696
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
355697
|
-
areInvitesDisabled?: boolean | undefined;
|
|
355698
|
-
isTestMode?: boolean | undefined;
|
|
355699
|
-
}, {
|
|
355700
|
-
providerId?: string | undefined;
|
|
355701
|
-
metadataXml?: string | null | undefined;
|
|
355702
|
-
emailDomains?: string[] | undefined;
|
|
355703
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
355704
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
355705
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
355706
|
-
areInvitesDisabled?: boolean | undefined;
|
|
355707
|
-
isTestMode?: boolean | undefined;
|
|
355708
|
-
}>>;
|
|
355709
|
-
npmRegistrySettings: z.ZodOptional<z.ZodObject<{
|
|
355710
|
-
enabledScopes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
355711
|
-
customRegistryUrl: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355712
|
-
bypassProxy: z.ZodOptional<z.ZodOptional<z.ZodBoolean>>;
|
|
355713
|
-
npmProxyRegistryConfigId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
355714
|
-
npmProxyVersion: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
355715
|
-
registryType: z.ZodOptional<z.ZodString>;
|
|
355716
|
-
authType: z.ZodOptional<z.ZodString>;
|
|
355717
|
-
authHeaderName: z.ZodOptional<z.ZodString>;
|
|
355718
|
-
authHeaderValue: z.ZodOptional<z.ZodString>;
|
|
355719
|
-
accessToken: z.ZodOptional<z.ZodString>;
|
|
355720
|
-
username: z.ZodOptional<z.ZodString>;
|
|
355721
|
-
password: z.ZodOptional<z.ZodString>;
|
|
355722
|
-
}, "strip", z.ZodTypeAny, {
|
|
355723
|
-
accessToken?: string | undefined;
|
|
355724
|
-
username?: string | undefined;
|
|
355725
|
-
registryType?: string | undefined;
|
|
355726
|
-
customRegistryUrl?: string | undefined;
|
|
355727
|
-
authType?: string | undefined;
|
|
355728
|
-
password?: string | undefined;
|
|
355729
|
-
enabledScopes?: string[] | undefined;
|
|
355730
|
-
bypassProxy?: boolean | undefined;
|
|
355731
|
-
npmProxyVersion?: number | undefined;
|
|
355732
|
-
authHeaderName?: string | undefined;
|
|
355733
|
-
authHeaderValue?: string | undefined;
|
|
355734
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355735
|
-
}, {
|
|
355736
|
-
accessToken?: string | undefined;
|
|
355737
|
-
username?: string | undefined;
|
|
355738
|
-
registryType?: string | undefined;
|
|
355739
|
-
customRegistryUrl?: string | undefined;
|
|
355740
|
-
authType?: string | undefined;
|
|
355741
|
-
password?: string | undefined;
|
|
355742
|
-
enabledScopes?: string[] | undefined;
|
|
355743
|
-
bypassProxy?: boolean | undefined;
|
|
355744
|
-
npmProxyVersion?: number | undefined;
|
|
355745
|
-
authHeaderName?: string | undefined;
|
|
355746
|
-
authHeaderValue?: string | undefined;
|
|
355747
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355748
|
-
}>>;
|
|
355749
|
-
profile: z.ZodOptional<z.ZodObject<{
|
|
355750
|
-
name: z.ZodOptional<z.ZodString>;
|
|
355751
|
-
handle: z.ZodOptional<z.ZodString>;
|
|
355752
|
-
color: z.ZodOptional<z.ZodString>;
|
|
355753
|
-
avatar: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>>;
|
|
355754
|
-
billingDetails: z.ZodOptional<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
355755
|
-
address?: {
|
|
355756
|
-
state?: string | undefined;
|
|
355757
|
-
street1?: string | undefined;
|
|
355758
|
-
street2?: string | undefined;
|
|
355759
|
-
city?: string | undefined;
|
|
355760
|
-
postal?: string | undefined;
|
|
355761
|
-
country?: string | undefined;
|
|
355762
|
-
} | undefined;
|
|
355763
|
-
email?: string | undefined;
|
|
355764
|
-
notes?: string | undefined;
|
|
355765
|
-
companyName?: string | undefined;
|
|
355766
|
-
companyId?: string | undefined;
|
|
355767
|
-
vat?: string | undefined;
|
|
355768
|
-
poNumber?: string | undefined;
|
|
355769
|
-
}, z.ZodTypeDef, {
|
|
355770
|
-
address?: {
|
|
355771
|
-
state?: string | null | undefined;
|
|
355772
|
-
street1?: string | null | undefined;
|
|
355773
|
-
street2?: string | null | undefined;
|
|
355774
|
-
city?: string | null | undefined;
|
|
355775
|
-
postal?: string | null | undefined;
|
|
355776
|
-
country?: string | null | undefined;
|
|
355777
|
-
} | null | undefined;
|
|
355778
|
-
email?: string | null | undefined;
|
|
355779
|
-
notes?: string | null | undefined;
|
|
355780
|
-
companyName?: string | null | undefined;
|
|
355781
|
-
companyId?: string | null | undefined;
|
|
355782
|
-
vat?: string | null | undefined;
|
|
355783
|
-
poNumber?: string | null | undefined;
|
|
355784
|
-
}>>>, {
|
|
355785
|
-
address?: {
|
|
355786
|
-
state?: string | undefined;
|
|
355787
|
-
street1?: string | undefined;
|
|
355788
|
-
street2?: string | undefined;
|
|
355789
|
-
city?: string | undefined;
|
|
355790
|
-
postal?: string | undefined;
|
|
355791
|
-
country?: string | undefined;
|
|
355792
|
-
} | undefined;
|
|
355793
|
-
email?: string | undefined;
|
|
355794
|
-
notes?: string | undefined;
|
|
355795
|
-
companyName?: string | undefined;
|
|
355796
|
-
companyId?: string | undefined;
|
|
355797
|
-
vat?: string | undefined;
|
|
355798
|
-
poNumber?: string | undefined;
|
|
355799
|
-
} | undefined, {
|
|
355800
|
-
address?: {
|
|
355801
|
-
state?: string | null | undefined;
|
|
355802
|
-
street1?: string | null | undefined;
|
|
355803
|
-
street2?: string | null | undefined;
|
|
355804
|
-
city?: string | null | undefined;
|
|
355805
|
-
postal?: string | null | undefined;
|
|
355806
|
-
country?: string | null | undefined;
|
|
355807
|
-
} | null | undefined;
|
|
355808
|
-
email?: string | null | undefined;
|
|
355809
|
-
notes?: string | null | undefined;
|
|
355810
|
-
companyName?: string | null | undefined;
|
|
355811
|
-
companyId?: string | null | undefined;
|
|
355812
|
-
vat?: string | null | undefined;
|
|
355813
|
-
poNumber?: string | null | undefined;
|
|
355814
|
-
} | null | undefined>>;
|
|
355815
|
-
}, "strip", z.ZodTypeAny, {
|
|
355816
|
-
name?: string | undefined;
|
|
355817
|
-
avatar?: string | undefined;
|
|
355818
|
-
handle?: string | undefined;
|
|
355819
|
-
color?: string | undefined;
|
|
355820
|
-
billingDetails?: {
|
|
355821
|
-
address?: {
|
|
355822
|
-
state?: string | undefined;
|
|
355823
|
-
street1?: string | undefined;
|
|
355824
|
-
street2?: string | undefined;
|
|
355825
|
-
city?: string | undefined;
|
|
355826
|
-
postal?: string | undefined;
|
|
355827
|
-
country?: string | undefined;
|
|
355828
|
-
} | undefined;
|
|
355829
|
-
email?: string | undefined;
|
|
355830
|
-
notes?: string | undefined;
|
|
355831
|
-
companyName?: string | undefined;
|
|
355832
|
-
companyId?: string | undefined;
|
|
355833
|
-
vat?: string | undefined;
|
|
355834
|
-
poNumber?: string | undefined;
|
|
355835
|
-
} | undefined;
|
|
355836
|
-
}, {
|
|
355837
|
-
name?: string | undefined;
|
|
355838
|
-
avatar?: string | null | undefined;
|
|
355839
|
-
handle?: string | undefined;
|
|
355840
|
-
color?: string | undefined;
|
|
355841
|
-
billingDetails?: {
|
|
355842
|
-
address?: {
|
|
355843
|
-
state?: string | null | undefined;
|
|
355844
|
-
street1?: string | null | undefined;
|
|
355845
|
-
street2?: string | null | undefined;
|
|
355846
|
-
city?: string | null | undefined;
|
|
355847
|
-
postal?: string | null | undefined;
|
|
355848
|
-
country?: string | null | undefined;
|
|
355849
|
-
} | null | undefined;
|
|
355850
|
-
email?: string | null | undefined;
|
|
355851
|
-
notes?: string | null | undefined;
|
|
355852
|
-
companyName?: string | null | undefined;
|
|
355853
|
-
companyId?: string | null | undefined;
|
|
355854
|
-
vat?: string | null | undefined;
|
|
355855
|
-
poNumber?: string | null | undefined;
|
|
355856
|
-
} | null | undefined;
|
|
355857
|
-
}>>;
|
|
355858
|
-
aiFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
355859
|
-
projectsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
355860
|
-
defaultProjectAccessMode: z.ZodOptional<z.ZodEnum<["InviteOnly", "Open", "Unlisted"]>>;
|
|
355861
|
-
defaultProjectRole: z.ZodOptional<z.ZodEnum<["Viewer", "Builder"]>>;
|
|
355862
|
-
aiAskFeaturesEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
355863
|
-
aiCustomInstruction: z.ZodOptional<z.ZodString>;
|
|
355864
|
-
}, "strip", z.ZodTypeAny, {
|
|
355865
|
-
profile?: {
|
|
355866
|
-
name?: string | undefined;
|
|
355867
|
-
avatar?: string | undefined;
|
|
355868
|
-
handle?: string | undefined;
|
|
355869
|
-
color?: string | undefined;
|
|
355870
|
-
billingDetails?: {
|
|
355871
|
-
address?: {
|
|
355872
|
-
state?: string | undefined;
|
|
355873
|
-
street1?: string | undefined;
|
|
355874
|
-
street2?: string | undefined;
|
|
355875
|
-
city?: string | undefined;
|
|
355876
|
-
postal?: string | undefined;
|
|
355877
|
-
country?: string | undefined;
|
|
355878
|
-
} | undefined;
|
|
355879
|
-
email?: string | undefined;
|
|
355880
|
-
notes?: string | undefined;
|
|
355881
|
-
companyName?: string | undefined;
|
|
355882
|
-
companyId?: string | undefined;
|
|
355883
|
-
vat?: string | undefined;
|
|
355884
|
-
poNumber?: string | undefined;
|
|
355885
|
-
} | undefined;
|
|
355886
|
-
} | undefined;
|
|
355887
|
-
npmRegistrySettings?: {
|
|
355888
|
-
accessToken?: string | undefined;
|
|
355889
|
-
username?: string | undefined;
|
|
355890
|
-
registryType?: string | undefined;
|
|
355891
|
-
customRegistryUrl?: string | undefined;
|
|
355892
|
-
authType?: string | undefined;
|
|
355893
|
-
password?: string | undefined;
|
|
355894
|
-
enabledScopes?: string[] | undefined;
|
|
355895
|
-
bypassProxy?: boolean | undefined;
|
|
355896
|
-
npmProxyVersion?: number | undefined;
|
|
355897
|
-
authHeaderName?: string | undefined;
|
|
355898
|
-
authHeaderValue?: string | undefined;
|
|
355899
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355900
|
-
} | undefined;
|
|
355901
|
-
aiFeaturesEnabled?: boolean | undefined;
|
|
355902
|
-
projectsEnabled?: boolean | undefined;
|
|
355903
|
-
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
355904
|
-
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
355905
|
-
aiAskFeaturesEnabled?: boolean | undefined;
|
|
355906
|
-
aiCustomInstruction?: string | undefined;
|
|
355907
|
-
ipWhitelist?: {
|
|
355908
|
-
entries?: {
|
|
355909
|
-
name: string;
|
|
355910
|
-
isEnabled: boolean;
|
|
355911
|
-
range: string;
|
|
355912
|
-
}[] | undefined;
|
|
355913
|
-
isEnabledForCloud?: boolean | undefined;
|
|
355914
|
-
isEnabledForDocs?: boolean | undefined;
|
|
355915
|
-
} | undefined;
|
|
355916
|
-
sso?: {
|
|
355917
|
-
providerId?: string | undefined;
|
|
355918
|
-
metadataXml?: string | null | undefined;
|
|
355919
|
-
emailDomains?: string[] | undefined;
|
|
355920
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
355921
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
355922
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
355923
|
-
areInvitesDisabled?: boolean | undefined;
|
|
355924
|
-
isTestMode?: boolean | undefined;
|
|
355925
|
-
} | undefined;
|
|
355926
|
-
}, {
|
|
355927
|
-
profile?: {
|
|
355928
|
-
name?: string | undefined;
|
|
355929
|
-
avatar?: string | null | undefined;
|
|
355930
|
-
handle?: string | undefined;
|
|
355931
|
-
color?: string | undefined;
|
|
355932
|
-
billingDetails?: {
|
|
355933
|
-
address?: {
|
|
355934
|
-
state?: string | null | undefined;
|
|
355935
|
-
street1?: string | null | undefined;
|
|
355936
|
-
street2?: string | null | undefined;
|
|
355937
|
-
city?: string | null | undefined;
|
|
355938
|
-
postal?: string | null | undefined;
|
|
355939
|
-
country?: string | null | undefined;
|
|
355940
|
-
} | null | undefined;
|
|
355941
|
-
email?: string | null | undefined;
|
|
355942
|
-
notes?: string | null | undefined;
|
|
355943
|
-
companyName?: string | null | undefined;
|
|
355944
|
-
companyId?: string | null | undefined;
|
|
355945
|
-
vat?: string | null | undefined;
|
|
355946
|
-
poNumber?: string | null | undefined;
|
|
355947
|
-
} | null | undefined;
|
|
355948
|
-
} | undefined;
|
|
355949
|
-
npmRegistrySettings?: {
|
|
355950
|
-
accessToken?: string | undefined;
|
|
355951
|
-
username?: string | undefined;
|
|
355952
|
-
registryType?: string | undefined;
|
|
355953
|
-
customRegistryUrl?: string | undefined;
|
|
355954
|
-
authType?: string | undefined;
|
|
355955
|
-
password?: string | undefined;
|
|
355956
|
-
enabledScopes?: string[] | undefined;
|
|
355957
|
-
bypassProxy?: boolean | undefined;
|
|
355958
|
-
npmProxyVersion?: number | undefined;
|
|
355959
|
-
authHeaderName?: string | undefined;
|
|
355960
|
-
authHeaderValue?: string | undefined;
|
|
355961
|
-
npmProxyRegistryConfigId?: string | undefined;
|
|
355962
|
-
} | undefined;
|
|
355963
|
-
aiFeaturesEnabled?: boolean | undefined;
|
|
355964
|
-
projectsEnabled?: boolean | undefined;
|
|
355965
|
-
defaultProjectAccessMode?: "Open" | "InviteOnly" | "Unlisted" | undefined;
|
|
355966
|
-
defaultProjectRole?: "Viewer" | "Builder" | undefined;
|
|
355967
|
-
aiAskFeaturesEnabled?: boolean | undefined;
|
|
355968
|
-
aiCustomInstruction?: string | undefined;
|
|
355969
|
-
ipWhitelist?: {
|
|
355970
|
-
entries?: {
|
|
355971
|
-
name: string;
|
|
355972
|
-
isEnabled: boolean;
|
|
355973
|
-
range: string;
|
|
355974
|
-
}[] | undefined;
|
|
355975
|
-
isEnabledForCloud?: boolean | undefined;
|
|
355976
|
-
isEnabledForDocs?: boolean | undefined;
|
|
355977
|
-
} | undefined;
|
|
355978
|
-
sso?: {
|
|
355979
|
-
providerId?: string | undefined;
|
|
355980
|
-
metadataXml?: string | null | undefined;
|
|
355981
|
-
emailDomains?: string[] | undefined;
|
|
355982
|
-
defaultAutoInviteValue?: boolean | undefined;
|
|
355983
|
-
autoInviteDomains?: Record<string, boolean> | undefined;
|
|
355984
|
-
skipDocsSupernovaLogin?: boolean | undefined;
|
|
355985
|
-
areInvitesDisabled?: boolean | undefined;
|
|
355986
|
-
isTestMode?: boolean | undefined;
|
|
355987
|
-
} | undefined;
|
|
355988
|
-
}>;
|
|
355989
|
-
type WorkspaceConfigurationPayload = z.infer<typeof WorkspaceConfigurationPayload>;
|
|
355990
|
-
|
|
355991
356469
|
declare const DTOWorkspaceIntegrationOauthInput: z.ZodObject<{
|
|
355992
356470
|
type: z.ZodEnum<["Figma", "Github", "Gitlab", "Bitbucket", "Azure"]>;
|
|
355993
356471
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -376718,4 +377196,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
376718
377196
|
reason: ValidationErrorReason | undefined;
|
|
376719
377197
|
};
|
|
376720
377198
|
|
|
376721
|
-
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|
|
377199
|
+
export { BackendFeatureRoomYDoc, BackendForgeProjectRoomYDoc, BackendThreadRoomYDoc, BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, ChatThreadMessagesEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAccessToken, DTOAccessTokenCreatePayload, DTOAccessTokenFull, DTOAccessTokenFullResponse, DTOAccessTokenListResponse, DTOAccessTokenResponse, DTOAddMembersToForgeProject, DTOAnalyzeCodeComponentsInPackage, DTOAnalyzeCodeComponentsInPackageInput, DTOAnalyzeCodeComponentsInPackageResponse, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAssetScope, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOAvailableProductListResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBillingCheckoutCreditsTopUpInput, DTOBillingCheckoutInput, DTOBillingCheckoutMode, DTOBillingCheckoutOldInput, DTOBillingCheckoutResponse, DTOBillingCheckoutSubscriptionChangeInput, DTOBillingCreditsCheckIfCanSpendResponse, DTOBillingCreditsSpendAction, DTOBillingCreditsSpendInput, DTOBillingCreditsSpendResponse, DTOBillingInterval, DTOBillingSubscriptionChangePreviewInput, DTOBillingSupportedModels, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentParentType, DTOCodeComponentProperty, DTOCodeComponentResolvedType, DTOCodeComponentResolvedTypeKind, DTOCodeComponentResponse, DTOCodeComponentUpsertResponse, DTOCodeComponentsCreateInput, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateForgeAgent, DTOCreateForgeAgentResponse, DTOCreateForgeArtifact, DTOCreateForgeArtifactResponse, DTOCreateForgeBuildArtifact, DTOCreateForgeFigmaArtifact, DTOCreateForgeFileArtifact, DTOCreateForgeIterationMessage, DTOCreateForgeIterationMessageResponse, DTOCreateForgeParticipant, DTOCreateForgeParticipantResponse, DTOCreateForgeProjectContext, DTOCreateForgeProjectInvitation, DTOCreateForgeProjectIteration, DTOCreateForgeProjectIterationResponse, DTOCreateForgeProjectMember, DTOCreateForgeSpecArtifact, DTOCreateVersionInput, DTOCreditBalance, DTOCreditsPrices, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceStorybook, DTODataSourceStorybookCreatePayload, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODataSourcesStorybookResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteForgeAgentResponse, DTODeleteForgeArtifactResponse, DTODeleteForgeIterationMessageResponse, DTODeleteForgeParticipantResponse, DTODeleteForgeProjectIterationResponse, DTODependencyDefinition, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemUpdateSwitcherInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationAnalyticsDiffPayload, DTODocumentationAnalyticsRequest, DTODocumentationAnalyticsTimeFrame, DTODocumentationAnalyticsTimeFrameComparison, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnalyticsDifference, DTODocumentationPageAnalyticsResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDependencies, DTODocumentationPageDependenciesGetResponse, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageIntervalDifferenceResponse, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoom, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageRoomResponse, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageUpdateDocumentActionInputV2, DTODocumentationPageUpdateDocumentActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationSettings, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, type DTOElementActionInputOfType, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementPropertyValuesEditActionInput, DTOElementPropertyValuesEditActionOutput, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, DTOElementsGetOutputV2, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOEvent, DTOEventDataSourcesImported, DTOEventFigmaNodesRendered, DTOExportJob, DTOExportJobCreateInput, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResponseLegacy, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterDeprecationInput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionCode, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFeatureAgentResponseTracker, DTOFeatureAgentWorkFinalizeInput, DTOFeatureArtifact, DTOFeatureArtifactCreateInput, DTOFeatureArtifactDeleteInput, DTOFeatureArtifactGetByIdParam, DTOFeatureArtifactListQuery, DTOFeatureArtifactListResponse, DTOFeatureArtifactResponse, DTOFeatureArtifactWithContentResponse, DTOFeatureEvent, DTOFeatureEventMessagesSent, DTOFeatureEventReactionsDeleted, DTOFeatureEventReactionsSent, DTOFeatureIteration, DTOFeatureIterationArtifactDiff, DTOFeatureIterationArtifactsDiff, DTOFeatureIterationCreateInput, DTOFeatureIterationError, DTOFeatureIterationErrorType, DTOFeatureIterationListResponse, DTOFeatureIterationPromoteInput, DTOFeatureIterationResponse, DTOFeatureIterationSetLatestInput, DTOFeatureIterationState, DTOFeatureIterationTag, DTOFeatureIterationTagCreateInput, DTOFeatureIterationTagListResponse, DTOFeatureIterationTagResponse, DTOFeatureIterationUpdateArtifactsByMessageInput, DTOFeatureIterationUpdateArtifactsInput, DTOFeatureIterationUpdateInput, DTOFeatureIterationValidateInput, DTOFeatureIterationValidateResponse, DTOFeatureMessage, DTOFeatureMessageAgentSender, DTOFeatureMessageAttachments, DTOFeatureMessageCreateInput, DTOFeatureMessageListResponse, DTOFeatureMessageReaction, DTOFeatureMessageReactionCreateInput, DTOFeatureMessageReactionDeleteInput, DTOFeatureMessageReactionResponse, DTOFeatureMessageResponse, DTOFeatureMessageSender, DTOFeatureMessageSystemSender, DTOFeatureMessageUpdateInput, DTOFeatureMessageUserSender, DTOFeaturePublishedStateUpdateInput, DTOFeatureSandbox, DTOFeatureUpdateThemeInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaExportNodeConfiguration, DTOFigmaExportNodeFormat, DTOFigmaExportNodePayload, DTOFigmaExportNodeResponse, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFigmaSourceUpdatePayload, DTOFile, DTOFileFigmaRenderMode, DTOFileFinalizeBulkPayload, DTOFileFinalizeBulkResponse, DTOFileListResponse, DTOFileReference, DTOFileResponseItem, DTOFileSource, DTOFileSourceFigma, DTOFileSourceUpload, DTOFileUploadBulkPayload, DTOFileUploadBulkResponse, DTOFileUploadFinalizePayload, DTOFileUploadFinalizeResponse, DTOFileUploadItem, DTOFileUploadPayload, DTOFileUploadResponse, DTOFileUploadResponseItem, DTOFilesGetPayload, DTOFilesGetQuery, DTOFilesResponse, DTOForgeAgent, DTOForgeAgentsListResponse, DTOForgeArtifact, DTOForgeArtifactGetResponse, DTOForgeArtifactsListResponse, DTOForgeAvatarBuilder, DTOForgeBuildArtifact, DTOForgeChatExportResponse, DTOForgeChatMessage, DTOForgeChatMessageCreateInput, DTOForgeChatMessageCreateResponse, DTOForgeChatMessageListQuery, DTOForgeChatMessageListResponse, DTOForgeChatMessageScoreInput, DTOForgeChatMessageScoreRequest, DTOForgeChatMessageSender, DTOForgeChatMessageSenderType, DTOForgeChatMessageTagInput, DTOForgeChatThread, DTOForgeChatThreadCreateInput, DTOForgeChatThreadCreateResponse, DTOForgeChatThreadDeleteResponse, DTOForgeChatThreadListQuery, DTOForgeChatThreadListResponse, DTOForgeChatThreadUpdateInput, DTOForgeChatThreadUpdateResponse, DTOForgeComponentSet, DTOForgeComponentSetTypeV2, DTOForgeDocumentGetByIdParam, DTOForgeDocumentGetResponse, DTOForgeEntity, DTOForgeFeatureRoom, DTOForgeFeatureRoomResponse, DTOForgeFigmaArtifact, DTOForgeFileArtifact, DTOForgeIconSet, DTOForgeIconSetTypeV2, DTOForgeIterationMessage, DTOForgeIterationMessagesListResponse, DTOForgeMemoryCreateInput, DTOForgeMemoryDeleteInput, DTOForgeMemoryEntry, DTOForgeMemoryEntryListQuery, DTOForgeMemoryEntryListResponse, DTOForgeMemoryEntryResponse, DTOForgeMemoryUpdateInput, DTOForgeParticipant, DTOForgeParticipantGetResponse, DTOForgeParticipantsListResponse, DTOForgeProject, DTOForgeProjectAccessMode, DTOForgeProjectAction, DTOForgeProjectActionArtifactCreate, DTOForgeProjectActionArtifactDelete, DTOForgeProjectActionArtifactMove, DTOForgeProjectActionArtifactUpdate, DTOForgeProjectActionFeatureCreate, DTOForgeProjectActionFeatureDelete, DTOForgeProjectActionFeatureMove, DTOForgeProjectActionFeatureUpdate, type DTOForgeProjectActionOfType, DTOForgeProjectActionSectionCreate, DTOForgeProjectActionSectionDelete, DTOForgeProjectActionSectionMove, DTOForgeProjectActionSectionUpdate, type DTOForgeProjectActionType, DTOForgeProjectArtifact, DTOForgeProjectArtifactContentResponse, DTOForgeProjectArtifactCreateInput, DTOForgeProjectArtifactCreateResponse, DTOForgeProjectArtifactDeleteInput, DTOForgeProjectArtifactDeleteResponse, DTOForgeProjectArtifactGetResponse, DTOForgeProjectArtifactMoveInput, DTOForgeProjectArtifactMoveResponse, DTOForgeProjectArtifactRoom, DTOForgeProjectArtifactRoomResponse, DTOForgeProjectArtifactUpdateInput, DTOForgeProjectArtifactUpdateResponse, DTOForgeProjectArtifactsListResponse, DTOForgeProjectContext, DTOForgeProjectContextCreateResponse, DTOForgeProjectContextCreateV2, DTOForgeProjectContextCreated, DTOForgeProjectContextDeleted, DTOForgeProjectContextGetResponse, DTOForgeProjectContextListQueryV2, DTOForgeProjectContextListResponse, DTOForgeProjectContextListResponseV2, DTOForgeProjectContextRemoveResponse, DTOForgeProjectContextResponseV2, DTOForgeProjectContextUpdateResponse, DTOForgeProjectContextUpdateV2, DTOForgeProjectContextUpdated, DTOForgeProjectContextV2, DTOForgeProjectCreate, DTOForgeProjectCreated, DTOForgeProjectDefaultRole, DTOForgeProjectDocumentPreview, DTOForgeProjectFeature, DTOForgeProjectFeatureCreateInput, DTOForgeProjectFeatureDeleteInput, DTOForgeProjectFeatureGetByIdParam, DTOForgeProjectFeatureGetResponse, DTOForgeProjectFeatureListResponse, DTOForgeProjectFeatureMoveInput, DTOForgeProjectFeaturePreview, DTOForgeProjectFeatureUpdateInput, DTOForgeProjectFigmaNode, DTOForgeProjectFigmaNodeRenderInput, DTOForgeProjectFile, DTOForgeProjectFileListResponse, DTOForgeProjectFileUploadFinalizePayload, DTOForgeProjectFileUploadFinalizeResponse, DTOForgeProjectFileUploadPayload, DTOForgeProjectFileUploadPayloadItem, DTOForgeProjectFileUploadResponse, DTOForgeProjectInvitation, DTOForgeProjectInvitationCreateResponse, DTOForgeProjectInvitationGetResponse, DTOForgeProjectInvitationRemoveResponse, DTOForgeProjectInvitationUpdateResponse, DTOForgeProjectInvitationsListResponse, DTOForgeProjectIteration, DTOForgeProjectIterationListResponse, DTOForgeProjectIterationMergeMeta, DTOForgeProjectIterationTagSet, DTOForgeProjectIterationUpdated, DTOForgeProjectListResponse, DTOForgeProjectMember, DTOForgeProjectMemberCreateResponse, DTOForgeProjectMemberDeleted, DTOForgeProjectMemberGetResponse, DTOForgeProjectMemberListQuery, DTOForgeProjectMemberRemoveResponse, DTOForgeProjectMemberRole, DTOForgeProjectMemberUpdateResponse, DTOForgeProjectMemberUpdated, DTOForgeProjectMembersCreated, DTOForgeProjectMembersListResponse, DTOForgeProjectPublishedFeature, DTOForgeProjectPublishedFeatureGetResponse, DTOForgeProjectResponse, DTOForgeProjectRole, DTOForgeProjectRoom, DTOForgeProjectRoomEvent, DTOForgeProjectRoomResponse, DTOForgeProjectTheme, DTOForgeProjectUpdate, DTOForgeProjectUpdated, DTOForgeRelation, DTOForgeRelationCreate, DTOForgeRelationDelete, DTOForgeRelationListInput, DTOForgeRelationListResponse, DTOForgeRelationType, DTOForgeSection, DTOForgeSectionCreateInput, DTOForgeSectionDeleteInput, DTOForgeSectionItemMoveInput, DTOForgeSectionMoveInput, DTOForgeSectionUpdateInput, DTOForgeSpecArtifact, DTOForgeThemeKnownPreset, DTOForgeTokenThemeSet, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetBlockDefinitionsQuery, DTOGetDocumentationPageAnchorsResponse, DTOGetForgeIterationMessageResponse, DTOGetForgeProjectIterationResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMCPStream, DTOMCPStreamResponse, DTOMCPStreamUpdateInput, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONotificationBase, DTONotificationChannel, DTONotificationChatMentionPayload, DTONotificationCreateInput, DTONotificationProjectDocumentCommentPayload, DTONotificationProjectInvitationPayload, DTONotificationType, DTONpmRegistryAccessTokenResponse, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTONpmRegistryUpdateInput, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPageRedirect, DTOPageRedirectCreateBody, DTOPageRedirectDeleteResponse, DTOPageRedirectListResponse, DTOPageRedirectResponse, DTOPageRedirectUpdateBody, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPortalSettings, DTOPortalSettingsGetResponse, DTOPortalSettingsSidebar, DTOPortalSettingsSidebarLink, DTOPortalSettingsSidebarSection, DTOPortalSettingsTheme, DTOPortalSettingsUpdatePayload, DTOProduct, DTOProductCode, DTOProductPrice, DTOProjectContextOverride, DTOProjectContextOverrideInput, DTOProjectContextOverrideResponse, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTOPublishedDocAnalyticsComparisonData, DTOPublishedDocPageAnalyticsComparisonData, DTOPublishedDocPageVisitData, DTOPublishedDocVisitData, DTOPublishedDocVisitHeatMapWeek, DTORegistry, DTORemoveForgeProjectInvitation, DTORemoveForgeProjectMember, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOSandboxError, DTOSandboxTemplate, DTOSandboxTemplateBuild, DTOSandboxTemplateBuildCreateInput, DTOSandboxTemplateBuildCreateResponse, DTOSandboxTemplateBuildCreated, DTOSandboxTemplateBuildFinalizeResponse, DTOSandboxTemplateBuildFinished, DTOSandboxTemplateBuildResponse, DTOSandboxTemplateFile, DTOSandboxTemplateListResponse, DTOSandboxTemplateQuery, DTOSandboxTemplateResponse, DTOSandboxTemplateVersion, DTOSandboxTemplateVersionCreated, DTOSandboxTemplateVersionDetail, DTOStorybookAccessTokenPayload, DTOStorybookAccessTokenResponse, DTOStorybookEntry, DTOStorybookEntryListResponse, DTOStorybookEntryOrigin, DTOStorybookEntryQuery, DTOStorybookEntryReplaceAction, DTOStorybookEntryResponse, DTOStorybookImportPayload, DTOStorybookSourceUpdatePayload, DTOStorybookUploadStatus, DTOStorybookUploadUrlRequest, DTOStorybookUploadUrlResponse, DTOSubscription, DTOSubscriptionResponse, DTOSubscriptionUpcomingChange, DTOSubscriptionUpdateInput, DTOSubscriptionUpdatePreview, DTOSubscriptionUpdatePreviewResponse, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOThemesListQuery, DTOThread, DTOThreadAgentResponseTracker, DTOThreadAgentType, DTOThreadEvent, DTOThreadEventMessagesSent, DTOThreadEventMessagesUpdated, DTOThreadEventReactionsDeleted, DTOThreadEventReactionsSent, DTOThreadMessage, DTOThreadMessageAgentSender, DTOThreadMessageAttachments, DTOThreadMessageAttachmentsCreateInput, DTOThreadMessageCreateInput, DTOThreadMessageFinalizeInput, DTOThreadMessageListResponse, DTOThreadMessageResponse, DTOThreadMessageRetryInput, DTOThreadMessageSender, DTOThreadMessageSystemSender, DTOThreadMessageUpdateInput, DTOThreadMessageUserSender, DTOThreadPromptState, DTOThreadReaction, DTOThreadReactionCreateInput, DTOThreadReactionDeleteInput, DTOThreadReactionResponse, DTOThreadSubjectType, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTrailEvent, DTOTrailEventClientCreate, DTOTrailEventCreate, DTOTrailEventListInput, DTOTrailEventListResponse, DTOTrailEventType, DTOTrailEventWithDetails, DTOTransferOwnershipPayload, DTOUGetForgeAgentResponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateForgeAgent, DTOUpdateForgeAgentResponse, DTOUpdateForgeArtifact, DTOUpdateForgeArtifactResponse, DTOUpdateForgeBuildArtifact, DTOUpdateForgeFigmaArtifact, DTOUpdateForgeFileArtifact, DTOUpdateForgeIterationMessage, DTOUpdateForgeIterationMessageResponse, DTOUpdateForgeParticipant, DTOUpdateForgeParticipantResponse, DTOUpdateForgeProjectContext, DTOUpdateForgeProjectInvitation, DTOUpdateForgeProjectIteration, DTOUpdateForgeProjectIterationResponse, DTOUpdateForgeProjectMember, DTOUpdateForgeSpecArtifact, DTOUpdateRegistryInput, DTOUpdateRegistryOutput, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUploadUrlItem, DTOUser, DTOUserDesignSystemsResponse, DTOUserEmailSettings, DTOUserEmailSettingsUpdatePayload, DTOUserGetResponse, DTOUserNotificationSettings, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserPortalTheme, DTOUserProfile, DTOUserProfileUpdatePayload, DTOUserSource, DTOUserTheme, DTOUserUpdatePayload, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceBilledSeatType, DTOWorkspaceCreateInput, DTOWorkspaceDefaultProjectAccessMode, DTOWorkspaceDefaultProjectRole, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitation, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DTOWorkspaceRoomEvent, DTOWorkspaceSeatType, DTOWorkspaceUntypedData, DTOWorkspaceUntypedDataCreatePayload, DTOWorkspaceUntypedDataListResponse, DTOWorkspaceUntypedDataResponse, DTOWorkspaceUntypedDataUpdatePayload, DTOWorkspaceUpdateInput, type DTPGetForgeAgentResponse, DesignSystemAnalyticsEndpoint, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemFilesEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FeatureRoomBaseYDoc, type FeatureRoomBaseYDocState, type FeatureRoomUpdate, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaNodeStructuresEndpoint, FigmaUtils, FilesEndpoint, ForgeAgentsEndpoint, ForgeArtifactsEndpoint, ForgeDocumentsEndpoint, ForgeEndpoint, ForgeFeatureArtifactsEndpoint, ForgeFeatureIterationTagsEndpoint, ForgeFeatureIterationsEndpoint, ForgeFeatureMessagesEndpoint, ForgeMemoryEndpoint, ForgeProjectContentRepository, ForgeProjectContextsEndpoint, ForgeProjectFeaturesEndpoint, ForgeProjectFilesEndpoint, ForgeProjectInvitationsEndpoint, ForgeProjectIterationsEndpoint, ForgeProjectMembersEndpoint, ForgeProjectRoomBaseYDoc, type ForgeProjectRoomBaseYDocState, ForgeProjectsEndpoint, FormattedCollections, FrontendFeatureRoomYDoc, FrontendThreadRoomYDoc, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, LocalProjectActionExecutor, MCPStreamsEndpoint, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProjectContentState, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, SandboxTemplateBuildsEndpoint, SandboxTemplatesEndpoint, SandboxesEndpoint, StorybookEntriesEndpoint, StorybookHostingEndpoint, StringVariableScopeType, SupernovaApiClient, type SupportedElementActionType, ThemesEndpoint, ThreadRoomBaseYDoc, type ThreadRoomBaseYDocState, type ThreadRoomUpdate, ThreadsEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, type VariableCollections, VariableCollectionsSchema, VariableMode, VariableValue, type Variables, VariablesMapping, VariablesSchema, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceBillingEndpoint, WorkspaceChatThreadsEndpoint, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspaceNpmRegistryEndpoint, WorkspaceSubscriptionEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, applyProjectActionsLocally, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, documentationAnalyticsToComparisonDto, documentationAnalyticsToGlobalDto, documentationAnalyticsToHeatMapDto, documentationAnalyticsToPageComparisonDto, documentationAnalyticsToPageDto, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, exhaustiveInvalidUriPaths, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, isValidRedirectPath, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, zodQueryBoolean };
|