@supernova-studio/client 0.58.0 → 0.58.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +198 -1118
- package/dist/index.d.ts +198 -1118
- package/dist/index.js +63 -58
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +951 -946
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/aux/color.ts +7 -0
- package/src/api/dto/aux/index.ts +2 -0
- package/src/api/dto/aux/meta.ts +8 -0
- package/src/api/dto/elements/elements-action-v2.ts +0 -18
- package/src/api/dto/elements/properties/index.ts +0 -1
- package/src/api/dto/elements/properties/property-definitions.ts +22 -16
- package/src/api/endpoints/design-system/versions/property-definitions.ts +18 -0
- package/src/api/endpoints/design-system/versions/versions.ts +20 -1
- package/src/api/transport/request-executor.ts +4 -1
- package/src/api/dto/elements/properties/property-definitions-actions-v2.ts +0 -53
package/dist/index.d.mts
CHANGED
|
@@ -1127,6 +1127,27 @@ declare function elementGroupsToDocumentationGroupStructureDTOV1(groups: Documen
|
|
|
1127
1127
|
declare function elementGroupsToDocumentationGroupDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
|
|
1128
1128
|
declare function elementGroupsToDocumentationGroupFixedConfigurationDTOV1(groups: DocumentationGroupV1[], pages: (DocumentationPageV1 | DocumentationPageV2)[]): DTODocumentationGroupV1[];
|
|
1129
1129
|
|
|
1130
|
+
declare const DTOColorTokenInlineData: z.ZodObject<{
|
|
1131
|
+
value: z.ZodString;
|
|
1132
|
+
}, "strip", z.ZodTypeAny, {
|
|
1133
|
+
value: string;
|
|
1134
|
+
}, {
|
|
1135
|
+
value: string;
|
|
1136
|
+
}>;
|
|
1137
|
+
type DTOColorTokenInlineData = z.infer<typeof DTOColorTokenInlineData>;
|
|
1138
|
+
|
|
1139
|
+
declare const DTOObjectMeta: z.ZodObject<{
|
|
1140
|
+
name: z.ZodString;
|
|
1141
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1142
|
+
}, "strip", z.ZodTypeAny, {
|
|
1143
|
+
name: string;
|
|
1144
|
+
description?: string | undefined;
|
|
1145
|
+
}, {
|
|
1146
|
+
name: string;
|
|
1147
|
+
description?: string | undefined;
|
|
1148
|
+
}>;
|
|
1149
|
+
type DTOObjectMeta = z.infer<typeof DTOObjectMeta>;
|
|
1150
|
+
|
|
1130
1151
|
declare const DTOPagination: z.ZodObject<{
|
|
1131
1152
|
limit: z.ZodOptional<z.ZodString>;
|
|
1132
1153
|
offset: z.ZodOptional<z.ZodString>;
|
|
@@ -40413,139 +40434,115 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
|
|
|
40413
40434
|
}>;
|
|
40414
40435
|
type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
|
|
40415
40436
|
|
|
40416
|
-
declare const
|
|
40417
|
-
|
|
40418
|
-
|
|
40419
|
-
|
|
40420
|
-
|
|
40421
|
-
meta: z.ZodObject<{
|
|
40422
|
-
name: z.ZodString;
|
|
40423
|
-
description: z.ZodOptional<z.ZodString>;
|
|
40424
|
-
}, "strip", z.ZodTypeAny, {
|
|
40425
|
-
name: string;
|
|
40426
|
-
description?: string | undefined;
|
|
40427
|
-
}, {
|
|
40428
|
-
name: string;
|
|
40429
|
-
description?: string | undefined;
|
|
40430
|
-
}>;
|
|
40431
|
-
persistentId: z.ZodString;
|
|
40432
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40433
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40434
|
-
codeName: z.ZodString;
|
|
40435
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40436
|
-
id: string;
|
|
40437
|
-
name: string;
|
|
40438
|
-
backgroundColor?: {
|
|
40439
|
-
value: string;
|
|
40440
|
-
} | undefined;
|
|
40441
|
-
}[], z.ZodTypeDef, {
|
|
40442
|
-
id: string;
|
|
40443
|
-
name: string;
|
|
40444
|
-
backgroundColor?: {
|
|
40445
|
-
value: string;
|
|
40446
|
-
} | undefined;
|
|
40447
|
-
}[]>>>, {
|
|
40448
|
-
id: string;
|
|
40449
|
-
name: string;
|
|
40450
|
-
backgroundColor?: {
|
|
40451
|
-
value: string;
|
|
40452
|
-
} | undefined;
|
|
40453
|
-
}[] | undefined, {
|
|
40454
|
-
id: string;
|
|
40455
|
-
name: string;
|
|
40456
|
-
backgroundColor?: {
|
|
40457
|
-
value: string;
|
|
40458
|
-
} | undefined;
|
|
40459
|
-
}[] | null | undefined>;
|
|
40460
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40437
|
+
declare const DTOElementPropertyDefinitionOption: z.ZodObject<{
|
|
40438
|
+
id: z.ZodString;
|
|
40439
|
+
name: z.ZodString;
|
|
40440
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
40441
|
+
value: z.ZodString;
|
|
40461
40442
|
}, "strip", z.ZodTypeAny, {
|
|
40462
|
-
|
|
40463
|
-
id: string;
|
|
40464
|
-
persistentId: string;
|
|
40465
|
-
meta: {
|
|
40466
|
-
name: string;
|
|
40467
|
-
description?: string | undefined;
|
|
40468
|
-
};
|
|
40469
|
-
designSystemVersionId: string;
|
|
40470
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40471
|
-
codeName: string;
|
|
40472
|
-
options?: {
|
|
40473
|
-
id: string;
|
|
40474
|
-
name: string;
|
|
40475
|
-
backgroundColor?: {
|
|
40476
|
-
value: string;
|
|
40477
|
-
} | undefined;
|
|
40478
|
-
}[] | undefined;
|
|
40479
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40443
|
+
value: string;
|
|
40480
40444
|
}, {
|
|
40481
|
-
|
|
40482
|
-
|
|
40483
|
-
persistentId: string;
|
|
40484
|
-
meta: {
|
|
40485
|
-
name: string;
|
|
40486
|
-
description?: string | undefined;
|
|
40487
|
-
};
|
|
40488
|
-
designSystemVersionId: string;
|
|
40489
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40490
|
-
codeName: string;
|
|
40491
|
-
options?: {
|
|
40492
|
-
id: string;
|
|
40493
|
-
name: string;
|
|
40494
|
-
backgroundColor?: {
|
|
40495
|
-
value: string;
|
|
40496
|
-
} | undefined;
|
|
40497
|
-
}[] | null | undefined;
|
|
40498
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40499
|
-
}>;
|
|
40445
|
+
value: string;
|
|
40446
|
+
}>>;
|
|
40500
40447
|
}, "strip", z.ZodTypeAny, {
|
|
40501
|
-
|
|
40502
|
-
|
|
40503
|
-
|
|
40448
|
+
id: string;
|
|
40449
|
+
name: string;
|
|
40450
|
+
backgroundColor?: {
|
|
40451
|
+
value: string;
|
|
40452
|
+
} | undefined;
|
|
40453
|
+
}, {
|
|
40454
|
+
id: string;
|
|
40455
|
+
name: string;
|
|
40456
|
+
backgroundColor?: {
|
|
40457
|
+
value: string;
|
|
40458
|
+
} | undefined;
|
|
40459
|
+
}>;
|
|
40460
|
+
type DTOElementPropertyDefinitionOption = z.infer<typeof DTOElementPropertyDefinitionOption>;
|
|
40461
|
+
declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
40462
|
+
id: z.ZodString;
|
|
40463
|
+
designSystemVersionId: z.ZodString;
|
|
40464
|
+
meta: z.ZodObject<{
|
|
40465
|
+
name: z.ZodString;
|
|
40466
|
+
description: z.ZodOptional<z.ZodString>;
|
|
40467
|
+
}, "strip", z.ZodTypeAny, {
|
|
40468
|
+
name: string;
|
|
40469
|
+
description?: string | undefined;
|
|
40470
|
+
}, {
|
|
40471
|
+
name: string;
|
|
40472
|
+
description?: string | undefined;
|
|
40473
|
+
}>;
|
|
40474
|
+
persistentId: z.ZodString;
|
|
40475
|
+
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40476
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40477
|
+
codeName: z.ZodString;
|
|
40478
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40504
40479
|
id: string;
|
|
40505
|
-
|
|
40506
|
-
|
|
40507
|
-
|
|
40508
|
-
|
|
40509
|
-
|
|
40510
|
-
|
|
40511
|
-
|
|
40512
|
-
|
|
40513
|
-
|
|
40514
|
-
|
|
40515
|
-
|
|
40516
|
-
|
|
40517
|
-
|
|
40518
|
-
|
|
40519
|
-
|
|
40520
|
-
|
|
40480
|
+
name: string;
|
|
40481
|
+
backgroundColor?: {
|
|
40482
|
+
value: string;
|
|
40483
|
+
} | undefined;
|
|
40484
|
+
}[], z.ZodTypeDef, {
|
|
40485
|
+
id: string;
|
|
40486
|
+
name: string;
|
|
40487
|
+
backgroundColor?: {
|
|
40488
|
+
value: string;
|
|
40489
|
+
} | undefined;
|
|
40490
|
+
}[]>>>, {
|
|
40491
|
+
id: string;
|
|
40492
|
+
name: string;
|
|
40493
|
+
backgroundColor?: {
|
|
40494
|
+
value: string;
|
|
40495
|
+
} | undefined;
|
|
40496
|
+
}[] | undefined, {
|
|
40497
|
+
id: string;
|
|
40498
|
+
name: string;
|
|
40499
|
+
backgroundColor?: {
|
|
40500
|
+
value: string;
|
|
40501
|
+
} | undefined;
|
|
40502
|
+
}[] | null | undefined>;
|
|
40503
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40504
|
+
}, "strip", z.ZodTypeAny, {
|
|
40505
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40506
|
+
id: string;
|
|
40507
|
+
persistentId: string;
|
|
40508
|
+
meta: {
|
|
40509
|
+
name: string;
|
|
40510
|
+
description?: string | undefined;
|
|
40521
40511
|
};
|
|
40522
|
-
|
|
40523
|
-
|
|
40524
|
-
|
|
40525
|
-
|
|
40512
|
+
designSystemVersionId: string;
|
|
40513
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40514
|
+
codeName: string;
|
|
40515
|
+
options?: {
|
|
40526
40516
|
id: string;
|
|
40527
|
-
|
|
40528
|
-
|
|
40529
|
-
|
|
40530
|
-
|
|
40531
|
-
|
|
40532
|
-
|
|
40533
|
-
|
|
40534
|
-
|
|
40535
|
-
|
|
40536
|
-
|
|
40537
|
-
|
|
40538
|
-
|
|
40539
|
-
|
|
40540
|
-
} | undefined;
|
|
40541
|
-
}[] | null | undefined;
|
|
40542
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40517
|
+
name: string;
|
|
40518
|
+
backgroundColor?: {
|
|
40519
|
+
value: string;
|
|
40520
|
+
} | undefined;
|
|
40521
|
+
}[] | undefined;
|
|
40522
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40523
|
+
}, {
|
|
40524
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40525
|
+
id: string;
|
|
40526
|
+
persistentId: string;
|
|
40527
|
+
meta: {
|
|
40528
|
+
name: string;
|
|
40529
|
+
description?: string | undefined;
|
|
40543
40530
|
};
|
|
40531
|
+
designSystemVersionId: string;
|
|
40532
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40533
|
+
codeName: string;
|
|
40534
|
+
options?: {
|
|
40535
|
+
id: string;
|
|
40536
|
+
name: string;
|
|
40537
|
+
backgroundColor?: {
|
|
40538
|
+
value: string;
|
|
40539
|
+
} | undefined;
|
|
40540
|
+
}[] | null | undefined;
|
|
40541
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40544
40542
|
}>;
|
|
40545
|
-
type
|
|
40546
|
-
declare const
|
|
40547
|
-
|
|
40548
|
-
definition: z.ZodObject<{
|
|
40543
|
+
type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
|
|
40544
|
+
declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
40545
|
+
definitions: z.ZodArray<z.ZodObject<{
|
|
40549
40546
|
id: z.ZodString;
|
|
40550
40547
|
designSystemVersionId: z.ZodString;
|
|
40551
40548
|
meta: z.ZodObject<{
|
|
@@ -40626,10 +40623,9 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40626
40623
|
} | undefined;
|
|
40627
40624
|
}[] | null | undefined;
|
|
40628
40625
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40629
|
-
}>;
|
|
40626
|
+
}>, "many">;
|
|
40630
40627
|
}, "strip", z.ZodTypeAny, {
|
|
40631
|
-
|
|
40632
|
-
definition: {
|
|
40628
|
+
definitions: {
|
|
40633
40629
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40634
40630
|
id: string;
|
|
40635
40631
|
persistentId: string;
|
|
@@ -40648,10 +40644,9 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40648
40644
|
} | undefined;
|
|
40649
40645
|
}[] | undefined;
|
|
40650
40646
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40651
|
-
};
|
|
40647
|
+
}[];
|
|
40652
40648
|
}, {
|
|
40653
|
-
|
|
40654
|
-
definition: {
|
|
40649
|
+
definitions: {
|
|
40655
40650
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40656
40651
|
id: string;
|
|
40657
40652
|
persistentId: string;
|
|
@@ -40670,473 +40665,11 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40670
40665
|
} | undefined;
|
|
40671
40666
|
}[] | null | undefined;
|
|
40672
40667
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40673
|
-
};
|
|
40674
|
-
}>;
|
|
40675
|
-
type DTOPropertyDefinitionUpdateActionOutputV2 = z.infer<typeof DTOPropertyDefinitionUpdateActionOutputV2>;
|
|
40676
|
-
declare const DTOPropertyDefinitionDeleteActionOutputV2: z.ZodObject<{
|
|
40677
|
-
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
40678
|
-
output: z.ZodObject<{
|
|
40679
|
-
success: z.ZodLiteral<true>;
|
|
40680
|
-
}, "strip", z.ZodTypeAny, {
|
|
40681
|
-
success: true;
|
|
40682
|
-
}, {
|
|
40683
|
-
success: true;
|
|
40684
|
-
}>;
|
|
40685
|
-
}, "strip", z.ZodTypeAny, {
|
|
40686
|
-
type: "PropertyDefinitionDelete";
|
|
40687
|
-
output: {
|
|
40688
|
-
success: true;
|
|
40689
|
-
};
|
|
40690
|
-
}, {
|
|
40691
|
-
type: "PropertyDefinitionDelete";
|
|
40692
|
-
output: {
|
|
40693
|
-
success: true;
|
|
40694
|
-
};
|
|
40668
|
+
}[];
|
|
40695
40669
|
}>;
|
|
40696
|
-
type
|
|
40697
|
-
declare const
|
|
40698
|
-
|
|
40699
|
-
input: z.ZodObject<Omit<{
|
|
40700
|
-
id: z.ZodString;
|
|
40701
|
-
designSystemVersionId: z.ZodString;
|
|
40702
|
-
meta: z.ZodObject<{
|
|
40703
|
-
name: z.ZodString;
|
|
40704
|
-
description: z.ZodOptional<z.ZodString>;
|
|
40705
|
-
}, "strip", z.ZodTypeAny, {
|
|
40706
|
-
name: string;
|
|
40707
|
-
description?: string | undefined;
|
|
40708
|
-
}, {
|
|
40709
|
-
name: string;
|
|
40710
|
-
description?: string | undefined;
|
|
40711
|
-
}>;
|
|
40712
|
-
persistentId: z.ZodString;
|
|
40713
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40714
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40715
|
-
codeName: z.ZodString;
|
|
40716
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40717
|
-
id: string;
|
|
40718
|
-
name: string;
|
|
40719
|
-
backgroundColor?: {
|
|
40720
|
-
value: string;
|
|
40721
|
-
} | undefined;
|
|
40722
|
-
}[], z.ZodTypeDef, {
|
|
40723
|
-
id: string;
|
|
40724
|
-
name: string;
|
|
40725
|
-
backgroundColor?: {
|
|
40726
|
-
value: string;
|
|
40727
|
-
} | undefined;
|
|
40728
|
-
}[]>>>, {
|
|
40729
|
-
id: string;
|
|
40730
|
-
name: string;
|
|
40731
|
-
backgroundColor?: {
|
|
40732
|
-
value: string;
|
|
40733
|
-
} | undefined;
|
|
40734
|
-
}[] | undefined, {
|
|
40735
|
-
id: string;
|
|
40736
|
-
name: string;
|
|
40737
|
-
backgroundColor?: {
|
|
40738
|
-
value: string;
|
|
40739
|
-
} | undefined;
|
|
40740
|
-
}[] | null | undefined>;
|
|
40741
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40742
|
-
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
40743
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40744
|
-
persistentId: string;
|
|
40745
|
-
meta: {
|
|
40746
|
-
name: string;
|
|
40747
|
-
description?: string | undefined;
|
|
40748
|
-
};
|
|
40749
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40750
|
-
codeName: string;
|
|
40751
|
-
options?: {
|
|
40752
|
-
id: string;
|
|
40753
|
-
name: string;
|
|
40754
|
-
backgroundColor?: {
|
|
40755
|
-
value: string;
|
|
40756
|
-
} | undefined;
|
|
40757
|
-
}[] | undefined;
|
|
40758
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40759
|
-
}, {
|
|
40760
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40761
|
-
persistentId: string;
|
|
40762
|
-
meta: {
|
|
40763
|
-
name: string;
|
|
40764
|
-
description?: string | undefined;
|
|
40765
|
-
};
|
|
40766
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40767
|
-
codeName: string;
|
|
40768
|
-
options?: {
|
|
40769
|
-
id: string;
|
|
40770
|
-
name: string;
|
|
40771
|
-
backgroundColor?: {
|
|
40772
|
-
value: string;
|
|
40773
|
-
} | undefined;
|
|
40774
|
-
}[] | null | undefined;
|
|
40775
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40776
|
-
}>;
|
|
40777
|
-
}, "strip", z.ZodTypeAny, {
|
|
40778
|
-
type: "PropertyDefinitionCreate";
|
|
40779
|
-
input: {
|
|
40780
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40781
|
-
persistentId: string;
|
|
40782
|
-
meta: {
|
|
40783
|
-
name: string;
|
|
40784
|
-
description?: string | undefined;
|
|
40785
|
-
};
|
|
40786
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40787
|
-
codeName: string;
|
|
40788
|
-
options?: {
|
|
40789
|
-
id: string;
|
|
40790
|
-
name: string;
|
|
40791
|
-
backgroundColor?: {
|
|
40792
|
-
value: string;
|
|
40793
|
-
} | undefined;
|
|
40794
|
-
}[] | undefined;
|
|
40795
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40796
|
-
};
|
|
40797
|
-
}, {
|
|
40798
|
-
type: "PropertyDefinitionCreate";
|
|
40799
|
-
input: {
|
|
40800
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40801
|
-
persistentId: string;
|
|
40802
|
-
meta: {
|
|
40803
|
-
name: string;
|
|
40804
|
-
description?: string | undefined;
|
|
40805
|
-
};
|
|
40806
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40807
|
-
codeName: string;
|
|
40808
|
-
options?: {
|
|
40809
|
-
id: string;
|
|
40810
|
-
name: string;
|
|
40811
|
-
backgroundColor?: {
|
|
40812
|
-
value: string;
|
|
40813
|
-
} | undefined;
|
|
40814
|
-
}[] | null | undefined;
|
|
40815
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40816
|
-
};
|
|
40817
|
-
}>;
|
|
40818
|
-
type DTOPropertyDefinitionCreateActionInputV2 = z.infer<typeof DTOPropertyDefinitionCreateActionInputV2>;
|
|
40819
|
-
declare const DTOPropertyDefinitionUpdateActionInputV2: z.ZodObject<{
|
|
40820
|
-
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
40821
|
-
input: z.ZodObject<{
|
|
40822
|
-
id: z.ZodString;
|
|
40823
|
-
name: z.ZodOptional<z.ZodString>;
|
|
40824
|
-
description: z.ZodOptional<z.ZodString>;
|
|
40825
|
-
codeName: z.ZodOptional<z.ZodString>;
|
|
40826
|
-
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
40827
|
-
id: z.ZodString;
|
|
40828
|
-
name: z.ZodString;
|
|
40829
|
-
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
40830
|
-
value: z.ZodString;
|
|
40831
|
-
}, "strip", z.ZodTypeAny, {
|
|
40832
|
-
value: string;
|
|
40833
|
-
}, {
|
|
40834
|
-
value: string;
|
|
40835
|
-
}>>;
|
|
40836
|
-
}, "strip", z.ZodTypeAny, {
|
|
40837
|
-
id: string;
|
|
40838
|
-
name: string;
|
|
40839
|
-
backgroundColor?: {
|
|
40840
|
-
value: string;
|
|
40841
|
-
} | undefined;
|
|
40842
|
-
}, {
|
|
40843
|
-
id: string;
|
|
40844
|
-
name: string;
|
|
40845
|
-
backgroundColor?: {
|
|
40846
|
-
value: string;
|
|
40847
|
-
} | undefined;
|
|
40848
|
-
}>, "many">>;
|
|
40849
|
-
}, "strip", z.ZodTypeAny, {
|
|
40850
|
-
id: string;
|
|
40851
|
-
options?: {
|
|
40852
|
-
id: string;
|
|
40853
|
-
name: string;
|
|
40854
|
-
backgroundColor?: {
|
|
40855
|
-
value: string;
|
|
40856
|
-
} | undefined;
|
|
40857
|
-
}[] | undefined;
|
|
40858
|
-
description?: string | undefined;
|
|
40859
|
-
name?: string | undefined;
|
|
40860
|
-
codeName?: string | undefined;
|
|
40861
|
-
}, {
|
|
40862
|
-
id: string;
|
|
40863
|
-
options?: {
|
|
40864
|
-
id: string;
|
|
40865
|
-
name: string;
|
|
40866
|
-
backgroundColor?: {
|
|
40867
|
-
value: string;
|
|
40868
|
-
} | undefined;
|
|
40869
|
-
}[] | undefined;
|
|
40870
|
-
description?: string | undefined;
|
|
40871
|
-
name?: string | undefined;
|
|
40872
|
-
codeName?: string | undefined;
|
|
40873
|
-
}>;
|
|
40874
|
-
}, "strip", z.ZodTypeAny, {
|
|
40875
|
-
type: "PropertyDefinitionUpdate";
|
|
40876
|
-
input: {
|
|
40877
|
-
id: string;
|
|
40878
|
-
options?: {
|
|
40879
|
-
id: string;
|
|
40880
|
-
name: string;
|
|
40881
|
-
backgroundColor?: {
|
|
40882
|
-
value: string;
|
|
40883
|
-
} | undefined;
|
|
40884
|
-
}[] | undefined;
|
|
40885
|
-
description?: string | undefined;
|
|
40886
|
-
name?: string | undefined;
|
|
40887
|
-
codeName?: string | undefined;
|
|
40888
|
-
};
|
|
40889
|
-
}, {
|
|
40890
|
-
type: "PropertyDefinitionUpdate";
|
|
40891
|
-
input: {
|
|
40892
|
-
id: string;
|
|
40893
|
-
options?: {
|
|
40894
|
-
id: string;
|
|
40895
|
-
name: string;
|
|
40896
|
-
backgroundColor?: {
|
|
40897
|
-
value: string;
|
|
40898
|
-
} | undefined;
|
|
40899
|
-
}[] | undefined;
|
|
40900
|
-
description?: string | undefined;
|
|
40901
|
-
name?: string | undefined;
|
|
40902
|
-
codeName?: string | undefined;
|
|
40903
|
-
};
|
|
40904
|
-
}>;
|
|
40905
|
-
type DTOPropertyDefinitionUpdateActionInputV2 = z.infer<typeof DTOPropertyDefinitionUpdateActionInputV2>;
|
|
40906
|
-
declare const DTOPropertyDefinitionDeleteActionInputV2: z.ZodObject<{
|
|
40907
|
-
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
40908
|
-
input: z.ZodObject<{
|
|
40909
|
-
id: z.ZodString;
|
|
40910
|
-
}, "strip", z.ZodTypeAny, {
|
|
40911
|
-
id: string;
|
|
40912
|
-
}, {
|
|
40913
|
-
id: string;
|
|
40914
|
-
}>;
|
|
40915
|
-
}, "strip", z.ZodTypeAny, {
|
|
40916
|
-
type: "PropertyDefinitionDelete";
|
|
40917
|
-
input: {
|
|
40918
|
-
id: string;
|
|
40919
|
-
};
|
|
40920
|
-
}, {
|
|
40921
|
-
type: "PropertyDefinitionDelete";
|
|
40922
|
-
input: {
|
|
40923
|
-
id: string;
|
|
40924
|
-
};
|
|
40925
|
-
}>;
|
|
40926
|
-
type DTOPropertyDefinitionDeleteActionInputV2 = z.infer<typeof DTOPropertyDefinitionDeleteActionInputV2>;
|
|
40927
|
-
|
|
40928
|
-
declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
40929
|
-
id: z.ZodString;
|
|
40930
|
-
designSystemVersionId: z.ZodString;
|
|
40931
|
-
meta: z.ZodObject<{
|
|
40932
|
-
name: z.ZodString;
|
|
40933
|
-
description: z.ZodOptional<z.ZodString>;
|
|
40934
|
-
}, "strip", z.ZodTypeAny, {
|
|
40935
|
-
name: string;
|
|
40936
|
-
description?: string | undefined;
|
|
40937
|
-
}, {
|
|
40938
|
-
name: string;
|
|
40939
|
-
description?: string | undefined;
|
|
40940
|
-
}>;
|
|
40941
|
-
persistentId: z.ZodString;
|
|
40942
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40943
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40944
|
-
codeName: z.ZodString;
|
|
40945
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40946
|
-
id: string;
|
|
40947
|
-
name: string;
|
|
40948
|
-
backgroundColor?: {
|
|
40949
|
-
value: string;
|
|
40950
|
-
} | undefined;
|
|
40951
|
-
}[], z.ZodTypeDef, {
|
|
40952
|
-
id: string;
|
|
40953
|
-
name: string;
|
|
40954
|
-
backgroundColor?: {
|
|
40955
|
-
value: string;
|
|
40956
|
-
} | undefined;
|
|
40957
|
-
}[]>>>, {
|
|
40958
|
-
id: string;
|
|
40959
|
-
name: string;
|
|
40960
|
-
backgroundColor?: {
|
|
40961
|
-
value: string;
|
|
40962
|
-
} | undefined;
|
|
40963
|
-
}[] | undefined, {
|
|
40964
|
-
id: string;
|
|
40965
|
-
name: string;
|
|
40966
|
-
backgroundColor?: {
|
|
40967
|
-
value: string;
|
|
40968
|
-
} | undefined;
|
|
40969
|
-
}[] | null | undefined>;
|
|
40970
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40971
|
-
}, "strip", z.ZodTypeAny, {
|
|
40972
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40973
|
-
id: string;
|
|
40974
|
-
persistentId: string;
|
|
40975
|
-
meta: {
|
|
40976
|
-
name: string;
|
|
40977
|
-
description?: string | undefined;
|
|
40978
|
-
};
|
|
40979
|
-
designSystemVersionId: string;
|
|
40980
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40981
|
-
codeName: string;
|
|
40982
|
-
options?: {
|
|
40983
|
-
id: string;
|
|
40984
|
-
name: string;
|
|
40985
|
-
backgroundColor?: {
|
|
40986
|
-
value: string;
|
|
40987
|
-
} | undefined;
|
|
40988
|
-
}[] | undefined;
|
|
40989
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40990
|
-
}, {
|
|
40991
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40992
|
-
id: string;
|
|
40993
|
-
persistentId: string;
|
|
40994
|
-
meta: {
|
|
40995
|
-
name: string;
|
|
40996
|
-
description?: string | undefined;
|
|
40997
|
-
};
|
|
40998
|
-
designSystemVersionId: string;
|
|
40999
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41000
|
-
codeName: string;
|
|
41001
|
-
options?: {
|
|
41002
|
-
id: string;
|
|
41003
|
-
name: string;
|
|
41004
|
-
backgroundColor?: {
|
|
41005
|
-
value: string;
|
|
41006
|
-
} | undefined;
|
|
41007
|
-
}[] | null | undefined;
|
|
41008
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41009
|
-
}>;
|
|
41010
|
-
type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
|
|
41011
|
-
declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
41012
|
-
definitions: z.ZodArray<z.ZodObject<{
|
|
41013
|
-
id: z.ZodString;
|
|
41014
|
-
designSystemVersionId: z.ZodString;
|
|
41015
|
-
meta: z.ZodObject<{
|
|
41016
|
-
name: z.ZodString;
|
|
41017
|
-
description: z.ZodOptional<z.ZodString>;
|
|
41018
|
-
}, "strip", z.ZodTypeAny, {
|
|
41019
|
-
name: string;
|
|
41020
|
-
description?: string | undefined;
|
|
41021
|
-
}, {
|
|
41022
|
-
name: string;
|
|
41023
|
-
description?: string | undefined;
|
|
41024
|
-
}>;
|
|
41025
|
-
persistentId: z.ZodString;
|
|
41026
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41027
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41028
|
-
codeName: z.ZodString;
|
|
41029
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41030
|
-
id: string;
|
|
41031
|
-
name: string;
|
|
41032
|
-
backgroundColor?: {
|
|
41033
|
-
value: string;
|
|
41034
|
-
} | undefined;
|
|
41035
|
-
}[], z.ZodTypeDef, {
|
|
41036
|
-
id: string;
|
|
41037
|
-
name: string;
|
|
41038
|
-
backgroundColor?: {
|
|
41039
|
-
value: string;
|
|
41040
|
-
} | undefined;
|
|
41041
|
-
}[]>>>, {
|
|
41042
|
-
id: string;
|
|
41043
|
-
name: string;
|
|
41044
|
-
backgroundColor?: {
|
|
41045
|
-
value: string;
|
|
41046
|
-
} | undefined;
|
|
41047
|
-
}[] | undefined, {
|
|
41048
|
-
id: string;
|
|
41049
|
-
name: string;
|
|
41050
|
-
backgroundColor?: {
|
|
41051
|
-
value: string;
|
|
41052
|
-
} | undefined;
|
|
41053
|
-
}[] | null | undefined>;
|
|
41054
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41055
|
-
}, "strip", z.ZodTypeAny, {
|
|
41056
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41057
|
-
id: string;
|
|
41058
|
-
persistentId: string;
|
|
41059
|
-
meta: {
|
|
41060
|
-
name: string;
|
|
41061
|
-
description?: string | undefined;
|
|
41062
|
-
};
|
|
41063
|
-
designSystemVersionId: string;
|
|
41064
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41065
|
-
codeName: string;
|
|
41066
|
-
options?: {
|
|
41067
|
-
id: string;
|
|
41068
|
-
name: string;
|
|
41069
|
-
backgroundColor?: {
|
|
41070
|
-
value: string;
|
|
41071
|
-
} | undefined;
|
|
41072
|
-
}[] | undefined;
|
|
41073
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41074
|
-
}, {
|
|
41075
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41076
|
-
id: string;
|
|
41077
|
-
persistentId: string;
|
|
41078
|
-
meta: {
|
|
41079
|
-
name: string;
|
|
41080
|
-
description?: string | undefined;
|
|
41081
|
-
};
|
|
41082
|
-
designSystemVersionId: string;
|
|
41083
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41084
|
-
codeName: string;
|
|
41085
|
-
options?: {
|
|
41086
|
-
id: string;
|
|
41087
|
-
name: string;
|
|
41088
|
-
backgroundColor?: {
|
|
41089
|
-
value: string;
|
|
41090
|
-
} | undefined;
|
|
41091
|
-
}[] | null | undefined;
|
|
41092
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41093
|
-
}>, "many">;
|
|
41094
|
-
}, "strip", z.ZodTypeAny, {
|
|
41095
|
-
definitions: {
|
|
41096
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41097
|
-
id: string;
|
|
41098
|
-
persistentId: string;
|
|
41099
|
-
meta: {
|
|
41100
|
-
name: string;
|
|
41101
|
-
description?: string | undefined;
|
|
41102
|
-
};
|
|
41103
|
-
designSystemVersionId: string;
|
|
41104
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41105
|
-
codeName: string;
|
|
41106
|
-
options?: {
|
|
41107
|
-
id: string;
|
|
41108
|
-
name: string;
|
|
41109
|
-
backgroundColor?: {
|
|
41110
|
-
value: string;
|
|
41111
|
-
} | undefined;
|
|
41112
|
-
}[] | undefined;
|
|
41113
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41114
|
-
}[];
|
|
41115
|
-
}, {
|
|
41116
|
-
definitions: {
|
|
41117
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41118
|
-
id: string;
|
|
41119
|
-
persistentId: string;
|
|
41120
|
-
meta: {
|
|
41121
|
-
name: string;
|
|
41122
|
-
description?: string | undefined;
|
|
41123
|
-
};
|
|
41124
|
-
designSystemVersionId: string;
|
|
41125
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
41126
|
-
codeName: string;
|
|
41127
|
-
options?: {
|
|
41128
|
-
id: string;
|
|
41129
|
-
name: string;
|
|
41130
|
-
backgroundColor?: {
|
|
41131
|
-
value: string;
|
|
41132
|
-
} | undefined;
|
|
41133
|
-
}[] | null | undefined;
|
|
41134
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41135
|
-
}[];
|
|
41136
|
-
}>;
|
|
41137
|
-
type DTOElementPropertyDefinitionListResponse = z.infer<typeof DTOElementPropertyDefinitionListResponse>;
|
|
41138
|
-
declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
41139
|
-
definition: z.ZodObject<{
|
|
40670
|
+
type DTOElementPropertyDefinitionListResponse = z.infer<typeof DTOElementPropertyDefinitionListResponse>;
|
|
40671
|
+
declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
40672
|
+
definition: z.ZodObject<{
|
|
41140
40673
|
id: z.ZodString;
|
|
41141
40674
|
designSystemVersionId: z.ZodString;
|
|
41142
40675
|
meta: z.ZodObject<{
|
|
@@ -41262,9 +40795,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
|
41262
40795
|
};
|
|
41263
40796
|
}>;
|
|
41264
40797
|
type DTOElementPropertyDefinitionResponse = z.infer<typeof DTOElementPropertyDefinitionResponse>;
|
|
41265
|
-
declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<
|
|
41266
|
-
id: z.ZodString;
|
|
41267
|
-
designSystemVersionId: z.ZodString;
|
|
40798
|
+
declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
|
|
41268
40799
|
meta: z.ZodObject<{
|
|
41269
40800
|
name: z.ZodString;
|
|
41270
40801
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -41305,7 +40836,8 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
|
|
|
41305
40836
|
} | undefined;
|
|
41306
40837
|
}[] | null | undefined>;
|
|
41307
40838
|
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41308
|
-
|
|
40839
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
40840
|
+
}, "strip", z.ZodTypeAny, {
|
|
41309
40841
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41310
40842
|
persistentId: string;
|
|
41311
40843
|
meta: {
|
|
@@ -41322,6 +40854,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
|
|
|
41322
40854
|
} | undefined;
|
|
41323
40855
|
}[] | undefined;
|
|
41324
40856
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40857
|
+
columnWidth?: number | undefined;
|
|
41325
40858
|
}, {
|
|
41326
40859
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41327
40860
|
persistentId: string;
|
|
@@ -41339,12 +40872,20 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
|
|
|
41339
40872
|
} | undefined;
|
|
41340
40873
|
}[] | null | undefined;
|
|
41341
40874
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40875
|
+
columnWidth?: number | undefined;
|
|
41342
40876
|
}>;
|
|
41343
40877
|
type DTOElementPropertyDefinitionCreatePayload = z.infer<typeof DTOElementPropertyDefinitionCreatePayload>;
|
|
41344
40878
|
declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
|
|
41345
|
-
|
|
41346
|
-
|
|
41347
|
-
|
|
40879
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
40880
|
+
name: z.ZodString;
|
|
40881
|
+
description: z.ZodOptional<z.ZodString>;
|
|
40882
|
+
}, "strip", z.ZodTypeAny, {
|
|
40883
|
+
name: string;
|
|
40884
|
+
description?: string | undefined;
|
|
40885
|
+
}, {
|
|
40886
|
+
name: string;
|
|
40887
|
+
description?: string | undefined;
|
|
40888
|
+
}>>;
|
|
41348
40889
|
codeName: z.ZodOptional<z.ZodString>;
|
|
41349
40890
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
41350
40891
|
id: z.ZodString;
|
|
@@ -41370,7 +40911,6 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
|
|
|
41370
40911
|
} | undefined;
|
|
41371
40912
|
}>, "many">>;
|
|
41372
40913
|
}, "strip", z.ZodTypeAny, {
|
|
41373
|
-
id: string;
|
|
41374
40914
|
options?: {
|
|
41375
40915
|
id: string;
|
|
41376
40916
|
name: string;
|
|
@@ -41378,11 +40918,12 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
|
|
|
41378
40918
|
value: string;
|
|
41379
40919
|
} | undefined;
|
|
41380
40920
|
}[] | undefined;
|
|
41381
|
-
|
|
41382
|
-
|
|
40921
|
+
meta?: {
|
|
40922
|
+
name: string;
|
|
40923
|
+
description?: string | undefined;
|
|
40924
|
+
} | undefined;
|
|
41383
40925
|
codeName?: string | undefined;
|
|
41384
40926
|
}, {
|
|
41385
|
-
id: string;
|
|
41386
40927
|
options?: {
|
|
41387
40928
|
id: string;
|
|
41388
40929
|
name: string;
|
|
@@ -41390,19 +40931,13 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
|
|
|
41390
40931
|
value: string;
|
|
41391
40932
|
} | undefined;
|
|
41392
40933
|
}[] | undefined;
|
|
41393
|
-
|
|
41394
|
-
|
|
40934
|
+
meta?: {
|
|
40935
|
+
name: string;
|
|
40936
|
+
description?: string | undefined;
|
|
40937
|
+
} | undefined;
|
|
41395
40938
|
codeName?: string | undefined;
|
|
41396
40939
|
}>;
|
|
41397
40940
|
type DTOElementPropertyDefinitionUpdatePayload = z.infer<typeof DTOElementPropertyDefinitionUpdatePayload>;
|
|
41398
|
-
declare const DTOElementPropertyDefinitionDeletePayload: z.ZodObject<{
|
|
41399
|
-
id: z.ZodString;
|
|
41400
|
-
}, "strip", z.ZodTypeAny, {
|
|
41401
|
-
id: string;
|
|
41402
|
-
}, {
|
|
41403
|
-
id: string;
|
|
41404
|
-
}>;
|
|
41405
|
-
type DTOElementPropertyDefinitionDeletePayload = z.infer<typeof DTOElementPropertyDefinitionDeletePayload>;
|
|
41406
40941
|
|
|
41407
40942
|
declare const DTOElementPropertyValue: z.ZodObject<{
|
|
41408
40943
|
id: z.ZodString;
|
|
@@ -41971,281 +41506,6 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41971
41506
|
parentName?: string | undefined;
|
|
41972
41507
|
};
|
|
41973
41508
|
}[];
|
|
41974
|
-
}>, z.ZodObject<{
|
|
41975
|
-
type: z.ZodLiteral<"PropertyDefinitionCreate">;
|
|
41976
|
-
definition: z.ZodObject<{
|
|
41977
|
-
id: z.ZodString;
|
|
41978
|
-
designSystemVersionId: z.ZodString;
|
|
41979
|
-
meta: z.ZodObject<{
|
|
41980
|
-
name: z.ZodString;
|
|
41981
|
-
description: z.ZodOptional<z.ZodString>;
|
|
41982
|
-
}, "strip", z.ZodTypeAny, {
|
|
41983
|
-
name: string;
|
|
41984
|
-
description?: string | undefined;
|
|
41985
|
-
}, {
|
|
41986
|
-
name: string;
|
|
41987
|
-
description?: string | undefined;
|
|
41988
|
-
}>;
|
|
41989
|
-
persistentId: z.ZodString;
|
|
41990
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41991
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41992
|
-
codeName: z.ZodString;
|
|
41993
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41994
|
-
id: string;
|
|
41995
|
-
name: string;
|
|
41996
|
-
backgroundColor?: {
|
|
41997
|
-
value: string;
|
|
41998
|
-
} | undefined;
|
|
41999
|
-
}[], z.ZodTypeDef, {
|
|
42000
|
-
id: string;
|
|
42001
|
-
name: string;
|
|
42002
|
-
backgroundColor?: {
|
|
42003
|
-
value: string;
|
|
42004
|
-
} | undefined;
|
|
42005
|
-
}[]>>>, {
|
|
42006
|
-
id: string;
|
|
42007
|
-
name: string;
|
|
42008
|
-
backgroundColor?: {
|
|
42009
|
-
value: string;
|
|
42010
|
-
} | undefined;
|
|
42011
|
-
}[] | undefined, {
|
|
42012
|
-
id: string;
|
|
42013
|
-
name: string;
|
|
42014
|
-
backgroundColor?: {
|
|
42015
|
-
value: string;
|
|
42016
|
-
} | undefined;
|
|
42017
|
-
}[] | null | undefined>;
|
|
42018
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
42019
|
-
}, "strip", z.ZodTypeAny, {
|
|
42020
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42021
|
-
id: string;
|
|
42022
|
-
persistentId: string;
|
|
42023
|
-
meta: {
|
|
42024
|
-
name: string;
|
|
42025
|
-
description?: string | undefined;
|
|
42026
|
-
};
|
|
42027
|
-
designSystemVersionId: string;
|
|
42028
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42029
|
-
codeName: string;
|
|
42030
|
-
options?: {
|
|
42031
|
-
id: string;
|
|
42032
|
-
name: string;
|
|
42033
|
-
backgroundColor?: {
|
|
42034
|
-
value: string;
|
|
42035
|
-
} | undefined;
|
|
42036
|
-
}[] | undefined;
|
|
42037
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
42038
|
-
}, {
|
|
42039
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42040
|
-
id: string;
|
|
42041
|
-
persistentId: string;
|
|
42042
|
-
meta: {
|
|
42043
|
-
name: string;
|
|
42044
|
-
description?: string | undefined;
|
|
42045
|
-
};
|
|
42046
|
-
designSystemVersionId: string;
|
|
42047
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42048
|
-
codeName: string;
|
|
42049
|
-
options?: {
|
|
42050
|
-
id: string;
|
|
42051
|
-
name: string;
|
|
42052
|
-
backgroundColor?: {
|
|
42053
|
-
value: string;
|
|
42054
|
-
} | undefined;
|
|
42055
|
-
}[] | null | undefined;
|
|
42056
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
42057
|
-
}>;
|
|
42058
|
-
}, "strip", z.ZodTypeAny, {
|
|
42059
|
-
type: "PropertyDefinitionCreate";
|
|
42060
|
-
definition: {
|
|
42061
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42062
|
-
id: string;
|
|
42063
|
-
persistentId: string;
|
|
42064
|
-
meta: {
|
|
42065
|
-
name: string;
|
|
42066
|
-
description?: string | undefined;
|
|
42067
|
-
};
|
|
42068
|
-
designSystemVersionId: string;
|
|
42069
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42070
|
-
codeName: string;
|
|
42071
|
-
options?: {
|
|
42072
|
-
id: string;
|
|
42073
|
-
name: string;
|
|
42074
|
-
backgroundColor?: {
|
|
42075
|
-
value: string;
|
|
42076
|
-
} | undefined;
|
|
42077
|
-
}[] | undefined;
|
|
42078
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
42079
|
-
};
|
|
42080
|
-
}, {
|
|
42081
|
-
type: "PropertyDefinitionCreate";
|
|
42082
|
-
definition: {
|
|
42083
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42084
|
-
id: string;
|
|
42085
|
-
persistentId: string;
|
|
42086
|
-
meta: {
|
|
42087
|
-
name: string;
|
|
42088
|
-
description?: string | undefined;
|
|
42089
|
-
};
|
|
42090
|
-
designSystemVersionId: string;
|
|
42091
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42092
|
-
codeName: string;
|
|
42093
|
-
options?: {
|
|
42094
|
-
id: string;
|
|
42095
|
-
name: string;
|
|
42096
|
-
backgroundColor?: {
|
|
42097
|
-
value: string;
|
|
42098
|
-
} | undefined;
|
|
42099
|
-
}[] | null | undefined;
|
|
42100
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
42101
|
-
};
|
|
42102
|
-
}>, z.ZodObject<{
|
|
42103
|
-
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
42104
|
-
definition: z.ZodObject<{
|
|
42105
|
-
id: z.ZodString;
|
|
42106
|
-
designSystemVersionId: z.ZodString;
|
|
42107
|
-
meta: z.ZodObject<{
|
|
42108
|
-
name: z.ZodString;
|
|
42109
|
-
description: z.ZodOptional<z.ZodString>;
|
|
42110
|
-
}, "strip", z.ZodTypeAny, {
|
|
42111
|
-
name: string;
|
|
42112
|
-
description?: string | undefined;
|
|
42113
|
-
}, {
|
|
42114
|
-
name: string;
|
|
42115
|
-
description?: string | undefined;
|
|
42116
|
-
}>;
|
|
42117
|
-
persistentId: z.ZodString;
|
|
42118
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
42119
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
42120
|
-
codeName: z.ZodString;
|
|
42121
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
42122
|
-
id: string;
|
|
42123
|
-
name: string;
|
|
42124
|
-
backgroundColor?: {
|
|
42125
|
-
value: string;
|
|
42126
|
-
} | undefined;
|
|
42127
|
-
}[], z.ZodTypeDef, {
|
|
42128
|
-
id: string;
|
|
42129
|
-
name: string;
|
|
42130
|
-
backgroundColor?: {
|
|
42131
|
-
value: string;
|
|
42132
|
-
} | undefined;
|
|
42133
|
-
}[]>>>, {
|
|
42134
|
-
id: string;
|
|
42135
|
-
name: string;
|
|
42136
|
-
backgroundColor?: {
|
|
42137
|
-
value: string;
|
|
42138
|
-
} | undefined;
|
|
42139
|
-
}[] | undefined, {
|
|
42140
|
-
id: string;
|
|
42141
|
-
name: string;
|
|
42142
|
-
backgroundColor?: {
|
|
42143
|
-
value: string;
|
|
42144
|
-
} | undefined;
|
|
42145
|
-
}[] | null | undefined>;
|
|
42146
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
42147
|
-
}, "strip", z.ZodTypeAny, {
|
|
42148
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42149
|
-
id: string;
|
|
42150
|
-
persistentId: string;
|
|
42151
|
-
meta: {
|
|
42152
|
-
name: string;
|
|
42153
|
-
description?: string | undefined;
|
|
42154
|
-
};
|
|
42155
|
-
designSystemVersionId: string;
|
|
42156
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42157
|
-
codeName: string;
|
|
42158
|
-
options?: {
|
|
42159
|
-
id: string;
|
|
42160
|
-
name: string;
|
|
42161
|
-
backgroundColor?: {
|
|
42162
|
-
value: string;
|
|
42163
|
-
} | undefined;
|
|
42164
|
-
}[] | undefined;
|
|
42165
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
42166
|
-
}, {
|
|
42167
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42168
|
-
id: string;
|
|
42169
|
-
persistentId: string;
|
|
42170
|
-
meta: {
|
|
42171
|
-
name: string;
|
|
42172
|
-
description?: string | undefined;
|
|
42173
|
-
};
|
|
42174
|
-
designSystemVersionId: string;
|
|
42175
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42176
|
-
codeName: string;
|
|
42177
|
-
options?: {
|
|
42178
|
-
id: string;
|
|
42179
|
-
name: string;
|
|
42180
|
-
backgroundColor?: {
|
|
42181
|
-
value: string;
|
|
42182
|
-
} | undefined;
|
|
42183
|
-
}[] | null | undefined;
|
|
42184
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
42185
|
-
}>;
|
|
42186
|
-
}, "strip", z.ZodTypeAny, {
|
|
42187
|
-
type: "PropertyDefinitionUpdate";
|
|
42188
|
-
definition: {
|
|
42189
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42190
|
-
id: string;
|
|
42191
|
-
persistentId: string;
|
|
42192
|
-
meta: {
|
|
42193
|
-
name: string;
|
|
42194
|
-
description?: string | undefined;
|
|
42195
|
-
};
|
|
42196
|
-
designSystemVersionId: string;
|
|
42197
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42198
|
-
codeName: string;
|
|
42199
|
-
options?: {
|
|
42200
|
-
id: string;
|
|
42201
|
-
name: string;
|
|
42202
|
-
backgroundColor?: {
|
|
42203
|
-
value: string;
|
|
42204
|
-
} | undefined;
|
|
42205
|
-
}[] | undefined;
|
|
42206
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
42207
|
-
};
|
|
42208
|
-
}, {
|
|
42209
|
-
type: "PropertyDefinitionUpdate";
|
|
42210
|
-
definition: {
|
|
42211
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
42212
|
-
id: string;
|
|
42213
|
-
persistentId: string;
|
|
42214
|
-
meta: {
|
|
42215
|
-
name: string;
|
|
42216
|
-
description?: string | undefined;
|
|
42217
|
-
};
|
|
42218
|
-
designSystemVersionId: string;
|
|
42219
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
42220
|
-
codeName: string;
|
|
42221
|
-
options?: {
|
|
42222
|
-
id: string;
|
|
42223
|
-
name: string;
|
|
42224
|
-
backgroundColor?: {
|
|
42225
|
-
value: string;
|
|
42226
|
-
} | undefined;
|
|
42227
|
-
}[] | null | undefined;
|
|
42228
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
42229
|
-
};
|
|
42230
|
-
}>, z.ZodObject<{
|
|
42231
|
-
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
42232
|
-
output: z.ZodObject<{
|
|
42233
|
-
success: z.ZodLiteral<true>;
|
|
42234
|
-
}, "strip", z.ZodTypeAny, {
|
|
42235
|
-
success: true;
|
|
42236
|
-
}, {
|
|
42237
|
-
success: true;
|
|
42238
|
-
}>;
|
|
42239
|
-
}, "strip", z.ZodTypeAny, {
|
|
42240
|
-
type: "PropertyDefinitionDelete";
|
|
42241
|
-
output: {
|
|
42242
|
-
success: true;
|
|
42243
|
-
};
|
|
42244
|
-
}, {
|
|
42245
|
-
type: "PropertyDefinitionDelete";
|
|
42246
|
-
output: {
|
|
42247
|
-
success: true;
|
|
42248
|
-
};
|
|
42249
41509
|
}>, z.ZodObject<{
|
|
42250
41510
|
type: z.ZodLiteral<"DocumentationPageRestore">;
|
|
42251
41511
|
output: z.ZodObject<{
|
|
@@ -43939,230 +43199,6 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43939
43199
|
figmaFileNodeId: string;
|
|
43940
43200
|
format?: "Png" | "Svg" | undefined;
|
|
43941
43201
|
}[];
|
|
43942
|
-
}>, z.ZodObject<{
|
|
43943
|
-
type: z.ZodLiteral<"PropertyDefinitionCreate">;
|
|
43944
|
-
input: z.ZodObject<Omit<{
|
|
43945
|
-
id: z.ZodString;
|
|
43946
|
-
designSystemVersionId: z.ZodString;
|
|
43947
|
-
meta: z.ZodObject<{
|
|
43948
|
-
name: z.ZodString;
|
|
43949
|
-
description: z.ZodOptional<z.ZodString>;
|
|
43950
|
-
}, "strip", z.ZodTypeAny, {
|
|
43951
|
-
name: string;
|
|
43952
|
-
description?: string | undefined;
|
|
43953
|
-
}, {
|
|
43954
|
-
name: string;
|
|
43955
|
-
description?: string | undefined;
|
|
43956
|
-
}>;
|
|
43957
|
-
persistentId: z.ZodString;
|
|
43958
|
-
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
43959
|
-
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
43960
|
-
codeName: z.ZodString;
|
|
43961
|
-
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
43962
|
-
id: string;
|
|
43963
|
-
name: string;
|
|
43964
|
-
backgroundColor?: {
|
|
43965
|
-
value: string;
|
|
43966
|
-
} | undefined;
|
|
43967
|
-
}[], z.ZodTypeDef, {
|
|
43968
|
-
id: string;
|
|
43969
|
-
name: string;
|
|
43970
|
-
backgroundColor?: {
|
|
43971
|
-
value: string;
|
|
43972
|
-
} | undefined;
|
|
43973
|
-
}[]>>>, {
|
|
43974
|
-
id: string;
|
|
43975
|
-
name: string;
|
|
43976
|
-
backgroundColor?: {
|
|
43977
|
-
value: string;
|
|
43978
|
-
} | undefined;
|
|
43979
|
-
}[] | undefined, {
|
|
43980
|
-
id: string;
|
|
43981
|
-
name: string;
|
|
43982
|
-
backgroundColor?: {
|
|
43983
|
-
value: string;
|
|
43984
|
-
} | undefined;
|
|
43985
|
-
}[] | null | undefined>;
|
|
43986
|
-
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
43987
|
-
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
43988
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
43989
|
-
persistentId: string;
|
|
43990
|
-
meta: {
|
|
43991
|
-
name: string;
|
|
43992
|
-
description?: string | undefined;
|
|
43993
|
-
};
|
|
43994
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
43995
|
-
codeName: string;
|
|
43996
|
-
options?: {
|
|
43997
|
-
id: string;
|
|
43998
|
-
name: string;
|
|
43999
|
-
backgroundColor?: {
|
|
44000
|
-
value: string;
|
|
44001
|
-
} | undefined;
|
|
44002
|
-
}[] | undefined;
|
|
44003
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
44004
|
-
}, {
|
|
44005
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
44006
|
-
persistentId: string;
|
|
44007
|
-
meta: {
|
|
44008
|
-
name: string;
|
|
44009
|
-
description?: string | undefined;
|
|
44010
|
-
};
|
|
44011
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
44012
|
-
codeName: string;
|
|
44013
|
-
options?: {
|
|
44014
|
-
id: string;
|
|
44015
|
-
name: string;
|
|
44016
|
-
backgroundColor?: {
|
|
44017
|
-
value: string;
|
|
44018
|
-
} | undefined;
|
|
44019
|
-
}[] | null | undefined;
|
|
44020
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
44021
|
-
}>;
|
|
44022
|
-
}, "strip", z.ZodTypeAny, {
|
|
44023
|
-
type: "PropertyDefinitionCreate";
|
|
44024
|
-
input: {
|
|
44025
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
44026
|
-
persistentId: string;
|
|
44027
|
-
meta: {
|
|
44028
|
-
name: string;
|
|
44029
|
-
description?: string | undefined;
|
|
44030
|
-
};
|
|
44031
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
44032
|
-
codeName: string;
|
|
44033
|
-
options?: {
|
|
44034
|
-
id: string;
|
|
44035
|
-
name: string;
|
|
44036
|
-
backgroundColor?: {
|
|
44037
|
-
value: string;
|
|
44038
|
-
} | undefined;
|
|
44039
|
-
}[] | undefined;
|
|
44040
|
-
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
44041
|
-
};
|
|
44042
|
-
}, {
|
|
44043
|
-
type: "PropertyDefinitionCreate";
|
|
44044
|
-
input: {
|
|
44045
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
44046
|
-
persistentId: string;
|
|
44047
|
-
meta: {
|
|
44048
|
-
name: string;
|
|
44049
|
-
description?: string | undefined;
|
|
44050
|
-
};
|
|
44051
|
-
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
44052
|
-
codeName: string;
|
|
44053
|
-
options?: {
|
|
44054
|
-
id: string;
|
|
44055
|
-
name: string;
|
|
44056
|
-
backgroundColor?: {
|
|
44057
|
-
value: string;
|
|
44058
|
-
} | undefined;
|
|
44059
|
-
}[] | null | undefined;
|
|
44060
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
44061
|
-
};
|
|
44062
|
-
}>, z.ZodObject<{
|
|
44063
|
-
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
44064
|
-
input: z.ZodObject<{
|
|
44065
|
-
id: z.ZodString;
|
|
44066
|
-
name: z.ZodOptional<z.ZodString>;
|
|
44067
|
-
description: z.ZodOptional<z.ZodString>;
|
|
44068
|
-
codeName: z.ZodOptional<z.ZodString>;
|
|
44069
|
-
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
44070
|
-
id: z.ZodString;
|
|
44071
|
-
name: z.ZodString;
|
|
44072
|
-
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
44073
|
-
value: z.ZodString;
|
|
44074
|
-
}, "strip", z.ZodTypeAny, {
|
|
44075
|
-
value: string;
|
|
44076
|
-
}, {
|
|
44077
|
-
value: string;
|
|
44078
|
-
}>>;
|
|
44079
|
-
}, "strip", z.ZodTypeAny, {
|
|
44080
|
-
id: string;
|
|
44081
|
-
name: string;
|
|
44082
|
-
backgroundColor?: {
|
|
44083
|
-
value: string;
|
|
44084
|
-
} | undefined;
|
|
44085
|
-
}, {
|
|
44086
|
-
id: string;
|
|
44087
|
-
name: string;
|
|
44088
|
-
backgroundColor?: {
|
|
44089
|
-
value: string;
|
|
44090
|
-
} | undefined;
|
|
44091
|
-
}>, "many">>;
|
|
44092
|
-
}, "strip", z.ZodTypeAny, {
|
|
44093
|
-
id: string;
|
|
44094
|
-
options?: {
|
|
44095
|
-
id: string;
|
|
44096
|
-
name: string;
|
|
44097
|
-
backgroundColor?: {
|
|
44098
|
-
value: string;
|
|
44099
|
-
} | undefined;
|
|
44100
|
-
}[] | undefined;
|
|
44101
|
-
description?: string | undefined;
|
|
44102
|
-
name?: string | undefined;
|
|
44103
|
-
codeName?: string | undefined;
|
|
44104
|
-
}, {
|
|
44105
|
-
id: string;
|
|
44106
|
-
options?: {
|
|
44107
|
-
id: string;
|
|
44108
|
-
name: string;
|
|
44109
|
-
backgroundColor?: {
|
|
44110
|
-
value: string;
|
|
44111
|
-
} | undefined;
|
|
44112
|
-
}[] | undefined;
|
|
44113
|
-
description?: string | undefined;
|
|
44114
|
-
name?: string | undefined;
|
|
44115
|
-
codeName?: string | undefined;
|
|
44116
|
-
}>;
|
|
44117
|
-
}, "strip", z.ZodTypeAny, {
|
|
44118
|
-
type: "PropertyDefinitionUpdate";
|
|
44119
|
-
input: {
|
|
44120
|
-
id: string;
|
|
44121
|
-
options?: {
|
|
44122
|
-
id: string;
|
|
44123
|
-
name: string;
|
|
44124
|
-
backgroundColor?: {
|
|
44125
|
-
value: string;
|
|
44126
|
-
} | undefined;
|
|
44127
|
-
}[] | undefined;
|
|
44128
|
-
description?: string | undefined;
|
|
44129
|
-
name?: string | undefined;
|
|
44130
|
-
codeName?: string | undefined;
|
|
44131
|
-
};
|
|
44132
|
-
}, {
|
|
44133
|
-
type: "PropertyDefinitionUpdate";
|
|
44134
|
-
input: {
|
|
44135
|
-
id: string;
|
|
44136
|
-
options?: {
|
|
44137
|
-
id: string;
|
|
44138
|
-
name: string;
|
|
44139
|
-
backgroundColor?: {
|
|
44140
|
-
value: string;
|
|
44141
|
-
} | undefined;
|
|
44142
|
-
}[] | undefined;
|
|
44143
|
-
description?: string | undefined;
|
|
44144
|
-
name?: string | undefined;
|
|
44145
|
-
codeName?: string | undefined;
|
|
44146
|
-
};
|
|
44147
|
-
}>, z.ZodObject<{
|
|
44148
|
-
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
44149
|
-
input: z.ZodObject<{
|
|
44150
|
-
id: z.ZodString;
|
|
44151
|
-
}, "strip", z.ZodTypeAny, {
|
|
44152
|
-
id: string;
|
|
44153
|
-
}, {
|
|
44154
|
-
id: string;
|
|
44155
|
-
}>;
|
|
44156
|
-
}, "strip", z.ZodTypeAny, {
|
|
44157
|
-
type: "PropertyDefinitionDelete";
|
|
44158
|
-
input: {
|
|
44159
|
-
id: string;
|
|
44160
|
-
};
|
|
44161
|
-
}, {
|
|
44162
|
-
type: "PropertyDefinitionDelete";
|
|
44163
|
-
input: {
|
|
44164
|
-
id: string;
|
|
44165
|
-
};
|
|
44166
43202
|
}>, z.ZodObject<{
|
|
44167
43203
|
type: z.ZodLiteral<"DocumentationPageRestore">;
|
|
44168
43204
|
input: z.ZodObject<{
|
|
@@ -85452,6 +84488,29 @@ declare class ElementPropertyDefinitionsEndpoint {
|
|
|
85452
84488
|
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
85453
84489
|
};
|
|
85454
84490
|
}>;
|
|
84491
|
+
update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
|
|
84492
|
+
definition: {
|
|
84493
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84494
|
+
id: string;
|
|
84495
|
+
persistentId: string;
|
|
84496
|
+
meta: {
|
|
84497
|
+
name: string;
|
|
84498
|
+
description?: string | undefined;
|
|
84499
|
+
};
|
|
84500
|
+
designSystemVersionId: string;
|
|
84501
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84502
|
+
codeName: string;
|
|
84503
|
+
options?: {
|
|
84504
|
+
id: string;
|
|
84505
|
+
name: string;
|
|
84506
|
+
backgroundColor?: {
|
|
84507
|
+
value: string;
|
|
84508
|
+
} | undefined;
|
|
84509
|
+
}[] | undefined;
|
|
84510
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84511
|
+
};
|
|
84512
|
+
}>;
|
|
84513
|
+
delete(designSystemId: string, versionId: string, defId: string): Promise<any>;
|
|
85455
84514
|
}
|
|
85456
84515
|
|
|
85457
84516
|
declare class ElementPropertyValuesEndpoint {
|
|
@@ -87094,6 +86153,27 @@ declare class DesignSystemVersionsEndpoint {
|
|
|
87094
86153
|
isReadonly: boolean;
|
|
87095
86154
|
}[];
|
|
87096
86155
|
}>;
|
|
86156
|
+
commit(dsId: string, body: DTOCreateVersionInput): Promise<{
|
|
86157
|
+
meta: {
|
|
86158
|
+
name: string;
|
|
86159
|
+
description?: string | undefined;
|
|
86160
|
+
};
|
|
86161
|
+
designSystemId: string;
|
|
86162
|
+
version: string;
|
|
86163
|
+
changeLog: string;
|
|
86164
|
+
isReadOnly: boolean;
|
|
86165
|
+
jobId: string;
|
|
86166
|
+
}>;
|
|
86167
|
+
job(dsId: string, jobId: string): Promise<{
|
|
86168
|
+
job: {
|
|
86169
|
+
id: string;
|
|
86170
|
+
status: "InProgress" | "Success" | "Error";
|
|
86171
|
+
designSystemId: string;
|
|
86172
|
+
version: string;
|
|
86173
|
+
errorMessage?: string | undefined;
|
|
86174
|
+
designSystemVersionId?: string | undefined;
|
|
86175
|
+
};
|
|
86176
|
+
}>;
|
|
87097
86177
|
}
|
|
87098
86178
|
|
|
87099
86179
|
declare class DesignSystemBffEndpoint {
|
|
@@ -91345,4 +90425,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
91345
90425
|
|
|
91346
90426
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
91347
90427
|
|
|
91348
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionDeletePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPropertyDefinitionCreateActionInputV2, DTOPropertyDefinitionCreateActionOutputV2, DTOPropertyDefinitionDeleteActionInputV2, DTOPropertyDefinitionDeleteActionOutputV2, DTOPropertyDefinitionUpdateActionInputV2, DTOPropertyDefinitionUpdateActionOutputV2, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
90428
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, 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, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterProperty, DTOExporterPropertyListResponse, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, 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, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|