@supernova-studio/model 0.3.0 → 0.4.0
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 +1873 -9
- package/dist/index.d.ts +1873 -9
- package/dist/index.js +42 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +41 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +54 -5
package/dist/index.d.ts
CHANGED
|
@@ -8338,6 +8338,8 @@ declare const PageBlockImageType: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
|
8338
8338
|
type PageBlockImageType = z.infer<typeof PageBlockImageType>;
|
|
8339
8339
|
declare const PageBlockImageAlignment: z.ZodEnum<["Left", "Center", "Stretch"]>;
|
|
8340
8340
|
type PageBlockImageAlignment = z.infer<typeof PageBlockImageAlignment>;
|
|
8341
|
+
declare const PageBlockTableCellAlignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
8342
|
+
type PageBlockTableCellAlignment = z.infer<typeof PageBlockTableCellAlignment>;
|
|
8341
8343
|
declare const PageBlockAppearanceV2: z.ZodObject<{
|
|
8342
8344
|
itemBackgroundColor: z.ZodObject<{
|
|
8343
8345
|
opacity: z.ZodObject<{
|
|
@@ -9235,14 +9237,6 @@ declare const PageBlockItemStorybookValue: z.ZodObject<{
|
|
|
9235
9237
|
showAddons?: boolean | undefined;
|
|
9236
9238
|
}>;
|
|
9237
9239
|
type PageBlockItemStorybookValue = z.infer<typeof PageBlockItemStorybookValue>;
|
|
9238
|
-
declare const PageBlockItemTableValue: z.ZodObject<{
|
|
9239
|
-
value: z.ZodAny;
|
|
9240
|
-
}, "strip", z.ZodTypeAny, {
|
|
9241
|
-
value?: any;
|
|
9242
|
-
}, {
|
|
9243
|
-
value?: any;
|
|
9244
|
-
}>;
|
|
9245
|
-
type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
9246
9240
|
declare const PageBlockItemTextValue: z.ZodObject<{
|
|
9247
9241
|
value: z.ZodString;
|
|
9248
9242
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9310,6 +9304,1876 @@ declare const PageBlockItemUrlValue: z.ZodObject<{
|
|
|
9310
9304
|
value: string;
|
|
9311
9305
|
}>;
|
|
9312
9306
|
type PageBlockItemUrlValue = z.infer<typeof PageBlockItemUrlValue>;
|
|
9307
|
+
declare const PageBlockItemTableRichTextNode: z.ZodObject<{
|
|
9308
|
+
type: z.ZodLiteral<"RichText">;
|
|
9309
|
+
value: z.ZodObject<{
|
|
9310
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9311
|
+
text: z.ZodString;
|
|
9312
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9313
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9314
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9315
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9316
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9317
|
+
}, "strip", z.ZodTypeAny, {
|
|
9318
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9319
|
+
link?: string | undefined;
|
|
9320
|
+
documentationItemId?: string | undefined;
|
|
9321
|
+
openInNewWindow?: boolean | undefined;
|
|
9322
|
+
}, {
|
|
9323
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9324
|
+
link?: string | null | undefined;
|
|
9325
|
+
documentationItemId?: string | null | undefined;
|
|
9326
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9327
|
+
}>, "many">;
|
|
9328
|
+
}, "strip", z.ZodTypeAny, {
|
|
9329
|
+
text: string;
|
|
9330
|
+
attributes: {
|
|
9331
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9332
|
+
link?: string | undefined;
|
|
9333
|
+
documentationItemId?: string | undefined;
|
|
9334
|
+
openInNewWindow?: boolean | undefined;
|
|
9335
|
+
}[];
|
|
9336
|
+
}, {
|
|
9337
|
+
text: string;
|
|
9338
|
+
attributes: {
|
|
9339
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9340
|
+
link?: string | null | undefined;
|
|
9341
|
+
documentationItemId?: string | null | undefined;
|
|
9342
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9343
|
+
}[];
|
|
9344
|
+
}>, "many">;
|
|
9345
|
+
}, "strip", z.ZodTypeAny, {
|
|
9346
|
+
spans: {
|
|
9347
|
+
text: string;
|
|
9348
|
+
attributes: {
|
|
9349
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9350
|
+
link?: string | undefined;
|
|
9351
|
+
documentationItemId?: string | undefined;
|
|
9352
|
+
openInNewWindow?: boolean | undefined;
|
|
9353
|
+
}[];
|
|
9354
|
+
}[];
|
|
9355
|
+
}, {
|
|
9356
|
+
spans: {
|
|
9357
|
+
text: string;
|
|
9358
|
+
attributes: {
|
|
9359
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9360
|
+
link?: string | null | undefined;
|
|
9361
|
+
documentationItemId?: string | null | undefined;
|
|
9362
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9363
|
+
}[];
|
|
9364
|
+
}[];
|
|
9365
|
+
}>;
|
|
9366
|
+
}, "strip", z.ZodTypeAny, {
|
|
9367
|
+
type: "RichText";
|
|
9368
|
+
value: {
|
|
9369
|
+
spans: {
|
|
9370
|
+
text: string;
|
|
9371
|
+
attributes: {
|
|
9372
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9373
|
+
link?: string | undefined;
|
|
9374
|
+
documentationItemId?: string | undefined;
|
|
9375
|
+
openInNewWindow?: boolean | undefined;
|
|
9376
|
+
}[];
|
|
9377
|
+
}[];
|
|
9378
|
+
};
|
|
9379
|
+
}, {
|
|
9380
|
+
type: "RichText";
|
|
9381
|
+
value: {
|
|
9382
|
+
spans: {
|
|
9383
|
+
text: string;
|
|
9384
|
+
attributes: {
|
|
9385
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9386
|
+
link?: string | null | undefined;
|
|
9387
|
+
documentationItemId?: string | null | undefined;
|
|
9388
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9389
|
+
}[];
|
|
9390
|
+
}[];
|
|
9391
|
+
};
|
|
9392
|
+
}>;
|
|
9393
|
+
type PageBlockItemTableRichTextNode = z.infer<typeof PageBlockItemTableRichTextNode>;
|
|
9394
|
+
declare const PageBlockItemTableMultiRichTextNode: z.ZodObject<{
|
|
9395
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9396
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9397
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9398
|
+
text: z.ZodString;
|
|
9399
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9400
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9401
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9402
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9403
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9404
|
+
}, "strip", z.ZodTypeAny, {
|
|
9405
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9406
|
+
link?: string | undefined;
|
|
9407
|
+
documentationItemId?: string | undefined;
|
|
9408
|
+
openInNewWindow?: boolean | undefined;
|
|
9409
|
+
}, {
|
|
9410
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9411
|
+
link?: string | null | undefined;
|
|
9412
|
+
documentationItemId?: string | null | undefined;
|
|
9413
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9414
|
+
}>, "many">;
|
|
9415
|
+
}, "strip", z.ZodTypeAny, {
|
|
9416
|
+
text: string;
|
|
9417
|
+
attributes: {
|
|
9418
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9419
|
+
link?: string | undefined;
|
|
9420
|
+
documentationItemId?: string | undefined;
|
|
9421
|
+
openInNewWindow?: boolean | undefined;
|
|
9422
|
+
}[];
|
|
9423
|
+
}, {
|
|
9424
|
+
text: string;
|
|
9425
|
+
attributes: {
|
|
9426
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9427
|
+
link?: string | null | undefined;
|
|
9428
|
+
documentationItemId?: string | null | undefined;
|
|
9429
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9430
|
+
}[];
|
|
9431
|
+
}>, "many">;
|
|
9432
|
+
}, "strip", z.ZodTypeAny, {
|
|
9433
|
+
spans: {
|
|
9434
|
+
text: string;
|
|
9435
|
+
attributes: {
|
|
9436
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9437
|
+
link?: string | undefined;
|
|
9438
|
+
documentationItemId?: string | undefined;
|
|
9439
|
+
openInNewWindow?: boolean | undefined;
|
|
9440
|
+
}[];
|
|
9441
|
+
}[];
|
|
9442
|
+
}, {
|
|
9443
|
+
spans: {
|
|
9444
|
+
text: string;
|
|
9445
|
+
attributes: {
|
|
9446
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9447
|
+
link?: string | null | undefined;
|
|
9448
|
+
documentationItemId?: string | null | undefined;
|
|
9449
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9450
|
+
}[];
|
|
9451
|
+
}[];
|
|
9452
|
+
}>, "many">;
|
|
9453
|
+
}, "strip", z.ZodTypeAny, {
|
|
9454
|
+
type: "MultiRichText";
|
|
9455
|
+
value: {
|
|
9456
|
+
spans: {
|
|
9457
|
+
text: string;
|
|
9458
|
+
attributes: {
|
|
9459
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9460
|
+
link?: string | undefined;
|
|
9461
|
+
documentationItemId?: string | undefined;
|
|
9462
|
+
openInNewWindow?: boolean | undefined;
|
|
9463
|
+
}[];
|
|
9464
|
+
}[];
|
|
9465
|
+
}[];
|
|
9466
|
+
}, {
|
|
9467
|
+
type: "MultiRichText";
|
|
9468
|
+
value: {
|
|
9469
|
+
spans: {
|
|
9470
|
+
text: string;
|
|
9471
|
+
attributes: {
|
|
9472
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9473
|
+
link?: string | null | undefined;
|
|
9474
|
+
documentationItemId?: string | null | undefined;
|
|
9475
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9476
|
+
}[];
|
|
9477
|
+
}[];
|
|
9478
|
+
}[];
|
|
9479
|
+
}>;
|
|
9480
|
+
type PageBlockItemTableMultiRichTextNode = z.infer<typeof PageBlockItemTableMultiRichTextNode>;
|
|
9481
|
+
declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
9482
|
+
type: z.ZodLiteral<"Image">;
|
|
9483
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9484
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9485
|
+
url: z.ZodString;
|
|
9486
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9487
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9488
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9489
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9490
|
+
}, "strip", z.ZodTypeAny, {
|
|
9491
|
+
width: number;
|
|
9492
|
+
height: number;
|
|
9493
|
+
}, {
|
|
9494
|
+
width?: number | null | undefined;
|
|
9495
|
+
height?: number | null | undefined;
|
|
9496
|
+
}>>;
|
|
9497
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9498
|
+
sourceId: z.ZodString;
|
|
9499
|
+
frameId: z.ZodString;
|
|
9500
|
+
}, "strip", z.ZodTypeAny, {
|
|
9501
|
+
sourceId: string;
|
|
9502
|
+
frameId: string;
|
|
9503
|
+
}, {
|
|
9504
|
+
sourceId: string;
|
|
9505
|
+
frameId: string;
|
|
9506
|
+
}>>;
|
|
9507
|
+
}, "strip", z.ZodTypeAny, {
|
|
9508
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9509
|
+
url: string;
|
|
9510
|
+
assetId?: string | undefined;
|
|
9511
|
+
size?: {
|
|
9512
|
+
width: number;
|
|
9513
|
+
height: number;
|
|
9514
|
+
} | undefined;
|
|
9515
|
+
figmaFile?: {
|
|
9516
|
+
sourceId: string;
|
|
9517
|
+
frameId: string;
|
|
9518
|
+
} | undefined;
|
|
9519
|
+
}, {
|
|
9520
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9521
|
+
url: string;
|
|
9522
|
+
assetId?: string | undefined;
|
|
9523
|
+
size?: {
|
|
9524
|
+
width?: number | null | undefined;
|
|
9525
|
+
height?: number | null | undefined;
|
|
9526
|
+
} | undefined;
|
|
9527
|
+
figmaFile?: {
|
|
9528
|
+
sourceId: string;
|
|
9529
|
+
frameId: string;
|
|
9530
|
+
} | undefined;
|
|
9531
|
+
}>>;
|
|
9532
|
+
}, "strip", z.ZodTypeAny, {
|
|
9533
|
+
type: "Image";
|
|
9534
|
+
value?: {
|
|
9535
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9536
|
+
url: string;
|
|
9537
|
+
assetId?: string | undefined;
|
|
9538
|
+
size?: {
|
|
9539
|
+
width: number;
|
|
9540
|
+
height: number;
|
|
9541
|
+
} | undefined;
|
|
9542
|
+
figmaFile?: {
|
|
9543
|
+
sourceId: string;
|
|
9544
|
+
frameId: string;
|
|
9545
|
+
} | undefined;
|
|
9546
|
+
} | undefined;
|
|
9547
|
+
}, {
|
|
9548
|
+
type: "Image";
|
|
9549
|
+
value?: {
|
|
9550
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9551
|
+
url: string;
|
|
9552
|
+
assetId?: string | undefined;
|
|
9553
|
+
size?: {
|
|
9554
|
+
width?: number | null | undefined;
|
|
9555
|
+
height?: number | null | undefined;
|
|
9556
|
+
} | undefined;
|
|
9557
|
+
figmaFile?: {
|
|
9558
|
+
sourceId: string;
|
|
9559
|
+
frameId: string;
|
|
9560
|
+
} | undefined;
|
|
9561
|
+
} | undefined;
|
|
9562
|
+
}>;
|
|
9563
|
+
type PageBlockItemTableImageNode = z.infer<typeof PageBlockItemTableImageNode>;
|
|
9564
|
+
declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9565
|
+
type: z.ZodLiteral<"RichText">;
|
|
9566
|
+
value: z.ZodObject<{
|
|
9567
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9568
|
+
text: z.ZodString;
|
|
9569
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9570
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9571
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9572
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9573
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9574
|
+
}, "strip", z.ZodTypeAny, {
|
|
9575
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9576
|
+
link?: string | undefined;
|
|
9577
|
+
documentationItemId?: string | undefined;
|
|
9578
|
+
openInNewWindow?: boolean | undefined;
|
|
9579
|
+
}, {
|
|
9580
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9581
|
+
link?: string | null | undefined;
|
|
9582
|
+
documentationItemId?: string | null | undefined;
|
|
9583
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9584
|
+
}>, "many">;
|
|
9585
|
+
}, "strip", z.ZodTypeAny, {
|
|
9586
|
+
text: string;
|
|
9587
|
+
attributes: {
|
|
9588
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9589
|
+
link?: string | undefined;
|
|
9590
|
+
documentationItemId?: string | undefined;
|
|
9591
|
+
openInNewWindow?: boolean | undefined;
|
|
9592
|
+
}[];
|
|
9593
|
+
}, {
|
|
9594
|
+
text: string;
|
|
9595
|
+
attributes: {
|
|
9596
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9597
|
+
link?: string | null | undefined;
|
|
9598
|
+
documentationItemId?: string | null | undefined;
|
|
9599
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9600
|
+
}[];
|
|
9601
|
+
}>, "many">;
|
|
9602
|
+
}, "strip", z.ZodTypeAny, {
|
|
9603
|
+
spans: {
|
|
9604
|
+
text: string;
|
|
9605
|
+
attributes: {
|
|
9606
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9607
|
+
link?: string | undefined;
|
|
9608
|
+
documentationItemId?: string | undefined;
|
|
9609
|
+
openInNewWindow?: boolean | undefined;
|
|
9610
|
+
}[];
|
|
9611
|
+
}[];
|
|
9612
|
+
}, {
|
|
9613
|
+
spans: {
|
|
9614
|
+
text: string;
|
|
9615
|
+
attributes: {
|
|
9616
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9617
|
+
link?: string | null | undefined;
|
|
9618
|
+
documentationItemId?: string | null | undefined;
|
|
9619
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9620
|
+
}[];
|
|
9621
|
+
}[];
|
|
9622
|
+
}>;
|
|
9623
|
+
}, "strip", z.ZodTypeAny, {
|
|
9624
|
+
type: "RichText";
|
|
9625
|
+
value: {
|
|
9626
|
+
spans: {
|
|
9627
|
+
text: string;
|
|
9628
|
+
attributes: {
|
|
9629
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9630
|
+
link?: string | undefined;
|
|
9631
|
+
documentationItemId?: string | undefined;
|
|
9632
|
+
openInNewWindow?: boolean | undefined;
|
|
9633
|
+
}[];
|
|
9634
|
+
}[];
|
|
9635
|
+
};
|
|
9636
|
+
}, {
|
|
9637
|
+
type: "RichText";
|
|
9638
|
+
value: {
|
|
9639
|
+
spans: {
|
|
9640
|
+
text: string;
|
|
9641
|
+
attributes: {
|
|
9642
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9643
|
+
link?: string | null | undefined;
|
|
9644
|
+
documentationItemId?: string | null | undefined;
|
|
9645
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9646
|
+
}[];
|
|
9647
|
+
}[];
|
|
9648
|
+
};
|
|
9649
|
+
}>, z.ZodObject<{
|
|
9650
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9651
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9652
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9653
|
+
text: z.ZodString;
|
|
9654
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9655
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9656
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9657
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9658
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9659
|
+
}, "strip", z.ZodTypeAny, {
|
|
9660
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9661
|
+
link?: string | undefined;
|
|
9662
|
+
documentationItemId?: string | undefined;
|
|
9663
|
+
openInNewWindow?: boolean | undefined;
|
|
9664
|
+
}, {
|
|
9665
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9666
|
+
link?: string | null | undefined;
|
|
9667
|
+
documentationItemId?: string | null | undefined;
|
|
9668
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9669
|
+
}>, "many">;
|
|
9670
|
+
}, "strip", z.ZodTypeAny, {
|
|
9671
|
+
text: string;
|
|
9672
|
+
attributes: {
|
|
9673
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9674
|
+
link?: string | undefined;
|
|
9675
|
+
documentationItemId?: string | undefined;
|
|
9676
|
+
openInNewWindow?: boolean | undefined;
|
|
9677
|
+
}[];
|
|
9678
|
+
}, {
|
|
9679
|
+
text: string;
|
|
9680
|
+
attributes: {
|
|
9681
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9682
|
+
link?: string | null | undefined;
|
|
9683
|
+
documentationItemId?: string | null | undefined;
|
|
9684
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9685
|
+
}[];
|
|
9686
|
+
}>, "many">;
|
|
9687
|
+
}, "strip", z.ZodTypeAny, {
|
|
9688
|
+
spans: {
|
|
9689
|
+
text: string;
|
|
9690
|
+
attributes: {
|
|
9691
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9692
|
+
link?: string | undefined;
|
|
9693
|
+
documentationItemId?: string | undefined;
|
|
9694
|
+
openInNewWindow?: boolean | undefined;
|
|
9695
|
+
}[];
|
|
9696
|
+
}[];
|
|
9697
|
+
}, {
|
|
9698
|
+
spans: {
|
|
9699
|
+
text: string;
|
|
9700
|
+
attributes: {
|
|
9701
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9702
|
+
link?: string | null | undefined;
|
|
9703
|
+
documentationItemId?: string | null | undefined;
|
|
9704
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9705
|
+
}[];
|
|
9706
|
+
}[];
|
|
9707
|
+
}>, "many">;
|
|
9708
|
+
}, "strip", z.ZodTypeAny, {
|
|
9709
|
+
type: "MultiRichText";
|
|
9710
|
+
value: {
|
|
9711
|
+
spans: {
|
|
9712
|
+
text: string;
|
|
9713
|
+
attributes: {
|
|
9714
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9715
|
+
link?: string | undefined;
|
|
9716
|
+
documentationItemId?: string | undefined;
|
|
9717
|
+
openInNewWindow?: boolean | undefined;
|
|
9718
|
+
}[];
|
|
9719
|
+
}[];
|
|
9720
|
+
}[];
|
|
9721
|
+
}, {
|
|
9722
|
+
type: "MultiRichText";
|
|
9723
|
+
value: {
|
|
9724
|
+
spans: {
|
|
9725
|
+
text: string;
|
|
9726
|
+
attributes: {
|
|
9727
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9728
|
+
link?: string | null | undefined;
|
|
9729
|
+
documentationItemId?: string | null | undefined;
|
|
9730
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9731
|
+
}[];
|
|
9732
|
+
}[];
|
|
9733
|
+
}[];
|
|
9734
|
+
}>, z.ZodObject<{
|
|
9735
|
+
type: z.ZodLiteral<"Image">;
|
|
9736
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9737
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9738
|
+
url: z.ZodString;
|
|
9739
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9740
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9741
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9742
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9743
|
+
}, "strip", z.ZodTypeAny, {
|
|
9744
|
+
width: number;
|
|
9745
|
+
height: number;
|
|
9746
|
+
}, {
|
|
9747
|
+
width?: number | null | undefined;
|
|
9748
|
+
height?: number | null | undefined;
|
|
9749
|
+
}>>;
|
|
9750
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
9751
|
+
sourceId: z.ZodString;
|
|
9752
|
+
frameId: z.ZodString;
|
|
9753
|
+
}, "strip", z.ZodTypeAny, {
|
|
9754
|
+
sourceId: string;
|
|
9755
|
+
frameId: string;
|
|
9756
|
+
}, {
|
|
9757
|
+
sourceId: string;
|
|
9758
|
+
frameId: string;
|
|
9759
|
+
}>>;
|
|
9760
|
+
}, "strip", z.ZodTypeAny, {
|
|
9761
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9762
|
+
url: string;
|
|
9763
|
+
assetId?: string | undefined;
|
|
9764
|
+
size?: {
|
|
9765
|
+
width: number;
|
|
9766
|
+
height: number;
|
|
9767
|
+
} | undefined;
|
|
9768
|
+
figmaFile?: {
|
|
9769
|
+
sourceId: string;
|
|
9770
|
+
frameId: string;
|
|
9771
|
+
} | undefined;
|
|
9772
|
+
}, {
|
|
9773
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9774
|
+
url: string;
|
|
9775
|
+
assetId?: string | undefined;
|
|
9776
|
+
size?: {
|
|
9777
|
+
width?: number | null | undefined;
|
|
9778
|
+
height?: number | null | undefined;
|
|
9779
|
+
} | undefined;
|
|
9780
|
+
figmaFile?: {
|
|
9781
|
+
sourceId: string;
|
|
9782
|
+
frameId: string;
|
|
9783
|
+
} | undefined;
|
|
9784
|
+
}>>;
|
|
9785
|
+
}, "strip", z.ZodTypeAny, {
|
|
9786
|
+
type: "Image";
|
|
9787
|
+
value?: {
|
|
9788
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9789
|
+
url: string;
|
|
9790
|
+
assetId?: string | undefined;
|
|
9791
|
+
size?: {
|
|
9792
|
+
width: number;
|
|
9793
|
+
height: number;
|
|
9794
|
+
} | undefined;
|
|
9795
|
+
figmaFile?: {
|
|
9796
|
+
sourceId: string;
|
|
9797
|
+
frameId: string;
|
|
9798
|
+
} | undefined;
|
|
9799
|
+
} | undefined;
|
|
9800
|
+
}, {
|
|
9801
|
+
type: "Image";
|
|
9802
|
+
value?: {
|
|
9803
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
9804
|
+
url: string;
|
|
9805
|
+
assetId?: string | undefined;
|
|
9806
|
+
size?: {
|
|
9807
|
+
width?: number | null | undefined;
|
|
9808
|
+
height?: number | null | undefined;
|
|
9809
|
+
} | undefined;
|
|
9810
|
+
figmaFile?: {
|
|
9811
|
+
sourceId: string;
|
|
9812
|
+
frameId: string;
|
|
9813
|
+
} | undefined;
|
|
9814
|
+
} | undefined;
|
|
9815
|
+
}>]>;
|
|
9816
|
+
type PageBlockItemTableNode = z.infer<typeof PageBlockItemTableNode>;
|
|
9817
|
+
declare const PageBlockItemTableCell: z.ZodObject<{
|
|
9818
|
+
id: z.ZodString;
|
|
9819
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9820
|
+
type: z.ZodLiteral<"RichText">;
|
|
9821
|
+
value: z.ZodObject<{
|
|
9822
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9823
|
+
text: z.ZodString;
|
|
9824
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9825
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9826
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9827
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9828
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9829
|
+
}, "strip", z.ZodTypeAny, {
|
|
9830
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9831
|
+
link?: string | undefined;
|
|
9832
|
+
documentationItemId?: string | undefined;
|
|
9833
|
+
openInNewWindow?: boolean | undefined;
|
|
9834
|
+
}, {
|
|
9835
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9836
|
+
link?: string | null | undefined;
|
|
9837
|
+
documentationItemId?: string | null | undefined;
|
|
9838
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9839
|
+
}>, "many">;
|
|
9840
|
+
}, "strip", z.ZodTypeAny, {
|
|
9841
|
+
text: string;
|
|
9842
|
+
attributes: {
|
|
9843
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9844
|
+
link?: string | undefined;
|
|
9845
|
+
documentationItemId?: string | undefined;
|
|
9846
|
+
openInNewWindow?: boolean | undefined;
|
|
9847
|
+
}[];
|
|
9848
|
+
}, {
|
|
9849
|
+
text: string;
|
|
9850
|
+
attributes: {
|
|
9851
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9852
|
+
link?: string | null | undefined;
|
|
9853
|
+
documentationItemId?: string | null | undefined;
|
|
9854
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9855
|
+
}[];
|
|
9856
|
+
}>, "many">;
|
|
9857
|
+
}, "strip", z.ZodTypeAny, {
|
|
9858
|
+
spans: {
|
|
9859
|
+
text: string;
|
|
9860
|
+
attributes: {
|
|
9861
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9862
|
+
link?: string | undefined;
|
|
9863
|
+
documentationItemId?: string | undefined;
|
|
9864
|
+
openInNewWindow?: boolean | undefined;
|
|
9865
|
+
}[];
|
|
9866
|
+
}[];
|
|
9867
|
+
}, {
|
|
9868
|
+
spans: {
|
|
9869
|
+
text: string;
|
|
9870
|
+
attributes: {
|
|
9871
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9872
|
+
link?: string | null | undefined;
|
|
9873
|
+
documentationItemId?: string | null | undefined;
|
|
9874
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9875
|
+
}[];
|
|
9876
|
+
}[];
|
|
9877
|
+
}>;
|
|
9878
|
+
}, "strip", z.ZodTypeAny, {
|
|
9879
|
+
type: "RichText";
|
|
9880
|
+
value: {
|
|
9881
|
+
spans: {
|
|
9882
|
+
text: string;
|
|
9883
|
+
attributes: {
|
|
9884
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9885
|
+
link?: string | undefined;
|
|
9886
|
+
documentationItemId?: string | undefined;
|
|
9887
|
+
openInNewWindow?: boolean | undefined;
|
|
9888
|
+
}[];
|
|
9889
|
+
}[];
|
|
9890
|
+
};
|
|
9891
|
+
}, {
|
|
9892
|
+
type: "RichText";
|
|
9893
|
+
value: {
|
|
9894
|
+
spans: {
|
|
9895
|
+
text: string;
|
|
9896
|
+
attributes: {
|
|
9897
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9898
|
+
link?: string | null | undefined;
|
|
9899
|
+
documentationItemId?: string | null | undefined;
|
|
9900
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9901
|
+
}[];
|
|
9902
|
+
}[];
|
|
9903
|
+
};
|
|
9904
|
+
}>, z.ZodObject<{
|
|
9905
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
9906
|
+
value: z.ZodArray<z.ZodObject<{
|
|
9907
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
9908
|
+
text: z.ZodString;
|
|
9909
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
9910
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
9911
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9912
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
9913
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
9914
|
+
}, "strip", z.ZodTypeAny, {
|
|
9915
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9916
|
+
link?: string | undefined;
|
|
9917
|
+
documentationItemId?: string | undefined;
|
|
9918
|
+
openInNewWindow?: boolean | undefined;
|
|
9919
|
+
}, {
|
|
9920
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9921
|
+
link?: string | null | undefined;
|
|
9922
|
+
documentationItemId?: string | null | undefined;
|
|
9923
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9924
|
+
}>, "many">;
|
|
9925
|
+
}, "strip", z.ZodTypeAny, {
|
|
9926
|
+
text: string;
|
|
9927
|
+
attributes: {
|
|
9928
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9929
|
+
link?: string | undefined;
|
|
9930
|
+
documentationItemId?: string | undefined;
|
|
9931
|
+
openInNewWindow?: boolean | undefined;
|
|
9932
|
+
}[];
|
|
9933
|
+
}, {
|
|
9934
|
+
text: string;
|
|
9935
|
+
attributes: {
|
|
9936
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9937
|
+
link?: string | null | undefined;
|
|
9938
|
+
documentationItemId?: string | null | undefined;
|
|
9939
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9940
|
+
}[];
|
|
9941
|
+
}>, "many">;
|
|
9942
|
+
}, "strip", z.ZodTypeAny, {
|
|
9943
|
+
spans: {
|
|
9944
|
+
text: string;
|
|
9945
|
+
attributes: {
|
|
9946
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9947
|
+
link?: string | undefined;
|
|
9948
|
+
documentationItemId?: string | undefined;
|
|
9949
|
+
openInNewWindow?: boolean | undefined;
|
|
9950
|
+
}[];
|
|
9951
|
+
}[];
|
|
9952
|
+
}, {
|
|
9953
|
+
spans: {
|
|
9954
|
+
text: string;
|
|
9955
|
+
attributes: {
|
|
9956
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9957
|
+
link?: string | null | undefined;
|
|
9958
|
+
documentationItemId?: string | null | undefined;
|
|
9959
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9960
|
+
}[];
|
|
9961
|
+
}[];
|
|
9962
|
+
}>, "many">;
|
|
9963
|
+
}, "strip", z.ZodTypeAny, {
|
|
9964
|
+
type: "MultiRichText";
|
|
9965
|
+
value: {
|
|
9966
|
+
spans: {
|
|
9967
|
+
text: string;
|
|
9968
|
+
attributes: {
|
|
9969
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9970
|
+
link?: string | undefined;
|
|
9971
|
+
documentationItemId?: string | undefined;
|
|
9972
|
+
openInNewWindow?: boolean | undefined;
|
|
9973
|
+
}[];
|
|
9974
|
+
}[];
|
|
9975
|
+
}[];
|
|
9976
|
+
}, {
|
|
9977
|
+
type: "MultiRichText";
|
|
9978
|
+
value: {
|
|
9979
|
+
spans: {
|
|
9980
|
+
text: string;
|
|
9981
|
+
attributes: {
|
|
9982
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
9983
|
+
link?: string | null | undefined;
|
|
9984
|
+
documentationItemId?: string | null | undefined;
|
|
9985
|
+
openInNewWindow?: boolean | null | undefined;
|
|
9986
|
+
}[];
|
|
9987
|
+
}[];
|
|
9988
|
+
}[];
|
|
9989
|
+
}>, z.ZodObject<{
|
|
9990
|
+
type: z.ZodLiteral<"Image">;
|
|
9991
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
9992
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
9993
|
+
url: z.ZodString;
|
|
9994
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
9995
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
9996
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9997
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
9998
|
+
}, "strip", z.ZodTypeAny, {
|
|
9999
|
+
width: number;
|
|
10000
|
+
height: number;
|
|
10001
|
+
}, {
|
|
10002
|
+
width?: number | null | undefined;
|
|
10003
|
+
height?: number | null | undefined;
|
|
10004
|
+
}>>;
|
|
10005
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10006
|
+
sourceId: z.ZodString;
|
|
10007
|
+
frameId: z.ZodString;
|
|
10008
|
+
}, "strip", z.ZodTypeAny, {
|
|
10009
|
+
sourceId: string;
|
|
10010
|
+
frameId: string;
|
|
10011
|
+
}, {
|
|
10012
|
+
sourceId: string;
|
|
10013
|
+
frameId: string;
|
|
10014
|
+
}>>;
|
|
10015
|
+
}, "strip", z.ZodTypeAny, {
|
|
10016
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10017
|
+
url: string;
|
|
10018
|
+
assetId?: string | undefined;
|
|
10019
|
+
size?: {
|
|
10020
|
+
width: number;
|
|
10021
|
+
height: number;
|
|
10022
|
+
} | undefined;
|
|
10023
|
+
figmaFile?: {
|
|
10024
|
+
sourceId: string;
|
|
10025
|
+
frameId: string;
|
|
10026
|
+
} | undefined;
|
|
10027
|
+
}, {
|
|
10028
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10029
|
+
url: string;
|
|
10030
|
+
assetId?: string | undefined;
|
|
10031
|
+
size?: {
|
|
10032
|
+
width?: number | null | undefined;
|
|
10033
|
+
height?: number | null | undefined;
|
|
10034
|
+
} | undefined;
|
|
10035
|
+
figmaFile?: {
|
|
10036
|
+
sourceId: string;
|
|
10037
|
+
frameId: string;
|
|
10038
|
+
} | undefined;
|
|
10039
|
+
}>>;
|
|
10040
|
+
}, "strip", z.ZodTypeAny, {
|
|
10041
|
+
type: "Image";
|
|
10042
|
+
value?: {
|
|
10043
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10044
|
+
url: string;
|
|
10045
|
+
assetId?: string | undefined;
|
|
10046
|
+
size?: {
|
|
10047
|
+
width: number;
|
|
10048
|
+
height: number;
|
|
10049
|
+
} | undefined;
|
|
10050
|
+
figmaFile?: {
|
|
10051
|
+
sourceId: string;
|
|
10052
|
+
frameId: string;
|
|
10053
|
+
} | undefined;
|
|
10054
|
+
} | undefined;
|
|
10055
|
+
}, {
|
|
10056
|
+
type: "Image";
|
|
10057
|
+
value?: {
|
|
10058
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10059
|
+
url: string;
|
|
10060
|
+
assetId?: string | undefined;
|
|
10061
|
+
size?: {
|
|
10062
|
+
width?: number | null | undefined;
|
|
10063
|
+
height?: number | null | undefined;
|
|
10064
|
+
} | undefined;
|
|
10065
|
+
figmaFile?: {
|
|
10066
|
+
sourceId: string;
|
|
10067
|
+
frameId: string;
|
|
10068
|
+
} | undefined;
|
|
10069
|
+
} | undefined;
|
|
10070
|
+
}>]>, "many">;
|
|
10071
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10072
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
10073
|
+
}, "strip", z.ZodTypeAny, {
|
|
10074
|
+
id: string;
|
|
10075
|
+
alignment: "Center" | "Left" | "Right";
|
|
10076
|
+
nodes: ({
|
|
10077
|
+
type: "RichText";
|
|
10078
|
+
value: {
|
|
10079
|
+
spans: {
|
|
10080
|
+
text: string;
|
|
10081
|
+
attributes: {
|
|
10082
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10083
|
+
link?: string | undefined;
|
|
10084
|
+
documentationItemId?: string | undefined;
|
|
10085
|
+
openInNewWindow?: boolean | undefined;
|
|
10086
|
+
}[];
|
|
10087
|
+
}[];
|
|
10088
|
+
};
|
|
10089
|
+
} | {
|
|
10090
|
+
type: "MultiRichText";
|
|
10091
|
+
value: {
|
|
10092
|
+
spans: {
|
|
10093
|
+
text: string;
|
|
10094
|
+
attributes: {
|
|
10095
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10096
|
+
link?: string | undefined;
|
|
10097
|
+
documentationItemId?: string | undefined;
|
|
10098
|
+
openInNewWindow?: boolean | undefined;
|
|
10099
|
+
}[];
|
|
10100
|
+
}[];
|
|
10101
|
+
}[];
|
|
10102
|
+
} | {
|
|
10103
|
+
type: "Image";
|
|
10104
|
+
value?: {
|
|
10105
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10106
|
+
url: string;
|
|
10107
|
+
assetId?: string | undefined;
|
|
10108
|
+
size?: {
|
|
10109
|
+
width: number;
|
|
10110
|
+
height: number;
|
|
10111
|
+
} | undefined;
|
|
10112
|
+
figmaFile?: {
|
|
10113
|
+
sourceId: string;
|
|
10114
|
+
frameId: string;
|
|
10115
|
+
} | undefined;
|
|
10116
|
+
} | undefined;
|
|
10117
|
+
})[];
|
|
10118
|
+
columnWidth?: number | undefined;
|
|
10119
|
+
}, {
|
|
10120
|
+
id: string;
|
|
10121
|
+
alignment: "Center" | "Left" | "Right";
|
|
10122
|
+
nodes: ({
|
|
10123
|
+
type: "RichText";
|
|
10124
|
+
value: {
|
|
10125
|
+
spans: {
|
|
10126
|
+
text: string;
|
|
10127
|
+
attributes: {
|
|
10128
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10129
|
+
link?: string | null | undefined;
|
|
10130
|
+
documentationItemId?: string | null | undefined;
|
|
10131
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10132
|
+
}[];
|
|
10133
|
+
}[];
|
|
10134
|
+
};
|
|
10135
|
+
} | {
|
|
10136
|
+
type: "MultiRichText";
|
|
10137
|
+
value: {
|
|
10138
|
+
spans: {
|
|
10139
|
+
text: string;
|
|
10140
|
+
attributes: {
|
|
10141
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10142
|
+
link?: string | null | undefined;
|
|
10143
|
+
documentationItemId?: string | null | undefined;
|
|
10144
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10145
|
+
}[];
|
|
10146
|
+
}[];
|
|
10147
|
+
}[];
|
|
10148
|
+
} | {
|
|
10149
|
+
type: "Image";
|
|
10150
|
+
value?: {
|
|
10151
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10152
|
+
url: string;
|
|
10153
|
+
assetId?: string | undefined;
|
|
10154
|
+
size?: {
|
|
10155
|
+
width?: number | null | undefined;
|
|
10156
|
+
height?: number | null | undefined;
|
|
10157
|
+
} | undefined;
|
|
10158
|
+
figmaFile?: {
|
|
10159
|
+
sourceId: string;
|
|
10160
|
+
frameId: string;
|
|
10161
|
+
} | undefined;
|
|
10162
|
+
} | undefined;
|
|
10163
|
+
})[];
|
|
10164
|
+
columnWidth?: number | undefined;
|
|
10165
|
+
}>;
|
|
10166
|
+
type PageBlockItemTableCell = z.infer<typeof PageBlockItemTableCell>;
|
|
10167
|
+
declare const PageBlockItemTableRow: z.ZodObject<{
|
|
10168
|
+
cells: z.ZodArray<z.ZodObject<{
|
|
10169
|
+
id: z.ZodString;
|
|
10170
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10171
|
+
type: z.ZodLiteral<"RichText">;
|
|
10172
|
+
value: z.ZodObject<{
|
|
10173
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10174
|
+
text: z.ZodString;
|
|
10175
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10176
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10177
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10178
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10179
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10180
|
+
}, "strip", z.ZodTypeAny, {
|
|
10181
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10182
|
+
link?: string | undefined;
|
|
10183
|
+
documentationItemId?: string | undefined;
|
|
10184
|
+
openInNewWindow?: boolean | undefined;
|
|
10185
|
+
}, {
|
|
10186
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10187
|
+
link?: string | null | undefined;
|
|
10188
|
+
documentationItemId?: string | null | undefined;
|
|
10189
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10190
|
+
}>, "many">;
|
|
10191
|
+
}, "strip", z.ZodTypeAny, {
|
|
10192
|
+
text: string;
|
|
10193
|
+
attributes: {
|
|
10194
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10195
|
+
link?: string | undefined;
|
|
10196
|
+
documentationItemId?: string | undefined;
|
|
10197
|
+
openInNewWindow?: boolean | undefined;
|
|
10198
|
+
}[];
|
|
10199
|
+
}, {
|
|
10200
|
+
text: string;
|
|
10201
|
+
attributes: {
|
|
10202
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10203
|
+
link?: string | null | undefined;
|
|
10204
|
+
documentationItemId?: string | null | undefined;
|
|
10205
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10206
|
+
}[];
|
|
10207
|
+
}>, "many">;
|
|
10208
|
+
}, "strip", z.ZodTypeAny, {
|
|
10209
|
+
spans: {
|
|
10210
|
+
text: string;
|
|
10211
|
+
attributes: {
|
|
10212
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10213
|
+
link?: string | undefined;
|
|
10214
|
+
documentationItemId?: string | undefined;
|
|
10215
|
+
openInNewWindow?: boolean | undefined;
|
|
10216
|
+
}[];
|
|
10217
|
+
}[];
|
|
10218
|
+
}, {
|
|
10219
|
+
spans: {
|
|
10220
|
+
text: string;
|
|
10221
|
+
attributes: {
|
|
10222
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10223
|
+
link?: string | null | undefined;
|
|
10224
|
+
documentationItemId?: string | null | undefined;
|
|
10225
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10226
|
+
}[];
|
|
10227
|
+
}[];
|
|
10228
|
+
}>;
|
|
10229
|
+
}, "strip", z.ZodTypeAny, {
|
|
10230
|
+
type: "RichText";
|
|
10231
|
+
value: {
|
|
10232
|
+
spans: {
|
|
10233
|
+
text: string;
|
|
10234
|
+
attributes: {
|
|
10235
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10236
|
+
link?: string | undefined;
|
|
10237
|
+
documentationItemId?: string | undefined;
|
|
10238
|
+
openInNewWindow?: boolean | undefined;
|
|
10239
|
+
}[];
|
|
10240
|
+
}[];
|
|
10241
|
+
};
|
|
10242
|
+
}, {
|
|
10243
|
+
type: "RichText";
|
|
10244
|
+
value: {
|
|
10245
|
+
spans: {
|
|
10246
|
+
text: string;
|
|
10247
|
+
attributes: {
|
|
10248
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10249
|
+
link?: string | null | undefined;
|
|
10250
|
+
documentationItemId?: string | null | undefined;
|
|
10251
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10252
|
+
}[];
|
|
10253
|
+
}[];
|
|
10254
|
+
};
|
|
10255
|
+
}>, z.ZodObject<{
|
|
10256
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
10257
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10258
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10259
|
+
text: z.ZodString;
|
|
10260
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10261
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10262
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10263
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10264
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10265
|
+
}, "strip", z.ZodTypeAny, {
|
|
10266
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10267
|
+
link?: string | undefined;
|
|
10268
|
+
documentationItemId?: string | undefined;
|
|
10269
|
+
openInNewWindow?: boolean | undefined;
|
|
10270
|
+
}, {
|
|
10271
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10272
|
+
link?: string | null | undefined;
|
|
10273
|
+
documentationItemId?: string | null | undefined;
|
|
10274
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10275
|
+
}>, "many">;
|
|
10276
|
+
}, "strip", z.ZodTypeAny, {
|
|
10277
|
+
text: string;
|
|
10278
|
+
attributes: {
|
|
10279
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10280
|
+
link?: string | undefined;
|
|
10281
|
+
documentationItemId?: string | undefined;
|
|
10282
|
+
openInNewWindow?: boolean | undefined;
|
|
10283
|
+
}[];
|
|
10284
|
+
}, {
|
|
10285
|
+
text: string;
|
|
10286
|
+
attributes: {
|
|
10287
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10288
|
+
link?: string | null | undefined;
|
|
10289
|
+
documentationItemId?: string | null | undefined;
|
|
10290
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10291
|
+
}[];
|
|
10292
|
+
}>, "many">;
|
|
10293
|
+
}, "strip", z.ZodTypeAny, {
|
|
10294
|
+
spans: {
|
|
10295
|
+
text: string;
|
|
10296
|
+
attributes: {
|
|
10297
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10298
|
+
link?: string | undefined;
|
|
10299
|
+
documentationItemId?: string | undefined;
|
|
10300
|
+
openInNewWindow?: boolean | undefined;
|
|
10301
|
+
}[];
|
|
10302
|
+
}[];
|
|
10303
|
+
}, {
|
|
10304
|
+
spans: {
|
|
10305
|
+
text: string;
|
|
10306
|
+
attributes: {
|
|
10307
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10308
|
+
link?: string | null | undefined;
|
|
10309
|
+
documentationItemId?: string | null | undefined;
|
|
10310
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10311
|
+
}[];
|
|
10312
|
+
}[];
|
|
10313
|
+
}>, "many">;
|
|
10314
|
+
}, "strip", z.ZodTypeAny, {
|
|
10315
|
+
type: "MultiRichText";
|
|
10316
|
+
value: {
|
|
10317
|
+
spans: {
|
|
10318
|
+
text: string;
|
|
10319
|
+
attributes: {
|
|
10320
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10321
|
+
link?: string | undefined;
|
|
10322
|
+
documentationItemId?: string | undefined;
|
|
10323
|
+
openInNewWindow?: boolean | undefined;
|
|
10324
|
+
}[];
|
|
10325
|
+
}[];
|
|
10326
|
+
}[];
|
|
10327
|
+
}, {
|
|
10328
|
+
type: "MultiRichText";
|
|
10329
|
+
value: {
|
|
10330
|
+
spans: {
|
|
10331
|
+
text: string;
|
|
10332
|
+
attributes: {
|
|
10333
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10334
|
+
link?: string | null | undefined;
|
|
10335
|
+
documentationItemId?: string | null | undefined;
|
|
10336
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10337
|
+
}[];
|
|
10338
|
+
}[];
|
|
10339
|
+
}[];
|
|
10340
|
+
}>, z.ZodObject<{
|
|
10341
|
+
type: z.ZodLiteral<"Image">;
|
|
10342
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
10343
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10344
|
+
url: z.ZodString;
|
|
10345
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
10346
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
10347
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10348
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10349
|
+
}, "strip", z.ZodTypeAny, {
|
|
10350
|
+
width: number;
|
|
10351
|
+
height: number;
|
|
10352
|
+
}, {
|
|
10353
|
+
width?: number | null | undefined;
|
|
10354
|
+
height?: number | null | undefined;
|
|
10355
|
+
}>>;
|
|
10356
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10357
|
+
sourceId: z.ZodString;
|
|
10358
|
+
frameId: z.ZodString;
|
|
10359
|
+
}, "strip", z.ZodTypeAny, {
|
|
10360
|
+
sourceId: string;
|
|
10361
|
+
frameId: string;
|
|
10362
|
+
}, {
|
|
10363
|
+
sourceId: string;
|
|
10364
|
+
frameId: string;
|
|
10365
|
+
}>>;
|
|
10366
|
+
}, "strip", z.ZodTypeAny, {
|
|
10367
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10368
|
+
url: string;
|
|
10369
|
+
assetId?: string | undefined;
|
|
10370
|
+
size?: {
|
|
10371
|
+
width: number;
|
|
10372
|
+
height: number;
|
|
10373
|
+
} | undefined;
|
|
10374
|
+
figmaFile?: {
|
|
10375
|
+
sourceId: string;
|
|
10376
|
+
frameId: string;
|
|
10377
|
+
} | undefined;
|
|
10378
|
+
}, {
|
|
10379
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10380
|
+
url: string;
|
|
10381
|
+
assetId?: string | undefined;
|
|
10382
|
+
size?: {
|
|
10383
|
+
width?: number | null | undefined;
|
|
10384
|
+
height?: number | null | undefined;
|
|
10385
|
+
} | undefined;
|
|
10386
|
+
figmaFile?: {
|
|
10387
|
+
sourceId: string;
|
|
10388
|
+
frameId: string;
|
|
10389
|
+
} | undefined;
|
|
10390
|
+
}>>;
|
|
10391
|
+
}, "strip", z.ZodTypeAny, {
|
|
10392
|
+
type: "Image";
|
|
10393
|
+
value?: {
|
|
10394
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10395
|
+
url: string;
|
|
10396
|
+
assetId?: string | undefined;
|
|
10397
|
+
size?: {
|
|
10398
|
+
width: number;
|
|
10399
|
+
height: number;
|
|
10400
|
+
} | undefined;
|
|
10401
|
+
figmaFile?: {
|
|
10402
|
+
sourceId: string;
|
|
10403
|
+
frameId: string;
|
|
10404
|
+
} | undefined;
|
|
10405
|
+
} | undefined;
|
|
10406
|
+
}, {
|
|
10407
|
+
type: "Image";
|
|
10408
|
+
value?: {
|
|
10409
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10410
|
+
url: string;
|
|
10411
|
+
assetId?: string | undefined;
|
|
10412
|
+
size?: {
|
|
10413
|
+
width?: number | null | undefined;
|
|
10414
|
+
height?: number | null | undefined;
|
|
10415
|
+
} | undefined;
|
|
10416
|
+
figmaFile?: {
|
|
10417
|
+
sourceId: string;
|
|
10418
|
+
frameId: string;
|
|
10419
|
+
} | undefined;
|
|
10420
|
+
} | undefined;
|
|
10421
|
+
}>]>, "many">;
|
|
10422
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10423
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
10424
|
+
}, "strip", z.ZodTypeAny, {
|
|
10425
|
+
id: string;
|
|
10426
|
+
alignment: "Center" | "Left" | "Right";
|
|
10427
|
+
nodes: ({
|
|
10428
|
+
type: "RichText";
|
|
10429
|
+
value: {
|
|
10430
|
+
spans: {
|
|
10431
|
+
text: string;
|
|
10432
|
+
attributes: {
|
|
10433
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10434
|
+
link?: string | undefined;
|
|
10435
|
+
documentationItemId?: string | undefined;
|
|
10436
|
+
openInNewWindow?: boolean | undefined;
|
|
10437
|
+
}[];
|
|
10438
|
+
}[];
|
|
10439
|
+
};
|
|
10440
|
+
} | {
|
|
10441
|
+
type: "MultiRichText";
|
|
10442
|
+
value: {
|
|
10443
|
+
spans: {
|
|
10444
|
+
text: string;
|
|
10445
|
+
attributes: {
|
|
10446
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10447
|
+
link?: string | undefined;
|
|
10448
|
+
documentationItemId?: string | undefined;
|
|
10449
|
+
openInNewWindow?: boolean | undefined;
|
|
10450
|
+
}[];
|
|
10451
|
+
}[];
|
|
10452
|
+
}[];
|
|
10453
|
+
} | {
|
|
10454
|
+
type: "Image";
|
|
10455
|
+
value?: {
|
|
10456
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10457
|
+
url: string;
|
|
10458
|
+
assetId?: string | undefined;
|
|
10459
|
+
size?: {
|
|
10460
|
+
width: number;
|
|
10461
|
+
height: number;
|
|
10462
|
+
} | undefined;
|
|
10463
|
+
figmaFile?: {
|
|
10464
|
+
sourceId: string;
|
|
10465
|
+
frameId: string;
|
|
10466
|
+
} | undefined;
|
|
10467
|
+
} | undefined;
|
|
10468
|
+
})[];
|
|
10469
|
+
columnWidth?: number | undefined;
|
|
10470
|
+
}, {
|
|
10471
|
+
id: string;
|
|
10472
|
+
alignment: "Center" | "Left" | "Right";
|
|
10473
|
+
nodes: ({
|
|
10474
|
+
type: "RichText";
|
|
10475
|
+
value: {
|
|
10476
|
+
spans: {
|
|
10477
|
+
text: string;
|
|
10478
|
+
attributes: {
|
|
10479
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10480
|
+
link?: string | null | undefined;
|
|
10481
|
+
documentationItemId?: string | null | undefined;
|
|
10482
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10483
|
+
}[];
|
|
10484
|
+
}[];
|
|
10485
|
+
};
|
|
10486
|
+
} | {
|
|
10487
|
+
type: "MultiRichText";
|
|
10488
|
+
value: {
|
|
10489
|
+
spans: {
|
|
10490
|
+
text: string;
|
|
10491
|
+
attributes: {
|
|
10492
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10493
|
+
link?: string | null | undefined;
|
|
10494
|
+
documentationItemId?: string | null | undefined;
|
|
10495
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10496
|
+
}[];
|
|
10497
|
+
}[];
|
|
10498
|
+
}[];
|
|
10499
|
+
} | {
|
|
10500
|
+
type: "Image";
|
|
10501
|
+
value?: {
|
|
10502
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10503
|
+
url: string;
|
|
10504
|
+
assetId?: string | undefined;
|
|
10505
|
+
size?: {
|
|
10506
|
+
width?: number | null | undefined;
|
|
10507
|
+
height?: number | null | undefined;
|
|
10508
|
+
} | undefined;
|
|
10509
|
+
figmaFile?: {
|
|
10510
|
+
sourceId: string;
|
|
10511
|
+
frameId: string;
|
|
10512
|
+
} | undefined;
|
|
10513
|
+
} | undefined;
|
|
10514
|
+
})[];
|
|
10515
|
+
columnWidth?: number | undefined;
|
|
10516
|
+
}>, "many">;
|
|
10517
|
+
}, "strip", z.ZodTypeAny, {
|
|
10518
|
+
cells: {
|
|
10519
|
+
id: string;
|
|
10520
|
+
alignment: "Center" | "Left" | "Right";
|
|
10521
|
+
nodes: ({
|
|
10522
|
+
type: "RichText";
|
|
10523
|
+
value: {
|
|
10524
|
+
spans: {
|
|
10525
|
+
text: string;
|
|
10526
|
+
attributes: {
|
|
10527
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10528
|
+
link?: string | undefined;
|
|
10529
|
+
documentationItemId?: string | undefined;
|
|
10530
|
+
openInNewWindow?: boolean | undefined;
|
|
10531
|
+
}[];
|
|
10532
|
+
}[];
|
|
10533
|
+
};
|
|
10534
|
+
} | {
|
|
10535
|
+
type: "MultiRichText";
|
|
10536
|
+
value: {
|
|
10537
|
+
spans: {
|
|
10538
|
+
text: string;
|
|
10539
|
+
attributes: {
|
|
10540
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10541
|
+
link?: string | undefined;
|
|
10542
|
+
documentationItemId?: string | undefined;
|
|
10543
|
+
openInNewWindow?: boolean | undefined;
|
|
10544
|
+
}[];
|
|
10545
|
+
}[];
|
|
10546
|
+
}[];
|
|
10547
|
+
} | {
|
|
10548
|
+
type: "Image";
|
|
10549
|
+
value?: {
|
|
10550
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10551
|
+
url: string;
|
|
10552
|
+
assetId?: string | undefined;
|
|
10553
|
+
size?: {
|
|
10554
|
+
width: number;
|
|
10555
|
+
height: number;
|
|
10556
|
+
} | undefined;
|
|
10557
|
+
figmaFile?: {
|
|
10558
|
+
sourceId: string;
|
|
10559
|
+
frameId: string;
|
|
10560
|
+
} | undefined;
|
|
10561
|
+
} | undefined;
|
|
10562
|
+
})[];
|
|
10563
|
+
columnWidth?: number | undefined;
|
|
10564
|
+
}[];
|
|
10565
|
+
}, {
|
|
10566
|
+
cells: {
|
|
10567
|
+
id: string;
|
|
10568
|
+
alignment: "Center" | "Left" | "Right";
|
|
10569
|
+
nodes: ({
|
|
10570
|
+
type: "RichText";
|
|
10571
|
+
value: {
|
|
10572
|
+
spans: {
|
|
10573
|
+
text: string;
|
|
10574
|
+
attributes: {
|
|
10575
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10576
|
+
link?: string | null | undefined;
|
|
10577
|
+
documentationItemId?: string | null | undefined;
|
|
10578
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10579
|
+
}[];
|
|
10580
|
+
}[];
|
|
10581
|
+
};
|
|
10582
|
+
} | {
|
|
10583
|
+
type: "MultiRichText";
|
|
10584
|
+
value: {
|
|
10585
|
+
spans: {
|
|
10586
|
+
text: string;
|
|
10587
|
+
attributes: {
|
|
10588
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10589
|
+
link?: string | null | undefined;
|
|
10590
|
+
documentationItemId?: string | null | undefined;
|
|
10591
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10592
|
+
}[];
|
|
10593
|
+
}[];
|
|
10594
|
+
}[];
|
|
10595
|
+
} | {
|
|
10596
|
+
type: "Image";
|
|
10597
|
+
value?: {
|
|
10598
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10599
|
+
url: string;
|
|
10600
|
+
assetId?: string | undefined;
|
|
10601
|
+
size?: {
|
|
10602
|
+
width?: number | null | undefined;
|
|
10603
|
+
height?: number | null | undefined;
|
|
10604
|
+
} | undefined;
|
|
10605
|
+
figmaFile?: {
|
|
10606
|
+
sourceId: string;
|
|
10607
|
+
frameId: string;
|
|
10608
|
+
} | undefined;
|
|
10609
|
+
} | undefined;
|
|
10610
|
+
})[];
|
|
10611
|
+
columnWidth?: number | undefined;
|
|
10612
|
+
}[];
|
|
10613
|
+
}>;
|
|
10614
|
+
type PageBlockItemTableRow = z.infer<typeof PageBlockItemTableRow>;
|
|
10615
|
+
declare const PageBlockItemTableValue: z.ZodObject<{
|
|
10616
|
+
highlightHeaderColumn: z.ZodOptional<z.ZodBoolean>;
|
|
10617
|
+
highlightHeaderRow: z.ZodOptional<z.ZodBoolean>;
|
|
10618
|
+
showBorder: z.ZodOptional<z.ZodBoolean>;
|
|
10619
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
10620
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10621
|
+
cells: z.ZodArray<z.ZodObject<{
|
|
10622
|
+
id: z.ZodString;
|
|
10623
|
+
nodes: z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
10624
|
+
type: z.ZodLiteral<"RichText">;
|
|
10625
|
+
value: z.ZodObject<{
|
|
10626
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10627
|
+
text: z.ZodString;
|
|
10628
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10629
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10630
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10631
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10632
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10633
|
+
}, "strip", z.ZodTypeAny, {
|
|
10634
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10635
|
+
link?: string | undefined;
|
|
10636
|
+
documentationItemId?: string | undefined;
|
|
10637
|
+
openInNewWindow?: boolean | undefined;
|
|
10638
|
+
}, {
|
|
10639
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10640
|
+
link?: string | null | undefined;
|
|
10641
|
+
documentationItemId?: string | null | undefined;
|
|
10642
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10643
|
+
}>, "many">;
|
|
10644
|
+
}, "strip", z.ZodTypeAny, {
|
|
10645
|
+
text: string;
|
|
10646
|
+
attributes: {
|
|
10647
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10648
|
+
link?: string | undefined;
|
|
10649
|
+
documentationItemId?: string | undefined;
|
|
10650
|
+
openInNewWindow?: boolean | undefined;
|
|
10651
|
+
}[];
|
|
10652
|
+
}, {
|
|
10653
|
+
text: string;
|
|
10654
|
+
attributes: {
|
|
10655
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10656
|
+
link?: string | null | undefined;
|
|
10657
|
+
documentationItemId?: string | null | undefined;
|
|
10658
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10659
|
+
}[];
|
|
10660
|
+
}>, "many">;
|
|
10661
|
+
}, "strip", z.ZodTypeAny, {
|
|
10662
|
+
spans: {
|
|
10663
|
+
text: string;
|
|
10664
|
+
attributes: {
|
|
10665
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10666
|
+
link?: string | undefined;
|
|
10667
|
+
documentationItemId?: string | undefined;
|
|
10668
|
+
openInNewWindow?: boolean | undefined;
|
|
10669
|
+
}[];
|
|
10670
|
+
}[];
|
|
10671
|
+
}, {
|
|
10672
|
+
spans: {
|
|
10673
|
+
text: string;
|
|
10674
|
+
attributes: {
|
|
10675
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10676
|
+
link?: string | null | undefined;
|
|
10677
|
+
documentationItemId?: string | null | undefined;
|
|
10678
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10679
|
+
}[];
|
|
10680
|
+
}[];
|
|
10681
|
+
}>;
|
|
10682
|
+
}, "strip", z.ZodTypeAny, {
|
|
10683
|
+
type: "RichText";
|
|
10684
|
+
value: {
|
|
10685
|
+
spans: {
|
|
10686
|
+
text: string;
|
|
10687
|
+
attributes: {
|
|
10688
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10689
|
+
link?: string | undefined;
|
|
10690
|
+
documentationItemId?: string | undefined;
|
|
10691
|
+
openInNewWindow?: boolean | undefined;
|
|
10692
|
+
}[];
|
|
10693
|
+
}[];
|
|
10694
|
+
};
|
|
10695
|
+
}, {
|
|
10696
|
+
type: "RichText";
|
|
10697
|
+
value: {
|
|
10698
|
+
spans: {
|
|
10699
|
+
text: string;
|
|
10700
|
+
attributes: {
|
|
10701
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10702
|
+
link?: string | null | undefined;
|
|
10703
|
+
documentationItemId?: string | null | undefined;
|
|
10704
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10705
|
+
}[];
|
|
10706
|
+
}[];
|
|
10707
|
+
};
|
|
10708
|
+
}>, z.ZodObject<{
|
|
10709
|
+
type: z.ZodLiteral<"MultiRichText">;
|
|
10710
|
+
value: z.ZodArray<z.ZodObject<{
|
|
10711
|
+
spans: z.ZodArray<z.ZodObject<{
|
|
10712
|
+
text: z.ZodString;
|
|
10713
|
+
attributes: z.ZodArray<z.ZodObject<{
|
|
10714
|
+
type: z.ZodEnum<["Bold", "Italic", "Link", "Strikethrough", "Code"]>;
|
|
10715
|
+
link: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10716
|
+
documentationItemId: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10717
|
+
openInNewWindow: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>;
|
|
10718
|
+
}, "strip", z.ZodTypeAny, {
|
|
10719
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10720
|
+
link?: string | undefined;
|
|
10721
|
+
documentationItemId?: string | undefined;
|
|
10722
|
+
openInNewWindow?: boolean | undefined;
|
|
10723
|
+
}, {
|
|
10724
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10725
|
+
link?: string | null | undefined;
|
|
10726
|
+
documentationItemId?: string | null | undefined;
|
|
10727
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10728
|
+
}>, "many">;
|
|
10729
|
+
}, "strip", z.ZodTypeAny, {
|
|
10730
|
+
text: string;
|
|
10731
|
+
attributes: {
|
|
10732
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10733
|
+
link?: string | undefined;
|
|
10734
|
+
documentationItemId?: string | undefined;
|
|
10735
|
+
openInNewWindow?: boolean | undefined;
|
|
10736
|
+
}[];
|
|
10737
|
+
}, {
|
|
10738
|
+
text: string;
|
|
10739
|
+
attributes: {
|
|
10740
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10741
|
+
link?: string | null | undefined;
|
|
10742
|
+
documentationItemId?: string | null | undefined;
|
|
10743
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10744
|
+
}[];
|
|
10745
|
+
}>, "many">;
|
|
10746
|
+
}, "strip", z.ZodTypeAny, {
|
|
10747
|
+
spans: {
|
|
10748
|
+
text: string;
|
|
10749
|
+
attributes: {
|
|
10750
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10751
|
+
link?: string | undefined;
|
|
10752
|
+
documentationItemId?: string | undefined;
|
|
10753
|
+
openInNewWindow?: boolean | undefined;
|
|
10754
|
+
}[];
|
|
10755
|
+
}[];
|
|
10756
|
+
}, {
|
|
10757
|
+
spans: {
|
|
10758
|
+
text: string;
|
|
10759
|
+
attributes: {
|
|
10760
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10761
|
+
link?: string | null | undefined;
|
|
10762
|
+
documentationItemId?: string | null | undefined;
|
|
10763
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10764
|
+
}[];
|
|
10765
|
+
}[];
|
|
10766
|
+
}>, "many">;
|
|
10767
|
+
}, "strip", z.ZodTypeAny, {
|
|
10768
|
+
type: "MultiRichText";
|
|
10769
|
+
value: {
|
|
10770
|
+
spans: {
|
|
10771
|
+
text: string;
|
|
10772
|
+
attributes: {
|
|
10773
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10774
|
+
link?: string | undefined;
|
|
10775
|
+
documentationItemId?: string | undefined;
|
|
10776
|
+
openInNewWindow?: boolean | undefined;
|
|
10777
|
+
}[];
|
|
10778
|
+
}[];
|
|
10779
|
+
}[];
|
|
10780
|
+
}, {
|
|
10781
|
+
type: "MultiRichText";
|
|
10782
|
+
value: {
|
|
10783
|
+
spans: {
|
|
10784
|
+
text: string;
|
|
10785
|
+
attributes: {
|
|
10786
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10787
|
+
link?: string | null | undefined;
|
|
10788
|
+
documentationItemId?: string | null | undefined;
|
|
10789
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10790
|
+
}[];
|
|
10791
|
+
}[];
|
|
10792
|
+
}[];
|
|
10793
|
+
}>, z.ZodObject<{
|
|
10794
|
+
type: z.ZodLiteral<"Image">;
|
|
10795
|
+
value: z.ZodOptional<z.ZodObject<{
|
|
10796
|
+
type: z.ZodEnum<["Upload", "Asset", "FigmaFrame"]>;
|
|
10797
|
+
url: z.ZodString;
|
|
10798
|
+
assetId: z.ZodOptional<z.ZodString>;
|
|
10799
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
10800
|
+
width: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10801
|
+
height: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodNumber>>, number, number | null | undefined>;
|
|
10802
|
+
}, "strip", z.ZodTypeAny, {
|
|
10803
|
+
width: number;
|
|
10804
|
+
height: number;
|
|
10805
|
+
}, {
|
|
10806
|
+
width?: number | null | undefined;
|
|
10807
|
+
height?: number | null | undefined;
|
|
10808
|
+
}>>;
|
|
10809
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
10810
|
+
sourceId: z.ZodString;
|
|
10811
|
+
frameId: z.ZodString;
|
|
10812
|
+
}, "strip", z.ZodTypeAny, {
|
|
10813
|
+
sourceId: string;
|
|
10814
|
+
frameId: string;
|
|
10815
|
+
}, {
|
|
10816
|
+
sourceId: string;
|
|
10817
|
+
frameId: string;
|
|
10818
|
+
}>>;
|
|
10819
|
+
}, "strip", z.ZodTypeAny, {
|
|
10820
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10821
|
+
url: string;
|
|
10822
|
+
assetId?: string | undefined;
|
|
10823
|
+
size?: {
|
|
10824
|
+
width: number;
|
|
10825
|
+
height: number;
|
|
10826
|
+
} | undefined;
|
|
10827
|
+
figmaFile?: {
|
|
10828
|
+
sourceId: string;
|
|
10829
|
+
frameId: string;
|
|
10830
|
+
} | undefined;
|
|
10831
|
+
}, {
|
|
10832
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10833
|
+
url: string;
|
|
10834
|
+
assetId?: string | undefined;
|
|
10835
|
+
size?: {
|
|
10836
|
+
width?: number | null | undefined;
|
|
10837
|
+
height?: number | null | undefined;
|
|
10838
|
+
} | undefined;
|
|
10839
|
+
figmaFile?: {
|
|
10840
|
+
sourceId: string;
|
|
10841
|
+
frameId: string;
|
|
10842
|
+
} | undefined;
|
|
10843
|
+
}>>;
|
|
10844
|
+
}, "strip", z.ZodTypeAny, {
|
|
10845
|
+
type: "Image";
|
|
10846
|
+
value?: {
|
|
10847
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10848
|
+
url: string;
|
|
10849
|
+
assetId?: string | undefined;
|
|
10850
|
+
size?: {
|
|
10851
|
+
width: number;
|
|
10852
|
+
height: number;
|
|
10853
|
+
} | undefined;
|
|
10854
|
+
figmaFile?: {
|
|
10855
|
+
sourceId: string;
|
|
10856
|
+
frameId: string;
|
|
10857
|
+
} | undefined;
|
|
10858
|
+
} | undefined;
|
|
10859
|
+
}, {
|
|
10860
|
+
type: "Image";
|
|
10861
|
+
value?: {
|
|
10862
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10863
|
+
url: string;
|
|
10864
|
+
assetId?: string | undefined;
|
|
10865
|
+
size?: {
|
|
10866
|
+
width?: number | null | undefined;
|
|
10867
|
+
height?: number | null | undefined;
|
|
10868
|
+
} | undefined;
|
|
10869
|
+
figmaFile?: {
|
|
10870
|
+
sourceId: string;
|
|
10871
|
+
frameId: string;
|
|
10872
|
+
} | undefined;
|
|
10873
|
+
} | undefined;
|
|
10874
|
+
}>]>, "many">;
|
|
10875
|
+
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
10876
|
+
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
10877
|
+
}, "strip", z.ZodTypeAny, {
|
|
10878
|
+
id: string;
|
|
10879
|
+
alignment: "Center" | "Left" | "Right";
|
|
10880
|
+
nodes: ({
|
|
10881
|
+
type: "RichText";
|
|
10882
|
+
value: {
|
|
10883
|
+
spans: {
|
|
10884
|
+
text: string;
|
|
10885
|
+
attributes: {
|
|
10886
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10887
|
+
link?: string | undefined;
|
|
10888
|
+
documentationItemId?: string | undefined;
|
|
10889
|
+
openInNewWindow?: boolean | undefined;
|
|
10890
|
+
}[];
|
|
10891
|
+
}[];
|
|
10892
|
+
};
|
|
10893
|
+
} | {
|
|
10894
|
+
type: "MultiRichText";
|
|
10895
|
+
value: {
|
|
10896
|
+
spans: {
|
|
10897
|
+
text: string;
|
|
10898
|
+
attributes: {
|
|
10899
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10900
|
+
link?: string | undefined;
|
|
10901
|
+
documentationItemId?: string | undefined;
|
|
10902
|
+
openInNewWindow?: boolean | undefined;
|
|
10903
|
+
}[];
|
|
10904
|
+
}[];
|
|
10905
|
+
}[];
|
|
10906
|
+
} | {
|
|
10907
|
+
type: "Image";
|
|
10908
|
+
value?: {
|
|
10909
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10910
|
+
url: string;
|
|
10911
|
+
assetId?: string | undefined;
|
|
10912
|
+
size?: {
|
|
10913
|
+
width: number;
|
|
10914
|
+
height: number;
|
|
10915
|
+
} | undefined;
|
|
10916
|
+
figmaFile?: {
|
|
10917
|
+
sourceId: string;
|
|
10918
|
+
frameId: string;
|
|
10919
|
+
} | undefined;
|
|
10920
|
+
} | undefined;
|
|
10921
|
+
})[];
|
|
10922
|
+
columnWidth?: number | undefined;
|
|
10923
|
+
}, {
|
|
10924
|
+
id: string;
|
|
10925
|
+
alignment: "Center" | "Left" | "Right";
|
|
10926
|
+
nodes: ({
|
|
10927
|
+
type: "RichText";
|
|
10928
|
+
value: {
|
|
10929
|
+
spans: {
|
|
10930
|
+
text: string;
|
|
10931
|
+
attributes: {
|
|
10932
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10933
|
+
link?: string | null | undefined;
|
|
10934
|
+
documentationItemId?: string | null | undefined;
|
|
10935
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10936
|
+
}[];
|
|
10937
|
+
}[];
|
|
10938
|
+
};
|
|
10939
|
+
} | {
|
|
10940
|
+
type: "MultiRichText";
|
|
10941
|
+
value: {
|
|
10942
|
+
spans: {
|
|
10943
|
+
text: string;
|
|
10944
|
+
attributes: {
|
|
10945
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10946
|
+
link?: string | null | undefined;
|
|
10947
|
+
documentationItemId?: string | null | undefined;
|
|
10948
|
+
openInNewWindow?: boolean | null | undefined;
|
|
10949
|
+
}[];
|
|
10950
|
+
}[];
|
|
10951
|
+
}[];
|
|
10952
|
+
} | {
|
|
10953
|
+
type: "Image";
|
|
10954
|
+
value?: {
|
|
10955
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
10956
|
+
url: string;
|
|
10957
|
+
assetId?: string | undefined;
|
|
10958
|
+
size?: {
|
|
10959
|
+
width?: number | null | undefined;
|
|
10960
|
+
height?: number | null | undefined;
|
|
10961
|
+
} | undefined;
|
|
10962
|
+
figmaFile?: {
|
|
10963
|
+
sourceId: string;
|
|
10964
|
+
frameId: string;
|
|
10965
|
+
} | undefined;
|
|
10966
|
+
} | undefined;
|
|
10967
|
+
})[];
|
|
10968
|
+
columnWidth?: number | undefined;
|
|
10969
|
+
}>, "many">;
|
|
10970
|
+
}, "strip", z.ZodTypeAny, {
|
|
10971
|
+
cells: {
|
|
10972
|
+
id: string;
|
|
10973
|
+
alignment: "Center" | "Left" | "Right";
|
|
10974
|
+
nodes: ({
|
|
10975
|
+
type: "RichText";
|
|
10976
|
+
value: {
|
|
10977
|
+
spans: {
|
|
10978
|
+
text: string;
|
|
10979
|
+
attributes: {
|
|
10980
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10981
|
+
link?: string | undefined;
|
|
10982
|
+
documentationItemId?: string | undefined;
|
|
10983
|
+
openInNewWindow?: boolean | undefined;
|
|
10984
|
+
}[];
|
|
10985
|
+
}[];
|
|
10986
|
+
};
|
|
10987
|
+
} | {
|
|
10988
|
+
type: "MultiRichText";
|
|
10989
|
+
value: {
|
|
10990
|
+
spans: {
|
|
10991
|
+
text: string;
|
|
10992
|
+
attributes: {
|
|
10993
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
10994
|
+
link?: string | undefined;
|
|
10995
|
+
documentationItemId?: string | undefined;
|
|
10996
|
+
openInNewWindow?: boolean | undefined;
|
|
10997
|
+
}[];
|
|
10998
|
+
}[];
|
|
10999
|
+
}[];
|
|
11000
|
+
} | {
|
|
11001
|
+
type: "Image";
|
|
11002
|
+
value?: {
|
|
11003
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11004
|
+
url: string;
|
|
11005
|
+
assetId?: string | undefined;
|
|
11006
|
+
size?: {
|
|
11007
|
+
width: number;
|
|
11008
|
+
height: number;
|
|
11009
|
+
} | undefined;
|
|
11010
|
+
figmaFile?: {
|
|
11011
|
+
sourceId: string;
|
|
11012
|
+
frameId: string;
|
|
11013
|
+
} | undefined;
|
|
11014
|
+
} | undefined;
|
|
11015
|
+
})[];
|
|
11016
|
+
columnWidth?: number | undefined;
|
|
11017
|
+
}[];
|
|
11018
|
+
}, {
|
|
11019
|
+
cells: {
|
|
11020
|
+
id: string;
|
|
11021
|
+
alignment: "Center" | "Left" | "Right";
|
|
11022
|
+
nodes: ({
|
|
11023
|
+
type: "RichText";
|
|
11024
|
+
value: {
|
|
11025
|
+
spans: {
|
|
11026
|
+
text: string;
|
|
11027
|
+
attributes: {
|
|
11028
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11029
|
+
link?: string | null | undefined;
|
|
11030
|
+
documentationItemId?: string | null | undefined;
|
|
11031
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11032
|
+
}[];
|
|
11033
|
+
}[];
|
|
11034
|
+
};
|
|
11035
|
+
} | {
|
|
11036
|
+
type: "MultiRichText";
|
|
11037
|
+
value: {
|
|
11038
|
+
spans: {
|
|
11039
|
+
text: string;
|
|
11040
|
+
attributes: {
|
|
11041
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11042
|
+
link?: string | null | undefined;
|
|
11043
|
+
documentationItemId?: string | null | undefined;
|
|
11044
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11045
|
+
}[];
|
|
11046
|
+
}[];
|
|
11047
|
+
}[];
|
|
11048
|
+
} | {
|
|
11049
|
+
type: "Image";
|
|
11050
|
+
value?: {
|
|
11051
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11052
|
+
url: string;
|
|
11053
|
+
assetId?: string | undefined;
|
|
11054
|
+
size?: {
|
|
11055
|
+
width?: number | null | undefined;
|
|
11056
|
+
height?: number | null | undefined;
|
|
11057
|
+
} | undefined;
|
|
11058
|
+
figmaFile?: {
|
|
11059
|
+
sourceId: string;
|
|
11060
|
+
frameId: string;
|
|
11061
|
+
} | undefined;
|
|
11062
|
+
} | undefined;
|
|
11063
|
+
})[];
|
|
11064
|
+
columnWidth?: number | undefined;
|
|
11065
|
+
}[];
|
|
11066
|
+
}>, "many">;
|
|
11067
|
+
}, "strip", z.ZodTypeAny, {
|
|
11068
|
+
value: {
|
|
11069
|
+
cells: {
|
|
11070
|
+
id: string;
|
|
11071
|
+
alignment: "Center" | "Left" | "Right";
|
|
11072
|
+
nodes: ({
|
|
11073
|
+
type: "RichText";
|
|
11074
|
+
value: {
|
|
11075
|
+
spans: {
|
|
11076
|
+
text: string;
|
|
11077
|
+
attributes: {
|
|
11078
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11079
|
+
link?: string | undefined;
|
|
11080
|
+
documentationItemId?: string | undefined;
|
|
11081
|
+
openInNewWindow?: boolean | undefined;
|
|
11082
|
+
}[];
|
|
11083
|
+
}[];
|
|
11084
|
+
};
|
|
11085
|
+
} | {
|
|
11086
|
+
type: "MultiRichText";
|
|
11087
|
+
value: {
|
|
11088
|
+
spans: {
|
|
11089
|
+
text: string;
|
|
11090
|
+
attributes: {
|
|
11091
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11092
|
+
link?: string | undefined;
|
|
11093
|
+
documentationItemId?: string | undefined;
|
|
11094
|
+
openInNewWindow?: boolean | undefined;
|
|
11095
|
+
}[];
|
|
11096
|
+
}[];
|
|
11097
|
+
}[];
|
|
11098
|
+
} | {
|
|
11099
|
+
type: "Image";
|
|
11100
|
+
value?: {
|
|
11101
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11102
|
+
url: string;
|
|
11103
|
+
assetId?: string | undefined;
|
|
11104
|
+
size?: {
|
|
11105
|
+
width: number;
|
|
11106
|
+
height: number;
|
|
11107
|
+
} | undefined;
|
|
11108
|
+
figmaFile?: {
|
|
11109
|
+
sourceId: string;
|
|
11110
|
+
frameId: string;
|
|
11111
|
+
} | undefined;
|
|
11112
|
+
} | undefined;
|
|
11113
|
+
})[];
|
|
11114
|
+
columnWidth?: number | undefined;
|
|
11115
|
+
}[];
|
|
11116
|
+
}[];
|
|
11117
|
+
highlightHeaderColumn?: boolean | undefined;
|
|
11118
|
+
highlightHeaderRow?: boolean | undefined;
|
|
11119
|
+
showBorder?: boolean | undefined;
|
|
11120
|
+
width?: number | undefined;
|
|
11121
|
+
}, {
|
|
11122
|
+
value: {
|
|
11123
|
+
cells: {
|
|
11124
|
+
id: string;
|
|
11125
|
+
alignment: "Center" | "Left" | "Right";
|
|
11126
|
+
nodes: ({
|
|
11127
|
+
type: "RichText";
|
|
11128
|
+
value: {
|
|
11129
|
+
spans: {
|
|
11130
|
+
text: string;
|
|
11131
|
+
attributes: {
|
|
11132
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11133
|
+
link?: string | null | undefined;
|
|
11134
|
+
documentationItemId?: string | null | undefined;
|
|
11135
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11136
|
+
}[];
|
|
11137
|
+
}[];
|
|
11138
|
+
};
|
|
11139
|
+
} | {
|
|
11140
|
+
type: "MultiRichText";
|
|
11141
|
+
value: {
|
|
11142
|
+
spans: {
|
|
11143
|
+
text: string;
|
|
11144
|
+
attributes: {
|
|
11145
|
+
type: "Link" | "Code" | "Bold" | "Italic" | "Strikethrough";
|
|
11146
|
+
link?: string | null | undefined;
|
|
11147
|
+
documentationItemId?: string | null | undefined;
|
|
11148
|
+
openInNewWindow?: boolean | null | undefined;
|
|
11149
|
+
}[];
|
|
11150
|
+
}[];
|
|
11151
|
+
}[];
|
|
11152
|
+
} | {
|
|
11153
|
+
type: "Image";
|
|
11154
|
+
value?: {
|
|
11155
|
+
type: "Upload" | "Asset" | "FigmaFrame";
|
|
11156
|
+
url: string;
|
|
11157
|
+
assetId?: string | undefined;
|
|
11158
|
+
size?: {
|
|
11159
|
+
width?: number | null | undefined;
|
|
11160
|
+
height?: number | null | undefined;
|
|
11161
|
+
} | undefined;
|
|
11162
|
+
figmaFile?: {
|
|
11163
|
+
sourceId: string;
|
|
11164
|
+
frameId: string;
|
|
11165
|
+
} | undefined;
|
|
11166
|
+
} | undefined;
|
|
11167
|
+
})[];
|
|
11168
|
+
columnWidth?: number | undefined;
|
|
11169
|
+
}[];
|
|
11170
|
+
}[];
|
|
11171
|
+
highlightHeaderColumn?: boolean | undefined;
|
|
11172
|
+
highlightHeaderRow?: boolean | undefined;
|
|
11173
|
+
showBorder?: boolean | undefined;
|
|
11174
|
+
width?: number | undefined;
|
|
11175
|
+
}>;
|
|
11176
|
+
type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
9313
11177
|
|
|
9314
11178
|
declare const DocumentationPageDataV1: z.ZodObject<{
|
|
9315
11179
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
@@ -114601,4 +116465,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
114601
116465
|
}>;
|
|
114602
116466
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
114603
116467
|
|
|
114604
|
-
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupDTO, DocumentationItemConfiguration, DocumentationPage, DocumentationPageDTOV1, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, SHORT_PERSISTENT_ID_LENGTH, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
116468
|
+
export { Address, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BasePulsarProperty, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, type Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementViewColumn, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePublishedDocPage, type CreateTheme, CreateWorkspaceInput, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, type DesignSystemVersion, DesignSystemVersionRoom, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupDTO, DocumentationItemConfiguration, DocumentationPage, DocumentationPageDTOV1, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupData, ElementGroupElementData, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyValue, type ElementPropertyValueDiff, type ElementView, type ElementViewBaseColumnType, type ElementViewBasePropertyColumn, type ElementViewColumn, type ElementViewColumnSharedAttributes, type ElementViewColumnType, type ElementViewPropertyDefinitionColumn, type ElementViewThemeColumn, Entity, ExportJob, ExportJobStatus, Exporter, ExporterDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, IntegrationAuthType, type IntegrationToken, IntegrationTokenSchema, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyOptions, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemImageReference, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, type PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarContributionBlock, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarPropertyType, type ResolvedAsset, SHORT_PERSISTENT_ID_LENGTH, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementViewColumn, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, type UpdatePublishedDocPage, type UpdateTheme, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isTokenType, nullishToOptional, publishedDocEnvironments, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|