@supernova-studio/client 1.4.10 → 1.4.12
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 +300 -4
- package/dist/index.d.ts +300 -4
- package/dist/index.js +21 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -47417,20 +47417,72 @@ declare const DTOElementPropertyValueResponse: z.ZodObject<{
|
|
|
47417
47417
|
};
|
|
47418
47418
|
}>;
|
|
47419
47419
|
type DTOElementPropertyValueResponse = z.infer<typeof DTOElementPropertyValueResponse>;
|
|
47420
|
+
declare const DTOElementPropertyValuesEditActionOutput: z.ZodObject<{
|
|
47421
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
47422
|
+
output: z.ZodObject<{
|
|
47423
|
+
success: z.ZodLiteral<true>;
|
|
47424
|
+
}, "strip", z.ZodTypeAny, {
|
|
47425
|
+
success: true;
|
|
47426
|
+
}, {
|
|
47427
|
+
success: true;
|
|
47428
|
+
}>;
|
|
47429
|
+
}, "strip", z.ZodTypeAny, {
|
|
47430
|
+
type: "ElementPropertyValuesEdit";
|
|
47431
|
+
output: {
|
|
47432
|
+
success: true;
|
|
47433
|
+
};
|
|
47434
|
+
}, {
|
|
47435
|
+
type: "ElementPropertyValuesEdit";
|
|
47436
|
+
output: {
|
|
47437
|
+
success: true;
|
|
47438
|
+
};
|
|
47439
|
+
}>;
|
|
47440
|
+
type DTOElementPropertyValuesEditActionOutput = z.infer<typeof DTOElementPropertyValuesEditActionOutput>;
|
|
47420
47441
|
declare const DTOElementPropertyValueUpsertPaylod: z.ZodObject<{
|
|
47421
47442
|
definitionId: z.ZodString;
|
|
47422
47443
|
targetElementId: z.ZodString;
|
|
47423
|
-
value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]
|
|
47444
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
47424
47445
|
}, "strip", z.ZodTypeAny, {
|
|
47425
|
-
value: string | number | boolean;
|
|
47446
|
+
value: string | number | boolean | null;
|
|
47426
47447
|
definitionId: string;
|
|
47427
47448
|
targetElementId: string;
|
|
47428
47449
|
}, {
|
|
47429
|
-
value: string | number | boolean;
|
|
47450
|
+
value: string | number | boolean | null;
|
|
47430
47451
|
definitionId: string;
|
|
47431
47452
|
targetElementId: string;
|
|
47432
47453
|
}>;
|
|
47433
47454
|
type DTOElementPropertyValueUpsertPaylod = z.infer<typeof DTOElementPropertyValueUpsertPaylod>;
|
|
47455
|
+
declare const DTOElementPropertyValuesEditActionInput: z.ZodObject<{
|
|
47456
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
47457
|
+
values: z.ZodArray<z.ZodObject<{
|
|
47458
|
+
definitionId: z.ZodString;
|
|
47459
|
+
targetElementId: z.ZodString;
|
|
47460
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
47461
|
+
}, "strip", z.ZodTypeAny, {
|
|
47462
|
+
value: string | number | boolean | null;
|
|
47463
|
+
definitionId: string;
|
|
47464
|
+
targetElementId: string;
|
|
47465
|
+
}, {
|
|
47466
|
+
value: string | number | boolean | null;
|
|
47467
|
+
definitionId: string;
|
|
47468
|
+
targetElementId: string;
|
|
47469
|
+
}>, "many">;
|
|
47470
|
+
}, "strip", z.ZodTypeAny, {
|
|
47471
|
+
values: {
|
|
47472
|
+
value: string | number | boolean | null;
|
|
47473
|
+
definitionId: string;
|
|
47474
|
+
targetElementId: string;
|
|
47475
|
+
}[];
|
|
47476
|
+
type: "ElementPropertyValuesEdit";
|
|
47477
|
+
}, {
|
|
47478
|
+
values: {
|
|
47479
|
+
value: string | number | boolean | null;
|
|
47480
|
+
definitionId: string;
|
|
47481
|
+
targetElementId: string;
|
|
47482
|
+
}[];
|
|
47483
|
+
type: "ElementPropertyValuesEdit";
|
|
47484
|
+
}>;
|
|
47485
|
+
type DTOElementPropertyValuesEditActionInput = z.infer<typeof DTOElementPropertyValuesEditActionInput>;
|
|
47434
47486
|
|
|
47435
47487
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
47436
47488
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
@@ -48351,6 +48403,25 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
48351
48403
|
output: {
|
|
48352
48404
|
success: true;
|
|
48353
48405
|
};
|
|
48406
|
+
}>, z.ZodObject<{
|
|
48407
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
48408
|
+
output: z.ZodObject<{
|
|
48409
|
+
success: z.ZodLiteral<true>;
|
|
48410
|
+
}, "strip", z.ZodTypeAny, {
|
|
48411
|
+
success: true;
|
|
48412
|
+
}, {
|
|
48413
|
+
success: true;
|
|
48414
|
+
}>;
|
|
48415
|
+
}, "strip", z.ZodTypeAny, {
|
|
48416
|
+
type: "ElementPropertyValuesEdit";
|
|
48417
|
+
output: {
|
|
48418
|
+
success: true;
|
|
48419
|
+
};
|
|
48420
|
+
}, {
|
|
48421
|
+
type: "ElementPropertyValuesEdit";
|
|
48422
|
+
output: {
|
|
48423
|
+
success: true;
|
|
48424
|
+
};
|
|
48354
48425
|
}>]>;
|
|
48355
48426
|
type DTOElementActionOutput = z.infer<typeof DTOElementActionOutput>;
|
|
48356
48427
|
declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -51245,6 +51316,35 @@ declare const DTOElementActionInput: z.ZodIntersection<z.ZodDiscriminatedUnion<"
|
|
|
51245
51316
|
persistentId: string;
|
|
51246
51317
|
approvalState?: "ReadyForReview" | "ChangesRequested" | "Approved" | undefined;
|
|
51247
51318
|
};
|
|
51319
|
+
}>, z.ZodObject<{
|
|
51320
|
+
type: z.ZodLiteral<"ElementPropertyValuesEdit">;
|
|
51321
|
+
values: z.ZodArray<z.ZodObject<{
|
|
51322
|
+
definitionId: z.ZodString;
|
|
51323
|
+
targetElementId: z.ZodString;
|
|
51324
|
+
value: z.ZodNullable<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>>;
|
|
51325
|
+
}, "strip", z.ZodTypeAny, {
|
|
51326
|
+
value: string | number | boolean | null;
|
|
51327
|
+
definitionId: string;
|
|
51328
|
+
targetElementId: string;
|
|
51329
|
+
}, {
|
|
51330
|
+
value: string | number | boolean | null;
|
|
51331
|
+
definitionId: string;
|
|
51332
|
+
targetElementId: string;
|
|
51333
|
+
}>, "many">;
|
|
51334
|
+
}, "strip", z.ZodTypeAny, {
|
|
51335
|
+
values: {
|
|
51336
|
+
value: string | number | boolean | null;
|
|
51337
|
+
definitionId: string;
|
|
51338
|
+
targetElementId: string;
|
|
51339
|
+
}[];
|
|
51340
|
+
type: "ElementPropertyValuesEdit";
|
|
51341
|
+
}, {
|
|
51342
|
+
values: {
|
|
51343
|
+
value: string | number | boolean | null;
|
|
51344
|
+
definitionId: string;
|
|
51345
|
+
targetElementId: string;
|
|
51346
|
+
}[];
|
|
51347
|
+
type: "ElementPropertyValuesEdit";
|
|
51248
51348
|
}>]>, z.ZodObject<{
|
|
51249
51349
|
tId: z.ZodOptional<z.ZodString>;
|
|
51250
51350
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -99391,6 +99491,11 @@ declare class ElementsActionEndpoint {
|
|
|
99391
99491
|
parentName?: string | undefined;
|
|
99392
99492
|
};
|
|
99393
99493
|
}[];
|
|
99494
|
+
} | {
|
|
99495
|
+
type: "ElementPropertyValuesEdit";
|
|
99496
|
+
output: {
|
|
99497
|
+
success: true;
|
|
99498
|
+
};
|
|
99394
99499
|
}>;
|
|
99395
99500
|
createDocGroup(dsId: string, vId: string, input: DTOCreateDocumentationGroupInput): Promise<{
|
|
99396
99501
|
type: "DocumentationGroupCreate";
|
|
@@ -99537,6 +99642,11 @@ declare class ElementsActionEndpoint {
|
|
|
99537
99642
|
parentName?: string | undefined;
|
|
99538
99643
|
};
|
|
99539
99644
|
}[];
|
|
99645
|
+
} | {
|
|
99646
|
+
type: "ElementPropertyValuesEdit";
|
|
99647
|
+
output: {
|
|
99648
|
+
success: true;
|
|
99649
|
+
};
|
|
99540
99650
|
}>;
|
|
99541
99651
|
moveDocGroup(dsId: string, vId: string, input: DTOMoveDocumentationGroupInput): Promise<{
|
|
99542
99652
|
type: "DocumentationGroupCreate";
|
|
@@ -99683,6 +99793,11 @@ declare class ElementsActionEndpoint {
|
|
|
99683
99793
|
parentName?: string | undefined;
|
|
99684
99794
|
};
|
|
99685
99795
|
}[];
|
|
99796
|
+
} | {
|
|
99797
|
+
type: "ElementPropertyValuesEdit";
|
|
99798
|
+
output: {
|
|
99799
|
+
success: true;
|
|
99800
|
+
};
|
|
99686
99801
|
}>;
|
|
99687
99802
|
updateDocPage(dsId: string, vId: string, input: DTOUpdateDocumentationPageInputV2): Promise<{
|
|
99688
99803
|
type: "DocumentationGroupCreate";
|
|
@@ -99829,6 +99944,11 @@ declare class ElementsActionEndpoint {
|
|
|
99829
99944
|
parentName?: string | undefined;
|
|
99830
99945
|
};
|
|
99831
99946
|
}[];
|
|
99947
|
+
} | {
|
|
99948
|
+
type: "ElementPropertyValuesEdit";
|
|
99949
|
+
output: {
|
|
99950
|
+
success: true;
|
|
99951
|
+
};
|
|
99832
99952
|
}>;
|
|
99833
99953
|
updateDocPageDocument(dsId: string, vId: string, input: DTOUpdateDocumentationPageDocumentInputV2): Promise<{
|
|
99834
99954
|
type: "DocumentationGroupCreate";
|
|
@@ -99975,6 +100095,11 @@ declare class ElementsActionEndpoint {
|
|
|
99975
100095
|
parentName?: string | undefined;
|
|
99976
100096
|
};
|
|
99977
100097
|
}[];
|
|
100098
|
+
} | {
|
|
100099
|
+
type: "ElementPropertyValuesEdit";
|
|
100100
|
+
output: {
|
|
100101
|
+
success: true;
|
|
100102
|
+
};
|
|
99978
100103
|
}>;
|
|
99979
100104
|
updateDocGroup(dsId: string, vId: string, input: DTOUpdateDocumentationGroupInput): Promise<{
|
|
99980
100105
|
type: "DocumentationGroupCreate";
|
|
@@ -100121,6 +100246,11 @@ declare class ElementsActionEndpoint {
|
|
|
100121
100246
|
parentName?: string | undefined;
|
|
100122
100247
|
};
|
|
100123
100248
|
}[];
|
|
100249
|
+
} | {
|
|
100250
|
+
type: "ElementPropertyValuesEdit";
|
|
100251
|
+
output: {
|
|
100252
|
+
success: true;
|
|
100253
|
+
};
|
|
100124
100254
|
}>;
|
|
100125
100255
|
createDocTab(dsId: string, vId: string, input: DTOCreateDocumentationTabInput): Promise<{
|
|
100126
100256
|
type: "DocumentationGroupCreate";
|
|
@@ -100267,6 +100397,11 @@ declare class ElementsActionEndpoint {
|
|
|
100267
100397
|
parentName?: string | undefined;
|
|
100268
100398
|
};
|
|
100269
100399
|
}[];
|
|
100400
|
+
} | {
|
|
100401
|
+
type: "ElementPropertyValuesEdit";
|
|
100402
|
+
output: {
|
|
100403
|
+
success: true;
|
|
100404
|
+
};
|
|
100270
100405
|
}>;
|
|
100271
100406
|
renderNodes(dsId: string, vId: string, input: DTOFigmaNodeRenderIdInput[]): Promise<{
|
|
100272
100407
|
type: "DocumentationGroupCreate";
|
|
@@ -100413,6 +100548,11 @@ declare class ElementsActionEndpoint {
|
|
|
100413
100548
|
parentName?: string | undefined;
|
|
100414
100549
|
};
|
|
100415
100550
|
}[];
|
|
100551
|
+
} | {
|
|
100552
|
+
type: "ElementPropertyValuesEdit";
|
|
100553
|
+
output: {
|
|
100554
|
+
success: true;
|
|
100555
|
+
};
|
|
100416
100556
|
}>;
|
|
100417
100557
|
renderNodesAsync(dsId: string, vId: string, nodes: DTOFigmaNodeRenderInput[]): Promise<{
|
|
100418
100558
|
type: "DocumentationGroupCreate";
|
|
@@ -100559,6 +100699,162 @@ declare class ElementsActionEndpoint {
|
|
|
100559
100699
|
parentName?: string | undefined;
|
|
100560
100700
|
};
|
|
100561
100701
|
}[];
|
|
100702
|
+
} | {
|
|
100703
|
+
type: "ElementPropertyValuesEdit";
|
|
100704
|
+
output: {
|
|
100705
|
+
success: true;
|
|
100706
|
+
};
|
|
100707
|
+
}>;
|
|
100708
|
+
bulkEditPropertyValues(dsId: string, vId: string, values: DTOElementPropertyValueUpsertPaylod[]): Promise<{
|
|
100709
|
+
type: "DocumentationGroupCreate";
|
|
100710
|
+
output: {
|
|
100711
|
+
success: true;
|
|
100712
|
+
};
|
|
100713
|
+
} | {
|
|
100714
|
+
type: "DocumentationTabCreate";
|
|
100715
|
+
output: {
|
|
100716
|
+
success: true;
|
|
100717
|
+
};
|
|
100718
|
+
} | {
|
|
100719
|
+
type: "DocumentationGroupUpdate";
|
|
100720
|
+
output: {
|
|
100721
|
+
success: true;
|
|
100722
|
+
};
|
|
100723
|
+
} | {
|
|
100724
|
+
type: "DocumentationGroupMove";
|
|
100725
|
+
output: {
|
|
100726
|
+
success: true;
|
|
100727
|
+
};
|
|
100728
|
+
} | {
|
|
100729
|
+
type: "DocumentationGroupDuplicate";
|
|
100730
|
+
output: {
|
|
100731
|
+
success: true;
|
|
100732
|
+
};
|
|
100733
|
+
} | {
|
|
100734
|
+
type: "DocumentationGroupDelete";
|
|
100735
|
+
output: {
|
|
100736
|
+
success: true;
|
|
100737
|
+
};
|
|
100738
|
+
} | {
|
|
100739
|
+
type: "DocumentationTabGroupDelete";
|
|
100740
|
+
output: {
|
|
100741
|
+
success: true;
|
|
100742
|
+
};
|
|
100743
|
+
} | {
|
|
100744
|
+
type: "DocumentationPageCreate";
|
|
100745
|
+
output: {
|
|
100746
|
+
success: true;
|
|
100747
|
+
};
|
|
100748
|
+
} | {
|
|
100749
|
+
type: "DocumentationPageUpdate";
|
|
100750
|
+
output: {
|
|
100751
|
+
success: true;
|
|
100752
|
+
};
|
|
100753
|
+
} | {
|
|
100754
|
+
type: "DocumentationPageUpdateDocument";
|
|
100755
|
+
output: {
|
|
100756
|
+
success: true;
|
|
100757
|
+
};
|
|
100758
|
+
} | {
|
|
100759
|
+
type: "DocumentationPageMove";
|
|
100760
|
+
output: {
|
|
100761
|
+
success: true;
|
|
100762
|
+
};
|
|
100763
|
+
} | {
|
|
100764
|
+
type: "DocumentationPageDuplicate";
|
|
100765
|
+
output: {
|
|
100766
|
+
success: true;
|
|
100767
|
+
};
|
|
100768
|
+
} | {
|
|
100769
|
+
type: "DocumentationPageDelete";
|
|
100770
|
+
output: {
|
|
100771
|
+
success: true;
|
|
100772
|
+
};
|
|
100773
|
+
} | {
|
|
100774
|
+
type: "DocumentationPageRestore";
|
|
100775
|
+
output: {
|
|
100776
|
+
success: true;
|
|
100777
|
+
};
|
|
100778
|
+
} | {
|
|
100779
|
+
type: "DocumentationGroupRestore";
|
|
100780
|
+
output: {
|
|
100781
|
+
success: true;
|
|
100782
|
+
};
|
|
100783
|
+
} | {
|
|
100784
|
+
type: "DocumentationPageApprovalStateChange";
|
|
100785
|
+
output: {
|
|
100786
|
+
success: true;
|
|
100787
|
+
};
|
|
100788
|
+
} | {
|
|
100789
|
+
type: "FigmaNodeRender";
|
|
100790
|
+
figmaNodes: {
|
|
100791
|
+
id: string;
|
|
100792
|
+
persistentId: string;
|
|
100793
|
+
meta: {
|
|
100794
|
+
name: string;
|
|
100795
|
+
description?: string | undefined;
|
|
100796
|
+
};
|
|
100797
|
+
designSystemVersionId: string;
|
|
100798
|
+
createdAt: Date;
|
|
100799
|
+
updatedAt: Date;
|
|
100800
|
+
data: {
|
|
100801
|
+
figmaNodeId: string;
|
|
100802
|
+
isValid: boolean;
|
|
100803
|
+
assetId: string;
|
|
100804
|
+
assetUrl: string;
|
|
100805
|
+
assetFormat: "Png" | "Svg";
|
|
100806
|
+
assetScale: number;
|
|
100807
|
+
assetWidth?: number | undefined;
|
|
100808
|
+
assetHeight?: number | undefined;
|
|
100809
|
+
};
|
|
100810
|
+
origin: {
|
|
100811
|
+
sourceId: string;
|
|
100812
|
+
fileId?: string | undefined;
|
|
100813
|
+
parentName?: string | undefined;
|
|
100814
|
+
};
|
|
100815
|
+
}[];
|
|
100816
|
+
} | {
|
|
100817
|
+
type: "FigmaNodeRenderAsync";
|
|
100818
|
+
figmaNodes: {
|
|
100819
|
+
id: string;
|
|
100820
|
+
persistentId: string;
|
|
100821
|
+
meta: {
|
|
100822
|
+
name: string;
|
|
100823
|
+
description?: string | undefined;
|
|
100824
|
+
};
|
|
100825
|
+
designSystemVersionId: string;
|
|
100826
|
+
createdAt: Date;
|
|
100827
|
+
updatedAt: Date;
|
|
100828
|
+
data: {
|
|
100829
|
+
format: "Png" | "Svg";
|
|
100830
|
+
sceneNodeId: string;
|
|
100831
|
+
renderState: "InProgress" | "Failed" | "Success";
|
|
100832
|
+
hasSource: boolean;
|
|
100833
|
+
scale?: number | undefined;
|
|
100834
|
+
renderedImage?: {
|
|
100835
|
+
resourceId: string;
|
|
100836
|
+
format: "Png" | "Svg";
|
|
100837
|
+
url?: string | undefined;
|
|
100838
|
+
width?: number | undefined;
|
|
100839
|
+
height?: number | undefined;
|
|
100840
|
+
originKey?: string | undefined;
|
|
100841
|
+
scale?: number | undefined;
|
|
100842
|
+
} | undefined;
|
|
100843
|
+
renderError?: {
|
|
100844
|
+
type: "MissingIntegration" | "NodeNotFound" | "RenderError";
|
|
100845
|
+
} | undefined;
|
|
100846
|
+
};
|
|
100847
|
+
origin: {
|
|
100848
|
+
sourceId: string;
|
|
100849
|
+
fileId?: string | undefined;
|
|
100850
|
+
parentName?: string | undefined;
|
|
100851
|
+
};
|
|
100852
|
+
}[];
|
|
100853
|
+
} | {
|
|
100854
|
+
type: "ElementPropertyValuesEdit";
|
|
100855
|
+
output: {
|
|
100856
|
+
success: true;
|
|
100857
|
+
};
|
|
100562
100858
|
}>;
|
|
100563
100859
|
private action;
|
|
100564
100860
|
}
|
|
@@ -106858,4 +107154,4 @@ declare function isValidRedirectPath(path: string): {
|
|
|
106858
107154
|
reason: ValidationErrorReason | undefined;
|
|
106859
107155
|
};
|
|
106860
107156
|
|
|
106861
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, 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, DTOExporterPropertyDefinitionCode, 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, FigmaNodeStructuresEndpoint, 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 };
|
|
107157
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodeComponentsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOCodeComponent, DTOCodeComponentCreateInput, DTOCodeComponentListResponse, DTOCodeComponentProperty, DTOCodeComponentResponse, DTOCodeComponentsCreateInput, 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, 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, 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, FigmaNodeStructuresEndpoint, 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 };
|