@supernova-studio/client 0.58.10 → 0.58.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +821 -34
- package/dist/index.d.ts +821 -34
- package/dist/index.js +66 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +801 -752
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/api/dto/design-systems/brand.ts +23 -1
- package/src/api/dto/design-systems/component.ts +32 -2
- package/src/api/endpoints/design-system/versions/brands.ts +16 -3
- package/src/api/endpoints/design-system/versions/ds-components.ts +20 -7
- package/src/api/payloads/design-systems/index.ts +0 -1
- package/src/api/transport/request-executor-error.ts +1 -1
- package/src/api/payloads/design-systems/brand.ts +0 -12
package/dist/index.d.mts
CHANGED
|
@@ -3979,7 +3979,238 @@ declare const DTOBrandsListResponse: z.ZodObject<{
|
|
|
3979
3979
|
}[];
|
|
3980
3980
|
}>;
|
|
3981
3981
|
type DTOBrandsListResponse = z.infer<typeof DTOBrandsListResponse>;
|
|
3982
|
+
declare const DTOBrandCreatePayload: z.ZodObject<{
|
|
3983
|
+
persistentId: z.ZodString;
|
|
3984
|
+
meta: z.ZodObject<{
|
|
3985
|
+
name: z.ZodString;
|
|
3986
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3987
|
+
}, "strip", z.ZodTypeAny, {
|
|
3988
|
+
name: string;
|
|
3989
|
+
description?: string | undefined;
|
|
3990
|
+
}, {
|
|
3991
|
+
name: string;
|
|
3992
|
+
description?: string | undefined;
|
|
3993
|
+
}>;
|
|
3994
|
+
}, "strip", z.ZodTypeAny, {
|
|
3995
|
+
persistentId: string;
|
|
3996
|
+
meta: {
|
|
3997
|
+
name: string;
|
|
3998
|
+
description?: string | undefined;
|
|
3999
|
+
};
|
|
4000
|
+
}, {
|
|
4001
|
+
persistentId: string;
|
|
4002
|
+
meta: {
|
|
4003
|
+
name: string;
|
|
4004
|
+
description?: string | undefined;
|
|
4005
|
+
};
|
|
4006
|
+
}>;
|
|
4007
|
+
type DTOBrandCreatePayload = z.infer<typeof DTOBrandCreatePayload>;
|
|
4008
|
+
declare const DTOBrandUpdatePayload: z.ZodObject<{
|
|
4009
|
+
meta: z.ZodOptional<z.ZodObject<{
|
|
4010
|
+
name: z.ZodString;
|
|
4011
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4012
|
+
}, "strip", z.ZodTypeAny, {
|
|
4013
|
+
name: string;
|
|
4014
|
+
description?: string | undefined;
|
|
4015
|
+
}, {
|
|
4016
|
+
name: string;
|
|
4017
|
+
description?: string | undefined;
|
|
4018
|
+
}>>;
|
|
4019
|
+
persistentId: z.ZodString;
|
|
4020
|
+
}, "strip", z.ZodTypeAny, {
|
|
4021
|
+
persistentId: string;
|
|
4022
|
+
meta?: {
|
|
4023
|
+
name: string;
|
|
4024
|
+
description?: string | undefined;
|
|
4025
|
+
} | undefined;
|
|
4026
|
+
}, {
|
|
4027
|
+
persistentId: string;
|
|
4028
|
+
meta?: {
|
|
4029
|
+
name: string;
|
|
4030
|
+
description?: string | undefined;
|
|
4031
|
+
} | undefined;
|
|
4032
|
+
}>;
|
|
4033
|
+
type DTOBrandUpdatePayload = z.infer<typeof DTOBrandUpdatePayload>;
|
|
3982
4034
|
|
|
4035
|
+
declare const DTODesignSystemComponent: z.ZodObject<{
|
|
4036
|
+
id: z.ZodString;
|
|
4037
|
+
persistentId: z.ZodString;
|
|
4038
|
+
designSystemVersionId: z.ZodString;
|
|
4039
|
+
brandId: z.ZodString;
|
|
4040
|
+
meta: z.ZodObject<{
|
|
4041
|
+
name: z.ZodString;
|
|
4042
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4043
|
+
}, "strip", z.ZodTypeAny, {
|
|
4044
|
+
name: string;
|
|
4045
|
+
description?: string | undefined;
|
|
4046
|
+
}, {
|
|
4047
|
+
name: string;
|
|
4048
|
+
description?: string | undefined;
|
|
4049
|
+
}>;
|
|
4050
|
+
createdAt: z.ZodDate;
|
|
4051
|
+
updatedAt: z.ZodDate;
|
|
4052
|
+
}, "strip", z.ZodTypeAny, {
|
|
4053
|
+
id: string;
|
|
4054
|
+
persistentId: string;
|
|
4055
|
+
meta: {
|
|
4056
|
+
name: string;
|
|
4057
|
+
description?: string | undefined;
|
|
4058
|
+
};
|
|
4059
|
+
designSystemVersionId: string;
|
|
4060
|
+
createdAt: Date;
|
|
4061
|
+
updatedAt: Date;
|
|
4062
|
+
brandId: string;
|
|
4063
|
+
}, {
|
|
4064
|
+
id: string;
|
|
4065
|
+
persistentId: string;
|
|
4066
|
+
meta: {
|
|
4067
|
+
name: string;
|
|
4068
|
+
description?: string | undefined;
|
|
4069
|
+
};
|
|
4070
|
+
designSystemVersionId: string;
|
|
4071
|
+
createdAt: Date;
|
|
4072
|
+
updatedAt: Date;
|
|
4073
|
+
brandId: string;
|
|
4074
|
+
}>;
|
|
4075
|
+
type DTODesignSystemComponent = z.infer<typeof DTODesignSystemComponent>;
|
|
4076
|
+
declare const DTODesignSystemComponentResponse: z.ZodObject<{
|
|
4077
|
+
designSystemComponent: z.ZodObject<{
|
|
4078
|
+
id: z.ZodString;
|
|
4079
|
+
persistentId: z.ZodString;
|
|
4080
|
+
designSystemVersionId: z.ZodString;
|
|
4081
|
+
brandId: z.ZodString;
|
|
4082
|
+
meta: z.ZodObject<{
|
|
4083
|
+
name: z.ZodString;
|
|
4084
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4085
|
+
}, "strip", z.ZodTypeAny, {
|
|
4086
|
+
name: string;
|
|
4087
|
+
description?: string | undefined;
|
|
4088
|
+
}, {
|
|
4089
|
+
name: string;
|
|
4090
|
+
description?: string | undefined;
|
|
4091
|
+
}>;
|
|
4092
|
+
createdAt: z.ZodDate;
|
|
4093
|
+
updatedAt: z.ZodDate;
|
|
4094
|
+
}, "strip", z.ZodTypeAny, {
|
|
4095
|
+
id: string;
|
|
4096
|
+
persistentId: string;
|
|
4097
|
+
meta: {
|
|
4098
|
+
name: string;
|
|
4099
|
+
description?: string | undefined;
|
|
4100
|
+
};
|
|
4101
|
+
designSystemVersionId: string;
|
|
4102
|
+
createdAt: Date;
|
|
4103
|
+
updatedAt: Date;
|
|
4104
|
+
brandId: string;
|
|
4105
|
+
}, {
|
|
4106
|
+
id: string;
|
|
4107
|
+
persistentId: string;
|
|
4108
|
+
meta: {
|
|
4109
|
+
name: string;
|
|
4110
|
+
description?: string | undefined;
|
|
4111
|
+
};
|
|
4112
|
+
designSystemVersionId: string;
|
|
4113
|
+
createdAt: Date;
|
|
4114
|
+
updatedAt: Date;
|
|
4115
|
+
brandId: string;
|
|
4116
|
+
}>;
|
|
4117
|
+
}, "strip", z.ZodTypeAny, {
|
|
4118
|
+
designSystemComponent: {
|
|
4119
|
+
id: string;
|
|
4120
|
+
persistentId: string;
|
|
4121
|
+
meta: {
|
|
4122
|
+
name: string;
|
|
4123
|
+
description?: string | undefined;
|
|
4124
|
+
};
|
|
4125
|
+
designSystemVersionId: string;
|
|
4126
|
+
createdAt: Date;
|
|
4127
|
+
updatedAt: Date;
|
|
4128
|
+
brandId: string;
|
|
4129
|
+
};
|
|
4130
|
+
}, {
|
|
4131
|
+
designSystemComponent: {
|
|
4132
|
+
id: string;
|
|
4133
|
+
persistentId: string;
|
|
4134
|
+
meta: {
|
|
4135
|
+
name: string;
|
|
4136
|
+
description?: string | undefined;
|
|
4137
|
+
};
|
|
4138
|
+
designSystemVersionId: string;
|
|
4139
|
+
createdAt: Date;
|
|
4140
|
+
updatedAt: Date;
|
|
4141
|
+
brandId: string;
|
|
4142
|
+
};
|
|
4143
|
+
}>;
|
|
4144
|
+
type DTODesignSystemComponentResponse = z.infer<typeof DTODesignSystemComponentResponse>;
|
|
4145
|
+
declare const DTODesignSystemComponentListResponse: z.ZodObject<{
|
|
4146
|
+
designSystemComponents: z.ZodArray<z.ZodObject<{
|
|
4147
|
+
id: z.ZodString;
|
|
4148
|
+
persistentId: z.ZodString;
|
|
4149
|
+
designSystemVersionId: z.ZodString;
|
|
4150
|
+
brandId: z.ZodString;
|
|
4151
|
+
meta: z.ZodObject<{
|
|
4152
|
+
name: z.ZodString;
|
|
4153
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4154
|
+
}, "strip", z.ZodTypeAny, {
|
|
4155
|
+
name: string;
|
|
4156
|
+
description?: string | undefined;
|
|
4157
|
+
}, {
|
|
4158
|
+
name: string;
|
|
4159
|
+
description?: string | undefined;
|
|
4160
|
+
}>;
|
|
4161
|
+
createdAt: z.ZodDate;
|
|
4162
|
+
updatedAt: z.ZodDate;
|
|
4163
|
+
}, "strip", z.ZodTypeAny, {
|
|
4164
|
+
id: string;
|
|
4165
|
+
persistentId: string;
|
|
4166
|
+
meta: {
|
|
4167
|
+
name: string;
|
|
4168
|
+
description?: string | undefined;
|
|
4169
|
+
};
|
|
4170
|
+
designSystemVersionId: string;
|
|
4171
|
+
createdAt: Date;
|
|
4172
|
+
updatedAt: Date;
|
|
4173
|
+
brandId: string;
|
|
4174
|
+
}, {
|
|
4175
|
+
id: string;
|
|
4176
|
+
persistentId: string;
|
|
4177
|
+
meta: {
|
|
4178
|
+
name: string;
|
|
4179
|
+
description?: string | undefined;
|
|
4180
|
+
};
|
|
4181
|
+
designSystemVersionId: string;
|
|
4182
|
+
createdAt: Date;
|
|
4183
|
+
updatedAt: Date;
|
|
4184
|
+
brandId: string;
|
|
4185
|
+
}>, "many">;
|
|
4186
|
+
}, "strip", z.ZodTypeAny, {
|
|
4187
|
+
designSystemComponents: {
|
|
4188
|
+
id: string;
|
|
4189
|
+
persistentId: string;
|
|
4190
|
+
meta: {
|
|
4191
|
+
name: string;
|
|
4192
|
+
description?: string | undefined;
|
|
4193
|
+
};
|
|
4194
|
+
designSystemVersionId: string;
|
|
4195
|
+
createdAt: Date;
|
|
4196
|
+
updatedAt: Date;
|
|
4197
|
+
brandId: string;
|
|
4198
|
+
}[];
|
|
4199
|
+
}, {
|
|
4200
|
+
designSystemComponents: {
|
|
4201
|
+
id: string;
|
|
4202
|
+
persistentId: string;
|
|
4203
|
+
meta: {
|
|
4204
|
+
name: string;
|
|
4205
|
+
description?: string | undefined;
|
|
4206
|
+
};
|
|
4207
|
+
designSystemVersionId: string;
|
|
4208
|
+
createdAt: Date;
|
|
4209
|
+
updatedAt: Date;
|
|
4210
|
+
brandId: string;
|
|
4211
|
+
}[];
|
|
4212
|
+
}>;
|
|
4213
|
+
type DTODesignSystemComponentListResponse = z.infer<typeof DTODesignSystemComponentListResponse>;
|
|
3983
4214
|
declare const DTODesignSystemComponentCreateInput: z.ZodObject<{
|
|
3984
4215
|
brandId: z.ZodString;
|
|
3985
4216
|
persistentId: z.ZodString;
|
|
@@ -9670,14 +9901,14 @@ declare const DTODesignSystemVersionStats: z.ZodObject<{
|
|
|
9670
9901
|
assets: z.ZodNumber;
|
|
9671
9902
|
documentationPages: z.ZodNumber;
|
|
9672
9903
|
}, "strip", z.ZodTypeAny, {
|
|
9904
|
+
designSystemComponents: number;
|
|
9673
9905
|
tokens: number;
|
|
9674
9906
|
assets: number;
|
|
9675
|
-
designSystemComponents: number;
|
|
9676
9907
|
documentationPages: number;
|
|
9677
9908
|
}, {
|
|
9909
|
+
designSystemComponents: number;
|
|
9678
9910
|
tokens: number;
|
|
9679
9911
|
assets: number;
|
|
9680
|
-
designSystemComponents: number;
|
|
9681
9912
|
documentationPages: number;
|
|
9682
9913
|
}>;
|
|
9683
9914
|
type DTODesignSystemVersionStats = z.infer<typeof DTODesignSystemVersionStats>;
|
|
@@ -44173,6 +44404,550 @@ type DTOElementsGetQueryParsed = z.output<typeof DTOElementsGetQuerySchema>;
|
|
|
44173
44404
|
declare const DTOElementsGetTypeFilter: z.ZodEnum<["FigmaNode"]>;
|
|
44174
44405
|
type DTOElementsGetTypeFilter = z.infer<typeof DTOElementsGetTypeFilter>;
|
|
44175
44406
|
|
|
44407
|
+
declare const DTOExporterPropertyDefinitionValue: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>;
|
|
44408
|
+
type DTOExporterPropertyDefinitionValue = z.infer<typeof DTOExporterPropertyDefinitionValue>;
|
|
44409
|
+
declare const DTOExporterPropertyType: z.ZodEnum<["Enum", "Boolean", "String", "Number", "Array", "Object"]>;
|
|
44410
|
+
type DTOExporterPropertyType = z.infer<typeof DTOExporterPropertyType>;
|
|
44411
|
+
declare const DTOExporterPropertyDefinitionEnum: z.ZodObject<z.objectUtil.extendShape<{
|
|
44412
|
+
key: z.ZodString;
|
|
44413
|
+
title: z.ZodString;
|
|
44414
|
+
description: z.ZodString;
|
|
44415
|
+
}, {
|
|
44416
|
+
type: z.ZodLiteral<"Enum">;
|
|
44417
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44418
|
+
default: z.ZodString;
|
|
44419
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44420
|
+
options: string[];
|
|
44421
|
+
type: "Enum";
|
|
44422
|
+
description: string;
|
|
44423
|
+
title: string;
|
|
44424
|
+
key: string;
|
|
44425
|
+
default: string;
|
|
44426
|
+
}, {
|
|
44427
|
+
options: string[];
|
|
44428
|
+
type: "Enum";
|
|
44429
|
+
description: string;
|
|
44430
|
+
title: string;
|
|
44431
|
+
key: string;
|
|
44432
|
+
default: string;
|
|
44433
|
+
}>;
|
|
44434
|
+
type DTOExporterPropertyDefinitionEnum = z.infer<typeof DTOExporterPropertyDefinitionEnum>;
|
|
44435
|
+
declare const DTOExporterPropertyDefinitionBoolean: z.ZodObject<z.objectUtil.extendShape<{
|
|
44436
|
+
key: z.ZodString;
|
|
44437
|
+
title: z.ZodString;
|
|
44438
|
+
description: z.ZodString;
|
|
44439
|
+
}, {
|
|
44440
|
+
type: z.ZodLiteral<"Boolean">;
|
|
44441
|
+
default: z.ZodBoolean;
|
|
44442
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44443
|
+
type: "Boolean";
|
|
44444
|
+
description: string;
|
|
44445
|
+
title: string;
|
|
44446
|
+
key: string;
|
|
44447
|
+
default: boolean;
|
|
44448
|
+
}, {
|
|
44449
|
+
type: "Boolean";
|
|
44450
|
+
description: string;
|
|
44451
|
+
title: string;
|
|
44452
|
+
key: string;
|
|
44453
|
+
default: boolean;
|
|
44454
|
+
}>;
|
|
44455
|
+
type DTOExporterPropertyDefinitionBoolean = z.infer<typeof DTOExporterPropertyDefinitionBoolean>;
|
|
44456
|
+
declare const DTOExporterPropertyDefinitionString: z.ZodObject<z.objectUtil.extendShape<{
|
|
44457
|
+
key: z.ZodString;
|
|
44458
|
+
title: z.ZodString;
|
|
44459
|
+
description: z.ZodString;
|
|
44460
|
+
}, {
|
|
44461
|
+
type: z.ZodLiteral<"String">;
|
|
44462
|
+
default: z.ZodString;
|
|
44463
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44464
|
+
type: "String";
|
|
44465
|
+
description: string;
|
|
44466
|
+
title: string;
|
|
44467
|
+
key: string;
|
|
44468
|
+
default: string;
|
|
44469
|
+
}, {
|
|
44470
|
+
type: "String";
|
|
44471
|
+
description: string;
|
|
44472
|
+
title: string;
|
|
44473
|
+
key: string;
|
|
44474
|
+
default: string;
|
|
44475
|
+
}>;
|
|
44476
|
+
type DTOExporterPropertyDefinitionString = z.infer<typeof DTOExporterPropertyDefinitionString>;
|
|
44477
|
+
declare const DTOExporterPropertyDefinitionNumber: z.ZodObject<z.objectUtil.extendShape<{
|
|
44478
|
+
key: z.ZodString;
|
|
44479
|
+
title: z.ZodString;
|
|
44480
|
+
description: z.ZodString;
|
|
44481
|
+
}, {
|
|
44482
|
+
type: z.ZodLiteral<"Number">;
|
|
44483
|
+
default: z.ZodNumber;
|
|
44484
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44485
|
+
type: "Number";
|
|
44486
|
+
description: string;
|
|
44487
|
+
title: string;
|
|
44488
|
+
key: string;
|
|
44489
|
+
default: number;
|
|
44490
|
+
}, {
|
|
44491
|
+
type: "Number";
|
|
44492
|
+
description: string;
|
|
44493
|
+
title: string;
|
|
44494
|
+
key: string;
|
|
44495
|
+
default: number;
|
|
44496
|
+
}>;
|
|
44497
|
+
type DTOExporterPropertyDefinitionNumber = z.infer<typeof DTOExporterPropertyDefinitionNumber>;
|
|
44498
|
+
declare const DTOExporterPropertyDefinitionArray: z.ZodObject<z.objectUtil.extendShape<{
|
|
44499
|
+
key: z.ZodString;
|
|
44500
|
+
title: z.ZodString;
|
|
44501
|
+
description: z.ZodString;
|
|
44502
|
+
}, {
|
|
44503
|
+
type: z.ZodLiteral<"Array">;
|
|
44504
|
+
default: z.ZodArray<z.ZodString, "many">;
|
|
44505
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44506
|
+
type: "Array";
|
|
44507
|
+
description: string;
|
|
44508
|
+
title: string;
|
|
44509
|
+
key: string;
|
|
44510
|
+
default: string[];
|
|
44511
|
+
}, {
|
|
44512
|
+
type: "Array";
|
|
44513
|
+
description: string;
|
|
44514
|
+
title: string;
|
|
44515
|
+
key: string;
|
|
44516
|
+
default: string[];
|
|
44517
|
+
}>;
|
|
44518
|
+
type DTOExporterPropertyDefinitionArray = z.infer<typeof DTOExporterPropertyDefinitionArray>;
|
|
44519
|
+
declare const DTOExporterPropertyDefinitionObject: z.ZodObject<z.objectUtil.extendShape<{
|
|
44520
|
+
key: z.ZodString;
|
|
44521
|
+
title: z.ZodString;
|
|
44522
|
+
description: z.ZodString;
|
|
44523
|
+
}, {
|
|
44524
|
+
type: z.ZodLiteral<"Object">;
|
|
44525
|
+
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
44526
|
+
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
44527
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44528
|
+
}, "strip", z.ZodTypeAny, {
|
|
44529
|
+
options: string[];
|
|
44530
|
+
}, {
|
|
44531
|
+
options: string[];
|
|
44532
|
+
}>>;
|
|
44533
|
+
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
44534
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44535
|
+
}, "strip", z.ZodTypeAny, {
|
|
44536
|
+
options: string[];
|
|
44537
|
+
}, {
|
|
44538
|
+
options: string[];
|
|
44539
|
+
}>>;
|
|
44540
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44541
|
+
type: "Object";
|
|
44542
|
+
description: string;
|
|
44543
|
+
title: string;
|
|
44544
|
+
key: string;
|
|
44545
|
+
default: Record<string, string>;
|
|
44546
|
+
allowedKeys?: {
|
|
44547
|
+
options: string[];
|
|
44548
|
+
} | undefined;
|
|
44549
|
+
allowedValues?: {
|
|
44550
|
+
options: string[];
|
|
44551
|
+
} | undefined;
|
|
44552
|
+
}, {
|
|
44553
|
+
type: "Object";
|
|
44554
|
+
description: string;
|
|
44555
|
+
title: string;
|
|
44556
|
+
key: string;
|
|
44557
|
+
default: Record<string, string>;
|
|
44558
|
+
allowedKeys?: {
|
|
44559
|
+
options: string[];
|
|
44560
|
+
} | undefined;
|
|
44561
|
+
allowedValues?: {
|
|
44562
|
+
options: string[];
|
|
44563
|
+
} | undefined;
|
|
44564
|
+
}>;
|
|
44565
|
+
type DTOExporterPropertyDefinitionObject = z.infer<typeof DTOExporterPropertyDefinitionObject>;
|
|
44566
|
+
declare const DTOExporterPropertyDefinition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
44567
|
+
key: z.ZodString;
|
|
44568
|
+
title: z.ZodString;
|
|
44569
|
+
description: z.ZodString;
|
|
44570
|
+
}, {
|
|
44571
|
+
type: z.ZodLiteral<"Enum">;
|
|
44572
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44573
|
+
default: z.ZodString;
|
|
44574
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44575
|
+
options: string[];
|
|
44576
|
+
type: "Enum";
|
|
44577
|
+
description: string;
|
|
44578
|
+
title: string;
|
|
44579
|
+
key: string;
|
|
44580
|
+
default: string;
|
|
44581
|
+
}, {
|
|
44582
|
+
options: string[];
|
|
44583
|
+
type: "Enum";
|
|
44584
|
+
description: string;
|
|
44585
|
+
title: string;
|
|
44586
|
+
key: string;
|
|
44587
|
+
default: string;
|
|
44588
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44589
|
+
key: z.ZodString;
|
|
44590
|
+
title: z.ZodString;
|
|
44591
|
+
description: z.ZodString;
|
|
44592
|
+
}, {
|
|
44593
|
+
type: z.ZodLiteral<"Boolean">;
|
|
44594
|
+
default: z.ZodBoolean;
|
|
44595
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44596
|
+
type: "Boolean";
|
|
44597
|
+
description: string;
|
|
44598
|
+
title: string;
|
|
44599
|
+
key: string;
|
|
44600
|
+
default: boolean;
|
|
44601
|
+
}, {
|
|
44602
|
+
type: "Boolean";
|
|
44603
|
+
description: string;
|
|
44604
|
+
title: string;
|
|
44605
|
+
key: string;
|
|
44606
|
+
default: boolean;
|
|
44607
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44608
|
+
key: z.ZodString;
|
|
44609
|
+
title: z.ZodString;
|
|
44610
|
+
description: z.ZodString;
|
|
44611
|
+
}, {
|
|
44612
|
+
type: z.ZodLiteral<"String">;
|
|
44613
|
+
default: z.ZodString;
|
|
44614
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44615
|
+
type: "String";
|
|
44616
|
+
description: string;
|
|
44617
|
+
title: string;
|
|
44618
|
+
key: string;
|
|
44619
|
+
default: string;
|
|
44620
|
+
}, {
|
|
44621
|
+
type: "String";
|
|
44622
|
+
description: string;
|
|
44623
|
+
title: string;
|
|
44624
|
+
key: string;
|
|
44625
|
+
default: string;
|
|
44626
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44627
|
+
key: z.ZodString;
|
|
44628
|
+
title: z.ZodString;
|
|
44629
|
+
description: z.ZodString;
|
|
44630
|
+
}, {
|
|
44631
|
+
type: z.ZodLiteral<"Number">;
|
|
44632
|
+
default: z.ZodNumber;
|
|
44633
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44634
|
+
type: "Number";
|
|
44635
|
+
description: string;
|
|
44636
|
+
title: string;
|
|
44637
|
+
key: string;
|
|
44638
|
+
default: number;
|
|
44639
|
+
}, {
|
|
44640
|
+
type: "Number";
|
|
44641
|
+
description: string;
|
|
44642
|
+
title: string;
|
|
44643
|
+
key: string;
|
|
44644
|
+
default: number;
|
|
44645
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44646
|
+
key: z.ZodString;
|
|
44647
|
+
title: z.ZodString;
|
|
44648
|
+
description: z.ZodString;
|
|
44649
|
+
}, {
|
|
44650
|
+
type: z.ZodLiteral<"Array">;
|
|
44651
|
+
default: z.ZodArray<z.ZodString, "many">;
|
|
44652
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44653
|
+
type: "Array";
|
|
44654
|
+
description: string;
|
|
44655
|
+
title: string;
|
|
44656
|
+
key: string;
|
|
44657
|
+
default: string[];
|
|
44658
|
+
}, {
|
|
44659
|
+
type: "Array";
|
|
44660
|
+
description: string;
|
|
44661
|
+
title: string;
|
|
44662
|
+
key: string;
|
|
44663
|
+
default: string[];
|
|
44664
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44665
|
+
key: z.ZodString;
|
|
44666
|
+
title: z.ZodString;
|
|
44667
|
+
description: z.ZodString;
|
|
44668
|
+
}, {
|
|
44669
|
+
type: z.ZodLiteral<"Object">;
|
|
44670
|
+
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
44671
|
+
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
44672
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44673
|
+
}, "strip", z.ZodTypeAny, {
|
|
44674
|
+
options: string[];
|
|
44675
|
+
}, {
|
|
44676
|
+
options: string[];
|
|
44677
|
+
}>>;
|
|
44678
|
+
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
44679
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44680
|
+
}, "strip", z.ZodTypeAny, {
|
|
44681
|
+
options: string[];
|
|
44682
|
+
}, {
|
|
44683
|
+
options: string[];
|
|
44684
|
+
}>>;
|
|
44685
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44686
|
+
type: "Object";
|
|
44687
|
+
description: string;
|
|
44688
|
+
title: string;
|
|
44689
|
+
key: string;
|
|
44690
|
+
default: Record<string, string>;
|
|
44691
|
+
allowedKeys?: {
|
|
44692
|
+
options: string[];
|
|
44693
|
+
} | undefined;
|
|
44694
|
+
allowedValues?: {
|
|
44695
|
+
options: string[];
|
|
44696
|
+
} | undefined;
|
|
44697
|
+
}, {
|
|
44698
|
+
type: "Object";
|
|
44699
|
+
description: string;
|
|
44700
|
+
title: string;
|
|
44701
|
+
key: string;
|
|
44702
|
+
default: Record<string, string>;
|
|
44703
|
+
allowedKeys?: {
|
|
44704
|
+
options: string[];
|
|
44705
|
+
} | undefined;
|
|
44706
|
+
allowedValues?: {
|
|
44707
|
+
options: string[];
|
|
44708
|
+
} | undefined;
|
|
44709
|
+
}>]>;
|
|
44710
|
+
type DTOExporterPropertyDefinition = z.infer<typeof DTOExporterPropertyDefinition>;
|
|
44711
|
+
declare const DTOExporterPropertyDefinitionsResponse: z.ZodObject<{
|
|
44712
|
+
properties: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
44713
|
+
key: z.ZodString;
|
|
44714
|
+
title: z.ZodString;
|
|
44715
|
+
description: z.ZodString;
|
|
44716
|
+
}, {
|
|
44717
|
+
type: z.ZodLiteral<"Enum">;
|
|
44718
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44719
|
+
default: z.ZodString;
|
|
44720
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44721
|
+
options: string[];
|
|
44722
|
+
type: "Enum";
|
|
44723
|
+
description: string;
|
|
44724
|
+
title: string;
|
|
44725
|
+
key: string;
|
|
44726
|
+
default: string;
|
|
44727
|
+
}, {
|
|
44728
|
+
options: string[];
|
|
44729
|
+
type: "Enum";
|
|
44730
|
+
description: string;
|
|
44731
|
+
title: string;
|
|
44732
|
+
key: string;
|
|
44733
|
+
default: string;
|
|
44734
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44735
|
+
key: z.ZodString;
|
|
44736
|
+
title: z.ZodString;
|
|
44737
|
+
description: z.ZodString;
|
|
44738
|
+
}, {
|
|
44739
|
+
type: z.ZodLiteral<"Boolean">;
|
|
44740
|
+
default: z.ZodBoolean;
|
|
44741
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44742
|
+
type: "Boolean";
|
|
44743
|
+
description: string;
|
|
44744
|
+
title: string;
|
|
44745
|
+
key: string;
|
|
44746
|
+
default: boolean;
|
|
44747
|
+
}, {
|
|
44748
|
+
type: "Boolean";
|
|
44749
|
+
description: string;
|
|
44750
|
+
title: string;
|
|
44751
|
+
key: string;
|
|
44752
|
+
default: boolean;
|
|
44753
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44754
|
+
key: z.ZodString;
|
|
44755
|
+
title: z.ZodString;
|
|
44756
|
+
description: z.ZodString;
|
|
44757
|
+
}, {
|
|
44758
|
+
type: z.ZodLiteral<"String">;
|
|
44759
|
+
default: z.ZodString;
|
|
44760
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44761
|
+
type: "String";
|
|
44762
|
+
description: string;
|
|
44763
|
+
title: string;
|
|
44764
|
+
key: string;
|
|
44765
|
+
default: string;
|
|
44766
|
+
}, {
|
|
44767
|
+
type: "String";
|
|
44768
|
+
description: string;
|
|
44769
|
+
title: string;
|
|
44770
|
+
key: string;
|
|
44771
|
+
default: string;
|
|
44772
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44773
|
+
key: z.ZodString;
|
|
44774
|
+
title: z.ZodString;
|
|
44775
|
+
description: z.ZodString;
|
|
44776
|
+
}, {
|
|
44777
|
+
type: z.ZodLiteral<"Number">;
|
|
44778
|
+
default: z.ZodNumber;
|
|
44779
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44780
|
+
type: "Number";
|
|
44781
|
+
description: string;
|
|
44782
|
+
title: string;
|
|
44783
|
+
key: string;
|
|
44784
|
+
default: number;
|
|
44785
|
+
}, {
|
|
44786
|
+
type: "Number";
|
|
44787
|
+
description: string;
|
|
44788
|
+
title: string;
|
|
44789
|
+
key: string;
|
|
44790
|
+
default: number;
|
|
44791
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44792
|
+
key: z.ZodString;
|
|
44793
|
+
title: z.ZodString;
|
|
44794
|
+
description: z.ZodString;
|
|
44795
|
+
}, {
|
|
44796
|
+
type: z.ZodLiteral<"Array">;
|
|
44797
|
+
default: z.ZodArray<z.ZodString, "many">;
|
|
44798
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44799
|
+
type: "Array";
|
|
44800
|
+
description: string;
|
|
44801
|
+
title: string;
|
|
44802
|
+
key: string;
|
|
44803
|
+
default: string[];
|
|
44804
|
+
}, {
|
|
44805
|
+
type: "Array";
|
|
44806
|
+
description: string;
|
|
44807
|
+
title: string;
|
|
44808
|
+
key: string;
|
|
44809
|
+
default: string[];
|
|
44810
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
44811
|
+
key: z.ZodString;
|
|
44812
|
+
title: z.ZodString;
|
|
44813
|
+
description: z.ZodString;
|
|
44814
|
+
}, {
|
|
44815
|
+
type: z.ZodLiteral<"Object">;
|
|
44816
|
+
default: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
44817
|
+
allowedKeys: z.ZodOptional<z.ZodObject<{
|
|
44818
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44819
|
+
}, "strip", z.ZodTypeAny, {
|
|
44820
|
+
options: string[];
|
|
44821
|
+
}, {
|
|
44822
|
+
options: string[];
|
|
44823
|
+
}>>;
|
|
44824
|
+
allowedValues: z.ZodOptional<z.ZodObject<{
|
|
44825
|
+
options: z.ZodArray<z.ZodString, "many">;
|
|
44826
|
+
}, "strip", z.ZodTypeAny, {
|
|
44827
|
+
options: string[];
|
|
44828
|
+
}, {
|
|
44829
|
+
options: string[];
|
|
44830
|
+
}>>;
|
|
44831
|
+
}>, "strip", z.ZodTypeAny, {
|
|
44832
|
+
type: "Object";
|
|
44833
|
+
description: string;
|
|
44834
|
+
title: string;
|
|
44835
|
+
key: string;
|
|
44836
|
+
default: Record<string, string>;
|
|
44837
|
+
allowedKeys?: {
|
|
44838
|
+
options: string[];
|
|
44839
|
+
} | undefined;
|
|
44840
|
+
allowedValues?: {
|
|
44841
|
+
options: string[];
|
|
44842
|
+
} | undefined;
|
|
44843
|
+
}, {
|
|
44844
|
+
type: "Object";
|
|
44845
|
+
description: string;
|
|
44846
|
+
title: string;
|
|
44847
|
+
key: string;
|
|
44848
|
+
default: Record<string, string>;
|
|
44849
|
+
allowedKeys?: {
|
|
44850
|
+
options: string[];
|
|
44851
|
+
} | undefined;
|
|
44852
|
+
allowedValues?: {
|
|
44853
|
+
options: string[];
|
|
44854
|
+
} | undefined;
|
|
44855
|
+
}>]>, "many">;
|
|
44856
|
+
}, "strip", z.ZodTypeAny, {
|
|
44857
|
+
properties: ({
|
|
44858
|
+
options: string[];
|
|
44859
|
+
type: "Enum";
|
|
44860
|
+
description: string;
|
|
44861
|
+
title: string;
|
|
44862
|
+
key: string;
|
|
44863
|
+
default: string;
|
|
44864
|
+
} | {
|
|
44865
|
+
type: "Boolean";
|
|
44866
|
+
description: string;
|
|
44867
|
+
title: string;
|
|
44868
|
+
key: string;
|
|
44869
|
+
default: boolean;
|
|
44870
|
+
} | {
|
|
44871
|
+
type: "String";
|
|
44872
|
+
description: string;
|
|
44873
|
+
title: string;
|
|
44874
|
+
key: string;
|
|
44875
|
+
default: string;
|
|
44876
|
+
} | {
|
|
44877
|
+
type: "Number";
|
|
44878
|
+
description: string;
|
|
44879
|
+
title: string;
|
|
44880
|
+
key: string;
|
|
44881
|
+
default: number;
|
|
44882
|
+
} | {
|
|
44883
|
+
type: "Array";
|
|
44884
|
+
description: string;
|
|
44885
|
+
title: string;
|
|
44886
|
+
key: string;
|
|
44887
|
+
default: string[];
|
|
44888
|
+
} | {
|
|
44889
|
+
type: "Object";
|
|
44890
|
+
description: string;
|
|
44891
|
+
title: string;
|
|
44892
|
+
key: string;
|
|
44893
|
+
default: Record<string, string>;
|
|
44894
|
+
allowedKeys?: {
|
|
44895
|
+
options: string[];
|
|
44896
|
+
} | undefined;
|
|
44897
|
+
allowedValues?: {
|
|
44898
|
+
options: string[];
|
|
44899
|
+
} | undefined;
|
|
44900
|
+
})[];
|
|
44901
|
+
}, {
|
|
44902
|
+
properties: ({
|
|
44903
|
+
options: string[];
|
|
44904
|
+
type: "Enum";
|
|
44905
|
+
description: string;
|
|
44906
|
+
title: string;
|
|
44907
|
+
key: string;
|
|
44908
|
+
default: string;
|
|
44909
|
+
} | {
|
|
44910
|
+
type: "Boolean";
|
|
44911
|
+
description: string;
|
|
44912
|
+
title: string;
|
|
44913
|
+
key: string;
|
|
44914
|
+
default: boolean;
|
|
44915
|
+
} | {
|
|
44916
|
+
type: "String";
|
|
44917
|
+
description: string;
|
|
44918
|
+
title: string;
|
|
44919
|
+
key: string;
|
|
44920
|
+
default: string;
|
|
44921
|
+
} | {
|
|
44922
|
+
type: "Number";
|
|
44923
|
+
description: string;
|
|
44924
|
+
title: string;
|
|
44925
|
+
key: string;
|
|
44926
|
+
default: number;
|
|
44927
|
+
} | {
|
|
44928
|
+
type: "Array";
|
|
44929
|
+
description: string;
|
|
44930
|
+
title: string;
|
|
44931
|
+
key: string;
|
|
44932
|
+
default: string[];
|
|
44933
|
+
} | {
|
|
44934
|
+
type: "Object";
|
|
44935
|
+
description: string;
|
|
44936
|
+
title: string;
|
|
44937
|
+
key: string;
|
|
44938
|
+
default: Record<string, string>;
|
|
44939
|
+
allowedKeys?: {
|
|
44940
|
+
options: string[];
|
|
44941
|
+
} | undefined;
|
|
44942
|
+
allowedValues?: {
|
|
44943
|
+
options: string[];
|
|
44944
|
+
} | undefined;
|
|
44945
|
+
})[];
|
|
44946
|
+
}>;
|
|
44947
|
+
type DTOExporterPropertyDefinitionsResponse = z.infer<typeof DTOExporterPropertyDefinitionsResponse>;
|
|
44948
|
+
declare const DTOExporterPropertyDefinitionValueMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>, z.ZodString]>, z.ZodArray<z.ZodString, "many">]>, z.ZodRecord<z.ZodString, z.ZodString>]>>;
|
|
44949
|
+
type DTOExporterPropertyDefinitionValueMap = z.infer<typeof DTOExporterPropertyDefinitionValueMap>;
|
|
44950
|
+
|
|
44176
44951
|
declare const DTOExporterListQuery: z.ZodObject<{
|
|
44177
44952
|
limit: z.ZodOptional<z.ZodNumber>;
|
|
44178
44953
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -82908,7 +83683,7 @@ type RequestExecutorErrorType = "ServerError" | "ResponseParsingError";
|
|
|
82908
83683
|
type RequestEexecutorServerErrorCode = SupernovaExceptionType | undefined;
|
|
82909
83684
|
declare class RequestExecutorError extends Error {
|
|
82910
83685
|
readonly type: RequestExecutorErrorType;
|
|
82911
|
-
readonly errorCode: RequestEexecutorServerErrorCode;
|
|
83686
|
+
readonly errorCode: RequestEexecutorServerErrorCode | undefined;
|
|
82912
83687
|
readonly serverErrorType: SupernovaExceptionType | undefined;
|
|
82913
83688
|
static tryParseErrorCode(body: string): any;
|
|
82914
83689
|
static tryParseServerErrorType(body: string): any;
|
|
@@ -83038,33 +83813,6 @@ declare class ExportersEndpoint {
|
|
|
83038
83813
|
}>;
|
|
83039
83814
|
}
|
|
83040
83815
|
|
|
83041
|
-
declare const DTOCreateBrandInput: z.ZodObject<{
|
|
83042
|
-
persistentId: z.ZodString;
|
|
83043
|
-
meta: z.ZodObject<{
|
|
83044
|
-
name: z.ZodString;
|
|
83045
|
-
description: z.ZodString;
|
|
83046
|
-
}, "strip", z.ZodTypeAny, {
|
|
83047
|
-
description: string;
|
|
83048
|
-
name: string;
|
|
83049
|
-
}, {
|
|
83050
|
-
description: string;
|
|
83051
|
-
name: string;
|
|
83052
|
-
}>;
|
|
83053
|
-
}, "strip", z.ZodTypeAny, {
|
|
83054
|
-
persistentId: string;
|
|
83055
|
-
meta: {
|
|
83056
|
-
description: string;
|
|
83057
|
-
name: string;
|
|
83058
|
-
};
|
|
83059
|
-
}, {
|
|
83060
|
-
persistentId: string;
|
|
83061
|
-
meta: {
|
|
83062
|
-
description: string;
|
|
83063
|
-
name: string;
|
|
83064
|
-
};
|
|
83065
|
-
}>;
|
|
83066
|
-
type DTOCreateBrandInput = z.infer<typeof DTOCreateBrandInput>;
|
|
83067
|
-
|
|
83068
83816
|
declare const DTODesignSystemUpdateInput: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
83069
83817
|
id: z.ZodOptional<z.ZodString>;
|
|
83070
83818
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
@@ -86102,7 +86850,7 @@ declare class BrandsEndpoint {
|
|
|
86102
86850
|
designSystemVersionId: string;
|
|
86103
86851
|
}[];
|
|
86104
86852
|
}>;
|
|
86105
|
-
create(designSystemId: string, versionId: string, body:
|
|
86853
|
+
create(designSystemId: string, versionId: string, body: DTOBrandCreatePayload): Promise<{
|
|
86106
86854
|
brand: {
|
|
86107
86855
|
id: string;
|
|
86108
86856
|
persistentId: string;
|
|
@@ -86113,6 +86861,18 @@ declare class BrandsEndpoint {
|
|
|
86113
86861
|
designSystemVersionId: string;
|
|
86114
86862
|
};
|
|
86115
86863
|
}>;
|
|
86864
|
+
update(dsId: string, vId: string, brandId: string, body: DTOBrandUpdatePayload): Promise<{
|
|
86865
|
+
brand: {
|
|
86866
|
+
id: string;
|
|
86867
|
+
persistentId: string;
|
|
86868
|
+
meta: {
|
|
86869
|
+
name: string;
|
|
86870
|
+
description?: string | undefined;
|
|
86871
|
+
};
|
|
86872
|
+
designSystemVersionId: string;
|
|
86873
|
+
};
|
|
86874
|
+
}>;
|
|
86875
|
+
delete(dsId: string, vId: string, brandId: string): Promise<any>;
|
|
86116
86876
|
}
|
|
86117
86877
|
|
|
86118
86878
|
declare class DocumentationEndpoint {
|
|
@@ -86173,7 +86933,34 @@ declare class DocumentationEndpoint {
|
|
|
86173
86933
|
declare class DesignSystemComponentEndpoint {
|
|
86174
86934
|
private readonly requestExecutor;
|
|
86175
86935
|
constructor(requestExecutor: RequestExecutor);
|
|
86176
|
-
|
|
86936
|
+
list(dsId: string, vId: string): Promise<{
|
|
86937
|
+
designSystemComponents: {
|
|
86938
|
+
id: string;
|
|
86939
|
+
persistentId: string;
|
|
86940
|
+
meta: {
|
|
86941
|
+
name: string;
|
|
86942
|
+
description?: string | undefined;
|
|
86943
|
+
};
|
|
86944
|
+
designSystemVersionId: string;
|
|
86945
|
+
createdAt: Date;
|
|
86946
|
+
updatedAt: Date;
|
|
86947
|
+
brandId: string;
|
|
86948
|
+
}[];
|
|
86949
|
+
}>;
|
|
86950
|
+
create(dsId: string, vId: string, body: DTODesignSystemComponentCreateInput): Promise<{
|
|
86951
|
+
designSystemComponent: {
|
|
86952
|
+
id: string;
|
|
86953
|
+
persistentId: string;
|
|
86954
|
+
meta: {
|
|
86955
|
+
name: string;
|
|
86956
|
+
description?: string | undefined;
|
|
86957
|
+
};
|
|
86958
|
+
designSystemVersionId: string;
|
|
86959
|
+
createdAt: Date;
|
|
86960
|
+
updatedAt: Date;
|
|
86961
|
+
brandId: string;
|
|
86962
|
+
};
|
|
86963
|
+
}>;
|
|
86177
86964
|
}
|
|
86178
86965
|
|
|
86179
86966
|
declare class ElementsActionEndpoint {
|
|
@@ -87175,9 +87962,9 @@ declare class VersionStatsEndpoint {
|
|
|
87175
87962
|
private readonly requestExecutor;
|
|
87176
87963
|
constructor(requestExecutor: RequestExecutor);
|
|
87177
87964
|
get(dsId: string, vId: string, query?: DTODesignSystemVersionStatsQuery): Promise<{
|
|
87965
|
+
designSystemComponents: number;
|
|
87178
87966
|
tokens: number;
|
|
87179
87967
|
assets: number;
|
|
87180
|
-
designSystemComponents: number;
|
|
87181
87968
|
documentationPages: number;
|
|
87182
87969
|
}>;
|
|
87183
87970
|
}
|
|
@@ -93388,4 +94175,4 @@ declare class FrontendVersionRoomYDoc {
|
|
|
93388
94175
|
|
|
93389
94176
|
declare function generatePageContentHash(content: DocumentationPageEditorModel, definitions: PageBlockDefinition[], debug?: boolean): string;
|
|
93390
94177
|
|
|
93391
|
-
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateBrandInput, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponentCreateInput, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|
|
94178
|
+
export { BackendVersionRoomYDoc, BlockDefinitionUtils, BlockParsingUtils, BrandsEndpoint, CodegenEndpoint, Collection, DTOAppBootstrapDataQuery, DTOAppBootstrapDataResponse, DTOAssetRenderConfiguration, DTOAuthenticatedUser, DTOAuthenticatedUserProfile, DTOAuthenticatedUserResponse, DTOBffFigmaImportRequestBody, DTOBffImportRequestBody, DTOBffUploadImportRequestBody, DTOBrand, DTOBrandCreatePayload, DTOBrandCreateResponse, DTOBrandGetResponse, DTOBrandUpdatePayload, DTOBrandsListResponse, DTOColorTokenInlineData, DTOCreateDocumentationGroupInput, DTOCreateDocumentationPageInputV2, DTOCreateDocumentationTabInput, DTOCreateVersionInput, DTODataSource, DTODataSourceFigma, DTODataSourceFigmaCloud, DTODataSourceFigmaCreatePayload, DTODataSourceFigmaImportPayload, DTODataSourceFigmaScope, DTODataSourceFigmaVariablesPlugin, DTODataSourceResponse, DTODataSourceTokenStudio, DTODataSourcesListResponse, DTODeleteDocumentationGroupInput, DTODeleteDocumentationPageInputV2, DTODeleteDocumentationTabGroupInput, DTODesignElementsDataDiffResponse, DTODesignSystem, DTODesignSystemComponent, DTODesignSystemComponentCreateInput, DTODesignSystemComponentListResponse, DTODesignSystemComponentResponse, DTODesignSystemContactsResponse, DTODesignSystemCreateInput, DTODesignSystemInvitation, DTODesignSystemMember, DTODesignSystemMemberListResponse, DTODesignSystemMembersUpdatePayload, DTODesignSystemMembersUpdateResponse, DTODesignSystemResponse, DTODesignSystemRole, DTODesignSystemUpdateAccessModeInput, DTODesignSystemUpdateInput, DTODesignSystemVersion, DTODesignSystemVersionCreationResponse, DTODesignSystemVersionGetResponse, DTODesignSystemVersionJobStatusResponse, DTODesignSystemVersionJobsResponse, DTODesignSystemVersionStats, DTODesignSystemVersionStatsQuery, DTODesignSystemVersionsListResponse, DTODesignSystemsListResponse, DTODesignToken, DTODesignTokenCreatePayload, DTODesignTokenGroup, DTODesignTokenGroupCreatePayload, DTODesignTokenGroupListResponse, DTODesignTokenGroupResponse, DTODesignTokenListResponse, DTODesignTokenResponse, DTODiffCountBase, DTODocumentationDraftChangeType, DTODocumentationDraftState, DTODocumentationDraftStateCreated, DTODocumentationDraftStateDeleted, DTODocumentationDraftStateUpdated, DTODocumentationGroupApprovalState, DTODocumentationGroupCreateActionInputV2, DTODocumentationGroupCreateActionOutputV2, DTODocumentationGroupDeleteActionInputV2, DTODocumentationGroupDeleteActionOutputV2, DTODocumentationGroupDuplicateActionInputV2, DTODocumentationGroupDuplicateActionOutputV2, DTODocumentationGroupMoveActionInputV2, DTODocumentationGroupMoveActionOutputV2, DTODocumentationGroupRestoreActionInput, DTODocumentationGroupRestoreActionOutput, DTODocumentationGroupStructureV1, DTODocumentationGroupUpdateActionInputV2, DTODocumentationGroupUpdateActionOutputV2, DTODocumentationGroupV1, DTODocumentationGroupV2, DTODocumentationHierarchyV2, DTODocumentationItemConfigurationV1, DTODocumentationItemConfigurationV2, DTODocumentationItemHeaderV2, DTODocumentationLinkPreviewRequest, DTODocumentationLinkPreviewResponse, DTODocumentationPageAnchor, DTODocumentationPageApprovalState, DTODocumentationPageApprovalStateChangeActionInput, DTODocumentationPageApprovalStateChangeActionOutput, DTODocumentationPageApprovalStateChangeInput, DTODocumentationPageContent, DTODocumentationPageContentGetResponse, DTODocumentationPageCreateActionInputV2, DTODocumentationPageCreateActionOutputV2, DTODocumentationPageDeleteActionInputV2, DTODocumentationPageDeleteActionOutputV2, DTODocumentationPageDuplicateActionInputV2, DTODocumentationPageDuplicateActionOutputV2, DTODocumentationPageMoveActionInputV2, DTODocumentationPageMoveActionOutputV2, DTODocumentationPageRestoreActionInput, DTODocumentationPageRestoreActionOutput, DTODocumentationPageRoomHeaderData, DTODocumentationPageRoomHeaderDataUpdate, DTODocumentationPageSnapshot, DTODocumentationPageUpdateActionInputV2, DTODocumentationPageUpdateActionOutputV2, DTODocumentationPageV2, DTODocumentationPublishMetadata, DTODocumentationPublishTypeQueryParams, DTODocumentationStructure, DTODocumentationStructureGroupItem, DTODocumentationStructureItem, DTODocumentationStructurePageItem, DTODocumentationTabCreateActionInputV2, DTODocumentationTabCreateActionOutputV2, type DTODocumentationTabGroupCreateActionInputV2, DTODocumentationTabGroupDeleteActionInputV2, DTODocumentationTabGroupDeleteActionOutputV2, DTODownloadAssetsRequest, DTODownloadAssetsResponse, DTODuplicateDocumentationGroupInput, DTODuplicateDocumentationPageInputV2, DTOElementActionInput, DTOElementActionOutput, DTOElementPropertyDefinition, DTOElementPropertyDefinitionCreatePayload, DTOElementPropertyDefinitionListResponse, DTOElementPropertyDefinitionOption, DTOElementPropertyDefinitionResponse, DTOElementPropertyDefinitionUpdatePayload, DTOElementPropertyValue, DTOElementPropertyValueListResponse, DTOElementPropertyValueResponse, DTOElementPropertyValueUpsertPaylod, DTOElementView, DTOElementViewBasePropertyColumn, DTOElementViewColumn, DTOElementViewColumnSharedAttributes, DTOElementViewPropertyDefinitionColumn, DTOElementViewThemeColumn, DTOElementViewsListResponse, DTOElementsGetOutput, type DTOElementsGetQueryParsed, type DTOElementsGetQueryRaw, DTOElementsGetQuerySchema, DTOElementsGetTypeFilter, DTOExportJob, DTOExportJobCreatedBy, DTOExportJobDesignSystemPreview, DTOExportJobDesignSystemVersionPreview, DTOExportJobDestinations, DTOExportJobResponse, DTOExportJobResult, DTOExportJobsListFilter, DTOExporter, DTOExporterCreateInput, DTOExporterCreateOutput, DTOExporterGitProviderEnum, DTOExporterListQuery, DTOExporterListResponse, DTOExporterMembership, DTOExporterMembershipRole, DTOExporterPropertyDefinition, DTOExporterPropertyDefinitionArray, DTOExporterPropertyDefinitionBoolean, DTOExporterPropertyDefinitionEnum, DTOExporterPropertyDefinitionNumber, DTOExporterPropertyDefinitionObject, DTOExporterPropertyDefinitionString, DTOExporterPropertyDefinitionValue, DTOExporterPropertyDefinitionValueMap, DTOExporterPropertyDefinitionsResponse, DTOExporterPropertyType, DTOExporterSource, DTOExporterType, DTOExporterUpdateInput, DTOFigmaComponent, DTOFigmaComponentBooleanProperty, DTOFigmaComponentGroup, DTOFigmaComponentGroupListResponse, DTOFigmaComponentInstanceSwapProperty, DTOFigmaComponentListResponse, DTOFigmaComponentProperty, DTOFigmaComponentPropertyMap, DTOFigmaComponentTextProperty, DTOFigmaComponentVariantProperty, DTOFigmaNode, DTOFigmaNodeData, DTOFigmaNodeOrigin, DTOFigmaNodeRenderActionInput, DTOFigmaNodeRenderActionOutput, DTOFigmaNodeRenderFormat, DTOFigmaNodeRenderInput, DTOFrameNodeStructure, DTOFrameNodeStructureListResponse, DTOGetBlockDefinitionsOutput, DTOGetDocumentationPageAnchorsResponse, DTOGitBranch, DTOGitOrganization, DTOGitProject, DTOGitRepository, DTOImportJob, DTOImportJobResponse, DTOIntegration, DTOIntegrationCredentials, DTOIntegrationOAuthGetResponse, DTOIntegrationPostResponse, DTOIntegrationsGetListResponse, DTOLiveblocksAuthRequest, DTOLiveblocksAuthResponse, DTOMoveDocumentationGroupInput, DTOMoveDocumentationPageInputV2, DTONpmRegistryConfig, DTONpmRegistryConfigConstants, DTOObjectMeta, DTOPageBlockColorV2, DTOPageBlockDefinition, DTOPageBlockDefinitionBehavior, DTOPageBlockDefinitionItem, DTOPageBlockDefinitionLayout, DTOPageBlockDefinitionProperty, DTOPageBlockDefinitionVariant, DTOPageBlockItemV2, DTOPagination, DTOPipeline, DTOPipelineCreateBody, DTOPipelineListQuery, DTOPipelineListResponse, DTOPipelineResponse, DTOPipelineTriggerBody, DTOPipelineUpdateBody, DTOPublishDocumentationChanges, DTOPublishDocumentationRequest, DTOPublishDocumentationResponse, DTORenderedAssetFile, DTORestoreDocumentationGroupInput, DTORestoreDocumentationPageInput, DTOTheme, DTOThemeCreatePayload, DTOThemeListResponse, DTOThemeOverride, DTOThemeOverrideCreatePayload, DTOThemeResponse, DTOTokenCollection, DTOTokenCollectionsListReponse, DTOTransferOwnershipPayload, DTOUpdateDocumentationGroupInput, DTOUpdateDocumentationPageInputV2, DTOUpdateUserNotificationSettingsPayload, DTOUpdateVersionInput, DTOUser, DTOUserGetResponse, DTOUserNotificationSettingsResponse, DTOUserOnboarding, DTOUserOnboardingDepartment, DTOUserOnboardingJobLevel, DTOUserProfile, DTOUserProfileUpdate, DTOUserProfileUpdatePayload, DTOUserProfileUpdateResponse, DTOUserSource, DTOUserWorkspaceMembership, DTOUserWorkspaceMembershipsResponse, DTOWorkspace, DTOWorkspaceCreateInput, DTOWorkspaceIntegrationGetGitObjectsInput, DTOWorkspaceIntegrationOauthInput, DTOWorkspaceIntegrationPATInput, DTOWorkspaceInvitationInput, DTOWorkspaceInvitationUpdateResponse, DTOWorkspaceInvitationsListInput, DTOWorkspaceInvitationsResponse, DTOWorkspaceInviteUpdate, DTOWorkspaceMember, DTOWorkspaceMembersListResponse, DTOWorkspaceProfile, DTOWorkspaceResponse, DTOWorkspaceRole, DesignSystemBffEndpoint, DesignSystemComponentEndpoint, DesignSystemContactsEndpoint, DesignSystemMembersEndpoint, DesignSystemSourcesEndpoint, DesignSystemVersionsEndpoint, DesignSystemsEndpoint, DimensionsVariableScopeType, DocumentationEndpoint, DocumentationHierarchySettings, DocumentationPageEditorModel, DocumentationPageV1DTO, ElementPropertyDefinitionsEndpoint, ElementPropertyValuesEndpoint, ElementsActionEndpoint, ElementsEndpoint, ExportersEndpoint, FigmaComponentGroupsEndpoint, FigmaComponentsEndpoint, FigmaFrameStructuresEndpoint, FormattedCollections, FrontendVersionRoomYDoc, ImportJobsEndpoint, type ListItemNode, type ListNode, ListTreeBuilder, NpmRegistryInput, ObjectMeta, OverridesEndpoint, PageBlockEditorModel, PageSectionEditorModel, PipelinesEndpoint, type ProsemirrorBlockItem, type ProsemirrorMark, type ProsemirrorNode, RGB, RGBA, type RequestEexecutorServerErrorCode, RequestExecutor, type RequestExecutorConfig, RequestExecutorError, type RequestExecutorErrorType, type RequestExecutorJSONRequest, ResolvedVariableType, StringVariableScopeType, SupernovaApiClient, ThemesEndpoint, TokenCollectionsEndpoint, TokenGroupsEndpoint, TokensEndpoint, UsersEndpoint, Variable, VariableAlias, VariableMode, VariableValue, VariablesMapping, VersionRoomBaseYDoc, VersionSQSPayload, VersionStatsEndpoint, WorkspaceConfigurationPayload, WorkspaceInvitationsEndpoint, WorkspaceMembersEndpoint, WorkspacesEndpoint, applyPrivacyConfigurationToNestedItems, blockToProsemirrorNode, buildDocPagePublishPaths, calculateElementParentChain, documentationItemConfigurationToDTOV1, documentationItemConfigurationToDTOV2, documentationPageToDTOV2, documentationPagesFixedConfigurationToDTOV1, documentationPagesFixedConfigurationToDTOV2, documentationPagesToDTOV1, documentationPagesToDTOV2, elementGroupsToDocumentationGroupDTOV1, elementGroupsToDocumentationGroupDTOV2, elementGroupsToDocumentationGroupFixedConfigurationDTOV1, elementGroupsToDocumentationGroupFixedConfigurationDTOV2, elementGroupsToDocumentationGroupStructureDTOV1, generateHash, generatePageContentHash, getDtoDefaultItemConfigurationV1, getDtoDefaultItemConfigurationV2, getMockPageBlockDefinitions, gitBranchToDto, gitOrganizationToDto, gitProjectToDto, gitRepositoryToDto, innerEditorProsemirrorSchema, integrationCredentialToDto, integrationToDto, itemConfigurationToYjs, mainEditorProsemirrorSchema, pageToProsemirrorDoc, pageToYDoc, pageToYXmlFragment, pipelineToDto, prosemirrorDocToPage, prosemirrorDocToRichTextPropertyValue, prosemirrorNodeToSection, prosemirrorNodesToBlocks, richTextPropertyValueToProsemirror, serializeAsCustomBlock, serializeQuery, shallowProsemirrorNodeToBlock, validateDesignSystemVersion, validateSsoPayload, yDocToPage, yXmlFragmentToPage, yjsToDocumentationHierarchy, yjsToItemConfiguration };
|