@supernova-studio/model 0.25.1 → 0.26.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 +2245 -234
- package/dist/index.d.ts +2245 -234
- package/dist/index.js +101 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +961 -920
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/data-sources/data-source.ts +5 -0
- package/src/dsm/elements/data/documentation-section-v2.ts +47 -0
- package/src/dsm/elements/data/index.ts +1 -0
- package/src/dsm/elements/page-block-v2.ts +1 -0
- package/src/dsm/import/support/figma-files.ts +1 -0
- package/src/dsm/import/support/import-context.ts +11 -1
- package/src/multiplayer/documentation-page-room.ts +8 -9
- package/src/workspace/npm-registry-settings.ts +2 -7
package/dist/index.d.mts
CHANGED
|
@@ -4626,6 +4626,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4626
4626
|
themePersistentId?: string | undefined;
|
|
4627
4627
|
}>;
|
|
4628
4628
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
4629
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
4629
4630
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
4630
4631
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
4631
4632
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -4673,6 +4674,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4673
4674
|
}>>;
|
|
4674
4675
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
4675
4676
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
4677
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
4676
4678
|
}, "strip", z.ZodTypeAny, {
|
|
4677
4679
|
type: "Figma";
|
|
4678
4680
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -4686,6 +4688,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4686
4688
|
fileId: string;
|
|
4687
4689
|
ownerId: string;
|
|
4688
4690
|
ownerName: string;
|
|
4691
|
+
requiresSync: boolean;
|
|
4689
4692
|
lastImportMetadata?: {
|
|
4690
4693
|
fileData?: {
|
|
4691
4694
|
lastUpdatedAt: Date;
|
|
@@ -4699,6 +4702,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4699
4702
|
} | undefined;
|
|
4700
4703
|
downloadChunkSize?: number | undefined;
|
|
4701
4704
|
figmaRenderChunkSize?: number | undefined;
|
|
4705
|
+
maxFileDepth?: number | undefined;
|
|
4702
4706
|
}, {
|
|
4703
4707
|
type: "Figma";
|
|
4704
4708
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -4712,6 +4716,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4712
4716
|
fileId: string;
|
|
4713
4717
|
ownerId: string;
|
|
4714
4718
|
ownerName: string;
|
|
4719
|
+
requiresSync?: boolean | undefined;
|
|
4715
4720
|
lastImportMetadata?: {
|
|
4716
4721
|
fileData?: {
|
|
4717
4722
|
lastUpdatedAt: Date;
|
|
@@ -4725,6 +4730,7 @@ declare const DataSourceFigmaRemote: z.ZodObject<{
|
|
|
4725
4730
|
} | undefined;
|
|
4726
4731
|
downloadChunkSize?: number | undefined;
|
|
4727
4732
|
figmaRenderChunkSize?: number | undefined;
|
|
4733
|
+
maxFileDepth?: number | undefined;
|
|
4728
4734
|
}>;
|
|
4729
4735
|
type DataSourceFigmaRemote = z.infer<typeof DataSourceFigmaRemote>;
|
|
4730
4736
|
declare const DataSourceTokenStudioRemote: z.ZodObject<{
|
|
@@ -4809,6 +4815,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4809
4815
|
themePersistentId?: string | undefined;
|
|
4810
4816
|
}>;
|
|
4811
4817
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
4818
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
4812
4819
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
4813
4820
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
4814
4821
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -4856,6 +4863,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4856
4863
|
}>>;
|
|
4857
4864
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
4858
4865
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
4866
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
4859
4867
|
}, "strip", z.ZodTypeAny, {
|
|
4860
4868
|
type: "Figma";
|
|
4861
4869
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -4869,6 +4877,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4869
4877
|
fileId: string;
|
|
4870
4878
|
ownerId: string;
|
|
4871
4879
|
ownerName: string;
|
|
4880
|
+
requiresSync: boolean;
|
|
4872
4881
|
lastImportMetadata?: {
|
|
4873
4882
|
fileData?: {
|
|
4874
4883
|
lastUpdatedAt: Date;
|
|
@@ -4882,6 +4891,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4882
4891
|
} | undefined;
|
|
4883
4892
|
downloadChunkSize?: number | undefined;
|
|
4884
4893
|
figmaRenderChunkSize?: number | undefined;
|
|
4894
|
+
maxFileDepth?: number | undefined;
|
|
4885
4895
|
}, {
|
|
4886
4896
|
type: "Figma";
|
|
4887
4897
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -4895,6 +4905,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4895
4905
|
fileId: string;
|
|
4896
4906
|
ownerId: string;
|
|
4897
4907
|
ownerName: string;
|
|
4908
|
+
requiresSync?: boolean | undefined;
|
|
4898
4909
|
lastImportMetadata?: {
|
|
4899
4910
|
fileData?: {
|
|
4900
4911
|
lastUpdatedAt: Date;
|
|
@@ -4908,6 +4919,7 @@ declare const DataSourceRemote: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
4908
4919
|
} | undefined;
|
|
4909
4920
|
downloadChunkSize?: number | undefined;
|
|
4910
4921
|
figmaRenderChunkSize?: number | undefined;
|
|
4922
|
+
maxFileDepth?: number | undefined;
|
|
4911
4923
|
}>, z.ZodObject<{
|
|
4912
4924
|
type: z.ZodLiteral<"FigmaVariablesPlugin">;
|
|
4913
4925
|
remoteId: z.ZodString;
|
|
@@ -16337,6 +16349,1218 @@ declare const DocumentationPageElementDataV2: z.ZodObject<{
|
|
|
16337
16349
|
} | undefined;
|
|
16338
16350
|
}>;
|
|
16339
16351
|
|
|
16352
|
+
declare const PageSectionTypeV2: z.ZodEnum<["Tabs"]>;
|
|
16353
|
+
type PageSectionTypeV2 = z.infer<typeof PageSectionTypeV2>;
|
|
16354
|
+
declare const PageSectionColumnV2: z.ZodObject<{
|
|
16355
|
+
id: z.ZodString;
|
|
16356
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
16357
|
+
id: z.ZodString;
|
|
16358
|
+
type: z.ZodLiteral<"Block">;
|
|
16359
|
+
data: z.ZodObject<{
|
|
16360
|
+
packageId: z.ZodString;
|
|
16361
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
16362
|
+
indentLevel: z.ZodNumber;
|
|
16363
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
16364
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
16365
|
+
value: z.ZodString;
|
|
16366
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16367
|
+
}, "strip", z.ZodTypeAny, {
|
|
16368
|
+
value: string;
|
|
16369
|
+
referencedTokenId?: string | undefined;
|
|
16370
|
+
}, {
|
|
16371
|
+
value: string;
|
|
16372
|
+
referencedTokenId?: string | undefined;
|
|
16373
|
+
}>>;
|
|
16374
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
16375
|
+
}, "strip", z.ZodTypeAny, {
|
|
16376
|
+
itemBackgroundColor?: {
|
|
16377
|
+
value: string;
|
|
16378
|
+
referencedTokenId?: string | undefined;
|
|
16379
|
+
} | undefined;
|
|
16380
|
+
numberOfColumns?: number | undefined;
|
|
16381
|
+
}, {
|
|
16382
|
+
itemBackgroundColor?: {
|
|
16383
|
+
value: string;
|
|
16384
|
+
referencedTokenId?: string | undefined;
|
|
16385
|
+
} | undefined;
|
|
16386
|
+
numberOfColumns?: number | undefined;
|
|
16387
|
+
}>>;
|
|
16388
|
+
items: z.ZodArray<z.ZodObject<{
|
|
16389
|
+
id: z.ZodString;
|
|
16390
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
16391
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
16392
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
16393
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
16394
|
+
url: z.ZodOptional<z.ZodString>;
|
|
16395
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
16396
|
+
}, "strip", z.ZodTypeAny, {
|
|
16397
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16398
|
+
documentationItemId?: string | undefined;
|
|
16399
|
+
pageHeadingId?: string | undefined;
|
|
16400
|
+
url?: string | undefined;
|
|
16401
|
+
openInNewTab?: boolean | undefined;
|
|
16402
|
+
}, {
|
|
16403
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16404
|
+
documentationItemId?: string | undefined;
|
|
16405
|
+
pageHeadingId?: string | undefined;
|
|
16406
|
+
url?: string | undefined;
|
|
16407
|
+
openInNewTab?: boolean | undefined;
|
|
16408
|
+
}>>;
|
|
16409
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
16410
|
+
value: z.ZodAny;
|
|
16411
|
+
}, "strip", z.ZodTypeAny, {
|
|
16412
|
+
value?: any;
|
|
16413
|
+
}, {
|
|
16414
|
+
value?: any;
|
|
16415
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
16416
|
+
}, "strip", z.ZodTypeAny, {
|
|
16417
|
+
id: string;
|
|
16418
|
+
props: Record<string, {
|
|
16419
|
+
value?: any;
|
|
16420
|
+
} & Record<string, any>>;
|
|
16421
|
+
linksTo?: {
|
|
16422
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16423
|
+
documentationItemId?: string | undefined;
|
|
16424
|
+
pageHeadingId?: string | undefined;
|
|
16425
|
+
url?: string | undefined;
|
|
16426
|
+
openInNewTab?: boolean | undefined;
|
|
16427
|
+
} | undefined;
|
|
16428
|
+
}, {
|
|
16429
|
+
id: string;
|
|
16430
|
+
props: Record<string, {
|
|
16431
|
+
value?: any;
|
|
16432
|
+
} & Record<string, any>>;
|
|
16433
|
+
linksTo?: {
|
|
16434
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16435
|
+
documentationItemId?: string | undefined;
|
|
16436
|
+
pageHeadingId?: string | undefined;
|
|
16437
|
+
url?: string | undefined;
|
|
16438
|
+
openInNewTab?: boolean | undefined;
|
|
16439
|
+
} | undefined;
|
|
16440
|
+
}>, "many">;
|
|
16441
|
+
}, "strip", z.ZodTypeAny, {
|
|
16442
|
+
items: {
|
|
16443
|
+
id: string;
|
|
16444
|
+
props: Record<string, {
|
|
16445
|
+
value?: any;
|
|
16446
|
+
} & Record<string, any>>;
|
|
16447
|
+
linksTo?: {
|
|
16448
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16449
|
+
documentationItemId?: string | undefined;
|
|
16450
|
+
pageHeadingId?: string | undefined;
|
|
16451
|
+
url?: string | undefined;
|
|
16452
|
+
openInNewTab?: boolean | undefined;
|
|
16453
|
+
} | undefined;
|
|
16454
|
+
}[];
|
|
16455
|
+
packageId: string;
|
|
16456
|
+
indentLevel: number;
|
|
16457
|
+
variantId?: string | undefined;
|
|
16458
|
+
appearance?: {
|
|
16459
|
+
itemBackgroundColor?: {
|
|
16460
|
+
value: string;
|
|
16461
|
+
referencedTokenId?: string | undefined;
|
|
16462
|
+
} | undefined;
|
|
16463
|
+
numberOfColumns?: number | undefined;
|
|
16464
|
+
} | undefined;
|
|
16465
|
+
}, {
|
|
16466
|
+
items: {
|
|
16467
|
+
id: string;
|
|
16468
|
+
props: Record<string, {
|
|
16469
|
+
value?: any;
|
|
16470
|
+
} & Record<string, any>>;
|
|
16471
|
+
linksTo?: {
|
|
16472
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16473
|
+
documentationItemId?: string | undefined;
|
|
16474
|
+
pageHeadingId?: string | undefined;
|
|
16475
|
+
url?: string | undefined;
|
|
16476
|
+
openInNewTab?: boolean | undefined;
|
|
16477
|
+
} | undefined;
|
|
16478
|
+
}[];
|
|
16479
|
+
packageId: string;
|
|
16480
|
+
indentLevel: number;
|
|
16481
|
+
variantId?: string | undefined;
|
|
16482
|
+
appearance?: {
|
|
16483
|
+
itemBackgroundColor?: {
|
|
16484
|
+
value: string;
|
|
16485
|
+
referencedTokenId?: string | undefined;
|
|
16486
|
+
} | undefined;
|
|
16487
|
+
numberOfColumns?: number | undefined;
|
|
16488
|
+
} | undefined;
|
|
16489
|
+
}>;
|
|
16490
|
+
}, "strip", z.ZodTypeAny, {
|
|
16491
|
+
id: string;
|
|
16492
|
+
type: "Block";
|
|
16493
|
+
data: {
|
|
16494
|
+
items: {
|
|
16495
|
+
id: string;
|
|
16496
|
+
props: Record<string, {
|
|
16497
|
+
value?: any;
|
|
16498
|
+
} & Record<string, any>>;
|
|
16499
|
+
linksTo?: {
|
|
16500
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16501
|
+
documentationItemId?: string | undefined;
|
|
16502
|
+
pageHeadingId?: string | undefined;
|
|
16503
|
+
url?: string | undefined;
|
|
16504
|
+
openInNewTab?: boolean | undefined;
|
|
16505
|
+
} | undefined;
|
|
16506
|
+
}[];
|
|
16507
|
+
packageId: string;
|
|
16508
|
+
indentLevel: number;
|
|
16509
|
+
variantId?: string | undefined;
|
|
16510
|
+
appearance?: {
|
|
16511
|
+
itemBackgroundColor?: {
|
|
16512
|
+
value: string;
|
|
16513
|
+
referencedTokenId?: string | undefined;
|
|
16514
|
+
} | undefined;
|
|
16515
|
+
numberOfColumns?: number | undefined;
|
|
16516
|
+
} | undefined;
|
|
16517
|
+
};
|
|
16518
|
+
}, {
|
|
16519
|
+
id: string;
|
|
16520
|
+
type: "Block";
|
|
16521
|
+
data: {
|
|
16522
|
+
items: {
|
|
16523
|
+
id: string;
|
|
16524
|
+
props: Record<string, {
|
|
16525
|
+
value?: any;
|
|
16526
|
+
} & Record<string, any>>;
|
|
16527
|
+
linksTo?: {
|
|
16528
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16529
|
+
documentationItemId?: string | undefined;
|
|
16530
|
+
pageHeadingId?: string | undefined;
|
|
16531
|
+
url?: string | undefined;
|
|
16532
|
+
openInNewTab?: boolean | undefined;
|
|
16533
|
+
} | undefined;
|
|
16534
|
+
}[];
|
|
16535
|
+
packageId: string;
|
|
16536
|
+
indentLevel: number;
|
|
16537
|
+
variantId?: string | undefined;
|
|
16538
|
+
appearance?: {
|
|
16539
|
+
itemBackgroundColor?: {
|
|
16540
|
+
value: string;
|
|
16541
|
+
referencedTokenId?: string | undefined;
|
|
16542
|
+
} | undefined;
|
|
16543
|
+
numberOfColumns?: number | undefined;
|
|
16544
|
+
} | undefined;
|
|
16545
|
+
};
|
|
16546
|
+
}>, "many">;
|
|
16547
|
+
}, "strip", z.ZodTypeAny, {
|
|
16548
|
+
id: string;
|
|
16549
|
+
blocks: {
|
|
16550
|
+
id: string;
|
|
16551
|
+
type: "Block";
|
|
16552
|
+
data: {
|
|
16553
|
+
items: {
|
|
16554
|
+
id: string;
|
|
16555
|
+
props: Record<string, {
|
|
16556
|
+
value?: any;
|
|
16557
|
+
} & Record<string, any>>;
|
|
16558
|
+
linksTo?: {
|
|
16559
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16560
|
+
documentationItemId?: string | undefined;
|
|
16561
|
+
pageHeadingId?: string | undefined;
|
|
16562
|
+
url?: string | undefined;
|
|
16563
|
+
openInNewTab?: boolean | undefined;
|
|
16564
|
+
} | undefined;
|
|
16565
|
+
}[];
|
|
16566
|
+
packageId: string;
|
|
16567
|
+
indentLevel: number;
|
|
16568
|
+
variantId?: string | undefined;
|
|
16569
|
+
appearance?: {
|
|
16570
|
+
itemBackgroundColor?: {
|
|
16571
|
+
value: string;
|
|
16572
|
+
referencedTokenId?: string | undefined;
|
|
16573
|
+
} | undefined;
|
|
16574
|
+
numberOfColumns?: number | undefined;
|
|
16575
|
+
} | undefined;
|
|
16576
|
+
};
|
|
16577
|
+
}[];
|
|
16578
|
+
}, {
|
|
16579
|
+
id: string;
|
|
16580
|
+
blocks: {
|
|
16581
|
+
id: string;
|
|
16582
|
+
type: "Block";
|
|
16583
|
+
data: {
|
|
16584
|
+
items: {
|
|
16585
|
+
id: string;
|
|
16586
|
+
props: Record<string, {
|
|
16587
|
+
value?: any;
|
|
16588
|
+
} & Record<string, any>>;
|
|
16589
|
+
linksTo?: {
|
|
16590
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16591
|
+
documentationItemId?: string | undefined;
|
|
16592
|
+
pageHeadingId?: string | undefined;
|
|
16593
|
+
url?: string | undefined;
|
|
16594
|
+
openInNewTab?: boolean | undefined;
|
|
16595
|
+
} | undefined;
|
|
16596
|
+
}[];
|
|
16597
|
+
packageId: string;
|
|
16598
|
+
indentLevel: number;
|
|
16599
|
+
variantId?: string | undefined;
|
|
16600
|
+
appearance?: {
|
|
16601
|
+
itemBackgroundColor?: {
|
|
16602
|
+
value: string;
|
|
16603
|
+
referencedTokenId?: string | undefined;
|
|
16604
|
+
} | undefined;
|
|
16605
|
+
numberOfColumns?: number | undefined;
|
|
16606
|
+
} | undefined;
|
|
16607
|
+
};
|
|
16608
|
+
}[];
|
|
16609
|
+
}>;
|
|
16610
|
+
type PageSectionColumnV2 = z.infer<typeof PageSectionColumnV2>;
|
|
16611
|
+
declare const PageSectionItemV2: z.ZodObject<{
|
|
16612
|
+
id: z.ZodString;
|
|
16613
|
+
title: z.ZodString;
|
|
16614
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
16615
|
+
id: z.ZodString;
|
|
16616
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
16617
|
+
id: z.ZodString;
|
|
16618
|
+
type: z.ZodLiteral<"Block">;
|
|
16619
|
+
data: z.ZodObject<{
|
|
16620
|
+
packageId: z.ZodString;
|
|
16621
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
16622
|
+
indentLevel: z.ZodNumber;
|
|
16623
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
16624
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
16625
|
+
value: z.ZodString;
|
|
16626
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16627
|
+
}, "strip", z.ZodTypeAny, {
|
|
16628
|
+
value: string;
|
|
16629
|
+
referencedTokenId?: string | undefined;
|
|
16630
|
+
}, {
|
|
16631
|
+
value: string;
|
|
16632
|
+
referencedTokenId?: string | undefined;
|
|
16633
|
+
}>>;
|
|
16634
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
16635
|
+
}, "strip", z.ZodTypeAny, {
|
|
16636
|
+
itemBackgroundColor?: {
|
|
16637
|
+
value: string;
|
|
16638
|
+
referencedTokenId?: string | undefined;
|
|
16639
|
+
} | undefined;
|
|
16640
|
+
numberOfColumns?: number | undefined;
|
|
16641
|
+
}, {
|
|
16642
|
+
itemBackgroundColor?: {
|
|
16643
|
+
value: string;
|
|
16644
|
+
referencedTokenId?: string | undefined;
|
|
16645
|
+
} | undefined;
|
|
16646
|
+
numberOfColumns?: number | undefined;
|
|
16647
|
+
}>>;
|
|
16648
|
+
items: z.ZodArray<z.ZodObject<{
|
|
16649
|
+
id: z.ZodString;
|
|
16650
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
16651
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
16652
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
16653
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
16654
|
+
url: z.ZodOptional<z.ZodString>;
|
|
16655
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
16656
|
+
}, "strip", z.ZodTypeAny, {
|
|
16657
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16658
|
+
documentationItemId?: string | undefined;
|
|
16659
|
+
pageHeadingId?: string | undefined;
|
|
16660
|
+
url?: string | undefined;
|
|
16661
|
+
openInNewTab?: boolean | undefined;
|
|
16662
|
+
}, {
|
|
16663
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16664
|
+
documentationItemId?: string | undefined;
|
|
16665
|
+
pageHeadingId?: string | undefined;
|
|
16666
|
+
url?: string | undefined;
|
|
16667
|
+
openInNewTab?: boolean | undefined;
|
|
16668
|
+
}>>;
|
|
16669
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
16670
|
+
value: z.ZodAny;
|
|
16671
|
+
}, "strip", z.ZodTypeAny, {
|
|
16672
|
+
value?: any;
|
|
16673
|
+
}, {
|
|
16674
|
+
value?: any;
|
|
16675
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
16676
|
+
}, "strip", z.ZodTypeAny, {
|
|
16677
|
+
id: string;
|
|
16678
|
+
props: Record<string, {
|
|
16679
|
+
value?: any;
|
|
16680
|
+
} & Record<string, any>>;
|
|
16681
|
+
linksTo?: {
|
|
16682
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16683
|
+
documentationItemId?: string | undefined;
|
|
16684
|
+
pageHeadingId?: string | undefined;
|
|
16685
|
+
url?: string | undefined;
|
|
16686
|
+
openInNewTab?: boolean | undefined;
|
|
16687
|
+
} | undefined;
|
|
16688
|
+
}, {
|
|
16689
|
+
id: string;
|
|
16690
|
+
props: Record<string, {
|
|
16691
|
+
value?: any;
|
|
16692
|
+
} & Record<string, any>>;
|
|
16693
|
+
linksTo?: {
|
|
16694
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16695
|
+
documentationItemId?: string | undefined;
|
|
16696
|
+
pageHeadingId?: string | undefined;
|
|
16697
|
+
url?: string | undefined;
|
|
16698
|
+
openInNewTab?: boolean | undefined;
|
|
16699
|
+
} | undefined;
|
|
16700
|
+
}>, "many">;
|
|
16701
|
+
}, "strip", z.ZodTypeAny, {
|
|
16702
|
+
items: {
|
|
16703
|
+
id: string;
|
|
16704
|
+
props: Record<string, {
|
|
16705
|
+
value?: any;
|
|
16706
|
+
} & Record<string, any>>;
|
|
16707
|
+
linksTo?: {
|
|
16708
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16709
|
+
documentationItemId?: string | undefined;
|
|
16710
|
+
pageHeadingId?: string | undefined;
|
|
16711
|
+
url?: string | undefined;
|
|
16712
|
+
openInNewTab?: boolean | undefined;
|
|
16713
|
+
} | undefined;
|
|
16714
|
+
}[];
|
|
16715
|
+
packageId: string;
|
|
16716
|
+
indentLevel: number;
|
|
16717
|
+
variantId?: string | undefined;
|
|
16718
|
+
appearance?: {
|
|
16719
|
+
itemBackgroundColor?: {
|
|
16720
|
+
value: string;
|
|
16721
|
+
referencedTokenId?: string | undefined;
|
|
16722
|
+
} | undefined;
|
|
16723
|
+
numberOfColumns?: number | undefined;
|
|
16724
|
+
} | undefined;
|
|
16725
|
+
}, {
|
|
16726
|
+
items: {
|
|
16727
|
+
id: string;
|
|
16728
|
+
props: Record<string, {
|
|
16729
|
+
value?: any;
|
|
16730
|
+
} & Record<string, any>>;
|
|
16731
|
+
linksTo?: {
|
|
16732
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16733
|
+
documentationItemId?: string | undefined;
|
|
16734
|
+
pageHeadingId?: string | undefined;
|
|
16735
|
+
url?: string | undefined;
|
|
16736
|
+
openInNewTab?: boolean | undefined;
|
|
16737
|
+
} | undefined;
|
|
16738
|
+
}[];
|
|
16739
|
+
packageId: string;
|
|
16740
|
+
indentLevel: number;
|
|
16741
|
+
variantId?: string | undefined;
|
|
16742
|
+
appearance?: {
|
|
16743
|
+
itemBackgroundColor?: {
|
|
16744
|
+
value: string;
|
|
16745
|
+
referencedTokenId?: string | undefined;
|
|
16746
|
+
} | undefined;
|
|
16747
|
+
numberOfColumns?: number | undefined;
|
|
16748
|
+
} | undefined;
|
|
16749
|
+
}>;
|
|
16750
|
+
}, "strip", z.ZodTypeAny, {
|
|
16751
|
+
id: string;
|
|
16752
|
+
type: "Block";
|
|
16753
|
+
data: {
|
|
16754
|
+
items: {
|
|
16755
|
+
id: string;
|
|
16756
|
+
props: Record<string, {
|
|
16757
|
+
value?: any;
|
|
16758
|
+
} & Record<string, any>>;
|
|
16759
|
+
linksTo?: {
|
|
16760
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16761
|
+
documentationItemId?: string | undefined;
|
|
16762
|
+
pageHeadingId?: string | undefined;
|
|
16763
|
+
url?: string | undefined;
|
|
16764
|
+
openInNewTab?: boolean | undefined;
|
|
16765
|
+
} | undefined;
|
|
16766
|
+
}[];
|
|
16767
|
+
packageId: string;
|
|
16768
|
+
indentLevel: number;
|
|
16769
|
+
variantId?: string | undefined;
|
|
16770
|
+
appearance?: {
|
|
16771
|
+
itemBackgroundColor?: {
|
|
16772
|
+
value: string;
|
|
16773
|
+
referencedTokenId?: string | undefined;
|
|
16774
|
+
} | undefined;
|
|
16775
|
+
numberOfColumns?: number | undefined;
|
|
16776
|
+
} | undefined;
|
|
16777
|
+
};
|
|
16778
|
+
}, {
|
|
16779
|
+
id: string;
|
|
16780
|
+
type: "Block";
|
|
16781
|
+
data: {
|
|
16782
|
+
items: {
|
|
16783
|
+
id: string;
|
|
16784
|
+
props: Record<string, {
|
|
16785
|
+
value?: any;
|
|
16786
|
+
} & Record<string, any>>;
|
|
16787
|
+
linksTo?: {
|
|
16788
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16789
|
+
documentationItemId?: string | undefined;
|
|
16790
|
+
pageHeadingId?: string | undefined;
|
|
16791
|
+
url?: string | undefined;
|
|
16792
|
+
openInNewTab?: boolean | undefined;
|
|
16793
|
+
} | undefined;
|
|
16794
|
+
}[];
|
|
16795
|
+
packageId: string;
|
|
16796
|
+
indentLevel: number;
|
|
16797
|
+
variantId?: string | undefined;
|
|
16798
|
+
appearance?: {
|
|
16799
|
+
itemBackgroundColor?: {
|
|
16800
|
+
value: string;
|
|
16801
|
+
referencedTokenId?: string | undefined;
|
|
16802
|
+
} | undefined;
|
|
16803
|
+
numberOfColumns?: number | undefined;
|
|
16804
|
+
} | undefined;
|
|
16805
|
+
};
|
|
16806
|
+
}>, "many">;
|
|
16807
|
+
}, "strip", z.ZodTypeAny, {
|
|
16808
|
+
id: string;
|
|
16809
|
+
blocks: {
|
|
16810
|
+
id: string;
|
|
16811
|
+
type: "Block";
|
|
16812
|
+
data: {
|
|
16813
|
+
items: {
|
|
16814
|
+
id: string;
|
|
16815
|
+
props: Record<string, {
|
|
16816
|
+
value?: any;
|
|
16817
|
+
} & Record<string, any>>;
|
|
16818
|
+
linksTo?: {
|
|
16819
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16820
|
+
documentationItemId?: string | undefined;
|
|
16821
|
+
pageHeadingId?: string | undefined;
|
|
16822
|
+
url?: string | undefined;
|
|
16823
|
+
openInNewTab?: boolean | undefined;
|
|
16824
|
+
} | undefined;
|
|
16825
|
+
}[];
|
|
16826
|
+
packageId: string;
|
|
16827
|
+
indentLevel: number;
|
|
16828
|
+
variantId?: string | undefined;
|
|
16829
|
+
appearance?: {
|
|
16830
|
+
itemBackgroundColor?: {
|
|
16831
|
+
value: string;
|
|
16832
|
+
referencedTokenId?: string | undefined;
|
|
16833
|
+
} | undefined;
|
|
16834
|
+
numberOfColumns?: number | undefined;
|
|
16835
|
+
} | undefined;
|
|
16836
|
+
};
|
|
16837
|
+
}[];
|
|
16838
|
+
}, {
|
|
16839
|
+
id: string;
|
|
16840
|
+
blocks: {
|
|
16841
|
+
id: string;
|
|
16842
|
+
type: "Block";
|
|
16843
|
+
data: {
|
|
16844
|
+
items: {
|
|
16845
|
+
id: string;
|
|
16846
|
+
props: Record<string, {
|
|
16847
|
+
value?: any;
|
|
16848
|
+
} & Record<string, any>>;
|
|
16849
|
+
linksTo?: {
|
|
16850
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16851
|
+
documentationItemId?: string | undefined;
|
|
16852
|
+
pageHeadingId?: string | undefined;
|
|
16853
|
+
url?: string | undefined;
|
|
16854
|
+
openInNewTab?: boolean | undefined;
|
|
16855
|
+
} | undefined;
|
|
16856
|
+
}[];
|
|
16857
|
+
packageId: string;
|
|
16858
|
+
indentLevel: number;
|
|
16859
|
+
variantId?: string | undefined;
|
|
16860
|
+
appearance?: {
|
|
16861
|
+
itemBackgroundColor?: {
|
|
16862
|
+
value: string;
|
|
16863
|
+
referencedTokenId?: string | undefined;
|
|
16864
|
+
} | undefined;
|
|
16865
|
+
numberOfColumns?: number | undefined;
|
|
16866
|
+
} | undefined;
|
|
16867
|
+
};
|
|
16868
|
+
}[];
|
|
16869
|
+
}>, "many">;
|
|
16870
|
+
}, "strip", z.ZodTypeAny, {
|
|
16871
|
+
id: string;
|
|
16872
|
+
title: string;
|
|
16873
|
+
columns: {
|
|
16874
|
+
id: string;
|
|
16875
|
+
blocks: {
|
|
16876
|
+
id: string;
|
|
16877
|
+
type: "Block";
|
|
16878
|
+
data: {
|
|
16879
|
+
items: {
|
|
16880
|
+
id: string;
|
|
16881
|
+
props: Record<string, {
|
|
16882
|
+
value?: any;
|
|
16883
|
+
} & Record<string, any>>;
|
|
16884
|
+
linksTo?: {
|
|
16885
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16886
|
+
documentationItemId?: string | undefined;
|
|
16887
|
+
pageHeadingId?: string | undefined;
|
|
16888
|
+
url?: string | undefined;
|
|
16889
|
+
openInNewTab?: boolean | undefined;
|
|
16890
|
+
} | undefined;
|
|
16891
|
+
}[];
|
|
16892
|
+
packageId: string;
|
|
16893
|
+
indentLevel: number;
|
|
16894
|
+
variantId?: string | undefined;
|
|
16895
|
+
appearance?: {
|
|
16896
|
+
itemBackgroundColor?: {
|
|
16897
|
+
value: string;
|
|
16898
|
+
referencedTokenId?: string | undefined;
|
|
16899
|
+
} | undefined;
|
|
16900
|
+
numberOfColumns?: number | undefined;
|
|
16901
|
+
} | undefined;
|
|
16902
|
+
};
|
|
16903
|
+
}[];
|
|
16904
|
+
}[];
|
|
16905
|
+
}, {
|
|
16906
|
+
id: string;
|
|
16907
|
+
title: string;
|
|
16908
|
+
columns: {
|
|
16909
|
+
id: string;
|
|
16910
|
+
blocks: {
|
|
16911
|
+
id: string;
|
|
16912
|
+
type: "Block";
|
|
16913
|
+
data: {
|
|
16914
|
+
items: {
|
|
16915
|
+
id: string;
|
|
16916
|
+
props: Record<string, {
|
|
16917
|
+
value?: any;
|
|
16918
|
+
} & Record<string, any>>;
|
|
16919
|
+
linksTo?: {
|
|
16920
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16921
|
+
documentationItemId?: string | undefined;
|
|
16922
|
+
pageHeadingId?: string | undefined;
|
|
16923
|
+
url?: string | undefined;
|
|
16924
|
+
openInNewTab?: boolean | undefined;
|
|
16925
|
+
} | undefined;
|
|
16926
|
+
}[];
|
|
16927
|
+
packageId: string;
|
|
16928
|
+
indentLevel: number;
|
|
16929
|
+
variantId?: string | undefined;
|
|
16930
|
+
appearance?: {
|
|
16931
|
+
itemBackgroundColor?: {
|
|
16932
|
+
value: string;
|
|
16933
|
+
referencedTokenId?: string | undefined;
|
|
16934
|
+
} | undefined;
|
|
16935
|
+
numberOfColumns?: number | undefined;
|
|
16936
|
+
} | undefined;
|
|
16937
|
+
};
|
|
16938
|
+
}[];
|
|
16939
|
+
}[];
|
|
16940
|
+
}>;
|
|
16941
|
+
type PageSectionItemV2 = z.infer<typeof PageSectionItemV2>;
|
|
16942
|
+
declare const PageSectionPaddingV2: z.ZodObject<{
|
|
16943
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
16944
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
16945
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
16946
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
16947
|
+
}, "strip", z.ZodTypeAny, {
|
|
16948
|
+
top?: number | undefined;
|
|
16949
|
+
bottom?: number | undefined;
|
|
16950
|
+
left?: number | undefined;
|
|
16951
|
+
right?: number | undefined;
|
|
16952
|
+
}, {
|
|
16953
|
+
top?: number | undefined;
|
|
16954
|
+
bottom?: number | undefined;
|
|
16955
|
+
left?: number | undefined;
|
|
16956
|
+
right?: number | undefined;
|
|
16957
|
+
}>;
|
|
16958
|
+
type PageSectionPaddingV2 = z.infer<typeof PageSectionPaddingV2>;
|
|
16959
|
+
declare const PageSectionAppearanceV2: z.ZodObject<{
|
|
16960
|
+
expandToEdges: z.ZodBoolean;
|
|
16961
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
16962
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
16963
|
+
value: z.ZodString;
|
|
16964
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16965
|
+
}, "strip", z.ZodTypeAny, {
|
|
16966
|
+
value: string;
|
|
16967
|
+
referencedTokenId?: string | undefined;
|
|
16968
|
+
}, {
|
|
16969
|
+
value: string;
|
|
16970
|
+
referencedTokenId?: string | undefined;
|
|
16971
|
+
}>>;
|
|
16972
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
16973
|
+
value: z.ZodString;
|
|
16974
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16975
|
+
}, "strip", z.ZodTypeAny, {
|
|
16976
|
+
value: string;
|
|
16977
|
+
referencedTokenId?: string | undefined;
|
|
16978
|
+
}, {
|
|
16979
|
+
value: string;
|
|
16980
|
+
referencedTokenId?: string | undefined;
|
|
16981
|
+
}>>;
|
|
16982
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
16983
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
16984
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
16985
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
16986
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
16987
|
+
}, "strip", z.ZodTypeAny, {
|
|
16988
|
+
top?: number | undefined;
|
|
16989
|
+
bottom?: number | undefined;
|
|
16990
|
+
left?: number | undefined;
|
|
16991
|
+
right?: number | undefined;
|
|
16992
|
+
}, {
|
|
16993
|
+
top?: number | undefined;
|
|
16994
|
+
bottom?: number | undefined;
|
|
16995
|
+
left?: number | undefined;
|
|
16996
|
+
right?: number | undefined;
|
|
16997
|
+
}>>;
|
|
16998
|
+
}, "strip", z.ZodTypeAny, {
|
|
16999
|
+
expandToEdges: boolean;
|
|
17000
|
+
contentExpandToEdges: boolean;
|
|
17001
|
+
backgroundColor?: {
|
|
17002
|
+
value: string;
|
|
17003
|
+
referencedTokenId?: string | undefined;
|
|
17004
|
+
} | undefined;
|
|
17005
|
+
foregroundColor?: {
|
|
17006
|
+
value: string;
|
|
17007
|
+
referencedTokenId?: string | undefined;
|
|
17008
|
+
} | undefined;
|
|
17009
|
+
padding?: {
|
|
17010
|
+
top?: number | undefined;
|
|
17011
|
+
bottom?: number | undefined;
|
|
17012
|
+
left?: number | undefined;
|
|
17013
|
+
right?: number | undefined;
|
|
17014
|
+
} | undefined;
|
|
17015
|
+
}, {
|
|
17016
|
+
expandToEdges: boolean;
|
|
17017
|
+
contentExpandToEdges: boolean;
|
|
17018
|
+
backgroundColor?: {
|
|
17019
|
+
value: string;
|
|
17020
|
+
referencedTokenId?: string | undefined;
|
|
17021
|
+
} | undefined;
|
|
17022
|
+
foregroundColor?: {
|
|
17023
|
+
value: string;
|
|
17024
|
+
referencedTokenId?: string | undefined;
|
|
17025
|
+
} | undefined;
|
|
17026
|
+
padding?: {
|
|
17027
|
+
top?: number | undefined;
|
|
17028
|
+
bottom?: number | undefined;
|
|
17029
|
+
left?: number | undefined;
|
|
17030
|
+
right?: number | undefined;
|
|
17031
|
+
} | undefined;
|
|
17032
|
+
}>;
|
|
17033
|
+
type PageSectionAppearanceV2 = z.infer<typeof PageSectionAppearanceV2>;
|
|
17034
|
+
declare const PageSectionEditorModelV2: z.ZodObject<{
|
|
17035
|
+
id: z.ZodString;
|
|
17036
|
+
type: z.ZodLiteral<"Section">;
|
|
17037
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
17038
|
+
sectionType: z.ZodEnum<["Tabs"]>;
|
|
17039
|
+
appearance: z.ZodObject<{
|
|
17040
|
+
expandToEdges: z.ZodBoolean;
|
|
17041
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
17042
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
17043
|
+
value: z.ZodString;
|
|
17044
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17045
|
+
}, "strip", z.ZodTypeAny, {
|
|
17046
|
+
value: string;
|
|
17047
|
+
referencedTokenId?: string | undefined;
|
|
17048
|
+
}, {
|
|
17049
|
+
value: string;
|
|
17050
|
+
referencedTokenId?: string | undefined;
|
|
17051
|
+
}>>;
|
|
17052
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
17053
|
+
value: z.ZodString;
|
|
17054
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17055
|
+
}, "strip", z.ZodTypeAny, {
|
|
17056
|
+
value: string;
|
|
17057
|
+
referencedTokenId?: string | undefined;
|
|
17058
|
+
}, {
|
|
17059
|
+
value: string;
|
|
17060
|
+
referencedTokenId?: string | undefined;
|
|
17061
|
+
}>>;
|
|
17062
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
17063
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
17064
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
17065
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
17066
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
17067
|
+
}, "strip", z.ZodTypeAny, {
|
|
17068
|
+
top?: number | undefined;
|
|
17069
|
+
bottom?: number | undefined;
|
|
17070
|
+
left?: number | undefined;
|
|
17071
|
+
right?: number | undefined;
|
|
17072
|
+
}, {
|
|
17073
|
+
top?: number | undefined;
|
|
17074
|
+
bottom?: number | undefined;
|
|
17075
|
+
left?: number | undefined;
|
|
17076
|
+
right?: number | undefined;
|
|
17077
|
+
}>>;
|
|
17078
|
+
}, "strip", z.ZodTypeAny, {
|
|
17079
|
+
expandToEdges: boolean;
|
|
17080
|
+
contentExpandToEdges: boolean;
|
|
17081
|
+
backgroundColor?: {
|
|
17082
|
+
value: string;
|
|
17083
|
+
referencedTokenId?: string | undefined;
|
|
17084
|
+
} | undefined;
|
|
17085
|
+
foregroundColor?: {
|
|
17086
|
+
value: string;
|
|
17087
|
+
referencedTokenId?: string | undefined;
|
|
17088
|
+
} | undefined;
|
|
17089
|
+
padding?: {
|
|
17090
|
+
top?: number | undefined;
|
|
17091
|
+
bottom?: number | undefined;
|
|
17092
|
+
left?: number | undefined;
|
|
17093
|
+
right?: number | undefined;
|
|
17094
|
+
} | undefined;
|
|
17095
|
+
}, {
|
|
17096
|
+
expandToEdges: boolean;
|
|
17097
|
+
contentExpandToEdges: boolean;
|
|
17098
|
+
backgroundColor?: {
|
|
17099
|
+
value: string;
|
|
17100
|
+
referencedTokenId?: string | undefined;
|
|
17101
|
+
} | undefined;
|
|
17102
|
+
foregroundColor?: {
|
|
17103
|
+
value: string;
|
|
17104
|
+
referencedTokenId?: string | undefined;
|
|
17105
|
+
} | undefined;
|
|
17106
|
+
padding?: {
|
|
17107
|
+
top?: number | undefined;
|
|
17108
|
+
bottom?: number | undefined;
|
|
17109
|
+
left?: number | undefined;
|
|
17110
|
+
right?: number | undefined;
|
|
17111
|
+
} | undefined;
|
|
17112
|
+
}>;
|
|
17113
|
+
items: z.ZodArray<z.ZodObject<{
|
|
17114
|
+
id: z.ZodString;
|
|
17115
|
+
title: z.ZodString;
|
|
17116
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
17117
|
+
id: z.ZodString;
|
|
17118
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
17119
|
+
id: z.ZodString;
|
|
17120
|
+
type: z.ZodLiteral<"Block">;
|
|
17121
|
+
data: z.ZodObject<{
|
|
17122
|
+
packageId: z.ZodString;
|
|
17123
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
17124
|
+
indentLevel: z.ZodNumber;
|
|
17125
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
17126
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
17127
|
+
value: z.ZodString;
|
|
17128
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17129
|
+
}, "strip", z.ZodTypeAny, {
|
|
17130
|
+
value: string;
|
|
17131
|
+
referencedTokenId?: string | undefined;
|
|
17132
|
+
}, {
|
|
17133
|
+
value: string;
|
|
17134
|
+
referencedTokenId?: string | undefined;
|
|
17135
|
+
}>>;
|
|
17136
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
17137
|
+
}, "strip", z.ZodTypeAny, {
|
|
17138
|
+
itemBackgroundColor?: {
|
|
17139
|
+
value: string;
|
|
17140
|
+
referencedTokenId?: string | undefined;
|
|
17141
|
+
} | undefined;
|
|
17142
|
+
numberOfColumns?: number | undefined;
|
|
17143
|
+
}, {
|
|
17144
|
+
itemBackgroundColor?: {
|
|
17145
|
+
value: string;
|
|
17146
|
+
referencedTokenId?: string | undefined;
|
|
17147
|
+
} | undefined;
|
|
17148
|
+
numberOfColumns?: number | undefined;
|
|
17149
|
+
}>>;
|
|
17150
|
+
items: z.ZodArray<z.ZodObject<{
|
|
17151
|
+
id: z.ZodString;
|
|
17152
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
17153
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
17154
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
17155
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
17156
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17157
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
17158
|
+
}, "strip", z.ZodTypeAny, {
|
|
17159
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17160
|
+
documentationItemId?: string | undefined;
|
|
17161
|
+
pageHeadingId?: string | undefined;
|
|
17162
|
+
url?: string | undefined;
|
|
17163
|
+
openInNewTab?: boolean | undefined;
|
|
17164
|
+
}, {
|
|
17165
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17166
|
+
documentationItemId?: string | undefined;
|
|
17167
|
+
pageHeadingId?: string | undefined;
|
|
17168
|
+
url?: string | undefined;
|
|
17169
|
+
openInNewTab?: boolean | undefined;
|
|
17170
|
+
}>>;
|
|
17171
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
17172
|
+
value: z.ZodAny;
|
|
17173
|
+
}, "strip", z.ZodTypeAny, {
|
|
17174
|
+
value?: any;
|
|
17175
|
+
}, {
|
|
17176
|
+
value?: any;
|
|
17177
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
17178
|
+
}, "strip", z.ZodTypeAny, {
|
|
17179
|
+
id: string;
|
|
17180
|
+
props: Record<string, {
|
|
17181
|
+
value?: any;
|
|
17182
|
+
} & Record<string, any>>;
|
|
17183
|
+
linksTo?: {
|
|
17184
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17185
|
+
documentationItemId?: string | undefined;
|
|
17186
|
+
pageHeadingId?: string | undefined;
|
|
17187
|
+
url?: string | undefined;
|
|
17188
|
+
openInNewTab?: boolean | undefined;
|
|
17189
|
+
} | undefined;
|
|
17190
|
+
}, {
|
|
17191
|
+
id: string;
|
|
17192
|
+
props: Record<string, {
|
|
17193
|
+
value?: any;
|
|
17194
|
+
} & Record<string, any>>;
|
|
17195
|
+
linksTo?: {
|
|
17196
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17197
|
+
documentationItemId?: string | undefined;
|
|
17198
|
+
pageHeadingId?: string | undefined;
|
|
17199
|
+
url?: string | undefined;
|
|
17200
|
+
openInNewTab?: boolean | undefined;
|
|
17201
|
+
} | undefined;
|
|
17202
|
+
}>, "many">;
|
|
17203
|
+
}, "strip", z.ZodTypeAny, {
|
|
17204
|
+
items: {
|
|
17205
|
+
id: string;
|
|
17206
|
+
props: Record<string, {
|
|
17207
|
+
value?: any;
|
|
17208
|
+
} & Record<string, any>>;
|
|
17209
|
+
linksTo?: {
|
|
17210
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17211
|
+
documentationItemId?: string | undefined;
|
|
17212
|
+
pageHeadingId?: string | undefined;
|
|
17213
|
+
url?: string | undefined;
|
|
17214
|
+
openInNewTab?: boolean | undefined;
|
|
17215
|
+
} | undefined;
|
|
17216
|
+
}[];
|
|
17217
|
+
packageId: string;
|
|
17218
|
+
indentLevel: number;
|
|
17219
|
+
variantId?: string | undefined;
|
|
17220
|
+
appearance?: {
|
|
17221
|
+
itemBackgroundColor?: {
|
|
17222
|
+
value: string;
|
|
17223
|
+
referencedTokenId?: string | undefined;
|
|
17224
|
+
} | undefined;
|
|
17225
|
+
numberOfColumns?: number | undefined;
|
|
17226
|
+
} | undefined;
|
|
17227
|
+
}, {
|
|
17228
|
+
items: {
|
|
17229
|
+
id: string;
|
|
17230
|
+
props: Record<string, {
|
|
17231
|
+
value?: any;
|
|
17232
|
+
} & Record<string, any>>;
|
|
17233
|
+
linksTo?: {
|
|
17234
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17235
|
+
documentationItemId?: string | undefined;
|
|
17236
|
+
pageHeadingId?: string | undefined;
|
|
17237
|
+
url?: string | undefined;
|
|
17238
|
+
openInNewTab?: boolean | undefined;
|
|
17239
|
+
} | undefined;
|
|
17240
|
+
}[];
|
|
17241
|
+
packageId: string;
|
|
17242
|
+
indentLevel: number;
|
|
17243
|
+
variantId?: string | undefined;
|
|
17244
|
+
appearance?: {
|
|
17245
|
+
itemBackgroundColor?: {
|
|
17246
|
+
value: string;
|
|
17247
|
+
referencedTokenId?: string | undefined;
|
|
17248
|
+
} | undefined;
|
|
17249
|
+
numberOfColumns?: number | undefined;
|
|
17250
|
+
} | undefined;
|
|
17251
|
+
}>;
|
|
17252
|
+
}, "strip", z.ZodTypeAny, {
|
|
17253
|
+
id: string;
|
|
17254
|
+
type: "Block";
|
|
17255
|
+
data: {
|
|
17256
|
+
items: {
|
|
17257
|
+
id: string;
|
|
17258
|
+
props: Record<string, {
|
|
17259
|
+
value?: any;
|
|
17260
|
+
} & Record<string, any>>;
|
|
17261
|
+
linksTo?: {
|
|
17262
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17263
|
+
documentationItemId?: string | undefined;
|
|
17264
|
+
pageHeadingId?: string | undefined;
|
|
17265
|
+
url?: string | undefined;
|
|
17266
|
+
openInNewTab?: boolean | undefined;
|
|
17267
|
+
} | undefined;
|
|
17268
|
+
}[];
|
|
17269
|
+
packageId: string;
|
|
17270
|
+
indentLevel: number;
|
|
17271
|
+
variantId?: string | undefined;
|
|
17272
|
+
appearance?: {
|
|
17273
|
+
itemBackgroundColor?: {
|
|
17274
|
+
value: string;
|
|
17275
|
+
referencedTokenId?: string | undefined;
|
|
17276
|
+
} | undefined;
|
|
17277
|
+
numberOfColumns?: number | undefined;
|
|
17278
|
+
} | undefined;
|
|
17279
|
+
};
|
|
17280
|
+
}, {
|
|
17281
|
+
id: string;
|
|
17282
|
+
type: "Block";
|
|
17283
|
+
data: {
|
|
17284
|
+
items: {
|
|
17285
|
+
id: string;
|
|
17286
|
+
props: Record<string, {
|
|
17287
|
+
value?: any;
|
|
17288
|
+
} & Record<string, any>>;
|
|
17289
|
+
linksTo?: {
|
|
17290
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17291
|
+
documentationItemId?: string | undefined;
|
|
17292
|
+
pageHeadingId?: string | undefined;
|
|
17293
|
+
url?: string | undefined;
|
|
17294
|
+
openInNewTab?: boolean | undefined;
|
|
17295
|
+
} | undefined;
|
|
17296
|
+
}[];
|
|
17297
|
+
packageId: string;
|
|
17298
|
+
indentLevel: number;
|
|
17299
|
+
variantId?: string | undefined;
|
|
17300
|
+
appearance?: {
|
|
17301
|
+
itemBackgroundColor?: {
|
|
17302
|
+
value: string;
|
|
17303
|
+
referencedTokenId?: string | undefined;
|
|
17304
|
+
} | undefined;
|
|
17305
|
+
numberOfColumns?: number | undefined;
|
|
17306
|
+
} | undefined;
|
|
17307
|
+
};
|
|
17308
|
+
}>, "many">;
|
|
17309
|
+
}, "strip", z.ZodTypeAny, {
|
|
17310
|
+
id: string;
|
|
17311
|
+
blocks: {
|
|
17312
|
+
id: string;
|
|
17313
|
+
type: "Block";
|
|
17314
|
+
data: {
|
|
17315
|
+
items: {
|
|
17316
|
+
id: string;
|
|
17317
|
+
props: Record<string, {
|
|
17318
|
+
value?: any;
|
|
17319
|
+
} & Record<string, any>>;
|
|
17320
|
+
linksTo?: {
|
|
17321
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17322
|
+
documentationItemId?: string | undefined;
|
|
17323
|
+
pageHeadingId?: string | undefined;
|
|
17324
|
+
url?: string | undefined;
|
|
17325
|
+
openInNewTab?: boolean | undefined;
|
|
17326
|
+
} | undefined;
|
|
17327
|
+
}[];
|
|
17328
|
+
packageId: string;
|
|
17329
|
+
indentLevel: number;
|
|
17330
|
+
variantId?: string | undefined;
|
|
17331
|
+
appearance?: {
|
|
17332
|
+
itemBackgroundColor?: {
|
|
17333
|
+
value: string;
|
|
17334
|
+
referencedTokenId?: string | undefined;
|
|
17335
|
+
} | undefined;
|
|
17336
|
+
numberOfColumns?: number | undefined;
|
|
17337
|
+
} | undefined;
|
|
17338
|
+
};
|
|
17339
|
+
}[];
|
|
17340
|
+
}, {
|
|
17341
|
+
id: string;
|
|
17342
|
+
blocks: {
|
|
17343
|
+
id: string;
|
|
17344
|
+
type: "Block";
|
|
17345
|
+
data: {
|
|
17346
|
+
items: {
|
|
17347
|
+
id: string;
|
|
17348
|
+
props: Record<string, {
|
|
17349
|
+
value?: any;
|
|
17350
|
+
} & Record<string, any>>;
|
|
17351
|
+
linksTo?: {
|
|
17352
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17353
|
+
documentationItemId?: string | undefined;
|
|
17354
|
+
pageHeadingId?: string | undefined;
|
|
17355
|
+
url?: string | undefined;
|
|
17356
|
+
openInNewTab?: boolean | undefined;
|
|
17357
|
+
} | undefined;
|
|
17358
|
+
}[];
|
|
17359
|
+
packageId: string;
|
|
17360
|
+
indentLevel: number;
|
|
17361
|
+
variantId?: string | undefined;
|
|
17362
|
+
appearance?: {
|
|
17363
|
+
itemBackgroundColor?: {
|
|
17364
|
+
value: string;
|
|
17365
|
+
referencedTokenId?: string | undefined;
|
|
17366
|
+
} | undefined;
|
|
17367
|
+
numberOfColumns?: number | undefined;
|
|
17368
|
+
} | undefined;
|
|
17369
|
+
};
|
|
17370
|
+
}[];
|
|
17371
|
+
}>, "many">;
|
|
17372
|
+
}, "strip", z.ZodTypeAny, {
|
|
17373
|
+
id: string;
|
|
17374
|
+
title: string;
|
|
17375
|
+
columns: {
|
|
17376
|
+
id: string;
|
|
17377
|
+
blocks: {
|
|
17378
|
+
id: string;
|
|
17379
|
+
type: "Block";
|
|
17380
|
+
data: {
|
|
17381
|
+
items: {
|
|
17382
|
+
id: string;
|
|
17383
|
+
props: Record<string, {
|
|
17384
|
+
value?: any;
|
|
17385
|
+
} & Record<string, any>>;
|
|
17386
|
+
linksTo?: {
|
|
17387
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17388
|
+
documentationItemId?: string | undefined;
|
|
17389
|
+
pageHeadingId?: string | undefined;
|
|
17390
|
+
url?: string | undefined;
|
|
17391
|
+
openInNewTab?: boolean | undefined;
|
|
17392
|
+
} | undefined;
|
|
17393
|
+
}[];
|
|
17394
|
+
packageId: string;
|
|
17395
|
+
indentLevel: number;
|
|
17396
|
+
variantId?: string | undefined;
|
|
17397
|
+
appearance?: {
|
|
17398
|
+
itemBackgroundColor?: {
|
|
17399
|
+
value: string;
|
|
17400
|
+
referencedTokenId?: string | undefined;
|
|
17401
|
+
} | undefined;
|
|
17402
|
+
numberOfColumns?: number | undefined;
|
|
17403
|
+
} | undefined;
|
|
17404
|
+
};
|
|
17405
|
+
}[];
|
|
17406
|
+
}[];
|
|
17407
|
+
}, {
|
|
17408
|
+
id: string;
|
|
17409
|
+
title: string;
|
|
17410
|
+
columns: {
|
|
17411
|
+
id: string;
|
|
17412
|
+
blocks: {
|
|
17413
|
+
id: string;
|
|
17414
|
+
type: "Block";
|
|
17415
|
+
data: {
|
|
17416
|
+
items: {
|
|
17417
|
+
id: string;
|
|
17418
|
+
props: Record<string, {
|
|
17419
|
+
value?: any;
|
|
17420
|
+
} & Record<string, any>>;
|
|
17421
|
+
linksTo?: {
|
|
17422
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17423
|
+
documentationItemId?: string | undefined;
|
|
17424
|
+
pageHeadingId?: string | undefined;
|
|
17425
|
+
url?: string | undefined;
|
|
17426
|
+
openInNewTab?: boolean | undefined;
|
|
17427
|
+
} | undefined;
|
|
17428
|
+
}[];
|
|
17429
|
+
packageId: string;
|
|
17430
|
+
indentLevel: number;
|
|
17431
|
+
variantId?: string | undefined;
|
|
17432
|
+
appearance?: {
|
|
17433
|
+
itemBackgroundColor?: {
|
|
17434
|
+
value: string;
|
|
17435
|
+
referencedTokenId?: string | undefined;
|
|
17436
|
+
} | undefined;
|
|
17437
|
+
numberOfColumns?: number | undefined;
|
|
17438
|
+
} | undefined;
|
|
17439
|
+
};
|
|
17440
|
+
}[];
|
|
17441
|
+
}[];
|
|
17442
|
+
}>, "many">;
|
|
17443
|
+
}, "strip", z.ZodTypeAny, {
|
|
17444
|
+
id: string;
|
|
17445
|
+
type: "Section";
|
|
17446
|
+
items: {
|
|
17447
|
+
id: string;
|
|
17448
|
+
title: string;
|
|
17449
|
+
columns: {
|
|
17450
|
+
id: string;
|
|
17451
|
+
blocks: {
|
|
17452
|
+
id: string;
|
|
17453
|
+
type: "Block";
|
|
17454
|
+
data: {
|
|
17455
|
+
items: {
|
|
17456
|
+
id: string;
|
|
17457
|
+
props: Record<string, {
|
|
17458
|
+
value?: any;
|
|
17459
|
+
} & Record<string, any>>;
|
|
17460
|
+
linksTo?: {
|
|
17461
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17462
|
+
documentationItemId?: string | undefined;
|
|
17463
|
+
pageHeadingId?: string | undefined;
|
|
17464
|
+
url?: string | undefined;
|
|
17465
|
+
openInNewTab?: boolean | undefined;
|
|
17466
|
+
} | undefined;
|
|
17467
|
+
}[];
|
|
17468
|
+
packageId: string;
|
|
17469
|
+
indentLevel: number;
|
|
17470
|
+
variantId?: string | undefined;
|
|
17471
|
+
appearance?: {
|
|
17472
|
+
itemBackgroundColor?: {
|
|
17473
|
+
value: string;
|
|
17474
|
+
referencedTokenId?: string | undefined;
|
|
17475
|
+
} | undefined;
|
|
17476
|
+
numberOfColumns?: number | undefined;
|
|
17477
|
+
} | undefined;
|
|
17478
|
+
};
|
|
17479
|
+
}[];
|
|
17480
|
+
}[];
|
|
17481
|
+
}[];
|
|
17482
|
+
appearance: {
|
|
17483
|
+
expandToEdges: boolean;
|
|
17484
|
+
contentExpandToEdges: boolean;
|
|
17485
|
+
backgroundColor?: {
|
|
17486
|
+
value: string;
|
|
17487
|
+
referencedTokenId?: string | undefined;
|
|
17488
|
+
} | undefined;
|
|
17489
|
+
foregroundColor?: {
|
|
17490
|
+
value: string;
|
|
17491
|
+
referencedTokenId?: string | undefined;
|
|
17492
|
+
} | undefined;
|
|
17493
|
+
padding?: {
|
|
17494
|
+
top?: number | undefined;
|
|
17495
|
+
bottom?: number | undefined;
|
|
17496
|
+
left?: number | undefined;
|
|
17497
|
+
right?: number | undefined;
|
|
17498
|
+
} | undefined;
|
|
17499
|
+
};
|
|
17500
|
+
sectionType: "Tabs";
|
|
17501
|
+
variantId?: string | undefined;
|
|
17502
|
+
}, {
|
|
17503
|
+
id: string;
|
|
17504
|
+
type: "Section";
|
|
17505
|
+
items: {
|
|
17506
|
+
id: string;
|
|
17507
|
+
title: string;
|
|
17508
|
+
columns: {
|
|
17509
|
+
id: string;
|
|
17510
|
+
blocks: {
|
|
17511
|
+
id: string;
|
|
17512
|
+
type: "Block";
|
|
17513
|
+
data: {
|
|
17514
|
+
items: {
|
|
17515
|
+
id: string;
|
|
17516
|
+
props: Record<string, {
|
|
17517
|
+
value?: any;
|
|
17518
|
+
} & Record<string, any>>;
|
|
17519
|
+
linksTo?: {
|
|
17520
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17521
|
+
documentationItemId?: string | undefined;
|
|
17522
|
+
pageHeadingId?: string | undefined;
|
|
17523
|
+
url?: string | undefined;
|
|
17524
|
+
openInNewTab?: boolean | undefined;
|
|
17525
|
+
} | undefined;
|
|
17526
|
+
}[];
|
|
17527
|
+
packageId: string;
|
|
17528
|
+
indentLevel: number;
|
|
17529
|
+
variantId?: string | undefined;
|
|
17530
|
+
appearance?: {
|
|
17531
|
+
itemBackgroundColor?: {
|
|
17532
|
+
value: string;
|
|
17533
|
+
referencedTokenId?: string | undefined;
|
|
17534
|
+
} | undefined;
|
|
17535
|
+
numberOfColumns?: number | undefined;
|
|
17536
|
+
} | undefined;
|
|
17537
|
+
};
|
|
17538
|
+
}[];
|
|
17539
|
+
}[];
|
|
17540
|
+
}[];
|
|
17541
|
+
appearance: {
|
|
17542
|
+
expandToEdges: boolean;
|
|
17543
|
+
contentExpandToEdges: boolean;
|
|
17544
|
+
backgroundColor?: {
|
|
17545
|
+
value: string;
|
|
17546
|
+
referencedTokenId?: string | undefined;
|
|
17547
|
+
} | undefined;
|
|
17548
|
+
foregroundColor?: {
|
|
17549
|
+
value: string;
|
|
17550
|
+
referencedTokenId?: string | undefined;
|
|
17551
|
+
} | undefined;
|
|
17552
|
+
padding?: {
|
|
17553
|
+
top?: number | undefined;
|
|
17554
|
+
bottom?: number | undefined;
|
|
17555
|
+
left?: number | undefined;
|
|
17556
|
+
right?: number | undefined;
|
|
17557
|
+
} | undefined;
|
|
17558
|
+
};
|
|
17559
|
+
sectionType: "Tabs";
|
|
17560
|
+
variantId?: string | undefined;
|
|
17561
|
+
}>;
|
|
17562
|
+
type PageSectionEditorModelV2 = z.infer<typeof PageSectionEditorModelV2>;
|
|
17563
|
+
|
|
16340
17564
|
declare const DocumentationItemConfigurationV1: z.ZodObject<{
|
|
16341
17565
|
showSidebar: z.ZodBoolean;
|
|
16342
17566
|
header: z.ZodObject<{
|
|
@@ -27160,6 +28384,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
27160
28384
|
type PageBlockV2 = z.infer<typeof PageBlockV2>;
|
|
27161
28385
|
declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
27162
28386
|
id: z.ZodString;
|
|
28387
|
+
type: z.ZodLiteral<"Block">;
|
|
27163
28388
|
data: z.ZodObject<{
|
|
27164
28389
|
packageId: z.ZodString;
|
|
27165
28390
|
variantId: z.ZodOptional<z.ZodString>;
|
|
@@ -27293,6 +28518,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
27293
28518
|
}>;
|
|
27294
28519
|
}, "strip", z.ZodTypeAny, {
|
|
27295
28520
|
id: string;
|
|
28521
|
+
type: "Block";
|
|
27296
28522
|
data: {
|
|
27297
28523
|
items: {
|
|
27298
28524
|
id: string;
|
|
@@ -27320,6 +28546,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
27320
28546
|
};
|
|
27321
28547
|
}, {
|
|
27322
28548
|
id: string;
|
|
28549
|
+
type: "Block";
|
|
27323
28550
|
data: {
|
|
27324
28551
|
items: {
|
|
27325
28552
|
id: string;
|
|
@@ -43829,18 +45056,21 @@ declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
|
43829
45056
|
currentVersion: z.ZodNullable<z.ZodLiteral<"__latest__">>;
|
|
43830
45057
|
publishedVersion: z.ZodNullable<z.ZodString>;
|
|
43831
45058
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45059
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
43832
45060
|
}, "strip", z.ZodTypeAny, {
|
|
43833
45061
|
components: boolean;
|
|
43834
45062
|
styles: boolean;
|
|
43835
45063
|
currentVersion: "__latest__" | null;
|
|
43836
45064
|
publishedVersion: string | null;
|
|
43837
45065
|
downloadChunkSize?: number | undefined;
|
|
45066
|
+
maxFileDepth?: number | undefined;
|
|
43838
45067
|
}, {
|
|
43839
45068
|
components: boolean;
|
|
43840
45069
|
styles: boolean;
|
|
43841
45070
|
currentVersion: "__latest__" | null;
|
|
43842
45071
|
publishedVersion: string | null;
|
|
43843
45072
|
downloadChunkSize?: number | undefined;
|
|
45073
|
+
maxFileDepth?: number | undefined;
|
|
43844
45074
|
}>;
|
|
43845
45075
|
type FigmaFileDownloadScope = z.infer<typeof FigmaFileDownloadScope>;
|
|
43846
45076
|
declare const FigmaFileAccessData: z.ZodObject<{
|
|
@@ -43893,6 +45123,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43893
45123
|
themePersistentId?: string | undefined;
|
|
43894
45124
|
}>;
|
|
43895
45125
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45126
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
43896
45127
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
43897
45128
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
43898
45129
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -43940,6 +45171,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43940
45171
|
}>>;
|
|
43941
45172
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
43942
45173
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45174
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
43943
45175
|
}, "strip", z.ZodTypeAny, {
|
|
43944
45176
|
type: "Figma";
|
|
43945
45177
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -43953,6 +45185,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43953
45185
|
fileId: string;
|
|
43954
45186
|
ownerId: string;
|
|
43955
45187
|
ownerName: string;
|
|
45188
|
+
requiresSync: boolean;
|
|
43956
45189
|
lastImportMetadata?: {
|
|
43957
45190
|
fileData?: {
|
|
43958
45191
|
lastUpdatedAt: Date;
|
|
@@ -43966,6 +45199,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43966
45199
|
} | undefined;
|
|
43967
45200
|
downloadChunkSize?: number | undefined;
|
|
43968
45201
|
figmaRenderChunkSize?: number | undefined;
|
|
45202
|
+
maxFileDepth?: number | undefined;
|
|
43969
45203
|
}, {
|
|
43970
45204
|
type: "Figma";
|
|
43971
45205
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -43979,6 +45213,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43979
45213
|
fileId: string;
|
|
43980
45214
|
ownerId: string;
|
|
43981
45215
|
ownerName: string;
|
|
45216
|
+
requiresSync?: boolean | undefined;
|
|
43982
45217
|
lastImportMetadata?: {
|
|
43983
45218
|
fileData?: {
|
|
43984
45219
|
lastUpdatedAt: Date;
|
|
@@ -43992,6 +45227,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43992
45227
|
} | undefined;
|
|
43993
45228
|
downloadChunkSize?: number | undefined;
|
|
43994
45229
|
figmaRenderChunkSize?: number | undefined;
|
|
45230
|
+
maxFileDepth?: number | undefined;
|
|
43995
45231
|
}>;
|
|
43996
45232
|
}, "strip", z.ZodTypeAny, {
|
|
43997
45233
|
sourceId: string;
|
|
@@ -44008,6 +45244,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44008
45244
|
fileId: string;
|
|
44009
45245
|
ownerId: string;
|
|
44010
45246
|
ownerName: string;
|
|
45247
|
+
requiresSync: boolean;
|
|
44011
45248
|
lastImportMetadata?: {
|
|
44012
45249
|
fileData?: {
|
|
44013
45250
|
lastUpdatedAt: Date;
|
|
@@ -44021,6 +45258,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44021
45258
|
} | undefined;
|
|
44022
45259
|
downloadChunkSize?: number | undefined;
|
|
44023
45260
|
figmaRenderChunkSize?: number | undefined;
|
|
45261
|
+
maxFileDepth?: number | undefined;
|
|
44024
45262
|
};
|
|
44025
45263
|
}, {
|
|
44026
45264
|
sourceId: string;
|
|
@@ -44037,6 +45275,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44037
45275
|
fileId: string;
|
|
44038
45276
|
ownerId: string;
|
|
44039
45277
|
ownerName: string;
|
|
45278
|
+
requiresSync?: boolean | undefined;
|
|
44040
45279
|
lastImportMetadata?: {
|
|
44041
45280
|
fileData?: {
|
|
44042
45281
|
lastUpdatedAt: Date;
|
|
@@ -44050,6 +45289,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44050
45289
|
} | undefined;
|
|
44051
45290
|
downloadChunkSize?: number | undefined;
|
|
44052
45291
|
figmaRenderChunkSize?: number | undefined;
|
|
45292
|
+
maxFileDepth?: number | undefined;
|
|
44053
45293
|
};
|
|
44054
45294
|
}>;
|
|
44055
45295
|
type ImportedFigmaSourceData = z.infer<typeof ImportedFigmaSourceData>;
|
|
@@ -44100,6 +45340,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44100
45340
|
themePersistentId?: string | undefined;
|
|
44101
45341
|
}>;
|
|
44102
45342
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45343
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44103
45344
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44104
45345
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44105
45346
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44147,6 +45388,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44147
45388
|
}>>;
|
|
44148
45389
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44149
45390
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45391
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44150
45392
|
}, "strip", z.ZodTypeAny, {
|
|
44151
45393
|
type: "Figma";
|
|
44152
45394
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44160,6 +45402,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44160
45402
|
fileId: string;
|
|
44161
45403
|
ownerId: string;
|
|
44162
45404
|
ownerName: string;
|
|
45405
|
+
requiresSync: boolean;
|
|
44163
45406
|
lastImportMetadata?: {
|
|
44164
45407
|
fileData?: {
|
|
44165
45408
|
lastUpdatedAt: Date;
|
|
@@ -44173,6 +45416,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44173
45416
|
} | undefined;
|
|
44174
45417
|
downloadChunkSize?: number | undefined;
|
|
44175
45418
|
figmaRenderChunkSize?: number | undefined;
|
|
45419
|
+
maxFileDepth?: number | undefined;
|
|
44176
45420
|
}, {
|
|
44177
45421
|
type: "Figma";
|
|
44178
45422
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44186,6 +45430,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44186
45430
|
fileId: string;
|
|
44187
45431
|
ownerId: string;
|
|
44188
45432
|
ownerName: string;
|
|
45433
|
+
requiresSync?: boolean | undefined;
|
|
44189
45434
|
lastImportMetadata?: {
|
|
44190
45435
|
fileData?: {
|
|
44191
45436
|
lastUpdatedAt: Date;
|
|
@@ -44199,6 +45444,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44199
45444
|
} | undefined;
|
|
44200
45445
|
downloadChunkSize?: number | undefined;
|
|
44201
45446
|
figmaRenderChunkSize?: number | undefined;
|
|
45447
|
+
maxFileDepth?: number | undefined;
|
|
44202
45448
|
}>;
|
|
44203
45449
|
}, "strip", z.ZodTypeAny, {
|
|
44204
45450
|
sourceId: string;
|
|
@@ -44215,6 +45461,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44215
45461
|
fileId: string;
|
|
44216
45462
|
ownerId: string;
|
|
44217
45463
|
ownerName: string;
|
|
45464
|
+
requiresSync: boolean;
|
|
44218
45465
|
lastImportMetadata?: {
|
|
44219
45466
|
fileData?: {
|
|
44220
45467
|
lastUpdatedAt: Date;
|
|
@@ -44228,6 +45475,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44228
45475
|
} | undefined;
|
|
44229
45476
|
downloadChunkSize?: number | undefined;
|
|
44230
45477
|
figmaRenderChunkSize?: number | undefined;
|
|
45478
|
+
maxFileDepth?: number | undefined;
|
|
44231
45479
|
};
|
|
44232
45480
|
}, {
|
|
44233
45481
|
sourceId: string;
|
|
@@ -44244,6 +45492,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44244
45492
|
fileId: string;
|
|
44245
45493
|
ownerId: string;
|
|
44246
45494
|
ownerName: string;
|
|
45495
|
+
requiresSync?: boolean | undefined;
|
|
44247
45496
|
lastImportMetadata?: {
|
|
44248
45497
|
fileData?: {
|
|
44249
45498
|
lastUpdatedAt: Date;
|
|
@@ -44257,6 +45506,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44257
45506
|
} | undefined;
|
|
44258
45507
|
downloadChunkSize?: number | undefined;
|
|
44259
45508
|
figmaRenderChunkSize?: number | undefined;
|
|
45509
|
+
maxFileDepth?: number | undefined;
|
|
44260
45510
|
};
|
|
44261
45511
|
}>>;
|
|
44262
45512
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44279,6 +45529,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44279
45529
|
fileId: string;
|
|
44280
45530
|
ownerId: string;
|
|
44281
45531
|
ownerName: string;
|
|
45532
|
+
requiresSync: boolean;
|
|
44282
45533
|
lastImportMetadata?: {
|
|
44283
45534
|
fileData?: {
|
|
44284
45535
|
lastUpdatedAt: Date;
|
|
@@ -44292,6 +45543,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44292
45543
|
} | undefined;
|
|
44293
45544
|
downloadChunkSize?: number | undefined;
|
|
44294
45545
|
figmaRenderChunkSize?: number | undefined;
|
|
45546
|
+
maxFileDepth?: number | undefined;
|
|
44295
45547
|
};
|
|
44296
45548
|
}>;
|
|
44297
45549
|
}, {
|
|
@@ -44314,6 +45566,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44314
45566
|
fileId: string;
|
|
44315
45567
|
ownerId: string;
|
|
44316
45568
|
ownerName: string;
|
|
45569
|
+
requiresSync?: boolean | undefined;
|
|
44317
45570
|
lastImportMetadata?: {
|
|
44318
45571
|
fileData?: {
|
|
44319
45572
|
lastUpdatedAt: Date;
|
|
@@ -44327,10 +45580,295 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44327
45580
|
} | undefined;
|
|
44328
45581
|
downloadChunkSize?: number | undefined;
|
|
44329
45582
|
figmaRenderChunkSize?: number | undefined;
|
|
45583
|
+
maxFileDepth?: number | undefined;
|
|
44330
45584
|
};
|
|
44331
45585
|
}>;
|
|
44332
45586
|
}>;
|
|
44333
45587
|
type FigmaImportBaseContext = z.infer<typeof FigmaImportBaseContext>;
|
|
45588
|
+
declare const FigmaImportContextWithSourcesState: z.ZodObject<{
|
|
45589
|
+
designSystemId: z.ZodString;
|
|
45590
|
+
fileAccessByFileId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45591
|
+
accessToken: z.ZodString;
|
|
45592
|
+
}, "strip", z.ZodTypeAny, {
|
|
45593
|
+
accessToken: string;
|
|
45594
|
+
}, {
|
|
45595
|
+
accessToken: string;
|
|
45596
|
+
}>>;
|
|
45597
|
+
importedSourceDataBySourceId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45598
|
+
sourceId: z.ZodString;
|
|
45599
|
+
figmaRemote: z.ZodObject<{
|
|
45600
|
+
type: z.ZodLiteral<"Figma">;
|
|
45601
|
+
fileId: z.ZodString;
|
|
45602
|
+
ownerId: z.ZodString;
|
|
45603
|
+
ownerName: z.ZodString;
|
|
45604
|
+
scope: z.ZodObject<{
|
|
45605
|
+
assets: z.ZodBoolean;
|
|
45606
|
+
components: z.ZodBoolean;
|
|
45607
|
+
documentationFrames: z.ZodBoolean;
|
|
45608
|
+
tokens: z.ZodBoolean;
|
|
45609
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
45610
|
+
}, "strip", z.ZodTypeAny, {
|
|
45611
|
+
assets: boolean;
|
|
45612
|
+
components: boolean;
|
|
45613
|
+
documentationFrames: boolean;
|
|
45614
|
+
tokens: boolean;
|
|
45615
|
+
themePersistentId?: string | undefined;
|
|
45616
|
+
}, {
|
|
45617
|
+
assets: boolean;
|
|
45618
|
+
components: boolean;
|
|
45619
|
+
documentationFrames: boolean;
|
|
45620
|
+
tokens: boolean;
|
|
45621
|
+
themePersistentId?: string | undefined;
|
|
45622
|
+
}>;
|
|
45623
|
+
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45624
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
45625
|
+
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
45626
|
+
fileData: z.ZodOptional<z.ZodObject<{
|
|
45627
|
+
lastUpdatedAt: z.ZodDate;
|
|
45628
|
+
}, "strip", z.ZodTypeAny, {
|
|
45629
|
+
lastUpdatedAt: Date;
|
|
45630
|
+
}, {
|
|
45631
|
+
lastUpdatedAt: Date;
|
|
45632
|
+
}>>;
|
|
45633
|
+
importedPublishedVersion: z.ZodOptional<z.ZodObject<{
|
|
45634
|
+
id: z.ZodString;
|
|
45635
|
+
label: z.ZodOptional<z.ZodString>;
|
|
45636
|
+
description: z.ZodOptional<z.ZodString>;
|
|
45637
|
+
createdAt: z.ZodDate;
|
|
45638
|
+
}, "strip", z.ZodTypeAny, {
|
|
45639
|
+
id: string;
|
|
45640
|
+
createdAt: Date;
|
|
45641
|
+
label?: string | undefined;
|
|
45642
|
+
description?: string | undefined;
|
|
45643
|
+
}, {
|
|
45644
|
+
id: string;
|
|
45645
|
+
createdAt: Date;
|
|
45646
|
+
label?: string | undefined;
|
|
45647
|
+
description?: string | undefined;
|
|
45648
|
+
}>>;
|
|
45649
|
+
}, "strip", z.ZodTypeAny, {
|
|
45650
|
+
fileData?: {
|
|
45651
|
+
lastUpdatedAt: Date;
|
|
45652
|
+
} | undefined;
|
|
45653
|
+
importedPublishedVersion?: {
|
|
45654
|
+
id: string;
|
|
45655
|
+
createdAt: Date;
|
|
45656
|
+
label?: string | undefined;
|
|
45657
|
+
description?: string | undefined;
|
|
45658
|
+
} | undefined;
|
|
45659
|
+
}, {
|
|
45660
|
+
fileData?: {
|
|
45661
|
+
lastUpdatedAt: Date;
|
|
45662
|
+
} | undefined;
|
|
45663
|
+
importedPublishedVersion?: {
|
|
45664
|
+
id: string;
|
|
45665
|
+
createdAt: Date;
|
|
45666
|
+
label?: string | undefined;
|
|
45667
|
+
description?: string | undefined;
|
|
45668
|
+
} | undefined;
|
|
45669
|
+
}>>;
|
|
45670
|
+
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45671
|
+
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45672
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
45673
|
+
}, "strip", z.ZodTypeAny, {
|
|
45674
|
+
type: "Figma";
|
|
45675
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45676
|
+
scope: {
|
|
45677
|
+
assets: boolean;
|
|
45678
|
+
components: boolean;
|
|
45679
|
+
documentationFrames: boolean;
|
|
45680
|
+
tokens: boolean;
|
|
45681
|
+
themePersistentId?: string | undefined;
|
|
45682
|
+
};
|
|
45683
|
+
fileId: string;
|
|
45684
|
+
ownerId: string;
|
|
45685
|
+
ownerName: string;
|
|
45686
|
+
requiresSync: boolean;
|
|
45687
|
+
lastImportMetadata?: {
|
|
45688
|
+
fileData?: {
|
|
45689
|
+
lastUpdatedAt: Date;
|
|
45690
|
+
} | undefined;
|
|
45691
|
+
importedPublishedVersion?: {
|
|
45692
|
+
id: string;
|
|
45693
|
+
createdAt: Date;
|
|
45694
|
+
label?: string | undefined;
|
|
45695
|
+
description?: string | undefined;
|
|
45696
|
+
} | undefined;
|
|
45697
|
+
} | undefined;
|
|
45698
|
+
downloadChunkSize?: number | undefined;
|
|
45699
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45700
|
+
maxFileDepth?: number | undefined;
|
|
45701
|
+
}, {
|
|
45702
|
+
type: "Figma";
|
|
45703
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45704
|
+
scope: {
|
|
45705
|
+
assets: boolean;
|
|
45706
|
+
components: boolean;
|
|
45707
|
+
documentationFrames: boolean;
|
|
45708
|
+
tokens: boolean;
|
|
45709
|
+
themePersistentId?: string | undefined;
|
|
45710
|
+
};
|
|
45711
|
+
fileId: string;
|
|
45712
|
+
ownerId: string;
|
|
45713
|
+
ownerName: string;
|
|
45714
|
+
requiresSync?: boolean | undefined;
|
|
45715
|
+
lastImportMetadata?: {
|
|
45716
|
+
fileData?: {
|
|
45717
|
+
lastUpdatedAt: Date;
|
|
45718
|
+
} | undefined;
|
|
45719
|
+
importedPublishedVersion?: {
|
|
45720
|
+
id: string;
|
|
45721
|
+
createdAt: Date;
|
|
45722
|
+
label?: string | undefined;
|
|
45723
|
+
description?: string | undefined;
|
|
45724
|
+
} | undefined;
|
|
45725
|
+
} | undefined;
|
|
45726
|
+
downloadChunkSize?: number | undefined;
|
|
45727
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45728
|
+
maxFileDepth?: number | undefined;
|
|
45729
|
+
}>;
|
|
45730
|
+
}, "strip", z.ZodTypeAny, {
|
|
45731
|
+
sourceId: string;
|
|
45732
|
+
figmaRemote: {
|
|
45733
|
+
type: "Figma";
|
|
45734
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45735
|
+
scope: {
|
|
45736
|
+
assets: boolean;
|
|
45737
|
+
components: boolean;
|
|
45738
|
+
documentationFrames: boolean;
|
|
45739
|
+
tokens: boolean;
|
|
45740
|
+
themePersistentId?: string | undefined;
|
|
45741
|
+
};
|
|
45742
|
+
fileId: string;
|
|
45743
|
+
ownerId: string;
|
|
45744
|
+
ownerName: string;
|
|
45745
|
+
requiresSync: boolean;
|
|
45746
|
+
lastImportMetadata?: {
|
|
45747
|
+
fileData?: {
|
|
45748
|
+
lastUpdatedAt: Date;
|
|
45749
|
+
} | undefined;
|
|
45750
|
+
importedPublishedVersion?: {
|
|
45751
|
+
id: string;
|
|
45752
|
+
createdAt: Date;
|
|
45753
|
+
label?: string | undefined;
|
|
45754
|
+
description?: string | undefined;
|
|
45755
|
+
} | undefined;
|
|
45756
|
+
} | undefined;
|
|
45757
|
+
downloadChunkSize?: number | undefined;
|
|
45758
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45759
|
+
maxFileDepth?: number | undefined;
|
|
45760
|
+
};
|
|
45761
|
+
}, {
|
|
45762
|
+
sourceId: string;
|
|
45763
|
+
figmaRemote: {
|
|
45764
|
+
type: "Figma";
|
|
45765
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45766
|
+
scope: {
|
|
45767
|
+
assets: boolean;
|
|
45768
|
+
components: boolean;
|
|
45769
|
+
documentationFrames: boolean;
|
|
45770
|
+
tokens: boolean;
|
|
45771
|
+
themePersistentId?: string | undefined;
|
|
45772
|
+
};
|
|
45773
|
+
fileId: string;
|
|
45774
|
+
ownerId: string;
|
|
45775
|
+
ownerName: string;
|
|
45776
|
+
requiresSync?: boolean | undefined;
|
|
45777
|
+
lastImportMetadata?: {
|
|
45778
|
+
fileData?: {
|
|
45779
|
+
lastUpdatedAt: Date;
|
|
45780
|
+
} | undefined;
|
|
45781
|
+
importedPublishedVersion?: {
|
|
45782
|
+
id: string;
|
|
45783
|
+
createdAt: Date;
|
|
45784
|
+
label?: string | undefined;
|
|
45785
|
+
description?: string | undefined;
|
|
45786
|
+
} | undefined;
|
|
45787
|
+
} | undefined;
|
|
45788
|
+
downloadChunkSize?: number | undefined;
|
|
45789
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45790
|
+
maxFileDepth?: number | undefined;
|
|
45791
|
+
};
|
|
45792
|
+
}>>;
|
|
45793
|
+
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
45794
|
+
}, "strip", z.ZodTypeAny, {
|
|
45795
|
+
designSystemId: string;
|
|
45796
|
+
fileAccessByFileId: Record<string, {
|
|
45797
|
+
accessToken: string;
|
|
45798
|
+
}>;
|
|
45799
|
+
importedSourceDataBySourceId: Record<string, {
|
|
45800
|
+
sourceId: string;
|
|
45801
|
+
figmaRemote: {
|
|
45802
|
+
type: "Figma";
|
|
45803
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45804
|
+
scope: {
|
|
45805
|
+
assets: boolean;
|
|
45806
|
+
components: boolean;
|
|
45807
|
+
documentationFrames: boolean;
|
|
45808
|
+
tokens: boolean;
|
|
45809
|
+
themePersistentId?: string | undefined;
|
|
45810
|
+
};
|
|
45811
|
+
fileId: string;
|
|
45812
|
+
ownerId: string;
|
|
45813
|
+
ownerName: string;
|
|
45814
|
+
requiresSync: boolean;
|
|
45815
|
+
lastImportMetadata?: {
|
|
45816
|
+
fileData?: {
|
|
45817
|
+
lastUpdatedAt: Date;
|
|
45818
|
+
} | undefined;
|
|
45819
|
+
importedPublishedVersion?: {
|
|
45820
|
+
id: string;
|
|
45821
|
+
createdAt: Date;
|
|
45822
|
+
label?: string | undefined;
|
|
45823
|
+
description?: string | undefined;
|
|
45824
|
+
} | undefined;
|
|
45825
|
+
} | undefined;
|
|
45826
|
+
downloadChunkSize?: number | undefined;
|
|
45827
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45828
|
+
maxFileDepth?: number | undefined;
|
|
45829
|
+
};
|
|
45830
|
+
}>;
|
|
45831
|
+
sourcesWithMissingAccess: string[];
|
|
45832
|
+
}, {
|
|
45833
|
+
designSystemId: string;
|
|
45834
|
+
fileAccessByFileId: Record<string, {
|
|
45835
|
+
accessToken: string;
|
|
45836
|
+
}>;
|
|
45837
|
+
importedSourceDataBySourceId: Record<string, {
|
|
45838
|
+
sourceId: string;
|
|
45839
|
+
figmaRemote: {
|
|
45840
|
+
type: "Figma";
|
|
45841
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45842
|
+
scope: {
|
|
45843
|
+
assets: boolean;
|
|
45844
|
+
components: boolean;
|
|
45845
|
+
documentationFrames: boolean;
|
|
45846
|
+
tokens: boolean;
|
|
45847
|
+
themePersistentId?: string | undefined;
|
|
45848
|
+
};
|
|
45849
|
+
fileId: string;
|
|
45850
|
+
ownerId: string;
|
|
45851
|
+
ownerName: string;
|
|
45852
|
+
requiresSync?: boolean | undefined;
|
|
45853
|
+
lastImportMetadata?: {
|
|
45854
|
+
fileData?: {
|
|
45855
|
+
lastUpdatedAt: Date;
|
|
45856
|
+
} | undefined;
|
|
45857
|
+
importedPublishedVersion?: {
|
|
45858
|
+
id: string;
|
|
45859
|
+
createdAt: Date;
|
|
45860
|
+
label?: string | undefined;
|
|
45861
|
+
description?: string | undefined;
|
|
45862
|
+
} | undefined;
|
|
45863
|
+
} | undefined;
|
|
45864
|
+
downloadChunkSize?: number | undefined;
|
|
45865
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45866
|
+
maxFileDepth?: number | undefined;
|
|
45867
|
+
};
|
|
45868
|
+
}>;
|
|
45869
|
+
sourcesWithMissingAccess?: string[] | undefined;
|
|
45870
|
+
}>;
|
|
45871
|
+
type FigmaImportContextWithSourcesState = z.infer<typeof FigmaImportContextWithSourcesState>;
|
|
44334
45872
|
declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
44335
45873
|
sourceId: z.ZodString;
|
|
44336
45874
|
figmaRemote: z.ZodObject<{
|
|
@@ -44358,6 +45896,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44358
45896
|
themePersistentId?: string | undefined;
|
|
44359
45897
|
}>;
|
|
44360
45898
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45899
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44361
45900
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44362
45901
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44363
45902
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44405,6 +45944,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44405
45944
|
}>>;
|
|
44406
45945
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44407
45946
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45947
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44408
45948
|
}, "strip", z.ZodTypeAny, {
|
|
44409
45949
|
type: "Figma";
|
|
44410
45950
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44418,6 +45958,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44418
45958
|
fileId: string;
|
|
44419
45959
|
ownerId: string;
|
|
44420
45960
|
ownerName: string;
|
|
45961
|
+
requiresSync: boolean;
|
|
44421
45962
|
lastImportMetadata?: {
|
|
44422
45963
|
fileData?: {
|
|
44423
45964
|
lastUpdatedAt: Date;
|
|
@@ -44431,6 +45972,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44431
45972
|
} | undefined;
|
|
44432
45973
|
downloadChunkSize?: number | undefined;
|
|
44433
45974
|
figmaRenderChunkSize?: number | undefined;
|
|
45975
|
+
maxFileDepth?: number | undefined;
|
|
44434
45976
|
}, {
|
|
44435
45977
|
type: "Figma";
|
|
44436
45978
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44444,6 +45986,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44444
45986
|
fileId: string;
|
|
44445
45987
|
ownerId: string;
|
|
44446
45988
|
ownerName: string;
|
|
45989
|
+
requiresSync?: boolean | undefined;
|
|
44447
45990
|
lastImportMetadata?: {
|
|
44448
45991
|
fileData?: {
|
|
44449
45992
|
lastUpdatedAt: Date;
|
|
@@ -44457,6 +46000,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44457
46000
|
} | undefined;
|
|
44458
46001
|
downloadChunkSize?: number | undefined;
|
|
44459
46002
|
figmaRenderChunkSize?: number | undefined;
|
|
46003
|
+
maxFileDepth?: number | undefined;
|
|
44460
46004
|
}>;
|
|
44461
46005
|
importMetadata: z.ZodObject<{
|
|
44462
46006
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
@@ -44518,6 +46062,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44518
46062
|
fileId: string;
|
|
44519
46063
|
ownerId: string;
|
|
44520
46064
|
ownerName: string;
|
|
46065
|
+
requiresSync: boolean;
|
|
44521
46066
|
lastImportMetadata?: {
|
|
44522
46067
|
fileData?: {
|
|
44523
46068
|
lastUpdatedAt: Date;
|
|
@@ -44531,6 +46076,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44531
46076
|
} | undefined;
|
|
44532
46077
|
downloadChunkSize?: number | undefined;
|
|
44533
46078
|
figmaRenderChunkSize?: number | undefined;
|
|
46079
|
+
maxFileDepth?: number | undefined;
|
|
44534
46080
|
};
|
|
44535
46081
|
importMetadata: {
|
|
44536
46082
|
fileData?: {
|
|
@@ -44558,6 +46104,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44558
46104
|
fileId: string;
|
|
44559
46105
|
ownerId: string;
|
|
44560
46106
|
ownerName: string;
|
|
46107
|
+
requiresSync?: boolean | undefined;
|
|
44561
46108
|
lastImportMetadata?: {
|
|
44562
46109
|
fileData?: {
|
|
44563
46110
|
lastUpdatedAt: Date;
|
|
@@ -44571,6 +46118,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44571
46118
|
} | undefined;
|
|
44572
46119
|
downloadChunkSize?: number | undefined;
|
|
44573
46120
|
figmaRenderChunkSize?: number | undefined;
|
|
46121
|
+
maxFileDepth?: number | undefined;
|
|
44574
46122
|
};
|
|
44575
46123
|
importMetadata: {
|
|
44576
46124
|
fileData?: {
|
|
@@ -44621,6 +46169,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44621
46169
|
themePersistentId?: string | undefined;
|
|
44622
46170
|
}>;
|
|
44623
46171
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
46172
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44624
46173
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44625
46174
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44626
46175
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44668,6 +46217,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44668
46217
|
}>>;
|
|
44669
46218
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44670
46219
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46220
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44671
46221
|
}, "strip", z.ZodTypeAny, {
|
|
44672
46222
|
type: "Figma";
|
|
44673
46223
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44681,6 +46231,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44681
46231
|
fileId: string;
|
|
44682
46232
|
ownerId: string;
|
|
44683
46233
|
ownerName: string;
|
|
46234
|
+
requiresSync: boolean;
|
|
44684
46235
|
lastImportMetadata?: {
|
|
44685
46236
|
fileData?: {
|
|
44686
46237
|
lastUpdatedAt: Date;
|
|
@@ -44694,6 +46245,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44694
46245
|
} | undefined;
|
|
44695
46246
|
downloadChunkSize?: number | undefined;
|
|
44696
46247
|
figmaRenderChunkSize?: number | undefined;
|
|
46248
|
+
maxFileDepth?: number | undefined;
|
|
44697
46249
|
}, {
|
|
44698
46250
|
type: "Figma";
|
|
44699
46251
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44707,6 +46259,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44707
46259
|
fileId: string;
|
|
44708
46260
|
ownerId: string;
|
|
44709
46261
|
ownerName: string;
|
|
46262
|
+
requiresSync?: boolean | undefined;
|
|
44710
46263
|
lastImportMetadata?: {
|
|
44711
46264
|
fileData?: {
|
|
44712
46265
|
lastUpdatedAt: Date;
|
|
@@ -44720,6 +46273,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44720
46273
|
} | undefined;
|
|
44721
46274
|
downloadChunkSize?: number | undefined;
|
|
44722
46275
|
figmaRenderChunkSize?: number | undefined;
|
|
46276
|
+
maxFileDepth?: number | undefined;
|
|
44723
46277
|
}>;
|
|
44724
46278
|
}, "strip", z.ZodTypeAny, {
|
|
44725
46279
|
sourceId: string;
|
|
@@ -44736,6 +46290,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44736
46290
|
fileId: string;
|
|
44737
46291
|
ownerId: string;
|
|
44738
46292
|
ownerName: string;
|
|
46293
|
+
requiresSync: boolean;
|
|
44739
46294
|
lastImportMetadata?: {
|
|
44740
46295
|
fileData?: {
|
|
44741
46296
|
lastUpdatedAt: Date;
|
|
@@ -44749,6 +46304,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44749
46304
|
} | undefined;
|
|
44750
46305
|
downloadChunkSize?: number | undefined;
|
|
44751
46306
|
figmaRenderChunkSize?: number | undefined;
|
|
46307
|
+
maxFileDepth?: number | undefined;
|
|
44752
46308
|
};
|
|
44753
46309
|
}, {
|
|
44754
46310
|
sourceId: string;
|
|
@@ -44765,6 +46321,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44765
46321
|
fileId: string;
|
|
44766
46322
|
ownerId: string;
|
|
44767
46323
|
ownerName: string;
|
|
46324
|
+
requiresSync?: boolean | undefined;
|
|
44768
46325
|
lastImportMetadata?: {
|
|
44769
46326
|
fileData?: {
|
|
44770
46327
|
lastUpdatedAt: Date;
|
|
@@ -44778,26 +46335,31 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44778
46335
|
} | undefined;
|
|
44779
46336
|
downloadChunkSize?: number | undefined;
|
|
44780
46337
|
figmaRenderChunkSize?: number | undefined;
|
|
46338
|
+
maxFileDepth?: number | undefined;
|
|
44781
46339
|
};
|
|
44782
46340
|
}>>;
|
|
46341
|
+
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
44783
46342
|
fileDownloadScopesByFileId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
44784
46343
|
styles: z.ZodBoolean;
|
|
44785
46344
|
components: z.ZodBoolean;
|
|
44786
46345
|
currentVersion: z.ZodNullable<z.ZodLiteral<"__latest__">>;
|
|
44787
46346
|
publishedVersion: z.ZodNullable<z.ZodString>;
|
|
44788
46347
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46348
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44789
46349
|
}, "strip", z.ZodTypeAny, {
|
|
44790
46350
|
components: boolean;
|
|
44791
46351
|
styles: boolean;
|
|
44792
46352
|
currentVersion: "__latest__" | null;
|
|
44793
46353
|
publishedVersion: string | null;
|
|
44794
46354
|
downloadChunkSize?: number | undefined;
|
|
46355
|
+
maxFileDepth?: number | undefined;
|
|
44795
46356
|
}, {
|
|
44796
46357
|
components: boolean;
|
|
44797
46358
|
styles: boolean;
|
|
44798
46359
|
currentVersion: "__latest__" | null;
|
|
44799
46360
|
publishedVersion: string | null;
|
|
44800
46361
|
downloadChunkSize?: number | undefined;
|
|
46362
|
+
maxFileDepth?: number | undefined;
|
|
44801
46363
|
}>>;
|
|
44802
46364
|
changedImportedSourceDataBySourceId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
44803
46365
|
sourceId: z.ZodString;
|
|
@@ -44826,6 +46388,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44826
46388
|
themePersistentId?: string | undefined;
|
|
44827
46389
|
}>;
|
|
44828
46390
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
46391
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44829
46392
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44830
46393
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44831
46394
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44873,6 +46436,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44873
46436
|
}>>;
|
|
44874
46437
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44875
46438
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46439
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44876
46440
|
}, "strip", z.ZodTypeAny, {
|
|
44877
46441
|
type: "Figma";
|
|
44878
46442
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44886,6 +46450,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44886
46450
|
fileId: string;
|
|
44887
46451
|
ownerId: string;
|
|
44888
46452
|
ownerName: string;
|
|
46453
|
+
requiresSync: boolean;
|
|
44889
46454
|
lastImportMetadata?: {
|
|
44890
46455
|
fileData?: {
|
|
44891
46456
|
lastUpdatedAt: Date;
|
|
@@ -44899,6 +46464,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44899
46464
|
} | undefined;
|
|
44900
46465
|
downloadChunkSize?: number | undefined;
|
|
44901
46466
|
figmaRenderChunkSize?: number | undefined;
|
|
46467
|
+
maxFileDepth?: number | undefined;
|
|
44902
46468
|
}, {
|
|
44903
46469
|
type: "Figma";
|
|
44904
46470
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44912,6 +46478,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44912
46478
|
fileId: string;
|
|
44913
46479
|
ownerId: string;
|
|
44914
46480
|
ownerName: string;
|
|
46481
|
+
requiresSync?: boolean | undefined;
|
|
44915
46482
|
lastImportMetadata?: {
|
|
44916
46483
|
fileData?: {
|
|
44917
46484
|
lastUpdatedAt: Date;
|
|
@@ -44925,6 +46492,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44925
46492
|
} | undefined;
|
|
44926
46493
|
downloadChunkSize?: number | undefined;
|
|
44927
46494
|
figmaRenderChunkSize?: number | undefined;
|
|
46495
|
+
maxFileDepth?: number | undefined;
|
|
44928
46496
|
}>;
|
|
44929
46497
|
importMetadata: z.ZodObject<{
|
|
44930
46498
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
@@ -44986,6 +46554,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44986
46554
|
fileId: string;
|
|
44987
46555
|
ownerId: string;
|
|
44988
46556
|
ownerName: string;
|
|
46557
|
+
requiresSync: boolean;
|
|
44989
46558
|
lastImportMetadata?: {
|
|
44990
46559
|
fileData?: {
|
|
44991
46560
|
lastUpdatedAt: Date;
|
|
@@ -44999,6 +46568,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44999
46568
|
} | undefined;
|
|
45000
46569
|
downloadChunkSize?: number | undefined;
|
|
45001
46570
|
figmaRenderChunkSize?: number | undefined;
|
|
46571
|
+
maxFileDepth?: number | undefined;
|
|
45002
46572
|
};
|
|
45003
46573
|
importMetadata: {
|
|
45004
46574
|
fileData?: {
|
|
@@ -45026,6 +46596,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45026
46596
|
fileId: string;
|
|
45027
46597
|
ownerId: string;
|
|
45028
46598
|
ownerName: string;
|
|
46599
|
+
requiresSync?: boolean | undefined;
|
|
45029
46600
|
lastImportMetadata?: {
|
|
45030
46601
|
fileData?: {
|
|
45031
46602
|
lastUpdatedAt: Date;
|
|
@@ -45039,6 +46610,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45039
46610
|
} | undefined;
|
|
45040
46611
|
downloadChunkSize?: number | undefined;
|
|
45041
46612
|
figmaRenderChunkSize?: number | undefined;
|
|
46613
|
+
maxFileDepth?: number | undefined;
|
|
45042
46614
|
};
|
|
45043
46615
|
importMetadata: {
|
|
45044
46616
|
fileData?: {
|
|
@@ -45072,6 +46644,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45072
46644
|
fileId: string;
|
|
45073
46645
|
ownerId: string;
|
|
45074
46646
|
ownerName: string;
|
|
46647
|
+
requiresSync: boolean;
|
|
45075
46648
|
lastImportMetadata?: {
|
|
45076
46649
|
fileData?: {
|
|
45077
46650
|
lastUpdatedAt: Date;
|
|
@@ -45085,14 +46658,17 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45085
46658
|
} | undefined;
|
|
45086
46659
|
downloadChunkSize?: number | undefined;
|
|
45087
46660
|
figmaRenderChunkSize?: number | undefined;
|
|
46661
|
+
maxFileDepth?: number | undefined;
|
|
45088
46662
|
};
|
|
45089
46663
|
}>;
|
|
46664
|
+
sourcesWithMissingAccess: string[];
|
|
45090
46665
|
fileDownloadScopesByFileId: Record<string, {
|
|
45091
46666
|
components: boolean;
|
|
45092
46667
|
styles: boolean;
|
|
45093
46668
|
currentVersion: "__latest__" | null;
|
|
45094
46669
|
publishedVersion: string | null;
|
|
45095
46670
|
downloadChunkSize?: number | undefined;
|
|
46671
|
+
maxFileDepth?: number | undefined;
|
|
45096
46672
|
}>;
|
|
45097
46673
|
changedImportedSourceDataBySourceId: Record<string, {
|
|
45098
46674
|
sourceId: string;
|
|
@@ -45109,6 +46685,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45109
46685
|
fileId: string;
|
|
45110
46686
|
ownerId: string;
|
|
45111
46687
|
ownerName: string;
|
|
46688
|
+
requiresSync: boolean;
|
|
45112
46689
|
lastImportMetadata?: {
|
|
45113
46690
|
fileData?: {
|
|
45114
46691
|
lastUpdatedAt: Date;
|
|
@@ -45122,6 +46699,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45122
46699
|
} | undefined;
|
|
45123
46700
|
downloadChunkSize?: number | undefined;
|
|
45124
46701
|
figmaRenderChunkSize?: number | undefined;
|
|
46702
|
+
maxFileDepth?: number | undefined;
|
|
45125
46703
|
};
|
|
45126
46704
|
importMetadata: {
|
|
45127
46705
|
fileData?: {
|
|
@@ -45155,6 +46733,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45155
46733
|
fileId: string;
|
|
45156
46734
|
ownerId: string;
|
|
45157
46735
|
ownerName: string;
|
|
46736
|
+
requiresSync?: boolean | undefined;
|
|
45158
46737
|
lastImportMetadata?: {
|
|
45159
46738
|
fileData?: {
|
|
45160
46739
|
lastUpdatedAt: Date;
|
|
@@ -45168,6 +46747,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45168
46747
|
} | undefined;
|
|
45169
46748
|
downloadChunkSize?: number | undefined;
|
|
45170
46749
|
figmaRenderChunkSize?: number | undefined;
|
|
46750
|
+
maxFileDepth?: number | undefined;
|
|
45171
46751
|
};
|
|
45172
46752
|
}>;
|
|
45173
46753
|
fileDownloadScopesByFileId: Record<string, {
|
|
@@ -45176,6 +46756,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45176
46756
|
currentVersion: "__latest__" | null;
|
|
45177
46757
|
publishedVersion: string | null;
|
|
45178
46758
|
downloadChunkSize?: number | undefined;
|
|
46759
|
+
maxFileDepth?: number | undefined;
|
|
45179
46760
|
}>;
|
|
45180
46761
|
changedImportedSourceDataBySourceId: Record<string, {
|
|
45181
46762
|
sourceId: string;
|
|
@@ -45192,6 +46773,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45192
46773
|
fileId: string;
|
|
45193
46774
|
ownerId: string;
|
|
45194
46775
|
ownerName: string;
|
|
46776
|
+
requiresSync?: boolean | undefined;
|
|
45195
46777
|
lastImportMetadata?: {
|
|
45196
46778
|
fileData?: {
|
|
45197
46779
|
lastUpdatedAt: Date;
|
|
@@ -45205,6 +46787,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45205
46787
|
} | undefined;
|
|
45206
46788
|
downloadChunkSize?: number | undefined;
|
|
45207
46789
|
figmaRenderChunkSize?: number | undefined;
|
|
46790
|
+
maxFileDepth?: number | undefined;
|
|
45208
46791
|
};
|
|
45209
46792
|
importMetadata: {
|
|
45210
46793
|
fileData?: {
|
|
@@ -45218,6 +46801,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45218
46801
|
} | undefined;
|
|
45219
46802
|
};
|
|
45220
46803
|
}>;
|
|
46804
|
+
sourcesWithMissingAccess?: string[] | undefined;
|
|
45221
46805
|
}>;
|
|
45222
46806
|
type FigmaImportContextWithDownloadScopes = z.infer<typeof FigmaImportContextWithDownloadScopes>;
|
|
45223
46807
|
|
|
@@ -100436,195 +102020,6 @@ declare const DocumentationPageRoom: z.ZodObject<{
|
|
|
100436
102020
|
type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
|
|
100437
102021
|
type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
|
|
100438
102022
|
type UpdateDocumentationPageRoom = DbUpdate<DocumentationPageRoom>;
|
|
100439
|
-
type PageBlockEditorModel = z.infer<typeof PageBlockEditorModel>;
|
|
100440
|
-
declare const PageBlockEditorModel: z.ZodObject<{
|
|
100441
|
-
id: z.ZodString;
|
|
100442
|
-
data: z.ZodObject<{
|
|
100443
|
-
packageId: z.ZodString;
|
|
100444
|
-
variantId: z.ZodOptional<z.ZodString>;
|
|
100445
|
-
indentLevel: z.ZodNumber;
|
|
100446
|
-
appearance: z.ZodOptional<z.ZodObject<{
|
|
100447
|
-
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
100448
|
-
value: z.ZodString;
|
|
100449
|
-
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
100450
|
-
}, "strip", z.ZodTypeAny, {
|
|
100451
|
-
value: string;
|
|
100452
|
-
referencedTokenId?: string | undefined;
|
|
100453
|
-
}, {
|
|
100454
|
-
value: string;
|
|
100455
|
-
referencedTokenId?: string | undefined;
|
|
100456
|
-
}>>;
|
|
100457
|
-
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
100458
|
-
}, "strip", z.ZodTypeAny, {
|
|
100459
|
-
itemBackgroundColor?: {
|
|
100460
|
-
value: string;
|
|
100461
|
-
referencedTokenId?: string | undefined;
|
|
100462
|
-
} | undefined;
|
|
100463
|
-
numberOfColumns?: number | undefined;
|
|
100464
|
-
}, {
|
|
100465
|
-
itemBackgroundColor?: {
|
|
100466
|
-
value: string;
|
|
100467
|
-
referencedTokenId?: string | undefined;
|
|
100468
|
-
} | undefined;
|
|
100469
|
-
numberOfColumns?: number | undefined;
|
|
100470
|
-
}>>;
|
|
100471
|
-
items: z.ZodArray<z.ZodObject<{
|
|
100472
|
-
id: z.ZodString;
|
|
100473
|
-
linksTo: z.ZodOptional<z.ZodObject<{
|
|
100474
|
-
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
100475
|
-
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
100476
|
-
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
100477
|
-
url: z.ZodOptional<z.ZodString>;
|
|
100478
|
-
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
100479
|
-
}, "strip", z.ZodTypeAny, {
|
|
100480
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100481
|
-
documentationItemId?: string | undefined;
|
|
100482
|
-
pageHeadingId?: string | undefined;
|
|
100483
|
-
url?: string | undefined;
|
|
100484
|
-
openInNewTab?: boolean | undefined;
|
|
100485
|
-
}, {
|
|
100486
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100487
|
-
documentationItemId?: string | undefined;
|
|
100488
|
-
pageHeadingId?: string | undefined;
|
|
100489
|
-
url?: string | undefined;
|
|
100490
|
-
openInNewTab?: boolean | undefined;
|
|
100491
|
-
}>>;
|
|
100492
|
-
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
100493
|
-
value: z.ZodAny;
|
|
100494
|
-
}, "strip", z.ZodTypeAny, {
|
|
100495
|
-
value?: any;
|
|
100496
|
-
}, {
|
|
100497
|
-
value?: any;
|
|
100498
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
100499
|
-
}, "strip", z.ZodTypeAny, {
|
|
100500
|
-
id: string;
|
|
100501
|
-
props: Record<string, {
|
|
100502
|
-
value?: any;
|
|
100503
|
-
} & Record<string, any>>;
|
|
100504
|
-
linksTo?: {
|
|
100505
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100506
|
-
documentationItemId?: string | undefined;
|
|
100507
|
-
pageHeadingId?: string | undefined;
|
|
100508
|
-
url?: string | undefined;
|
|
100509
|
-
openInNewTab?: boolean | undefined;
|
|
100510
|
-
} | undefined;
|
|
100511
|
-
}, {
|
|
100512
|
-
id: string;
|
|
100513
|
-
props: Record<string, {
|
|
100514
|
-
value?: any;
|
|
100515
|
-
} & Record<string, any>>;
|
|
100516
|
-
linksTo?: {
|
|
100517
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100518
|
-
documentationItemId?: string | undefined;
|
|
100519
|
-
pageHeadingId?: string | undefined;
|
|
100520
|
-
url?: string | undefined;
|
|
100521
|
-
openInNewTab?: boolean | undefined;
|
|
100522
|
-
} | undefined;
|
|
100523
|
-
}>, "many">;
|
|
100524
|
-
}, "strip", z.ZodTypeAny, {
|
|
100525
|
-
items: {
|
|
100526
|
-
id: string;
|
|
100527
|
-
props: Record<string, {
|
|
100528
|
-
value?: any;
|
|
100529
|
-
} & Record<string, any>>;
|
|
100530
|
-
linksTo?: {
|
|
100531
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100532
|
-
documentationItemId?: string | undefined;
|
|
100533
|
-
pageHeadingId?: string | undefined;
|
|
100534
|
-
url?: string | undefined;
|
|
100535
|
-
openInNewTab?: boolean | undefined;
|
|
100536
|
-
} | undefined;
|
|
100537
|
-
}[];
|
|
100538
|
-
packageId: string;
|
|
100539
|
-
indentLevel: number;
|
|
100540
|
-
variantId?: string | undefined;
|
|
100541
|
-
appearance?: {
|
|
100542
|
-
itemBackgroundColor?: {
|
|
100543
|
-
value: string;
|
|
100544
|
-
referencedTokenId?: string | undefined;
|
|
100545
|
-
} | undefined;
|
|
100546
|
-
numberOfColumns?: number | undefined;
|
|
100547
|
-
} | undefined;
|
|
100548
|
-
}, {
|
|
100549
|
-
items: {
|
|
100550
|
-
id: string;
|
|
100551
|
-
props: Record<string, {
|
|
100552
|
-
value?: any;
|
|
100553
|
-
} & Record<string, any>>;
|
|
100554
|
-
linksTo?: {
|
|
100555
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100556
|
-
documentationItemId?: string | undefined;
|
|
100557
|
-
pageHeadingId?: string | undefined;
|
|
100558
|
-
url?: string | undefined;
|
|
100559
|
-
openInNewTab?: boolean | undefined;
|
|
100560
|
-
} | undefined;
|
|
100561
|
-
}[];
|
|
100562
|
-
packageId: string;
|
|
100563
|
-
indentLevel: number;
|
|
100564
|
-
variantId?: string | undefined;
|
|
100565
|
-
appearance?: {
|
|
100566
|
-
itemBackgroundColor?: {
|
|
100567
|
-
value: string;
|
|
100568
|
-
referencedTokenId?: string | undefined;
|
|
100569
|
-
} | undefined;
|
|
100570
|
-
numberOfColumns?: number | undefined;
|
|
100571
|
-
} | undefined;
|
|
100572
|
-
}>;
|
|
100573
|
-
}, "strip", z.ZodTypeAny, {
|
|
100574
|
-
id: string;
|
|
100575
|
-
data: {
|
|
100576
|
-
items: {
|
|
100577
|
-
id: string;
|
|
100578
|
-
props: Record<string, {
|
|
100579
|
-
value?: any;
|
|
100580
|
-
} & Record<string, any>>;
|
|
100581
|
-
linksTo?: {
|
|
100582
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100583
|
-
documentationItemId?: string | undefined;
|
|
100584
|
-
pageHeadingId?: string | undefined;
|
|
100585
|
-
url?: string | undefined;
|
|
100586
|
-
openInNewTab?: boolean | undefined;
|
|
100587
|
-
} | undefined;
|
|
100588
|
-
}[];
|
|
100589
|
-
packageId: string;
|
|
100590
|
-
indentLevel: number;
|
|
100591
|
-
variantId?: string | undefined;
|
|
100592
|
-
appearance?: {
|
|
100593
|
-
itemBackgroundColor?: {
|
|
100594
|
-
value: string;
|
|
100595
|
-
referencedTokenId?: string | undefined;
|
|
100596
|
-
} | undefined;
|
|
100597
|
-
numberOfColumns?: number | undefined;
|
|
100598
|
-
} | undefined;
|
|
100599
|
-
};
|
|
100600
|
-
}, {
|
|
100601
|
-
id: string;
|
|
100602
|
-
data: {
|
|
100603
|
-
items: {
|
|
100604
|
-
id: string;
|
|
100605
|
-
props: Record<string, {
|
|
100606
|
-
value?: any;
|
|
100607
|
-
} & Record<string, any>>;
|
|
100608
|
-
linksTo?: {
|
|
100609
|
-
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
100610
|
-
documentationItemId?: string | undefined;
|
|
100611
|
-
pageHeadingId?: string | undefined;
|
|
100612
|
-
url?: string | undefined;
|
|
100613
|
-
openInNewTab?: boolean | undefined;
|
|
100614
|
-
} | undefined;
|
|
100615
|
-
}[];
|
|
100616
|
-
packageId: string;
|
|
100617
|
-
indentLevel: number;
|
|
100618
|
-
variantId?: string | undefined;
|
|
100619
|
-
appearance?: {
|
|
100620
|
-
itemBackgroundColor?: {
|
|
100621
|
-
value: string;
|
|
100622
|
-
referencedTokenId?: string | undefined;
|
|
100623
|
-
} | undefined;
|
|
100624
|
-
numberOfColumns?: number | undefined;
|
|
100625
|
-
} | undefined;
|
|
100626
|
-
};
|
|
100627
|
-
}>;
|
|
100628
102023
|
declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
100629
102024
|
page: z.ZodObject<{
|
|
100630
102025
|
id: z.ZodString;
|
|
@@ -104557,8 +105952,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104557
105952
|
} | null | undefined;
|
|
104558
105953
|
} | undefined;
|
|
104559
105954
|
}>;
|
|
104560
|
-
pageBlocks: z.ZodArray<z.ZodObject<{
|
|
105955
|
+
pageBlocks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
104561
105956
|
id: z.ZodString;
|
|
105957
|
+
type: z.ZodLiteral<"Block">;
|
|
104562
105958
|
data: z.ZodObject<{
|
|
104563
105959
|
packageId: z.ZodString;
|
|
104564
105960
|
variantId: z.ZodOptional<z.ZodString>;
|
|
@@ -104692,6 +106088,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104692
106088
|
}>;
|
|
104693
106089
|
}, "strip", z.ZodTypeAny, {
|
|
104694
106090
|
id: string;
|
|
106091
|
+
type: "Block";
|
|
104695
106092
|
data: {
|
|
104696
106093
|
items: {
|
|
104697
106094
|
id: string;
|
|
@@ -104719,6 +106116,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104719
106116
|
};
|
|
104720
106117
|
}, {
|
|
104721
106118
|
id: string;
|
|
106119
|
+
type: "Block";
|
|
104722
106120
|
data: {
|
|
104723
106121
|
items: {
|
|
104724
106122
|
id: string;
|
|
@@ -104744,7 +106142,534 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104744
106142
|
numberOfColumns?: number | undefined;
|
|
104745
106143
|
} | undefined;
|
|
104746
106144
|
};
|
|
104747
|
-
}>,
|
|
106145
|
+
}>, z.ZodObject<{
|
|
106146
|
+
id: z.ZodString;
|
|
106147
|
+
type: z.ZodLiteral<"Section">;
|
|
106148
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
106149
|
+
sectionType: z.ZodEnum<["Tabs"]>;
|
|
106150
|
+
appearance: z.ZodObject<{
|
|
106151
|
+
expandToEdges: z.ZodBoolean;
|
|
106152
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
106153
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
106154
|
+
value: z.ZodString;
|
|
106155
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106156
|
+
}, "strip", z.ZodTypeAny, {
|
|
106157
|
+
value: string;
|
|
106158
|
+
referencedTokenId?: string | undefined;
|
|
106159
|
+
}, {
|
|
106160
|
+
value: string;
|
|
106161
|
+
referencedTokenId?: string | undefined;
|
|
106162
|
+
}>>;
|
|
106163
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
106164
|
+
value: z.ZodString;
|
|
106165
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106166
|
+
}, "strip", z.ZodTypeAny, {
|
|
106167
|
+
value: string;
|
|
106168
|
+
referencedTokenId?: string | undefined;
|
|
106169
|
+
}, {
|
|
106170
|
+
value: string;
|
|
106171
|
+
referencedTokenId?: string | undefined;
|
|
106172
|
+
}>>;
|
|
106173
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
106174
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
106175
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
106176
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
106177
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
106178
|
+
}, "strip", z.ZodTypeAny, {
|
|
106179
|
+
top?: number | undefined;
|
|
106180
|
+
bottom?: number | undefined;
|
|
106181
|
+
left?: number | undefined;
|
|
106182
|
+
right?: number | undefined;
|
|
106183
|
+
}, {
|
|
106184
|
+
top?: number | undefined;
|
|
106185
|
+
bottom?: number | undefined;
|
|
106186
|
+
left?: number | undefined;
|
|
106187
|
+
right?: number | undefined;
|
|
106188
|
+
}>>;
|
|
106189
|
+
}, "strip", z.ZodTypeAny, {
|
|
106190
|
+
expandToEdges: boolean;
|
|
106191
|
+
contentExpandToEdges: boolean;
|
|
106192
|
+
backgroundColor?: {
|
|
106193
|
+
value: string;
|
|
106194
|
+
referencedTokenId?: string | undefined;
|
|
106195
|
+
} | undefined;
|
|
106196
|
+
foregroundColor?: {
|
|
106197
|
+
value: string;
|
|
106198
|
+
referencedTokenId?: string | undefined;
|
|
106199
|
+
} | undefined;
|
|
106200
|
+
padding?: {
|
|
106201
|
+
top?: number | undefined;
|
|
106202
|
+
bottom?: number | undefined;
|
|
106203
|
+
left?: number | undefined;
|
|
106204
|
+
right?: number | undefined;
|
|
106205
|
+
} | undefined;
|
|
106206
|
+
}, {
|
|
106207
|
+
expandToEdges: boolean;
|
|
106208
|
+
contentExpandToEdges: boolean;
|
|
106209
|
+
backgroundColor?: {
|
|
106210
|
+
value: string;
|
|
106211
|
+
referencedTokenId?: string | undefined;
|
|
106212
|
+
} | undefined;
|
|
106213
|
+
foregroundColor?: {
|
|
106214
|
+
value: string;
|
|
106215
|
+
referencedTokenId?: string | undefined;
|
|
106216
|
+
} | undefined;
|
|
106217
|
+
padding?: {
|
|
106218
|
+
top?: number | undefined;
|
|
106219
|
+
bottom?: number | undefined;
|
|
106220
|
+
left?: number | undefined;
|
|
106221
|
+
right?: number | undefined;
|
|
106222
|
+
} | undefined;
|
|
106223
|
+
}>;
|
|
106224
|
+
items: z.ZodArray<z.ZodObject<{
|
|
106225
|
+
id: z.ZodString;
|
|
106226
|
+
title: z.ZodString;
|
|
106227
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
106228
|
+
id: z.ZodString;
|
|
106229
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
106230
|
+
id: z.ZodString;
|
|
106231
|
+
type: z.ZodLiteral<"Block">;
|
|
106232
|
+
data: z.ZodObject<{
|
|
106233
|
+
packageId: z.ZodString;
|
|
106234
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
106235
|
+
indentLevel: z.ZodNumber;
|
|
106236
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
106237
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
106238
|
+
value: z.ZodString;
|
|
106239
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106240
|
+
}, "strip", z.ZodTypeAny, {
|
|
106241
|
+
value: string;
|
|
106242
|
+
referencedTokenId?: string | undefined;
|
|
106243
|
+
}, {
|
|
106244
|
+
value: string;
|
|
106245
|
+
referencedTokenId?: string | undefined;
|
|
106246
|
+
}>>;
|
|
106247
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
106248
|
+
}, "strip", z.ZodTypeAny, {
|
|
106249
|
+
itemBackgroundColor?: {
|
|
106250
|
+
value: string;
|
|
106251
|
+
referencedTokenId?: string | undefined;
|
|
106252
|
+
} | undefined;
|
|
106253
|
+
numberOfColumns?: number | undefined;
|
|
106254
|
+
}, {
|
|
106255
|
+
itemBackgroundColor?: {
|
|
106256
|
+
value: string;
|
|
106257
|
+
referencedTokenId?: string | undefined;
|
|
106258
|
+
} | undefined;
|
|
106259
|
+
numberOfColumns?: number | undefined;
|
|
106260
|
+
}>>;
|
|
106261
|
+
items: z.ZodArray<z.ZodObject<{
|
|
106262
|
+
id: z.ZodString;
|
|
106263
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
106264
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
106265
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
106266
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
106267
|
+
url: z.ZodOptional<z.ZodString>;
|
|
106268
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
106269
|
+
}, "strip", z.ZodTypeAny, {
|
|
106270
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106271
|
+
documentationItemId?: string | undefined;
|
|
106272
|
+
pageHeadingId?: string | undefined;
|
|
106273
|
+
url?: string | undefined;
|
|
106274
|
+
openInNewTab?: boolean | undefined;
|
|
106275
|
+
}, {
|
|
106276
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106277
|
+
documentationItemId?: string | undefined;
|
|
106278
|
+
pageHeadingId?: string | undefined;
|
|
106279
|
+
url?: string | undefined;
|
|
106280
|
+
openInNewTab?: boolean | undefined;
|
|
106281
|
+
}>>;
|
|
106282
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
106283
|
+
value: z.ZodAny;
|
|
106284
|
+
}, "strip", z.ZodTypeAny, {
|
|
106285
|
+
value?: any;
|
|
106286
|
+
}, {
|
|
106287
|
+
value?: any;
|
|
106288
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
106289
|
+
}, "strip", z.ZodTypeAny, {
|
|
106290
|
+
id: string;
|
|
106291
|
+
props: Record<string, {
|
|
106292
|
+
value?: any;
|
|
106293
|
+
} & Record<string, any>>;
|
|
106294
|
+
linksTo?: {
|
|
106295
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106296
|
+
documentationItemId?: string | undefined;
|
|
106297
|
+
pageHeadingId?: string | undefined;
|
|
106298
|
+
url?: string | undefined;
|
|
106299
|
+
openInNewTab?: boolean | undefined;
|
|
106300
|
+
} | undefined;
|
|
106301
|
+
}, {
|
|
106302
|
+
id: string;
|
|
106303
|
+
props: Record<string, {
|
|
106304
|
+
value?: any;
|
|
106305
|
+
} & Record<string, any>>;
|
|
106306
|
+
linksTo?: {
|
|
106307
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106308
|
+
documentationItemId?: string | undefined;
|
|
106309
|
+
pageHeadingId?: string | undefined;
|
|
106310
|
+
url?: string | undefined;
|
|
106311
|
+
openInNewTab?: boolean | undefined;
|
|
106312
|
+
} | undefined;
|
|
106313
|
+
}>, "many">;
|
|
106314
|
+
}, "strip", z.ZodTypeAny, {
|
|
106315
|
+
items: {
|
|
106316
|
+
id: string;
|
|
106317
|
+
props: Record<string, {
|
|
106318
|
+
value?: any;
|
|
106319
|
+
} & Record<string, any>>;
|
|
106320
|
+
linksTo?: {
|
|
106321
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106322
|
+
documentationItemId?: string | undefined;
|
|
106323
|
+
pageHeadingId?: string | undefined;
|
|
106324
|
+
url?: string | undefined;
|
|
106325
|
+
openInNewTab?: boolean | undefined;
|
|
106326
|
+
} | undefined;
|
|
106327
|
+
}[];
|
|
106328
|
+
packageId: string;
|
|
106329
|
+
indentLevel: number;
|
|
106330
|
+
variantId?: string | undefined;
|
|
106331
|
+
appearance?: {
|
|
106332
|
+
itemBackgroundColor?: {
|
|
106333
|
+
value: string;
|
|
106334
|
+
referencedTokenId?: string | undefined;
|
|
106335
|
+
} | undefined;
|
|
106336
|
+
numberOfColumns?: number | undefined;
|
|
106337
|
+
} | undefined;
|
|
106338
|
+
}, {
|
|
106339
|
+
items: {
|
|
106340
|
+
id: string;
|
|
106341
|
+
props: Record<string, {
|
|
106342
|
+
value?: any;
|
|
106343
|
+
} & Record<string, any>>;
|
|
106344
|
+
linksTo?: {
|
|
106345
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106346
|
+
documentationItemId?: string | undefined;
|
|
106347
|
+
pageHeadingId?: string | undefined;
|
|
106348
|
+
url?: string | undefined;
|
|
106349
|
+
openInNewTab?: boolean | undefined;
|
|
106350
|
+
} | undefined;
|
|
106351
|
+
}[];
|
|
106352
|
+
packageId: string;
|
|
106353
|
+
indentLevel: number;
|
|
106354
|
+
variantId?: string | undefined;
|
|
106355
|
+
appearance?: {
|
|
106356
|
+
itemBackgroundColor?: {
|
|
106357
|
+
value: string;
|
|
106358
|
+
referencedTokenId?: string | undefined;
|
|
106359
|
+
} | undefined;
|
|
106360
|
+
numberOfColumns?: number | undefined;
|
|
106361
|
+
} | undefined;
|
|
106362
|
+
}>;
|
|
106363
|
+
}, "strip", z.ZodTypeAny, {
|
|
106364
|
+
id: string;
|
|
106365
|
+
type: "Block";
|
|
106366
|
+
data: {
|
|
106367
|
+
items: {
|
|
106368
|
+
id: string;
|
|
106369
|
+
props: Record<string, {
|
|
106370
|
+
value?: any;
|
|
106371
|
+
} & Record<string, any>>;
|
|
106372
|
+
linksTo?: {
|
|
106373
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106374
|
+
documentationItemId?: string | undefined;
|
|
106375
|
+
pageHeadingId?: string | undefined;
|
|
106376
|
+
url?: string | undefined;
|
|
106377
|
+
openInNewTab?: boolean | undefined;
|
|
106378
|
+
} | undefined;
|
|
106379
|
+
}[];
|
|
106380
|
+
packageId: string;
|
|
106381
|
+
indentLevel: number;
|
|
106382
|
+
variantId?: string | undefined;
|
|
106383
|
+
appearance?: {
|
|
106384
|
+
itemBackgroundColor?: {
|
|
106385
|
+
value: string;
|
|
106386
|
+
referencedTokenId?: string | undefined;
|
|
106387
|
+
} | undefined;
|
|
106388
|
+
numberOfColumns?: number | undefined;
|
|
106389
|
+
} | undefined;
|
|
106390
|
+
};
|
|
106391
|
+
}, {
|
|
106392
|
+
id: string;
|
|
106393
|
+
type: "Block";
|
|
106394
|
+
data: {
|
|
106395
|
+
items: {
|
|
106396
|
+
id: string;
|
|
106397
|
+
props: Record<string, {
|
|
106398
|
+
value?: any;
|
|
106399
|
+
} & Record<string, any>>;
|
|
106400
|
+
linksTo?: {
|
|
106401
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106402
|
+
documentationItemId?: string | undefined;
|
|
106403
|
+
pageHeadingId?: string | undefined;
|
|
106404
|
+
url?: string | undefined;
|
|
106405
|
+
openInNewTab?: boolean | undefined;
|
|
106406
|
+
} | undefined;
|
|
106407
|
+
}[];
|
|
106408
|
+
packageId: string;
|
|
106409
|
+
indentLevel: number;
|
|
106410
|
+
variantId?: string | undefined;
|
|
106411
|
+
appearance?: {
|
|
106412
|
+
itemBackgroundColor?: {
|
|
106413
|
+
value: string;
|
|
106414
|
+
referencedTokenId?: string | undefined;
|
|
106415
|
+
} | undefined;
|
|
106416
|
+
numberOfColumns?: number | undefined;
|
|
106417
|
+
} | undefined;
|
|
106418
|
+
};
|
|
106419
|
+
}>, "many">;
|
|
106420
|
+
}, "strip", z.ZodTypeAny, {
|
|
106421
|
+
id: string;
|
|
106422
|
+
blocks: {
|
|
106423
|
+
id: string;
|
|
106424
|
+
type: "Block";
|
|
106425
|
+
data: {
|
|
106426
|
+
items: {
|
|
106427
|
+
id: string;
|
|
106428
|
+
props: Record<string, {
|
|
106429
|
+
value?: any;
|
|
106430
|
+
} & Record<string, any>>;
|
|
106431
|
+
linksTo?: {
|
|
106432
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106433
|
+
documentationItemId?: string | undefined;
|
|
106434
|
+
pageHeadingId?: string | undefined;
|
|
106435
|
+
url?: string | undefined;
|
|
106436
|
+
openInNewTab?: boolean | undefined;
|
|
106437
|
+
} | undefined;
|
|
106438
|
+
}[];
|
|
106439
|
+
packageId: string;
|
|
106440
|
+
indentLevel: number;
|
|
106441
|
+
variantId?: string | undefined;
|
|
106442
|
+
appearance?: {
|
|
106443
|
+
itemBackgroundColor?: {
|
|
106444
|
+
value: string;
|
|
106445
|
+
referencedTokenId?: string | undefined;
|
|
106446
|
+
} | undefined;
|
|
106447
|
+
numberOfColumns?: number | undefined;
|
|
106448
|
+
} | undefined;
|
|
106449
|
+
};
|
|
106450
|
+
}[];
|
|
106451
|
+
}, {
|
|
106452
|
+
id: string;
|
|
106453
|
+
blocks: {
|
|
106454
|
+
id: string;
|
|
106455
|
+
type: "Block";
|
|
106456
|
+
data: {
|
|
106457
|
+
items: {
|
|
106458
|
+
id: string;
|
|
106459
|
+
props: Record<string, {
|
|
106460
|
+
value?: any;
|
|
106461
|
+
} & Record<string, any>>;
|
|
106462
|
+
linksTo?: {
|
|
106463
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106464
|
+
documentationItemId?: string | undefined;
|
|
106465
|
+
pageHeadingId?: string | undefined;
|
|
106466
|
+
url?: string | undefined;
|
|
106467
|
+
openInNewTab?: boolean | undefined;
|
|
106468
|
+
} | undefined;
|
|
106469
|
+
}[];
|
|
106470
|
+
packageId: string;
|
|
106471
|
+
indentLevel: number;
|
|
106472
|
+
variantId?: string | undefined;
|
|
106473
|
+
appearance?: {
|
|
106474
|
+
itemBackgroundColor?: {
|
|
106475
|
+
value: string;
|
|
106476
|
+
referencedTokenId?: string | undefined;
|
|
106477
|
+
} | undefined;
|
|
106478
|
+
numberOfColumns?: number | undefined;
|
|
106479
|
+
} | undefined;
|
|
106480
|
+
};
|
|
106481
|
+
}[];
|
|
106482
|
+
}>, "many">;
|
|
106483
|
+
}, "strip", z.ZodTypeAny, {
|
|
106484
|
+
id: string;
|
|
106485
|
+
title: string;
|
|
106486
|
+
columns: {
|
|
106487
|
+
id: string;
|
|
106488
|
+
blocks: {
|
|
106489
|
+
id: string;
|
|
106490
|
+
type: "Block";
|
|
106491
|
+
data: {
|
|
106492
|
+
items: {
|
|
106493
|
+
id: string;
|
|
106494
|
+
props: Record<string, {
|
|
106495
|
+
value?: any;
|
|
106496
|
+
} & Record<string, any>>;
|
|
106497
|
+
linksTo?: {
|
|
106498
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106499
|
+
documentationItemId?: string | undefined;
|
|
106500
|
+
pageHeadingId?: string | undefined;
|
|
106501
|
+
url?: string | undefined;
|
|
106502
|
+
openInNewTab?: boolean | undefined;
|
|
106503
|
+
} | undefined;
|
|
106504
|
+
}[];
|
|
106505
|
+
packageId: string;
|
|
106506
|
+
indentLevel: number;
|
|
106507
|
+
variantId?: string | undefined;
|
|
106508
|
+
appearance?: {
|
|
106509
|
+
itemBackgroundColor?: {
|
|
106510
|
+
value: string;
|
|
106511
|
+
referencedTokenId?: string | undefined;
|
|
106512
|
+
} | undefined;
|
|
106513
|
+
numberOfColumns?: number | undefined;
|
|
106514
|
+
} | undefined;
|
|
106515
|
+
};
|
|
106516
|
+
}[];
|
|
106517
|
+
}[];
|
|
106518
|
+
}, {
|
|
106519
|
+
id: string;
|
|
106520
|
+
title: string;
|
|
106521
|
+
columns: {
|
|
106522
|
+
id: string;
|
|
106523
|
+
blocks: {
|
|
106524
|
+
id: string;
|
|
106525
|
+
type: "Block";
|
|
106526
|
+
data: {
|
|
106527
|
+
items: {
|
|
106528
|
+
id: string;
|
|
106529
|
+
props: Record<string, {
|
|
106530
|
+
value?: any;
|
|
106531
|
+
} & Record<string, any>>;
|
|
106532
|
+
linksTo?: {
|
|
106533
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106534
|
+
documentationItemId?: string | undefined;
|
|
106535
|
+
pageHeadingId?: string | undefined;
|
|
106536
|
+
url?: string | undefined;
|
|
106537
|
+
openInNewTab?: boolean | undefined;
|
|
106538
|
+
} | undefined;
|
|
106539
|
+
}[];
|
|
106540
|
+
packageId: string;
|
|
106541
|
+
indentLevel: number;
|
|
106542
|
+
variantId?: string | undefined;
|
|
106543
|
+
appearance?: {
|
|
106544
|
+
itemBackgroundColor?: {
|
|
106545
|
+
value: string;
|
|
106546
|
+
referencedTokenId?: string | undefined;
|
|
106547
|
+
} | undefined;
|
|
106548
|
+
numberOfColumns?: number | undefined;
|
|
106549
|
+
} | undefined;
|
|
106550
|
+
};
|
|
106551
|
+
}[];
|
|
106552
|
+
}[];
|
|
106553
|
+
}>, "many">;
|
|
106554
|
+
}, "strip", z.ZodTypeAny, {
|
|
106555
|
+
id: string;
|
|
106556
|
+
type: "Section";
|
|
106557
|
+
items: {
|
|
106558
|
+
id: string;
|
|
106559
|
+
title: string;
|
|
106560
|
+
columns: {
|
|
106561
|
+
id: string;
|
|
106562
|
+
blocks: {
|
|
106563
|
+
id: string;
|
|
106564
|
+
type: "Block";
|
|
106565
|
+
data: {
|
|
106566
|
+
items: {
|
|
106567
|
+
id: string;
|
|
106568
|
+
props: Record<string, {
|
|
106569
|
+
value?: any;
|
|
106570
|
+
} & Record<string, any>>;
|
|
106571
|
+
linksTo?: {
|
|
106572
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106573
|
+
documentationItemId?: string | undefined;
|
|
106574
|
+
pageHeadingId?: string | undefined;
|
|
106575
|
+
url?: string | undefined;
|
|
106576
|
+
openInNewTab?: boolean | undefined;
|
|
106577
|
+
} | undefined;
|
|
106578
|
+
}[];
|
|
106579
|
+
packageId: string;
|
|
106580
|
+
indentLevel: number;
|
|
106581
|
+
variantId?: string | undefined;
|
|
106582
|
+
appearance?: {
|
|
106583
|
+
itemBackgroundColor?: {
|
|
106584
|
+
value: string;
|
|
106585
|
+
referencedTokenId?: string | undefined;
|
|
106586
|
+
} | undefined;
|
|
106587
|
+
numberOfColumns?: number | undefined;
|
|
106588
|
+
} | undefined;
|
|
106589
|
+
};
|
|
106590
|
+
}[];
|
|
106591
|
+
}[];
|
|
106592
|
+
}[];
|
|
106593
|
+
appearance: {
|
|
106594
|
+
expandToEdges: boolean;
|
|
106595
|
+
contentExpandToEdges: boolean;
|
|
106596
|
+
backgroundColor?: {
|
|
106597
|
+
value: string;
|
|
106598
|
+
referencedTokenId?: string | undefined;
|
|
106599
|
+
} | undefined;
|
|
106600
|
+
foregroundColor?: {
|
|
106601
|
+
value: string;
|
|
106602
|
+
referencedTokenId?: string | undefined;
|
|
106603
|
+
} | undefined;
|
|
106604
|
+
padding?: {
|
|
106605
|
+
top?: number | undefined;
|
|
106606
|
+
bottom?: number | undefined;
|
|
106607
|
+
left?: number | undefined;
|
|
106608
|
+
right?: number | undefined;
|
|
106609
|
+
} | undefined;
|
|
106610
|
+
};
|
|
106611
|
+
sectionType: "Tabs";
|
|
106612
|
+
variantId?: string | undefined;
|
|
106613
|
+
}, {
|
|
106614
|
+
id: string;
|
|
106615
|
+
type: "Section";
|
|
106616
|
+
items: {
|
|
106617
|
+
id: string;
|
|
106618
|
+
title: string;
|
|
106619
|
+
columns: {
|
|
106620
|
+
id: string;
|
|
106621
|
+
blocks: {
|
|
106622
|
+
id: string;
|
|
106623
|
+
type: "Block";
|
|
106624
|
+
data: {
|
|
106625
|
+
items: {
|
|
106626
|
+
id: string;
|
|
106627
|
+
props: Record<string, {
|
|
106628
|
+
value?: any;
|
|
106629
|
+
} & Record<string, any>>;
|
|
106630
|
+
linksTo?: {
|
|
106631
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106632
|
+
documentationItemId?: string | undefined;
|
|
106633
|
+
pageHeadingId?: string | undefined;
|
|
106634
|
+
url?: string | undefined;
|
|
106635
|
+
openInNewTab?: boolean | undefined;
|
|
106636
|
+
} | undefined;
|
|
106637
|
+
}[];
|
|
106638
|
+
packageId: string;
|
|
106639
|
+
indentLevel: number;
|
|
106640
|
+
variantId?: string | undefined;
|
|
106641
|
+
appearance?: {
|
|
106642
|
+
itemBackgroundColor?: {
|
|
106643
|
+
value: string;
|
|
106644
|
+
referencedTokenId?: string | undefined;
|
|
106645
|
+
} | undefined;
|
|
106646
|
+
numberOfColumns?: number | undefined;
|
|
106647
|
+
} | undefined;
|
|
106648
|
+
};
|
|
106649
|
+
}[];
|
|
106650
|
+
}[];
|
|
106651
|
+
}[];
|
|
106652
|
+
appearance: {
|
|
106653
|
+
expandToEdges: boolean;
|
|
106654
|
+
contentExpandToEdges: boolean;
|
|
106655
|
+
backgroundColor?: {
|
|
106656
|
+
value: string;
|
|
106657
|
+
referencedTokenId?: string | undefined;
|
|
106658
|
+
} | undefined;
|
|
106659
|
+
foregroundColor?: {
|
|
106660
|
+
value: string;
|
|
106661
|
+
referencedTokenId?: string | undefined;
|
|
106662
|
+
} | undefined;
|
|
106663
|
+
padding?: {
|
|
106664
|
+
top?: number | undefined;
|
|
106665
|
+
bottom?: number | undefined;
|
|
106666
|
+
left?: number | undefined;
|
|
106667
|
+
right?: number | undefined;
|
|
106668
|
+
} | undefined;
|
|
106669
|
+
};
|
|
106670
|
+
sectionType: "Tabs";
|
|
106671
|
+
variantId?: string | undefined;
|
|
106672
|
+
}>]>, "many">;
|
|
104748
106673
|
blockDefinitions: z.ZodArray<z.ZodObject<{
|
|
104749
106674
|
id: z.ZodString;
|
|
104750
106675
|
name: z.ZodString;
|
|
@@ -105246,8 +107171,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105246
107171
|
} | undefined;
|
|
105247
107172
|
} | undefined;
|
|
105248
107173
|
};
|
|
105249
|
-
pageBlocks: {
|
|
107174
|
+
pageBlocks: ({
|
|
105250
107175
|
id: string;
|
|
107176
|
+
type: "Block";
|
|
105251
107177
|
data: {
|
|
105252
107178
|
items: {
|
|
105253
107179
|
id: string;
|
|
@@ -105273,7 +107199,66 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105273
107199
|
numberOfColumns?: number | undefined;
|
|
105274
107200
|
} | undefined;
|
|
105275
107201
|
};
|
|
105276
|
-
}
|
|
107202
|
+
} | {
|
|
107203
|
+
id: string;
|
|
107204
|
+
type: "Section";
|
|
107205
|
+
items: {
|
|
107206
|
+
id: string;
|
|
107207
|
+
title: string;
|
|
107208
|
+
columns: {
|
|
107209
|
+
id: string;
|
|
107210
|
+
blocks: {
|
|
107211
|
+
id: string;
|
|
107212
|
+
type: "Block";
|
|
107213
|
+
data: {
|
|
107214
|
+
items: {
|
|
107215
|
+
id: string;
|
|
107216
|
+
props: Record<string, {
|
|
107217
|
+
value?: any;
|
|
107218
|
+
} & Record<string, any>>;
|
|
107219
|
+
linksTo?: {
|
|
107220
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
107221
|
+
documentationItemId?: string | undefined;
|
|
107222
|
+
pageHeadingId?: string | undefined;
|
|
107223
|
+
url?: string | undefined;
|
|
107224
|
+
openInNewTab?: boolean | undefined;
|
|
107225
|
+
} | undefined;
|
|
107226
|
+
}[];
|
|
107227
|
+
packageId: string;
|
|
107228
|
+
indentLevel: number;
|
|
107229
|
+
variantId?: string | undefined;
|
|
107230
|
+
appearance?: {
|
|
107231
|
+
itemBackgroundColor?: {
|
|
107232
|
+
value: string;
|
|
107233
|
+
referencedTokenId?: string | undefined;
|
|
107234
|
+
} | undefined;
|
|
107235
|
+
numberOfColumns?: number | undefined;
|
|
107236
|
+
} | undefined;
|
|
107237
|
+
};
|
|
107238
|
+
}[];
|
|
107239
|
+
}[];
|
|
107240
|
+
}[];
|
|
107241
|
+
appearance: {
|
|
107242
|
+
expandToEdges: boolean;
|
|
107243
|
+
contentExpandToEdges: boolean;
|
|
107244
|
+
backgroundColor?: {
|
|
107245
|
+
value: string;
|
|
107246
|
+
referencedTokenId?: string | undefined;
|
|
107247
|
+
} | undefined;
|
|
107248
|
+
foregroundColor?: {
|
|
107249
|
+
value: string;
|
|
107250
|
+
referencedTokenId?: string | undefined;
|
|
107251
|
+
} | undefined;
|
|
107252
|
+
padding?: {
|
|
107253
|
+
top?: number | undefined;
|
|
107254
|
+
bottom?: number | undefined;
|
|
107255
|
+
left?: number | undefined;
|
|
107256
|
+
right?: number | undefined;
|
|
107257
|
+
} | undefined;
|
|
107258
|
+
};
|
|
107259
|
+
sectionType: "Tabs";
|
|
107260
|
+
variantId?: string | undefined;
|
|
107261
|
+
})[];
|
|
105277
107262
|
blockDefinitions: {
|
|
105278
107263
|
id: string;
|
|
105279
107264
|
name: string;
|
|
@@ -105802,8 +107787,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105802
107787
|
} | null | undefined;
|
|
105803
107788
|
} | undefined;
|
|
105804
107789
|
};
|
|
105805
|
-
pageBlocks: {
|
|
107790
|
+
pageBlocks: ({
|
|
105806
107791
|
id: string;
|
|
107792
|
+
type: "Block";
|
|
105807
107793
|
data: {
|
|
105808
107794
|
items: {
|
|
105809
107795
|
id: string;
|
|
@@ -105829,7 +107815,66 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105829
107815
|
numberOfColumns?: number | undefined;
|
|
105830
107816
|
} | undefined;
|
|
105831
107817
|
};
|
|
105832
|
-
}
|
|
107818
|
+
} | {
|
|
107819
|
+
id: string;
|
|
107820
|
+
type: "Section";
|
|
107821
|
+
items: {
|
|
107822
|
+
id: string;
|
|
107823
|
+
title: string;
|
|
107824
|
+
columns: {
|
|
107825
|
+
id: string;
|
|
107826
|
+
blocks: {
|
|
107827
|
+
id: string;
|
|
107828
|
+
type: "Block";
|
|
107829
|
+
data: {
|
|
107830
|
+
items: {
|
|
107831
|
+
id: string;
|
|
107832
|
+
props: Record<string, {
|
|
107833
|
+
value?: any;
|
|
107834
|
+
} & Record<string, any>>;
|
|
107835
|
+
linksTo?: {
|
|
107836
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
107837
|
+
documentationItemId?: string | undefined;
|
|
107838
|
+
pageHeadingId?: string | undefined;
|
|
107839
|
+
url?: string | undefined;
|
|
107840
|
+
openInNewTab?: boolean | undefined;
|
|
107841
|
+
} | undefined;
|
|
107842
|
+
}[];
|
|
107843
|
+
packageId: string;
|
|
107844
|
+
indentLevel: number;
|
|
107845
|
+
variantId?: string | undefined;
|
|
107846
|
+
appearance?: {
|
|
107847
|
+
itemBackgroundColor?: {
|
|
107848
|
+
value: string;
|
|
107849
|
+
referencedTokenId?: string | undefined;
|
|
107850
|
+
} | undefined;
|
|
107851
|
+
numberOfColumns?: number | undefined;
|
|
107852
|
+
} | undefined;
|
|
107853
|
+
};
|
|
107854
|
+
}[];
|
|
107855
|
+
}[];
|
|
107856
|
+
}[];
|
|
107857
|
+
appearance: {
|
|
107858
|
+
expandToEdges: boolean;
|
|
107859
|
+
contentExpandToEdges: boolean;
|
|
107860
|
+
backgroundColor?: {
|
|
107861
|
+
value: string;
|
|
107862
|
+
referencedTokenId?: string | undefined;
|
|
107863
|
+
} | undefined;
|
|
107864
|
+
foregroundColor?: {
|
|
107865
|
+
value: string;
|
|
107866
|
+
referencedTokenId?: string | undefined;
|
|
107867
|
+
} | undefined;
|
|
107868
|
+
padding?: {
|
|
107869
|
+
top?: number | undefined;
|
|
107870
|
+
bottom?: number | undefined;
|
|
107871
|
+
left?: number | undefined;
|
|
107872
|
+
right?: number | undefined;
|
|
107873
|
+
} | undefined;
|
|
107874
|
+
};
|
|
107875
|
+
sectionType: "Tabs";
|
|
107876
|
+
variantId?: string | undefined;
|
|
107877
|
+
})[];
|
|
105833
107878
|
blockDefinitions: {
|
|
105834
107879
|
id: string;
|
|
105835
107880
|
name: string;
|
|
@@ -106713,181 +108758,147 @@ type PersonalAccessTokenWithUser = {
|
|
|
106713
108758
|
};
|
|
106714
108759
|
|
|
106715
108760
|
declare const NpmRegistryAuthType: z.ZodEnum<["Basic", "Bearer", "None", "Custom"]>;
|
|
106716
|
-
declare const NpmRegistryType: z.ZodEnum<["NPMJS", "GitHub", "
|
|
106717
|
-
declare const NpmRegistryTypeWithoutAzure: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
108761
|
+
declare const NpmRegistryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
106718
108762
|
declare const NpmRegistryBasicAuthConfig: z.ZodObject<{
|
|
106719
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106720
108763
|
authType: z.ZodLiteral<"Basic">;
|
|
106721
108764
|
username: z.ZodString;
|
|
106722
108765
|
password: z.ZodString;
|
|
106723
108766
|
}, "strip", z.ZodTypeAny, {
|
|
106724
108767
|
password: string;
|
|
106725
108768
|
username: string;
|
|
106726
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106727
108769
|
authType: "Basic";
|
|
106728
108770
|
}, {
|
|
106729
108771
|
password: string;
|
|
106730
108772
|
username: string;
|
|
106731
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106732
108773
|
authType: "Basic";
|
|
106733
108774
|
}>;
|
|
106734
108775
|
declare const NpmRegistryBearerAuthConfig: z.ZodObject<{
|
|
106735
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106736
108776
|
authType: z.ZodLiteral<"Bearer">;
|
|
106737
108777
|
accessToken: z.ZodString;
|
|
106738
108778
|
}, "strip", z.ZodTypeAny, {
|
|
106739
108779
|
accessToken: string;
|
|
106740
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106741
108780
|
authType: "Bearer";
|
|
106742
108781
|
}, {
|
|
106743
108782
|
accessToken: string;
|
|
106744
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106745
108783
|
authType: "Bearer";
|
|
106746
108784
|
}>;
|
|
106747
108785
|
declare const NpmRegistryNoAuthConfig: z.ZodObject<{
|
|
106748
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106749
108786
|
authType: z.ZodLiteral<"None">;
|
|
106750
108787
|
}, "strip", z.ZodTypeAny, {
|
|
106751
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106752
108788
|
authType: "None";
|
|
106753
108789
|
}, {
|
|
106754
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106755
108790
|
authType: "None";
|
|
106756
108791
|
}>;
|
|
106757
108792
|
declare const NpmRegistrCustomAuthConfig: z.ZodObject<{
|
|
106758
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106759
108793
|
authType: z.ZodLiteral<"Custom">;
|
|
106760
108794
|
authHeaderName: z.ZodString;
|
|
106761
108795
|
authHeaderValue: z.ZodString;
|
|
106762
108796
|
}, "strip", z.ZodTypeAny, {
|
|
106763
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106764
108797
|
authType: "Custom";
|
|
106765
108798
|
authHeaderName: string;
|
|
106766
108799
|
authHeaderValue: string;
|
|
106767
108800
|
}, {
|
|
106768
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106769
108801
|
authType: "Custom";
|
|
106770
108802
|
authHeaderName: string;
|
|
106771
108803
|
authHeaderValue: string;
|
|
106772
108804
|
}>;
|
|
106773
108805
|
declare const NpmRegistryAuthConfig: z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
106774
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106775
108806
|
authType: z.ZodLiteral<"Basic">;
|
|
106776
108807
|
username: z.ZodString;
|
|
106777
108808
|
password: z.ZodString;
|
|
106778
108809
|
}, "strip", z.ZodTypeAny, {
|
|
106779
108810
|
password: string;
|
|
106780
108811
|
username: string;
|
|
106781
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106782
108812
|
authType: "Basic";
|
|
106783
108813
|
}, {
|
|
106784
108814
|
password: string;
|
|
106785
108815
|
username: string;
|
|
106786
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106787
108816
|
authType: "Basic";
|
|
106788
108817
|
}>, z.ZodObject<{
|
|
106789
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106790
108818
|
authType: z.ZodLiteral<"Bearer">;
|
|
106791
108819
|
accessToken: z.ZodString;
|
|
106792
108820
|
}, "strip", z.ZodTypeAny, {
|
|
106793
108821
|
accessToken: string;
|
|
106794
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106795
108822
|
authType: "Bearer";
|
|
106796
108823
|
}, {
|
|
106797
108824
|
accessToken: string;
|
|
106798
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106799
108825
|
authType: "Bearer";
|
|
106800
108826
|
}>, z.ZodObject<{
|
|
106801
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106802
108827
|
authType: z.ZodLiteral<"None">;
|
|
106803
108828
|
}, "strip", z.ZodTypeAny, {
|
|
106804
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106805
108829
|
authType: "None";
|
|
106806
108830
|
}, {
|
|
106807
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106808
108831
|
authType: "None";
|
|
106809
108832
|
}>, z.ZodObject<{
|
|
106810
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106811
108833
|
authType: z.ZodLiteral<"Custom">;
|
|
106812
108834
|
authHeaderName: z.ZodString;
|
|
106813
108835
|
authHeaderValue: z.ZodString;
|
|
106814
108836
|
}, "strip", z.ZodTypeAny, {
|
|
106815
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106816
108837
|
authType: "Custom";
|
|
106817
108838
|
authHeaderName: string;
|
|
106818
108839
|
authHeaderValue: string;
|
|
106819
108840
|
}, {
|
|
106820
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106821
108841
|
authType: "Custom";
|
|
106822
108842
|
authHeaderName: string;
|
|
106823
108843
|
authHeaderValue: string;
|
|
106824
108844
|
}>]>;
|
|
106825
108845
|
declare const NpmRegistryConfig: z.ZodIntersection<z.ZodObject<{
|
|
108846
|
+
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
106826
108847
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
106827
108848
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
106828
108849
|
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
106829
108850
|
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
106830
108851
|
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
106831
108852
|
}, "strip", z.ZodTypeAny, {
|
|
108853
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
106832
108854
|
enabledScopes: string[];
|
|
106833
108855
|
bypassProxy: boolean;
|
|
106834
108856
|
customRegistryUrl?: string | undefined;
|
|
106835
108857
|
npmProxyRegistryConfigId?: string | undefined;
|
|
106836
108858
|
npmProxyVersion?: number | undefined;
|
|
106837
108859
|
}, {
|
|
108860
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
106838
108861
|
enabledScopes: string[];
|
|
106839
108862
|
customRegistryUrl?: string | undefined;
|
|
106840
108863
|
bypassProxy?: boolean | undefined;
|
|
106841
108864
|
npmProxyRegistryConfigId?: string | undefined;
|
|
106842
108865
|
npmProxyVersion?: number | undefined;
|
|
106843
108866
|
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
106844
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106845
108867
|
authType: z.ZodLiteral<"Basic">;
|
|
106846
108868
|
username: z.ZodString;
|
|
106847
108869
|
password: z.ZodString;
|
|
106848
108870
|
}, "strip", z.ZodTypeAny, {
|
|
106849
108871
|
password: string;
|
|
106850
108872
|
username: string;
|
|
106851
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106852
108873
|
authType: "Basic";
|
|
106853
108874
|
}, {
|
|
106854
108875
|
password: string;
|
|
106855
108876
|
username: string;
|
|
106856
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106857
108877
|
authType: "Basic";
|
|
106858
108878
|
}>, z.ZodObject<{
|
|
106859
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106860
108879
|
authType: z.ZodLiteral<"Bearer">;
|
|
106861
108880
|
accessToken: z.ZodString;
|
|
106862
108881
|
}, "strip", z.ZodTypeAny, {
|
|
106863
108882
|
accessToken: string;
|
|
106864
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106865
108883
|
authType: "Bearer";
|
|
106866
108884
|
}, {
|
|
106867
108885
|
accessToken: string;
|
|
106868
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106869
108886
|
authType: "Bearer";
|
|
106870
108887
|
}>, z.ZodObject<{
|
|
106871
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106872
108888
|
authType: z.ZodLiteral<"None">;
|
|
106873
108889
|
}, "strip", z.ZodTypeAny, {
|
|
106874
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106875
108890
|
authType: "None";
|
|
106876
108891
|
}, {
|
|
106877
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106878
108892
|
authType: "None";
|
|
106879
108893
|
}>, z.ZodObject<{
|
|
106880
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106881
108894
|
authType: z.ZodLiteral<"Custom">;
|
|
106882
108895
|
authHeaderName: z.ZodString;
|
|
106883
108896
|
authHeaderValue: z.ZodString;
|
|
106884
108897
|
}, "strip", z.ZodTypeAny, {
|
|
106885
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106886
108898
|
authType: "Custom";
|
|
106887
108899
|
authHeaderName: string;
|
|
106888
108900
|
authHeaderValue: string;
|
|
106889
108901
|
}, {
|
|
106890
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106891
108902
|
authType: "Custom";
|
|
106892
108903
|
authHeaderName: string;
|
|
106893
108904
|
authHeaderValue: string;
|
|
@@ -110452,4 +112463,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110452
112463
|
}>;
|
|
110453
112464
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
110454
112465
|
|
|
110455
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, 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, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, 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, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, 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, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, 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, FigmaNodeReferenceOrigin, 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, HierarchicalElements, 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, NpmRegistryTypeWithoutAzure, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModel, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, 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, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type Pagination, 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, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, 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, SupernovaException, type SupernovaExceptionType, 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, UpdateMembershipRolesInput, 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
112466
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, 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, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomUpdate, 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, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationPage, DocumentationPageAsset, DocumentationPageAssetType, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageElementDataV1, DocumentationPageElementDataV2, DocumentationPageFrameAsset, DocumentationPageGroup, DocumentationPageImageAsset, DocumentationPageRoom, DocumentationPageRoomInitialState, DocumentationPageRoomRoomUpdate, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataDeprecated, ElementGroupDataV2, 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, type ExplicitPartial, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDestinationSnDocs, ExporterDetails, ExporterJob, ExporterJobDestination, ExporterJobFindByFilter, ExporterJobLogEntry, ExporterJobLogEntryType, ExporterJobResult, ExporterJobResultDocsDestination, ExporterJobResultPullRequestDestination, ExporterJobResultS3Destination, ExporterJobStatus, 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, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, 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, HierarchicalElements, 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, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, 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, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, 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, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, 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, SupernovaException, type SupernovaExceptionType, 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, UpdateMembershipRolesInput, 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, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlocksV1, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|