@supernova-studio/client 0.57.9 → 0.57.11
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 +538 -215
- package/dist/index.d.ts +538 -215
- package/dist/index.js +153 -49
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1879 -1775
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/collections/index.ts +1 -1
- package/src/api/dto/collections/{collection.ts → token-collection.ts} +4 -5
- package/src/api/dto/elements/properties/property-definitions-actions-v2.ts +6 -6
- package/src/api/dto/elements/properties/property-definitions.ts +16 -12
- package/src/api/dto/elements/properties/property-values.ts +23 -2
- package/src/api/endpoints/design-system/design-systems.ts +1 -1
- package/src/api/endpoints/design-system/index.ts +0 -1
- package/src/api/endpoints/design-system/versions/index.ts +4 -0
- package/src/api/endpoints/design-system/versions/property-definitions.ts +25 -0
- package/src/api/endpoints/design-system/versions/property-values.ts +25 -0
- package/src/api/endpoints/design-system/versions/token-collections.ts +13 -0
- package/src/api/endpoints/design-system/versions/versions.ts +36 -0
- package/src/api/endpoints/index.ts +0 -1
- package/src/api/endpoints/design-system/versions.ts +0 -27
- package/src/api/endpoints/token-collections.ts +0 -13
package/dist/index.d.ts
CHANGED
|
@@ -3591,9 +3591,17 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
3591
3591
|
name: string;
|
|
3592
3592
|
description?: string | undefined;
|
|
3593
3593
|
}>;
|
|
3594
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
3595
|
+
value: z.ZodString;
|
|
3596
|
+
}, "strip", z.ZodTypeAny, {
|
|
3597
|
+
value: string;
|
|
3598
|
+
}, {
|
|
3599
|
+
value: string;
|
|
3600
|
+
}>>;
|
|
3601
|
+
elementPropertyOptionId: z.ZodString;
|
|
3594
3602
|
createdAt: z.ZodDate;
|
|
3595
3603
|
updatedAt: z.ZodDate;
|
|
3596
|
-
origin: z.ZodObject<{
|
|
3604
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
3597
3605
|
id: z.ZodString;
|
|
3598
3606
|
sourceId: z.ZodString;
|
|
3599
3607
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3602,7 +3610,7 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
3602
3610
|
}, {
|
|
3603
3611
|
id: string;
|
|
3604
3612
|
sourceId: string;
|
|
3605
|
-
}
|
|
3613
|
+
}>>;
|
|
3606
3614
|
}, "strip", z.ZodTypeAny, {
|
|
3607
3615
|
id: string;
|
|
3608
3616
|
persistentId: string;
|
|
@@ -3613,10 +3621,14 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
3613
3621
|
designSystemVersionId: string;
|
|
3614
3622
|
createdAt: Date;
|
|
3615
3623
|
updatedAt: Date;
|
|
3616
|
-
|
|
3624
|
+
elementPropertyOptionId: string;
|
|
3625
|
+
backgroundColor?: {
|
|
3626
|
+
value: string;
|
|
3627
|
+
} | undefined;
|
|
3628
|
+
origin?: {
|
|
3617
3629
|
id: string;
|
|
3618
3630
|
sourceId: string;
|
|
3619
|
-
};
|
|
3631
|
+
} | undefined;
|
|
3620
3632
|
}, {
|
|
3621
3633
|
id: string;
|
|
3622
3634
|
persistentId: string;
|
|
@@ -3627,10 +3639,14 @@ declare const DTOTokenCollection: z.ZodObject<{
|
|
|
3627
3639
|
designSystemVersionId: string;
|
|
3628
3640
|
createdAt: Date;
|
|
3629
3641
|
updatedAt: Date;
|
|
3630
|
-
|
|
3642
|
+
elementPropertyOptionId: string;
|
|
3643
|
+
backgroundColor?: {
|
|
3644
|
+
value: string;
|
|
3645
|
+
} | undefined;
|
|
3646
|
+
origin?: {
|
|
3631
3647
|
id: string;
|
|
3632
3648
|
sourceId: string;
|
|
3633
|
-
};
|
|
3649
|
+
} | undefined;
|
|
3634
3650
|
}>;
|
|
3635
3651
|
type DTOTokenCollection = z.infer<typeof DTOTokenCollection>;
|
|
3636
3652
|
declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
@@ -3648,9 +3664,17 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3648
3664
|
name: string;
|
|
3649
3665
|
description?: string | undefined;
|
|
3650
3666
|
}>;
|
|
3667
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
3668
|
+
value: z.ZodString;
|
|
3669
|
+
}, "strip", z.ZodTypeAny, {
|
|
3670
|
+
value: string;
|
|
3671
|
+
}, {
|
|
3672
|
+
value: string;
|
|
3673
|
+
}>>;
|
|
3674
|
+
elementPropertyOptionId: z.ZodString;
|
|
3651
3675
|
createdAt: z.ZodDate;
|
|
3652
3676
|
updatedAt: z.ZodDate;
|
|
3653
|
-
origin: z.ZodObject<{
|
|
3677
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
3654
3678
|
id: z.ZodString;
|
|
3655
3679
|
sourceId: z.ZodString;
|
|
3656
3680
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3659,7 +3683,7 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3659
3683
|
}, {
|
|
3660
3684
|
id: string;
|
|
3661
3685
|
sourceId: string;
|
|
3662
|
-
}
|
|
3686
|
+
}>>;
|
|
3663
3687
|
}, "strip", z.ZodTypeAny, {
|
|
3664
3688
|
id: string;
|
|
3665
3689
|
persistentId: string;
|
|
@@ -3670,10 +3694,14 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3670
3694
|
designSystemVersionId: string;
|
|
3671
3695
|
createdAt: Date;
|
|
3672
3696
|
updatedAt: Date;
|
|
3673
|
-
|
|
3697
|
+
elementPropertyOptionId: string;
|
|
3698
|
+
backgroundColor?: {
|
|
3699
|
+
value: string;
|
|
3700
|
+
} | undefined;
|
|
3701
|
+
origin?: {
|
|
3674
3702
|
id: string;
|
|
3675
3703
|
sourceId: string;
|
|
3676
|
-
};
|
|
3704
|
+
} | undefined;
|
|
3677
3705
|
}, {
|
|
3678
3706
|
id: string;
|
|
3679
3707
|
persistentId: string;
|
|
@@ -3684,10 +3712,14 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3684
3712
|
designSystemVersionId: string;
|
|
3685
3713
|
createdAt: Date;
|
|
3686
3714
|
updatedAt: Date;
|
|
3687
|
-
|
|
3715
|
+
elementPropertyOptionId: string;
|
|
3716
|
+
backgroundColor?: {
|
|
3717
|
+
value: string;
|
|
3718
|
+
} | undefined;
|
|
3719
|
+
origin?: {
|
|
3688
3720
|
id: string;
|
|
3689
3721
|
sourceId: string;
|
|
3690
|
-
};
|
|
3722
|
+
} | undefined;
|
|
3691
3723
|
}>, "many">;
|
|
3692
3724
|
}, "strip", z.ZodTypeAny, {
|
|
3693
3725
|
collections: {
|
|
@@ -3700,10 +3732,14 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3700
3732
|
designSystemVersionId: string;
|
|
3701
3733
|
createdAt: Date;
|
|
3702
3734
|
updatedAt: Date;
|
|
3703
|
-
|
|
3735
|
+
elementPropertyOptionId: string;
|
|
3736
|
+
backgroundColor?: {
|
|
3737
|
+
value: string;
|
|
3738
|
+
} | undefined;
|
|
3739
|
+
origin?: {
|
|
3704
3740
|
id: string;
|
|
3705
3741
|
sourceId: string;
|
|
3706
|
-
};
|
|
3742
|
+
} | undefined;
|
|
3707
3743
|
}[];
|
|
3708
3744
|
}, {
|
|
3709
3745
|
collections: {
|
|
@@ -3716,10 +3752,14 @@ declare const DTOTokenCollectionsListReponse: z.ZodObject<{
|
|
|
3716
3752
|
designSystemVersionId: string;
|
|
3717
3753
|
createdAt: Date;
|
|
3718
3754
|
updatedAt: Date;
|
|
3719
|
-
|
|
3755
|
+
elementPropertyOptionId: string;
|
|
3756
|
+
backgroundColor?: {
|
|
3757
|
+
value: string;
|
|
3758
|
+
} | undefined;
|
|
3759
|
+
origin?: {
|
|
3720
3760
|
id: string;
|
|
3721
3761
|
sourceId: string;
|
|
3722
|
-
};
|
|
3762
|
+
} | undefined;
|
|
3723
3763
|
}[];
|
|
3724
3764
|
}>;
|
|
3725
3765
|
type DTOTokenCollectionsListReponse = z.infer<typeof DTOTokenCollectionsListReponse>;
|
|
@@ -39950,30 +39990,32 @@ declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
|
|
|
39950
39990
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
39951
39991
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
39952
39992
|
codeName: z.ZodString;
|
|
39953
|
-
options: z.ZodOptional<z.
|
|
39954
|
-
id:
|
|
39955
|
-
name:
|
|
39956
|
-
backgroundColor
|
|
39957
|
-
value: z.ZodString;
|
|
39958
|
-
}, "strip", z.ZodTypeAny, {
|
|
39993
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
39994
|
+
id: string;
|
|
39995
|
+
name: string;
|
|
39996
|
+
backgroundColor?: {
|
|
39959
39997
|
value: string;
|
|
39960
|
-
}
|
|
39998
|
+
} | undefined;
|
|
39999
|
+
}[], z.ZodTypeDef, {
|
|
40000
|
+
id: string;
|
|
40001
|
+
name: string;
|
|
40002
|
+
backgroundColor?: {
|
|
39961
40003
|
value: string;
|
|
39962
|
-
}
|
|
39963
|
-
}
|
|
40004
|
+
} | undefined;
|
|
40005
|
+
}[]>>>, {
|
|
39964
40006
|
id: string;
|
|
39965
40007
|
name: string;
|
|
39966
40008
|
backgroundColor?: {
|
|
39967
40009
|
value: string;
|
|
39968
40010
|
} | undefined;
|
|
39969
|
-
}, {
|
|
40011
|
+
}[] | undefined, {
|
|
39970
40012
|
id: string;
|
|
39971
40013
|
name: string;
|
|
39972
40014
|
backgroundColor?: {
|
|
39973
40015
|
value: string;
|
|
39974
40016
|
} | undefined;
|
|
39975
|
-
}
|
|
39976
|
-
linkElementType: z.ZodOptional<z.
|
|
40017
|
+
}[] | null | undefined>;
|
|
40018
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
39977
40019
|
}, "strip", z.ZodTypeAny, {
|
|
39978
40020
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
39979
40021
|
id: string;
|
|
@@ -39992,7 +40034,7 @@ declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
|
|
|
39992
40034
|
value: string;
|
|
39993
40035
|
} | undefined;
|
|
39994
40036
|
}[] | undefined;
|
|
39995
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40037
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
39996
40038
|
}, {
|
|
39997
40039
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
39998
40040
|
id: string;
|
|
@@ -40010,8 +40052,8 @@ declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
|
|
|
40010
40052
|
backgroundColor?: {
|
|
40011
40053
|
value: string;
|
|
40012
40054
|
} | undefined;
|
|
40013
|
-
}[] | undefined;
|
|
40014
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40055
|
+
}[] | null | undefined;
|
|
40056
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40015
40057
|
}>;
|
|
40016
40058
|
}, "strip", z.ZodTypeAny, {
|
|
40017
40059
|
type: "PropertyDefinitionCreate";
|
|
@@ -40033,7 +40075,7 @@ declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
|
|
|
40033
40075
|
value: string;
|
|
40034
40076
|
} | undefined;
|
|
40035
40077
|
}[] | undefined;
|
|
40036
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40078
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40037
40079
|
};
|
|
40038
40080
|
}, {
|
|
40039
40081
|
type: "PropertyDefinitionCreate";
|
|
@@ -40054,8 +40096,8 @@ declare const DTOPropertyDefinitionCreateActionOutputV2: z.ZodObject<{
|
|
|
40054
40096
|
backgroundColor?: {
|
|
40055
40097
|
value: string;
|
|
40056
40098
|
} | undefined;
|
|
40057
|
-
}[] | undefined;
|
|
40058
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40099
|
+
}[] | null | undefined;
|
|
40100
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40059
40101
|
};
|
|
40060
40102
|
}>;
|
|
40061
40103
|
type DTOPropertyDefinitionCreateActionOutputV2 = z.infer<typeof DTOPropertyDefinitionCreateActionOutputV2>;
|
|
@@ -40078,30 +40120,32 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40078
40120
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40079
40121
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40080
40122
|
codeName: z.ZodString;
|
|
40081
|
-
options: z.ZodOptional<z.
|
|
40082
|
-
id:
|
|
40083
|
-
name:
|
|
40084
|
-
backgroundColor
|
|
40085
|
-
value: z.ZodString;
|
|
40086
|
-
}, "strip", z.ZodTypeAny, {
|
|
40123
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40124
|
+
id: string;
|
|
40125
|
+
name: string;
|
|
40126
|
+
backgroundColor?: {
|
|
40087
40127
|
value: string;
|
|
40088
|
-
}
|
|
40128
|
+
} | undefined;
|
|
40129
|
+
}[], z.ZodTypeDef, {
|
|
40130
|
+
id: string;
|
|
40131
|
+
name: string;
|
|
40132
|
+
backgroundColor?: {
|
|
40089
40133
|
value: string;
|
|
40090
|
-
}
|
|
40091
|
-
}
|
|
40134
|
+
} | undefined;
|
|
40135
|
+
}[]>>>, {
|
|
40092
40136
|
id: string;
|
|
40093
40137
|
name: string;
|
|
40094
40138
|
backgroundColor?: {
|
|
40095
40139
|
value: string;
|
|
40096
40140
|
} | undefined;
|
|
40097
|
-
}, {
|
|
40141
|
+
}[] | undefined, {
|
|
40098
40142
|
id: string;
|
|
40099
40143
|
name: string;
|
|
40100
40144
|
backgroundColor?: {
|
|
40101
40145
|
value: string;
|
|
40102
40146
|
} | undefined;
|
|
40103
|
-
}
|
|
40104
|
-
linkElementType: z.ZodOptional<z.
|
|
40147
|
+
}[] | null | undefined>;
|
|
40148
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40105
40149
|
}, "strip", z.ZodTypeAny, {
|
|
40106
40150
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40107
40151
|
id: string;
|
|
@@ -40120,7 +40164,7 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40120
40164
|
value: string;
|
|
40121
40165
|
} | undefined;
|
|
40122
40166
|
}[] | undefined;
|
|
40123
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40167
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40124
40168
|
}, {
|
|
40125
40169
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40126
40170
|
id: string;
|
|
@@ -40138,8 +40182,8 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40138
40182
|
backgroundColor?: {
|
|
40139
40183
|
value: string;
|
|
40140
40184
|
} | undefined;
|
|
40141
|
-
}[] | undefined;
|
|
40142
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40185
|
+
}[] | null | undefined;
|
|
40186
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40143
40187
|
}>;
|
|
40144
40188
|
}, "strip", z.ZodTypeAny, {
|
|
40145
40189
|
type: "PropertyDefinitionUpdate";
|
|
@@ -40161,7 +40205,7 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40161
40205
|
value: string;
|
|
40162
40206
|
} | undefined;
|
|
40163
40207
|
}[] | undefined;
|
|
40164
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40208
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40165
40209
|
};
|
|
40166
40210
|
}, {
|
|
40167
40211
|
type: "PropertyDefinitionUpdate";
|
|
@@ -40182,8 +40226,8 @@ declare const DTOPropertyDefinitionUpdateActionOutputV2: z.ZodObject<{
|
|
|
40182
40226
|
backgroundColor?: {
|
|
40183
40227
|
value: string;
|
|
40184
40228
|
} | undefined;
|
|
40185
|
-
}[] | undefined;
|
|
40186
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40229
|
+
}[] | null | undefined;
|
|
40230
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40187
40231
|
};
|
|
40188
40232
|
}>;
|
|
40189
40233
|
type DTOPropertyDefinitionUpdateActionOutputV2 = z.infer<typeof DTOPropertyDefinitionUpdateActionOutputV2>;
|
|
@@ -40227,30 +40271,32 @@ declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
|
|
|
40227
40271
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40228
40272
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40229
40273
|
codeName: z.ZodString;
|
|
40230
|
-
options: z.ZodOptional<z.
|
|
40231
|
-
id:
|
|
40232
|
-
name:
|
|
40233
|
-
backgroundColor
|
|
40234
|
-
value: z.ZodString;
|
|
40235
|
-
}, "strip", z.ZodTypeAny, {
|
|
40274
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40275
|
+
id: string;
|
|
40276
|
+
name: string;
|
|
40277
|
+
backgroundColor?: {
|
|
40236
40278
|
value: string;
|
|
40237
|
-
}
|
|
40279
|
+
} | undefined;
|
|
40280
|
+
}[], z.ZodTypeDef, {
|
|
40281
|
+
id: string;
|
|
40282
|
+
name: string;
|
|
40283
|
+
backgroundColor?: {
|
|
40238
40284
|
value: string;
|
|
40239
|
-
}
|
|
40240
|
-
}
|
|
40285
|
+
} | undefined;
|
|
40286
|
+
}[]>>>, {
|
|
40241
40287
|
id: string;
|
|
40242
40288
|
name: string;
|
|
40243
40289
|
backgroundColor?: {
|
|
40244
40290
|
value: string;
|
|
40245
40291
|
} | undefined;
|
|
40246
|
-
}, {
|
|
40292
|
+
}[] | undefined, {
|
|
40247
40293
|
id: string;
|
|
40248
40294
|
name: string;
|
|
40249
40295
|
backgroundColor?: {
|
|
40250
40296
|
value: string;
|
|
40251
40297
|
} | undefined;
|
|
40252
|
-
}
|
|
40253
|
-
linkElementType: z.ZodOptional<z.
|
|
40298
|
+
}[] | null | undefined>;
|
|
40299
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40254
40300
|
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
40255
40301
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40256
40302
|
persistentId: string;
|
|
@@ -40267,7 +40313,7 @@ declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
|
|
|
40267
40313
|
value: string;
|
|
40268
40314
|
} | undefined;
|
|
40269
40315
|
}[] | undefined;
|
|
40270
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40316
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40271
40317
|
}, {
|
|
40272
40318
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40273
40319
|
persistentId: string;
|
|
@@ -40283,8 +40329,8 @@ declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
|
|
|
40283
40329
|
backgroundColor?: {
|
|
40284
40330
|
value: string;
|
|
40285
40331
|
} | undefined;
|
|
40286
|
-
}[] | undefined;
|
|
40287
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40332
|
+
}[] | null | undefined;
|
|
40333
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40288
40334
|
}>;
|
|
40289
40335
|
}, "strip", z.ZodTypeAny, {
|
|
40290
40336
|
type: "PropertyDefinitionCreate";
|
|
@@ -40304,7 +40350,7 @@ declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
|
|
|
40304
40350
|
value: string;
|
|
40305
40351
|
} | undefined;
|
|
40306
40352
|
}[] | undefined;
|
|
40307
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40353
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40308
40354
|
};
|
|
40309
40355
|
}, {
|
|
40310
40356
|
type: "PropertyDefinitionCreate";
|
|
@@ -40323,8 +40369,8 @@ declare const DTOPropertyDefinitionCreateActionInputV2: z.ZodObject<{
|
|
|
40323
40369
|
backgroundColor?: {
|
|
40324
40370
|
value: string;
|
|
40325
40371
|
} | undefined;
|
|
40326
|
-
}[] | undefined;
|
|
40327
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40372
|
+
}[] | null | undefined;
|
|
40373
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40328
40374
|
};
|
|
40329
40375
|
}>;
|
|
40330
40376
|
type DTOPropertyDefinitionCreateActionInputV2 = z.infer<typeof DTOPropertyDefinitionCreateActionInputV2>;
|
|
@@ -40454,30 +40500,32 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40454
40500
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40455
40501
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40456
40502
|
codeName: z.ZodString;
|
|
40457
|
-
options: z.ZodOptional<z.
|
|
40458
|
-
id:
|
|
40459
|
-
name:
|
|
40460
|
-
backgroundColor
|
|
40461
|
-
value: z.ZodString;
|
|
40462
|
-
}, "strip", z.ZodTypeAny, {
|
|
40503
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40504
|
+
id: string;
|
|
40505
|
+
name: string;
|
|
40506
|
+
backgroundColor?: {
|
|
40463
40507
|
value: string;
|
|
40464
|
-
}
|
|
40508
|
+
} | undefined;
|
|
40509
|
+
}[], z.ZodTypeDef, {
|
|
40510
|
+
id: string;
|
|
40511
|
+
name: string;
|
|
40512
|
+
backgroundColor?: {
|
|
40465
40513
|
value: string;
|
|
40466
|
-
}
|
|
40467
|
-
}
|
|
40514
|
+
} | undefined;
|
|
40515
|
+
}[]>>>, {
|
|
40468
40516
|
id: string;
|
|
40469
40517
|
name: string;
|
|
40470
40518
|
backgroundColor?: {
|
|
40471
40519
|
value: string;
|
|
40472
40520
|
} | undefined;
|
|
40473
|
-
}, {
|
|
40521
|
+
}[] | undefined, {
|
|
40474
40522
|
id: string;
|
|
40475
40523
|
name: string;
|
|
40476
40524
|
backgroundColor?: {
|
|
40477
40525
|
value: string;
|
|
40478
40526
|
} | undefined;
|
|
40479
|
-
}
|
|
40480
|
-
linkElementType: z.ZodOptional<z.
|
|
40527
|
+
}[] | null | undefined>;
|
|
40528
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40481
40529
|
}, "strip", z.ZodTypeAny, {
|
|
40482
40530
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40483
40531
|
id: string;
|
|
@@ -40496,7 +40544,7 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40496
40544
|
value: string;
|
|
40497
40545
|
} | undefined;
|
|
40498
40546
|
}[] | undefined;
|
|
40499
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40547
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40500
40548
|
}, {
|
|
40501
40549
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40502
40550
|
id: string;
|
|
@@ -40514,11 +40562,11 @@ declare const DTOElementPropertyDefinition: z.ZodObject<{
|
|
|
40514
40562
|
backgroundColor?: {
|
|
40515
40563
|
value: string;
|
|
40516
40564
|
} | undefined;
|
|
40517
|
-
}[] | undefined;
|
|
40518
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40565
|
+
}[] | null | undefined;
|
|
40566
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40519
40567
|
}>;
|
|
40520
40568
|
type DTOElementPropertyDefinition = z.infer<typeof DTOElementPropertyDefinition>;
|
|
40521
|
-
declare const
|
|
40569
|
+
declare const DTOElementPropertyDefinitionListResponse: z.ZodObject<{
|
|
40522
40570
|
definitions: z.ZodArray<z.ZodObject<{
|
|
40523
40571
|
id: z.ZodString;
|
|
40524
40572
|
designSystemVersionId: z.ZodString;
|
|
@@ -40536,30 +40584,159 @@ declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
|
40536
40584
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40537
40585
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40538
40586
|
codeName: z.ZodString;
|
|
40539
|
-
options: z.ZodOptional<z.
|
|
40540
|
-
id:
|
|
40541
|
-
name:
|
|
40542
|
-
backgroundColor
|
|
40543
|
-
value: z.ZodString;
|
|
40544
|
-
}, "strip", z.ZodTypeAny, {
|
|
40587
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40588
|
+
id: string;
|
|
40589
|
+
name: string;
|
|
40590
|
+
backgroundColor?: {
|
|
40545
40591
|
value: string;
|
|
40546
|
-
}
|
|
40592
|
+
} | undefined;
|
|
40593
|
+
}[], z.ZodTypeDef, {
|
|
40594
|
+
id: string;
|
|
40595
|
+
name: string;
|
|
40596
|
+
backgroundColor?: {
|
|
40547
40597
|
value: string;
|
|
40548
|
-
}
|
|
40549
|
-
}
|
|
40598
|
+
} | undefined;
|
|
40599
|
+
}[]>>>, {
|
|
40550
40600
|
id: string;
|
|
40551
40601
|
name: string;
|
|
40552
40602
|
backgroundColor?: {
|
|
40553
40603
|
value: string;
|
|
40554
40604
|
} | undefined;
|
|
40605
|
+
}[] | undefined, {
|
|
40606
|
+
id: string;
|
|
40607
|
+
name: string;
|
|
40608
|
+
backgroundColor?: {
|
|
40609
|
+
value: string;
|
|
40610
|
+
} | undefined;
|
|
40611
|
+
}[] | null | undefined>;
|
|
40612
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40613
|
+
}, "strip", z.ZodTypeAny, {
|
|
40614
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40615
|
+
id: string;
|
|
40616
|
+
persistentId: string;
|
|
40617
|
+
meta: {
|
|
40618
|
+
name: string;
|
|
40619
|
+
description?: string | undefined;
|
|
40620
|
+
};
|
|
40621
|
+
designSystemVersionId: string;
|
|
40622
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40623
|
+
codeName: string;
|
|
40624
|
+
options?: {
|
|
40625
|
+
id: string;
|
|
40626
|
+
name: string;
|
|
40627
|
+
backgroundColor?: {
|
|
40628
|
+
value: string;
|
|
40629
|
+
} | undefined;
|
|
40630
|
+
}[] | undefined;
|
|
40631
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40632
|
+
}, {
|
|
40633
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40634
|
+
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
|
+
}[] | null | undefined;
|
|
40650
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40651
|
+
}>, "many">;
|
|
40652
|
+
}, "strip", z.ZodTypeAny, {
|
|
40653
|
+
definitions: {
|
|
40654
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40655
|
+
id: string;
|
|
40656
|
+
persistentId: string;
|
|
40657
|
+
meta: {
|
|
40658
|
+
name: string;
|
|
40659
|
+
description?: string | undefined;
|
|
40660
|
+
};
|
|
40661
|
+
designSystemVersionId: string;
|
|
40662
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40663
|
+
codeName: string;
|
|
40664
|
+
options?: {
|
|
40665
|
+
id: string;
|
|
40666
|
+
name: string;
|
|
40667
|
+
backgroundColor?: {
|
|
40668
|
+
value: string;
|
|
40669
|
+
} | undefined;
|
|
40670
|
+
}[] | undefined;
|
|
40671
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40672
|
+
}[];
|
|
40673
|
+
}, {
|
|
40674
|
+
definitions: {
|
|
40675
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40676
|
+
id: string;
|
|
40677
|
+
persistentId: string;
|
|
40678
|
+
meta: {
|
|
40679
|
+
name: string;
|
|
40680
|
+
description?: string | undefined;
|
|
40681
|
+
};
|
|
40682
|
+
designSystemVersionId: string;
|
|
40683
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
40684
|
+
codeName: string;
|
|
40685
|
+
options?: {
|
|
40686
|
+
id: string;
|
|
40687
|
+
name: string;
|
|
40688
|
+
backgroundColor?: {
|
|
40689
|
+
value: string;
|
|
40690
|
+
} | undefined;
|
|
40691
|
+
}[] | null | undefined;
|
|
40692
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40693
|
+
}[];
|
|
40694
|
+
}>;
|
|
40695
|
+
type DTOElementPropertyDefinitionListResponse = z.infer<typeof DTOElementPropertyDefinitionListResponse>;
|
|
40696
|
+
declare const DTOElementPropertyDefinitionResponse: z.ZodObject<{
|
|
40697
|
+
definition: z.ZodObject<{
|
|
40698
|
+
id: z.ZodString;
|
|
40699
|
+
designSystemVersionId: z.ZodString;
|
|
40700
|
+
meta: z.ZodObject<{
|
|
40701
|
+
name: z.ZodString;
|
|
40702
|
+
description: z.ZodOptional<z.ZodString>;
|
|
40703
|
+
}, "strip", z.ZodTypeAny, {
|
|
40704
|
+
name: string;
|
|
40705
|
+
description?: string | undefined;
|
|
40555
40706
|
}, {
|
|
40707
|
+
name: string;
|
|
40708
|
+
description?: string | undefined;
|
|
40709
|
+
}>;
|
|
40710
|
+
persistentId: z.ZodString;
|
|
40711
|
+
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40712
|
+
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40713
|
+
codeName: z.ZodString;
|
|
40714
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40556
40715
|
id: string;
|
|
40557
40716
|
name: string;
|
|
40558
40717
|
backgroundColor?: {
|
|
40559
40718
|
value: string;
|
|
40560
40719
|
} | undefined;
|
|
40561
|
-
}
|
|
40562
|
-
|
|
40720
|
+
}[], z.ZodTypeDef, {
|
|
40721
|
+
id: string;
|
|
40722
|
+
name: string;
|
|
40723
|
+
backgroundColor?: {
|
|
40724
|
+
value: string;
|
|
40725
|
+
} | undefined;
|
|
40726
|
+
}[]>>>, {
|
|
40727
|
+
id: string;
|
|
40728
|
+
name: string;
|
|
40729
|
+
backgroundColor?: {
|
|
40730
|
+
value: string;
|
|
40731
|
+
} | undefined;
|
|
40732
|
+
}[] | undefined, {
|
|
40733
|
+
id: string;
|
|
40734
|
+
name: string;
|
|
40735
|
+
backgroundColor?: {
|
|
40736
|
+
value: string;
|
|
40737
|
+
} | undefined;
|
|
40738
|
+
}[] | null | undefined>;
|
|
40739
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40563
40740
|
}, "strip", z.ZodTypeAny, {
|
|
40564
40741
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40565
40742
|
id: string;
|
|
@@ -40578,7 +40755,7 @@ declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
|
40578
40755
|
value: string;
|
|
40579
40756
|
} | undefined;
|
|
40580
40757
|
}[] | undefined;
|
|
40581
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40758
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40582
40759
|
}, {
|
|
40583
40760
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40584
40761
|
id: string;
|
|
@@ -40596,11 +40773,11 @@ declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
|
40596
40773
|
backgroundColor?: {
|
|
40597
40774
|
value: string;
|
|
40598
40775
|
} | undefined;
|
|
40599
|
-
}[] | undefined;
|
|
40600
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40601
|
-
}
|
|
40776
|
+
}[] | null | undefined;
|
|
40777
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40778
|
+
}>;
|
|
40602
40779
|
}, "strip", z.ZodTypeAny, {
|
|
40603
|
-
|
|
40780
|
+
definition: {
|
|
40604
40781
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40605
40782
|
id: string;
|
|
40606
40783
|
persistentId: string;
|
|
@@ -40618,10 +40795,10 @@ declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
|
40618
40795
|
value: string;
|
|
40619
40796
|
} | undefined;
|
|
40620
40797
|
}[] | undefined;
|
|
40621
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40622
|
-
}
|
|
40798
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40799
|
+
};
|
|
40623
40800
|
}, {
|
|
40624
|
-
|
|
40801
|
+
definition: {
|
|
40625
40802
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40626
40803
|
id: string;
|
|
40627
40804
|
persistentId: string;
|
|
@@ -40638,12 +40815,12 @@ declare const DTOElementPropertyDefinitionsGetResponse: z.ZodObject<{
|
|
|
40638
40815
|
backgroundColor?: {
|
|
40639
40816
|
value: string;
|
|
40640
40817
|
} | undefined;
|
|
40641
|
-
}[] | undefined;
|
|
40642
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40643
|
-
}
|
|
40818
|
+
}[] | null | undefined;
|
|
40819
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40820
|
+
};
|
|
40644
40821
|
}>;
|
|
40645
|
-
type
|
|
40646
|
-
declare const
|
|
40822
|
+
type DTOElementPropertyDefinitionResponse = z.infer<typeof DTOElementPropertyDefinitionResponse>;
|
|
40823
|
+
declare const DTOElementPropertyDefinitionCreatePayload: z.ZodObject<Omit<{
|
|
40647
40824
|
id: z.ZodString;
|
|
40648
40825
|
designSystemVersionId: z.ZodString;
|
|
40649
40826
|
meta: z.ZodObject<{
|
|
@@ -40660,30 +40837,32 @@ declare const DTOCreateElementPropertyDefinitionInputV2: z.ZodObject<Omit<{
|
|
|
40660
40837
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
40661
40838
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
40662
40839
|
codeName: z.ZodString;
|
|
40663
|
-
options: z.ZodOptional<z.
|
|
40664
|
-
id:
|
|
40665
|
-
name:
|
|
40666
|
-
backgroundColor
|
|
40667
|
-
value: z.ZodString;
|
|
40668
|
-
}, "strip", z.ZodTypeAny, {
|
|
40840
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
40841
|
+
id: string;
|
|
40842
|
+
name: string;
|
|
40843
|
+
backgroundColor?: {
|
|
40669
40844
|
value: string;
|
|
40670
|
-
}
|
|
40845
|
+
} | undefined;
|
|
40846
|
+
}[], z.ZodTypeDef, {
|
|
40847
|
+
id: string;
|
|
40848
|
+
name: string;
|
|
40849
|
+
backgroundColor?: {
|
|
40671
40850
|
value: string;
|
|
40672
|
-
}
|
|
40673
|
-
}
|
|
40851
|
+
} | undefined;
|
|
40852
|
+
}[]>>>, {
|
|
40674
40853
|
id: string;
|
|
40675
40854
|
name: string;
|
|
40676
40855
|
backgroundColor?: {
|
|
40677
40856
|
value: string;
|
|
40678
40857
|
} | undefined;
|
|
40679
|
-
}, {
|
|
40858
|
+
}[] | undefined, {
|
|
40680
40859
|
id: string;
|
|
40681
40860
|
name: string;
|
|
40682
40861
|
backgroundColor?: {
|
|
40683
40862
|
value: string;
|
|
40684
40863
|
} | undefined;
|
|
40685
|
-
}
|
|
40686
|
-
linkElementType: z.ZodOptional<z.
|
|
40864
|
+
}[] | null | undefined>;
|
|
40865
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
40687
40866
|
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
40688
40867
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40689
40868
|
persistentId: string;
|
|
@@ -40700,7 +40879,7 @@ declare const DTOCreateElementPropertyDefinitionInputV2: z.ZodObject<Omit<{
|
|
|
40700
40879
|
value: string;
|
|
40701
40880
|
} | undefined;
|
|
40702
40881
|
}[] | undefined;
|
|
40703
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40882
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
40704
40883
|
}, {
|
|
40705
40884
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
40706
40885
|
persistentId: string;
|
|
@@ -40716,11 +40895,11 @@ declare const DTOCreateElementPropertyDefinitionInputV2: z.ZodObject<Omit<{
|
|
|
40716
40895
|
backgroundColor?: {
|
|
40717
40896
|
value: string;
|
|
40718
40897
|
} | undefined;
|
|
40719
|
-
}[] | undefined;
|
|
40720
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
40898
|
+
}[] | null | undefined;
|
|
40899
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
40721
40900
|
}>;
|
|
40722
|
-
type
|
|
40723
|
-
declare const
|
|
40901
|
+
type DTOElementPropertyDefinitionCreatePayload = z.infer<typeof DTOElementPropertyDefinitionCreatePayload>;
|
|
40902
|
+
declare const DTOElementPropertyDefinitionUpdatePayload: z.ZodObject<{
|
|
40724
40903
|
id: z.ZodString;
|
|
40725
40904
|
name: z.ZodOptional<z.ZodString>;
|
|
40726
40905
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -40773,15 +40952,15 @@ declare const DTOUpdateElementPropertyDefinitionInputV2: z.ZodObject<{
|
|
|
40773
40952
|
name?: string | undefined;
|
|
40774
40953
|
codeName?: string | undefined;
|
|
40775
40954
|
}>;
|
|
40776
|
-
type
|
|
40777
|
-
declare const
|
|
40955
|
+
type DTOElementPropertyDefinitionUpdatePayload = z.infer<typeof DTOElementPropertyDefinitionUpdatePayload>;
|
|
40956
|
+
declare const DTOElementPropertyDefinitionDeletePayload: z.ZodObject<{
|
|
40778
40957
|
id: z.ZodString;
|
|
40779
40958
|
}, "strip", z.ZodTypeAny, {
|
|
40780
40959
|
id: string;
|
|
40781
40960
|
}, {
|
|
40782
40961
|
id: string;
|
|
40783
40962
|
}>;
|
|
40784
|
-
type
|
|
40963
|
+
type DTOElementPropertyDefinitionDeletePayload = z.infer<typeof DTOElementPropertyDefinitionDeletePayload>;
|
|
40785
40964
|
|
|
40786
40965
|
declare const DTOElementPropertyValue: z.ZodObject<{
|
|
40787
40966
|
id: z.ZodString;
|
|
@@ -40806,7 +40985,7 @@ declare const DTOElementPropertyValue: z.ZodObject<{
|
|
|
40806
40985
|
valuePreview?: string | undefined;
|
|
40807
40986
|
}>;
|
|
40808
40987
|
type DTOElementPropertyValue = z.infer<typeof DTOElementPropertyValue>;
|
|
40809
|
-
declare const
|
|
40988
|
+
declare const DTOElementPropertyValueListResponse: z.ZodObject<{
|
|
40810
40989
|
values: z.ZodArray<z.ZodObject<{
|
|
40811
40990
|
id: z.ZodString;
|
|
40812
40991
|
designSystemVersionId: z.ZodString;
|
|
@@ -40848,7 +41027,64 @@ declare const DTOElementPropertyValuesGetResponse: z.ZodObject<{
|
|
|
40848
41027
|
valuePreview?: string | undefined;
|
|
40849
41028
|
}[];
|
|
40850
41029
|
}>;
|
|
40851
|
-
type
|
|
41030
|
+
type DTOElementPropertyValueListResponse = z.infer<typeof DTOElementPropertyValueListResponse>;
|
|
41031
|
+
declare const DTOElementPropertyValueResponse: z.ZodObject<{
|
|
41032
|
+
value: z.ZodObject<{
|
|
41033
|
+
id: z.ZodString;
|
|
41034
|
+
designSystemVersionId: z.ZodString;
|
|
41035
|
+
definitionId: z.ZodString;
|
|
41036
|
+
targetElementId: z.ZodString;
|
|
41037
|
+
value: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
41038
|
+
valuePreview: z.ZodOptional<z.ZodString>;
|
|
41039
|
+
}, "strip", z.ZodTypeAny, {
|
|
41040
|
+
id: string;
|
|
41041
|
+
designSystemVersionId: string;
|
|
41042
|
+
definitionId: string;
|
|
41043
|
+
targetElementId: string;
|
|
41044
|
+
value?: string | number | boolean | undefined;
|
|
41045
|
+
valuePreview?: string | undefined;
|
|
41046
|
+
}, {
|
|
41047
|
+
id: string;
|
|
41048
|
+
designSystemVersionId: string;
|
|
41049
|
+
definitionId: string;
|
|
41050
|
+
targetElementId: string;
|
|
41051
|
+
value?: string | number | boolean | undefined;
|
|
41052
|
+
valuePreview?: string | undefined;
|
|
41053
|
+
}>;
|
|
41054
|
+
}, "strip", z.ZodTypeAny, {
|
|
41055
|
+
value: {
|
|
41056
|
+
id: string;
|
|
41057
|
+
designSystemVersionId: string;
|
|
41058
|
+
definitionId: string;
|
|
41059
|
+
targetElementId: string;
|
|
41060
|
+
value?: string | number | boolean | undefined;
|
|
41061
|
+
valuePreview?: string | undefined;
|
|
41062
|
+
};
|
|
41063
|
+
}, {
|
|
41064
|
+
value: {
|
|
41065
|
+
id: string;
|
|
41066
|
+
designSystemVersionId: string;
|
|
41067
|
+
definitionId: string;
|
|
41068
|
+
targetElementId: string;
|
|
41069
|
+
value?: string | number | boolean | undefined;
|
|
41070
|
+
valuePreview?: string | undefined;
|
|
41071
|
+
};
|
|
41072
|
+
}>;
|
|
41073
|
+
type DTOElementPropertyValueResponse = z.infer<typeof DTOElementPropertyValueResponse>;
|
|
41074
|
+
declare const DTOElementPropertyValueUpsertPaylod: z.ZodObject<{
|
|
41075
|
+
definitionId: z.ZodString;
|
|
41076
|
+
targetElementId: z.ZodString;
|
|
41077
|
+
value: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber]>, z.ZodBoolean]>;
|
|
41078
|
+
}, "strip", z.ZodTypeAny, {
|
|
41079
|
+
value: string | number | boolean;
|
|
41080
|
+
definitionId: string;
|
|
41081
|
+
targetElementId: string;
|
|
41082
|
+
}, {
|
|
41083
|
+
value: string | number | boolean;
|
|
41084
|
+
definitionId: string;
|
|
41085
|
+
targetElementId: string;
|
|
41086
|
+
}>;
|
|
41087
|
+
type DTOElementPropertyValueUpsertPaylod = z.infer<typeof DTOElementPropertyValueUpsertPaylod>;
|
|
40852
41088
|
|
|
40853
41089
|
declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
40854
41090
|
type: z.ZodLiteral<"DocumentationPageCreate">;
|
|
@@ -41312,30 +41548,32 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41312
41548
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41313
41549
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41314
41550
|
codeName: z.ZodString;
|
|
41315
|
-
options: z.ZodOptional<z.
|
|
41316
|
-
id:
|
|
41317
|
-
name:
|
|
41318
|
-
backgroundColor
|
|
41319
|
-
value: z.ZodString;
|
|
41320
|
-
}, "strip", z.ZodTypeAny, {
|
|
41551
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41552
|
+
id: string;
|
|
41553
|
+
name: string;
|
|
41554
|
+
backgroundColor?: {
|
|
41321
41555
|
value: string;
|
|
41322
|
-
}
|
|
41556
|
+
} | undefined;
|
|
41557
|
+
}[], z.ZodTypeDef, {
|
|
41558
|
+
id: string;
|
|
41559
|
+
name: string;
|
|
41560
|
+
backgroundColor?: {
|
|
41323
41561
|
value: string;
|
|
41324
|
-
}
|
|
41325
|
-
}
|
|
41562
|
+
} | undefined;
|
|
41563
|
+
}[]>>>, {
|
|
41326
41564
|
id: string;
|
|
41327
41565
|
name: string;
|
|
41328
41566
|
backgroundColor?: {
|
|
41329
41567
|
value: string;
|
|
41330
41568
|
} | undefined;
|
|
41331
|
-
}, {
|
|
41569
|
+
}[] | undefined, {
|
|
41332
41570
|
id: string;
|
|
41333
41571
|
name: string;
|
|
41334
41572
|
backgroundColor?: {
|
|
41335
41573
|
value: string;
|
|
41336
41574
|
} | undefined;
|
|
41337
|
-
}
|
|
41338
|
-
linkElementType: z.ZodOptional<z.
|
|
41575
|
+
}[] | null | undefined>;
|
|
41576
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41339
41577
|
}, "strip", z.ZodTypeAny, {
|
|
41340
41578
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41341
41579
|
id: string;
|
|
@@ -41354,7 +41592,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41354
41592
|
value: string;
|
|
41355
41593
|
} | undefined;
|
|
41356
41594
|
}[] | undefined;
|
|
41357
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41595
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41358
41596
|
}, {
|
|
41359
41597
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41360
41598
|
id: string;
|
|
@@ -41372,8 +41610,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41372
41610
|
backgroundColor?: {
|
|
41373
41611
|
value: string;
|
|
41374
41612
|
} | undefined;
|
|
41375
|
-
}[] | undefined;
|
|
41376
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41613
|
+
}[] | null | undefined;
|
|
41614
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41377
41615
|
}>;
|
|
41378
41616
|
}, "strip", z.ZodTypeAny, {
|
|
41379
41617
|
type: "PropertyDefinitionCreate";
|
|
@@ -41395,7 +41633,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41395
41633
|
value: string;
|
|
41396
41634
|
} | undefined;
|
|
41397
41635
|
}[] | undefined;
|
|
41398
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41636
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41399
41637
|
};
|
|
41400
41638
|
}, {
|
|
41401
41639
|
type: "PropertyDefinitionCreate";
|
|
@@ -41416,8 +41654,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41416
41654
|
backgroundColor?: {
|
|
41417
41655
|
value: string;
|
|
41418
41656
|
} | undefined;
|
|
41419
|
-
}[] | undefined;
|
|
41420
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41657
|
+
}[] | null | undefined;
|
|
41658
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41421
41659
|
};
|
|
41422
41660
|
}>, z.ZodObject<{
|
|
41423
41661
|
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
@@ -41438,30 +41676,32 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41438
41676
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41439
41677
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41440
41678
|
codeName: z.ZodString;
|
|
41441
|
-
options: z.ZodOptional<z.
|
|
41442
|
-
id:
|
|
41443
|
-
name:
|
|
41444
|
-
backgroundColor
|
|
41445
|
-
value: z.ZodString;
|
|
41446
|
-
}, "strip", z.ZodTypeAny, {
|
|
41679
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41680
|
+
id: string;
|
|
41681
|
+
name: string;
|
|
41682
|
+
backgroundColor?: {
|
|
41447
41683
|
value: string;
|
|
41448
|
-
}
|
|
41684
|
+
} | undefined;
|
|
41685
|
+
}[], z.ZodTypeDef, {
|
|
41686
|
+
id: string;
|
|
41687
|
+
name: string;
|
|
41688
|
+
backgroundColor?: {
|
|
41449
41689
|
value: string;
|
|
41450
|
-
}
|
|
41451
|
-
}
|
|
41690
|
+
} | undefined;
|
|
41691
|
+
}[]>>>, {
|
|
41452
41692
|
id: string;
|
|
41453
41693
|
name: string;
|
|
41454
41694
|
backgroundColor?: {
|
|
41455
41695
|
value: string;
|
|
41456
41696
|
} | undefined;
|
|
41457
|
-
}, {
|
|
41697
|
+
}[] | undefined, {
|
|
41458
41698
|
id: string;
|
|
41459
41699
|
name: string;
|
|
41460
41700
|
backgroundColor?: {
|
|
41461
41701
|
value: string;
|
|
41462
41702
|
} | undefined;
|
|
41463
|
-
}
|
|
41464
|
-
linkElementType: z.ZodOptional<z.
|
|
41703
|
+
}[] | null | undefined>;
|
|
41704
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41465
41705
|
}, "strip", z.ZodTypeAny, {
|
|
41466
41706
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41467
41707
|
id: string;
|
|
@@ -41480,7 +41720,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41480
41720
|
value: string;
|
|
41481
41721
|
} | undefined;
|
|
41482
41722
|
}[] | undefined;
|
|
41483
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41723
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41484
41724
|
}, {
|
|
41485
41725
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41486
41726
|
id: string;
|
|
@@ -41498,8 +41738,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41498
41738
|
backgroundColor?: {
|
|
41499
41739
|
value: string;
|
|
41500
41740
|
} | undefined;
|
|
41501
|
-
}[] | undefined;
|
|
41502
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41741
|
+
}[] | null | undefined;
|
|
41742
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41503
41743
|
}>;
|
|
41504
41744
|
}, "strip", z.ZodTypeAny, {
|
|
41505
41745
|
type: "PropertyDefinitionUpdate";
|
|
@@ -41521,7 +41761,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41521
41761
|
value: string;
|
|
41522
41762
|
} | undefined;
|
|
41523
41763
|
}[] | undefined;
|
|
41524
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41764
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41525
41765
|
};
|
|
41526
41766
|
}, {
|
|
41527
41767
|
type: "PropertyDefinitionUpdate";
|
|
@@ -41542,8 +41782,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41542
41782
|
backgroundColor?: {
|
|
41543
41783
|
value: string;
|
|
41544
41784
|
} | undefined;
|
|
41545
|
-
}[] | undefined;
|
|
41546
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41785
|
+
}[] | null | undefined;
|
|
41786
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41547
41787
|
};
|
|
41548
41788
|
}>, z.ZodObject<{
|
|
41549
41789
|
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
@@ -43276,30 +43516,32 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43276
43516
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
43277
43517
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
43278
43518
|
codeName: z.ZodString;
|
|
43279
|
-
options: z.ZodOptional<z.
|
|
43280
|
-
id:
|
|
43281
|
-
name:
|
|
43282
|
-
backgroundColor
|
|
43283
|
-
value: z.ZodString;
|
|
43284
|
-
}, "strip", z.ZodTypeAny, {
|
|
43519
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
43520
|
+
id: string;
|
|
43521
|
+
name: string;
|
|
43522
|
+
backgroundColor?: {
|
|
43285
43523
|
value: string;
|
|
43286
|
-
}
|
|
43524
|
+
} | undefined;
|
|
43525
|
+
}[], z.ZodTypeDef, {
|
|
43526
|
+
id: string;
|
|
43527
|
+
name: string;
|
|
43528
|
+
backgroundColor?: {
|
|
43287
43529
|
value: string;
|
|
43288
|
-
}
|
|
43289
|
-
}
|
|
43530
|
+
} | undefined;
|
|
43531
|
+
}[]>>>, {
|
|
43290
43532
|
id: string;
|
|
43291
43533
|
name: string;
|
|
43292
43534
|
backgroundColor?: {
|
|
43293
43535
|
value: string;
|
|
43294
43536
|
} | undefined;
|
|
43295
|
-
}, {
|
|
43537
|
+
}[] | undefined, {
|
|
43296
43538
|
id: string;
|
|
43297
43539
|
name: string;
|
|
43298
43540
|
backgroundColor?: {
|
|
43299
43541
|
value: string;
|
|
43300
43542
|
} | undefined;
|
|
43301
|
-
}
|
|
43302
|
-
linkElementType: z.ZodOptional<z.
|
|
43543
|
+
}[] | null | undefined>;
|
|
43544
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
43303
43545
|
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
43304
43546
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
43305
43547
|
persistentId: string;
|
|
@@ -43316,7 +43558,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43316
43558
|
value: string;
|
|
43317
43559
|
} | undefined;
|
|
43318
43560
|
}[] | undefined;
|
|
43319
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43561
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
43320
43562
|
}, {
|
|
43321
43563
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
43322
43564
|
persistentId: string;
|
|
@@ -43332,8 +43574,8 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43332
43574
|
backgroundColor?: {
|
|
43333
43575
|
value: string;
|
|
43334
43576
|
} | undefined;
|
|
43335
|
-
}[] | undefined;
|
|
43336
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43577
|
+
}[] | null | undefined;
|
|
43578
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
43337
43579
|
}>;
|
|
43338
43580
|
}, "strip", z.ZodTypeAny, {
|
|
43339
43581
|
type: "PropertyDefinitionCreate";
|
|
@@ -43353,7 +43595,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43353
43595
|
value: string;
|
|
43354
43596
|
} | undefined;
|
|
43355
43597
|
}[] | undefined;
|
|
43356
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43598
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
43357
43599
|
};
|
|
43358
43600
|
}, {
|
|
43359
43601
|
type: "PropertyDefinitionCreate";
|
|
@@ -43372,8 +43614,8 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43372
43614
|
backgroundColor?: {
|
|
43373
43615
|
value: string;
|
|
43374
43616
|
} | undefined;
|
|
43375
|
-
}[] | undefined;
|
|
43376
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43617
|
+
}[] | null | undefined;
|
|
43618
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
43377
43619
|
};
|
|
43378
43620
|
}>, z.ZodObject<{
|
|
43379
43621
|
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
@@ -84245,6 +84487,61 @@ declare class ImportJobsEndpoint {
|
|
|
84245
84487
|
}>;
|
|
84246
84488
|
}
|
|
84247
84489
|
|
|
84490
|
+
declare class OverridesEndpoint {
|
|
84491
|
+
private readonly requestExecutor;
|
|
84492
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84493
|
+
create(dsId: string, versionId: string, themeId: string, body: any): Promise<any>;
|
|
84494
|
+
}
|
|
84495
|
+
|
|
84496
|
+
declare class ElementPropertyDefinitionsEndpoint {
|
|
84497
|
+
private readonly requestExecutor;
|
|
84498
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84499
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
84500
|
+
definitions: {
|
|
84501
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84502
|
+
id: string;
|
|
84503
|
+
persistentId: string;
|
|
84504
|
+
meta: {
|
|
84505
|
+
name: string;
|
|
84506
|
+
description?: string | undefined;
|
|
84507
|
+
};
|
|
84508
|
+
designSystemVersionId: string;
|
|
84509
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84510
|
+
codeName: string;
|
|
84511
|
+
options?: {
|
|
84512
|
+
id: string;
|
|
84513
|
+
name: string;
|
|
84514
|
+
backgroundColor?: {
|
|
84515
|
+
value: string;
|
|
84516
|
+
} | undefined;
|
|
84517
|
+
}[] | undefined;
|
|
84518
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84519
|
+
}[];
|
|
84520
|
+
}>;
|
|
84521
|
+
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
84522
|
+
definition: {
|
|
84523
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
84524
|
+
id: string;
|
|
84525
|
+
persistentId: string;
|
|
84526
|
+
meta: {
|
|
84527
|
+
name: string;
|
|
84528
|
+
description?: string | undefined;
|
|
84529
|
+
};
|
|
84530
|
+
designSystemVersionId: string;
|
|
84531
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
84532
|
+
codeName: string;
|
|
84533
|
+
options?: {
|
|
84534
|
+
id: string;
|
|
84535
|
+
name: string;
|
|
84536
|
+
backgroundColor?: {
|
|
84537
|
+
value: string;
|
|
84538
|
+
} | undefined;
|
|
84539
|
+
}[] | undefined;
|
|
84540
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
84541
|
+
};
|
|
84542
|
+
}>;
|
|
84543
|
+
}
|
|
84544
|
+
|
|
84248
84545
|
declare class VersionStatsEndpoint {
|
|
84249
84546
|
private readonly requestExecutor;
|
|
84250
84547
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -84256,12 +84553,6 @@ declare class VersionStatsEndpoint {
|
|
|
84256
84553
|
}>;
|
|
84257
84554
|
}
|
|
84258
84555
|
|
|
84259
|
-
declare class OverridesEndpoint {
|
|
84260
|
-
private readonly requestExecutor;
|
|
84261
|
-
constructor(requestExecutor: RequestExecutor);
|
|
84262
|
-
create(dsId: string, versionId: string, themeId: string, body: any): Promise<any>;
|
|
84263
|
-
}
|
|
84264
|
-
|
|
84265
84556
|
declare class ThemesEndpoint {
|
|
84266
84557
|
private readonly requestExecutor;
|
|
84267
84558
|
readonly overrides: OverridesEndpoint;
|
|
@@ -85409,6 +85700,32 @@ declare class ThemesEndpoint {
|
|
|
85409
85700
|
delete(dsId: string, versionId: string, themeId: string): Promise<any>;
|
|
85410
85701
|
}
|
|
85411
85702
|
|
|
85703
|
+
declare class TokenCollectionsEndpoint {
|
|
85704
|
+
private readonly requestExecutor;
|
|
85705
|
+
constructor(requestExecutor: RequestExecutor);
|
|
85706
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
85707
|
+
collections: {
|
|
85708
|
+
id: string;
|
|
85709
|
+
persistentId: string;
|
|
85710
|
+
meta: {
|
|
85711
|
+
name: string;
|
|
85712
|
+
description?: string | undefined;
|
|
85713
|
+
};
|
|
85714
|
+
designSystemVersionId: string;
|
|
85715
|
+
createdAt: Date;
|
|
85716
|
+
updatedAt: Date;
|
|
85717
|
+
elementPropertyOptionId: string;
|
|
85718
|
+
backgroundColor?: {
|
|
85719
|
+
value: string;
|
|
85720
|
+
} | undefined;
|
|
85721
|
+
origin?: {
|
|
85722
|
+
id: string;
|
|
85723
|
+
sourceId: string;
|
|
85724
|
+
} | undefined;
|
|
85725
|
+
}[];
|
|
85726
|
+
}>;
|
|
85727
|
+
}
|
|
85728
|
+
|
|
85412
85729
|
declare class TokensEndpoint {
|
|
85413
85730
|
private readonly requestExecutor;
|
|
85414
85731
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85793,13 +86110,41 @@ declare class TokensEndpoint {
|
|
|
85793
86110
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
85794
86111
|
}
|
|
85795
86112
|
|
|
86113
|
+
declare class ElementPropertyValuesEndpoint {
|
|
86114
|
+
private readonly requestExecutor;
|
|
86115
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86116
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
86117
|
+
values: {
|
|
86118
|
+
id: string;
|
|
86119
|
+
designSystemVersionId: string;
|
|
86120
|
+
definitionId: string;
|
|
86121
|
+
targetElementId: string;
|
|
86122
|
+
value?: string | number | boolean | undefined;
|
|
86123
|
+
valuePreview?: string | undefined;
|
|
86124
|
+
}[];
|
|
86125
|
+
}>;
|
|
86126
|
+
upsert(designSystemId: string, versionId: string, body: DTOElementPropertyValueUpsertPaylod): Promise<{
|
|
86127
|
+
value: {
|
|
86128
|
+
id: string;
|
|
86129
|
+
designSystemVersionId: string;
|
|
86130
|
+
definitionId: string;
|
|
86131
|
+
targetElementId: string;
|
|
86132
|
+
value?: string | number | boolean | undefined;
|
|
86133
|
+
valuePreview?: string | undefined;
|
|
86134
|
+
};
|
|
86135
|
+
}>;
|
|
86136
|
+
}
|
|
86137
|
+
|
|
85796
86138
|
declare class DesignSystemVersionsEndpoint {
|
|
85797
86139
|
private readonly requestExecutor;
|
|
85798
86140
|
readonly themes: ThemesEndpoint;
|
|
85799
86141
|
readonly brands: BrandsEndpoint;
|
|
86142
|
+
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
85800
86143
|
readonly importJobs: ImportJobsEndpoint;
|
|
85801
86144
|
readonly tokens: TokensEndpoint;
|
|
85802
86145
|
readonly stats: VersionStatsEndpoint;
|
|
86146
|
+
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86147
|
+
readonly elementPropertyValues: ElementPropertyValuesEndpoint;
|
|
85803
86148
|
constructor(requestExecutor: RequestExecutor);
|
|
85804
86149
|
list(dsId: string): Promise<{
|
|
85805
86150
|
designSystemVersions: {
|
|
@@ -87197,28 +87542,6 @@ declare class WorkspacesEndpoint {
|
|
|
87197
87542
|
subscription(workspaceId: string): Promise<any>;
|
|
87198
87543
|
}
|
|
87199
87544
|
|
|
87200
|
-
declare class TokenCollectionsEndpoint {
|
|
87201
|
-
private readonly requestExecutor;
|
|
87202
|
-
constructor(requestExecutor: RequestExecutor);
|
|
87203
|
-
list(dsId: string, vId: string): Promise<{
|
|
87204
|
-
collections: {
|
|
87205
|
-
id: string;
|
|
87206
|
-
persistentId: string;
|
|
87207
|
-
meta: {
|
|
87208
|
-
name: string;
|
|
87209
|
-
description?: string | undefined;
|
|
87210
|
-
};
|
|
87211
|
-
designSystemVersionId: string;
|
|
87212
|
-
createdAt: Date;
|
|
87213
|
-
updatedAt: Date;
|
|
87214
|
-
origin: {
|
|
87215
|
-
id: string;
|
|
87216
|
-
sourceId: string;
|
|
87217
|
-
};
|
|
87218
|
-
}[];
|
|
87219
|
-
}>;
|
|
87220
|
-
}
|
|
87221
|
-
|
|
87222
87545
|
declare class UsersEndpoint {
|
|
87223
87546
|
private readonly requestExecutor;
|
|
87224
87547
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -90058,4 +90381,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90058
90381
|
|
|
90059
90382
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90060
90383
|
|
|
90061
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateElementPropertyDefinitionInputV2, DTOCreateVersionInput, DTODataSource, DTODataSourceCreationResponse, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaVariablesPlugin, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODeleteElementPropertyDefinitionInputV2, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, 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, DTOElementPropertyDefinitionsGetResponse, DTOElementPropertyValue, DTOElementPropertyValuesGetResponse, 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, DTOUpdateElementPropertyDefinitionInputV2, 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, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ExportersEndpoint, FormattedCollections, FrontendVersionRoomYDoc, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, TokenCollectionsEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, 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 };
|
|
90384
|
+
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, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, 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, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, 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, 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 };
|