@supernova-studio/model 0.46.9 → 0.46.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 +1849 -1849
- package/dist/index.d.ts +1849 -1849
- package/dist/index.js +41 -39
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +159 -157
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -98037,1506 +98037,7 @@ declare const VersionCreationJob: z.ZodObject<{
|
|
|
98037
98037
|
}>;
|
|
98038
98038
|
type VersionCreationJob = z.infer<typeof VersionCreationJob>;
|
|
98039
98039
|
|
|
98040
|
-
declare const
|
|
98041
|
-
isSingleVersionDocs: z.ZodBoolean;
|
|
98042
|
-
versionSlug: z.ZodString;
|
|
98043
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98044
|
-
}, "strip", z.ZodTypeAny, {
|
|
98045
|
-
environment: "Live" | "Preview";
|
|
98046
|
-
isSingleVersionDocs: boolean;
|
|
98047
|
-
versionSlug: string;
|
|
98048
|
-
}, {
|
|
98049
|
-
environment: "Live" | "Preview";
|
|
98050
|
-
isSingleVersionDocs: boolean;
|
|
98051
|
-
versionSlug: string;
|
|
98052
|
-
}>;
|
|
98053
|
-
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
98054
|
-
declare const ExportJobContext: z.ZodObject<{
|
|
98055
|
-
apiUrl: z.ZodString;
|
|
98056
|
-
accessToken: z.ZodString;
|
|
98057
|
-
designSystemId: z.ZodString;
|
|
98058
|
-
designSystemVersionId: z.ZodString;
|
|
98059
|
-
brandId: z.ZodOptional<z.ZodString>;
|
|
98060
|
-
exporterPackageUrl: z.ZodString;
|
|
98061
|
-
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
98062
|
-
key: z.ZodString;
|
|
98063
|
-
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
98064
|
-
asset: z.ZodOptional<z.ZodObject<{
|
|
98065
|
-
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
98066
|
-
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98067
|
-
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98068
|
-
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98069
|
-
persistentId: string;
|
|
98070
|
-
sourceId: string;
|
|
98071
|
-
sourceFrameId: string;
|
|
98072
|
-
title?: string | undefined;
|
|
98073
|
-
description?: string | undefined;
|
|
98074
|
-
backgroundColor?: {
|
|
98075
|
-
value: string;
|
|
98076
|
-
} | undefined;
|
|
98077
|
-
origin?: {
|
|
98078
|
-
sourceFileName?: string | undefined;
|
|
98079
|
-
title?: string | undefined;
|
|
98080
|
-
previewUrl?: string | undefined;
|
|
98081
|
-
valid?: boolean | undefined;
|
|
98082
|
-
referenceId?: string | undefined;
|
|
98083
|
-
assetId?: string | undefined;
|
|
98084
|
-
assetScale?: number | undefined;
|
|
98085
|
-
width?: number | undefined;
|
|
98086
|
-
height?: number | undefined;
|
|
98087
|
-
} | undefined;
|
|
98088
|
-
}, z.ZodTypeDef, {
|
|
98089
|
-
persistentId: string;
|
|
98090
|
-
sourceId: string;
|
|
98091
|
-
sourceFrameId: string;
|
|
98092
|
-
title?: string | null | undefined;
|
|
98093
|
-
description?: string | null | undefined;
|
|
98094
|
-
backgroundColor?: {
|
|
98095
|
-
value: string;
|
|
98096
|
-
} | null | undefined;
|
|
98097
|
-
origin?: {
|
|
98098
|
-
sourceFileName?: string | null | undefined;
|
|
98099
|
-
title?: string | null | undefined;
|
|
98100
|
-
previewUrl?: string | null | undefined;
|
|
98101
|
-
valid?: boolean | null | undefined;
|
|
98102
|
-
referenceId?: string | null | undefined;
|
|
98103
|
-
assetId?: string | null | undefined;
|
|
98104
|
-
assetScale?: number | null | undefined;
|
|
98105
|
-
width?: number | null | undefined;
|
|
98106
|
-
height?: number | null | undefined;
|
|
98107
|
-
} | null | undefined;
|
|
98108
|
-
}>>>, {
|
|
98109
|
-
persistentId: string;
|
|
98110
|
-
sourceId: string;
|
|
98111
|
-
sourceFrameId: string;
|
|
98112
|
-
title?: string | undefined;
|
|
98113
|
-
description?: string | undefined;
|
|
98114
|
-
backgroundColor?: {
|
|
98115
|
-
value: string;
|
|
98116
|
-
} | undefined;
|
|
98117
|
-
origin?: {
|
|
98118
|
-
sourceFileName?: string | undefined;
|
|
98119
|
-
title?: string | undefined;
|
|
98120
|
-
previewUrl?: string | undefined;
|
|
98121
|
-
valid?: boolean | undefined;
|
|
98122
|
-
referenceId?: string | undefined;
|
|
98123
|
-
assetId?: string | undefined;
|
|
98124
|
-
assetScale?: number | undefined;
|
|
98125
|
-
width?: number | undefined;
|
|
98126
|
-
height?: number | undefined;
|
|
98127
|
-
} | undefined;
|
|
98128
|
-
} | undefined, {
|
|
98129
|
-
persistentId: string;
|
|
98130
|
-
sourceId: string;
|
|
98131
|
-
sourceFrameId: string;
|
|
98132
|
-
title?: string | null | undefined;
|
|
98133
|
-
description?: string | null | undefined;
|
|
98134
|
-
backgroundColor?: {
|
|
98135
|
-
value: string;
|
|
98136
|
-
} | null | undefined;
|
|
98137
|
-
origin?: {
|
|
98138
|
-
sourceFileName?: string | null | undefined;
|
|
98139
|
-
title?: string | null | undefined;
|
|
98140
|
-
previewUrl?: string | null | undefined;
|
|
98141
|
-
valid?: boolean | null | undefined;
|
|
98142
|
-
referenceId?: string | null | undefined;
|
|
98143
|
-
assetId?: string | null | undefined;
|
|
98144
|
-
assetScale?: number | null | undefined;
|
|
98145
|
-
width?: number | null | undefined;
|
|
98146
|
-
height?: number | null | undefined;
|
|
98147
|
-
} | null | undefined;
|
|
98148
|
-
} | null | undefined>;
|
|
98149
|
-
}, "strip", z.ZodTypeAny, {
|
|
98150
|
-
type: "image" | "figmaFrame";
|
|
98151
|
-
id?: string | undefined;
|
|
98152
|
-
url?: string | undefined;
|
|
98153
|
-
figmaFrame?: {
|
|
98154
|
-
persistentId: string;
|
|
98155
|
-
sourceId: string;
|
|
98156
|
-
sourceFrameId: string;
|
|
98157
|
-
title?: string | undefined;
|
|
98158
|
-
description?: string | undefined;
|
|
98159
|
-
backgroundColor?: {
|
|
98160
|
-
value: string;
|
|
98161
|
-
} | undefined;
|
|
98162
|
-
origin?: {
|
|
98163
|
-
sourceFileName?: string | undefined;
|
|
98164
|
-
title?: string | undefined;
|
|
98165
|
-
previewUrl?: string | undefined;
|
|
98166
|
-
valid?: boolean | undefined;
|
|
98167
|
-
referenceId?: string | undefined;
|
|
98168
|
-
assetId?: string | undefined;
|
|
98169
|
-
assetScale?: number | undefined;
|
|
98170
|
-
width?: number | undefined;
|
|
98171
|
-
height?: number | undefined;
|
|
98172
|
-
} | undefined;
|
|
98173
|
-
} | undefined;
|
|
98174
|
-
}, {
|
|
98175
|
-
type: "image" | "figmaFrame";
|
|
98176
|
-
id?: string | null | undefined;
|
|
98177
|
-
url?: string | null | undefined;
|
|
98178
|
-
figmaFrame?: {
|
|
98179
|
-
persistentId: string;
|
|
98180
|
-
sourceId: string;
|
|
98181
|
-
sourceFrameId: string;
|
|
98182
|
-
title?: string | null | undefined;
|
|
98183
|
-
description?: string | null | undefined;
|
|
98184
|
-
backgroundColor?: {
|
|
98185
|
-
value: string;
|
|
98186
|
-
} | null | undefined;
|
|
98187
|
-
origin?: {
|
|
98188
|
-
sourceFileName?: string | null | undefined;
|
|
98189
|
-
title?: string | null | undefined;
|
|
98190
|
-
previewUrl?: string | null | undefined;
|
|
98191
|
-
valid?: boolean | null | undefined;
|
|
98192
|
-
referenceId?: string | null | undefined;
|
|
98193
|
-
assetId?: string | null | undefined;
|
|
98194
|
-
assetScale?: number | null | undefined;
|
|
98195
|
-
width?: number | null | undefined;
|
|
98196
|
-
height?: number | null | undefined;
|
|
98197
|
-
} | null | undefined;
|
|
98198
|
-
} | null | undefined;
|
|
98199
|
-
}>>;
|
|
98200
|
-
assetId: z.ZodOptional<z.ZodString>;
|
|
98201
|
-
assetUrl: z.ZodOptional<z.ZodString>;
|
|
98202
|
-
}, "strip", z.ZodTypeAny, {
|
|
98203
|
-
asset?: {
|
|
98204
|
-
type: "image" | "figmaFrame";
|
|
98205
|
-
id?: string | undefined;
|
|
98206
|
-
url?: string | undefined;
|
|
98207
|
-
figmaFrame?: {
|
|
98208
|
-
persistentId: string;
|
|
98209
|
-
sourceId: string;
|
|
98210
|
-
sourceFrameId: string;
|
|
98211
|
-
title?: string | undefined;
|
|
98212
|
-
description?: string | undefined;
|
|
98213
|
-
backgroundColor?: {
|
|
98214
|
-
value: string;
|
|
98215
|
-
} | undefined;
|
|
98216
|
-
origin?: {
|
|
98217
|
-
sourceFileName?: string | undefined;
|
|
98218
|
-
title?: string | undefined;
|
|
98219
|
-
previewUrl?: string | undefined;
|
|
98220
|
-
valid?: boolean | undefined;
|
|
98221
|
-
referenceId?: string | undefined;
|
|
98222
|
-
assetId?: string | undefined;
|
|
98223
|
-
assetScale?: number | undefined;
|
|
98224
|
-
width?: number | undefined;
|
|
98225
|
-
height?: number | undefined;
|
|
98226
|
-
} | undefined;
|
|
98227
|
-
} | undefined;
|
|
98228
|
-
} | undefined;
|
|
98229
|
-
assetId?: string | undefined;
|
|
98230
|
-
assetUrl?: string | undefined;
|
|
98231
|
-
}, {
|
|
98232
|
-
asset?: {
|
|
98233
|
-
type: "image" | "figmaFrame";
|
|
98234
|
-
id?: string | null | undefined;
|
|
98235
|
-
url?: string | null | undefined;
|
|
98236
|
-
figmaFrame?: {
|
|
98237
|
-
persistentId: string;
|
|
98238
|
-
sourceId: string;
|
|
98239
|
-
sourceFrameId: string;
|
|
98240
|
-
title?: string | null | undefined;
|
|
98241
|
-
description?: string | null | undefined;
|
|
98242
|
-
backgroundColor?: {
|
|
98243
|
-
value: string;
|
|
98244
|
-
} | null | undefined;
|
|
98245
|
-
origin?: {
|
|
98246
|
-
sourceFileName?: string | null | undefined;
|
|
98247
|
-
title?: string | null | undefined;
|
|
98248
|
-
previewUrl?: string | null | undefined;
|
|
98249
|
-
valid?: boolean | null | undefined;
|
|
98250
|
-
referenceId?: string | null | undefined;
|
|
98251
|
-
assetId?: string | null | undefined;
|
|
98252
|
-
assetScale?: number | null | undefined;
|
|
98253
|
-
width?: number | null | undefined;
|
|
98254
|
-
height?: number | null | undefined;
|
|
98255
|
-
} | null | undefined;
|
|
98256
|
-
} | null | undefined;
|
|
98257
|
-
} | undefined;
|
|
98258
|
-
assetId?: string | undefined;
|
|
98259
|
-
assetUrl?: string | undefined;
|
|
98260
|
-
}>, z.ZodObject<{
|
|
98261
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
98262
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
98263
|
-
opacity: {
|
|
98264
|
-
aliasTo?: string | undefined;
|
|
98265
|
-
value?: {
|
|
98266
|
-
unit: "Pixels" | "Raw";
|
|
98267
|
-
measure: number;
|
|
98268
|
-
} | undefined;
|
|
98269
|
-
};
|
|
98270
|
-
color: (string | {
|
|
98271
|
-
aliasTo?: string | undefined;
|
|
98272
|
-
}) & (string | {
|
|
98273
|
-
aliasTo?: string | undefined;
|
|
98274
|
-
} | undefined);
|
|
98275
|
-
}, z.ZodTypeDef, {
|
|
98276
|
-
opacity: {
|
|
98277
|
-
aliasTo?: string | null | undefined;
|
|
98278
|
-
value?: {
|
|
98279
|
-
unit: "Pixels" | "Raw";
|
|
98280
|
-
measure: number;
|
|
98281
|
-
} | null | undefined;
|
|
98282
|
-
};
|
|
98283
|
-
color: (string | {
|
|
98284
|
-
aliasTo?: string | null | undefined;
|
|
98285
|
-
}) & (string | {
|
|
98286
|
-
aliasTo?: string | null | undefined;
|
|
98287
|
-
} | undefined);
|
|
98288
|
-
}>>>, {
|
|
98289
|
-
opacity: {
|
|
98290
|
-
aliasTo?: string | undefined;
|
|
98291
|
-
value?: {
|
|
98292
|
-
unit: "Pixels" | "Raw";
|
|
98293
|
-
measure: number;
|
|
98294
|
-
} | undefined;
|
|
98295
|
-
};
|
|
98296
|
-
color: (string | {
|
|
98297
|
-
aliasTo?: string | undefined;
|
|
98298
|
-
}) & (string | {
|
|
98299
|
-
aliasTo?: string | undefined;
|
|
98300
|
-
} | undefined);
|
|
98301
|
-
} | undefined, {
|
|
98302
|
-
opacity: {
|
|
98303
|
-
aliasTo?: string | null | undefined;
|
|
98304
|
-
value?: {
|
|
98305
|
-
unit: "Pixels" | "Raw";
|
|
98306
|
-
measure: number;
|
|
98307
|
-
} | null | undefined;
|
|
98308
|
-
};
|
|
98309
|
-
color: (string | {
|
|
98310
|
-
aliasTo?: string | null | undefined;
|
|
98311
|
-
}) & (string | {
|
|
98312
|
-
aliasTo?: string | null | undefined;
|
|
98313
|
-
} | undefined);
|
|
98314
|
-
} | null | undefined>;
|
|
98315
|
-
}, "strip", z.ZodTypeAny, {
|
|
98316
|
-
aliasTo?: string | undefined;
|
|
98317
|
-
value?: {
|
|
98318
|
-
opacity: {
|
|
98319
|
-
aliasTo?: string | undefined;
|
|
98320
|
-
value?: {
|
|
98321
|
-
unit: "Pixels" | "Raw";
|
|
98322
|
-
measure: number;
|
|
98323
|
-
} | undefined;
|
|
98324
|
-
};
|
|
98325
|
-
color: (string | {
|
|
98326
|
-
aliasTo?: string | undefined;
|
|
98327
|
-
}) & (string | {
|
|
98328
|
-
aliasTo?: string | undefined;
|
|
98329
|
-
} | undefined);
|
|
98330
|
-
} | undefined;
|
|
98331
|
-
}, {
|
|
98332
|
-
aliasTo?: string | null | undefined;
|
|
98333
|
-
value?: {
|
|
98334
|
-
opacity: {
|
|
98335
|
-
aliasTo?: string | null | undefined;
|
|
98336
|
-
value?: {
|
|
98337
|
-
unit: "Pixels" | "Raw";
|
|
98338
|
-
measure: number;
|
|
98339
|
-
} | null | undefined;
|
|
98340
|
-
};
|
|
98341
|
-
color: (string | {
|
|
98342
|
-
aliasTo?: string | null | undefined;
|
|
98343
|
-
}) & (string | {
|
|
98344
|
-
aliasTo?: string | null | undefined;
|
|
98345
|
-
} | undefined);
|
|
98346
|
-
} | null | undefined;
|
|
98347
|
-
}>, z.ZodObject<{
|
|
98348
|
-
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
98349
|
-
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
98350
|
-
fontSize: {
|
|
98351
|
-
aliasTo?: string | undefined;
|
|
98352
|
-
value?: {
|
|
98353
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98354
|
-
measure: number;
|
|
98355
|
-
} | undefined;
|
|
98356
|
-
};
|
|
98357
|
-
fontFamily: {
|
|
98358
|
-
aliasTo?: string | undefined;
|
|
98359
|
-
value?: string | undefined;
|
|
98360
|
-
};
|
|
98361
|
-
fontWeight: {
|
|
98362
|
-
aliasTo?: string | undefined;
|
|
98363
|
-
value?: string | undefined;
|
|
98364
|
-
};
|
|
98365
|
-
textDecoration: {
|
|
98366
|
-
aliasTo?: string | undefined;
|
|
98367
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98368
|
-
};
|
|
98369
|
-
textCase: {
|
|
98370
|
-
aliasTo?: string | undefined;
|
|
98371
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
98372
|
-
};
|
|
98373
|
-
letterSpacing?: {
|
|
98374
|
-
aliasTo?: string | undefined;
|
|
98375
|
-
value?: {
|
|
98376
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98377
|
-
measure: number;
|
|
98378
|
-
} | undefined;
|
|
98379
|
-
} | undefined;
|
|
98380
|
-
lineHeight?: {
|
|
98381
|
-
aliasTo?: string | undefined;
|
|
98382
|
-
value?: {
|
|
98383
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98384
|
-
measure: number;
|
|
98385
|
-
} | undefined;
|
|
98386
|
-
} | undefined;
|
|
98387
|
-
paragraphIndent?: {
|
|
98388
|
-
aliasTo?: string | undefined;
|
|
98389
|
-
value?: {
|
|
98390
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98391
|
-
measure: number;
|
|
98392
|
-
} | undefined;
|
|
98393
|
-
} | undefined;
|
|
98394
|
-
paragraphSpacing?: {
|
|
98395
|
-
aliasTo?: string | undefined;
|
|
98396
|
-
value?: {
|
|
98397
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98398
|
-
measure: number;
|
|
98399
|
-
} | undefined;
|
|
98400
|
-
} | undefined;
|
|
98401
|
-
}, z.ZodTypeDef, {
|
|
98402
|
-
fontSize: {
|
|
98403
|
-
aliasTo?: string | null | undefined;
|
|
98404
|
-
value?: {
|
|
98405
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98406
|
-
measure: number;
|
|
98407
|
-
} | null | undefined;
|
|
98408
|
-
};
|
|
98409
|
-
fontFamily: {
|
|
98410
|
-
aliasTo?: string | null | undefined;
|
|
98411
|
-
value?: string | null | undefined;
|
|
98412
|
-
};
|
|
98413
|
-
fontWeight: {
|
|
98414
|
-
aliasTo?: string | null | undefined;
|
|
98415
|
-
value?: string | null | undefined;
|
|
98416
|
-
};
|
|
98417
|
-
textDecoration: {
|
|
98418
|
-
aliasTo?: string | null | undefined;
|
|
98419
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
98420
|
-
};
|
|
98421
|
-
textCase: {
|
|
98422
|
-
aliasTo?: string | null | undefined;
|
|
98423
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
98424
|
-
};
|
|
98425
|
-
letterSpacing?: {
|
|
98426
|
-
aliasTo?: string | null | undefined;
|
|
98427
|
-
value?: {
|
|
98428
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98429
|
-
measure: number;
|
|
98430
|
-
} | null | undefined;
|
|
98431
|
-
} | undefined;
|
|
98432
|
-
lineHeight?: {
|
|
98433
|
-
aliasTo?: string | null | undefined;
|
|
98434
|
-
value?: {
|
|
98435
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98436
|
-
measure: number;
|
|
98437
|
-
} | null | undefined;
|
|
98438
|
-
} | undefined;
|
|
98439
|
-
paragraphIndent?: {
|
|
98440
|
-
aliasTo?: string | null | undefined;
|
|
98441
|
-
value?: {
|
|
98442
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98443
|
-
measure: number;
|
|
98444
|
-
} | null | undefined;
|
|
98445
|
-
} | undefined;
|
|
98446
|
-
paragraphSpacing?: {
|
|
98447
|
-
aliasTo?: string | null | undefined;
|
|
98448
|
-
value?: {
|
|
98449
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98450
|
-
measure: number;
|
|
98451
|
-
} | null | undefined;
|
|
98452
|
-
} | undefined;
|
|
98453
|
-
}>>>, {
|
|
98454
|
-
fontSize: {
|
|
98455
|
-
aliasTo?: string | undefined;
|
|
98456
|
-
value?: {
|
|
98457
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98458
|
-
measure: number;
|
|
98459
|
-
} | undefined;
|
|
98460
|
-
};
|
|
98461
|
-
fontFamily: {
|
|
98462
|
-
aliasTo?: string | undefined;
|
|
98463
|
-
value?: string | undefined;
|
|
98464
|
-
};
|
|
98465
|
-
fontWeight: {
|
|
98466
|
-
aliasTo?: string | undefined;
|
|
98467
|
-
value?: string | undefined;
|
|
98468
|
-
};
|
|
98469
|
-
textDecoration: {
|
|
98470
|
-
aliasTo?: string | undefined;
|
|
98471
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98472
|
-
};
|
|
98473
|
-
textCase: {
|
|
98474
|
-
aliasTo?: string | undefined;
|
|
98475
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
98476
|
-
};
|
|
98477
|
-
letterSpacing?: {
|
|
98478
|
-
aliasTo?: string | undefined;
|
|
98479
|
-
value?: {
|
|
98480
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98481
|
-
measure: number;
|
|
98482
|
-
} | undefined;
|
|
98483
|
-
} | undefined;
|
|
98484
|
-
lineHeight?: {
|
|
98485
|
-
aliasTo?: string | undefined;
|
|
98486
|
-
value?: {
|
|
98487
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98488
|
-
measure: number;
|
|
98489
|
-
} | undefined;
|
|
98490
|
-
} | undefined;
|
|
98491
|
-
paragraphIndent?: {
|
|
98492
|
-
aliasTo?: string | undefined;
|
|
98493
|
-
value?: {
|
|
98494
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98495
|
-
measure: number;
|
|
98496
|
-
} | undefined;
|
|
98497
|
-
} | undefined;
|
|
98498
|
-
paragraphSpacing?: {
|
|
98499
|
-
aliasTo?: string | undefined;
|
|
98500
|
-
value?: {
|
|
98501
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98502
|
-
measure: number;
|
|
98503
|
-
} | undefined;
|
|
98504
|
-
} | undefined;
|
|
98505
|
-
} | undefined, {
|
|
98506
|
-
fontSize: {
|
|
98507
|
-
aliasTo?: string | null | undefined;
|
|
98508
|
-
value?: {
|
|
98509
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98510
|
-
measure: number;
|
|
98511
|
-
} | null | undefined;
|
|
98512
|
-
};
|
|
98513
|
-
fontFamily: {
|
|
98514
|
-
aliasTo?: string | null | undefined;
|
|
98515
|
-
value?: string | null | undefined;
|
|
98516
|
-
};
|
|
98517
|
-
fontWeight: {
|
|
98518
|
-
aliasTo?: string | null | undefined;
|
|
98519
|
-
value?: string | null | undefined;
|
|
98520
|
-
};
|
|
98521
|
-
textDecoration: {
|
|
98522
|
-
aliasTo?: string | null | undefined;
|
|
98523
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
98524
|
-
};
|
|
98525
|
-
textCase: {
|
|
98526
|
-
aliasTo?: string | null | undefined;
|
|
98527
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
98528
|
-
};
|
|
98529
|
-
letterSpacing?: {
|
|
98530
|
-
aliasTo?: string | null | undefined;
|
|
98531
|
-
value?: {
|
|
98532
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98533
|
-
measure: number;
|
|
98534
|
-
} | null | undefined;
|
|
98535
|
-
} | undefined;
|
|
98536
|
-
lineHeight?: {
|
|
98537
|
-
aliasTo?: string | null | undefined;
|
|
98538
|
-
value?: {
|
|
98539
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98540
|
-
measure: number;
|
|
98541
|
-
} | null | undefined;
|
|
98542
|
-
} | undefined;
|
|
98543
|
-
paragraphIndent?: {
|
|
98544
|
-
aliasTo?: string | null | undefined;
|
|
98545
|
-
value?: {
|
|
98546
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98547
|
-
measure: number;
|
|
98548
|
-
} | null | undefined;
|
|
98549
|
-
} | undefined;
|
|
98550
|
-
paragraphSpacing?: {
|
|
98551
|
-
aliasTo?: string | null | undefined;
|
|
98552
|
-
value?: {
|
|
98553
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98554
|
-
measure: number;
|
|
98555
|
-
} | null | undefined;
|
|
98556
|
-
} | undefined;
|
|
98557
|
-
} | null | undefined>;
|
|
98558
|
-
}, "strip", z.ZodTypeAny, {
|
|
98559
|
-
aliasTo?: string | undefined;
|
|
98560
|
-
value?: {
|
|
98561
|
-
fontSize: {
|
|
98562
|
-
aliasTo?: string | undefined;
|
|
98563
|
-
value?: {
|
|
98564
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98565
|
-
measure: number;
|
|
98566
|
-
} | undefined;
|
|
98567
|
-
};
|
|
98568
|
-
fontFamily: {
|
|
98569
|
-
aliasTo?: string | undefined;
|
|
98570
|
-
value?: string | undefined;
|
|
98571
|
-
};
|
|
98572
|
-
fontWeight: {
|
|
98573
|
-
aliasTo?: string | undefined;
|
|
98574
|
-
value?: string | undefined;
|
|
98575
|
-
};
|
|
98576
|
-
textDecoration: {
|
|
98577
|
-
aliasTo?: string | undefined;
|
|
98578
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98579
|
-
};
|
|
98580
|
-
textCase: {
|
|
98581
|
-
aliasTo?: string | undefined;
|
|
98582
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
98583
|
-
};
|
|
98584
|
-
letterSpacing?: {
|
|
98585
|
-
aliasTo?: string | undefined;
|
|
98586
|
-
value?: {
|
|
98587
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98588
|
-
measure: number;
|
|
98589
|
-
} | undefined;
|
|
98590
|
-
} | undefined;
|
|
98591
|
-
lineHeight?: {
|
|
98592
|
-
aliasTo?: string | undefined;
|
|
98593
|
-
value?: {
|
|
98594
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98595
|
-
measure: number;
|
|
98596
|
-
} | undefined;
|
|
98597
|
-
} | undefined;
|
|
98598
|
-
paragraphIndent?: {
|
|
98599
|
-
aliasTo?: string | undefined;
|
|
98600
|
-
value?: {
|
|
98601
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98602
|
-
measure: number;
|
|
98603
|
-
} | undefined;
|
|
98604
|
-
} | undefined;
|
|
98605
|
-
paragraphSpacing?: {
|
|
98606
|
-
aliasTo?: string | undefined;
|
|
98607
|
-
value?: {
|
|
98608
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98609
|
-
measure: number;
|
|
98610
|
-
} | undefined;
|
|
98611
|
-
} | undefined;
|
|
98612
|
-
} | undefined;
|
|
98613
|
-
}, {
|
|
98614
|
-
aliasTo?: string | null | undefined;
|
|
98615
|
-
value?: {
|
|
98616
|
-
fontSize: {
|
|
98617
|
-
aliasTo?: string | null | undefined;
|
|
98618
|
-
value?: {
|
|
98619
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98620
|
-
measure: number;
|
|
98621
|
-
} | null | undefined;
|
|
98622
|
-
};
|
|
98623
|
-
fontFamily: {
|
|
98624
|
-
aliasTo?: string | null | undefined;
|
|
98625
|
-
value?: string | null | undefined;
|
|
98626
|
-
};
|
|
98627
|
-
fontWeight: {
|
|
98628
|
-
aliasTo?: string | null | undefined;
|
|
98629
|
-
value?: string | null | undefined;
|
|
98630
|
-
};
|
|
98631
|
-
textDecoration: {
|
|
98632
|
-
aliasTo?: string | null | undefined;
|
|
98633
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
98634
|
-
};
|
|
98635
|
-
textCase: {
|
|
98636
|
-
aliasTo?: string | null | undefined;
|
|
98637
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
98638
|
-
};
|
|
98639
|
-
letterSpacing?: {
|
|
98640
|
-
aliasTo?: string | null | undefined;
|
|
98641
|
-
value?: {
|
|
98642
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98643
|
-
measure: number;
|
|
98644
|
-
} | null | undefined;
|
|
98645
|
-
} | undefined;
|
|
98646
|
-
lineHeight?: {
|
|
98647
|
-
aliasTo?: string | null | undefined;
|
|
98648
|
-
value?: {
|
|
98649
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98650
|
-
measure: number;
|
|
98651
|
-
} | null | undefined;
|
|
98652
|
-
} | undefined;
|
|
98653
|
-
paragraphIndent?: {
|
|
98654
|
-
aliasTo?: string | null | undefined;
|
|
98655
|
-
value?: {
|
|
98656
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98657
|
-
measure: number;
|
|
98658
|
-
} | null | undefined;
|
|
98659
|
-
} | undefined;
|
|
98660
|
-
paragraphSpacing?: {
|
|
98661
|
-
aliasTo?: string | null | undefined;
|
|
98662
|
-
value?: {
|
|
98663
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98664
|
-
measure: number;
|
|
98665
|
-
} | null | undefined;
|
|
98666
|
-
} | undefined;
|
|
98667
|
-
} | null | undefined;
|
|
98668
|
-
}>]>;
|
|
98669
|
-
}, "strip", z.ZodTypeAny, {
|
|
98670
|
-
value: (string | number | boolean | {
|
|
98671
|
-
aliasTo?: string | undefined;
|
|
98672
|
-
value?: {
|
|
98673
|
-
opacity: {
|
|
98674
|
-
aliasTo?: string | undefined;
|
|
98675
|
-
value?: {
|
|
98676
|
-
unit: "Pixels" | "Raw";
|
|
98677
|
-
measure: number;
|
|
98678
|
-
} | undefined;
|
|
98679
|
-
};
|
|
98680
|
-
color: (string | {
|
|
98681
|
-
aliasTo?: string | undefined;
|
|
98682
|
-
}) & (string | {
|
|
98683
|
-
aliasTo?: string | undefined;
|
|
98684
|
-
} | undefined);
|
|
98685
|
-
} | undefined;
|
|
98686
|
-
} | {
|
|
98687
|
-
aliasTo?: string | undefined;
|
|
98688
|
-
value?: {
|
|
98689
|
-
fontSize: {
|
|
98690
|
-
aliasTo?: string | undefined;
|
|
98691
|
-
value?: {
|
|
98692
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98693
|
-
measure: number;
|
|
98694
|
-
} | undefined;
|
|
98695
|
-
};
|
|
98696
|
-
fontFamily: {
|
|
98697
|
-
aliasTo?: string | undefined;
|
|
98698
|
-
value?: string | undefined;
|
|
98699
|
-
};
|
|
98700
|
-
fontWeight: {
|
|
98701
|
-
aliasTo?: string | undefined;
|
|
98702
|
-
value?: string | undefined;
|
|
98703
|
-
};
|
|
98704
|
-
textDecoration: {
|
|
98705
|
-
aliasTo?: string | undefined;
|
|
98706
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98707
|
-
};
|
|
98708
|
-
textCase: {
|
|
98709
|
-
aliasTo?: string | undefined;
|
|
98710
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
98711
|
-
};
|
|
98712
|
-
letterSpacing?: {
|
|
98713
|
-
aliasTo?: string | undefined;
|
|
98714
|
-
value?: {
|
|
98715
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98716
|
-
measure: number;
|
|
98717
|
-
} | undefined;
|
|
98718
|
-
} | undefined;
|
|
98719
|
-
lineHeight?: {
|
|
98720
|
-
aliasTo?: string | undefined;
|
|
98721
|
-
value?: {
|
|
98722
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98723
|
-
measure: number;
|
|
98724
|
-
} | undefined;
|
|
98725
|
-
} | undefined;
|
|
98726
|
-
paragraphIndent?: {
|
|
98727
|
-
aliasTo?: string | undefined;
|
|
98728
|
-
value?: {
|
|
98729
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98730
|
-
measure: number;
|
|
98731
|
-
} | undefined;
|
|
98732
|
-
} | undefined;
|
|
98733
|
-
paragraphSpacing?: {
|
|
98734
|
-
aliasTo?: string | undefined;
|
|
98735
|
-
value?: {
|
|
98736
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98737
|
-
measure: number;
|
|
98738
|
-
} | undefined;
|
|
98739
|
-
} | undefined;
|
|
98740
|
-
} | undefined;
|
|
98741
|
-
} | {
|
|
98742
|
-
asset?: {
|
|
98743
|
-
type: "image" | "figmaFrame";
|
|
98744
|
-
id?: string | undefined;
|
|
98745
|
-
url?: string | undefined;
|
|
98746
|
-
figmaFrame?: {
|
|
98747
|
-
persistentId: string;
|
|
98748
|
-
sourceId: string;
|
|
98749
|
-
sourceFrameId: string;
|
|
98750
|
-
title?: string | undefined;
|
|
98751
|
-
description?: string | undefined;
|
|
98752
|
-
backgroundColor?: {
|
|
98753
|
-
value: string;
|
|
98754
|
-
} | undefined;
|
|
98755
|
-
origin?: {
|
|
98756
|
-
sourceFileName?: string | undefined;
|
|
98757
|
-
title?: string | undefined;
|
|
98758
|
-
previewUrl?: string | undefined;
|
|
98759
|
-
valid?: boolean | undefined;
|
|
98760
|
-
referenceId?: string | undefined;
|
|
98761
|
-
assetId?: string | undefined;
|
|
98762
|
-
assetScale?: number | undefined;
|
|
98763
|
-
width?: number | undefined;
|
|
98764
|
-
height?: number | undefined;
|
|
98765
|
-
} | undefined;
|
|
98766
|
-
} | undefined;
|
|
98767
|
-
} | undefined;
|
|
98768
|
-
assetId?: string | undefined;
|
|
98769
|
-
assetUrl?: string | undefined;
|
|
98770
|
-
}) & (string | number | boolean | {
|
|
98771
|
-
aliasTo?: string | undefined;
|
|
98772
|
-
value?: {
|
|
98773
|
-
opacity: {
|
|
98774
|
-
aliasTo?: string | undefined;
|
|
98775
|
-
value?: {
|
|
98776
|
-
unit: "Pixels" | "Raw";
|
|
98777
|
-
measure: number;
|
|
98778
|
-
} | undefined;
|
|
98779
|
-
};
|
|
98780
|
-
color: (string | {
|
|
98781
|
-
aliasTo?: string | undefined;
|
|
98782
|
-
}) & (string | {
|
|
98783
|
-
aliasTo?: string | undefined;
|
|
98784
|
-
} | undefined);
|
|
98785
|
-
} | undefined;
|
|
98786
|
-
} | {
|
|
98787
|
-
aliasTo?: string | undefined;
|
|
98788
|
-
value?: {
|
|
98789
|
-
fontSize: {
|
|
98790
|
-
aliasTo?: string | undefined;
|
|
98791
|
-
value?: {
|
|
98792
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98793
|
-
measure: number;
|
|
98794
|
-
} | undefined;
|
|
98795
|
-
};
|
|
98796
|
-
fontFamily: {
|
|
98797
|
-
aliasTo?: string | undefined;
|
|
98798
|
-
value?: string | undefined;
|
|
98799
|
-
};
|
|
98800
|
-
fontWeight: {
|
|
98801
|
-
aliasTo?: string | undefined;
|
|
98802
|
-
value?: string | undefined;
|
|
98803
|
-
};
|
|
98804
|
-
textDecoration: {
|
|
98805
|
-
aliasTo?: string | undefined;
|
|
98806
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
98807
|
-
};
|
|
98808
|
-
textCase: {
|
|
98809
|
-
aliasTo?: string | undefined;
|
|
98810
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
98811
|
-
};
|
|
98812
|
-
letterSpacing?: {
|
|
98813
|
-
aliasTo?: string | undefined;
|
|
98814
|
-
value?: {
|
|
98815
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98816
|
-
measure: number;
|
|
98817
|
-
} | undefined;
|
|
98818
|
-
} | undefined;
|
|
98819
|
-
lineHeight?: {
|
|
98820
|
-
aliasTo?: string | undefined;
|
|
98821
|
-
value?: {
|
|
98822
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98823
|
-
measure: number;
|
|
98824
|
-
} | undefined;
|
|
98825
|
-
} | undefined;
|
|
98826
|
-
paragraphIndent?: {
|
|
98827
|
-
aliasTo?: string | undefined;
|
|
98828
|
-
value?: {
|
|
98829
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98830
|
-
measure: number;
|
|
98831
|
-
} | undefined;
|
|
98832
|
-
} | undefined;
|
|
98833
|
-
paragraphSpacing?: {
|
|
98834
|
-
aliasTo?: string | undefined;
|
|
98835
|
-
value?: {
|
|
98836
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98837
|
-
measure: number;
|
|
98838
|
-
} | undefined;
|
|
98839
|
-
} | undefined;
|
|
98840
|
-
} | undefined;
|
|
98841
|
-
} | {
|
|
98842
|
-
asset?: {
|
|
98843
|
-
type: "image" | "figmaFrame";
|
|
98844
|
-
id?: string | undefined;
|
|
98845
|
-
url?: string | undefined;
|
|
98846
|
-
figmaFrame?: {
|
|
98847
|
-
persistentId: string;
|
|
98848
|
-
sourceId: string;
|
|
98849
|
-
sourceFrameId: string;
|
|
98850
|
-
title?: string | undefined;
|
|
98851
|
-
description?: string | undefined;
|
|
98852
|
-
backgroundColor?: {
|
|
98853
|
-
value: string;
|
|
98854
|
-
} | undefined;
|
|
98855
|
-
origin?: {
|
|
98856
|
-
sourceFileName?: string | undefined;
|
|
98857
|
-
title?: string | undefined;
|
|
98858
|
-
previewUrl?: string | undefined;
|
|
98859
|
-
valid?: boolean | undefined;
|
|
98860
|
-
referenceId?: string | undefined;
|
|
98861
|
-
assetId?: string | undefined;
|
|
98862
|
-
assetScale?: number | undefined;
|
|
98863
|
-
width?: number | undefined;
|
|
98864
|
-
height?: number | undefined;
|
|
98865
|
-
} | undefined;
|
|
98866
|
-
} | undefined;
|
|
98867
|
-
} | undefined;
|
|
98868
|
-
assetId?: string | undefined;
|
|
98869
|
-
assetUrl?: string | undefined;
|
|
98870
|
-
} | undefined);
|
|
98871
|
-
key: string;
|
|
98872
|
-
}, {
|
|
98873
|
-
value: (string | number | boolean | {
|
|
98874
|
-
aliasTo?: string | null | undefined;
|
|
98875
|
-
value?: {
|
|
98876
|
-
opacity: {
|
|
98877
|
-
aliasTo?: string | null | undefined;
|
|
98878
|
-
value?: {
|
|
98879
|
-
unit: "Pixels" | "Raw";
|
|
98880
|
-
measure: number;
|
|
98881
|
-
} | null | undefined;
|
|
98882
|
-
};
|
|
98883
|
-
color: (string | {
|
|
98884
|
-
aliasTo?: string | null | undefined;
|
|
98885
|
-
}) & (string | {
|
|
98886
|
-
aliasTo?: string | null | undefined;
|
|
98887
|
-
} | undefined);
|
|
98888
|
-
} | null | undefined;
|
|
98889
|
-
} | {
|
|
98890
|
-
aliasTo?: string | null | undefined;
|
|
98891
|
-
value?: {
|
|
98892
|
-
fontSize: {
|
|
98893
|
-
aliasTo?: string | null | undefined;
|
|
98894
|
-
value?: {
|
|
98895
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98896
|
-
measure: number;
|
|
98897
|
-
} | null | undefined;
|
|
98898
|
-
};
|
|
98899
|
-
fontFamily: {
|
|
98900
|
-
aliasTo?: string | null | undefined;
|
|
98901
|
-
value?: string | null | undefined;
|
|
98902
|
-
};
|
|
98903
|
-
fontWeight: {
|
|
98904
|
-
aliasTo?: string | null | undefined;
|
|
98905
|
-
value?: string | null | undefined;
|
|
98906
|
-
};
|
|
98907
|
-
textDecoration: {
|
|
98908
|
-
aliasTo?: string | null | undefined;
|
|
98909
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
98910
|
-
};
|
|
98911
|
-
textCase: {
|
|
98912
|
-
aliasTo?: string | null | undefined;
|
|
98913
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
98914
|
-
};
|
|
98915
|
-
letterSpacing?: {
|
|
98916
|
-
aliasTo?: string | null | undefined;
|
|
98917
|
-
value?: {
|
|
98918
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98919
|
-
measure: number;
|
|
98920
|
-
} | null | undefined;
|
|
98921
|
-
} | undefined;
|
|
98922
|
-
lineHeight?: {
|
|
98923
|
-
aliasTo?: string | null | undefined;
|
|
98924
|
-
value?: {
|
|
98925
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
98926
|
-
measure: number;
|
|
98927
|
-
} | null | undefined;
|
|
98928
|
-
} | undefined;
|
|
98929
|
-
paragraphIndent?: {
|
|
98930
|
-
aliasTo?: string | null | undefined;
|
|
98931
|
-
value?: {
|
|
98932
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98933
|
-
measure: number;
|
|
98934
|
-
} | null | undefined;
|
|
98935
|
-
} | undefined;
|
|
98936
|
-
paragraphSpacing?: {
|
|
98937
|
-
aliasTo?: string | null | undefined;
|
|
98938
|
-
value?: {
|
|
98939
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98940
|
-
measure: number;
|
|
98941
|
-
} | null | undefined;
|
|
98942
|
-
} | undefined;
|
|
98943
|
-
} | null | undefined;
|
|
98944
|
-
} | {
|
|
98945
|
-
asset?: {
|
|
98946
|
-
type: "image" | "figmaFrame";
|
|
98947
|
-
id?: string | null | undefined;
|
|
98948
|
-
url?: string | null | undefined;
|
|
98949
|
-
figmaFrame?: {
|
|
98950
|
-
persistentId: string;
|
|
98951
|
-
sourceId: string;
|
|
98952
|
-
sourceFrameId: string;
|
|
98953
|
-
title?: string | null | undefined;
|
|
98954
|
-
description?: string | null | undefined;
|
|
98955
|
-
backgroundColor?: {
|
|
98956
|
-
value: string;
|
|
98957
|
-
} | null | undefined;
|
|
98958
|
-
origin?: {
|
|
98959
|
-
sourceFileName?: string | null | undefined;
|
|
98960
|
-
title?: string | null | undefined;
|
|
98961
|
-
previewUrl?: string | null | undefined;
|
|
98962
|
-
valid?: boolean | null | undefined;
|
|
98963
|
-
referenceId?: string | null | undefined;
|
|
98964
|
-
assetId?: string | null | undefined;
|
|
98965
|
-
assetScale?: number | null | undefined;
|
|
98966
|
-
width?: number | null | undefined;
|
|
98967
|
-
height?: number | null | undefined;
|
|
98968
|
-
} | null | undefined;
|
|
98969
|
-
} | null | undefined;
|
|
98970
|
-
} | undefined;
|
|
98971
|
-
assetId?: string | undefined;
|
|
98972
|
-
assetUrl?: string | undefined;
|
|
98973
|
-
}) & (string | number | boolean | {
|
|
98974
|
-
aliasTo?: string | null | undefined;
|
|
98975
|
-
value?: {
|
|
98976
|
-
opacity: {
|
|
98977
|
-
aliasTo?: string | null | undefined;
|
|
98978
|
-
value?: {
|
|
98979
|
-
unit: "Pixels" | "Raw";
|
|
98980
|
-
measure: number;
|
|
98981
|
-
} | null | undefined;
|
|
98982
|
-
};
|
|
98983
|
-
color: (string | {
|
|
98984
|
-
aliasTo?: string | null | undefined;
|
|
98985
|
-
}) & (string | {
|
|
98986
|
-
aliasTo?: string | null | undefined;
|
|
98987
|
-
} | undefined);
|
|
98988
|
-
} | null | undefined;
|
|
98989
|
-
} | {
|
|
98990
|
-
aliasTo?: string | null | undefined;
|
|
98991
|
-
value?: {
|
|
98992
|
-
fontSize: {
|
|
98993
|
-
aliasTo?: string | null | undefined;
|
|
98994
|
-
value?: {
|
|
98995
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
98996
|
-
measure: number;
|
|
98997
|
-
} | null | undefined;
|
|
98998
|
-
};
|
|
98999
|
-
fontFamily: {
|
|
99000
|
-
aliasTo?: string | null | undefined;
|
|
99001
|
-
value?: string | null | undefined;
|
|
99002
|
-
};
|
|
99003
|
-
fontWeight: {
|
|
99004
|
-
aliasTo?: string | null | undefined;
|
|
99005
|
-
value?: string | null | undefined;
|
|
99006
|
-
};
|
|
99007
|
-
textDecoration: {
|
|
99008
|
-
aliasTo?: string | null | undefined;
|
|
99009
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99010
|
-
};
|
|
99011
|
-
textCase: {
|
|
99012
|
-
aliasTo?: string | null | undefined;
|
|
99013
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99014
|
-
};
|
|
99015
|
-
letterSpacing?: {
|
|
99016
|
-
aliasTo?: string | null | undefined;
|
|
99017
|
-
value?: {
|
|
99018
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99019
|
-
measure: number;
|
|
99020
|
-
} | null | undefined;
|
|
99021
|
-
} | undefined;
|
|
99022
|
-
lineHeight?: {
|
|
99023
|
-
aliasTo?: string | null | undefined;
|
|
99024
|
-
value?: {
|
|
99025
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99026
|
-
measure: number;
|
|
99027
|
-
} | null | undefined;
|
|
99028
|
-
} | undefined;
|
|
99029
|
-
paragraphIndent?: {
|
|
99030
|
-
aliasTo?: string | null | undefined;
|
|
99031
|
-
value?: {
|
|
99032
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99033
|
-
measure: number;
|
|
99034
|
-
} | null | undefined;
|
|
99035
|
-
} | undefined;
|
|
99036
|
-
paragraphSpacing?: {
|
|
99037
|
-
aliasTo?: string | null | undefined;
|
|
99038
|
-
value?: {
|
|
99039
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99040
|
-
measure: number;
|
|
99041
|
-
} | null | undefined;
|
|
99042
|
-
} | undefined;
|
|
99043
|
-
} | null | undefined;
|
|
99044
|
-
} | {
|
|
99045
|
-
asset?: {
|
|
99046
|
-
type: "image" | "figmaFrame";
|
|
99047
|
-
id?: string | null | undefined;
|
|
99048
|
-
url?: string | null | undefined;
|
|
99049
|
-
figmaFrame?: {
|
|
99050
|
-
persistentId: string;
|
|
99051
|
-
sourceId: string;
|
|
99052
|
-
sourceFrameId: string;
|
|
99053
|
-
title?: string | null | undefined;
|
|
99054
|
-
description?: string | null | undefined;
|
|
99055
|
-
backgroundColor?: {
|
|
99056
|
-
value: string;
|
|
99057
|
-
} | null | undefined;
|
|
99058
|
-
origin?: {
|
|
99059
|
-
sourceFileName?: string | null | undefined;
|
|
99060
|
-
title?: string | null | undefined;
|
|
99061
|
-
previewUrl?: string | null | undefined;
|
|
99062
|
-
valid?: boolean | null | undefined;
|
|
99063
|
-
referenceId?: string | null | undefined;
|
|
99064
|
-
assetId?: string | null | undefined;
|
|
99065
|
-
assetScale?: number | null | undefined;
|
|
99066
|
-
width?: number | null | undefined;
|
|
99067
|
-
height?: number | null | undefined;
|
|
99068
|
-
} | null | undefined;
|
|
99069
|
-
} | null | undefined;
|
|
99070
|
-
} | undefined;
|
|
99071
|
-
assetId?: string | undefined;
|
|
99072
|
-
assetUrl?: string | undefined;
|
|
99073
|
-
} | undefined);
|
|
99074
|
-
key: string;
|
|
99075
|
-
}>, "many">;
|
|
99076
|
-
documentation: z.ZodOptional<z.ZodObject<{
|
|
99077
|
-
isSingleVersionDocs: z.ZodBoolean;
|
|
99078
|
-
versionSlug: z.ZodString;
|
|
99079
|
-
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99080
|
-
}, "strip", z.ZodTypeAny, {
|
|
99081
|
-
environment: "Live" | "Preview";
|
|
99082
|
-
isSingleVersionDocs: boolean;
|
|
99083
|
-
versionSlug: string;
|
|
99084
|
-
}, {
|
|
99085
|
-
environment: "Live" | "Preview";
|
|
99086
|
-
isSingleVersionDocs: boolean;
|
|
99087
|
-
versionSlug: string;
|
|
99088
|
-
}>>;
|
|
99089
|
-
}, "strip", z.ZodTypeAny, {
|
|
99090
|
-
designSystemId: string;
|
|
99091
|
-
accessToken: string;
|
|
99092
|
-
designSystemVersionId: string;
|
|
99093
|
-
apiUrl: string;
|
|
99094
|
-
exporterPackageUrl: string;
|
|
99095
|
-
exporterPropertyValues: {
|
|
99096
|
-
value: (string | number | boolean | {
|
|
99097
|
-
aliasTo?: string | undefined;
|
|
99098
|
-
value?: {
|
|
99099
|
-
opacity: {
|
|
99100
|
-
aliasTo?: string | undefined;
|
|
99101
|
-
value?: {
|
|
99102
|
-
unit: "Pixels" | "Raw";
|
|
99103
|
-
measure: number;
|
|
99104
|
-
} | undefined;
|
|
99105
|
-
};
|
|
99106
|
-
color: (string | {
|
|
99107
|
-
aliasTo?: string | undefined;
|
|
99108
|
-
}) & (string | {
|
|
99109
|
-
aliasTo?: string | undefined;
|
|
99110
|
-
} | undefined);
|
|
99111
|
-
} | undefined;
|
|
99112
|
-
} | {
|
|
99113
|
-
aliasTo?: string | undefined;
|
|
99114
|
-
value?: {
|
|
99115
|
-
fontSize: {
|
|
99116
|
-
aliasTo?: string | undefined;
|
|
99117
|
-
value?: {
|
|
99118
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99119
|
-
measure: number;
|
|
99120
|
-
} | undefined;
|
|
99121
|
-
};
|
|
99122
|
-
fontFamily: {
|
|
99123
|
-
aliasTo?: string | undefined;
|
|
99124
|
-
value?: string | undefined;
|
|
99125
|
-
};
|
|
99126
|
-
fontWeight: {
|
|
99127
|
-
aliasTo?: string | undefined;
|
|
99128
|
-
value?: string | undefined;
|
|
99129
|
-
};
|
|
99130
|
-
textDecoration: {
|
|
99131
|
-
aliasTo?: string | undefined;
|
|
99132
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99133
|
-
};
|
|
99134
|
-
textCase: {
|
|
99135
|
-
aliasTo?: string | undefined;
|
|
99136
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99137
|
-
};
|
|
99138
|
-
letterSpacing?: {
|
|
99139
|
-
aliasTo?: string | undefined;
|
|
99140
|
-
value?: {
|
|
99141
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99142
|
-
measure: number;
|
|
99143
|
-
} | undefined;
|
|
99144
|
-
} | undefined;
|
|
99145
|
-
lineHeight?: {
|
|
99146
|
-
aliasTo?: string | undefined;
|
|
99147
|
-
value?: {
|
|
99148
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99149
|
-
measure: number;
|
|
99150
|
-
} | undefined;
|
|
99151
|
-
} | undefined;
|
|
99152
|
-
paragraphIndent?: {
|
|
99153
|
-
aliasTo?: string | undefined;
|
|
99154
|
-
value?: {
|
|
99155
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99156
|
-
measure: number;
|
|
99157
|
-
} | undefined;
|
|
99158
|
-
} | undefined;
|
|
99159
|
-
paragraphSpacing?: {
|
|
99160
|
-
aliasTo?: string | undefined;
|
|
99161
|
-
value?: {
|
|
99162
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99163
|
-
measure: number;
|
|
99164
|
-
} | undefined;
|
|
99165
|
-
} | undefined;
|
|
99166
|
-
} | undefined;
|
|
99167
|
-
} | {
|
|
99168
|
-
asset?: {
|
|
99169
|
-
type: "image" | "figmaFrame";
|
|
99170
|
-
id?: string | undefined;
|
|
99171
|
-
url?: string | undefined;
|
|
99172
|
-
figmaFrame?: {
|
|
99173
|
-
persistentId: string;
|
|
99174
|
-
sourceId: string;
|
|
99175
|
-
sourceFrameId: string;
|
|
99176
|
-
title?: string | undefined;
|
|
99177
|
-
description?: string | undefined;
|
|
99178
|
-
backgroundColor?: {
|
|
99179
|
-
value: string;
|
|
99180
|
-
} | undefined;
|
|
99181
|
-
origin?: {
|
|
99182
|
-
sourceFileName?: string | undefined;
|
|
99183
|
-
title?: string | undefined;
|
|
99184
|
-
previewUrl?: string | undefined;
|
|
99185
|
-
valid?: boolean | undefined;
|
|
99186
|
-
referenceId?: string | undefined;
|
|
99187
|
-
assetId?: string | undefined;
|
|
99188
|
-
assetScale?: number | undefined;
|
|
99189
|
-
width?: number | undefined;
|
|
99190
|
-
height?: number | undefined;
|
|
99191
|
-
} | undefined;
|
|
99192
|
-
} | undefined;
|
|
99193
|
-
} | undefined;
|
|
99194
|
-
assetId?: string | undefined;
|
|
99195
|
-
assetUrl?: string | undefined;
|
|
99196
|
-
}) & (string | number | boolean | {
|
|
99197
|
-
aliasTo?: string | undefined;
|
|
99198
|
-
value?: {
|
|
99199
|
-
opacity: {
|
|
99200
|
-
aliasTo?: string | undefined;
|
|
99201
|
-
value?: {
|
|
99202
|
-
unit: "Pixels" | "Raw";
|
|
99203
|
-
measure: number;
|
|
99204
|
-
} | undefined;
|
|
99205
|
-
};
|
|
99206
|
-
color: (string | {
|
|
99207
|
-
aliasTo?: string | undefined;
|
|
99208
|
-
}) & (string | {
|
|
99209
|
-
aliasTo?: string | undefined;
|
|
99210
|
-
} | undefined);
|
|
99211
|
-
} | undefined;
|
|
99212
|
-
} | {
|
|
99213
|
-
aliasTo?: string | undefined;
|
|
99214
|
-
value?: {
|
|
99215
|
-
fontSize: {
|
|
99216
|
-
aliasTo?: string | undefined;
|
|
99217
|
-
value?: {
|
|
99218
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99219
|
-
measure: number;
|
|
99220
|
-
} | undefined;
|
|
99221
|
-
};
|
|
99222
|
-
fontFamily: {
|
|
99223
|
-
aliasTo?: string | undefined;
|
|
99224
|
-
value?: string | undefined;
|
|
99225
|
-
};
|
|
99226
|
-
fontWeight: {
|
|
99227
|
-
aliasTo?: string | undefined;
|
|
99228
|
-
value?: string | undefined;
|
|
99229
|
-
};
|
|
99230
|
-
textDecoration: {
|
|
99231
|
-
aliasTo?: string | undefined;
|
|
99232
|
-
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99233
|
-
};
|
|
99234
|
-
textCase: {
|
|
99235
|
-
aliasTo?: string | undefined;
|
|
99236
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99237
|
-
};
|
|
99238
|
-
letterSpacing?: {
|
|
99239
|
-
aliasTo?: string | undefined;
|
|
99240
|
-
value?: {
|
|
99241
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99242
|
-
measure: number;
|
|
99243
|
-
} | undefined;
|
|
99244
|
-
} | undefined;
|
|
99245
|
-
lineHeight?: {
|
|
99246
|
-
aliasTo?: string | undefined;
|
|
99247
|
-
value?: {
|
|
99248
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99249
|
-
measure: number;
|
|
99250
|
-
} | undefined;
|
|
99251
|
-
} | undefined;
|
|
99252
|
-
paragraphIndent?: {
|
|
99253
|
-
aliasTo?: string | undefined;
|
|
99254
|
-
value?: {
|
|
99255
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99256
|
-
measure: number;
|
|
99257
|
-
} | undefined;
|
|
99258
|
-
} | undefined;
|
|
99259
|
-
paragraphSpacing?: {
|
|
99260
|
-
aliasTo?: string | undefined;
|
|
99261
|
-
value?: {
|
|
99262
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99263
|
-
measure: number;
|
|
99264
|
-
} | undefined;
|
|
99265
|
-
} | undefined;
|
|
99266
|
-
} | undefined;
|
|
99267
|
-
} | {
|
|
99268
|
-
asset?: {
|
|
99269
|
-
type: "image" | "figmaFrame";
|
|
99270
|
-
id?: string | undefined;
|
|
99271
|
-
url?: string | undefined;
|
|
99272
|
-
figmaFrame?: {
|
|
99273
|
-
persistentId: string;
|
|
99274
|
-
sourceId: string;
|
|
99275
|
-
sourceFrameId: string;
|
|
99276
|
-
title?: string | undefined;
|
|
99277
|
-
description?: string | undefined;
|
|
99278
|
-
backgroundColor?: {
|
|
99279
|
-
value: string;
|
|
99280
|
-
} | undefined;
|
|
99281
|
-
origin?: {
|
|
99282
|
-
sourceFileName?: string | undefined;
|
|
99283
|
-
title?: string | undefined;
|
|
99284
|
-
previewUrl?: string | undefined;
|
|
99285
|
-
valid?: boolean | undefined;
|
|
99286
|
-
referenceId?: string | undefined;
|
|
99287
|
-
assetId?: string | undefined;
|
|
99288
|
-
assetScale?: number | undefined;
|
|
99289
|
-
width?: number | undefined;
|
|
99290
|
-
height?: number | undefined;
|
|
99291
|
-
} | undefined;
|
|
99292
|
-
} | undefined;
|
|
99293
|
-
} | undefined;
|
|
99294
|
-
assetId?: string | undefined;
|
|
99295
|
-
assetUrl?: string | undefined;
|
|
99296
|
-
} | undefined);
|
|
99297
|
-
key: string;
|
|
99298
|
-
}[];
|
|
99299
|
-
brandId?: string | undefined;
|
|
99300
|
-
documentation?: {
|
|
99301
|
-
environment: "Live" | "Preview";
|
|
99302
|
-
isSingleVersionDocs: boolean;
|
|
99303
|
-
versionSlug: string;
|
|
99304
|
-
} | undefined;
|
|
99305
|
-
}, {
|
|
99306
|
-
designSystemId: string;
|
|
99307
|
-
accessToken: string;
|
|
99308
|
-
designSystemVersionId: string;
|
|
99309
|
-
apiUrl: string;
|
|
99310
|
-
exporterPackageUrl: string;
|
|
99311
|
-
exporterPropertyValues: {
|
|
99312
|
-
value: (string | number | boolean | {
|
|
99313
|
-
aliasTo?: string | null | undefined;
|
|
99314
|
-
value?: {
|
|
99315
|
-
opacity: {
|
|
99316
|
-
aliasTo?: string | null | undefined;
|
|
99317
|
-
value?: {
|
|
99318
|
-
unit: "Pixels" | "Raw";
|
|
99319
|
-
measure: number;
|
|
99320
|
-
} | null | undefined;
|
|
99321
|
-
};
|
|
99322
|
-
color: (string | {
|
|
99323
|
-
aliasTo?: string | null | undefined;
|
|
99324
|
-
}) & (string | {
|
|
99325
|
-
aliasTo?: string | null | undefined;
|
|
99326
|
-
} | undefined);
|
|
99327
|
-
} | null | undefined;
|
|
99328
|
-
} | {
|
|
99329
|
-
aliasTo?: string | null | undefined;
|
|
99330
|
-
value?: {
|
|
99331
|
-
fontSize: {
|
|
99332
|
-
aliasTo?: string | null | undefined;
|
|
99333
|
-
value?: {
|
|
99334
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99335
|
-
measure: number;
|
|
99336
|
-
} | null | undefined;
|
|
99337
|
-
};
|
|
99338
|
-
fontFamily: {
|
|
99339
|
-
aliasTo?: string | null | undefined;
|
|
99340
|
-
value?: string | null | undefined;
|
|
99341
|
-
};
|
|
99342
|
-
fontWeight: {
|
|
99343
|
-
aliasTo?: string | null | undefined;
|
|
99344
|
-
value?: string | null | undefined;
|
|
99345
|
-
};
|
|
99346
|
-
textDecoration: {
|
|
99347
|
-
aliasTo?: string | null | undefined;
|
|
99348
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99349
|
-
};
|
|
99350
|
-
textCase: {
|
|
99351
|
-
aliasTo?: string | null | undefined;
|
|
99352
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99353
|
-
};
|
|
99354
|
-
letterSpacing?: {
|
|
99355
|
-
aliasTo?: string | null | undefined;
|
|
99356
|
-
value?: {
|
|
99357
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99358
|
-
measure: number;
|
|
99359
|
-
} | null | undefined;
|
|
99360
|
-
} | undefined;
|
|
99361
|
-
lineHeight?: {
|
|
99362
|
-
aliasTo?: string | null | undefined;
|
|
99363
|
-
value?: {
|
|
99364
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99365
|
-
measure: number;
|
|
99366
|
-
} | null | undefined;
|
|
99367
|
-
} | undefined;
|
|
99368
|
-
paragraphIndent?: {
|
|
99369
|
-
aliasTo?: string | null | undefined;
|
|
99370
|
-
value?: {
|
|
99371
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99372
|
-
measure: number;
|
|
99373
|
-
} | null | undefined;
|
|
99374
|
-
} | undefined;
|
|
99375
|
-
paragraphSpacing?: {
|
|
99376
|
-
aliasTo?: string | null | undefined;
|
|
99377
|
-
value?: {
|
|
99378
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99379
|
-
measure: number;
|
|
99380
|
-
} | null | undefined;
|
|
99381
|
-
} | undefined;
|
|
99382
|
-
} | null | undefined;
|
|
99383
|
-
} | {
|
|
99384
|
-
asset?: {
|
|
99385
|
-
type: "image" | "figmaFrame";
|
|
99386
|
-
id?: string | null | undefined;
|
|
99387
|
-
url?: string | null | undefined;
|
|
99388
|
-
figmaFrame?: {
|
|
99389
|
-
persistentId: string;
|
|
99390
|
-
sourceId: string;
|
|
99391
|
-
sourceFrameId: string;
|
|
99392
|
-
title?: string | null | undefined;
|
|
99393
|
-
description?: string | null | undefined;
|
|
99394
|
-
backgroundColor?: {
|
|
99395
|
-
value: string;
|
|
99396
|
-
} | null | undefined;
|
|
99397
|
-
origin?: {
|
|
99398
|
-
sourceFileName?: string | null | undefined;
|
|
99399
|
-
title?: string | null | undefined;
|
|
99400
|
-
previewUrl?: string | null | undefined;
|
|
99401
|
-
valid?: boolean | null | undefined;
|
|
99402
|
-
referenceId?: string | null | undefined;
|
|
99403
|
-
assetId?: string | null | undefined;
|
|
99404
|
-
assetScale?: number | null | undefined;
|
|
99405
|
-
width?: number | null | undefined;
|
|
99406
|
-
height?: number | null | undefined;
|
|
99407
|
-
} | null | undefined;
|
|
99408
|
-
} | null | undefined;
|
|
99409
|
-
} | undefined;
|
|
99410
|
-
assetId?: string | undefined;
|
|
99411
|
-
assetUrl?: string | undefined;
|
|
99412
|
-
}) & (string | number | boolean | {
|
|
99413
|
-
aliasTo?: string | null | undefined;
|
|
99414
|
-
value?: {
|
|
99415
|
-
opacity: {
|
|
99416
|
-
aliasTo?: string | null | undefined;
|
|
99417
|
-
value?: {
|
|
99418
|
-
unit: "Pixels" | "Raw";
|
|
99419
|
-
measure: number;
|
|
99420
|
-
} | null | undefined;
|
|
99421
|
-
};
|
|
99422
|
-
color: (string | {
|
|
99423
|
-
aliasTo?: string | null | undefined;
|
|
99424
|
-
}) & (string | {
|
|
99425
|
-
aliasTo?: string | null | undefined;
|
|
99426
|
-
} | undefined);
|
|
99427
|
-
} | null | undefined;
|
|
99428
|
-
} | {
|
|
99429
|
-
aliasTo?: string | null | undefined;
|
|
99430
|
-
value?: {
|
|
99431
|
-
fontSize: {
|
|
99432
|
-
aliasTo?: string | null | undefined;
|
|
99433
|
-
value?: {
|
|
99434
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99435
|
-
measure: number;
|
|
99436
|
-
} | null | undefined;
|
|
99437
|
-
};
|
|
99438
|
-
fontFamily: {
|
|
99439
|
-
aliasTo?: string | null | undefined;
|
|
99440
|
-
value?: string | null | undefined;
|
|
99441
|
-
};
|
|
99442
|
-
fontWeight: {
|
|
99443
|
-
aliasTo?: string | null | undefined;
|
|
99444
|
-
value?: string | null | undefined;
|
|
99445
|
-
};
|
|
99446
|
-
textDecoration: {
|
|
99447
|
-
aliasTo?: string | null | undefined;
|
|
99448
|
-
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99449
|
-
};
|
|
99450
|
-
textCase: {
|
|
99451
|
-
aliasTo?: string | null | undefined;
|
|
99452
|
-
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99453
|
-
};
|
|
99454
|
-
letterSpacing?: {
|
|
99455
|
-
aliasTo?: string | null | undefined;
|
|
99456
|
-
value?: {
|
|
99457
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99458
|
-
measure: number;
|
|
99459
|
-
} | null | undefined;
|
|
99460
|
-
} | undefined;
|
|
99461
|
-
lineHeight?: {
|
|
99462
|
-
aliasTo?: string | null | undefined;
|
|
99463
|
-
value?: {
|
|
99464
|
-
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99465
|
-
measure: number;
|
|
99466
|
-
} | null | undefined;
|
|
99467
|
-
} | undefined;
|
|
99468
|
-
paragraphIndent?: {
|
|
99469
|
-
aliasTo?: string | null | undefined;
|
|
99470
|
-
value?: {
|
|
99471
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99472
|
-
measure: number;
|
|
99473
|
-
} | null | undefined;
|
|
99474
|
-
} | undefined;
|
|
99475
|
-
paragraphSpacing?: {
|
|
99476
|
-
aliasTo?: string | null | undefined;
|
|
99477
|
-
value?: {
|
|
99478
|
-
unit: "Pixels" | "Percent" | "Rem";
|
|
99479
|
-
measure: number;
|
|
99480
|
-
} | null | undefined;
|
|
99481
|
-
} | undefined;
|
|
99482
|
-
} | null | undefined;
|
|
99483
|
-
} | {
|
|
99484
|
-
asset?: {
|
|
99485
|
-
type: "image" | "figmaFrame";
|
|
99486
|
-
id?: string | null | undefined;
|
|
99487
|
-
url?: string | null | undefined;
|
|
99488
|
-
figmaFrame?: {
|
|
99489
|
-
persistentId: string;
|
|
99490
|
-
sourceId: string;
|
|
99491
|
-
sourceFrameId: string;
|
|
99492
|
-
title?: string | null | undefined;
|
|
99493
|
-
description?: string | null | undefined;
|
|
99494
|
-
backgroundColor?: {
|
|
99495
|
-
value: string;
|
|
99496
|
-
} | null | undefined;
|
|
99497
|
-
origin?: {
|
|
99498
|
-
sourceFileName?: string | null | undefined;
|
|
99499
|
-
title?: string | null | undefined;
|
|
99500
|
-
previewUrl?: string | null | undefined;
|
|
99501
|
-
valid?: boolean | null | undefined;
|
|
99502
|
-
referenceId?: string | null | undefined;
|
|
99503
|
-
assetId?: string | null | undefined;
|
|
99504
|
-
assetScale?: number | null | undefined;
|
|
99505
|
-
width?: number | null | undefined;
|
|
99506
|
-
height?: number | null | undefined;
|
|
99507
|
-
} | null | undefined;
|
|
99508
|
-
} | null | undefined;
|
|
99509
|
-
} | undefined;
|
|
99510
|
-
assetId?: string | undefined;
|
|
99511
|
-
assetUrl?: string | undefined;
|
|
99512
|
-
} | undefined);
|
|
99513
|
-
key: string;
|
|
99514
|
-
}[];
|
|
99515
|
-
brandId?: string | undefined;
|
|
99516
|
-
documentation?: {
|
|
99517
|
-
environment: "Live" | "Preview";
|
|
99518
|
-
isSingleVersionDocs: boolean;
|
|
99519
|
-
versionSlug: string;
|
|
99520
|
-
} | undefined;
|
|
99521
|
-
}>;
|
|
99522
|
-
type ExportJobContext = z.infer<typeof ExportJobContext>;
|
|
99523
|
-
|
|
99524
|
-
declare const ExporterFunctionPayload: z.ZodObject<{
|
|
99525
|
-
exportJobId: z.ZodString;
|
|
99526
|
-
exportContextId: z.ZodString;
|
|
99527
|
-
designSystemId: z.ZodString;
|
|
99528
|
-
}, "strip", z.ZodTypeAny, {
|
|
99529
|
-
designSystemId: string;
|
|
99530
|
-
exportJobId: string;
|
|
99531
|
-
exportContextId: string;
|
|
99532
|
-
}, {
|
|
99533
|
-
designSystemId: string;
|
|
99534
|
-
exportJobId: string;
|
|
99535
|
-
exportContextId: string;
|
|
99536
|
-
}>;
|
|
99537
|
-
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
99538
|
-
|
|
99539
|
-
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
98040
|
+
declare const ExporterDestinationDocs: z.ZodObject<{
|
|
99540
98041
|
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
99541
98042
|
}, "strip", z.ZodTypeAny, {
|
|
99542
98043
|
environment: "Live" | "Preview";
|
|
@@ -99939,374 +98440,1873 @@ declare const ExportJob: z.ZodObject<{
|
|
|
99939
98440
|
}, "strip", z.ZodTypeAny, {
|
|
99940
98441
|
environment: "Live" | "Preview";
|
|
99941
98442
|
}, {
|
|
99942
|
-
environment: "Live" | "Preview";
|
|
98443
|
+
environment: "Live" | "Preview";
|
|
98444
|
+
}>>;
|
|
98445
|
+
destinationS3: z.ZodOptional<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>;
|
|
98446
|
+
destinationGithub: z.ZodOptional<z.ZodObject<{
|
|
98447
|
+
connectionId: z.ZodString;
|
|
98448
|
+
branch: z.ZodString;
|
|
98449
|
+
relativePath: z.ZodString;
|
|
98450
|
+
}, "strip", z.ZodTypeAny, {
|
|
98451
|
+
connectionId: string;
|
|
98452
|
+
branch: string;
|
|
98453
|
+
relativePath: string;
|
|
98454
|
+
}, {
|
|
98455
|
+
connectionId: string;
|
|
98456
|
+
branch: string;
|
|
98457
|
+
relativePath: string;
|
|
98458
|
+
}>>;
|
|
98459
|
+
destinationAzure: z.ZodOptional<z.ZodObject<{
|
|
98460
|
+
connectionId: z.ZodString;
|
|
98461
|
+
organizationId: z.ZodString;
|
|
98462
|
+
projectId: z.ZodString;
|
|
98463
|
+
repositoryId: z.ZodString;
|
|
98464
|
+
branch: z.ZodString;
|
|
98465
|
+
relativePath: z.ZodString;
|
|
98466
|
+
}, "strip", z.ZodTypeAny, {
|
|
98467
|
+
connectionId: string;
|
|
98468
|
+
branch: string;
|
|
98469
|
+
relativePath: string;
|
|
98470
|
+
organizationId: string;
|
|
98471
|
+
projectId: string;
|
|
98472
|
+
repositoryId: string;
|
|
98473
|
+
}, {
|
|
98474
|
+
connectionId: string;
|
|
98475
|
+
branch: string;
|
|
98476
|
+
relativePath: string;
|
|
98477
|
+
organizationId: string;
|
|
98478
|
+
projectId: string;
|
|
98479
|
+
repositoryId: string;
|
|
98480
|
+
}>>;
|
|
98481
|
+
destinationGitlab: z.ZodOptional<z.ZodObject<{
|
|
98482
|
+
connectionId: z.ZodString;
|
|
98483
|
+
projectId: z.ZodString;
|
|
98484
|
+
branch: z.ZodString;
|
|
98485
|
+
relativePath: z.ZodString;
|
|
98486
|
+
}, "strip", z.ZodTypeAny, {
|
|
98487
|
+
connectionId: string;
|
|
98488
|
+
branch: string;
|
|
98489
|
+
relativePath: string;
|
|
98490
|
+
projectId: string;
|
|
98491
|
+
}, {
|
|
98492
|
+
connectionId: string;
|
|
98493
|
+
branch: string;
|
|
98494
|
+
relativePath: string;
|
|
98495
|
+
projectId: string;
|
|
98496
|
+
}>>;
|
|
98497
|
+
destinationBitbucket: z.ZodOptional<z.ZodObject<{
|
|
98498
|
+
connectionId: z.ZodString;
|
|
98499
|
+
workspaceSlug: z.ZodString;
|
|
98500
|
+
projectKey: z.ZodString;
|
|
98501
|
+
repoSlug: z.ZodString;
|
|
98502
|
+
branch: z.ZodString;
|
|
98503
|
+
relativePath: z.ZodString;
|
|
98504
|
+
}, "strip", z.ZodTypeAny, {
|
|
98505
|
+
connectionId: string;
|
|
98506
|
+
branch: string;
|
|
98507
|
+
relativePath: string;
|
|
98508
|
+
workspaceSlug: string;
|
|
98509
|
+
projectKey: string;
|
|
98510
|
+
repoSlug: string;
|
|
98511
|
+
}, {
|
|
98512
|
+
connectionId: string;
|
|
98513
|
+
branch: string;
|
|
98514
|
+
relativePath: string;
|
|
98515
|
+
workspaceSlug: string;
|
|
98516
|
+
projectKey: string;
|
|
98517
|
+
repoSlug: string;
|
|
98518
|
+
}>>;
|
|
98519
|
+
id: z.ZodString;
|
|
98520
|
+
createdAt: z.ZodDate;
|
|
98521
|
+
finishedAt: z.ZodOptional<z.ZodDate>;
|
|
98522
|
+
designSystemId: z.ZodString;
|
|
98523
|
+
designSystemVersionId: z.ZodString;
|
|
98524
|
+
workspaceId: z.ZodString;
|
|
98525
|
+
scheduleId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
98526
|
+
exporterId: z.ZodString;
|
|
98527
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
98528
|
+
themeId: z.ZodOptional<z.ZodString>;
|
|
98529
|
+
estimatedExecutionTime: z.ZodOptional<z.ZodNumber>;
|
|
98530
|
+
status: z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>;
|
|
98531
|
+
result: z.ZodOptional<z.ZodObject<{
|
|
98532
|
+
error: z.ZodOptional<z.ZodString>;
|
|
98533
|
+
s3: z.ZodOptional<z.ZodObject<{
|
|
98534
|
+
bucket: z.ZodString;
|
|
98535
|
+
urlPrefix: z.ZodOptional<z.ZodString>;
|
|
98536
|
+
path: z.ZodString;
|
|
98537
|
+
files: z.ZodArray<z.ZodString, "many">;
|
|
98538
|
+
}, "strip", z.ZodTypeAny, {
|
|
98539
|
+
path: string;
|
|
98540
|
+
files: string[];
|
|
98541
|
+
bucket: string;
|
|
98542
|
+
urlPrefix?: string | undefined;
|
|
98543
|
+
}, {
|
|
98544
|
+
path: string;
|
|
98545
|
+
files: string[];
|
|
98546
|
+
bucket: string;
|
|
98547
|
+
urlPrefix?: string | undefined;
|
|
98548
|
+
}>>;
|
|
98549
|
+
github: z.ZodOptional<z.ZodObject<{
|
|
98550
|
+
pullRequestUrl: z.ZodString;
|
|
98551
|
+
}, "strip", z.ZodTypeAny, {
|
|
98552
|
+
pullRequestUrl: string;
|
|
98553
|
+
}, {
|
|
98554
|
+
pullRequestUrl: string;
|
|
98555
|
+
}>>;
|
|
98556
|
+
azure: z.ZodOptional<z.ZodObject<{
|
|
98557
|
+
pullRequestUrl: z.ZodString;
|
|
98558
|
+
}, "strip", z.ZodTypeAny, {
|
|
98559
|
+
pullRequestUrl: string;
|
|
98560
|
+
}, {
|
|
98561
|
+
pullRequestUrl: string;
|
|
98562
|
+
}>>;
|
|
98563
|
+
gitlab: z.ZodOptional<z.ZodObject<{
|
|
98564
|
+
pullRequestUrl: z.ZodString;
|
|
98565
|
+
}, "strip", z.ZodTypeAny, {
|
|
98566
|
+
pullRequestUrl: string;
|
|
98567
|
+
}, {
|
|
98568
|
+
pullRequestUrl: string;
|
|
98569
|
+
}>>;
|
|
98570
|
+
bitbucket: z.ZodOptional<z.ZodObject<{
|
|
98571
|
+
pullRequestUrl: z.ZodString;
|
|
98572
|
+
}, "strip", z.ZodTypeAny, {
|
|
98573
|
+
pullRequestUrl: string;
|
|
98574
|
+
}, {
|
|
98575
|
+
pullRequestUrl: string;
|
|
98576
|
+
}>>;
|
|
98577
|
+
sndocs: z.ZodOptional<z.ZodObject<{
|
|
98578
|
+
url: z.ZodString;
|
|
98579
|
+
}, "strip", z.ZodTypeAny, {
|
|
98580
|
+
url: string;
|
|
98581
|
+
}, {
|
|
98582
|
+
url: string;
|
|
98583
|
+
}>>;
|
|
98584
|
+
}, "strip", z.ZodTypeAny, {
|
|
98585
|
+
error?: string | undefined;
|
|
98586
|
+
s3?: {
|
|
98587
|
+
path: string;
|
|
98588
|
+
files: string[];
|
|
98589
|
+
bucket: string;
|
|
98590
|
+
urlPrefix?: string | undefined;
|
|
98591
|
+
} | undefined;
|
|
98592
|
+
github?: {
|
|
98593
|
+
pullRequestUrl: string;
|
|
98594
|
+
} | undefined;
|
|
98595
|
+
azure?: {
|
|
98596
|
+
pullRequestUrl: string;
|
|
98597
|
+
} | undefined;
|
|
98598
|
+
gitlab?: {
|
|
98599
|
+
pullRequestUrl: string;
|
|
98600
|
+
} | undefined;
|
|
98601
|
+
bitbucket?: {
|
|
98602
|
+
pullRequestUrl: string;
|
|
98603
|
+
} | undefined;
|
|
98604
|
+
sndocs?: {
|
|
98605
|
+
url: string;
|
|
98606
|
+
} | undefined;
|
|
98607
|
+
}, {
|
|
98608
|
+
error?: string | undefined;
|
|
98609
|
+
s3?: {
|
|
98610
|
+
path: string;
|
|
98611
|
+
files: string[];
|
|
98612
|
+
bucket: string;
|
|
98613
|
+
urlPrefix?: string | undefined;
|
|
98614
|
+
} | undefined;
|
|
98615
|
+
github?: {
|
|
98616
|
+
pullRequestUrl: string;
|
|
98617
|
+
} | undefined;
|
|
98618
|
+
azure?: {
|
|
98619
|
+
pullRequestUrl: string;
|
|
98620
|
+
} | undefined;
|
|
98621
|
+
gitlab?: {
|
|
98622
|
+
pullRequestUrl: string;
|
|
98623
|
+
} | undefined;
|
|
98624
|
+
bitbucket?: {
|
|
98625
|
+
pullRequestUrl: string;
|
|
98626
|
+
} | undefined;
|
|
98627
|
+
sndocs?: {
|
|
98628
|
+
url: string;
|
|
98629
|
+
} | undefined;
|
|
99943
98630
|
}>>;
|
|
99944
|
-
|
|
99945
|
-
|
|
99946
|
-
|
|
99947
|
-
|
|
99948
|
-
|
|
99949
|
-
|
|
98631
|
+
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
98632
|
+
}, "strip", z.ZodTypeAny, {
|
|
98633
|
+
id: string;
|
|
98634
|
+
createdAt: Date;
|
|
98635
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98636
|
+
designSystemId: string;
|
|
98637
|
+
designSystemVersionId: string;
|
|
98638
|
+
workspaceId: string;
|
|
98639
|
+
exporterId: string;
|
|
98640
|
+
webhookUrl?: string | undefined;
|
|
98641
|
+
destinationSnDocs?: {
|
|
98642
|
+
environment: "Live" | "Preview";
|
|
98643
|
+
} | undefined;
|
|
98644
|
+
destinationS3?: {} | undefined;
|
|
98645
|
+
destinationGithub?: {
|
|
99950
98646
|
connectionId: string;
|
|
99951
98647
|
branch: string;
|
|
99952
98648
|
relativePath: string;
|
|
99953
|
-
}
|
|
98649
|
+
} | undefined;
|
|
98650
|
+
destinationAzure?: {
|
|
99954
98651
|
connectionId: string;
|
|
99955
98652
|
branch: string;
|
|
99956
98653
|
relativePath: string;
|
|
99957
|
-
|
|
99958
|
-
|
|
99959
|
-
|
|
99960
|
-
|
|
99961
|
-
|
|
99962
|
-
repositoryId: z.ZodString;
|
|
99963
|
-
branch: z.ZodString;
|
|
99964
|
-
relativePath: z.ZodString;
|
|
99965
|
-
}, "strip", z.ZodTypeAny, {
|
|
98654
|
+
organizationId: string;
|
|
98655
|
+
projectId: string;
|
|
98656
|
+
repositoryId: string;
|
|
98657
|
+
} | undefined;
|
|
98658
|
+
destinationGitlab?: {
|
|
99966
98659
|
connectionId: string;
|
|
99967
98660
|
branch: string;
|
|
99968
98661
|
relativePath: string;
|
|
99969
|
-
organizationId: string;
|
|
99970
98662
|
projectId: string;
|
|
99971
|
-
|
|
99972
|
-
|
|
98663
|
+
} | undefined;
|
|
98664
|
+
destinationBitbucket?: {
|
|
98665
|
+
connectionId: string;
|
|
98666
|
+
branch: string;
|
|
98667
|
+
relativePath: string;
|
|
98668
|
+
workspaceSlug: string;
|
|
98669
|
+
projectKey: string;
|
|
98670
|
+
repoSlug: string;
|
|
98671
|
+
} | undefined;
|
|
98672
|
+
finishedAt?: Date | undefined;
|
|
98673
|
+
scheduleId?: string | null | undefined;
|
|
98674
|
+
brandId?: string | undefined;
|
|
98675
|
+
themeId?: string | undefined;
|
|
98676
|
+
estimatedExecutionTime?: number | undefined;
|
|
98677
|
+
result?: {
|
|
98678
|
+
error?: string | undefined;
|
|
98679
|
+
s3?: {
|
|
98680
|
+
path: string;
|
|
98681
|
+
files: string[];
|
|
98682
|
+
bucket: string;
|
|
98683
|
+
urlPrefix?: string | undefined;
|
|
98684
|
+
} | undefined;
|
|
98685
|
+
github?: {
|
|
98686
|
+
pullRequestUrl: string;
|
|
98687
|
+
} | undefined;
|
|
98688
|
+
azure?: {
|
|
98689
|
+
pullRequestUrl: string;
|
|
98690
|
+
} | undefined;
|
|
98691
|
+
gitlab?: {
|
|
98692
|
+
pullRequestUrl: string;
|
|
98693
|
+
} | undefined;
|
|
98694
|
+
bitbucket?: {
|
|
98695
|
+
pullRequestUrl: string;
|
|
98696
|
+
} | undefined;
|
|
98697
|
+
sndocs?: {
|
|
98698
|
+
url: string;
|
|
98699
|
+
} | undefined;
|
|
98700
|
+
} | undefined;
|
|
98701
|
+
createdByUserId?: string | undefined;
|
|
98702
|
+
}, {
|
|
98703
|
+
id: string;
|
|
98704
|
+
createdAt: Date;
|
|
98705
|
+
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
98706
|
+
designSystemId: string;
|
|
98707
|
+
designSystemVersionId: string;
|
|
98708
|
+
workspaceId: string;
|
|
98709
|
+
exporterId: string;
|
|
98710
|
+
webhookUrl?: string | undefined;
|
|
98711
|
+
destinationSnDocs?: {
|
|
98712
|
+
environment: "Live" | "Preview";
|
|
98713
|
+
} | undefined;
|
|
98714
|
+
destinationS3?: {} | undefined;
|
|
98715
|
+
destinationGithub?: {
|
|
98716
|
+
connectionId: string;
|
|
98717
|
+
branch: string;
|
|
98718
|
+
relativePath: string;
|
|
98719
|
+
} | undefined;
|
|
98720
|
+
destinationAzure?: {
|
|
99973
98721
|
connectionId: string;
|
|
99974
98722
|
branch: string;
|
|
99975
98723
|
relativePath: string;
|
|
99976
98724
|
organizationId: string;
|
|
99977
98725
|
projectId: string;
|
|
99978
98726
|
repositoryId: string;
|
|
99979
|
-
}
|
|
99980
|
-
destinationGitlab
|
|
99981
|
-
connectionId: z.ZodString;
|
|
99982
|
-
projectId: z.ZodString;
|
|
99983
|
-
branch: z.ZodString;
|
|
99984
|
-
relativePath: z.ZodString;
|
|
99985
|
-
}, "strip", z.ZodTypeAny, {
|
|
98727
|
+
} | undefined;
|
|
98728
|
+
destinationGitlab?: {
|
|
99986
98729
|
connectionId: string;
|
|
99987
98730
|
branch: string;
|
|
99988
98731
|
relativePath: string;
|
|
99989
98732
|
projectId: string;
|
|
99990
|
-
}
|
|
98733
|
+
} | undefined;
|
|
98734
|
+
destinationBitbucket?: {
|
|
99991
98735
|
connectionId: string;
|
|
99992
98736
|
branch: string;
|
|
99993
98737
|
relativePath: string;
|
|
99994
|
-
|
|
99995
|
-
|
|
99996
|
-
|
|
99997
|
-
|
|
99998
|
-
|
|
99999
|
-
|
|
100000
|
-
|
|
100001
|
-
|
|
100002
|
-
|
|
98738
|
+
workspaceSlug: string;
|
|
98739
|
+
projectKey: string;
|
|
98740
|
+
repoSlug: string;
|
|
98741
|
+
} | undefined;
|
|
98742
|
+
finishedAt?: Date | undefined;
|
|
98743
|
+
scheduleId?: string | null | undefined;
|
|
98744
|
+
brandId?: string | undefined;
|
|
98745
|
+
themeId?: string | undefined;
|
|
98746
|
+
estimatedExecutionTime?: number | undefined;
|
|
98747
|
+
result?: {
|
|
98748
|
+
error?: string | undefined;
|
|
98749
|
+
s3?: {
|
|
98750
|
+
path: string;
|
|
98751
|
+
files: string[];
|
|
98752
|
+
bucket: string;
|
|
98753
|
+
urlPrefix?: string | undefined;
|
|
98754
|
+
} | undefined;
|
|
98755
|
+
github?: {
|
|
98756
|
+
pullRequestUrl: string;
|
|
98757
|
+
} | undefined;
|
|
98758
|
+
azure?: {
|
|
98759
|
+
pullRequestUrl: string;
|
|
98760
|
+
} | undefined;
|
|
98761
|
+
gitlab?: {
|
|
98762
|
+
pullRequestUrl: string;
|
|
98763
|
+
} | undefined;
|
|
98764
|
+
bitbucket?: {
|
|
98765
|
+
pullRequestUrl: string;
|
|
98766
|
+
} | undefined;
|
|
98767
|
+
sndocs?: {
|
|
98768
|
+
url: string;
|
|
98769
|
+
} | undefined;
|
|
98770
|
+
} | undefined;
|
|
98771
|
+
createdByUserId?: string | undefined;
|
|
98772
|
+
}>;
|
|
98773
|
+
type ExportJob = z.infer<typeof ExportJob>;
|
|
98774
|
+
type CreateExportJob = DbCreateInputOmit<ExportJob>;
|
|
98775
|
+
type UpdateExportJob = Pick<DbUpdate<ExportJob>, "id" | "status" | "result" | "finishedAt">;
|
|
98776
|
+
declare const ExportJobFindByFilter: z.ZodObject<{
|
|
98777
|
+
status: z.ZodOptional<z.ZodEnum<["InProgress", "Success", "Failed", "Timeout"]>>;
|
|
98778
|
+
designSystemId: z.ZodOptional<z.ZodString>;
|
|
98779
|
+
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
98780
|
+
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98781
|
+
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98782
|
+
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
98783
|
+
exporterId: z.ZodOptional<z.ZodString>;
|
|
98784
|
+
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
98785
|
+
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
98786
|
+
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
98787
|
+
}, "strip", z.ZodTypeAny, {
|
|
98788
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
98789
|
+
designSystemId?: string | undefined;
|
|
98790
|
+
designSystemVersionId?: string | undefined;
|
|
98791
|
+
brandId?: string | undefined;
|
|
98792
|
+
createdByUserId?: string | undefined;
|
|
98793
|
+
themeId?: string | undefined;
|
|
98794
|
+
exporterId?: string | undefined;
|
|
98795
|
+
scheduleId?: string | null | undefined;
|
|
98796
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98797
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98798
|
+
}, {
|
|
98799
|
+
status?: "Timeout" | "Success" | "InProgress" | "Failed" | undefined;
|
|
98800
|
+
designSystemId?: string | undefined;
|
|
98801
|
+
designSystemVersionId?: string | undefined;
|
|
98802
|
+
brandId?: string | undefined;
|
|
98803
|
+
createdByUserId?: string | undefined;
|
|
98804
|
+
themeId?: string | undefined;
|
|
98805
|
+
exporterId?: string | undefined;
|
|
98806
|
+
scheduleId?: string | null | undefined;
|
|
98807
|
+
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
98808
|
+
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
98809
|
+
}>;
|
|
98810
|
+
type ExportJobFindByFilter = z.infer<typeof ExportJobFindByFilter>;
|
|
98811
|
+
|
|
98812
|
+
declare const ExportJobDocumentationContext: z.ZodObject<{
|
|
98813
|
+
isSingleVersionDocs: z.ZodBoolean;
|
|
98814
|
+
versionSlug: z.ZodString;
|
|
98815
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
98816
|
+
}, "strip", z.ZodTypeAny, {
|
|
98817
|
+
environment: "Live" | "Preview";
|
|
98818
|
+
isSingleVersionDocs: boolean;
|
|
98819
|
+
versionSlug: string;
|
|
98820
|
+
}, {
|
|
98821
|
+
environment: "Live" | "Preview";
|
|
98822
|
+
isSingleVersionDocs: boolean;
|
|
98823
|
+
versionSlug: string;
|
|
98824
|
+
}>;
|
|
98825
|
+
type ExportJobDocumentationContext = z.infer<typeof ExportJobDocumentationContext>;
|
|
98826
|
+
declare const ExportJobContext: z.ZodObject<{
|
|
98827
|
+
apiUrl: z.ZodString;
|
|
98828
|
+
accessToken: z.ZodString;
|
|
98829
|
+
designSystemId: z.ZodString;
|
|
98830
|
+
designSystemVersionId: z.ZodString;
|
|
98831
|
+
brandId: z.ZodOptional<z.ZodString>;
|
|
98832
|
+
exporterPackageUrl: z.ZodString;
|
|
98833
|
+
exporterPropertyValues: z.ZodArray<z.ZodObject<{
|
|
98834
|
+
key: z.ZodString;
|
|
98835
|
+
value: z.ZodUnion<[z.ZodNumber, z.ZodString, z.ZodBoolean, z.ZodObject<{
|
|
98836
|
+
asset: z.ZodOptional<z.ZodObject<{
|
|
98837
|
+
type: z.ZodEnum<["image", "figmaFrame"]>;
|
|
98838
|
+
id: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98839
|
+
url: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98840
|
+
figmaFrame: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
98841
|
+
persistentId: string;
|
|
98842
|
+
sourceId: string;
|
|
98843
|
+
sourceFrameId: string;
|
|
98844
|
+
title?: string | undefined;
|
|
98845
|
+
description?: string | undefined;
|
|
98846
|
+
backgroundColor?: {
|
|
98847
|
+
value: string;
|
|
98848
|
+
} | undefined;
|
|
98849
|
+
origin?: {
|
|
98850
|
+
sourceFileName?: string | undefined;
|
|
98851
|
+
title?: string | undefined;
|
|
98852
|
+
previewUrl?: string | undefined;
|
|
98853
|
+
valid?: boolean | undefined;
|
|
98854
|
+
referenceId?: string | undefined;
|
|
98855
|
+
assetId?: string | undefined;
|
|
98856
|
+
assetScale?: number | undefined;
|
|
98857
|
+
width?: number | undefined;
|
|
98858
|
+
height?: number | undefined;
|
|
98859
|
+
} | undefined;
|
|
98860
|
+
}, z.ZodTypeDef, {
|
|
98861
|
+
persistentId: string;
|
|
98862
|
+
sourceId: string;
|
|
98863
|
+
sourceFrameId: string;
|
|
98864
|
+
title?: string | null | undefined;
|
|
98865
|
+
description?: string | null | undefined;
|
|
98866
|
+
backgroundColor?: {
|
|
98867
|
+
value: string;
|
|
98868
|
+
} | null | undefined;
|
|
98869
|
+
origin?: {
|
|
98870
|
+
sourceFileName?: string | null | undefined;
|
|
98871
|
+
title?: string | null | undefined;
|
|
98872
|
+
previewUrl?: string | null | undefined;
|
|
98873
|
+
valid?: boolean | null | undefined;
|
|
98874
|
+
referenceId?: string | null | undefined;
|
|
98875
|
+
assetId?: string | null | undefined;
|
|
98876
|
+
assetScale?: number | null | undefined;
|
|
98877
|
+
width?: number | null | undefined;
|
|
98878
|
+
height?: number | null | undefined;
|
|
98879
|
+
} | null | undefined;
|
|
98880
|
+
}>>>, {
|
|
98881
|
+
persistentId: string;
|
|
98882
|
+
sourceId: string;
|
|
98883
|
+
sourceFrameId: string;
|
|
98884
|
+
title?: string | undefined;
|
|
98885
|
+
description?: string | undefined;
|
|
98886
|
+
backgroundColor?: {
|
|
98887
|
+
value: string;
|
|
98888
|
+
} | undefined;
|
|
98889
|
+
origin?: {
|
|
98890
|
+
sourceFileName?: string | undefined;
|
|
98891
|
+
title?: string | undefined;
|
|
98892
|
+
previewUrl?: string | undefined;
|
|
98893
|
+
valid?: boolean | undefined;
|
|
98894
|
+
referenceId?: string | undefined;
|
|
98895
|
+
assetId?: string | undefined;
|
|
98896
|
+
assetScale?: number | undefined;
|
|
98897
|
+
width?: number | undefined;
|
|
98898
|
+
height?: number | undefined;
|
|
98899
|
+
} | undefined;
|
|
98900
|
+
} | undefined, {
|
|
98901
|
+
persistentId: string;
|
|
98902
|
+
sourceId: string;
|
|
98903
|
+
sourceFrameId: string;
|
|
98904
|
+
title?: string | null | undefined;
|
|
98905
|
+
description?: string | null | undefined;
|
|
98906
|
+
backgroundColor?: {
|
|
98907
|
+
value: string;
|
|
98908
|
+
} | null | undefined;
|
|
98909
|
+
origin?: {
|
|
98910
|
+
sourceFileName?: string | null | undefined;
|
|
98911
|
+
title?: string | null | undefined;
|
|
98912
|
+
previewUrl?: string | null | undefined;
|
|
98913
|
+
valid?: boolean | null | undefined;
|
|
98914
|
+
referenceId?: string | null | undefined;
|
|
98915
|
+
assetId?: string | null | undefined;
|
|
98916
|
+
assetScale?: number | null | undefined;
|
|
98917
|
+
width?: number | null | undefined;
|
|
98918
|
+
height?: number | null | undefined;
|
|
98919
|
+
} | null | undefined;
|
|
98920
|
+
} | null | undefined>;
|
|
98921
|
+
}, "strip", z.ZodTypeAny, {
|
|
98922
|
+
type: "image" | "figmaFrame";
|
|
98923
|
+
id?: string | undefined;
|
|
98924
|
+
url?: string | undefined;
|
|
98925
|
+
figmaFrame?: {
|
|
98926
|
+
persistentId: string;
|
|
98927
|
+
sourceId: string;
|
|
98928
|
+
sourceFrameId: string;
|
|
98929
|
+
title?: string | undefined;
|
|
98930
|
+
description?: string | undefined;
|
|
98931
|
+
backgroundColor?: {
|
|
98932
|
+
value: string;
|
|
98933
|
+
} | undefined;
|
|
98934
|
+
origin?: {
|
|
98935
|
+
sourceFileName?: string | undefined;
|
|
98936
|
+
title?: string | undefined;
|
|
98937
|
+
previewUrl?: string | undefined;
|
|
98938
|
+
valid?: boolean | undefined;
|
|
98939
|
+
referenceId?: string | undefined;
|
|
98940
|
+
assetId?: string | undefined;
|
|
98941
|
+
assetScale?: number | undefined;
|
|
98942
|
+
width?: number | undefined;
|
|
98943
|
+
height?: number | undefined;
|
|
98944
|
+
} | undefined;
|
|
98945
|
+
} | undefined;
|
|
98946
|
+
}, {
|
|
98947
|
+
type: "image" | "figmaFrame";
|
|
98948
|
+
id?: string | null | undefined;
|
|
98949
|
+
url?: string | null | undefined;
|
|
98950
|
+
figmaFrame?: {
|
|
98951
|
+
persistentId: string;
|
|
98952
|
+
sourceId: string;
|
|
98953
|
+
sourceFrameId: string;
|
|
98954
|
+
title?: string | null | undefined;
|
|
98955
|
+
description?: string | null | undefined;
|
|
98956
|
+
backgroundColor?: {
|
|
98957
|
+
value: string;
|
|
98958
|
+
} | null | undefined;
|
|
98959
|
+
origin?: {
|
|
98960
|
+
sourceFileName?: string | null | undefined;
|
|
98961
|
+
title?: string | null | undefined;
|
|
98962
|
+
previewUrl?: string | null | undefined;
|
|
98963
|
+
valid?: boolean | null | undefined;
|
|
98964
|
+
referenceId?: string | null | undefined;
|
|
98965
|
+
assetId?: string | null | undefined;
|
|
98966
|
+
assetScale?: number | null | undefined;
|
|
98967
|
+
width?: number | null | undefined;
|
|
98968
|
+
height?: number | null | undefined;
|
|
98969
|
+
} | null | undefined;
|
|
98970
|
+
} | null | undefined;
|
|
98971
|
+
}>>;
|
|
98972
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
98973
|
+
assetUrl: z.ZodOptional<z.ZodString>;
|
|
98974
|
+
}, "strip", z.ZodTypeAny, {
|
|
98975
|
+
asset?: {
|
|
98976
|
+
type: "image" | "figmaFrame";
|
|
98977
|
+
id?: string | undefined;
|
|
98978
|
+
url?: string | undefined;
|
|
98979
|
+
figmaFrame?: {
|
|
98980
|
+
persistentId: string;
|
|
98981
|
+
sourceId: string;
|
|
98982
|
+
sourceFrameId: string;
|
|
98983
|
+
title?: string | undefined;
|
|
98984
|
+
description?: string | undefined;
|
|
98985
|
+
backgroundColor?: {
|
|
98986
|
+
value: string;
|
|
98987
|
+
} | undefined;
|
|
98988
|
+
origin?: {
|
|
98989
|
+
sourceFileName?: string | undefined;
|
|
98990
|
+
title?: string | undefined;
|
|
98991
|
+
previewUrl?: string | undefined;
|
|
98992
|
+
valid?: boolean | undefined;
|
|
98993
|
+
referenceId?: string | undefined;
|
|
98994
|
+
assetId?: string | undefined;
|
|
98995
|
+
assetScale?: number | undefined;
|
|
98996
|
+
width?: number | undefined;
|
|
98997
|
+
height?: number | undefined;
|
|
98998
|
+
} | undefined;
|
|
98999
|
+
} | undefined;
|
|
99000
|
+
} | undefined;
|
|
99001
|
+
assetId?: string | undefined;
|
|
99002
|
+
assetUrl?: string | undefined;
|
|
99003
|
+
}, {
|
|
99004
|
+
asset?: {
|
|
99005
|
+
type: "image" | "figmaFrame";
|
|
99006
|
+
id?: string | null | undefined;
|
|
99007
|
+
url?: string | null | undefined;
|
|
99008
|
+
figmaFrame?: {
|
|
99009
|
+
persistentId: string;
|
|
99010
|
+
sourceId: string;
|
|
99011
|
+
sourceFrameId: string;
|
|
99012
|
+
title?: string | null | undefined;
|
|
99013
|
+
description?: string | null | undefined;
|
|
99014
|
+
backgroundColor?: {
|
|
99015
|
+
value: string;
|
|
99016
|
+
} | null | undefined;
|
|
99017
|
+
origin?: {
|
|
99018
|
+
sourceFileName?: string | null | undefined;
|
|
99019
|
+
title?: string | null | undefined;
|
|
99020
|
+
previewUrl?: string | null | undefined;
|
|
99021
|
+
valid?: boolean | null | undefined;
|
|
99022
|
+
referenceId?: string | null | undefined;
|
|
99023
|
+
assetId?: string | null | undefined;
|
|
99024
|
+
assetScale?: number | null | undefined;
|
|
99025
|
+
width?: number | null | undefined;
|
|
99026
|
+
height?: number | null | undefined;
|
|
99027
|
+
} | null | undefined;
|
|
99028
|
+
} | null | undefined;
|
|
99029
|
+
} | undefined;
|
|
99030
|
+
assetId?: string | undefined;
|
|
99031
|
+
assetUrl?: string | undefined;
|
|
99032
|
+
}>, z.ZodObject<{
|
|
99033
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
99034
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
99035
|
+
opacity: {
|
|
99036
|
+
aliasTo?: string | undefined;
|
|
99037
|
+
value?: {
|
|
99038
|
+
unit: "Pixels" | "Raw";
|
|
99039
|
+
measure: number;
|
|
99040
|
+
} | undefined;
|
|
99041
|
+
};
|
|
99042
|
+
color: (string | {
|
|
99043
|
+
aliasTo?: string | undefined;
|
|
99044
|
+
}) & (string | {
|
|
99045
|
+
aliasTo?: string | undefined;
|
|
99046
|
+
} | undefined);
|
|
99047
|
+
}, z.ZodTypeDef, {
|
|
99048
|
+
opacity: {
|
|
99049
|
+
aliasTo?: string | null | undefined;
|
|
99050
|
+
value?: {
|
|
99051
|
+
unit: "Pixels" | "Raw";
|
|
99052
|
+
measure: number;
|
|
99053
|
+
} | null | undefined;
|
|
99054
|
+
};
|
|
99055
|
+
color: (string | {
|
|
99056
|
+
aliasTo?: string | null | undefined;
|
|
99057
|
+
}) & (string | {
|
|
99058
|
+
aliasTo?: string | null | undefined;
|
|
99059
|
+
} | undefined);
|
|
99060
|
+
}>>>, {
|
|
99061
|
+
opacity: {
|
|
99062
|
+
aliasTo?: string | undefined;
|
|
99063
|
+
value?: {
|
|
99064
|
+
unit: "Pixels" | "Raw";
|
|
99065
|
+
measure: number;
|
|
99066
|
+
} | undefined;
|
|
99067
|
+
};
|
|
99068
|
+
color: (string | {
|
|
99069
|
+
aliasTo?: string | undefined;
|
|
99070
|
+
}) & (string | {
|
|
99071
|
+
aliasTo?: string | undefined;
|
|
99072
|
+
} | undefined);
|
|
99073
|
+
} | undefined, {
|
|
99074
|
+
opacity: {
|
|
99075
|
+
aliasTo?: string | null | undefined;
|
|
99076
|
+
value?: {
|
|
99077
|
+
unit: "Pixels" | "Raw";
|
|
99078
|
+
measure: number;
|
|
99079
|
+
} | null | undefined;
|
|
99080
|
+
};
|
|
99081
|
+
color: (string | {
|
|
99082
|
+
aliasTo?: string | null | undefined;
|
|
99083
|
+
}) & (string | {
|
|
99084
|
+
aliasTo?: string | null | undefined;
|
|
99085
|
+
} | undefined);
|
|
99086
|
+
} | null | undefined>;
|
|
99087
|
+
}, "strip", z.ZodTypeAny, {
|
|
99088
|
+
aliasTo?: string | undefined;
|
|
99089
|
+
value?: {
|
|
99090
|
+
opacity: {
|
|
99091
|
+
aliasTo?: string | undefined;
|
|
99092
|
+
value?: {
|
|
99093
|
+
unit: "Pixels" | "Raw";
|
|
99094
|
+
measure: number;
|
|
99095
|
+
} | undefined;
|
|
99096
|
+
};
|
|
99097
|
+
color: (string | {
|
|
99098
|
+
aliasTo?: string | undefined;
|
|
99099
|
+
}) & (string | {
|
|
99100
|
+
aliasTo?: string | undefined;
|
|
99101
|
+
} | undefined);
|
|
99102
|
+
} | undefined;
|
|
99103
|
+
}, {
|
|
99104
|
+
aliasTo?: string | null | undefined;
|
|
99105
|
+
value?: {
|
|
99106
|
+
opacity: {
|
|
99107
|
+
aliasTo?: string | null | undefined;
|
|
99108
|
+
value?: {
|
|
99109
|
+
unit: "Pixels" | "Raw";
|
|
99110
|
+
measure: number;
|
|
99111
|
+
} | null | undefined;
|
|
99112
|
+
};
|
|
99113
|
+
color: (string | {
|
|
99114
|
+
aliasTo?: string | null | undefined;
|
|
99115
|
+
}) & (string | {
|
|
99116
|
+
aliasTo?: string | null | undefined;
|
|
99117
|
+
} | undefined);
|
|
99118
|
+
} | null | undefined;
|
|
99119
|
+
}>, z.ZodObject<{
|
|
99120
|
+
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
99121
|
+
value: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodType<{
|
|
99122
|
+
fontSize: {
|
|
99123
|
+
aliasTo?: string | undefined;
|
|
99124
|
+
value?: {
|
|
99125
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99126
|
+
measure: number;
|
|
99127
|
+
} | undefined;
|
|
99128
|
+
};
|
|
99129
|
+
fontFamily: {
|
|
99130
|
+
aliasTo?: string | undefined;
|
|
99131
|
+
value?: string | undefined;
|
|
99132
|
+
};
|
|
99133
|
+
fontWeight: {
|
|
99134
|
+
aliasTo?: string | undefined;
|
|
99135
|
+
value?: string | undefined;
|
|
99136
|
+
};
|
|
99137
|
+
textDecoration: {
|
|
99138
|
+
aliasTo?: string | undefined;
|
|
99139
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99140
|
+
};
|
|
99141
|
+
textCase: {
|
|
99142
|
+
aliasTo?: string | undefined;
|
|
99143
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99144
|
+
};
|
|
99145
|
+
letterSpacing?: {
|
|
99146
|
+
aliasTo?: string | undefined;
|
|
99147
|
+
value?: {
|
|
99148
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99149
|
+
measure: number;
|
|
99150
|
+
} | undefined;
|
|
99151
|
+
} | undefined;
|
|
99152
|
+
lineHeight?: {
|
|
99153
|
+
aliasTo?: string | undefined;
|
|
99154
|
+
value?: {
|
|
99155
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99156
|
+
measure: number;
|
|
99157
|
+
} | undefined;
|
|
99158
|
+
} | undefined;
|
|
99159
|
+
paragraphIndent?: {
|
|
99160
|
+
aliasTo?: string | undefined;
|
|
99161
|
+
value?: {
|
|
99162
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99163
|
+
measure: number;
|
|
99164
|
+
} | undefined;
|
|
99165
|
+
} | undefined;
|
|
99166
|
+
paragraphSpacing?: {
|
|
99167
|
+
aliasTo?: string | undefined;
|
|
99168
|
+
value?: {
|
|
99169
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99170
|
+
measure: number;
|
|
99171
|
+
} | undefined;
|
|
99172
|
+
} | undefined;
|
|
99173
|
+
}, z.ZodTypeDef, {
|
|
99174
|
+
fontSize: {
|
|
99175
|
+
aliasTo?: string | null | undefined;
|
|
99176
|
+
value?: {
|
|
99177
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99178
|
+
measure: number;
|
|
99179
|
+
} | null | undefined;
|
|
99180
|
+
};
|
|
99181
|
+
fontFamily: {
|
|
99182
|
+
aliasTo?: string | null | undefined;
|
|
99183
|
+
value?: string | null | undefined;
|
|
99184
|
+
};
|
|
99185
|
+
fontWeight: {
|
|
99186
|
+
aliasTo?: string | null | undefined;
|
|
99187
|
+
value?: string | null | undefined;
|
|
99188
|
+
};
|
|
99189
|
+
textDecoration: {
|
|
99190
|
+
aliasTo?: string | null | undefined;
|
|
99191
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99192
|
+
};
|
|
99193
|
+
textCase: {
|
|
99194
|
+
aliasTo?: string | null | undefined;
|
|
99195
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99196
|
+
};
|
|
99197
|
+
letterSpacing?: {
|
|
99198
|
+
aliasTo?: string | null | undefined;
|
|
99199
|
+
value?: {
|
|
99200
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99201
|
+
measure: number;
|
|
99202
|
+
} | null | undefined;
|
|
99203
|
+
} | undefined;
|
|
99204
|
+
lineHeight?: {
|
|
99205
|
+
aliasTo?: string | null | undefined;
|
|
99206
|
+
value?: {
|
|
99207
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99208
|
+
measure: number;
|
|
99209
|
+
} | null | undefined;
|
|
99210
|
+
} | undefined;
|
|
99211
|
+
paragraphIndent?: {
|
|
99212
|
+
aliasTo?: string | null | undefined;
|
|
99213
|
+
value?: {
|
|
99214
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99215
|
+
measure: number;
|
|
99216
|
+
} | null | undefined;
|
|
99217
|
+
} | undefined;
|
|
99218
|
+
paragraphSpacing?: {
|
|
99219
|
+
aliasTo?: string | null | undefined;
|
|
99220
|
+
value?: {
|
|
99221
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99222
|
+
measure: number;
|
|
99223
|
+
} | null | undefined;
|
|
99224
|
+
} | undefined;
|
|
99225
|
+
}>>>, {
|
|
99226
|
+
fontSize: {
|
|
99227
|
+
aliasTo?: string | undefined;
|
|
99228
|
+
value?: {
|
|
99229
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99230
|
+
measure: number;
|
|
99231
|
+
} | undefined;
|
|
99232
|
+
};
|
|
99233
|
+
fontFamily: {
|
|
99234
|
+
aliasTo?: string | undefined;
|
|
99235
|
+
value?: string | undefined;
|
|
99236
|
+
};
|
|
99237
|
+
fontWeight: {
|
|
99238
|
+
aliasTo?: string | undefined;
|
|
99239
|
+
value?: string | undefined;
|
|
99240
|
+
};
|
|
99241
|
+
textDecoration: {
|
|
99242
|
+
aliasTo?: string | undefined;
|
|
99243
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99244
|
+
};
|
|
99245
|
+
textCase: {
|
|
99246
|
+
aliasTo?: string | undefined;
|
|
99247
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99248
|
+
};
|
|
99249
|
+
letterSpacing?: {
|
|
99250
|
+
aliasTo?: string | undefined;
|
|
99251
|
+
value?: {
|
|
99252
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99253
|
+
measure: number;
|
|
99254
|
+
} | undefined;
|
|
99255
|
+
} | undefined;
|
|
99256
|
+
lineHeight?: {
|
|
99257
|
+
aliasTo?: string | undefined;
|
|
99258
|
+
value?: {
|
|
99259
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99260
|
+
measure: number;
|
|
99261
|
+
} | undefined;
|
|
99262
|
+
} | undefined;
|
|
99263
|
+
paragraphIndent?: {
|
|
99264
|
+
aliasTo?: string | undefined;
|
|
99265
|
+
value?: {
|
|
99266
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99267
|
+
measure: number;
|
|
99268
|
+
} | undefined;
|
|
99269
|
+
} | undefined;
|
|
99270
|
+
paragraphSpacing?: {
|
|
99271
|
+
aliasTo?: string | undefined;
|
|
99272
|
+
value?: {
|
|
99273
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99274
|
+
measure: number;
|
|
99275
|
+
} | undefined;
|
|
99276
|
+
} | undefined;
|
|
99277
|
+
} | undefined, {
|
|
99278
|
+
fontSize: {
|
|
99279
|
+
aliasTo?: string | null | undefined;
|
|
99280
|
+
value?: {
|
|
99281
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99282
|
+
measure: number;
|
|
99283
|
+
} | null | undefined;
|
|
99284
|
+
};
|
|
99285
|
+
fontFamily: {
|
|
99286
|
+
aliasTo?: string | null | undefined;
|
|
99287
|
+
value?: string | null | undefined;
|
|
99288
|
+
};
|
|
99289
|
+
fontWeight: {
|
|
99290
|
+
aliasTo?: string | null | undefined;
|
|
99291
|
+
value?: string | null | undefined;
|
|
99292
|
+
};
|
|
99293
|
+
textDecoration: {
|
|
99294
|
+
aliasTo?: string | null | undefined;
|
|
99295
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99296
|
+
};
|
|
99297
|
+
textCase: {
|
|
99298
|
+
aliasTo?: string | null | undefined;
|
|
99299
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99300
|
+
};
|
|
99301
|
+
letterSpacing?: {
|
|
99302
|
+
aliasTo?: string | null | undefined;
|
|
99303
|
+
value?: {
|
|
99304
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99305
|
+
measure: number;
|
|
99306
|
+
} | null | undefined;
|
|
99307
|
+
} | undefined;
|
|
99308
|
+
lineHeight?: {
|
|
99309
|
+
aliasTo?: string | null | undefined;
|
|
99310
|
+
value?: {
|
|
99311
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99312
|
+
measure: number;
|
|
99313
|
+
} | null | undefined;
|
|
99314
|
+
} | undefined;
|
|
99315
|
+
paragraphIndent?: {
|
|
99316
|
+
aliasTo?: string | null | undefined;
|
|
99317
|
+
value?: {
|
|
99318
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99319
|
+
measure: number;
|
|
99320
|
+
} | null | undefined;
|
|
99321
|
+
} | undefined;
|
|
99322
|
+
paragraphSpacing?: {
|
|
99323
|
+
aliasTo?: string | null | undefined;
|
|
99324
|
+
value?: {
|
|
99325
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99326
|
+
measure: number;
|
|
99327
|
+
} | null | undefined;
|
|
99328
|
+
} | undefined;
|
|
99329
|
+
} | null | undefined>;
|
|
99330
|
+
}, "strip", z.ZodTypeAny, {
|
|
99331
|
+
aliasTo?: string | undefined;
|
|
99332
|
+
value?: {
|
|
99333
|
+
fontSize: {
|
|
99334
|
+
aliasTo?: string | undefined;
|
|
99335
|
+
value?: {
|
|
99336
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99337
|
+
measure: number;
|
|
99338
|
+
} | undefined;
|
|
99339
|
+
};
|
|
99340
|
+
fontFamily: {
|
|
99341
|
+
aliasTo?: string | undefined;
|
|
99342
|
+
value?: string | undefined;
|
|
99343
|
+
};
|
|
99344
|
+
fontWeight: {
|
|
99345
|
+
aliasTo?: string | undefined;
|
|
99346
|
+
value?: string | undefined;
|
|
99347
|
+
};
|
|
99348
|
+
textDecoration: {
|
|
99349
|
+
aliasTo?: string | undefined;
|
|
99350
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99351
|
+
};
|
|
99352
|
+
textCase: {
|
|
99353
|
+
aliasTo?: string | undefined;
|
|
99354
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99355
|
+
};
|
|
99356
|
+
letterSpacing?: {
|
|
99357
|
+
aliasTo?: string | undefined;
|
|
99358
|
+
value?: {
|
|
99359
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99360
|
+
measure: number;
|
|
99361
|
+
} | undefined;
|
|
99362
|
+
} | undefined;
|
|
99363
|
+
lineHeight?: {
|
|
99364
|
+
aliasTo?: string | undefined;
|
|
99365
|
+
value?: {
|
|
99366
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99367
|
+
measure: number;
|
|
99368
|
+
} | undefined;
|
|
99369
|
+
} | undefined;
|
|
99370
|
+
paragraphIndent?: {
|
|
99371
|
+
aliasTo?: string | undefined;
|
|
99372
|
+
value?: {
|
|
99373
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99374
|
+
measure: number;
|
|
99375
|
+
} | undefined;
|
|
99376
|
+
} | undefined;
|
|
99377
|
+
paragraphSpacing?: {
|
|
99378
|
+
aliasTo?: string | undefined;
|
|
99379
|
+
value?: {
|
|
99380
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99381
|
+
measure: number;
|
|
99382
|
+
} | undefined;
|
|
99383
|
+
} | undefined;
|
|
99384
|
+
} | undefined;
|
|
99385
|
+
}, {
|
|
99386
|
+
aliasTo?: string | null | undefined;
|
|
99387
|
+
value?: {
|
|
99388
|
+
fontSize: {
|
|
99389
|
+
aliasTo?: string | null | undefined;
|
|
99390
|
+
value?: {
|
|
99391
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99392
|
+
measure: number;
|
|
99393
|
+
} | null | undefined;
|
|
99394
|
+
};
|
|
99395
|
+
fontFamily: {
|
|
99396
|
+
aliasTo?: string | null | undefined;
|
|
99397
|
+
value?: string | null | undefined;
|
|
99398
|
+
};
|
|
99399
|
+
fontWeight: {
|
|
99400
|
+
aliasTo?: string | null | undefined;
|
|
99401
|
+
value?: string | null | undefined;
|
|
99402
|
+
};
|
|
99403
|
+
textDecoration: {
|
|
99404
|
+
aliasTo?: string | null | undefined;
|
|
99405
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99406
|
+
};
|
|
99407
|
+
textCase: {
|
|
99408
|
+
aliasTo?: string | null | undefined;
|
|
99409
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99410
|
+
};
|
|
99411
|
+
letterSpacing?: {
|
|
99412
|
+
aliasTo?: string | null | undefined;
|
|
99413
|
+
value?: {
|
|
99414
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99415
|
+
measure: number;
|
|
99416
|
+
} | null | undefined;
|
|
99417
|
+
} | undefined;
|
|
99418
|
+
lineHeight?: {
|
|
99419
|
+
aliasTo?: string | null | undefined;
|
|
99420
|
+
value?: {
|
|
99421
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99422
|
+
measure: number;
|
|
99423
|
+
} | null | undefined;
|
|
99424
|
+
} | undefined;
|
|
99425
|
+
paragraphIndent?: {
|
|
99426
|
+
aliasTo?: string | null | undefined;
|
|
99427
|
+
value?: {
|
|
99428
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99429
|
+
measure: number;
|
|
99430
|
+
} | null | undefined;
|
|
99431
|
+
} | undefined;
|
|
99432
|
+
paragraphSpacing?: {
|
|
99433
|
+
aliasTo?: string | null | undefined;
|
|
99434
|
+
value?: {
|
|
99435
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99436
|
+
measure: number;
|
|
99437
|
+
} | null | undefined;
|
|
99438
|
+
} | undefined;
|
|
99439
|
+
} | null | undefined;
|
|
99440
|
+
}>]>;
|
|
100003
99441
|
}, "strip", z.ZodTypeAny, {
|
|
100004
|
-
|
|
100005
|
-
|
|
100006
|
-
|
|
100007
|
-
|
|
100008
|
-
|
|
100009
|
-
|
|
99442
|
+
value: (string | number | boolean | {
|
|
99443
|
+
aliasTo?: string | undefined;
|
|
99444
|
+
value?: {
|
|
99445
|
+
opacity: {
|
|
99446
|
+
aliasTo?: string | undefined;
|
|
99447
|
+
value?: {
|
|
99448
|
+
unit: "Pixels" | "Raw";
|
|
99449
|
+
measure: number;
|
|
99450
|
+
} | undefined;
|
|
99451
|
+
};
|
|
99452
|
+
color: (string | {
|
|
99453
|
+
aliasTo?: string | undefined;
|
|
99454
|
+
}) & (string | {
|
|
99455
|
+
aliasTo?: string | undefined;
|
|
99456
|
+
} | undefined);
|
|
99457
|
+
} | undefined;
|
|
99458
|
+
} | {
|
|
99459
|
+
aliasTo?: string | undefined;
|
|
99460
|
+
value?: {
|
|
99461
|
+
fontSize: {
|
|
99462
|
+
aliasTo?: string | undefined;
|
|
99463
|
+
value?: {
|
|
99464
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99465
|
+
measure: number;
|
|
99466
|
+
} | undefined;
|
|
99467
|
+
};
|
|
99468
|
+
fontFamily: {
|
|
99469
|
+
aliasTo?: string | undefined;
|
|
99470
|
+
value?: string | undefined;
|
|
99471
|
+
};
|
|
99472
|
+
fontWeight: {
|
|
99473
|
+
aliasTo?: string | undefined;
|
|
99474
|
+
value?: string | undefined;
|
|
99475
|
+
};
|
|
99476
|
+
textDecoration: {
|
|
99477
|
+
aliasTo?: string | undefined;
|
|
99478
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99479
|
+
};
|
|
99480
|
+
textCase: {
|
|
99481
|
+
aliasTo?: string | undefined;
|
|
99482
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99483
|
+
};
|
|
99484
|
+
letterSpacing?: {
|
|
99485
|
+
aliasTo?: string | undefined;
|
|
99486
|
+
value?: {
|
|
99487
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99488
|
+
measure: number;
|
|
99489
|
+
} | undefined;
|
|
99490
|
+
} | undefined;
|
|
99491
|
+
lineHeight?: {
|
|
99492
|
+
aliasTo?: string | undefined;
|
|
99493
|
+
value?: {
|
|
99494
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99495
|
+
measure: number;
|
|
99496
|
+
} | undefined;
|
|
99497
|
+
} | undefined;
|
|
99498
|
+
paragraphIndent?: {
|
|
99499
|
+
aliasTo?: string | undefined;
|
|
99500
|
+
value?: {
|
|
99501
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99502
|
+
measure: number;
|
|
99503
|
+
} | undefined;
|
|
99504
|
+
} | undefined;
|
|
99505
|
+
paragraphSpacing?: {
|
|
99506
|
+
aliasTo?: string | undefined;
|
|
99507
|
+
value?: {
|
|
99508
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99509
|
+
measure: number;
|
|
99510
|
+
} | undefined;
|
|
99511
|
+
} | undefined;
|
|
99512
|
+
} | undefined;
|
|
99513
|
+
} | {
|
|
99514
|
+
asset?: {
|
|
99515
|
+
type: "image" | "figmaFrame";
|
|
99516
|
+
id?: string | undefined;
|
|
99517
|
+
url?: string | undefined;
|
|
99518
|
+
figmaFrame?: {
|
|
99519
|
+
persistentId: string;
|
|
99520
|
+
sourceId: string;
|
|
99521
|
+
sourceFrameId: string;
|
|
99522
|
+
title?: string | undefined;
|
|
99523
|
+
description?: string | undefined;
|
|
99524
|
+
backgroundColor?: {
|
|
99525
|
+
value: string;
|
|
99526
|
+
} | undefined;
|
|
99527
|
+
origin?: {
|
|
99528
|
+
sourceFileName?: string | undefined;
|
|
99529
|
+
title?: string | undefined;
|
|
99530
|
+
previewUrl?: string | undefined;
|
|
99531
|
+
valid?: boolean | undefined;
|
|
99532
|
+
referenceId?: string | undefined;
|
|
99533
|
+
assetId?: string | undefined;
|
|
99534
|
+
assetScale?: number | undefined;
|
|
99535
|
+
width?: number | undefined;
|
|
99536
|
+
height?: number | undefined;
|
|
99537
|
+
} | undefined;
|
|
99538
|
+
} | undefined;
|
|
99539
|
+
} | undefined;
|
|
99540
|
+
assetId?: string | undefined;
|
|
99541
|
+
assetUrl?: string | undefined;
|
|
99542
|
+
}) & (string | number | boolean | {
|
|
99543
|
+
aliasTo?: string | undefined;
|
|
99544
|
+
value?: {
|
|
99545
|
+
opacity: {
|
|
99546
|
+
aliasTo?: string | undefined;
|
|
99547
|
+
value?: {
|
|
99548
|
+
unit: "Pixels" | "Raw";
|
|
99549
|
+
measure: number;
|
|
99550
|
+
} | undefined;
|
|
99551
|
+
};
|
|
99552
|
+
color: (string | {
|
|
99553
|
+
aliasTo?: string | undefined;
|
|
99554
|
+
}) & (string | {
|
|
99555
|
+
aliasTo?: string | undefined;
|
|
99556
|
+
} | undefined);
|
|
99557
|
+
} | undefined;
|
|
99558
|
+
} | {
|
|
99559
|
+
aliasTo?: string | undefined;
|
|
99560
|
+
value?: {
|
|
99561
|
+
fontSize: {
|
|
99562
|
+
aliasTo?: string | undefined;
|
|
99563
|
+
value?: {
|
|
99564
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99565
|
+
measure: number;
|
|
99566
|
+
} | undefined;
|
|
99567
|
+
};
|
|
99568
|
+
fontFamily: {
|
|
99569
|
+
aliasTo?: string | undefined;
|
|
99570
|
+
value?: string | undefined;
|
|
99571
|
+
};
|
|
99572
|
+
fontWeight: {
|
|
99573
|
+
aliasTo?: string | undefined;
|
|
99574
|
+
value?: string | undefined;
|
|
99575
|
+
};
|
|
99576
|
+
textDecoration: {
|
|
99577
|
+
aliasTo?: string | undefined;
|
|
99578
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99579
|
+
};
|
|
99580
|
+
textCase: {
|
|
99581
|
+
aliasTo?: string | undefined;
|
|
99582
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99583
|
+
};
|
|
99584
|
+
letterSpacing?: {
|
|
99585
|
+
aliasTo?: string | undefined;
|
|
99586
|
+
value?: {
|
|
99587
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99588
|
+
measure: number;
|
|
99589
|
+
} | undefined;
|
|
99590
|
+
} | undefined;
|
|
99591
|
+
lineHeight?: {
|
|
99592
|
+
aliasTo?: string | undefined;
|
|
99593
|
+
value?: {
|
|
99594
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99595
|
+
measure: number;
|
|
99596
|
+
} | undefined;
|
|
99597
|
+
} | undefined;
|
|
99598
|
+
paragraphIndent?: {
|
|
99599
|
+
aliasTo?: string | undefined;
|
|
99600
|
+
value?: {
|
|
99601
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99602
|
+
measure: number;
|
|
99603
|
+
} | undefined;
|
|
99604
|
+
} | undefined;
|
|
99605
|
+
paragraphSpacing?: {
|
|
99606
|
+
aliasTo?: string | undefined;
|
|
99607
|
+
value?: {
|
|
99608
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99609
|
+
measure: number;
|
|
99610
|
+
} | undefined;
|
|
99611
|
+
} | undefined;
|
|
99612
|
+
} | undefined;
|
|
99613
|
+
} | {
|
|
99614
|
+
asset?: {
|
|
99615
|
+
type: "image" | "figmaFrame";
|
|
99616
|
+
id?: string | undefined;
|
|
99617
|
+
url?: string | undefined;
|
|
99618
|
+
figmaFrame?: {
|
|
99619
|
+
persistentId: string;
|
|
99620
|
+
sourceId: string;
|
|
99621
|
+
sourceFrameId: string;
|
|
99622
|
+
title?: string | undefined;
|
|
99623
|
+
description?: string | undefined;
|
|
99624
|
+
backgroundColor?: {
|
|
99625
|
+
value: string;
|
|
99626
|
+
} | undefined;
|
|
99627
|
+
origin?: {
|
|
99628
|
+
sourceFileName?: string | undefined;
|
|
99629
|
+
title?: string | undefined;
|
|
99630
|
+
previewUrl?: string | undefined;
|
|
99631
|
+
valid?: boolean | undefined;
|
|
99632
|
+
referenceId?: string | undefined;
|
|
99633
|
+
assetId?: string | undefined;
|
|
99634
|
+
assetScale?: number | undefined;
|
|
99635
|
+
width?: number | undefined;
|
|
99636
|
+
height?: number | undefined;
|
|
99637
|
+
} | undefined;
|
|
99638
|
+
} | undefined;
|
|
99639
|
+
} | undefined;
|
|
99640
|
+
assetId?: string | undefined;
|
|
99641
|
+
assetUrl?: string | undefined;
|
|
99642
|
+
} | undefined);
|
|
99643
|
+
key: string;
|
|
100010
99644
|
}, {
|
|
100011
|
-
|
|
100012
|
-
|
|
100013
|
-
|
|
100014
|
-
|
|
100015
|
-
|
|
100016
|
-
|
|
100017
|
-
|
|
100018
|
-
|
|
100019
|
-
|
|
100020
|
-
|
|
100021
|
-
|
|
100022
|
-
|
|
100023
|
-
|
|
100024
|
-
|
|
100025
|
-
|
|
100026
|
-
|
|
100027
|
-
|
|
100028
|
-
|
|
100029
|
-
|
|
100030
|
-
|
|
100031
|
-
|
|
100032
|
-
|
|
100033
|
-
|
|
100034
|
-
|
|
100035
|
-
|
|
100036
|
-
|
|
100037
|
-
|
|
100038
|
-
|
|
100039
|
-
|
|
100040
|
-
|
|
100041
|
-
|
|
100042
|
-
|
|
100043
|
-
|
|
100044
|
-
|
|
100045
|
-
|
|
100046
|
-
|
|
100047
|
-
|
|
100048
|
-
|
|
100049
|
-
|
|
100050
|
-
|
|
100051
|
-
|
|
100052
|
-
|
|
100053
|
-
|
|
100054
|
-
|
|
100055
|
-
|
|
100056
|
-
|
|
100057
|
-
|
|
100058
|
-
|
|
100059
|
-
|
|
100060
|
-
|
|
100061
|
-
|
|
100062
|
-
|
|
100063
|
-
|
|
100064
|
-
|
|
100065
|
-
|
|
100066
|
-
|
|
100067
|
-
|
|
100068
|
-
|
|
100069
|
-
|
|
100070
|
-
|
|
100071
|
-
|
|
100072
|
-
|
|
100073
|
-
|
|
100074
|
-
|
|
100075
|
-
|
|
100076
|
-
|
|
100077
|
-
|
|
100078
|
-
|
|
100079
|
-
|
|
100080
|
-
|
|
100081
|
-
|
|
100082
|
-
}
|
|
99645
|
+
value: (string | number | boolean | {
|
|
99646
|
+
aliasTo?: string | null | undefined;
|
|
99647
|
+
value?: {
|
|
99648
|
+
opacity: {
|
|
99649
|
+
aliasTo?: string | null | undefined;
|
|
99650
|
+
value?: {
|
|
99651
|
+
unit: "Pixels" | "Raw";
|
|
99652
|
+
measure: number;
|
|
99653
|
+
} | null | undefined;
|
|
99654
|
+
};
|
|
99655
|
+
color: (string | {
|
|
99656
|
+
aliasTo?: string | null | undefined;
|
|
99657
|
+
}) & (string | {
|
|
99658
|
+
aliasTo?: string | null | undefined;
|
|
99659
|
+
} | undefined);
|
|
99660
|
+
} | null | undefined;
|
|
99661
|
+
} | {
|
|
99662
|
+
aliasTo?: string | null | undefined;
|
|
99663
|
+
value?: {
|
|
99664
|
+
fontSize: {
|
|
99665
|
+
aliasTo?: string | null | undefined;
|
|
99666
|
+
value?: {
|
|
99667
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99668
|
+
measure: number;
|
|
99669
|
+
} | null | undefined;
|
|
99670
|
+
};
|
|
99671
|
+
fontFamily: {
|
|
99672
|
+
aliasTo?: string | null | undefined;
|
|
99673
|
+
value?: string | null | undefined;
|
|
99674
|
+
};
|
|
99675
|
+
fontWeight: {
|
|
99676
|
+
aliasTo?: string | null | undefined;
|
|
99677
|
+
value?: string | null | undefined;
|
|
99678
|
+
};
|
|
99679
|
+
textDecoration: {
|
|
99680
|
+
aliasTo?: string | null | undefined;
|
|
99681
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99682
|
+
};
|
|
99683
|
+
textCase: {
|
|
99684
|
+
aliasTo?: string | null | undefined;
|
|
99685
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99686
|
+
};
|
|
99687
|
+
letterSpacing?: {
|
|
99688
|
+
aliasTo?: string | null | undefined;
|
|
99689
|
+
value?: {
|
|
99690
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99691
|
+
measure: number;
|
|
99692
|
+
} | null | undefined;
|
|
99693
|
+
} | undefined;
|
|
99694
|
+
lineHeight?: {
|
|
99695
|
+
aliasTo?: string | null | undefined;
|
|
99696
|
+
value?: {
|
|
99697
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99698
|
+
measure: number;
|
|
99699
|
+
} | null | undefined;
|
|
99700
|
+
} | undefined;
|
|
99701
|
+
paragraphIndent?: {
|
|
99702
|
+
aliasTo?: string | null | undefined;
|
|
99703
|
+
value?: {
|
|
99704
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99705
|
+
measure: number;
|
|
99706
|
+
} | null | undefined;
|
|
99707
|
+
} | undefined;
|
|
99708
|
+
paragraphSpacing?: {
|
|
99709
|
+
aliasTo?: string | null | undefined;
|
|
99710
|
+
value?: {
|
|
99711
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99712
|
+
measure: number;
|
|
99713
|
+
} | null | undefined;
|
|
99714
|
+
} | undefined;
|
|
99715
|
+
} | null | undefined;
|
|
99716
|
+
} | {
|
|
99717
|
+
asset?: {
|
|
99718
|
+
type: "image" | "figmaFrame";
|
|
99719
|
+
id?: string | null | undefined;
|
|
99720
|
+
url?: string | null | undefined;
|
|
99721
|
+
figmaFrame?: {
|
|
99722
|
+
persistentId: string;
|
|
99723
|
+
sourceId: string;
|
|
99724
|
+
sourceFrameId: string;
|
|
99725
|
+
title?: string | null | undefined;
|
|
99726
|
+
description?: string | null | undefined;
|
|
99727
|
+
backgroundColor?: {
|
|
99728
|
+
value: string;
|
|
99729
|
+
} | null | undefined;
|
|
99730
|
+
origin?: {
|
|
99731
|
+
sourceFileName?: string | null | undefined;
|
|
99732
|
+
title?: string | null | undefined;
|
|
99733
|
+
previewUrl?: string | null | undefined;
|
|
99734
|
+
valid?: boolean | null | undefined;
|
|
99735
|
+
referenceId?: string | null | undefined;
|
|
99736
|
+
assetId?: string | null | undefined;
|
|
99737
|
+
assetScale?: number | null | undefined;
|
|
99738
|
+
width?: number | null | undefined;
|
|
99739
|
+
height?: number | null | undefined;
|
|
99740
|
+
} | null | undefined;
|
|
99741
|
+
} | null | undefined;
|
|
99742
|
+
} | undefined;
|
|
99743
|
+
assetId?: string | undefined;
|
|
99744
|
+
assetUrl?: string | undefined;
|
|
99745
|
+
}) & (string | number | boolean | {
|
|
99746
|
+
aliasTo?: string | null | undefined;
|
|
99747
|
+
value?: {
|
|
99748
|
+
opacity: {
|
|
99749
|
+
aliasTo?: string | null | undefined;
|
|
99750
|
+
value?: {
|
|
99751
|
+
unit: "Pixels" | "Raw";
|
|
99752
|
+
measure: number;
|
|
99753
|
+
} | null | undefined;
|
|
99754
|
+
};
|
|
99755
|
+
color: (string | {
|
|
99756
|
+
aliasTo?: string | null | undefined;
|
|
99757
|
+
}) & (string | {
|
|
99758
|
+
aliasTo?: string | null | undefined;
|
|
99759
|
+
} | undefined);
|
|
99760
|
+
} | null | undefined;
|
|
99761
|
+
} | {
|
|
99762
|
+
aliasTo?: string | null | undefined;
|
|
99763
|
+
value?: {
|
|
99764
|
+
fontSize: {
|
|
99765
|
+
aliasTo?: string | null | undefined;
|
|
99766
|
+
value?: {
|
|
99767
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99768
|
+
measure: number;
|
|
99769
|
+
} | null | undefined;
|
|
99770
|
+
};
|
|
99771
|
+
fontFamily: {
|
|
99772
|
+
aliasTo?: string | null | undefined;
|
|
99773
|
+
value?: string | null | undefined;
|
|
99774
|
+
};
|
|
99775
|
+
fontWeight: {
|
|
99776
|
+
aliasTo?: string | null | undefined;
|
|
99777
|
+
value?: string | null | undefined;
|
|
99778
|
+
};
|
|
99779
|
+
textDecoration: {
|
|
99780
|
+
aliasTo?: string | null | undefined;
|
|
99781
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
99782
|
+
};
|
|
99783
|
+
textCase: {
|
|
99784
|
+
aliasTo?: string | null | undefined;
|
|
99785
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
99786
|
+
};
|
|
99787
|
+
letterSpacing?: {
|
|
99788
|
+
aliasTo?: string | null | undefined;
|
|
99789
|
+
value?: {
|
|
99790
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99791
|
+
measure: number;
|
|
99792
|
+
} | null | undefined;
|
|
99793
|
+
} | undefined;
|
|
99794
|
+
lineHeight?: {
|
|
99795
|
+
aliasTo?: string | null | undefined;
|
|
99796
|
+
value?: {
|
|
99797
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99798
|
+
measure: number;
|
|
99799
|
+
} | null | undefined;
|
|
99800
|
+
} | undefined;
|
|
99801
|
+
paragraphIndent?: {
|
|
99802
|
+
aliasTo?: string | null | undefined;
|
|
99803
|
+
value?: {
|
|
99804
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99805
|
+
measure: number;
|
|
99806
|
+
} | null | undefined;
|
|
99807
|
+
} | undefined;
|
|
99808
|
+
paragraphSpacing?: {
|
|
99809
|
+
aliasTo?: string | null | undefined;
|
|
99810
|
+
value?: {
|
|
99811
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99812
|
+
measure: number;
|
|
99813
|
+
} | null | undefined;
|
|
99814
|
+
} | undefined;
|
|
99815
|
+
} | null | undefined;
|
|
99816
|
+
} | {
|
|
99817
|
+
asset?: {
|
|
99818
|
+
type: "image" | "figmaFrame";
|
|
99819
|
+
id?: string | null | undefined;
|
|
99820
|
+
url?: string | null | undefined;
|
|
99821
|
+
figmaFrame?: {
|
|
99822
|
+
persistentId: string;
|
|
99823
|
+
sourceId: string;
|
|
99824
|
+
sourceFrameId: string;
|
|
99825
|
+
title?: string | null | undefined;
|
|
99826
|
+
description?: string | null | undefined;
|
|
99827
|
+
backgroundColor?: {
|
|
99828
|
+
value: string;
|
|
99829
|
+
} | null | undefined;
|
|
99830
|
+
origin?: {
|
|
99831
|
+
sourceFileName?: string | null | undefined;
|
|
99832
|
+
title?: string | null | undefined;
|
|
99833
|
+
previewUrl?: string | null | undefined;
|
|
99834
|
+
valid?: boolean | null | undefined;
|
|
99835
|
+
referenceId?: string | null | undefined;
|
|
99836
|
+
assetId?: string | null | undefined;
|
|
99837
|
+
assetScale?: number | null | undefined;
|
|
99838
|
+
width?: number | null | undefined;
|
|
99839
|
+
height?: number | null | undefined;
|
|
99840
|
+
} | null | undefined;
|
|
99841
|
+
} | null | undefined;
|
|
99842
|
+
} | undefined;
|
|
99843
|
+
assetId?: string | undefined;
|
|
99844
|
+
assetUrl?: string | undefined;
|
|
99845
|
+
} | undefined);
|
|
99846
|
+
key: string;
|
|
99847
|
+
}>, "many">;
|
|
99848
|
+
documentation: z.ZodOptional<z.ZodObject<{
|
|
99849
|
+
isSingleVersionDocs: z.ZodBoolean;
|
|
99850
|
+
versionSlug: z.ZodString;
|
|
99851
|
+
environment: z.ZodEnum<["Live", "Preview"]>;
|
|
100083
99852
|
}, "strip", z.ZodTypeAny, {
|
|
100084
|
-
|
|
100085
|
-
|
|
100086
|
-
|
|
100087
|
-
files: string[];
|
|
100088
|
-
bucket: string;
|
|
100089
|
-
urlPrefix?: string | undefined;
|
|
100090
|
-
} | undefined;
|
|
100091
|
-
github?: {
|
|
100092
|
-
pullRequestUrl: string;
|
|
100093
|
-
} | undefined;
|
|
100094
|
-
azure?: {
|
|
100095
|
-
pullRequestUrl: string;
|
|
100096
|
-
} | undefined;
|
|
100097
|
-
gitlab?: {
|
|
100098
|
-
pullRequestUrl: string;
|
|
100099
|
-
} | undefined;
|
|
100100
|
-
bitbucket?: {
|
|
100101
|
-
pullRequestUrl: string;
|
|
100102
|
-
} | undefined;
|
|
100103
|
-
sndocs?: {
|
|
100104
|
-
url: string;
|
|
100105
|
-
} | undefined;
|
|
99853
|
+
environment: "Live" | "Preview";
|
|
99854
|
+
isSingleVersionDocs: boolean;
|
|
99855
|
+
versionSlug: string;
|
|
100106
99856
|
}, {
|
|
100107
|
-
|
|
100108
|
-
|
|
100109
|
-
|
|
100110
|
-
files: string[];
|
|
100111
|
-
bucket: string;
|
|
100112
|
-
urlPrefix?: string | undefined;
|
|
100113
|
-
} | undefined;
|
|
100114
|
-
github?: {
|
|
100115
|
-
pullRequestUrl: string;
|
|
100116
|
-
} | undefined;
|
|
100117
|
-
azure?: {
|
|
100118
|
-
pullRequestUrl: string;
|
|
100119
|
-
} | undefined;
|
|
100120
|
-
gitlab?: {
|
|
100121
|
-
pullRequestUrl: string;
|
|
100122
|
-
} | undefined;
|
|
100123
|
-
bitbucket?: {
|
|
100124
|
-
pullRequestUrl: string;
|
|
100125
|
-
} | undefined;
|
|
100126
|
-
sndocs?: {
|
|
100127
|
-
url: string;
|
|
100128
|
-
} | undefined;
|
|
99857
|
+
environment: "Live" | "Preview";
|
|
99858
|
+
isSingleVersionDocs: boolean;
|
|
99859
|
+
versionSlug: string;
|
|
100129
99860
|
}>>;
|
|
100130
|
-
createdByUserId: z.ZodOptional<z.ZodString>;
|
|
100131
99861
|
}, "strip", z.ZodTypeAny, {
|
|
100132
|
-
id: string;
|
|
100133
|
-
createdAt: Date;
|
|
100134
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100135
99862
|
designSystemId: string;
|
|
99863
|
+
accessToken: string;
|
|
100136
99864
|
designSystemVersionId: string;
|
|
100137
|
-
|
|
100138
|
-
|
|
100139
|
-
|
|
100140
|
-
|
|
99865
|
+
apiUrl: string;
|
|
99866
|
+
exporterPackageUrl: string;
|
|
99867
|
+
exporterPropertyValues: {
|
|
99868
|
+
value: (string | number | boolean | {
|
|
99869
|
+
aliasTo?: string | undefined;
|
|
99870
|
+
value?: {
|
|
99871
|
+
opacity: {
|
|
99872
|
+
aliasTo?: string | undefined;
|
|
99873
|
+
value?: {
|
|
99874
|
+
unit: "Pixels" | "Raw";
|
|
99875
|
+
measure: number;
|
|
99876
|
+
} | undefined;
|
|
99877
|
+
};
|
|
99878
|
+
color: (string | {
|
|
99879
|
+
aliasTo?: string | undefined;
|
|
99880
|
+
}) & (string | {
|
|
99881
|
+
aliasTo?: string | undefined;
|
|
99882
|
+
} | undefined);
|
|
99883
|
+
} | undefined;
|
|
99884
|
+
} | {
|
|
99885
|
+
aliasTo?: string | undefined;
|
|
99886
|
+
value?: {
|
|
99887
|
+
fontSize: {
|
|
99888
|
+
aliasTo?: string | undefined;
|
|
99889
|
+
value?: {
|
|
99890
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99891
|
+
measure: number;
|
|
99892
|
+
} | undefined;
|
|
99893
|
+
};
|
|
99894
|
+
fontFamily: {
|
|
99895
|
+
aliasTo?: string | undefined;
|
|
99896
|
+
value?: string | undefined;
|
|
99897
|
+
};
|
|
99898
|
+
fontWeight: {
|
|
99899
|
+
aliasTo?: string | undefined;
|
|
99900
|
+
value?: string | undefined;
|
|
99901
|
+
};
|
|
99902
|
+
textDecoration: {
|
|
99903
|
+
aliasTo?: string | undefined;
|
|
99904
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
99905
|
+
};
|
|
99906
|
+
textCase: {
|
|
99907
|
+
aliasTo?: string | undefined;
|
|
99908
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
99909
|
+
};
|
|
99910
|
+
letterSpacing?: {
|
|
99911
|
+
aliasTo?: string | undefined;
|
|
99912
|
+
value?: {
|
|
99913
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99914
|
+
measure: number;
|
|
99915
|
+
} | undefined;
|
|
99916
|
+
} | undefined;
|
|
99917
|
+
lineHeight?: {
|
|
99918
|
+
aliasTo?: string | undefined;
|
|
99919
|
+
value?: {
|
|
99920
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
99921
|
+
measure: number;
|
|
99922
|
+
} | undefined;
|
|
99923
|
+
} | undefined;
|
|
99924
|
+
paragraphIndent?: {
|
|
99925
|
+
aliasTo?: string | undefined;
|
|
99926
|
+
value?: {
|
|
99927
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99928
|
+
measure: number;
|
|
99929
|
+
} | undefined;
|
|
99930
|
+
} | undefined;
|
|
99931
|
+
paragraphSpacing?: {
|
|
99932
|
+
aliasTo?: string | undefined;
|
|
99933
|
+
value?: {
|
|
99934
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99935
|
+
measure: number;
|
|
99936
|
+
} | undefined;
|
|
99937
|
+
} | undefined;
|
|
99938
|
+
} | undefined;
|
|
99939
|
+
} | {
|
|
99940
|
+
asset?: {
|
|
99941
|
+
type: "image" | "figmaFrame";
|
|
99942
|
+
id?: string | undefined;
|
|
99943
|
+
url?: string | undefined;
|
|
99944
|
+
figmaFrame?: {
|
|
99945
|
+
persistentId: string;
|
|
99946
|
+
sourceId: string;
|
|
99947
|
+
sourceFrameId: string;
|
|
99948
|
+
title?: string | undefined;
|
|
99949
|
+
description?: string | undefined;
|
|
99950
|
+
backgroundColor?: {
|
|
99951
|
+
value: string;
|
|
99952
|
+
} | undefined;
|
|
99953
|
+
origin?: {
|
|
99954
|
+
sourceFileName?: string | undefined;
|
|
99955
|
+
title?: string | undefined;
|
|
99956
|
+
previewUrl?: string | undefined;
|
|
99957
|
+
valid?: boolean | undefined;
|
|
99958
|
+
referenceId?: string | undefined;
|
|
99959
|
+
assetId?: string | undefined;
|
|
99960
|
+
assetScale?: number | undefined;
|
|
99961
|
+
width?: number | undefined;
|
|
99962
|
+
height?: number | undefined;
|
|
99963
|
+
} | undefined;
|
|
99964
|
+
} | undefined;
|
|
99965
|
+
} | undefined;
|
|
99966
|
+
assetId?: string | undefined;
|
|
99967
|
+
assetUrl?: string | undefined;
|
|
99968
|
+
}) & (string | number | boolean | {
|
|
99969
|
+
aliasTo?: string | undefined;
|
|
99970
|
+
value?: {
|
|
99971
|
+
opacity: {
|
|
99972
|
+
aliasTo?: string | undefined;
|
|
99973
|
+
value?: {
|
|
99974
|
+
unit: "Pixels" | "Raw";
|
|
99975
|
+
measure: number;
|
|
99976
|
+
} | undefined;
|
|
99977
|
+
};
|
|
99978
|
+
color: (string | {
|
|
99979
|
+
aliasTo?: string | undefined;
|
|
99980
|
+
}) & (string | {
|
|
99981
|
+
aliasTo?: string | undefined;
|
|
99982
|
+
} | undefined);
|
|
99983
|
+
} | undefined;
|
|
99984
|
+
} | {
|
|
99985
|
+
aliasTo?: string | undefined;
|
|
99986
|
+
value?: {
|
|
99987
|
+
fontSize: {
|
|
99988
|
+
aliasTo?: string | undefined;
|
|
99989
|
+
value?: {
|
|
99990
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
99991
|
+
measure: number;
|
|
99992
|
+
} | undefined;
|
|
99993
|
+
};
|
|
99994
|
+
fontFamily: {
|
|
99995
|
+
aliasTo?: string | undefined;
|
|
99996
|
+
value?: string | undefined;
|
|
99997
|
+
};
|
|
99998
|
+
fontWeight: {
|
|
99999
|
+
aliasTo?: string | undefined;
|
|
100000
|
+
value?: string | undefined;
|
|
100001
|
+
};
|
|
100002
|
+
textDecoration: {
|
|
100003
|
+
aliasTo?: string | undefined;
|
|
100004
|
+
value?: "None" | "Strikethrough" | "Underline" | undefined;
|
|
100005
|
+
};
|
|
100006
|
+
textCase: {
|
|
100007
|
+
aliasTo?: string | undefined;
|
|
100008
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | undefined;
|
|
100009
|
+
};
|
|
100010
|
+
letterSpacing?: {
|
|
100011
|
+
aliasTo?: string | undefined;
|
|
100012
|
+
value?: {
|
|
100013
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100014
|
+
measure: number;
|
|
100015
|
+
} | undefined;
|
|
100016
|
+
} | undefined;
|
|
100017
|
+
lineHeight?: {
|
|
100018
|
+
aliasTo?: string | undefined;
|
|
100019
|
+
value?: {
|
|
100020
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
100021
|
+
measure: number;
|
|
100022
|
+
} | undefined;
|
|
100023
|
+
} | undefined;
|
|
100024
|
+
paragraphIndent?: {
|
|
100025
|
+
aliasTo?: string | undefined;
|
|
100026
|
+
value?: {
|
|
100027
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100028
|
+
measure: number;
|
|
100029
|
+
} | undefined;
|
|
100030
|
+
} | undefined;
|
|
100031
|
+
paragraphSpacing?: {
|
|
100032
|
+
aliasTo?: string | undefined;
|
|
100033
|
+
value?: {
|
|
100034
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100035
|
+
measure: number;
|
|
100036
|
+
} | undefined;
|
|
100037
|
+
} | undefined;
|
|
100038
|
+
} | undefined;
|
|
100039
|
+
} | {
|
|
100040
|
+
asset?: {
|
|
100041
|
+
type: "image" | "figmaFrame";
|
|
100042
|
+
id?: string | undefined;
|
|
100043
|
+
url?: string | undefined;
|
|
100044
|
+
figmaFrame?: {
|
|
100045
|
+
persistentId: string;
|
|
100046
|
+
sourceId: string;
|
|
100047
|
+
sourceFrameId: string;
|
|
100048
|
+
title?: string | undefined;
|
|
100049
|
+
description?: string | undefined;
|
|
100050
|
+
backgroundColor?: {
|
|
100051
|
+
value: string;
|
|
100052
|
+
} | undefined;
|
|
100053
|
+
origin?: {
|
|
100054
|
+
sourceFileName?: string | undefined;
|
|
100055
|
+
title?: string | undefined;
|
|
100056
|
+
previewUrl?: string | undefined;
|
|
100057
|
+
valid?: boolean | undefined;
|
|
100058
|
+
referenceId?: string | undefined;
|
|
100059
|
+
assetId?: string | undefined;
|
|
100060
|
+
assetScale?: number | undefined;
|
|
100061
|
+
width?: number | undefined;
|
|
100062
|
+
height?: number | undefined;
|
|
100063
|
+
} | undefined;
|
|
100064
|
+
} | undefined;
|
|
100065
|
+
} | undefined;
|
|
100066
|
+
assetId?: string | undefined;
|
|
100067
|
+
assetUrl?: string | undefined;
|
|
100068
|
+
} | undefined);
|
|
100069
|
+
key: string;
|
|
100070
|
+
}[];
|
|
100071
|
+
brandId?: string | undefined;
|
|
100072
|
+
documentation?: {
|
|
100141
100073
|
environment: "Live" | "Preview";
|
|
100074
|
+
isSingleVersionDocs: boolean;
|
|
100075
|
+
versionSlug: string;
|
|
100142
100076
|
} | undefined;
|
|
100143
|
-
|
|
100144
|
-
|
|
100145
|
-
|
|
100146
|
-
|
|
100147
|
-
|
|
100148
|
-
|
|
100149
|
-
|
|
100150
|
-
|
|
100151
|
-
|
|
100152
|
-
|
|
100153
|
-
|
|
100154
|
-
|
|
100155
|
-
|
|
100156
|
-
|
|
100157
|
-
|
|
100158
|
-
|
|
100159
|
-
|
|
100160
|
-
|
|
100161
|
-
|
|
100162
|
-
|
|
100163
|
-
|
|
100164
|
-
|
|
100165
|
-
|
|
100166
|
-
|
|
100167
|
-
|
|
100168
|
-
|
|
100169
|
-
|
|
100170
|
-
|
|
100171
|
-
|
|
100172
|
-
|
|
100077
|
+
}, {
|
|
100078
|
+
designSystemId: string;
|
|
100079
|
+
accessToken: string;
|
|
100080
|
+
designSystemVersionId: string;
|
|
100081
|
+
apiUrl: string;
|
|
100082
|
+
exporterPackageUrl: string;
|
|
100083
|
+
exporterPropertyValues: {
|
|
100084
|
+
value: (string | number | boolean | {
|
|
100085
|
+
aliasTo?: string | null | undefined;
|
|
100086
|
+
value?: {
|
|
100087
|
+
opacity: {
|
|
100088
|
+
aliasTo?: string | null | undefined;
|
|
100089
|
+
value?: {
|
|
100090
|
+
unit: "Pixels" | "Raw";
|
|
100091
|
+
measure: number;
|
|
100092
|
+
} | null | undefined;
|
|
100093
|
+
};
|
|
100094
|
+
color: (string | {
|
|
100095
|
+
aliasTo?: string | null | undefined;
|
|
100096
|
+
}) & (string | {
|
|
100097
|
+
aliasTo?: string | null | undefined;
|
|
100098
|
+
} | undefined);
|
|
100099
|
+
} | null | undefined;
|
|
100100
|
+
} | {
|
|
100101
|
+
aliasTo?: string | null | undefined;
|
|
100102
|
+
value?: {
|
|
100103
|
+
fontSize: {
|
|
100104
|
+
aliasTo?: string | null | undefined;
|
|
100105
|
+
value?: {
|
|
100106
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100107
|
+
measure: number;
|
|
100108
|
+
} | null | undefined;
|
|
100109
|
+
};
|
|
100110
|
+
fontFamily: {
|
|
100111
|
+
aliasTo?: string | null | undefined;
|
|
100112
|
+
value?: string | null | undefined;
|
|
100113
|
+
};
|
|
100114
|
+
fontWeight: {
|
|
100115
|
+
aliasTo?: string | null | undefined;
|
|
100116
|
+
value?: string | null | undefined;
|
|
100117
|
+
};
|
|
100118
|
+
textDecoration: {
|
|
100119
|
+
aliasTo?: string | null | undefined;
|
|
100120
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
100121
|
+
};
|
|
100122
|
+
textCase: {
|
|
100123
|
+
aliasTo?: string | null | undefined;
|
|
100124
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
100125
|
+
};
|
|
100126
|
+
letterSpacing?: {
|
|
100127
|
+
aliasTo?: string | null | undefined;
|
|
100128
|
+
value?: {
|
|
100129
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100130
|
+
measure: number;
|
|
100131
|
+
} | null | undefined;
|
|
100132
|
+
} | undefined;
|
|
100133
|
+
lineHeight?: {
|
|
100134
|
+
aliasTo?: string | null | undefined;
|
|
100135
|
+
value?: {
|
|
100136
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
100137
|
+
measure: number;
|
|
100138
|
+
} | null | undefined;
|
|
100139
|
+
} | undefined;
|
|
100140
|
+
paragraphIndent?: {
|
|
100141
|
+
aliasTo?: string | null | undefined;
|
|
100142
|
+
value?: {
|
|
100143
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100144
|
+
measure: number;
|
|
100145
|
+
} | null | undefined;
|
|
100146
|
+
} | undefined;
|
|
100147
|
+
paragraphSpacing?: {
|
|
100148
|
+
aliasTo?: string | null | undefined;
|
|
100149
|
+
value?: {
|
|
100150
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100151
|
+
measure: number;
|
|
100152
|
+
} | null | undefined;
|
|
100153
|
+
} | undefined;
|
|
100154
|
+
} | null | undefined;
|
|
100155
|
+
} | {
|
|
100156
|
+
asset?: {
|
|
100157
|
+
type: "image" | "figmaFrame";
|
|
100158
|
+
id?: string | null | undefined;
|
|
100159
|
+
url?: string | null | undefined;
|
|
100160
|
+
figmaFrame?: {
|
|
100161
|
+
persistentId: string;
|
|
100162
|
+
sourceId: string;
|
|
100163
|
+
sourceFrameId: string;
|
|
100164
|
+
title?: string | null | undefined;
|
|
100165
|
+
description?: string | null | undefined;
|
|
100166
|
+
backgroundColor?: {
|
|
100167
|
+
value: string;
|
|
100168
|
+
} | null | undefined;
|
|
100169
|
+
origin?: {
|
|
100170
|
+
sourceFileName?: string | null | undefined;
|
|
100171
|
+
title?: string | null | undefined;
|
|
100172
|
+
previewUrl?: string | null | undefined;
|
|
100173
|
+
valid?: boolean | null | undefined;
|
|
100174
|
+
referenceId?: string | null | undefined;
|
|
100175
|
+
assetId?: string | null | undefined;
|
|
100176
|
+
assetScale?: number | null | undefined;
|
|
100177
|
+
width?: number | null | undefined;
|
|
100178
|
+
height?: number | null | undefined;
|
|
100179
|
+
} | null | undefined;
|
|
100180
|
+
} | null | undefined;
|
|
100181
|
+
} | undefined;
|
|
100182
|
+
assetId?: string | undefined;
|
|
100183
|
+
assetUrl?: string | undefined;
|
|
100184
|
+
}) & (string | number | boolean | {
|
|
100185
|
+
aliasTo?: string | null | undefined;
|
|
100186
|
+
value?: {
|
|
100187
|
+
opacity: {
|
|
100188
|
+
aliasTo?: string | null | undefined;
|
|
100189
|
+
value?: {
|
|
100190
|
+
unit: "Pixels" | "Raw";
|
|
100191
|
+
measure: number;
|
|
100192
|
+
} | null | undefined;
|
|
100193
|
+
};
|
|
100194
|
+
color: (string | {
|
|
100195
|
+
aliasTo?: string | null | undefined;
|
|
100196
|
+
}) & (string | {
|
|
100197
|
+
aliasTo?: string | null | undefined;
|
|
100198
|
+
} | undefined);
|
|
100199
|
+
} | null | undefined;
|
|
100200
|
+
} | {
|
|
100201
|
+
aliasTo?: string | null | undefined;
|
|
100202
|
+
value?: {
|
|
100203
|
+
fontSize: {
|
|
100204
|
+
aliasTo?: string | null | undefined;
|
|
100205
|
+
value?: {
|
|
100206
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100207
|
+
measure: number;
|
|
100208
|
+
} | null | undefined;
|
|
100209
|
+
};
|
|
100210
|
+
fontFamily: {
|
|
100211
|
+
aliasTo?: string | null | undefined;
|
|
100212
|
+
value?: string | null | undefined;
|
|
100213
|
+
};
|
|
100214
|
+
fontWeight: {
|
|
100215
|
+
aliasTo?: string | null | undefined;
|
|
100216
|
+
value?: string | null | undefined;
|
|
100217
|
+
};
|
|
100218
|
+
textDecoration: {
|
|
100219
|
+
aliasTo?: string | null | undefined;
|
|
100220
|
+
value?: "None" | "Strikethrough" | "Underline" | null | undefined;
|
|
100221
|
+
};
|
|
100222
|
+
textCase: {
|
|
100223
|
+
aliasTo?: string | null | undefined;
|
|
100224
|
+
value?: "Original" | "Upper" | "Lower" | "Camel" | "SmallCaps" | null | undefined;
|
|
100225
|
+
};
|
|
100226
|
+
letterSpacing?: {
|
|
100227
|
+
aliasTo?: string | null | undefined;
|
|
100228
|
+
value?: {
|
|
100229
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100230
|
+
measure: number;
|
|
100231
|
+
} | null | undefined;
|
|
100232
|
+
} | undefined;
|
|
100233
|
+
lineHeight?: {
|
|
100234
|
+
aliasTo?: string | null | undefined;
|
|
100235
|
+
value?: {
|
|
100236
|
+
unit: "Pixels" | "Percent" | "Rem" | "Raw";
|
|
100237
|
+
measure: number;
|
|
100238
|
+
} | null | undefined;
|
|
100239
|
+
} | undefined;
|
|
100240
|
+
paragraphIndent?: {
|
|
100241
|
+
aliasTo?: string | null | undefined;
|
|
100242
|
+
value?: {
|
|
100243
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100244
|
+
measure: number;
|
|
100245
|
+
} | null | undefined;
|
|
100246
|
+
} | undefined;
|
|
100247
|
+
paragraphSpacing?: {
|
|
100248
|
+
aliasTo?: string | null | undefined;
|
|
100249
|
+
value?: {
|
|
100250
|
+
unit: "Pixels" | "Percent" | "Rem";
|
|
100251
|
+
measure: number;
|
|
100252
|
+
} | null | undefined;
|
|
100253
|
+
} | undefined;
|
|
100254
|
+
} | null | undefined;
|
|
100255
|
+
} | {
|
|
100256
|
+
asset?: {
|
|
100257
|
+
type: "image" | "figmaFrame";
|
|
100258
|
+
id?: string | null | undefined;
|
|
100259
|
+
url?: string | null | undefined;
|
|
100260
|
+
figmaFrame?: {
|
|
100261
|
+
persistentId: string;
|
|
100262
|
+
sourceId: string;
|
|
100263
|
+
sourceFrameId: string;
|
|
100264
|
+
title?: string | null | undefined;
|
|
100265
|
+
description?: string | null | undefined;
|
|
100266
|
+
backgroundColor?: {
|
|
100267
|
+
value: string;
|
|
100268
|
+
} | null | undefined;
|
|
100269
|
+
origin?: {
|
|
100270
|
+
sourceFileName?: string | null | undefined;
|
|
100271
|
+
title?: string | null | undefined;
|
|
100272
|
+
previewUrl?: string | null | undefined;
|
|
100273
|
+
valid?: boolean | null | undefined;
|
|
100274
|
+
referenceId?: string | null | undefined;
|
|
100275
|
+
assetId?: string | null | undefined;
|
|
100276
|
+
assetScale?: number | null | undefined;
|
|
100277
|
+
width?: number | null | undefined;
|
|
100278
|
+
height?: number | null | undefined;
|
|
100279
|
+
} | null | undefined;
|
|
100280
|
+
} | null | undefined;
|
|
100281
|
+
} | undefined;
|
|
100282
|
+
assetId?: string | undefined;
|
|
100283
|
+
assetUrl?: string | undefined;
|
|
100284
|
+
} | undefined);
|
|
100285
|
+
key: string;
|
|
100286
|
+
}[];
|
|
100173
100287
|
brandId?: string | undefined;
|
|
100174
|
-
|
|
100175
|
-
estimatedExecutionTime?: number | undefined;
|
|
100176
|
-
result?: {
|
|
100177
|
-
error?: string | undefined;
|
|
100178
|
-
s3?: {
|
|
100179
|
-
path: string;
|
|
100180
|
-
files: string[];
|
|
100181
|
-
bucket: string;
|
|
100182
|
-
urlPrefix?: string | undefined;
|
|
100183
|
-
} | undefined;
|
|
100184
|
-
github?: {
|
|
100185
|
-
pullRequestUrl: string;
|
|
100186
|
-
} | undefined;
|
|
100187
|
-
azure?: {
|
|
100188
|
-
pullRequestUrl: string;
|
|
100189
|
-
} | undefined;
|
|
100190
|
-
gitlab?: {
|
|
100191
|
-
pullRequestUrl: string;
|
|
100192
|
-
} | undefined;
|
|
100193
|
-
bitbucket?: {
|
|
100194
|
-
pullRequestUrl: string;
|
|
100195
|
-
} | undefined;
|
|
100196
|
-
sndocs?: {
|
|
100197
|
-
url: string;
|
|
100198
|
-
} | undefined;
|
|
100199
|
-
} | undefined;
|
|
100200
|
-
createdByUserId?: string | undefined;
|
|
100201
|
-
}, {
|
|
100202
|
-
id: string;
|
|
100203
|
-
createdAt: Date;
|
|
100204
|
-
status: "Timeout" | "Success" | "InProgress" | "Failed";
|
|
100205
|
-
designSystemId: string;
|
|
100206
|
-
designSystemVersionId: string;
|
|
100207
|
-
workspaceId: string;
|
|
100208
|
-
exporterId: string;
|
|
100209
|
-
webhookUrl?: string | undefined;
|
|
100210
|
-
destinationSnDocs?: {
|
|
100288
|
+
documentation?: {
|
|
100211
100289
|
environment: "Live" | "Preview";
|
|
100290
|
+
isSingleVersionDocs: boolean;
|
|
100291
|
+
versionSlug: string;
|
|
100212
100292
|
} | undefined;
|
|
100213
|
-
destinationS3?: {} | undefined;
|
|
100214
|
-
destinationGithub?: {
|
|
100215
|
-
connectionId: string;
|
|
100216
|
-
branch: string;
|
|
100217
|
-
relativePath: string;
|
|
100218
|
-
} | undefined;
|
|
100219
|
-
destinationAzure?: {
|
|
100220
|
-
connectionId: string;
|
|
100221
|
-
branch: string;
|
|
100222
|
-
relativePath: string;
|
|
100223
|
-
organizationId: string;
|
|
100224
|
-
projectId: string;
|
|
100225
|
-
repositoryId: string;
|
|
100226
|
-
} | undefined;
|
|
100227
|
-
destinationGitlab?: {
|
|
100228
|
-
connectionId: string;
|
|
100229
|
-
branch: string;
|
|
100230
|
-
relativePath: string;
|
|
100231
|
-
projectId: string;
|
|
100232
|
-
} | undefined;
|
|
100233
|
-
destinationBitbucket?: {
|
|
100234
|
-
connectionId: string;
|
|
100235
|
-
branch: string;
|
|
100236
|
-
relativePath: string;
|
|
100237
|
-
workspaceSlug: string;
|
|
100238
|
-
projectKey: string;
|
|
100239
|
-
repoSlug: string;
|
|
100240
|
-
} | undefined;
|
|
100241
|
-
finishedAt?: Date | undefined;
|
|
100242
|
-
scheduleId?: string | null | undefined;
|
|
100243
|
-
brandId?: string | undefined;
|
|
100244
|
-
themeId?: string | undefined;
|
|
100245
|
-
estimatedExecutionTime?: number | undefined;
|
|
100246
|
-
result?: {
|
|
100247
|
-
error?: string | undefined;
|
|
100248
|
-
s3?: {
|
|
100249
|
-
path: string;
|
|
100250
|
-
files: string[];
|
|
100251
|
-
bucket: string;
|
|
100252
|
-
urlPrefix?: string | undefined;
|
|
100253
|
-
} | undefined;
|
|
100254
|
-
github?: {
|
|
100255
|
-
pullRequestUrl: string;
|
|
100256
|
-
} | undefined;
|
|
100257
|
-
azure?: {
|
|
100258
|
-
pullRequestUrl: string;
|
|
100259
|
-
} | undefined;
|
|
100260
|
-
gitlab?: {
|
|
100261
|
-
pullRequestUrl: string;
|
|
100262
|
-
} | undefined;
|
|
100263
|
-
bitbucket?: {
|
|
100264
|
-
pullRequestUrl: string;
|
|
100265
|
-
} | undefined;
|
|
100266
|
-
sndocs?: {
|
|
100267
|
-
url: string;
|
|
100268
|
-
} | undefined;
|
|
100269
|
-
} | undefined;
|
|
100270
|
-
createdByUserId?: string | undefined;
|
|
100271
100293
|
}>;
|
|
100272
|
-
type
|
|
100273
|
-
|
|
100274
|
-
|
|
100275
|
-
|
|
100276
|
-
|
|
100277
|
-
designSystemId: z.
|
|
100278
|
-
designSystemVersionId: z.ZodOptional<z.ZodString>;
|
|
100279
|
-
brandId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100280
|
-
createdByUserId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100281
|
-
themeId: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
100282
|
-
exporterId: z.ZodOptional<z.ZodString>;
|
|
100283
|
-
scheduleId: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
100284
|
-
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
100285
|
-
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
100294
|
+
type ExportJobContext = z.infer<typeof ExportJobContext>;
|
|
100295
|
+
|
|
100296
|
+
declare const ExporterFunctionPayload: z.ZodObject<{
|
|
100297
|
+
exportJobId: z.ZodString;
|
|
100298
|
+
exportContextId: z.ZodString;
|
|
100299
|
+
designSystemId: z.ZodString;
|
|
100286
100300
|
}, "strip", z.ZodTypeAny, {
|
|
100287
|
-
|
|
100288
|
-
|
|
100289
|
-
|
|
100290
|
-
brandId?: string | undefined;
|
|
100291
|
-
createdByUserId?: string | undefined;
|
|
100292
|
-
themeId?: string | undefined;
|
|
100293
|
-
exporterId?: string | undefined;
|
|
100294
|
-
scheduleId?: string | null | undefined;
|
|
100295
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100296
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100301
|
+
designSystemId: string;
|
|
100302
|
+
exportJobId: string;
|
|
100303
|
+
exportContextId: string;
|
|
100297
100304
|
}, {
|
|
100298
|
-
|
|
100299
|
-
|
|
100300
|
-
|
|
100301
|
-
brandId?: string | undefined;
|
|
100302
|
-
createdByUserId?: string | undefined;
|
|
100303
|
-
themeId?: string | undefined;
|
|
100304
|
-
exporterId?: string | undefined;
|
|
100305
|
-
scheduleId?: string | null | undefined;
|
|
100306
|
-
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100307
|
-
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100305
|
+
designSystemId: string;
|
|
100306
|
+
exportJobId: string;
|
|
100307
|
+
exportContextId: string;
|
|
100308
100308
|
}>;
|
|
100309
|
-
type
|
|
100309
|
+
type ExporterFunctionPayload = z.infer<typeof ExporterFunctionPayload>;
|
|
100310
100310
|
|
|
100311
100311
|
declare const ExporterScheduleEventType: z.ZodEnum<["OnVersionReleased", "OnHeadChanged", "OnSourceUpdated", "None"]>;
|
|
100312
100312
|
type ExporterScheduleEventType = z.infer<typeof ExporterScheduleEventType>;
|
|
@@ -100489,28 +100489,6 @@ declare const ExporterSchedule: z.ZodObject<{
|
|
|
100489
100489
|
}>;
|
|
100490
100490
|
type ExporterSchedule = z.infer<typeof ExporterSchedule>;
|
|
100491
100491
|
|
|
100492
|
-
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100493
|
-
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
100494
|
-
|
|
100495
|
-
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
100496
|
-
id: z.ZodString;
|
|
100497
|
-
workspaceId: z.ZodString;
|
|
100498
|
-
exporterId: z.ZodString;
|
|
100499
|
-
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
100500
|
-
}, "strip", z.ZodTypeAny, {
|
|
100501
|
-
id: string;
|
|
100502
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
100503
|
-
workspaceId: string;
|
|
100504
|
-
exporterId: string;
|
|
100505
|
-
}, {
|
|
100506
|
-
id: string;
|
|
100507
|
-
role: "Owner" | "OwnerArchived" | "User";
|
|
100508
|
-
workspaceId: string;
|
|
100509
|
-
exporterId: string;
|
|
100510
|
-
}>;
|
|
100511
|
-
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
100512
|
-
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
100513
|
-
|
|
100514
100492
|
declare enum GitProviderNames {
|
|
100515
100493
|
Azure = "azure",
|
|
100516
100494
|
Github = "github",
|
|
@@ -101185,6 +101163,28 @@ declare const Exporter: z.ZodObject<{
|
|
|
101185
101163
|
}>;
|
|
101186
101164
|
type Exporter = z.infer<typeof Exporter>;
|
|
101187
101165
|
|
|
101166
|
+
declare const ExporterWorkspaceMembership: z.ZodObject<{
|
|
101167
|
+
id: z.ZodString;
|
|
101168
|
+
workspaceId: z.ZodString;
|
|
101169
|
+
exporterId: z.ZodString;
|
|
101170
|
+
role: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101171
|
+
}, "strip", z.ZodTypeAny, {
|
|
101172
|
+
id: string;
|
|
101173
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
101174
|
+
workspaceId: string;
|
|
101175
|
+
exporterId: string;
|
|
101176
|
+
}, {
|
|
101177
|
+
id: string;
|
|
101178
|
+
role: "Owner" | "OwnerArchived" | "User";
|
|
101179
|
+
workspaceId: string;
|
|
101180
|
+
exporterId: string;
|
|
101181
|
+
}>;
|
|
101182
|
+
type ExporterWorkspaceMembership = z.infer<typeof ExporterWorkspaceMembership>;
|
|
101183
|
+
type CreateExporterMembership = DbCreateInputOmit<ExporterWorkspaceMembership>;
|
|
101184
|
+
|
|
101185
|
+
declare const ExporterWorkspaceMembershipRole: z.ZodEnum<["Owner", "OwnerArchived", "User"]>;
|
|
101186
|
+
type ExporterWorkspaceMembershipRole = z.infer<typeof ExporterWorkspaceMembershipRole>;
|
|
101187
|
+
|
|
101188
101188
|
declare const PulsarContributionVariant: z.ZodObject<{
|
|
101189
101189
|
key: z.ZodString;
|
|
101190
101190
|
name: z.ZodString;
|