@supernova-studio/client 0.57.20 → 0.58.1

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.ts CHANGED
@@ -1127,6 +1127,15 @@ 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
+
1130
1139
  declare const DTOPagination: z.ZodObject<{
1131
1140
  limit: z.ZodOptional<z.ZodString>;
1132
1141
  offset: z.ZodOptional<z.ZodString>;
@@ -40413,603 +40422,115 @@ declare const DTOFigmaNodeRenderActionInput: z.ZodObject<{
40413
40422
  }>;
40414
40423
  type DTOFigmaNodeRenderActionInput = z.infer<typeof DTOFigmaNodeRenderActionInput>;
40415
40424
 
40416
- declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
40417
- type: z.ZodLiteral<"PropertyDefinitionCreate">;
40418
- definition: z.ZodObject<{
40419
- id: z.ZodString;
40420
- designSystemVersionId: z.ZodString;
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>;
40425
+ declare const DTOElementPropertyDefinitionOption: z.ZodObject<{
40426
+ id: z.ZodString;
40427
+ name: z.ZodString;
40428
+ backgroundColor: z.ZodOptional<z.ZodObject<{
40429
+ value: z.ZodString;
40461
40430
  }, "strip", z.ZodTypeAny, {
40462
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
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;
40431
+ value: string;
40480
40432
  }, {
40481
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40482
- id: string;
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
- }>;
40433
+ value: string;
40434
+ }>>;
40500
40435
  }, "strip", z.ZodTypeAny, {
40501
- type: "PropertyDefinitionCreate";
40502
- definition: {
40503
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40504
- id: string;
40505
- persistentId: string;
40506
- meta: {
40507
- name: string;
40508
- description?: string | undefined;
40509
- };
40510
- designSystemVersionId: string;
40511
- targetElementType: "Token" | "Component" | "DocumentationPage";
40512
- codeName: string;
40513
- options?: {
40514
- id: string;
40515
- name: string;
40516
- backgroundColor?: {
40517
- value: string;
40518
- } | undefined;
40519
- }[] | undefined;
40520
- linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40521
- };
40436
+ id: string;
40437
+ name: string;
40438
+ backgroundColor?: {
40439
+ value: string;
40440
+ } | undefined;
40522
40441
  }, {
40523
- type: "PropertyDefinitionCreate";
40524
- definition: {
40525
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40526
- id: string;
40527
- persistentId: string;
40528
- meta: {
40529
- name: string;
40530
- description?: string | undefined;
40531
- };
40532
- designSystemVersionId: string;
40533
- targetElementType: "Token" | "Component" | "DocumentationPage";
40534
- codeName: string;
40535
- options?: {
40536
- id: string;
40537
- name: string;
40538
- backgroundColor?: {
40539
- value: string;
40540
- } | undefined;
40541
- }[] | null | undefined;
40542
- linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40543
- };
40442
+ id: string;
40443
+ name: string;
40444
+ backgroundColor?: {
40445
+ value: string;
40446
+ } | undefined;
40544
40447
  }>;
40545
- type DTOPropertyDefinitionCreateActionOutputV2 = z.infer<typeof DTOPropertyDefinitionCreateActionOutputV2>;
40546
- declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
40547
- type: z.ZodLiteral<"PropertyDefinitionUpdate">;
40548
- definition: z.ZodObject<{
40549
- id: z.ZodString;
40550
- designSystemVersionId: z.ZodString;
40551
- meta: z.ZodObject<{
40552
- name: z.ZodString;
40553
- description: z.ZodOptional<z.ZodString>;
40554
- }, "strip", z.ZodTypeAny, {
40555
- name: string;
40556
- description?: string | undefined;
40557
- }, {
40558
- name: string;
40559
- description?: string | undefined;
40560
- }>;
40561
- persistentId: z.ZodString;
40562
- type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
40563
- targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
40564
- codeName: z.ZodString;
40565
- options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
40566
- id: string;
40567
- name: string;
40568
- backgroundColor?: {
40569
- value: string;
40570
- } | undefined;
40571
- }[], z.ZodTypeDef, {
40572
- id: string;
40573
- name: string;
40574
- backgroundColor?: {
40575
- value: string;
40576
- } | undefined;
40577
- }[]>>>, {
40578
- id: string;
40579
- name: string;
40580
- backgroundColor?: {
40581
- value: string;
40582
- } | undefined;
40583
- }[] | undefined, {
40584
- id: string;
40585
- name: string;
40586
- backgroundColor?: {
40587
- value: string;
40588
- } | undefined;
40589
- }[] | null | undefined>;
40590
- linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
40448
+ type DTOElementPropertyDefinitionOption = z.infer<typeof DTOElementPropertyDefinitionOption>;
40449
+ declare const DTOElementPropertyDefinition: z.ZodObject<{
40450
+ id: z.ZodString;
40451
+ designSystemVersionId: z.ZodString;
40452
+ meta: z.ZodObject<{
40453
+ name: z.ZodString;
40454
+ description: z.ZodOptional<z.ZodString>;
40591
40455
  }, "strip", z.ZodTypeAny, {
40592
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40593
- id: string;
40594
- persistentId: string;
40595
- meta: {
40596
- name: string;
40597
- description?: string | undefined;
40598
- };
40599
- designSystemVersionId: string;
40600
- targetElementType: "Token" | "Component" | "DocumentationPage";
40601
- codeName: string;
40602
- options?: {
40603
- id: string;
40604
- name: string;
40605
- backgroundColor?: {
40606
- value: string;
40607
- } | undefined;
40608
- }[] | undefined;
40609
- linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40456
+ name: string;
40457
+ description?: string | undefined;
40610
40458
  }, {
40611
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40612
- id: string;
40613
- persistentId: string;
40614
- meta: {
40615
- name: string;
40616
- description?: string | undefined;
40617
- };
40618
- designSystemVersionId: string;
40619
- targetElementType: "Token" | "Component" | "DocumentationPage";
40620
- codeName: string;
40621
- options?: {
40622
- id: string;
40623
- name: string;
40624
- backgroundColor?: {
40625
- value: string;
40626
- } | undefined;
40627
- }[] | null | undefined;
40628
- linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40459
+ name: string;
40460
+ description?: string | undefined;
40629
40461
  }>;
40630
- }, "strip", z.ZodTypeAny, {
40631
- type: "PropertyDefinitionUpdate";
40632
- definition: {
40633
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40462
+ persistentId: z.ZodString;
40463
+ type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
40464
+ targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
40465
+ codeName: z.ZodString;
40466
+ options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
40634
40467
  id: string;
40635
- persistentId: string;
40636
- meta: {
40637
- name: string;
40638
- description?: string | undefined;
40639
- };
40640
- designSystemVersionId: string;
40641
- targetElementType: "Token" | "Component" | "DocumentationPage";
40642
- codeName: string;
40643
- options?: {
40644
- id: string;
40645
- name: string;
40646
- backgroundColor?: {
40647
- value: string;
40648
- } | undefined;
40649
- }[] | undefined;
40650
- linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40651
- };
40652
- }, {
40653
- type: "PropertyDefinitionUpdate";
40654
- definition: {
40655
- type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40468
+ name: string;
40469
+ backgroundColor?: {
40470
+ value: string;
40471
+ } | undefined;
40472
+ }[], z.ZodTypeDef, {
40656
40473
  id: string;
40657
- persistentId: string;
40658
- meta: {
40659
- name: string;
40660
- description?: string | undefined;
40661
- };
40662
- designSystemVersionId: string;
40663
- targetElementType: "Token" | "Component" | "DocumentationPage";
40664
- codeName: string;
40665
- options?: {
40666
- id: string;
40667
- name: string;
40668
- backgroundColor?: {
40669
- value: string;
40670
- } | undefined;
40671
- }[] | null | undefined;
40672
- 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
- }>;
40474
+ name: string;
40475
+ backgroundColor?: {
40476
+ value: string;
40477
+ } | undefined;
40478
+ }[]>>>, {
40479
+ id: string;
40480
+ name: string;
40481
+ backgroundColor?: {
40482
+ value: string;
40483
+ } | undefined;
40484
+ }[] | undefined, {
40485
+ id: string;
40486
+ name: string;
40487
+ backgroundColor?: {
40488
+ value: string;
40489
+ } | undefined;
40490
+ }[] | null | undefined>;
40491
+ linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
40685
40492
  }, "strip", z.ZodTypeAny, {
40686
- type: "PropertyDefinitionDelete";
40687
- output: {
40688
- success: true;
40493
+ type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40494
+ id: string;
40495
+ persistentId: string;
40496
+ meta: {
40497
+ name: string;
40498
+ description?: string | undefined;
40689
40499
  };
40500
+ designSystemVersionId: string;
40501
+ targetElementType: "Token" | "Component" | "DocumentationPage";
40502
+ codeName: string;
40503
+ options?: {
40504
+ id: string;
40505
+ name: string;
40506
+ backgroundColor?: {
40507
+ value: string;
40508
+ } | undefined;
40509
+ }[] | undefined;
40510
+ linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40690
40511
  }, {
40691
- type: "PropertyDefinitionDelete";
40692
- output: {
40693
- success: true;
40512
+ type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
40513
+ id: string;
40514
+ persistentId: string;
40515
+ meta: {
40516
+ name: string;
40517
+ description?: string | undefined;
40694
40518
  };
40519
+ designSystemVersionId: string;
40520
+ targetElementType: "Token" | "Component" | "DocumentationPage";
40521
+ codeName: string;
40522
+ options?: {
40523
+ id: string;
40524
+ name: string;
40525
+ backgroundColor?: {
40526
+ value: string;
40527
+ } | undefined;
40528
+ }[] | null | undefined;
40529
+ linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40695
40530
  }>;
40696
- type DTOPropertyDefinitionDeleteActionOutputV2 = z.infer<typeof DTOPropertyDefinitionDeleteActionOutputV2>;
40697
- declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
40698
- type: z.ZodLiteral<"PropertyDefinitionCreate">;
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<{
40531
+ type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
40532
+ declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
40533
+ definitions: z.ZodArray<z.ZodObject<{
41013
40534
  id: z.ZodString;
41014
40535
  designSystemVersionId: z.ZodString;
41015
40536
  meta: z.ZodObject<{
@@ -41262,9 +40783,7 @@ declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
41262
40783
  };
41263
40784
  }>;
41264
40785
  type DTOElementPropertyDefinitionResponse = z.infer<typeof DTOElementPropertyDefinitionResponse>;
41265
- declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
41266
- id: z.ZodString;
41267
- designSystemVersionId: z.ZodString;
40786
+ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<{
41268
40787
  meta: z.ZodObject<{
41269
40788
  name: z.ZodString;
41270
40789
  description: z.ZodOptional<z.ZodString>;
@@ -41305,7 +40824,8 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
41305
40824
  } | undefined;
41306
40825
  }[] | null | undefined>;
41307
40826
  linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
41308
- }, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
40827
+ columnWidth: z.ZodOptional<z.ZodNumber>;
40828
+ }, "strip", z.ZodTypeAny, {
41309
40829
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41310
40830
  persistentId: string;
41311
40831
  meta: {
@@ -41322,6 +40842,7 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
41322
40842
  } | undefined;
41323
40843
  }[] | undefined;
41324
40844
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
40845
+ columnWidth?: number | undefined;
41325
40846
  }, {
41326
40847
  type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
41327
40848
  persistentId: string;
@@ -41339,12 +40860,20 @@ declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
41339
40860
  } | undefined;
41340
40861
  }[] | null | undefined;
41341
40862
  linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
40863
+ columnWidth?: number | undefined;
41342
40864
  }>;
41343
40865
  type DTOElementPropertyDefinitionCreatePayload = z.infer<typeof DTOElementPropertyDefinitionCreatePayload>;
41344
40866
  declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
41345
- id: z.ZodString;
41346
- name: z.ZodOptional<z.ZodString>;
41347
- description: z.ZodOptional<z.ZodString>;
40867
+ meta: z.ZodOptional<z.ZodObject<{
40868
+ name: z.ZodString;
40869
+ description: z.ZodOptional<z.ZodString>;
40870
+ }, "strip", z.ZodTypeAny, {
40871
+ name: string;
40872
+ description?: string | undefined;
40873
+ }, {
40874
+ name: string;
40875
+ description?: string | undefined;
40876
+ }>>;
41348
40877
  codeName: z.ZodOptional<z.ZodString>;
41349
40878
  options: z.ZodOptional<z.ZodArray<z.ZodObject<{
41350
40879
  id: z.ZodString;
@@ -41370,7 +40899,6 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
41370
40899
  } | undefined;
41371
40900
  }>, "many">>;
41372
40901
  }, "strip", z.ZodTypeAny, {
41373
- id: string;
41374
40902
  options?: {
41375
40903
  id: string;
41376
40904
  name: string;
@@ -41378,11 +40906,12 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
41378
40906
  value: string;
41379
40907
  } | undefined;
41380
40908
  }[] | undefined;
41381
- description?: string | undefined;
41382
- name?: string | undefined;
40909
+ meta?: {
40910
+ name: string;
40911
+ description?: string | undefined;
40912
+ } | undefined;
41383
40913
  codeName?: string | undefined;
41384
40914
  }, {
41385
- id: string;
41386
40915
  options?: {
41387
40916
  id: string;
41388
40917
  name: string;
@@ -41390,19 +40919,13 @@ declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
41390
40919
  value: string;
41391
40920
  } | undefined;
41392
40921
  }[] | undefined;
41393
- description?: string | undefined;
41394
- name?: string | undefined;
40922
+ meta?: {
40923
+ name: string;
40924
+ description?: string | undefined;
40925
+ } | undefined;
41395
40926
  codeName?: string | undefined;
41396
40927
  }>;
41397
40928
  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
40929
 
41407
40930
  declare const DTOElementPropertyValue: z.ZodObject<{
41408
40931
  id: z.ZodString;
@@ -41971,281 +41494,6 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
41971
41494
  parentName?: string | undefined;
41972
41495
  };
41973
41496
  }[];
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
41497
  }>, z.ZodObject<{
42250
41498
  type: z.ZodLiteral<"DocumentationPageRestore">;
42251
41499
  output: z.ZodObject<{
@@ -43939,230 +43187,6 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
43939
43187
  figmaFileNodeId: string;
43940
43188
  format?: "Png" | "Svg" | undefined;
43941
43189
  }[];
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
43190
  }>, z.ZodObject<{
44167
43191
  type: z.ZodLiteral<"DocumentationPageRestore">;
44168
43192
  input: z.ZodObject<{
@@ -85452,6 +84476,29 @@ declare class ElementPropertyDefinitionsEndpoint {
85452
84476
  linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
85453
84477
  };
85454
84478
  }>;
84479
+ update(designSystemId: string, versionId: string, defId: string, body: DTOElementPropertyDefinitionUpdatePayload): Promise<{
84480
+ definition: {
84481
+ type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
84482
+ id: string;
84483
+ persistentId: string;
84484
+ meta: {
84485
+ name: string;
84486
+ description?: string | undefined;
84487
+ };
84488
+ designSystemVersionId: string;
84489
+ targetElementType: "Token" | "Component" | "DocumentationPage";
84490
+ codeName: string;
84491
+ options?: {
84492
+ id: string;
84493
+ name: string;
84494
+ backgroundColor?: {
84495
+ value: string;
84496
+ } | undefined;
84497
+ }[] | undefined;
84498
+ linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
84499
+ };
84500
+ }>;
84501
+ delete(designSystemId: string, versionId: string, defId: string): Promise<any>;
85455
84502
  }
85456
84503
 
85457
84504
  declare class ElementPropertyValuesEndpoint {
@@ -91345,4 +90392,4 @@ declare class FrontendVersionRoomYDoc {
91345
90392
 
91346
90393
  declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
91347
90394
 
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 };
90395
+ 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, 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 };