@supernova-studio/client 1.4.3 → 1.4.5
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 +426 -81
- package/dist/index.d.ts +426 -81
- package/dist/index.js +110 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1906 -1840
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageApproval, DocumentationPageSnapshot, ElementGroupSnapshot, OmitStrict, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
1
|
+
import { DocumentationGroupV1, DocumentationPageV1, DocumentationPageV2, ElementGroup, DocumentationPageApproval, DocumentationPageSnapshot, ElementGroupSnapshot, OmitStrict, PageBlockDefinitionLayout as PageBlockDefinitionLayout$1, PageBlockV1, FigmaFileStructureNode as FigmaFileStructureNode$1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, Pipeline, GitOrganization, GitProject, GitRepository, GitBranch, ExtendedIntegration, IntegrationCredentials, SupernovaExceptionType, SsoProvider, UpdateMembershipRolesInput, PageBlockItemUntypedValue, PageBlockDefinition, PageBlockItemRichTextEditorValue, PageBlockText, PageBlockDefinitionProperty, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockItemV2, PageBlockItemRichTextValue, PageBlockItemMultiRichTextValue, PageBlockItemTableValue, PageBlockItemEmbedValue, PageBlockDefinitionPropertyType } from '@supernova-studio/model';
|
|
2
2
|
import * as zod from 'zod';
|
|
3
3
|
import zod__default, { z, ZodSchema, ZodTypeDef } from 'zod';
|
|
4
4
|
import * as Y from 'yjs';
|
|
@@ -44309,6 +44309,266 @@ declare const DTODocumentationStructure: z.ZodObject<{
|
|
|
44309
44309
|
}>;
|
|
44310
44310
|
type DTODocumentationStructure = z.infer<typeof DTODocumentationStructure>;
|
|
44311
44311
|
|
|
44312
|
+
declare const DTOFigmaNodeStructure: z.ZodObject<{
|
|
44313
|
+
id: z.ZodString;
|
|
44314
|
+
sourceId: z.ZodString;
|
|
44315
|
+
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
44316
|
+
createdAt: z.ZodDate;
|
|
44317
|
+
updatedAt: z.ZodDate;
|
|
44318
|
+
}, "strip", z.ZodTypeAny, {
|
|
44319
|
+
id: string;
|
|
44320
|
+
createdAt: Date;
|
|
44321
|
+
updatedAt: Date;
|
|
44322
|
+
sourceId: string;
|
|
44323
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44324
|
+
}, {
|
|
44325
|
+
id: string;
|
|
44326
|
+
createdAt: Date;
|
|
44327
|
+
updatedAt: Date;
|
|
44328
|
+
sourceId: string;
|
|
44329
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44330
|
+
}>;
|
|
44331
|
+
type DTOFigmaNodeStructure = z.infer<typeof DTOFigmaNodeStructure>;
|
|
44332
|
+
declare const DTOFigmaNodeStructureDetail: z.ZodObject<z.objectUtil.extendShape<{
|
|
44333
|
+
id: z.ZodString;
|
|
44334
|
+
sourceId: z.ZodString;
|
|
44335
|
+
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
44336
|
+
createdAt: z.ZodDate;
|
|
44337
|
+
updatedAt: z.ZodDate;
|
|
44338
|
+
}, {
|
|
44339
|
+
rootNode: z.ZodType<FigmaFileStructureNode$1, z.ZodTypeDef, {
|
|
44340
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44341
|
+
id: string;
|
|
44342
|
+
name: string;
|
|
44343
|
+
size?: {
|
|
44344
|
+
width?: number | null | undefined;
|
|
44345
|
+
height?: number | null | undefined;
|
|
44346
|
+
} | undefined;
|
|
44347
|
+
parentComponentSetId?: string | undefined;
|
|
44348
|
+
} & {
|
|
44349
|
+
children: ({
|
|
44350
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44351
|
+
id: string;
|
|
44352
|
+
name: string;
|
|
44353
|
+
size?: {
|
|
44354
|
+
width?: number | null | undefined;
|
|
44355
|
+
height?: number | null | undefined;
|
|
44356
|
+
} | undefined;
|
|
44357
|
+
parentComponentSetId?: string | undefined;
|
|
44358
|
+
} & /*elided*/ any)[];
|
|
44359
|
+
}>;
|
|
44360
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44361
|
+
id: string;
|
|
44362
|
+
createdAt: Date;
|
|
44363
|
+
updatedAt: Date;
|
|
44364
|
+
sourceId: string;
|
|
44365
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44366
|
+
rootNode: {
|
|
44367
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44368
|
+
id: string;
|
|
44369
|
+
name: string;
|
|
44370
|
+
size?: {
|
|
44371
|
+
width: number;
|
|
44372
|
+
height: number;
|
|
44373
|
+
} | undefined;
|
|
44374
|
+
parentComponentSetId?: string | undefined;
|
|
44375
|
+
} & {
|
|
44376
|
+
children: FigmaFileStructureNode$1[];
|
|
44377
|
+
};
|
|
44378
|
+
}, {
|
|
44379
|
+
id: string;
|
|
44380
|
+
createdAt: Date;
|
|
44381
|
+
updatedAt: Date;
|
|
44382
|
+
sourceId: string;
|
|
44383
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44384
|
+
rootNode: {
|
|
44385
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44386
|
+
id: string;
|
|
44387
|
+
name: string;
|
|
44388
|
+
size?: {
|
|
44389
|
+
width?: number | null | undefined;
|
|
44390
|
+
height?: number | null | undefined;
|
|
44391
|
+
} | undefined;
|
|
44392
|
+
parentComponentSetId?: string | undefined;
|
|
44393
|
+
} & {
|
|
44394
|
+
children: ({
|
|
44395
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44396
|
+
id: string;
|
|
44397
|
+
name: string;
|
|
44398
|
+
size?: {
|
|
44399
|
+
width?: number | null | undefined;
|
|
44400
|
+
height?: number | null | undefined;
|
|
44401
|
+
} | undefined;
|
|
44402
|
+
parentComponentSetId?: string | undefined;
|
|
44403
|
+
} & /*elided*/ any)[];
|
|
44404
|
+
};
|
|
44405
|
+
}>;
|
|
44406
|
+
type DTOFigmaNodeStructureDetail = z.infer<typeof DTOFigmaNodeStructureDetail>;
|
|
44407
|
+
declare const DTOFigmaNodeStructureListResponse: z.ZodObject<{
|
|
44408
|
+
structures: z.ZodArray<z.ZodObject<{
|
|
44409
|
+
id: z.ZodString;
|
|
44410
|
+
sourceId: z.ZodString;
|
|
44411
|
+
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
44412
|
+
createdAt: z.ZodDate;
|
|
44413
|
+
updatedAt: z.ZodDate;
|
|
44414
|
+
}, "strip", z.ZodTypeAny, {
|
|
44415
|
+
id: string;
|
|
44416
|
+
createdAt: Date;
|
|
44417
|
+
updatedAt: Date;
|
|
44418
|
+
sourceId: string;
|
|
44419
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44420
|
+
}, {
|
|
44421
|
+
id: string;
|
|
44422
|
+
createdAt: Date;
|
|
44423
|
+
updatedAt: Date;
|
|
44424
|
+
sourceId: string;
|
|
44425
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44426
|
+
}>, "many">;
|
|
44427
|
+
}, "strip", z.ZodTypeAny, {
|
|
44428
|
+
structures: {
|
|
44429
|
+
id: string;
|
|
44430
|
+
createdAt: Date;
|
|
44431
|
+
updatedAt: Date;
|
|
44432
|
+
sourceId: string;
|
|
44433
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44434
|
+
}[];
|
|
44435
|
+
}, {
|
|
44436
|
+
structures: {
|
|
44437
|
+
id: string;
|
|
44438
|
+
createdAt: Date;
|
|
44439
|
+
updatedAt: Date;
|
|
44440
|
+
sourceId: string;
|
|
44441
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44442
|
+
}[];
|
|
44443
|
+
}>;
|
|
44444
|
+
type DTOFigmaNodeStructureListResponse = z.infer<typeof DTOFigmaNodeStructureListResponse>;
|
|
44445
|
+
declare const DTOFigmaNodeStructureDetailResponse: z.ZodObject<{
|
|
44446
|
+
structure: z.ZodObject<z.objectUtil.extendShape<{
|
|
44447
|
+
id: z.ZodString;
|
|
44448
|
+
sourceId: z.ZodString;
|
|
44449
|
+
importState: z.ZodEnum<["InProgress", "Success", "Failed"]>;
|
|
44450
|
+
createdAt: z.ZodDate;
|
|
44451
|
+
updatedAt: z.ZodDate;
|
|
44452
|
+
}, {
|
|
44453
|
+
rootNode: z.ZodType<FigmaFileStructureNode$1, z.ZodTypeDef, {
|
|
44454
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44455
|
+
id: string;
|
|
44456
|
+
name: string;
|
|
44457
|
+
size?: {
|
|
44458
|
+
width?: number | null | undefined;
|
|
44459
|
+
height?: number | null | undefined;
|
|
44460
|
+
} | undefined;
|
|
44461
|
+
parentComponentSetId?: string | undefined;
|
|
44462
|
+
} & {
|
|
44463
|
+
children: ({
|
|
44464
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44465
|
+
id: string;
|
|
44466
|
+
name: string;
|
|
44467
|
+
size?: {
|
|
44468
|
+
width?: number | null | undefined;
|
|
44469
|
+
height?: number | null | undefined;
|
|
44470
|
+
} | undefined;
|
|
44471
|
+
parentComponentSetId?: string | undefined;
|
|
44472
|
+
} & /*elided*/ any)[];
|
|
44473
|
+
}>;
|
|
44474
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44475
|
+
id: string;
|
|
44476
|
+
createdAt: Date;
|
|
44477
|
+
updatedAt: Date;
|
|
44478
|
+
sourceId: string;
|
|
44479
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44480
|
+
rootNode: {
|
|
44481
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44482
|
+
id: string;
|
|
44483
|
+
name: string;
|
|
44484
|
+
size?: {
|
|
44485
|
+
width: number;
|
|
44486
|
+
height: number;
|
|
44487
|
+
} | undefined;
|
|
44488
|
+
parentComponentSetId?: string | undefined;
|
|
44489
|
+
} & {
|
|
44490
|
+
children: FigmaFileStructureNode$1[];
|
|
44491
|
+
};
|
|
44492
|
+
}, {
|
|
44493
|
+
id: string;
|
|
44494
|
+
createdAt: Date;
|
|
44495
|
+
updatedAt: Date;
|
|
44496
|
+
sourceId: string;
|
|
44497
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44498
|
+
rootNode: {
|
|
44499
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44500
|
+
id: string;
|
|
44501
|
+
name: string;
|
|
44502
|
+
size?: {
|
|
44503
|
+
width?: number | null | undefined;
|
|
44504
|
+
height?: number | null | undefined;
|
|
44505
|
+
} | undefined;
|
|
44506
|
+
parentComponentSetId?: string | undefined;
|
|
44507
|
+
} & {
|
|
44508
|
+
children: ({
|
|
44509
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44510
|
+
id: string;
|
|
44511
|
+
name: string;
|
|
44512
|
+
size?: {
|
|
44513
|
+
width?: number | null | undefined;
|
|
44514
|
+
height?: number | null | undefined;
|
|
44515
|
+
} | undefined;
|
|
44516
|
+
parentComponentSetId?: string | undefined;
|
|
44517
|
+
} & /*elided*/ any)[];
|
|
44518
|
+
};
|
|
44519
|
+
}>;
|
|
44520
|
+
}, "strip", z.ZodTypeAny, {
|
|
44521
|
+
structure: {
|
|
44522
|
+
id: string;
|
|
44523
|
+
createdAt: Date;
|
|
44524
|
+
updatedAt: Date;
|
|
44525
|
+
sourceId: string;
|
|
44526
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44527
|
+
rootNode: {
|
|
44528
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44529
|
+
id: string;
|
|
44530
|
+
name: string;
|
|
44531
|
+
size?: {
|
|
44532
|
+
width: number;
|
|
44533
|
+
height: number;
|
|
44534
|
+
} | undefined;
|
|
44535
|
+
parentComponentSetId?: string | undefined;
|
|
44536
|
+
} & {
|
|
44537
|
+
children: FigmaFileStructureNode$1[];
|
|
44538
|
+
};
|
|
44539
|
+
};
|
|
44540
|
+
}, {
|
|
44541
|
+
structure: {
|
|
44542
|
+
id: string;
|
|
44543
|
+
createdAt: Date;
|
|
44544
|
+
updatedAt: Date;
|
|
44545
|
+
sourceId: string;
|
|
44546
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
44547
|
+
rootNode: {
|
|
44548
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44549
|
+
id: string;
|
|
44550
|
+
name: string;
|
|
44551
|
+
size?: {
|
|
44552
|
+
width?: number | null | undefined;
|
|
44553
|
+
height?: number | null | undefined;
|
|
44554
|
+
} | undefined;
|
|
44555
|
+
parentComponentSetId?: string | undefined;
|
|
44556
|
+
} & {
|
|
44557
|
+
children: ({
|
|
44558
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
44559
|
+
id: string;
|
|
44560
|
+
name: string;
|
|
44561
|
+
size?: {
|
|
44562
|
+
width?: number | null | undefined;
|
|
44563
|
+
height?: number | null | undefined;
|
|
44564
|
+
} | undefined;
|
|
44565
|
+
parentComponentSetId?: string | undefined;
|
|
44566
|
+
} & /*elided*/ any)[];
|
|
44567
|
+
};
|
|
44568
|
+
};
|
|
44569
|
+
}>;
|
|
44570
|
+
type DTOFigmaNodeStructureDetailResponse = z.infer<typeof DTOFigmaNodeStructureDetailResponse>;
|
|
44571
|
+
|
|
44312
44572
|
declare const DTOFigmaNodeData: z.ZodObject<{
|
|
44313
44573
|
figmaNodeId: z.ZodString;
|
|
44314
44574
|
isValid: z.ZodBoolean;
|
|
@@ -94264,6 +94524,55 @@ type PageBlockDefinitionLayout = z.infer<typeof PageBlockDefinitionLayoutBase> &
|
|
|
94264
94524
|
children: (PageBlockDefinitionLayout | string)[];
|
|
94265
94525
|
};
|
|
94266
94526
|
|
|
94527
|
+
type FigmaFileStructureNodeBaseInput = z.input<typeof FigmaFileStructureNodeBase> & {
|
|
94528
|
+
children: FigmaFileStructureNodeBaseInput[];
|
|
94529
|
+
};
|
|
94530
|
+
declare const FigmaFileStructureNodeBase: z.ZodObject<{
|
|
94531
|
+
id: z.ZodString;
|
|
94532
|
+
name: z.ZodString;
|
|
94533
|
+
type: z.ZodEnum<["DOCUMENT", "CANVAS", "FRAME", "COMPONENT", "COMPONENT_SET"]>;
|
|
94534
|
+
size: z.ZodEffects<z.ZodOptional<z.ZodObject<{
|
|
94535
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
94536
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
94537
|
+
}, "strip", z.ZodTypeAny, {
|
|
94538
|
+
width: number;
|
|
94539
|
+
height: number;
|
|
94540
|
+
}, {
|
|
94541
|
+
width?: number | null | undefined;
|
|
94542
|
+
height?: number | null | undefined;
|
|
94543
|
+
}>>, {
|
|
94544
|
+
width: number;
|
|
94545
|
+
height: number;
|
|
94546
|
+
} | undefined, {
|
|
94547
|
+
width?: number | null | undefined;
|
|
94548
|
+
height?: number | null | undefined;
|
|
94549
|
+
} | undefined>;
|
|
94550
|
+
parentComponentSetId: z.ZodOptional<z.ZodString>;
|
|
94551
|
+
}, "strip", z.ZodTypeAny, {
|
|
94552
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
94553
|
+
id: string;
|
|
94554
|
+
name: string;
|
|
94555
|
+
size?: {
|
|
94556
|
+
width: number;
|
|
94557
|
+
height: number;
|
|
94558
|
+
} | undefined;
|
|
94559
|
+
parentComponentSetId?: string | undefined;
|
|
94560
|
+
}, {
|
|
94561
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
94562
|
+
id: string;
|
|
94563
|
+
name: string;
|
|
94564
|
+
size?: {
|
|
94565
|
+
width?: number | null | undefined;
|
|
94566
|
+
height?: number | null | undefined;
|
|
94567
|
+
} | undefined;
|
|
94568
|
+
parentComponentSetId?: string | undefined;
|
|
94569
|
+
}>;
|
|
94570
|
+
type FigmaFileStructureNodeBase = z.infer<typeof FigmaFileStructureNodeBase>;
|
|
94571
|
+
declare const FigmaFileStructureNode: z.ZodType<FigmaFileStructureNode, ZodTypeDef, FigmaFileStructureNodeBaseInput>;
|
|
94572
|
+
type FigmaFileStructureNode = z.infer<typeof FigmaFileStructureNodeBase> & {
|
|
94573
|
+
children: FigmaFileStructureNode[];
|
|
94574
|
+
};
|
|
94575
|
+
|
|
94267
94576
|
declare const DTOGetBlockDefinitionsOutput: z.ZodObject<{
|
|
94268
94577
|
definitions: z.ZodArray<z.ZodObject<{
|
|
94269
94578
|
id: z.ZodString;
|
|
@@ -101196,6 +101505,41 @@ declare class DesignSystemContactsEndpoint {
|
|
|
101196
101505
|
}>;
|
|
101197
101506
|
}
|
|
101198
101507
|
|
|
101508
|
+
declare class FigmaNodeStructuresEndpoint {
|
|
101509
|
+
private readonly requestExecutor;
|
|
101510
|
+
constructor(requestExecutor: RequestExecutor);
|
|
101511
|
+
list(dsId: string): Promise<{
|
|
101512
|
+
structures: {
|
|
101513
|
+
id: string;
|
|
101514
|
+
createdAt: Date;
|
|
101515
|
+
updatedAt: Date;
|
|
101516
|
+
sourceId: string;
|
|
101517
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
101518
|
+
}[];
|
|
101519
|
+
}>;
|
|
101520
|
+
get(dsId: string, structureId: string): Promise<{
|
|
101521
|
+
structure: {
|
|
101522
|
+
id: string;
|
|
101523
|
+
createdAt: Date;
|
|
101524
|
+
updatedAt: Date;
|
|
101525
|
+
sourceId: string;
|
|
101526
|
+
importState: "InProgress" | "Failed" | "Success";
|
|
101527
|
+
rootNode: {
|
|
101528
|
+
type: "DOCUMENT" | "CANVAS" | "FRAME" | "COMPONENT" | "COMPONENT_SET";
|
|
101529
|
+
id: string;
|
|
101530
|
+
name: string;
|
|
101531
|
+
size?: {
|
|
101532
|
+
width: number;
|
|
101533
|
+
height: number;
|
|
101534
|
+
} | undefined;
|
|
101535
|
+
parentComponentSetId?: string | undefined;
|
|
101536
|
+
} & {
|
|
101537
|
+
children: FigmaFileStructureNode[];
|
|
101538
|
+
};
|
|
101539
|
+
};
|
|
101540
|
+
}>;
|
|
101541
|
+
}
|
|
101542
|
+
|
|
101199
101543
|
declare class DesignSystemMembersEndpoint {
|
|
101200
101544
|
private readonly requestExecutor;
|
|
101201
101545
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -101215,6 +101559,35 @@ declare class DesignSystemMembersEndpoint {
|
|
|
101215
101559
|
}>;
|
|
101216
101560
|
}
|
|
101217
101561
|
|
|
101562
|
+
declare class DesignSystemPageRedirectsEndpoint {
|
|
101563
|
+
private readonly requestExecutor;
|
|
101564
|
+
constructor(requestExecutor: RequestExecutor);
|
|
101565
|
+
create(dsId: string, body: DTOPageRedirectCreateBody): Promise<{
|
|
101566
|
+
redirect: {
|
|
101567
|
+
path: string;
|
|
101568
|
+
id: string;
|
|
101569
|
+
pagePersistentId: string;
|
|
101570
|
+
};
|
|
101571
|
+
}>;
|
|
101572
|
+
list(dsId: string): Promise<{
|
|
101573
|
+
redirects: {
|
|
101574
|
+
path: string;
|
|
101575
|
+
id: string;
|
|
101576
|
+
pagePersistentId: string;
|
|
101577
|
+
}[];
|
|
101578
|
+
}>;
|
|
101579
|
+
update(dsId: string, redirectId: string, body: DTOPageRedirectUpdateBody): Promise<{
|
|
101580
|
+
redirect: {
|
|
101581
|
+
path: string;
|
|
101582
|
+
id: string;
|
|
101583
|
+
pagePersistentId: string;
|
|
101584
|
+
};
|
|
101585
|
+
}>;
|
|
101586
|
+
delete(dsId: string, redirectId: string): Promise<{
|
|
101587
|
+
success: boolean;
|
|
101588
|
+
}>;
|
|
101589
|
+
}
|
|
101590
|
+
|
|
101218
101591
|
declare class DesignSystemSourcesEndpoint {
|
|
101219
101592
|
private readonly requestExecutor;
|
|
101220
101593
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -101465,35 +101838,6 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
101465
101838
|
}>;
|
|
101466
101839
|
}
|
|
101467
101840
|
|
|
101468
|
-
declare class DesignSystemPageRedirectsEndpoint {
|
|
101469
|
-
private readonly requestExecutor;
|
|
101470
|
-
constructor(requestExecutor: RequestExecutor);
|
|
101471
|
-
create(dsId: string, body: DTOPageRedirectCreateBody): Promise<{
|
|
101472
|
-
redirect: {
|
|
101473
|
-
path: string;
|
|
101474
|
-
id: string;
|
|
101475
|
-
pagePersistentId: string;
|
|
101476
|
-
};
|
|
101477
|
-
}>;
|
|
101478
|
-
list(dsId: string): Promise<{
|
|
101479
|
-
redirects: {
|
|
101480
|
-
path: string;
|
|
101481
|
-
id: string;
|
|
101482
|
-
pagePersistentId: string;
|
|
101483
|
-
}[];
|
|
101484
|
-
}>;
|
|
101485
|
-
update(dsId: string, redirectId: string, body: DTOPageRedirectUpdateBody): Promise<{
|
|
101486
|
-
redirect: {
|
|
101487
|
-
path: string;
|
|
101488
|
-
id: string;
|
|
101489
|
-
pagePersistentId: string;
|
|
101490
|
-
};
|
|
101491
|
-
}>;
|
|
101492
|
-
delete(dsId: string, redirectId: string): Promise<{
|
|
101493
|
-
success: boolean;
|
|
101494
|
-
}>;
|
|
101495
|
-
}
|
|
101496
|
-
|
|
101497
101841
|
declare class DesignSystemsEndpoint {
|
|
101498
101842
|
private readonly requestExecutor;
|
|
101499
101843
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -101502,6 +101846,7 @@ declare class DesignSystemsEndpoint {
|
|
|
101502
101846
|
readonly sources: DesignSystemSourcesEndpoint;
|
|
101503
101847
|
readonly contacts: DesignSystemContactsEndpoint;
|
|
101504
101848
|
readonly redirects: DesignSystemPageRedirectsEndpoint;
|
|
101849
|
+
readonly figmaNodeStructures: FigmaNodeStructuresEndpoint;
|
|
101505
101850
|
constructor(requestExecutor: RequestExecutor);
|
|
101506
101851
|
create(body: DTODesignSystemCreateInput): Promise<{
|
|
101507
101852
|
designSystem: {
|
|
@@ -101666,6 +102011,56 @@ declare class DesignSystemsEndpoint {
|
|
|
101666
102011
|
}>;
|
|
101667
102012
|
}
|
|
101668
102013
|
|
|
102014
|
+
declare class WorkspaceIntegrationsEndpoint {
|
|
102015
|
+
private readonly requestExecutor;
|
|
102016
|
+
constructor(requestExecutor: RequestExecutor);
|
|
102017
|
+
list(wsId: string): Promise<{
|
|
102018
|
+
integrations: {
|
|
102019
|
+
type: "Figma" | "TokenStudio" | "FigmaVariablesPlugin" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
102020
|
+
id: string;
|
|
102021
|
+
createdAt: Date;
|
|
102022
|
+
workspaceId: string;
|
|
102023
|
+
integrationCredentials?: {
|
|
102024
|
+
type: "OAuth2" | "PAT";
|
|
102025
|
+
id: string;
|
|
102026
|
+
createdAt: Date;
|
|
102027
|
+
state: "Active" | "Inactive";
|
|
102028
|
+
userId: string;
|
|
102029
|
+
integrationId: string;
|
|
102030
|
+
profile?: {
|
|
102031
|
+
type?: string | undefined;
|
|
102032
|
+
email?: string | undefined;
|
|
102033
|
+
id?: string | undefined;
|
|
102034
|
+
organization?: string | undefined;
|
|
102035
|
+
handle?: string | undefined;
|
|
102036
|
+
avatarUrl?: string | undefined;
|
|
102037
|
+
collection?: string | undefined;
|
|
102038
|
+
} | undefined;
|
|
102039
|
+
user?: {
|
|
102040
|
+
email: string;
|
|
102041
|
+
id: string;
|
|
102042
|
+
name: string;
|
|
102043
|
+
avatar?: string | undefined;
|
|
102044
|
+
} | undefined;
|
|
102045
|
+
username?: string | undefined;
|
|
102046
|
+
tokenName?: string | undefined;
|
|
102047
|
+
expiresAt?: Date | undefined;
|
|
102048
|
+
refreshedAt?: Date | undefined;
|
|
102049
|
+
appInstallationId?: string | undefined;
|
|
102050
|
+
customUrl?: string | undefined;
|
|
102051
|
+
}[] | undefined;
|
|
102052
|
+
integrationDesignSystems?: {
|
|
102053
|
+
designSystemId: string;
|
|
102054
|
+
brandId: string;
|
|
102055
|
+
date?: Date | undefined;
|
|
102056
|
+
title?: string | undefined;
|
|
102057
|
+
userId?: string | undefined;
|
|
102058
|
+
}[] | undefined;
|
|
102059
|
+
}[];
|
|
102060
|
+
}>;
|
|
102061
|
+
delete(wsId: string, iId: string): Promise<unknown>;
|
|
102062
|
+
}
|
|
102063
|
+
|
|
101669
102064
|
declare class WorkspaceInvitationsEndpoint {
|
|
101670
102065
|
private readonly requestExecutor;
|
|
101671
102066
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -102362,56 +102757,6 @@ declare class WorkspaceMembersEndpoint {
|
|
|
102362
102757
|
}>;
|
|
102363
102758
|
}
|
|
102364
102759
|
|
|
102365
|
-
declare class WorkspaceIntegrationsEndpoint {
|
|
102366
|
-
private readonly requestExecutor;
|
|
102367
|
-
constructor(requestExecutor: RequestExecutor);
|
|
102368
|
-
list(wsId: string): Promise<{
|
|
102369
|
-
integrations: {
|
|
102370
|
-
type: "Figma" | "TokenStudio" | "FigmaVariablesPlugin" | "Github" | "Gitlab" | "Bitbucket" | "Azure";
|
|
102371
|
-
id: string;
|
|
102372
|
-
createdAt: Date;
|
|
102373
|
-
workspaceId: string;
|
|
102374
|
-
integrationCredentials?: {
|
|
102375
|
-
type: "OAuth2" | "PAT";
|
|
102376
|
-
id: string;
|
|
102377
|
-
createdAt: Date;
|
|
102378
|
-
state: "Active" | "Inactive";
|
|
102379
|
-
userId: string;
|
|
102380
|
-
integrationId: string;
|
|
102381
|
-
profile?: {
|
|
102382
|
-
type?: string | undefined;
|
|
102383
|
-
email?: string | undefined;
|
|
102384
|
-
id?: string | undefined;
|
|
102385
|
-
organization?: string | undefined;
|
|
102386
|
-
handle?: string | undefined;
|
|
102387
|
-
avatarUrl?: string | undefined;
|
|
102388
|
-
collection?: string | undefined;
|
|
102389
|
-
} | undefined;
|
|
102390
|
-
user?: {
|
|
102391
|
-
email: string;
|
|
102392
|
-
id: string;
|
|
102393
|
-
name: string;
|
|
102394
|
-
avatar?: string | undefined;
|
|
102395
|
-
} | undefined;
|
|
102396
|
-
username?: string | undefined;
|
|
102397
|
-
tokenName?: string | undefined;
|
|
102398
|
-
expiresAt?: Date | undefined;
|
|
102399
|
-
refreshedAt?: Date | undefined;
|
|
102400
|
-
appInstallationId?: string | undefined;
|
|
102401
|
-
customUrl?: string | undefined;
|
|
102402
|
-
}[] | undefined;
|
|
102403
|
-
integrationDesignSystems?: {
|
|
102404
|
-
designSystemId: string;
|
|
102405
|
-
brandId: string;
|
|
102406
|
-
date?: Date | undefined;
|
|
102407
|
-
title?: string | undefined;
|
|
102408
|
-
userId?: string | undefined;
|
|
102409
|
-
}[] | undefined;
|
|
102410
|
-
}[];
|
|
102411
|
-
}>;
|
|
102412
|
-
delete(wsId: string, iId: string): Promise<unknown>;
|
|
102413
|
-
}
|
|
102414
|
-
|
|
102415
102760
|
declare class WorkspacesEndpoint {
|
|
102416
102761
|
private readonly requestExecutor;
|
|
102417
102762
|
members: WorkspaceMembersEndpoint;
|
|
@@ -105456,4 +105801,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
105456
105801
|
reason: ValidationErrorReason | undefined;
|
|
105457
105802
|
};
|
|
105458
105803
|
|
|
105459
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, 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, 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, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|
|
105804
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionRoom, DTODesignSystemVersionRoomResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, 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, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, 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, 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, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionEnumOption, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, type DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterPropertyValue, DTOExporterPropertyValueMap, DTOExporterResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeDataV2, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderAsyncActionInput, DTOFigmaNodeRenderAsyncActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderIdInput, DTOFigmaNodeRenderInput, DTOFigmaNodeRenderUrlInput, DTOFigmaNodeRerenderInput, DTOFigmaNodeStructure, DTOFigmaNodeStructureDetail, DTOFigmaNodeStructureDetailResponse, DTOFigmaNodeStructureListResponse, DTOFigmaNodeV2, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, 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, type DTOPropertyDefinitionBase, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageDocumentInputV2, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserTheme, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemPageRedirectsEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocsStructureRepository, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExporterJobsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FigmaUtils, FormattedCollections, FrontendVersionRoomYDoc, GitDestinationOptions, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, LiveblocksEndpoint, type LocalApproval, LocalDocsElementActionExecutor, type LocalDocsPage, type LocalDocsPageGroup, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, ParsedFigmaFileURLError, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, type SupportedActionType, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, type VersionRoomApproval, VersionRoomBaseYDoc, type VersionRoomBaseYDocState, type VersionRoomDocsPage, type VersionRoomDocsPageGroup, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceIntegrationsEndpoint, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyActionsLocally, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, computeDocsHierarchy, 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, yjsToItemConfiguration };
|