@supernova-studio/client 0.57.9 → 0.57.10
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 +751 -511
- package/dist/index.d.ts +751 -511
- package/dist/index.js +158 -89
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1886 -1817
- 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/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 +3 -0
- package/src/api/endpoints/design-system/versions/property-definitions.ts +25 -0
- package/src/api/endpoints/design-system/versions/token-collections.ts +13 -0
- package/src/api/endpoints/design-system/versions/versions.ts +33 -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.mts
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;
|
|
@@ -41312,30 +41491,32 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41312
41491
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41313
41492
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41314
41493
|
codeName: z.ZodString;
|
|
41315
|
-
options: z.ZodOptional<z.
|
|
41316
|
-
id:
|
|
41317
|
-
name:
|
|
41318
|
-
backgroundColor
|
|
41319
|
-
value: z.ZodString;
|
|
41320
|
-
}, "strip", z.ZodTypeAny, {
|
|
41494
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41495
|
+
id: string;
|
|
41496
|
+
name: string;
|
|
41497
|
+
backgroundColor?: {
|
|
41321
41498
|
value: string;
|
|
41322
|
-
}
|
|
41499
|
+
} | undefined;
|
|
41500
|
+
}[], z.ZodTypeDef, {
|
|
41501
|
+
id: string;
|
|
41502
|
+
name: string;
|
|
41503
|
+
backgroundColor?: {
|
|
41323
41504
|
value: string;
|
|
41324
|
-
}
|
|
41325
|
-
}
|
|
41505
|
+
} | undefined;
|
|
41506
|
+
}[]>>>, {
|
|
41326
41507
|
id: string;
|
|
41327
41508
|
name: string;
|
|
41328
41509
|
backgroundColor?: {
|
|
41329
41510
|
value: string;
|
|
41330
41511
|
} | undefined;
|
|
41331
|
-
}, {
|
|
41512
|
+
}[] | undefined, {
|
|
41332
41513
|
id: string;
|
|
41333
41514
|
name: string;
|
|
41334
41515
|
backgroundColor?: {
|
|
41335
41516
|
value: string;
|
|
41336
41517
|
} | undefined;
|
|
41337
|
-
}
|
|
41338
|
-
linkElementType: z.ZodOptional<z.
|
|
41518
|
+
}[] | null | undefined>;
|
|
41519
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41339
41520
|
}, "strip", z.ZodTypeAny, {
|
|
41340
41521
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41341
41522
|
id: string;
|
|
@@ -41354,7 +41535,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41354
41535
|
value: string;
|
|
41355
41536
|
} | undefined;
|
|
41356
41537
|
}[] | undefined;
|
|
41357
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41538
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41358
41539
|
}, {
|
|
41359
41540
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41360
41541
|
id: string;
|
|
@@ -41372,8 +41553,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41372
41553
|
backgroundColor?: {
|
|
41373
41554
|
value: string;
|
|
41374
41555
|
} | undefined;
|
|
41375
|
-
}[] | undefined;
|
|
41376
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41556
|
+
}[] | null | undefined;
|
|
41557
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41377
41558
|
}>;
|
|
41378
41559
|
}, "strip", z.ZodTypeAny, {
|
|
41379
41560
|
type: "PropertyDefinitionCreate";
|
|
@@ -41395,7 +41576,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41395
41576
|
value: string;
|
|
41396
41577
|
} | undefined;
|
|
41397
41578
|
}[] | undefined;
|
|
41398
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41579
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41399
41580
|
};
|
|
41400
41581
|
}, {
|
|
41401
41582
|
type: "PropertyDefinitionCreate";
|
|
@@ -41416,8 +41597,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41416
41597
|
backgroundColor?: {
|
|
41417
41598
|
value: string;
|
|
41418
41599
|
} | undefined;
|
|
41419
|
-
}[] | undefined;
|
|
41420
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41600
|
+
}[] | null | undefined;
|
|
41601
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41421
41602
|
};
|
|
41422
41603
|
}>, z.ZodObject<{
|
|
41423
41604
|
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
@@ -41438,30 +41619,32 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41438
41619
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
41439
41620
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
41440
41621
|
codeName: z.ZodString;
|
|
41441
|
-
options: z.ZodOptional<z.
|
|
41442
|
-
id:
|
|
41443
|
-
name:
|
|
41444
|
-
backgroundColor
|
|
41445
|
-
value: z.ZodString;
|
|
41446
|
-
}, "strip", z.ZodTypeAny, {
|
|
41622
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
41623
|
+
id: string;
|
|
41624
|
+
name: string;
|
|
41625
|
+
backgroundColor?: {
|
|
41447
41626
|
value: string;
|
|
41448
|
-
}
|
|
41627
|
+
} | undefined;
|
|
41628
|
+
}[], z.ZodTypeDef, {
|
|
41629
|
+
id: string;
|
|
41630
|
+
name: string;
|
|
41631
|
+
backgroundColor?: {
|
|
41449
41632
|
value: string;
|
|
41450
|
-
}
|
|
41451
|
-
}
|
|
41633
|
+
} | undefined;
|
|
41634
|
+
}[]>>>, {
|
|
41452
41635
|
id: string;
|
|
41453
41636
|
name: string;
|
|
41454
41637
|
backgroundColor?: {
|
|
41455
41638
|
value: string;
|
|
41456
41639
|
} | undefined;
|
|
41457
|
-
}, {
|
|
41640
|
+
}[] | undefined, {
|
|
41458
41641
|
id: string;
|
|
41459
41642
|
name: string;
|
|
41460
41643
|
backgroundColor?: {
|
|
41461
41644
|
value: string;
|
|
41462
41645
|
} | undefined;
|
|
41463
|
-
}
|
|
41464
|
-
linkElementType: z.ZodOptional<z.
|
|
41646
|
+
}[] | null | undefined>;
|
|
41647
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
41465
41648
|
}, "strip", z.ZodTypeAny, {
|
|
41466
41649
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41467
41650
|
id: string;
|
|
@@ -41480,7 +41663,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41480
41663
|
value: string;
|
|
41481
41664
|
} | undefined;
|
|
41482
41665
|
}[] | undefined;
|
|
41483
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41666
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41484
41667
|
}, {
|
|
41485
41668
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
41486
41669
|
id: string;
|
|
@@ -41498,8 +41681,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41498
41681
|
backgroundColor?: {
|
|
41499
41682
|
value: string;
|
|
41500
41683
|
} | undefined;
|
|
41501
|
-
}[] | undefined;
|
|
41502
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41684
|
+
}[] | null | undefined;
|
|
41685
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41503
41686
|
}>;
|
|
41504
41687
|
}, "strip", z.ZodTypeAny, {
|
|
41505
41688
|
type: "PropertyDefinitionUpdate";
|
|
@@ -41521,7 +41704,7 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41521
41704
|
value: string;
|
|
41522
41705
|
} | undefined;
|
|
41523
41706
|
}[] | undefined;
|
|
41524
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41707
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
41525
41708
|
};
|
|
41526
41709
|
}, {
|
|
41527
41710
|
type: "PropertyDefinitionUpdate";
|
|
@@ -41542,8 +41725,8 @@ declare const DTOElementActionOutput: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41542
41725
|
backgroundColor?: {
|
|
41543
41726
|
value: string;
|
|
41544
41727
|
} | undefined;
|
|
41545
|
-
}[] | undefined;
|
|
41546
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
41728
|
+
}[] | null | undefined;
|
|
41729
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
41547
41730
|
};
|
|
41548
41731
|
}>, z.ZodObject<{
|
|
41549
41732
|
type: z.ZodLiteral<"PropertyDefinitionDelete">;
|
|
@@ -43276,30 +43459,32 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43276
43459
|
type: z.ZodEnum<["Text", "Number", "Boolean", "Select", "Generic", "Link", "URL"]>;
|
|
43277
43460
|
targetElementType: z.ZodEnum<["Token", "Component", "DocumentationPage"]>;
|
|
43278
43461
|
codeName: z.ZodString;
|
|
43279
|
-
options: z.ZodOptional<z.
|
|
43280
|
-
id:
|
|
43281
|
-
name:
|
|
43282
|
-
backgroundColor
|
|
43283
|
-
value: z.ZodString;
|
|
43284
|
-
}, "strip", z.ZodTypeAny, {
|
|
43462
|
+
options: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
43463
|
+
id: string;
|
|
43464
|
+
name: string;
|
|
43465
|
+
backgroundColor?: {
|
|
43285
43466
|
value: string;
|
|
43286
|
-
}
|
|
43467
|
+
} | undefined;
|
|
43468
|
+
}[], z.ZodTypeDef, {
|
|
43469
|
+
id: string;
|
|
43470
|
+
name: string;
|
|
43471
|
+
backgroundColor?: {
|
|
43287
43472
|
value: string;
|
|
43288
|
-
}
|
|
43289
|
-
}
|
|
43473
|
+
} | undefined;
|
|
43474
|
+
}[]>>>, {
|
|
43290
43475
|
id: string;
|
|
43291
43476
|
name: string;
|
|
43292
43477
|
backgroundColor?: {
|
|
43293
43478
|
value: string;
|
|
43294
43479
|
} | undefined;
|
|
43295
|
-
}, {
|
|
43480
|
+
}[] | undefined, {
|
|
43296
43481
|
id: string;
|
|
43297
43482
|
name: string;
|
|
43298
43483
|
backgroundColor?: {
|
|
43299
43484
|
value: string;
|
|
43300
43485
|
} | undefined;
|
|
43301
|
-
}
|
|
43302
|
-
linkElementType: z.ZodOptional<z.
|
|
43486
|
+
}[] | null | undefined>;
|
|
43487
|
+
linkElementType: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"DocumentationPage" | "FigmaComponent", z.ZodTypeDef, "DocumentationPage" | "FigmaComponent">>>, NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined, "DocumentationPage" | "FigmaComponent" | null | undefined>;
|
|
43303
43488
|
}, "id" | "designSystemVersionId">, "strip", z.ZodTypeAny, {
|
|
43304
43489
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
43305
43490
|
persistentId: string;
|
|
@@ -43316,7 +43501,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43316
43501
|
value: string;
|
|
43317
43502
|
} | undefined;
|
|
43318
43503
|
}[] | undefined;
|
|
43319
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43504
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
43320
43505
|
}, {
|
|
43321
43506
|
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
43322
43507
|
persistentId: string;
|
|
@@ -43332,8 +43517,8 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43332
43517
|
backgroundColor?: {
|
|
43333
43518
|
value: string;
|
|
43334
43519
|
} | undefined;
|
|
43335
|
-
}[] | undefined;
|
|
43336
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43520
|
+
}[] | null | undefined;
|
|
43521
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
43337
43522
|
}>;
|
|
43338
43523
|
}, "strip", z.ZodTypeAny, {
|
|
43339
43524
|
type: "PropertyDefinitionCreate";
|
|
@@ -43353,7 +43538,7 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43353
43538
|
value: string;
|
|
43354
43539
|
} | undefined;
|
|
43355
43540
|
}[] | undefined;
|
|
43356
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43541
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
43357
43542
|
};
|
|
43358
43543
|
}, {
|
|
43359
43544
|
type: "PropertyDefinitionCreate";
|
|
@@ -43372,8 +43557,8 @@ declare const DTOElementActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
|
43372
43557
|
backgroundColor?: {
|
|
43373
43558
|
value: string;
|
|
43374
43559
|
} | undefined;
|
|
43375
|
-
}[] | undefined;
|
|
43376
|
-
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
43560
|
+
}[] | null | undefined;
|
|
43561
|
+
linkElementType?: "DocumentationPage" | "FigmaComponent" | null | undefined;
|
|
43377
43562
|
};
|
|
43378
43563
|
}>, z.ZodObject<{
|
|
43379
43564
|
type: z.ZodLiteral<"PropertyDefinitionUpdate">;
|
|
@@ -84245,6 +84430,12 @@ declare class ImportJobsEndpoint {
|
|
|
84245
84430
|
}>;
|
|
84246
84431
|
}
|
|
84247
84432
|
|
|
84433
|
+
declare class OverridesEndpoint {
|
|
84434
|
+
private readonly requestExecutor;
|
|
84435
|
+
constructor(requestExecutor: RequestExecutor);
|
|
84436
|
+
create(dsId: string, versionId: string, themeId: string, body: any): Promise<any>;
|
|
84437
|
+
}
|
|
84438
|
+
|
|
84248
84439
|
declare class VersionStatsEndpoint {
|
|
84249
84440
|
private readonly requestExecutor;
|
|
84250
84441
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -84256,12 +84447,6 @@ declare class VersionStatsEndpoint {
|
|
|
84256
84447
|
}>;
|
|
84257
84448
|
}
|
|
84258
84449
|
|
|
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
84450
|
declare class ThemesEndpoint {
|
|
84266
84451
|
private readonly requestExecutor;
|
|
84267
84452
|
readonly overrides: OverridesEndpoint;
|
|
@@ -85793,30 +85978,6 @@ declare class TokensEndpoint {
|
|
|
85793
85978
|
get(dsId: string, versionId: string, tokenId: string): Promise<DTODesignTokenListResponse>;
|
|
85794
85979
|
}
|
|
85795
85980
|
|
|
85796
|
-
declare class DesignSystemVersionsEndpoint {
|
|
85797
|
-
private readonly requestExecutor;
|
|
85798
|
-
readonly themes: ThemesEndpoint;
|
|
85799
|
-
readonly brands: BrandsEndpoint;
|
|
85800
|
-
readonly importJobs: ImportJobsEndpoint;
|
|
85801
|
-
readonly tokens: TokensEndpoint;
|
|
85802
|
-
readonly stats: VersionStatsEndpoint;
|
|
85803
|
-
constructor(requestExecutor: RequestExecutor);
|
|
85804
|
-
list(dsId: string): Promise<{
|
|
85805
|
-
designSystemVersions: {
|
|
85806
|
-
id: string;
|
|
85807
|
-
meta: {
|
|
85808
|
-
name: string;
|
|
85809
|
-
description?: string | undefined;
|
|
85810
|
-
};
|
|
85811
|
-
createdAt: Date;
|
|
85812
|
-
designSystemId: string;
|
|
85813
|
-
version: string;
|
|
85814
|
-
changeLog: string;
|
|
85815
|
-
isReadonly: boolean;
|
|
85816
|
-
}[];
|
|
85817
|
-
}>;
|
|
85818
|
-
}
|
|
85819
|
-
|
|
85820
85981
|
declare class DesignSystemBffEndpoint {
|
|
85821
85982
|
private readonly requestExecutor;
|
|
85822
85983
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -85973,6 +86134,107 @@ declare class DesignSystemSourcesEndpoint {
|
|
|
85973
86134
|
}>;
|
|
85974
86135
|
}
|
|
85975
86136
|
|
|
86137
|
+
declare class ElementPropertyDefinitionsEndpoint {
|
|
86138
|
+
private readonly requestExecutor;
|
|
86139
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86140
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
86141
|
+
definitions: {
|
|
86142
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86143
|
+
id: string;
|
|
86144
|
+
persistentId: string;
|
|
86145
|
+
meta: {
|
|
86146
|
+
name: string;
|
|
86147
|
+
description?: string | undefined;
|
|
86148
|
+
};
|
|
86149
|
+
designSystemVersionId: string;
|
|
86150
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86151
|
+
codeName: string;
|
|
86152
|
+
options?: {
|
|
86153
|
+
id: string;
|
|
86154
|
+
name: string;
|
|
86155
|
+
backgroundColor?: {
|
|
86156
|
+
value: string;
|
|
86157
|
+
} | undefined;
|
|
86158
|
+
}[] | undefined;
|
|
86159
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86160
|
+
}[];
|
|
86161
|
+
}>;
|
|
86162
|
+
create(designSystemId: string, versionId: string, body: DTOElementPropertyDefinitionCreatePayload): Promise<{
|
|
86163
|
+
definition: {
|
|
86164
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
86165
|
+
id: string;
|
|
86166
|
+
persistentId: string;
|
|
86167
|
+
meta: {
|
|
86168
|
+
name: string;
|
|
86169
|
+
description?: string | undefined;
|
|
86170
|
+
};
|
|
86171
|
+
designSystemVersionId: string;
|
|
86172
|
+
targetElementType: "Token" | "Component" | "DocumentationPage";
|
|
86173
|
+
codeName: string;
|
|
86174
|
+
options?: {
|
|
86175
|
+
id: string;
|
|
86176
|
+
name: string;
|
|
86177
|
+
backgroundColor?: {
|
|
86178
|
+
value: string;
|
|
86179
|
+
} | undefined;
|
|
86180
|
+
}[] | undefined;
|
|
86181
|
+
linkElementType?: NonNullable<"DocumentationPage" | "FigmaComponent"> | undefined;
|
|
86182
|
+
};
|
|
86183
|
+
}>;
|
|
86184
|
+
}
|
|
86185
|
+
|
|
86186
|
+
declare class TokenCollectionsEndpoint {
|
|
86187
|
+
private readonly requestExecutor;
|
|
86188
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86189
|
+
list(designSystemId: string, versionId: string): Promise<{
|
|
86190
|
+
collections: {
|
|
86191
|
+
id: string;
|
|
86192
|
+
persistentId: string;
|
|
86193
|
+
meta: {
|
|
86194
|
+
name: string;
|
|
86195
|
+
description?: string | undefined;
|
|
86196
|
+
};
|
|
86197
|
+
designSystemVersionId: string;
|
|
86198
|
+
createdAt: Date;
|
|
86199
|
+
updatedAt: Date;
|
|
86200
|
+
elementPropertyOptionId: string;
|
|
86201
|
+
backgroundColor?: {
|
|
86202
|
+
value: string;
|
|
86203
|
+
} | undefined;
|
|
86204
|
+
origin?: {
|
|
86205
|
+
id: string;
|
|
86206
|
+
sourceId: string;
|
|
86207
|
+
} | undefined;
|
|
86208
|
+
}[];
|
|
86209
|
+
}>;
|
|
86210
|
+
}
|
|
86211
|
+
|
|
86212
|
+
declare class DesignSystemVersionsEndpoint {
|
|
86213
|
+
private readonly requestExecutor;
|
|
86214
|
+
readonly themes: ThemesEndpoint;
|
|
86215
|
+
readonly brands: BrandsEndpoint;
|
|
86216
|
+
readonly tokenCollections: TokenCollectionsEndpoint;
|
|
86217
|
+
readonly importJobs: ImportJobsEndpoint;
|
|
86218
|
+
readonly tokens: TokensEndpoint;
|
|
86219
|
+
readonly stats: VersionStatsEndpoint;
|
|
86220
|
+
readonly elementPropertyDefinitions: ElementPropertyDefinitionsEndpoint;
|
|
86221
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86222
|
+
list(dsId: string): Promise<{
|
|
86223
|
+
designSystemVersions: {
|
|
86224
|
+
id: string;
|
|
86225
|
+
meta: {
|
|
86226
|
+
name: string;
|
|
86227
|
+
description?: string | undefined;
|
|
86228
|
+
};
|
|
86229
|
+
createdAt: Date;
|
|
86230
|
+
designSystemId: string;
|
|
86231
|
+
version: string;
|
|
86232
|
+
changeLog: string;
|
|
86233
|
+
isReadonly: boolean;
|
|
86234
|
+
}[];
|
|
86235
|
+
}>;
|
|
86236
|
+
}
|
|
86237
|
+
|
|
85976
86238
|
declare class DesignSystemsEndpoint {
|
|
85977
86239
|
private readonly requestExecutor;
|
|
85978
86240
|
readonly members: DesignSystemMembersEndpoint;
|
|
@@ -86143,6 +86405,280 @@ declare class DesignSystemsEndpoint {
|
|
|
86143
86405
|
}>;
|
|
86144
86406
|
}
|
|
86145
86407
|
|
|
86408
|
+
declare class UsersEndpoint {
|
|
86409
|
+
private readonly requestExecutor;
|
|
86410
|
+
constructor(requestExecutor: RequestExecutor);
|
|
86411
|
+
getMe(): Promise<{
|
|
86412
|
+
user: {
|
|
86413
|
+
id: string;
|
|
86414
|
+
createdAt: Date;
|
|
86415
|
+
profile: {
|
|
86416
|
+
name: string;
|
|
86417
|
+
avatar?: string | undefined;
|
|
86418
|
+
nickname?: string | undefined;
|
|
86419
|
+
onboarding?: {
|
|
86420
|
+
companyName?: string | undefined;
|
|
86421
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
86422
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86423
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86424
|
+
jobTitle?: string | undefined;
|
|
86425
|
+
phase?: string | undefined;
|
|
86426
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86427
|
+
designSystemName?: string | undefined;
|
|
86428
|
+
defaultDestination?: string | undefined;
|
|
86429
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86430
|
+
} | undefined;
|
|
86431
|
+
};
|
|
86432
|
+
email: string;
|
|
86433
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86434
|
+
loggedOutAt?: Date | undefined;
|
|
86435
|
+
};
|
|
86436
|
+
}>;
|
|
86437
|
+
listWorkspaces(uid: string): Promise<{
|
|
86438
|
+
membership: {
|
|
86439
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86440
|
+
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
86441
|
+
workspace: {
|
|
86442
|
+
id: string;
|
|
86443
|
+
profile: {
|
|
86444
|
+
name: string;
|
|
86445
|
+
color: string;
|
|
86446
|
+
handle: string;
|
|
86447
|
+
avatar?: string | undefined;
|
|
86448
|
+
billingDetails?: {
|
|
86449
|
+
address?: {
|
|
86450
|
+
street1?: string | undefined;
|
|
86451
|
+
street2?: string | undefined;
|
|
86452
|
+
city?: string | undefined;
|
|
86453
|
+
postal?: string | undefined;
|
|
86454
|
+
country?: string | undefined;
|
|
86455
|
+
state?: string | undefined;
|
|
86456
|
+
} | undefined;
|
|
86457
|
+
email?: string | undefined;
|
|
86458
|
+
companyName?: string | undefined;
|
|
86459
|
+
companyId?: string | undefined;
|
|
86460
|
+
notes?: string | undefined;
|
|
86461
|
+
vat?: string | undefined;
|
|
86462
|
+
poNumber?: string | undefined;
|
|
86463
|
+
} | undefined;
|
|
86464
|
+
};
|
|
86465
|
+
subscription: {
|
|
86466
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
86467
|
+
planPriceId: string;
|
|
86468
|
+
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
86469
|
+
seats: number;
|
|
86470
|
+
seatLimit: number;
|
|
86471
|
+
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86472
|
+
card?: {
|
|
86473
|
+
cardId?: string | null | undefined;
|
|
86474
|
+
last4?: string | null | undefined;
|
|
86475
|
+
expiryMonth?: string | null | undefined;
|
|
86476
|
+
expiryYear?: string | null | undefined;
|
|
86477
|
+
brand?: string | null | undefined;
|
|
86478
|
+
name?: string | null | undefined;
|
|
86479
|
+
} | undefined;
|
|
86480
|
+
amount?: number | null | undefined;
|
|
86481
|
+
stripeProductDescription?: string | undefined;
|
|
86482
|
+
isPricePerCreator?: boolean | undefined;
|
|
86483
|
+
isTrial?: boolean | undefined;
|
|
86484
|
+
legacyVersion?: string | undefined;
|
|
86485
|
+
stripeProductFeatures?: string[] | undefined;
|
|
86486
|
+
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
86487
|
+
stripeSubscriptionId?: string | null | undefined;
|
|
86488
|
+
stripeCustomerId?: string | null | undefined;
|
|
86489
|
+
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
86490
|
+
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
86491
|
+
featuresSummary?: {
|
|
86492
|
+
designSystems: {
|
|
86493
|
+
max: number;
|
|
86494
|
+
errorMessage: string;
|
|
86495
|
+
errorReason: string;
|
|
86496
|
+
};
|
|
86497
|
+
designSystemSources: {
|
|
86498
|
+
max: number;
|
|
86499
|
+
errorMessage: string;
|
|
86500
|
+
errorReason: string;
|
|
86501
|
+
noImportJobsErrorMessage: string;
|
|
86502
|
+
noImportJobsErrorReason: string;
|
|
86503
|
+
};
|
|
86504
|
+
designSystemVersions: {
|
|
86505
|
+
max: number;
|
|
86506
|
+
errorMessage: string;
|
|
86507
|
+
errorReason: string;
|
|
86508
|
+
};
|
|
86509
|
+
themes: {
|
|
86510
|
+
max: number;
|
|
86511
|
+
errorMessage: string;
|
|
86512
|
+
errorReason: string;
|
|
86513
|
+
};
|
|
86514
|
+
brands: {
|
|
86515
|
+
max: number;
|
|
86516
|
+
errorMessage: string;
|
|
86517
|
+
errorReason: string;
|
|
86518
|
+
};
|
|
86519
|
+
codegenSchedules: {
|
|
86520
|
+
max: number;
|
|
86521
|
+
errorMessage: string;
|
|
86522
|
+
errorReason: string;
|
|
86523
|
+
};
|
|
86524
|
+
publicDocumentation: {
|
|
86525
|
+
errorMessage: string;
|
|
86526
|
+
errorReason: string;
|
|
86527
|
+
enabled: boolean;
|
|
86528
|
+
};
|
|
86529
|
+
customDocumentationUrl: {
|
|
86530
|
+
errorMessage: string;
|
|
86531
|
+
errorReason: string;
|
|
86532
|
+
enabled: boolean;
|
|
86533
|
+
};
|
|
86534
|
+
customDocumentationViewButton: {
|
|
86535
|
+
errorMessage: string;
|
|
86536
|
+
errorReason: string;
|
|
86537
|
+
enabled: boolean;
|
|
86538
|
+
};
|
|
86539
|
+
designSystemSourceAutoImport: {
|
|
86540
|
+
errorMessage: string;
|
|
86541
|
+
errorReason: string;
|
|
86542
|
+
enabled: boolean;
|
|
86543
|
+
};
|
|
86544
|
+
designSystemSlug: {
|
|
86545
|
+
errorMessage: string;
|
|
86546
|
+
errorReason: string;
|
|
86547
|
+
enabled: boolean;
|
|
86548
|
+
};
|
|
86549
|
+
ipWhitelisting: {
|
|
86550
|
+
errorMessage: string;
|
|
86551
|
+
errorReason: string;
|
|
86552
|
+
enabled: boolean;
|
|
86553
|
+
};
|
|
86554
|
+
npmRegistry: {
|
|
86555
|
+
errorMessage: string;
|
|
86556
|
+
errorReason: string;
|
|
86557
|
+
enabled: boolean;
|
|
86558
|
+
};
|
|
86559
|
+
sso: {
|
|
86560
|
+
errorMessage: string;
|
|
86561
|
+
errorReason: string;
|
|
86562
|
+
enabled: boolean;
|
|
86563
|
+
};
|
|
86564
|
+
workspacePaidSeats: {
|
|
86565
|
+
max: number;
|
|
86566
|
+
errorMessage: string;
|
|
86567
|
+
errorReason: string;
|
|
86568
|
+
};
|
|
86569
|
+
workspaceViewers: {
|
|
86570
|
+
max: number;
|
|
86571
|
+
errorMessage: string;
|
|
86572
|
+
errorReason: string;
|
|
86573
|
+
};
|
|
86574
|
+
customDocumentationExporter: {
|
|
86575
|
+
errorMessage: string;
|
|
86576
|
+
errorReason: string;
|
|
86577
|
+
enabled: boolean;
|
|
86578
|
+
};
|
|
86579
|
+
protectedPages: {
|
|
86580
|
+
errorMessage: string;
|
|
86581
|
+
errorReason: string;
|
|
86582
|
+
enabled: boolean;
|
|
86583
|
+
};
|
|
86584
|
+
approvals: {
|
|
86585
|
+
errorMessage: string;
|
|
86586
|
+
errorReason: string;
|
|
86587
|
+
enabled: boolean;
|
|
86588
|
+
};
|
|
86589
|
+
selectivePublishing: {
|
|
86590
|
+
errorMessage: string;
|
|
86591
|
+
errorReason: string;
|
|
86592
|
+
enabled: boolean;
|
|
86593
|
+
};
|
|
86594
|
+
designSystemAccessModes: {
|
|
86595
|
+
errorMessage: string;
|
|
86596
|
+
errorReason: string;
|
|
86597
|
+
enabled: boolean;
|
|
86598
|
+
};
|
|
86599
|
+
designSystemRoles: {
|
|
86600
|
+
errorMessage: string;
|
|
86601
|
+
errorReason: string;
|
|
86602
|
+
enabled: boolean;
|
|
86603
|
+
};
|
|
86604
|
+
} | undefined;
|
|
86605
|
+
stripeSubscriptionMainItemId?: string | undefined;
|
|
86606
|
+
currentPeriodStart?: string | undefined;
|
|
86607
|
+
currentPeriodEnd?: string | undefined;
|
|
86608
|
+
subscriptionStatusUpdatedAt?: string | undefined;
|
|
86609
|
+
cancelAt?: string | null | undefined;
|
|
86610
|
+
billingType?: "Auto" | "Invoice" | undefined;
|
|
86611
|
+
daysUntilDue?: number | undefined;
|
|
86612
|
+
};
|
|
86613
|
+
npmRegistry?: {
|
|
86614
|
+
enabledScopes: string[];
|
|
86615
|
+
bypassProxy: boolean;
|
|
86616
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
86617
|
+
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
86618
|
+
registryUrl: string;
|
|
86619
|
+
proxyUrl: string;
|
|
86620
|
+
customRegistryUrl?: string | undefined;
|
|
86621
|
+
accessToken?: string | undefined;
|
|
86622
|
+
username?: string | undefined;
|
|
86623
|
+
password?: string | undefined;
|
|
86624
|
+
} | undefined;
|
|
86625
|
+
};
|
|
86626
|
+
}[];
|
|
86627
|
+
}>;
|
|
86628
|
+
delete(uid: string): Promise<{
|
|
86629
|
+
user: {
|
|
86630
|
+
id: string;
|
|
86631
|
+
createdAt: Date;
|
|
86632
|
+
profile: {
|
|
86633
|
+
name: string;
|
|
86634
|
+
avatar?: string | undefined;
|
|
86635
|
+
nickname?: string | undefined;
|
|
86636
|
+
onboarding?: {
|
|
86637
|
+
companyName?: string | undefined;
|
|
86638
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
86639
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86640
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86641
|
+
jobTitle?: string | undefined;
|
|
86642
|
+
phase?: string | undefined;
|
|
86643
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86644
|
+
designSystemName?: string | undefined;
|
|
86645
|
+
defaultDestination?: string | undefined;
|
|
86646
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86647
|
+
} | undefined;
|
|
86648
|
+
};
|
|
86649
|
+
email: string;
|
|
86650
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86651
|
+
loggedOutAt?: Date | undefined;
|
|
86652
|
+
};
|
|
86653
|
+
}>;
|
|
86654
|
+
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
86655
|
+
user: {
|
|
86656
|
+
id: string;
|
|
86657
|
+
createdAt: Date;
|
|
86658
|
+
profile: {
|
|
86659
|
+
name: string;
|
|
86660
|
+
avatar?: string | undefined;
|
|
86661
|
+
nickname?: string | undefined;
|
|
86662
|
+
onboarding?: {
|
|
86663
|
+
companyName?: string | undefined;
|
|
86664
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
86665
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
86666
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
86667
|
+
jobTitle?: string | undefined;
|
|
86668
|
+
phase?: string | undefined;
|
|
86669
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
86670
|
+
designSystemName?: string | undefined;
|
|
86671
|
+
defaultDestination?: string | undefined;
|
|
86672
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
86673
|
+
} | undefined;
|
|
86674
|
+
};
|
|
86675
|
+
email: string;
|
|
86676
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
86677
|
+
loggedOutAt?: Date | undefined;
|
|
86678
|
+
};
|
|
86679
|
+
}>;
|
|
86680
|
+
}
|
|
86681
|
+
|
|
86146
86682
|
declare class WorkspaceInvitationsEndpoint {
|
|
86147
86683
|
private readonly requestExecutor;
|
|
86148
86684
|
constructor(requestExecutor: RequestExecutor);
|
|
@@ -87197,302 +87733,6 @@ declare class WorkspacesEndpoint {
|
|
|
87197
87733
|
subscription(workspaceId: string): Promise<any>;
|
|
87198
87734
|
}
|
|
87199
87735
|
|
|
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
|
-
declare class UsersEndpoint {
|
|
87223
|
-
private readonly requestExecutor;
|
|
87224
|
-
constructor(requestExecutor: RequestExecutor);
|
|
87225
|
-
getMe(): Promise<{
|
|
87226
|
-
user: {
|
|
87227
|
-
id: string;
|
|
87228
|
-
createdAt: Date;
|
|
87229
|
-
profile: {
|
|
87230
|
-
name: string;
|
|
87231
|
-
avatar?: string | undefined;
|
|
87232
|
-
nickname?: string | undefined;
|
|
87233
|
-
onboarding?: {
|
|
87234
|
-
companyName?: string | undefined;
|
|
87235
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
87236
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87237
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87238
|
-
jobTitle?: string | undefined;
|
|
87239
|
-
phase?: string | undefined;
|
|
87240
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87241
|
-
designSystemName?: string | undefined;
|
|
87242
|
-
defaultDestination?: string | undefined;
|
|
87243
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87244
|
-
} | undefined;
|
|
87245
|
-
};
|
|
87246
|
-
email: string;
|
|
87247
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87248
|
-
loggedOutAt?: Date | undefined;
|
|
87249
|
-
};
|
|
87250
|
-
}>;
|
|
87251
|
-
listWorkspaces(uid: string): Promise<{
|
|
87252
|
-
membership: {
|
|
87253
|
-
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87254
|
-
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
87255
|
-
workspace: {
|
|
87256
|
-
id: string;
|
|
87257
|
-
profile: {
|
|
87258
|
-
name: string;
|
|
87259
|
-
color: string;
|
|
87260
|
-
handle: string;
|
|
87261
|
-
avatar?: string | undefined;
|
|
87262
|
-
billingDetails?: {
|
|
87263
|
-
address?: {
|
|
87264
|
-
street1?: string | undefined;
|
|
87265
|
-
street2?: string | undefined;
|
|
87266
|
-
city?: string | undefined;
|
|
87267
|
-
postal?: string | undefined;
|
|
87268
|
-
country?: string | undefined;
|
|
87269
|
-
state?: string | undefined;
|
|
87270
|
-
} | undefined;
|
|
87271
|
-
email?: string | undefined;
|
|
87272
|
-
companyName?: string | undefined;
|
|
87273
|
-
companyId?: string | undefined;
|
|
87274
|
-
notes?: string | undefined;
|
|
87275
|
-
vat?: string | undefined;
|
|
87276
|
-
poNumber?: string | undefined;
|
|
87277
|
-
} | undefined;
|
|
87278
|
-
};
|
|
87279
|
-
subscription: {
|
|
87280
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
87281
|
-
planPriceId: string;
|
|
87282
|
-
planInterval: "yearly" | "daily" | "monthly" | "weekly";
|
|
87283
|
-
seats: number;
|
|
87284
|
-
seatLimit: number;
|
|
87285
|
-
status?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
87286
|
-
card?: {
|
|
87287
|
-
cardId?: string | null | undefined;
|
|
87288
|
-
last4?: string | null | undefined;
|
|
87289
|
-
expiryMonth?: string | null | undefined;
|
|
87290
|
-
expiryYear?: string | null | undefined;
|
|
87291
|
-
brand?: string | null | undefined;
|
|
87292
|
-
name?: string | null | undefined;
|
|
87293
|
-
} | undefined;
|
|
87294
|
-
amount?: number | null | undefined;
|
|
87295
|
-
stripeProductDescription?: string | undefined;
|
|
87296
|
-
isPricePerCreator?: boolean | undefined;
|
|
87297
|
-
isTrial?: boolean | undefined;
|
|
87298
|
-
legacyVersion?: string | undefined;
|
|
87299
|
-
stripeProductFeatures?: string[] | undefined;
|
|
87300
|
-
stripeProductAdditionalFeatures?: string[] | undefined;
|
|
87301
|
-
stripeSubscriptionId?: string | null | undefined;
|
|
87302
|
-
stripeCustomerId?: string | null | undefined;
|
|
87303
|
-
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
87304
|
-
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
87305
|
-
featuresSummary?: {
|
|
87306
|
-
designSystems: {
|
|
87307
|
-
max: number;
|
|
87308
|
-
errorMessage: string;
|
|
87309
|
-
errorReason: string;
|
|
87310
|
-
};
|
|
87311
|
-
designSystemSources: {
|
|
87312
|
-
max: number;
|
|
87313
|
-
errorMessage: string;
|
|
87314
|
-
errorReason: string;
|
|
87315
|
-
noImportJobsErrorMessage: string;
|
|
87316
|
-
noImportJobsErrorReason: string;
|
|
87317
|
-
};
|
|
87318
|
-
designSystemVersions: {
|
|
87319
|
-
max: number;
|
|
87320
|
-
errorMessage: string;
|
|
87321
|
-
errorReason: string;
|
|
87322
|
-
};
|
|
87323
|
-
themes: {
|
|
87324
|
-
max: number;
|
|
87325
|
-
errorMessage: string;
|
|
87326
|
-
errorReason: string;
|
|
87327
|
-
};
|
|
87328
|
-
brands: {
|
|
87329
|
-
max: number;
|
|
87330
|
-
errorMessage: string;
|
|
87331
|
-
errorReason: string;
|
|
87332
|
-
};
|
|
87333
|
-
codegenSchedules: {
|
|
87334
|
-
max: number;
|
|
87335
|
-
errorMessage: string;
|
|
87336
|
-
errorReason: string;
|
|
87337
|
-
};
|
|
87338
|
-
publicDocumentation: {
|
|
87339
|
-
errorMessage: string;
|
|
87340
|
-
errorReason: string;
|
|
87341
|
-
enabled: boolean;
|
|
87342
|
-
};
|
|
87343
|
-
customDocumentationUrl: {
|
|
87344
|
-
errorMessage: string;
|
|
87345
|
-
errorReason: string;
|
|
87346
|
-
enabled: boolean;
|
|
87347
|
-
};
|
|
87348
|
-
customDocumentationViewButton: {
|
|
87349
|
-
errorMessage: string;
|
|
87350
|
-
errorReason: string;
|
|
87351
|
-
enabled: boolean;
|
|
87352
|
-
};
|
|
87353
|
-
designSystemSourceAutoImport: {
|
|
87354
|
-
errorMessage: string;
|
|
87355
|
-
errorReason: string;
|
|
87356
|
-
enabled: boolean;
|
|
87357
|
-
};
|
|
87358
|
-
designSystemSlug: {
|
|
87359
|
-
errorMessage: string;
|
|
87360
|
-
errorReason: string;
|
|
87361
|
-
enabled: boolean;
|
|
87362
|
-
};
|
|
87363
|
-
ipWhitelisting: {
|
|
87364
|
-
errorMessage: string;
|
|
87365
|
-
errorReason: string;
|
|
87366
|
-
enabled: boolean;
|
|
87367
|
-
};
|
|
87368
|
-
npmRegistry: {
|
|
87369
|
-
errorMessage: string;
|
|
87370
|
-
errorReason: string;
|
|
87371
|
-
enabled: boolean;
|
|
87372
|
-
};
|
|
87373
|
-
sso: {
|
|
87374
|
-
errorMessage: string;
|
|
87375
|
-
errorReason: string;
|
|
87376
|
-
enabled: boolean;
|
|
87377
|
-
};
|
|
87378
|
-
workspacePaidSeats: {
|
|
87379
|
-
max: number;
|
|
87380
|
-
errorMessage: string;
|
|
87381
|
-
errorReason: string;
|
|
87382
|
-
};
|
|
87383
|
-
workspaceViewers: {
|
|
87384
|
-
max: number;
|
|
87385
|
-
errorMessage: string;
|
|
87386
|
-
errorReason: string;
|
|
87387
|
-
};
|
|
87388
|
-
customDocumentationExporter: {
|
|
87389
|
-
errorMessage: string;
|
|
87390
|
-
errorReason: string;
|
|
87391
|
-
enabled: boolean;
|
|
87392
|
-
};
|
|
87393
|
-
protectedPages: {
|
|
87394
|
-
errorMessage: string;
|
|
87395
|
-
errorReason: string;
|
|
87396
|
-
enabled: boolean;
|
|
87397
|
-
};
|
|
87398
|
-
approvals: {
|
|
87399
|
-
errorMessage: string;
|
|
87400
|
-
errorReason: string;
|
|
87401
|
-
enabled: boolean;
|
|
87402
|
-
};
|
|
87403
|
-
selectivePublishing: {
|
|
87404
|
-
errorMessage: string;
|
|
87405
|
-
errorReason: string;
|
|
87406
|
-
enabled: boolean;
|
|
87407
|
-
};
|
|
87408
|
-
designSystemAccessModes: {
|
|
87409
|
-
errorMessage: string;
|
|
87410
|
-
errorReason: string;
|
|
87411
|
-
enabled: boolean;
|
|
87412
|
-
};
|
|
87413
|
-
designSystemRoles: {
|
|
87414
|
-
errorMessage: string;
|
|
87415
|
-
errorReason: string;
|
|
87416
|
-
enabled: boolean;
|
|
87417
|
-
};
|
|
87418
|
-
} | undefined;
|
|
87419
|
-
stripeSubscriptionMainItemId?: string | undefined;
|
|
87420
|
-
currentPeriodStart?: string | undefined;
|
|
87421
|
-
currentPeriodEnd?: string | undefined;
|
|
87422
|
-
subscriptionStatusUpdatedAt?: string | undefined;
|
|
87423
|
-
cancelAt?: string | null | undefined;
|
|
87424
|
-
billingType?: "Auto" | "Invoice" | undefined;
|
|
87425
|
-
daysUntilDue?: number | undefined;
|
|
87426
|
-
};
|
|
87427
|
-
npmRegistry?: {
|
|
87428
|
-
enabledScopes: string[];
|
|
87429
|
-
bypassProxy: boolean;
|
|
87430
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
87431
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
87432
|
-
registryUrl: string;
|
|
87433
|
-
proxyUrl: string;
|
|
87434
|
-
customRegistryUrl?: string | undefined;
|
|
87435
|
-
accessToken?: string | undefined;
|
|
87436
|
-
username?: string | undefined;
|
|
87437
|
-
password?: string | undefined;
|
|
87438
|
-
} | undefined;
|
|
87439
|
-
};
|
|
87440
|
-
}[];
|
|
87441
|
-
}>;
|
|
87442
|
-
delete(uid: string): Promise<{
|
|
87443
|
-
user: {
|
|
87444
|
-
id: string;
|
|
87445
|
-
createdAt: Date;
|
|
87446
|
-
profile: {
|
|
87447
|
-
name: string;
|
|
87448
|
-
avatar?: string | undefined;
|
|
87449
|
-
nickname?: string | undefined;
|
|
87450
|
-
onboarding?: {
|
|
87451
|
-
companyName?: string | undefined;
|
|
87452
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
87453
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87454
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87455
|
-
jobTitle?: string | undefined;
|
|
87456
|
-
phase?: string | undefined;
|
|
87457
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87458
|
-
designSystemName?: string | undefined;
|
|
87459
|
-
defaultDestination?: string | undefined;
|
|
87460
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87461
|
-
} | undefined;
|
|
87462
|
-
};
|
|
87463
|
-
email: string;
|
|
87464
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87465
|
-
loggedOutAt?: Date | undefined;
|
|
87466
|
-
};
|
|
87467
|
-
}>;
|
|
87468
|
-
updateProfile(uid: string, body: DTOUserProfileUpdate): Promise<{
|
|
87469
|
-
user: {
|
|
87470
|
-
id: string;
|
|
87471
|
-
createdAt: Date;
|
|
87472
|
-
profile: {
|
|
87473
|
-
name: string;
|
|
87474
|
-
avatar?: string | undefined;
|
|
87475
|
-
nickname?: string | undefined;
|
|
87476
|
-
onboarding?: {
|
|
87477
|
-
companyName?: string | undefined;
|
|
87478
|
-
numberOfPeopleInOrg?: string | undefined;
|
|
87479
|
-
numberOfPeopleInDesignTeam?: string | undefined;
|
|
87480
|
-
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
87481
|
-
jobTitle?: string | undefined;
|
|
87482
|
-
phase?: string | undefined;
|
|
87483
|
-
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
87484
|
-
designSystemName?: string | undefined;
|
|
87485
|
-
defaultDestination?: string | undefined;
|
|
87486
|
-
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
87487
|
-
} | undefined;
|
|
87488
|
-
};
|
|
87489
|
-
email: string;
|
|
87490
|
-
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
87491
|
-
loggedOutAt?: Date | undefined;
|
|
87492
|
-
};
|
|
87493
|
-
}>;
|
|
87494
|
-
}
|
|
87495
|
-
|
|
87496
87736
|
type SupernovaApiClientConfig = {
|
|
87497
87737
|
host: string;
|
|
87498
87738
|
accessToken: string;
|
|
@@ -90058,4 +90298,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
90058
90298
|
|
|
90059
90299
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
90060
90300
|
|
|
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 };
|
|
90301
|
+
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, 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, 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, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, 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, 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 };
|