@supernova-studio/model 0.25.1 → 0.27.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 +2397 -242
- package/dist/index.d.ts +2397 -242
- package/dist/index.js +102 -61
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +962 -921
- 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/documentation/block-definitions/definition.ts +2 -1
- 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;
|
|
@@ -5158,7 +5170,49 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
5158
5170
|
name: z.ZodString;
|
|
5159
5171
|
description: z.ZodString;
|
|
5160
5172
|
category: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
5161
|
-
icon: z.ZodOptional<z.ZodObject<{
|
|
5173
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
5174
|
+
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
5175
|
+
resource: z.ZodOptional<z.ZodObject<{
|
|
5176
|
+
url: z.ZodString;
|
|
5177
|
+
resourceId: z.ZodString;
|
|
5178
|
+
}, "strip", z.ZodTypeAny, {
|
|
5179
|
+
url: string;
|
|
5180
|
+
resourceId: string;
|
|
5181
|
+
}, {
|
|
5182
|
+
url: string;
|
|
5183
|
+
resourceId: string;
|
|
5184
|
+
}>>;
|
|
5185
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
5186
|
+
sourceId: z.ZodString;
|
|
5187
|
+
frameReferenceId: z.ZodString;
|
|
5188
|
+
}, "strip", z.ZodTypeAny, {
|
|
5189
|
+
sourceId: string;
|
|
5190
|
+
frameReferenceId: string;
|
|
5191
|
+
}, {
|
|
5192
|
+
sourceId: string;
|
|
5193
|
+
frameReferenceId: string;
|
|
5194
|
+
}>>;
|
|
5195
|
+
}, "strip", z.ZodTypeAny, {
|
|
5196
|
+
type: "Resource" | "FigmaNode";
|
|
5197
|
+
resource?: {
|
|
5198
|
+
url: string;
|
|
5199
|
+
resourceId: string;
|
|
5200
|
+
} | undefined;
|
|
5201
|
+
figmaFile?: {
|
|
5202
|
+
sourceId: string;
|
|
5203
|
+
frameReferenceId: string;
|
|
5204
|
+
} | undefined;
|
|
5205
|
+
}, {
|
|
5206
|
+
type: "Resource" | "FigmaNode";
|
|
5207
|
+
resource?: {
|
|
5208
|
+
url: string;
|
|
5209
|
+
resourceId: string;
|
|
5210
|
+
} | undefined;
|
|
5211
|
+
figmaFile?: {
|
|
5212
|
+
sourceId: string;
|
|
5213
|
+
frameReferenceId: string;
|
|
5214
|
+
} | undefined;
|
|
5215
|
+
}>>;
|
|
5162
5216
|
documentationLink: z.ZodOptional<z.ZodString>;
|
|
5163
5217
|
searchKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5164
5218
|
item: z.ZodObject<{
|
|
@@ -5476,7 +5530,17 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
5476
5530
|
documentationLink?: string | undefined;
|
|
5477
5531
|
} | undefined;
|
|
5478
5532
|
};
|
|
5479
|
-
icon?: {
|
|
5533
|
+
icon?: {
|
|
5534
|
+
type: "Resource" | "FigmaNode";
|
|
5535
|
+
resource?: {
|
|
5536
|
+
url: string;
|
|
5537
|
+
resourceId: string;
|
|
5538
|
+
} | undefined;
|
|
5539
|
+
figmaFile?: {
|
|
5540
|
+
sourceId: string;
|
|
5541
|
+
frameReferenceId: string;
|
|
5542
|
+
} | undefined;
|
|
5543
|
+
} | undefined;
|
|
5480
5544
|
documentationLink?: string | undefined;
|
|
5481
5545
|
searchKeywords?: string[] | undefined;
|
|
5482
5546
|
appearance?: {
|
|
@@ -5544,7 +5608,17 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
5544
5608
|
documentationLink?: string | undefined;
|
|
5545
5609
|
} | undefined;
|
|
5546
5610
|
};
|
|
5547
|
-
icon?: {
|
|
5611
|
+
icon?: {
|
|
5612
|
+
type: "Resource" | "FigmaNode";
|
|
5613
|
+
resource?: {
|
|
5614
|
+
url: string;
|
|
5615
|
+
resourceId: string;
|
|
5616
|
+
} | undefined;
|
|
5617
|
+
figmaFile?: {
|
|
5618
|
+
sourceId: string;
|
|
5619
|
+
frameReferenceId: string;
|
|
5620
|
+
} | undefined;
|
|
5621
|
+
} | undefined;
|
|
5548
5622
|
documentationLink?: string | undefined;
|
|
5549
5623
|
searchKeywords?: string[] | undefined;
|
|
5550
5624
|
appearance?: {
|
|
@@ -16337,6 +16411,1218 @@ declare const DocumentationPageElementDataV2: z.ZodObject<{
|
|
|
16337
16411
|
} | undefined;
|
|
16338
16412
|
}>;
|
|
16339
16413
|
|
|
16414
|
+
declare const PageSectionTypeV2: z.ZodEnum<["Tabs"]>;
|
|
16415
|
+
type PageSectionTypeV2 = z.infer<typeof PageSectionTypeV2>;
|
|
16416
|
+
declare const PageSectionColumnV2: z.ZodObject<{
|
|
16417
|
+
id: z.ZodString;
|
|
16418
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
16419
|
+
id: z.ZodString;
|
|
16420
|
+
type: z.ZodLiteral<"Block">;
|
|
16421
|
+
data: z.ZodObject<{
|
|
16422
|
+
packageId: z.ZodString;
|
|
16423
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
16424
|
+
indentLevel: z.ZodNumber;
|
|
16425
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
16426
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
16427
|
+
value: z.ZodString;
|
|
16428
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16429
|
+
}, "strip", z.ZodTypeAny, {
|
|
16430
|
+
value: string;
|
|
16431
|
+
referencedTokenId?: string | undefined;
|
|
16432
|
+
}, {
|
|
16433
|
+
value: string;
|
|
16434
|
+
referencedTokenId?: string | undefined;
|
|
16435
|
+
}>>;
|
|
16436
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
16437
|
+
}, "strip", z.ZodTypeAny, {
|
|
16438
|
+
itemBackgroundColor?: {
|
|
16439
|
+
value: string;
|
|
16440
|
+
referencedTokenId?: string | undefined;
|
|
16441
|
+
} | undefined;
|
|
16442
|
+
numberOfColumns?: number | undefined;
|
|
16443
|
+
}, {
|
|
16444
|
+
itemBackgroundColor?: {
|
|
16445
|
+
value: string;
|
|
16446
|
+
referencedTokenId?: string | undefined;
|
|
16447
|
+
} | undefined;
|
|
16448
|
+
numberOfColumns?: number | undefined;
|
|
16449
|
+
}>>;
|
|
16450
|
+
items: z.ZodArray<z.ZodObject<{
|
|
16451
|
+
id: z.ZodString;
|
|
16452
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
16453
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
16454
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
16455
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
16456
|
+
url: z.ZodOptional<z.ZodString>;
|
|
16457
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
16458
|
+
}, "strip", z.ZodTypeAny, {
|
|
16459
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16460
|
+
documentationItemId?: string | undefined;
|
|
16461
|
+
pageHeadingId?: string | undefined;
|
|
16462
|
+
url?: string | undefined;
|
|
16463
|
+
openInNewTab?: boolean | undefined;
|
|
16464
|
+
}, {
|
|
16465
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16466
|
+
documentationItemId?: string | undefined;
|
|
16467
|
+
pageHeadingId?: string | undefined;
|
|
16468
|
+
url?: string | undefined;
|
|
16469
|
+
openInNewTab?: boolean | undefined;
|
|
16470
|
+
}>>;
|
|
16471
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
16472
|
+
value: z.ZodAny;
|
|
16473
|
+
}, "strip", z.ZodTypeAny, {
|
|
16474
|
+
value?: any;
|
|
16475
|
+
}, {
|
|
16476
|
+
value?: any;
|
|
16477
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
16478
|
+
}, "strip", z.ZodTypeAny, {
|
|
16479
|
+
id: string;
|
|
16480
|
+
props: Record<string, {
|
|
16481
|
+
value?: any;
|
|
16482
|
+
} & Record<string, any>>;
|
|
16483
|
+
linksTo?: {
|
|
16484
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16485
|
+
documentationItemId?: string | undefined;
|
|
16486
|
+
pageHeadingId?: string | undefined;
|
|
16487
|
+
url?: string | undefined;
|
|
16488
|
+
openInNewTab?: boolean | undefined;
|
|
16489
|
+
} | undefined;
|
|
16490
|
+
}, {
|
|
16491
|
+
id: string;
|
|
16492
|
+
props: Record<string, {
|
|
16493
|
+
value?: any;
|
|
16494
|
+
} & Record<string, any>>;
|
|
16495
|
+
linksTo?: {
|
|
16496
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16497
|
+
documentationItemId?: string | undefined;
|
|
16498
|
+
pageHeadingId?: string | undefined;
|
|
16499
|
+
url?: string | undefined;
|
|
16500
|
+
openInNewTab?: boolean | undefined;
|
|
16501
|
+
} | undefined;
|
|
16502
|
+
}>, "many">;
|
|
16503
|
+
}, "strip", z.ZodTypeAny, {
|
|
16504
|
+
items: {
|
|
16505
|
+
id: string;
|
|
16506
|
+
props: Record<string, {
|
|
16507
|
+
value?: any;
|
|
16508
|
+
} & Record<string, any>>;
|
|
16509
|
+
linksTo?: {
|
|
16510
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16511
|
+
documentationItemId?: string | undefined;
|
|
16512
|
+
pageHeadingId?: string | undefined;
|
|
16513
|
+
url?: string | undefined;
|
|
16514
|
+
openInNewTab?: boolean | undefined;
|
|
16515
|
+
} | undefined;
|
|
16516
|
+
}[];
|
|
16517
|
+
packageId: string;
|
|
16518
|
+
indentLevel: number;
|
|
16519
|
+
variantId?: string | undefined;
|
|
16520
|
+
appearance?: {
|
|
16521
|
+
itemBackgroundColor?: {
|
|
16522
|
+
value: string;
|
|
16523
|
+
referencedTokenId?: string | undefined;
|
|
16524
|
+
} | undefined;
|
|
16525
|
+
numberOfColumns?: number | undefined;
|
|
16526
|
+
} | undefined;
|
|
16527
|
+
}, {
|
|
16528
|
+
items: {
|
|
16529
|
+
id: string;
|
|
16530
|
+
props: Record<string, {
|
|
16531
|
+
value?: any;
|
|
16532
|
+
} & Record<string, any>>;
|
|
16533
|
+
linksTo?: {
|
|
16534
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16535
|
+
documentationItemId?: string | undefined;
|
|
16536
|
+
pageHeadingId?: string | undefined;
|
|
16537
|
+
url?: string | undefined;
|
|
16538
|
+
openInNewTab?: boolean | undefined;
|
|
16539
|
+
} | undefined;
|
|
16540
|
+
}[];
|
|
16541
|
+
packageId: string;
|
|
16542
|
+
indentLevel: number;
|
|
16543
|
+
variantId?: string | undefined;
|
|
16544
|
+
appearance?: {
|
|
16545
|
+
itemBackgroundColor?: {
|
|
16546
|
+
value: string;
|
|
16547
|
+
referencedTokenId?: string | undefined;
|
|
16548
|
+
} | undefined;
|
|
16549
|
+
numberOfColumns?: number | undefined;
|
|
16550
|
+
} | undefined;
|
|
16551
|
+
}>;
|
|
16552
|
+
}, "strip", z.ZodTypeAny, {
|
|
16553
|
+
id: string;
|
|
16554
|
+
type: "Block";
|
|
16555
|
+
data: {
|
|
16556
|
+
items: {
|
|
16557
|
+
id: string;
|
|
16558
|
+
props: Record<string, {
|
|
16559
|
+
value?: any;
|
|
16560
|
+
} & Record<string, any>>;
|
|
16561
|
+
linksTo?: {
|
|
16562
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16563
|
+
documentationItemId?: string | undefined;
|
|
16564
|
+
pageHeadingId?: string | undefined;
|
|
16565
|
+
url?: string | undefined;
|
|
16566
|
+
openInNewTab?: boolean | undefined;
|
|
16567
|
+
} | undefined;
|
|
16568
|
+
}[];
|
|
16569
|
+
packageId: string;
|
|
16570
|
+
indentLevel: number;
|
|
16571
|
+
variantId?: string | undefined;
|
|
16572
|
+
appearance?: {
|
|
16573
|
+
itemBackgroundColor?: {
|
|
16574
|
+
value: string;
|
|
16575
|
+
referencedTokenId?: string | undefined;
|
|
16576
|
+
} | undefined;
|
|
16577
|
+
numberOfColumns?: number | undefined;
|
|
16578
|
+
} | undefined;
|
|
16579
|
+
};
|
|
16580
|
+
}, {
|
|
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
|
+
}>, "many">;
|
|
16609
|
+
}, "strip", z.ZodTypeAny, {
|
|
16610
|
+
id: string;
|
|
16611
|
+
blocks: {
|
|
16612
|
+
id: string;
|
|
16613
|
+
type: "Block";
|
|
16614
|
+
data: {
|
|
16615
|
+
items: {
|
|
16616
|
+
id: string;
|
|
16617
|
+
props: Record<string, {
|
|
16618
|
+
value?: any;
|
|
16619
|
+
} & Record<string, any>>;
|
|
16620
|
+
linksTo?: {
|
|
16621
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16622
|
+
documentationItemId?: string | undefined;
|
|
16623
|
+
pageHeadingId?: string | undefined;
|
|
16624
|
+
url?: string | undefined;
|
|
16625
|
+
openInNewTab?: boolean | undefined;
|
|
16626
|
+
} | undefined;
|
|
16627
|
+
}[];
|
|
16628
|
+
packageId: string;
|
|
16629
|
+
indentLevel: number;
|
|
16630
|
+
variantId?: string | undefined;
|
|
16631
|
+
appearance?: {
|
|
16632
|
+
itemBackgroundColor?: {
|
|
16633
|
+
value: string;
|
|
16634
|
+
referencedTokenId?: string | undefined;
|
|
16635
|
+
} | undefined;
|
|
16636
|
+
numberOfColumns?: number | undefined;
|
|
16637
|
+
} | undefined;
|
|
16638
|
+
};
|
|
16639
|
+
}[];
|
|
16640
|
+
}, {
|
|
16641
|
+
id: string;
|
|
16642
|
+
blocks: {
|
|
16643
|
+
id: string;
|
|
16644
|
+
type: "Block";
|
|
16645
|
+
data: {
|
|
16646
|
+
items: {
|
|
16647
|
+
id: string;
|
|
16648
|
+
props: Record<string, {
|
|
16649
|
+
value?: any;
|
|
16650
|
+
} & Record<string, any>>;
|
|
16651
|
+
linksTo?: {
|
|
16652
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16653
|
+
documentationItemId?: string | undefined;
|
|
16654
|
+
pageHeadingId?: string | undefined;
|
|
16655
|
+
url?: string | undefined;
|
|
16656
|
+
openInNewTab?: boolean | undefined;
|
|
16657
|
+
} | undefined;
|
|
16658
|
+
}[];
|
|
16659
|
+
packageId: string;
|
|
16660
|
+
indentLevel: number;
|
|
16661
|
+
variantId?: string | undefined;
|
|
16662
|
+
appearance?: {
|
|
16663
|
+
itemBackgroundColor?: {
|
|
16664
|
+
value: string;
|
|
16665
|
+
referencedTokenId?: string | undefined;
|
|
16666
|
+
} | undefined;
|
|
16667
|
+
numberOfColumns?: number | undefined;
|
|
16668
|
+
} | undefined;
|
|
16669
|
+
};
|
|
16670
|
+
}[];
|
|
16671
|
+
}>;
|
|
16672
|
+
type PageSectionColumnV2 = z.infer<typeof PageSectionColumnV2>;
|
|
16673
|
+
declare const PageSectionItemV2: z.ZodObject<{
|
|
16674
|
+
id: z.ZodString;
|
|
16675
|
+
title: z.ZodString;
|
|
16676
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
16677
|
+
id: z.ZodString;
|
|
16678
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
16679
|
+
id: z.ZodString;
|
|
16680
|
+
type: z.ZodLiteral<"Block">;
|
|
16681
|
+
data: z.ZodObject<{
|
|
16682
|
+
packageId: z.ZodString;
|
|
16683
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
16684
|
+
indentLevel: z.ZodNumber;
|
|
16685
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
16686
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
16687
|
+
value: z.ZodString;
|
|
16688
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
16689
|
+
}, "strip", z.ZodTypeAny, {
|
|
16690
|
+
value: string;
|
|
16691
|
+
referencedTokenId?: string | undefined;
|
|
16692
|
+
}, {
|
|
16693
|
+
value: string;
|
|
16694
|
+
referencedTokenId?: string | undefined;
|
|
16695
|
+
}>>;
|
|
16696
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
16697
|
+
}, "strip", z.ZodTypeAny, {
|
|
16698
|
+
itemBackgroundColor?: {
|
|
16699
|
+
value: string;
|
|
16700
|
+
referencedTokenId?: string | undefined;
|
|
16701
|
+
} | undefined;
|
|
16702
|
+
numberOfColumns?: number | undefined;
|
|
16703
|
+
}, {
|
|
16704
|
+
itemBackgroundColor?: {
|
|
16705
|
+
value: string;
|
|
16706
|
+
referencedTokenId?: string | undefined;
|
|
16707
|
+
} | undefined;
|
|
16708
|
+
numberOfColumns?: number | undefined;
|
|
16709
|
+
}>>;
|
|
16710
|
+
items: z.ZodArray<z.ZodObject<{
|
|
16711
|
+
id: z.ZodString;
|
|
16712
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
16713
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
16714
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
16715
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
16716
|
+
url: z.ZodOptional<z.ZodString>;
|
|
16717
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
16718
|
+
}, "strip", z.ZodTypeAny, {
|
|
16719
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16720
|
+
documentationItemId?: string | undefined;
|
|
16721
|
+
pageHeadingId?: string | undefined;
|
|
16722
|
+
url?: string | undefined;
|
|
16723
|
+
openInNewTab?: boolean | undefined;
|
|
16724
|
+
}, {
|
|
16725
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16726
|
+
documentationItemId?: string | undefined;
|
|
16727
|
+
pageHeadingId?: string | undefined;
|
|
16728
|
+
url?: string | undefined;
|
|
16729
|
+
openInNewTab?: boolean | undefined;
|
|
16730
|
+
}>>;
|
|
16731
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
16732
|
+
value: z.ZodAny;
|
|
16733
|
+
}, "strip", z.ZodTypeAny, {
|
|
16734
|
+
value?: any;
|
|
16735
|
+
}, {
|
|
16736
|
+
value?: any;
|
|
16737
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
16738
|
+
}, "strip", z.ZodTypeAny, {
|
|
16739
|
+
id: string;
|
|
16740
|
+
props: Record<string, {
|
|
16741
|
+
value?: any;
|
|
16742
|
+
} & Record<string, any>>;
|
|
16743
|
+
linksTo?: {
|
|
16744
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16745
|
+
documentationItemId?: string | undefined;
|
|
16746
|
+
pageHeadingId?: string | undefined;
|
|
16747
|
+
url?: string | undefined;
|
|
16748
|
+
openInNewTab?: boolean | undefined;
|
|
16749
|
+
} | undefined;
|
|
16750
|
+
}, {
|
|
16751
|
+
id: string;
|
|
16752
|
+
props: Record<string, {
|
|
16753
|
+
value?: any;
|
|
16754
|
+
} & Record<string, any>>;
|
|
16755
|
+
linksTo?: {
|
|
16756
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16757
|
+
documentationItemId?: string | undefined;
|
|
16758
|
+
pageHeadingId?: string | undefined;
|
|
16759
|
+
url?: string | undefined;
|
|
16760
|
+
openInNewTab?: boolean | undefined;
|
|
16761
|
+
} | undefined;
|
|
16762
|
+
}>, "many">;
|
|
16763
|
+
}, "strip", z.ZodTypeAny, {
|
|
16764
|
+
items: {
|
|
16765
|
+
id: string;
|
|
16766
|
+
props: Record<string, {
|
|
16767
|
+
value?: any;
|
|
16768
|
+
} & Record<string, any>>;
|
|
16769
|
+
linksTo?: {
|
|
16770
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16771
|
+
documentationItemId?: string | undefined;
|
|
16772
|
+
pageHeadingId?: string | undefined;
|
|
16773
|
+
url?: string | undefined;
|
|
16774
|
+
openInNewTab?: boolean | undefined;
|
|
16775
|
+
} | undefined;
|
|
16776
|
+
}[];
|
|
16777
|
+
packageId: string;
|
|
16778
|
+
indentLevel: number;
|
|
16779
|
+
variantId?: string | undefined;
|
|
16780
|
+
appearance?: {
|
|
16781
|
+
itemBackgroundColor?: {
|
|
16782
|
+
value: string;
|
|
16783
|
+
referencedTokenId?: string | undefined;
|
|
16784
|
+
} | undefined;
|
|
16785
|
+
numberOfColumns?: number | undefined;
|
|
16786
|
+
} | undefined;
|
|
16787
|
+
}, {
|
|
16788
|
+
items: {
|
|
16789
|
+
id: string;
|
|
16790
|
+
props: Record<string, {
|
|
16791
|
+
value?: any;
|
|
16792
|
+
} & Record<string, any>>;
|
|
16793
|
+
linksTo?: {
|
|
16794
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16795
|
+
documentationItemId?: string | undefined;
|
|
16796
|
+
pageHeadingId?: string | undefined;
|
|
16797
|
+
url?: string | undefined;
|
|
16798
|
+
openInNewTab?: boolean | undefined;
|
|
16799
|
+
} | undefined;
|
|
16800
|
+
}[];
|
|
16801
|
+
packageId: string;
|
|
16802
|
+
indentLevel: number;
|
|
16803
|
+
variantId?: string | undefined;
|
|
16804
|
+
appearance?: {
|
|
16805
|
+
itemBackgroundColor?: {
|
|
16806
|
+
value: string;
|
|
16807
|
+
referencedTokenId?: string | undefined;
|
|
16808
|
+
} | undefined;
|
|
16809
|
+
numberOfColumns?: number | undefined;
|
|
16810
|
+
} | undefined;
|
|
16811
|
+
}>;
|
|
16812
|
+
}, "strip", z.ZodTypeAny, {
|
|
16813
|
+
id: string;
|
|
16814
|
+
type: "Block";
|
|
16815
|
+
data: {
|
|
16816
|
+
items: {
|
|
16817
|
+
id: string;
|
|
16818
|
+
props: Record<string, {
|
|
16819
|
+
value?: any;
|
|
16820
|
+
} & Record<string, any>>;
|
|
16821
|
+
linksTo?: {
|
|
16822
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16823
|
+
documentationItemId?: string | undefined;
|
|
16824
|
+
pageHeadingId?: string | undefined;
|
|
16825
|
+
url?: string | undefined;
|
|
16826
|
+
openInNewTab?: boolean | undefined;
|
|
16827
|
+
} | undefined;
|
|
16828
|
+
}[];
|
|
16829
|
+
packageId: string;
|
|
16830
|
+
indentLevel: number;
|
|
16831
|
+
variantId?: string | undefined;
|
|
16832
|
+
appearance?: {
|
|
16833
|
+
itemBackgroundColor?: {
|
|
16834
|
+
value: string;
|
|
16835
|
+
referencedTokenId?: string | undefined;
|
|
16836
|
+
} | undefined;
|
|
16837
|
+
numberOfColumns?: number | undefined;
|
|
16838
|
+
} | undefined;
|
|
16839
|
+
};
|
|
16840
|
+
}, {
|
|
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
|
+
}>, "many">;
|
|
16869
|
+
}, "strip", z.ZodTypeAny, {
|
|
16870
|
+
id: string;
|
|
16871
|
+
blocks: {
|
|
16872
|
+
id: string;
|
|
16873
|
+
type: "Block";
|
|
16874
|
+
data: {
|
|
16875
|
+
items: {
|
|
16876
|
+
id: string;
|
|
16877
|
+
props: Record<string, {
|
|
16878
|
+
value?: any;
|
|
16879
|
+
} & Record<string, any>>;
|
|
16880
|
+
linksTo?: {
|
|
16881
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16882
|
+
documentationItemId?: string | undefined;
|
|
16883
|
+
pageHeadingId?: string | undefined;
|
|
16884
|
+
url?: string | undefined;
|
|
16885
|
+
openInNewTab?: boolean | undefined;
|
|
16886
|
+
} | undefined;
|
|
16887
|
+
}[];
|
|
16888
|
+
packageId: string;
|
|
16889
|
+
indentLevel: number;
|
|
16890
|
+
variantId?: string | undefined;
|
|
16891
|
+
appearance?: {
|
|
16892
|
+
itemBackgroundColor?: {
|
|
16893
|
+
value: string;
|
|
16894
|
+
referencedTokenId?: string | undefined;
|
|
16895
|
+
} | undefined;
|
|
16896
|
+
numberOfColumns?: number | undefined;
|
|
16897
|
+
} | undefined;
|
|
16898
|
+
};
|
|
16899
|
+
}[];
|
|
16900
|
+
}, {
|
|
16901
|
+
id: string;
|
|
16902
|
+
blocks: {
|
|
16903
|
+
id: string;
|
|
16904
|
+
type: "Block";
|
|
16905
|
+
data: {
|
|
16906
|
+
items: {
|
|
16907
|
+
id: string;
|
|
16908
|
+
props: Record<string, {
|
|
16909
|
+
value?: any;
|
|
16910
|
+
} & Record<string, any>>;
|
|
16911
|
+
linksTo?: {
|
|
16912
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16913
|
+
documentationItemId?: string | undefined;
|
|
16914
|
+
pageHeadingId?: string | undefined;
|
|
16915
|
+
url?: string | undefined;
|
|
16916
|
+
openInNewTab?: boolean | undefined;
|
|
16917
|
+
} | undefined;
|
|
16918
|
+
}[];
|
|
16919
|
+
packageId: string;
|
|
16920
|
+
indentLevel: number;
|
|
16921
|
+
variantId?: string | undefined;
|
|
16922
|
+
appearance?: {
|
|
16923
|
+
itemBackgroundColor?: {
|
|
16924
|
+
value: string;
|
|
16925
|
+
referencedTokenId?: string | undefined;
|
|
16926
|
+
} | undefined;
|
|
16927
|
+
numberOfColumns?: number | undefined;
|
|
16928
|
+
} | undefined;
|
|
16929
|
+
};
|
|
16930
|
+
}[];
|
|
16931
|
+
}>, "many">;
|
|
16932
|
+
}, "strip", z.ZodTypeAny, {
|
|
16933
|
+
id: string;
|
|
16934
|
+
title: string;
|
|
16935
|
+
columns: {
|
|
16936
|
+
id: string;
|
|
16937
|
+
blocks: {
|
|
16938
|
+
id: string;
|
|
16939
|
+
type: "Block";
|
|
16940
|
+
data: {
|
|
16941
|
+
items: {
|
|
16942
|
+
id: string;
|
|
16943
|
+
props: Record<string, {
|
|
16944
|
+
value?: any;
|
|
16945
|
+
} & Record<string, any>>;
|
|
16946
|
+
linksTo?: {
|
|
16947
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16948
|
+
documentationItemId?: string | undefined;
|
|
16949
|
+
pageHeadingId?: string | undefined;
|
|
16950
|
+
url?: string | undefined;
|
|
16951
|
+
openInNewTab?: boolean | undefined;
|
|
16952
|
+
} | undefined;
|
|
16953
|
+
}[];
|
|
16954
|
+
packageId: string;
|
|
16955
|
+
indentLevel: number;
|
|
16956
|
+
variantId?: string | undefined;
|
|
16957
|
+
appearance?: {
|
|
16958
|
+
itemBackgroundColor?: {
|
|
16959
|
+
value: string;
|
|
16960
|
+
referencedTokenId?: string | undefined;
|
|
16961
|
+
} | undefined;
|
|
16962
|
+
numberOfColumns?: number | undefined;
|
|
16963
|
+
} | undefined;
|
|
16964
|
+
};
|
|
16965
|
+
}[];
|
|
16966
|
+
}[];
|
|
16967
|
+
}, {
|
|
16968
|
+
id: string;
|
|
16969
|
+
title: string;
|
|
16970
|
+
columns: {
|
|
16971
|
+
id: string;
|
|
16972
|
+
blocks: {
|
|
16973
|
+
id: string;
|
|
16974
|
+
type: "Block";
|
|
16975
|
+
data: {
|
|
16976
|
+
items: {
|
|
16977
|
+
id: string;
|
|
16978
|
+
props: Record<string, {
|
|
16979
|
+
value?: any;
|
|
16980
|
+
} & Record<string, any>>;
|
|
16981
|
+
linksTo?: {
|
|
16982
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
16983
|
+
documentationItemId?: string | undefined;
|
|
16984
|
+
pageHeadingId?: string | undefined;
|
|
16985
|
+
url?: string | undefined;
|
|
16986
|
+
openInNewTab?: boolean | undefined;
|
|
16987
|
+
} | undefined;
|
|
16988
|
+
}[];
|
|
16989
|
+
packageId: string;
|
|
16990
|
+
indentLevel: number;
|
|
16991
|
+
variantId?: string | undefined;
|
|
16992
|
+
appearance?: {
|
|
16993
|
+
itemBackgroundColor?: {
|
|
16994
|
+
value: string;
|
|
16995
|
+
referencedTokenId?: string | undefined;
|
|
16996
|
+
} | undefined;
|
|
16997
|
+
numberOfColumns?: number | undefined;
|
|
16998
|
+
} | undefined;
|
|
16999
|
+
};
|
|
17000
|
+
}[];
|
|
17001
|
+
}[];
|
|
17002
|
+
}>;
|
|
17003
|
+
type PageSectionItemV2 = z.infer<typeof PageSectionItemV2>;
|
|
17004
|
+
declare const PageSectionPaddingV2: z.ZodObject<{
|
|
17005
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
17006
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
17007
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
17008
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
17009
|
+
}, "strip", z.ZodTypeAny, {
|
|
17010
|
+
top?: number | undefined;
|
|
17011
|
+
bottom?: number | undefined;
|
|
17012
|
+
left?: number | undefined;
|
|
17013
|
+
right?: number | undefined;
|
|
17014
|
+
}, {
|
|
17015
|
+
top?: number | undefined;
|
|
17016
|
+
bottom?: number | undefined;
|
|
17017
|
+
left?: number | undefined;
|
|
17018
|
+
right?: number | undefined;
|
|
17019
|
+
}>;
|
|
17020
|
+
type PageSectionPaddingV2 = z.infer<typeof PageSectionPaddingV2>;
|
|
17021
|
+
declare const PageSectionAppearanceV2: z.ZodObject<{
|
|
17022
|
+
expandToEdges: z.ZodBoolean;
|
|
17023
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
17024
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
17025
|
+
value: z.ZodString;
|
|
17026
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17027
|
+
}, "strip", z.ZodTypeAny, {
|
|
17028
|
+
value: string;
|
|
17029
|
+
referencedTokenId?: string | undefined;
|
|
17030
|
+
}, {
|
|
17031
|
+
value: string;
|
|
17032
|
+
referencedTokenId?: string | undefined;
|
|
17033
|
+
}>>;
|
|
17034
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
17035
|
+
value: z.ZodString;
|
|
17036
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17037
|
+
}, "strip", z.ZodTypeAny, {
|
|
17038
|
+
value: string;
|
|
17039
|
+
referencedTokenId?: string | undefined;
|
|
17040
|
+
}, {
|
|
17041
|
+
value: string;
|
|
17042
|
+
referencedTokenId?: string | undefined;
|
|
17043
|
+
}>>;
|
|
17044
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
17045
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
17046
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
17047
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
17048
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
17049
|
+
}, "strip", z.ZodTypeAny, {
|
|
17050
|
+
top?: number | undefined;
|
|
17051
|
+
bottom?: number | undefined;
|
|
17052
|
+
left?: number | undefined;
|
|
17053
|
+
right?: number | undefined;
|
|
17054
|
+
}, {
|
|
17055
|
+
top?: number | undefined;
|
|
17056
|
+
bottom?: number | undefined;
|
|
17057
|
+
left?: number | undefined;
|
|
17058
|
+
right?: number | undefined;
|
|
17059
|
+
}>>;
|
|
17060
|
+
}, "strip", z.ZodTypeAny, {
|
|
17061
|
+
expandToEdges: boolean;
|
|
17062
|
+
contentExpandToEdges: boolean;
|
|
17063
|
+
backgroundColor?: {
|
|
17064
|
+
value: string;
|
|
17065
|
+
referencedTokenId?: string | undefined;
|
|
17066
|
+
} | undefined;
|
|
17067
|
+
foregroundColor?: {
|
|
17068
|
+
value: string;
|
|
17069
|
+
referencedTokenId?: string | undefined;
|
|
17070
|
+
} | undefined;
|
|
17071
|
+
padding?: {
|
|
17072
|
+
top?: number | undefined;
|
|
17073
|
+
bottom?: number | undefined;
|
|
17074
|
+
left?: number | undefined;
|
|
17075
|
+
right?: number | undefined;
|
|
17076
|
+
} | undefined;
|
|
17077
|
+
}, {
|
|
17078
|
+
expandToEdges: boolean;
|
|
17079
|
+
contentExpandToEdges: boolean;
|
|
17080
|
+
backgroundColor?: {
|
|
17081
|
+
value: string;
|
|
17082
|
+
referencedTokenId?: string | undefined;
|
|
17083
|
+
} | undefined;
|
|
17084
|
+
foregroundColor?: {
|
|
17085
|
+
value: string;
|
|
17086
|
+
referencedTokenId?: string | undefined;
|
|
17087
|
+
} | undefined;
|
|
17088
|
+
padding?: {
|
|
17089
|
+
top?: number | undefined;
|
|
17090
|
+
bottom?: number | undefined;
|
|
17091
|
+
left?: number | undefined;
|
|
17092
|
+
right?: number | undefined;
|
|
17093
|
+
} | undefined;
|
|
17094
|
+
}>;
|
|
17095
|
+
type PageSectionAppearanceV2 = z.infer<typeof PageSectionAppearanceV2>;
|
|
17096
|
+
declare const PageSectionEditorModelV2: z.ZodObject<{
|
|
17097
|
+
id: z.ZodString;
|
|
17098
|
+
type: z.ZodLiteral<"Section">;
|
|
17099
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
17100
|
+
sectionType: z.ZodEnum<["Tabs"]>;
|
|
17101
|
+
appearance: z.ZodObject<{
|
|
17102
|
+
expandToEdges: z.ZodBoolean;
|
|
17103
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
17104
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
17105
|
+
value: z.ZodString;
|
|
17106
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17107
|
+
}, "strip", z.ZodTypeAny, {
|
|
17108
|
+
value: string;
|
|
17109
|
+
referencedTokenId?: string | undefined;
|
|
17110
|
+
}, {
|
|
17111
|
+
value: string;
|
|
17112
|
+
referencedTokenId?: string | undefined;
|
|
17113
|
+
}>>;
|
|
17114
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
17115
|
+
value: z.ZodString;
|
|
17116
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17117
|
+
}, "strip", z.ZodTypeAny, {
|
|
17118
|
+
value: string;
|
|
17119
|
+
referencedTokenId?: string | undefined;
|
|
17120
|
+
}, {
|
|
17121
|
+
value: string;
|
|
17122
|
+
referencedTokenId?: string | undefined;
|
|
17123
|
+
}>>;
|
|
17124
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
17125
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
17126
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
17127
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
17128
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
17129
|
+
}, "strip", z.ZodTypeAny, {
|
|
17130
|
+
top?: number | undefined;
|
|
17131
|
+
bottom?: number | undefined;
|
|
17132
|
+
left?: number | undefined;
|
|
17133
|
+
right?: number | undefined;
|
|
17134
|
+
}, {
|
|
17135
|
+
top?: number | undefined;
|
|
17136
|
+
bottom?: number | undefined;
|
|
17137
|
+
left?: number | undefined;
|
|
17138
|
+
right?: number | undefined;
|
|
17139
|
+
}>>;
|
|
17140
|
+
}, "strip", z.ZodTypeAny, {
|
|
17141
|
+
expandToEdges: boolean;
|
|
17142
|
+
contentExpandToEdges: boolean;
|
|
17143
|
+
backgroundColor?: {
|
|
17144
|
+
value: string;
|
|
17145
|
+
referencedTokenId?: string | undefined;
|
|
17146
|
+
} | undefined;
|
|
17147
|
+
foregroundColor?: {
|
|
17148
|
+
value: string;
|
|
17149
|
+
referencedTokenId?: string | undefined;
|
|
17150
|
+
} | undefined;
|
|
17151
|
+
padding?: {
|
|
17152
|
+
top?: number | undefined;
|
|
17153
|
+
bottom?: number | undefined;
|
|
17154
|
+
left?: number | undefined;
|
|
17155
|
+
right?: number | undefined;
|
|
17156
|
+
} | undefined;
|
|
17157
|
+
}, {
|
|
17158
|
+
expandToEdges: boolean;
|
|
17159
|
+
contentExpandToEdges: boolean;
|
|
17160
|
+
backgroundColor?: {
|
|
17161
|
+
value: string;
|
|
17162
|
+
referencedTokenId?: string | undefined;
|
|
17163
|
+
} | undefined;
|
|
17164
|
+
foregroundColor?: {
|
|
17165
|
+
value: string;
|
|
17166
|
+
referencedTokenId?: string | undefined;
|
|
17167
|
+
} | undefined;
|
|
17168
|
+
padding?: {
|
|
17169
|
+
top?: number | undefined;
|
|
17170
|
+
bottom?: number | undefined;
|
|
17171
|
+
left?: number | undefined;
|
|
17172
|
+
right?: number | undefined;
|
|
17173
|
+
} | undefined;
|
|
17174
|
+
}>;
|
|
17175
|
+
items: z.ZodArray<z.ZodObject<{
|
|
17176
|
+
id: z.ZodString;
|
|
17177
|
+
title: z.ZodString;
|
|
17178
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
17179
|
+
id: z.ZodString;
|
|
17180
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
17181
|
+
id: z.ZodString;
|
|
17182
|
+
type: z.ZodLiteral<"Block">;
|
|
17183
|
+
data: z.ZodObject<{
|
|
17184
|
+
packageId: z.ZodString;
|
|
17185
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
17186
|
+
indentLevel: z.ZodNumber;
|
|
17187
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
17188
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
17189
|
+
value: z.ZodString;
|
|
17190
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
17191
|
+
}, "strip", z.ZodTypeAny, {
|
|
17192
|
+
value: string;
|
|
17193
|
+
referencedTokenId?: string | undefined;
|
|
17194
|
+
}, {
|
|
17195
|
+
value: string;
|
|
17196
|
+
referencedTokenId?: string | undefined;
|
|
17197
|
+
}>>;
|
|
17198
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
17199
|
+
}, "strip", z.ZodTypeAny, {
|
|
17200
|
+
itemBackgroundColor?: {
|
|
17201
|
+
value: string;
|
|
17202
|
+
referencedTokenId?: string | undefined;
|
|
17203
|
+
} | undefined;
|
|
17204
|
+
numberOfColumns?: number | undefined;
|
|
17205
|
+
}, {
|
|
17206
|
+
itemBackgroundColor?: {
|
|
17207
|
+
value: string;
|
|
17208
|
+
referencedTokenId?: string | undefined;
|
|
17209
|
+
} | undefined;
|
|
17210
|
+
numberOfColumns?: number | undefined;
|
|
17211
|
+
}>>;
|
|
17212
|
+
items: z.ZodArray<z.ZodObject<{
|
|
17213
|
+
id: z.ZodString;
|
|
17214
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
17215
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
17216
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
17217
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
17218
|
+
url: z.ZodOptional<z.ZodString>;
|
|
17219
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
17220
|
+
}, "strip", z.ZodTypeAny, {
|
|
17221
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17222
|
+
documentationItemId?: string | undefined;
|
|
17223
|
+
pageHeadingId?: string | undefined;
|
|
17224
|
+
url?: string | undefined;
|
|
17225
|
+
openInNewTab?: boolean | undefined;
|
|
17226
|
+
}, {
|
|
17227
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17228
|
+
documentationItemId?: string | undefined;
|
|
17229
|
+
pageHeadingId?: string | undefined;
|
|
17230
|
+
url?: string | undefined;
|
|
17231
|
+
openInNewTab?: boolean | undefined;
|
|
17232
|
+
}>>;
|
|
17233
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
17234
|
+
value: z.ZodAny;
|
|
17235
|
+
}, "strip", z.ZodTypeAny, {
|
|
17236
|
+
value?: any;
|
|
17237
|
+
}, {
|
|
17238
|
+
value?: any;
|
|
17239
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
17240
|
+
}, "strip", z.ZodTypeAny, {
|
|
17241
|
+
id: string;
|
|
17242
|
+
props: Record<string, {
|
|
17243
|
+
value?: any;
|
|
17244
|
+
} & Record<string, any>>;
|
|
17245
|
+
linksTo?: {
|
|
17246
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17247
|
+
documentationItemId?: string | undefined;
|
|
17248
|
+
pageHeadingId?: string | undefined;
|
|
17249
|
+
url?: string | undefined;
|
|
17250
|
+
openInNewTab?: boolean | undefined;
|
|
17251
|
+
} | undefined;
|
|
17252
|
+
}, {
|
|
17253
|
+
id: string;
|
|
17254
|
+
props: Record<string, {
|
|
17255
|
+
value?: any;
|
|
17256
|
+
} & Record<string, any>>;
|
|
17257
|
+
linksTo?: {
|
|
17258
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17259
|
+
documentationItemId?: string | undefined;
|
|
17260
|
+
pageHeadingId?: string | undefined;
|
|
17261
|
+
url?: string | undefined;
|
|
17262
|
+
openInNewTab?: boolean | undefined;
|
|
17263
|
+
} | undefined;
|
|
17264
|
+
}>, "many">;
|
|
17265
|
+
}, "strip", z.ZodTypeAny, {
|
|
17266
|
+
items: {
|
|
17267
|
+
id: string;
|
|
17268
|
+
props: Record<string, {
|
|
17269
|
+
value?: any;
|
|
17270
|
+
} & Record<string, any>>;
|
|
17271
|
+
linksTo?: {
|
|
17272
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17273
|
+
documentationItemId?: string | undefined;
|
|
17274
|
+
pageHeadingId?: string | undefined;
|
|
17275
|
+
url?: string | undefined;
|
|
17276
|
+
openInNewTab?: boolean | undefined;
|
|
17277
|
+
} | undefined;
|
|
17278
|
+
}[];
|
|
17279
|
+
packageId: string;
|
|
17280
|
+
indentLevel: number;
|
|
17281
|
+
variantId?: string | undefined;
|
|
17282
|
+
appearance?: {
|
|
17283
|
+
itemBackgroundColor?: {
|
|
17284
|
+
value: string;
|
|
17285
|
+
referencedTokenId?: string | undefined;
|
|
17286
|
+
} | undefined;
|
|
17287
|
+
numberOfColumns?: number | undefined;
|
|
17288
|
+
} | undefined;
|
|
17289
|
+
}, {
|
|
17290
|
+
items: {
|
|
17291
|
+
id: string;
|
|
17292
|
+
props: Record<string, {
|
|
17293
|
+
value?: any;
|
|
17294
|
+
} & Record<string, any>>;
|
|
17295
|
+
linksTo?: {
|
|
17296
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17297
|
+
documentationItemId?: string | undefined;
|
|
17298
|
+
pageHeadingId?: string | undefined;
|
|
17299
|
+
url?: string | undefined;
|
|
17300
|
+
openInNewTab?: boolean | undefined;
|
|
17301
|
+
} | undefined;
|
|
17302
|
+
}[];
|
|
17303
|
+
packageId: string;
|
|
17304
|
+
indentLevel: number;
|
|
17305
|
+
variantId?: string | undefined;
|
|
17306
|
+
appearance?: {
|
|
17307
|
+
itemBackgroundColor?: {
|
|
17308
|
+
value: string;
|
|
17309
|
+
referencedTokenId?: string | undefined;
|
|
17310
|
+
} | undefined;
|
|
17311
|
+
numberOfColumns?: number | undefined;
|
|
17312
|
+
} | undefined;
|
|
17313
|
+
}>;
|
|
17314
|
+
}, "strip", z.ZodTypeAny, {
|
|
17315
|
+
id: string;
|
|
17316
|
+
type: "Block";
|
|
17317
|
+
data: {
|
|
17318
|
+
items: {
|
|
17319
|
+
id: string;
|
|
17320
|
+
props: Record<string, {
|
|
17321
|
+
value?: any;
|
|
17322
|
+
} & Record<string, any>>;
|
|
17323
|
+
linksTo?: {
|
|
17324
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17325
|
+
documentationItemId?: string | undefined;
|
|
17326
|
+
pageHeadingId?: string | undefined;
|
|
17327
|
+
url?: string | undefined;
|
|
17328
|
+
openInNewTab?: boolean | undefined;
|
|
17329
|
+
} | undefined;
|
|
17330
|
+
}[];
|
|
17331
|
+
packageId: string;
|
|
17332
|
+
indentLevel: number;
|
|
17333
|
+
variantId?: string | undefined;
|
|
17334
|
+
appearance?: {
|
|
17335
|
+
itemBackgroundColor?: {
|
|
17336
|
+
value: string;
|
|
17337
|
+
referencedTokenId?: string | undefined;
|
|
17338
|
+
} | undefined;
|
|
17339
|
+
numberOfColumns?: number | undefined;
|
|
17340
|
+
} | undefined;
|
|
17341
|
+
};
|
|
17342
|
+
}, {
|
|
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
|
+
}>, "many">;
|
|
17371
|
+
}, "strip", z.ZodTypeAny, {
|
|
17372
|
+
id: string;
|
|
17373
|
+
blocks: {
|
|
17374
|
+
id: string;
|
|
17375
|
+
type: "Block";
|
|
17376
|
+
data: {
|
|
17377
|
+
items: {
|
|
17378
|
+
id: string;
|
|
17379
|
+
props: Record<string, {
|
|
17380
|
+
value?: any;
|
|
17381
|
+
} & Record<string, any>>;
|
|
17382
|
+
linksTo?: {
|
|
17383
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17384
|
+
documentationItemId?: string | undefined;
|
|
17385
|
+
pageHeadingId?: string | undefined;
|
|
17386
|
+
url?: string | undefined;
|
|
17387
|
+
openInNewTab?: boolean | undefined;
|
|
17388
|
+
} | undefined;
|
|
17389
|
+
}[];
|
|
17390
|
+
packageId: string;
|
|
17391
|
+
indentLevel: number;
|
|
17392
|
+
variantId?: string | undefined;
|
|
17393
|
+
appearance?: {
|
|
17394
|
+
itemBackgroundColor?: {
|
|
17395
|
+
value: string;
|
|
17396
|
+
referencedTokenId?: string | undefined;
|
|
17397
|
+
} | undefined;
|
|
17398
|
+
numberOfColumns?: number | undefined;
|
|
17399
|
+
} | undefined;
|
|
17400
|
+
};
|
|
17401
|
+
}[];
|
|
17402
|
+
}, {
|
|
17403
|
+
id: string;
|
|
17404
|
+
blocks: {
|
|
17405
|
+
id: string;
|
|
17406
|
+
type: "Block";
|
|
17407
|
+
data: {
|
|
17408
|
+
items: {
|
|
17409
|
+
id: string;
|
|
17410
|
+
props: Record<string, {
|
|
17411
|
+
value?: any;
|
|
17412
|
+
} & Record<string, any>>;
|
|
17413
|
+
linksTo?: {
|
|
17414
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17415
|
+
documentationItemId?: string | undefined;
|
|
17416
|
+
pageHeadingId?: string | undefined;
|
|
17417
|
+
url?: string | undefined;
|
|
17418
|
+
openInNewTab?: boolean | undefined;
|
|
17419
|
+
} | undefined;
|
|
17420
|
+
}[];
|
|
17421
|
+
packageId: string;
|
|
17422
|
+
indentLevel: number;
|
|
17423
|
+
variantId?: string | undefined;
|
|
17424
|
+
appearance?: {
|
|
17425
|
+
itemBackgroundColor?: {
|
|
17426
|
+
value: string;
|
|
17427
|
+
referencedTokenId?: string | undefined;
|
|
17428
|
+
} | undefined;
|
|
17429
|
+
numberOfColumns?: number | undefined;
|
|
17430
|
+
} | undefined;
|
|
17431
|
+
};
|
|
17432
|
+
}[];
|
|
17433
|
+
}>, "many">;
|
|
17434
|
+
}, "strip", z.ZodTypeAny, {
|
|
17435
|
+
id: string;
|
|
17436
|
+
title: string;
|
|
17437
|
+
columns: {
|
|
17438
|
+
id: string;
|
|
17439
|
+
blocks: {
|
|
17440
|
+
id: string;
|
|
17441
|
+
type: "Block";
|
|
17442
|
+
data: {
|
|
17443
|
+
items: {
|
|
17444
|
+
id: string;
|
|
17445
|
+
props: Record<string, {
|
|
17446
|
+
value?: any;
|
|
17447
|
+
} & Record<string, any>>;
|
|
17448
|
+
linksTo?: {
|
|
17449
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17450
|
+
documentationItemId?: string | undefined;
|
|
17451
|
+
pageHeadingId?: string | undefined;
|
|
17452
|
+
url?: string | undefined;
|
|
17453
|
+
openInNewTab?: boolean | undefined;
|
|
17454
|
+
} | undefined;
|
|
17455
|
+
}[];
|
|
17456
|
+
packageId: string;
|
|
17457
|
+
indentLevel: number;
|
|
17458
|
+
variantId?: string | undefined;
|
|
17459
|
+
appearance?: {
|
|
17460
|
+
itemBackgroundColor?: {
|
|
17461
|
+
value: string;
|
|
17462
|
+
referencedTokenId?: string | undefined;
|
|
17463
|
+
} | undefined;
|
|
17464
|
+
numberOfColumns?: number | undefined;
|
|
17465
|
+
} | undefined;
|
|
17466
|
+
};
|
|
17467
|
+
}[];
|
|
17468
|
+
}[];
|
|
17469
|
+
}, {
|
|
17470
|
+
id: string;
|
|
17471
|
+
title: string;
|
|
17472
|
+
columns: {
|
|
17473
|
+
id: string;
|
|
17474
|
+
blocks: {
|
|
17475
|
+
id: string;
|
|
17476
|
+
type: "Block";
|
|
17477
|
+
data: {
|
|
17478
|
+
items: {
|
|
17479
|
+
id: string;
|
|
17480
|
+
props: Record<string, {
|
|
17481
|
+
value?: any;
|
|
17482
|
+
} & Record<string, any>>;
|
|
17483
|
+
linksTo?: {
|
|
17484
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17485
|
+
documentationItemId?: string | undefined;
|
|
17486
|
+
pageHeadingId?: string | undefined;
|
|
17487
|
+
url?: string | undefined;
|
|
17488
|
+
openInNewTab?: boolean | undefined;
|
|
17489
|
+
} | undefined;
|
|
17490
|
+
}[];
|
|
17491
|
+
packageId: string;
|
|
17492
|
+
indentLevel: number;
|
|
17493
|
+
variantId?: string | undefined;
|
|
17494
|
+
appearance?: {
|
|
17495
|
+
itemBackgroundColor?: {
|
|
17496
|
+
value: string;
|
|
17497
|
+
referencedTokenId?: string | undefined;
|
|
17498
|
+
} | undefined;
|
|
17499
|
+
numberOfColumns?: number | undefined;
|
|
17500
|
+
} | undefined;
|
|
17501
|
+
};
|
|
17502
|
+
}[];
|
|
17503
|
+
}[];
|
|
17504
|
+
}>, "many">;
|
|
17505
|
+
}, "strip", z.ZodTypeAny, {
|
|
17506
|
+
id: string;
|
|
17507
|
+
type: "Section";
|
|
17508
|
+
items: {
|
|
17509
|
+
id: string;
|
|
17510
|
+
title: string;
|
|
17511
|
+
columns: {
|
|
17512
|
+
id: string;
|
|
17513
|
+
blocks: {
|
|
17514
|
+
id: string;
|
|
17515
|
+
type: "Block";
|
|
17516
|
+
data: {
|
|
17517
|
+
items: {
|
|
17518
|
+
id: string;
|
|
17519
|
+
props: Record<string, {
|
|
17520
|
+
value?: any;
|
|
17521
|
+
} & Record<string, any>>;
|
|
17522
|
+
linksTo?: {
|
|
17523
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17524
|
+
documentationItemId?: string | undefined;
|
|
17525
|
+
pageHeadingId?: string | undefined;
|
|
17526
|
+
url?: string | undefined;
|
|
17527
|
+
openInNewTab?: boolean | undefined;
|
|
17528
|
+
} | undefined;
|
|
17529
|
+
}[];
|
|
17530
|
+
packageId: string;
|
|
17531
|
+
indentLevel: number;
|
|
17532
|
+
variantId?: string | undefined;
|
|
17533
|
+
appearance?: {
|
|
17534
|
+
itemBackgroundColor?: {
|
|
17535
|
+
value: string;
|
|
17536
|
+
referencedTokenId?: string | undefined;
|
|
17537
|
+
} | undefined;
|
|
17538
|
+
numberOfColumns?: number | undefined;
|
|
17539
|
+
} | undefined;
|
|
17540
|
+
};
|
|
17541
|
+
}[];
|
|
17542
|
+
}[];
|
|
17543
|
+
}[];
|
|
17544
|
+
appearance: {
|
|
17545
|
+
expandToEdges: boolean;
|
|
17546
|
+
contentExpandToEdges: boolean;
|
|
17547
|
+
backgroundColor?: {
|
|
17548
|
+
value: string;
|
|
17549
|
+
referencedTokenId?: string | undefined;
|
|
17550
|
+
} | undefined;
|
|
17551
|
+
foregroundColor?: {
|
|
17552
|
+
value: string;
|
|
17553
|
+
referencedTokenId?: string | undefined;
|
|
17554
|
+
} | undefined;
|
|
17555
|
+
padding?: {
|
|
17556
|
+
top?: number | undefined;
|
|
17557
|
+
bottom?: number | undefined;
|
|
17558
|
+
left?: number | undefined;
|
|
17559
|
+
right?: number | undefined;
|
|
17560
|
+
} | undefined;
|
|
17561
|
+
};
|
|
17562
|
+
sectionType: "Tabs";
|
|
17563
|
+
variantId?: string | undefined;
|
|
17564
|
+
}, {
|
|
17565
|
+
id: string;
|
|
17566
|
+
type: "Section";
|
|
17567
|
+
items: {
|
|
17568
|
+
id: string;
|
|
17569
|
+
title: string;
|
|
17570
|
+
columns: {
|
|
17571
|
+
id: string;
|
|
17572
|
+
blocks: {
|
|
17573
|
+
id: string;
|
|
17574
|
+
type: "Block";
|
|
17575
|
+
data: {
|
|
17576
|
+
items: {
|
|
17577
|
+
id: string;
|
|
17578
|
+
props: Record<string, {
|
|
17579
|
+
value?: any;
|
|
17580
|
+
} & Record<string, any>>;
|
|
17581
|
+
linksTo?: {
|
|
17582
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
17583
|
+
documentationItemId?: string | undefined;
|
|
17584
|
+
pageHeadingId?: string | undefined;
|
|
17585
|
+
url?: string | undefined;
|
|
17586
|
+
openInNewTab?: boolean | undefined;
|
|
17587
|
+
} | undefined;
|
|
17588
|
+
}[];
|
|
17589
|
+
packageId: string;
|
|
17590
|
+
indentLevel: number;
|
|
17591
|
+
variantId?: string | undefined;
|
|
17592
|
+
appearance?: {
|
|
17593
|
+
itemBackgroundColor?: {
|
|
17594
|
+
value: string;
|
|
17595
|
+
referencedTokenId?: string | undefined;
|
|
17596
|
+
} | undefined;
|
|
17597
|
+
numberOfColumns?: number | undefined;
|
|
17598
|
+
} | undefined;
|
|
17599
|
+
};
|
|
17600
|
+
}[];
|
|
17601
|
+
}[];
|
|
17602
|
+
}[];
|
|
17603
|
+
appearance: {
|
|
17604
|
+
expandToEdges: boolean;
|
|
17605
|
+
contentExpandToEdges: boolean;
|
|
17606
|
+
backgroundColor?: {
|
|
17607
|
+
value: string;
|
|
17608
|
+
referencedTokenId?: string | undefined;
|
|
17609
|
+
} | undefined;
|
|
17610
|
+
foregroundColor?: {
|
|
17611
|
+
value: string;
|
|
17612
|
+
referencedTokenId?: string | undefined;
|
|
17613
|
+
} | undefined;
|
|
17614
|
+
padding?: {
|
|
17615
|
+
top?: number | undefined;
|
|
17616
|
+
bottom?: number | undefined;
|
|
17617
|
+
left?: number | undefined;
|
|
17618
|
+
right?: number | undefined;
|
|
17619
|
+
} | undefined;
|
|
17620
|
+
};
|
|
17621
|
+
sectionType: "Tabs";
|
|
17622
|
+
variantId?: string | undefined;
|
|
17623
|
+
}>;
|
|
17624
|
+
type PageSectionEditorModelV2 = z.infer<typeof PageSectionEditorModelV2>;
|
|
17625
|
+
|
|
16340
17626
|
declare const DocumentationItemConfigurationV1: z.ZodObject<{
|
|
16341
17627
|
showSidebar: z.ZodBoolean;
|
|
16342
17628
|
header: z.ZodObject<{
|
|
@@ -27160,6 +28446,7 @@ declare const PageBlockV2: z.ZodObject<{
|
|
|
27160
28446
|
type PageBlockV2 = z.infer<typeof PageBlockV2>;
|
|
27161
28447
|
declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
27162
28448
|
id: z.ZodString;
|
|
28449
|
+
type: z.ZodLiteral<"Block">;
|
|
27163
28450
|
data: z.ZodObject<{
|
|
27164
28451
|
packageId: z.ZodString;
|
|
27165
28452
|
variantId: z.ZodOptional<z.ZodString>;
|
|
@@ -27293,6 +28580,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
27293
28580
|
}>;
|
|
27294
28581
|
}, "strip", z.ZodTypeAny, {
|
|
27295
28582
|
id: string;
|
|
28583
|
+
type: "Block";
|
|
27296
28584
|
data: {
|
|
27297
28585
|
items: {
|
|
27298
28586
|
id: string;
|
|
@@ -27320,6 +28608,7 @@ declare const PageBlockEditorModelV2: z.ZodObject<{
|
|
|
27320
28608
|
};
|
|
27321
28609
|
}, {
|
|
27322
28610
|
id: string;
|
|
28611
|
+
type: "Block";
|
|
27323
28612
|
data: {
|
|
27324
28613
|
items: {
|
|
27325
28614
|
id: string;
|
|
@@ -43829,18 +45118,21 @@ declare const FigmaFileDownloadScope: z.ZodObject<{
|
|
|
43829
45118
|
currentVersion: z.ZodNullable<z.ZodLiteral<"__latest__">>;
|
|
43830
45119
|
publishedVersion: z.ZodNullable<z.ZodString>;
|
|
43831
45120
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45121
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
43832
45122
|
}, "strip", z.ZodTypeAny, {
|
|
43833
45123
|
components: boolean;
|
|
43834
45124
|
styles: boolean;
|
|
43835
45125
|
currentVersion: "__latest__" | null;
|
|
43836
45126
|
publishedVersion: string | null;
|
|
43837
45127
|
downloadChunkSize?: number | undefined;
|
|
45128
|
+
maxFileDepth?: number | undefined;
|
|
43838
45129
|
}, {
|
|
43839
45130
|
components: boolean;
|
|
43840
45131
|
styles: boolean;
|
|
43841
45132
|
currentVersion: "__latest__" | null;
|
|
43842
45133
|
publishedVersion: string | null;
|
|
43843
45134
|
downloadChunkSize?: number | undefined;
|
|
45135
|
+
maxFileDepth?: number | undefined;
|
|
43844
45136
|
}>;
|
|
43845
45137
|
type FigmaFileDownloadScope = z.infer<typeof FigmaFileDownloadScope>;
|
|
43846
45138
|
declare const FigmaFileAccessData: z.ZodObject<{
|
|
@@ -43893,6 +45185,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43893
45185
|
themePersistentId?: string | undefined;
|
|
43894
45186
|
}>;
|
|
43895
45187
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45188
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
43896
45189
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
43897
45190
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
43898
45191
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -43940,6 +45233,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43940
45233
|
}>>;
|
|
43941
45234
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
43942
45235
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45236
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
43943
45237
|
}, "strip", z.ZodTypeAny, {
|
|
43944
45238
|
type: "Figma";
|
|
43945
45239
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -43953,6 +45247,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43953
45247
|
fileId: string;
|
|
43954
45248
|
ownerId: string;
|
|
43955
45249
|
ownerName: string;
|
|
45250
|
+
requiresSync: boolean;
|
|
43956
45251
|
lastImportMetadata?: {
|
|
43957
45252
|
fileData?: {
|
|
43958
45253
|
lastUpdatedAt: Date;
|
|
@@ -43966,6 +45261,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43966
45261
|
} | undefined;
|
|
43967
45262
|
downloadChunkSize?: number | undefined;
|
|
43968
45263
|
figmaRenderChunkSize?: number | undefined;
|
|
45264
|
+
maxFileDepth?: number | undefined;
|
|
43969
45265
|
}, {
|
|
43970
45266
|
type: "Figma";
|
|
43971
45267
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -43979,6 +45275,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43979
45275
|
fileId: string;
|
|
43980
45276
|
ownerId: string;
|
|
43981
45277
|
ownerName: string;
|
|
45278
|
+
requiresSync?: boolean | undefined;
|
|
43982
45279
|
lastImportMetadata?: {
|
|
43983
45280
|
fileData?: {
|
|
43984
45281
|
lastUpdatedAt: Date;
|
|
@@ -43992,6 +45289,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
43992
45289
|
} | undefined;
|
|
43993
45290
|
downloadChunkSize?: number | undefined;
|
|
43994
45291
|
figmaRenderChunkSize?: number | undefined;
|
|
45292
|
+
maxFileDepth?: number | undefined;
|
|
43995
45293
|
}>;
|
|
43996
45294
|
}, "strip", z.ZodTypeAny, {
|
|
43997
45295
|
sourceId: string;
|
|
@@ -44008,6 +45306,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44008
45306
|
fileId: string;
|
|
44009
45307
|
ownerId: string;
|
|
44010
45308
|
ownerName: string;
|
|
45309
|
+
requiresSync: boolean;
|
|
44011
45310
|
lastImportMetadata?: {
|
|
44012
45311
|
fileData?: {
|
|
44013
45312
|
lastUpdatedAt: Date;
|
|
@@ -44021,6 +45320,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44021
45320
|
} | undefined;
|
|
44022
45321
|
downloadChunkSize?: number | undefined;
|
|
44023
45322
|
figmaRenderChunkSize?: number | undefined;
|
|
45323
|
+
maxFileDepth?: number | undefined;
|
|
44024
45324
|
};
|
|
44025
45325
|
}, {
|
|
44026
45326
|
sourceId: string;
|
|
@@ -44037,6 +45337,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44037
45337
|
fileId: string;
|
|
44038
45338
|
ownerId: string;
|
|
44039
45339
|
ownerName: string;
|
|
45340
|
+
requiresSync?: boolean | undefined;
|
|
44040
45341
|
lastImportMetadata?: {
|
|
44041
45342
|
fileData?: {
|
|
44042
45343
|
lastUpdatedAt: Date;
|
|
@@ -44050,6 +45351,7 @@ declare const ImportedFigmaSourceData: z.ZodObject<{
|
|
|
44050
45351
|
} | undefined;
|
|
44051
45352
|
downloadChunkSize?: number | undefined;
|
|
44052
45353
|
figmaRenderChunkSize?: number | undefined;
|
|
45354
|
+
maxFileDepth?: number | undefined;
|
|
44053
45355
|
};
|
|
44054
45356
|
}>;
|
|
44055
45357
|
type ImportedFigmaSourceData = z.infer<typeof ImportedFigmaSourceData>;
|
|
@@ -44100,6 +45402,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44100
45402
|
themePersistentId?: string | undefined;
|
|
44101
45403
|
}>;
|
|
44102
45404
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45405
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44103
45406
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44104
45407
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44105
45408
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44147,6 +45450,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44147
45450
|
}>>;
|
|
44148
45451
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44149
45452
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45453
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44150
45454
|
}, "strip", z.ZodTypeAny, {
|
|
44151
45455
|
type: "Figma";
|
|
44152
45456
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44160,6 +45464,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44160
45464
|
fileId: string;
|
|
44161
45465
|
ownerId: string;
|
|
44162
45466
|
ownerName: string;
|
|
45467
|
+
requiresSync: boolean;
|
|
44163
45468
|
lastImportMetadata?: {
|
|
44164
45469
|
fileData?: {
|
|
44165
45470
|
lastUpdatedAt: Date;
|
|
@@ -44173,6 +45478,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44173
45478
|
} | undefined;
|
|
44174
45479
|
downloadChunkSize?: number | undefined;
|
|
44175
45480
|
figmaRenderChunkSize?: number | undefined;
|
|
45481
|
+
maxFileDepth?: number | undefined;
|
|
44176
45482
|
}, {
|
|
44177
45483
|
type: "Figma";
|
|
44178
45484
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44186,6 +45492,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44186
45492
|
fileId: string;
|
|
44187
45493
|
ownerId: string;
|
|
44188
45494
|
ownerName: string;
|
|
45495
|
+
requiresSync?: boolean | undefined;
|
|
44189
45496
|
lastImportMetadata?: {
|
|
44190
45497
|
fileData?: {
|
|
44191
45498
|
lastUpdatedAt: Date;
|
|
@@ -44199,6 +45506,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44199
45506
|
} | undefined;
|
|
44200
45507
|
downloadChunkSize?: number | undefined;
|
|
44201
45508
|
figmaRenderChunkSize?: number | undefined;
|
|
45509
|
+
maxFileDepth?: number | undefined;
|
|
44202
45510
|
}>;
|
|
44203
45511
|
}, "strip", z.ZodTypeAny, {
|
|
44204
45512
|
sourceId: string;
|
|
@@ -44215,6 +45523,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44215
45523
|
fileId: string;
|
|
44216
45524
|
ownerId: string;
|
|
44217
45525
|
ownerName: string;
|
|
45526
|
+
requiresSync: boolean;
|
|
44218
45527
|
lastImportMetadata?: {
|
|
44219
45528
|
fileData?: {
|
|
44220
45529
|
lastUpdatedAt: Date;
|
|
@@ -44228,6 +45537,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44228
45537
|
} | undefined;
|
|
44229
45538
|
downloadChunkSize?: number | undefined;
|
|
44230
45539
|
figmaRenderChunkSize?: number | undefined;
|
|
45540
|
+
maxFileDepth?: number | undefined;
|
|
44231
45541
|
};
|
|
44232
45542
|
}, {
|
|
44233
45543
|
sourceId: string;
|
|
@@ -44244,6 +45554,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44244
45554
|
fileId: string;
|
|
44245
45555
|
ownerId: string;
|
|
44246
45556
|
ownerName: string;
|
|
45557
|
+
requiresSync?: boolean | undefined;
|
|
44247
45558
|
lastImportMetadata?: {
|
|
44248
45559
|
fileData?: {
|
|
44249
45560
|
lastUpdatedAt: Date;
|
|
@@ -44257,6 +45568,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44257
45568
|
} | undefined;
|
|
44258
45569
|
downloadChunkSize?: number | undefined;
|
|
44259
45570
|
figmaRenderChunkSize?: number | undefined;
|
|
45571
|
+
maxFileDepth?: number | undefined;
|
|
44260
45572
|
};
|
|
44261
45573
|
}>>;
|
|
44262
45574
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -44279,6 +45591,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44279
45591
|
fileId: string;
|
|
44280
45592
|
ownerId: string;
|
|
44281
45593
|
ownerName: string;
|
|
45594
|
+
requiresSync: boolean;
|
|
44282
45595
|
lastImportMetadata?: {
|
|
44283
45596
|
fileData?: {
|
|
44284
45597
|
lastUpdatedAt: Date;
|
|
@@ -44292,6 +45605,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44292
45605
|
} | undefined;
|
|
44293
45606
|
downloadChunkSize?: number | undefined;
|
|
44294
45607
|
figmaRenderChunkSize?: number | undefined;
|
|
45608
|
+
maxFileDepth?: number | undefined;
|
|
44295
45609
|
};
|
|
44296
45610
|
}>;
|
|
44297
45611
|
}, {
|
|
@@ -44314,6 +45628,7 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44314
45628
|
fileId: string;
|
|
44315
45629
|
ownerId: string;
|
|
44316
45630
|
ownerName: string;
|
|
45631
|
+
requiresSync?: boolean | undefined;
|
|
44317
45632
|
lastImportMetadata?: {
|
|
44318
45633
|
fileData?: {
|
|
44319
45634
|
lastUpdatedAt: Date;
|
|
@@ -44327,10 +45642,295 @@ declare const FigmaImportBaseContext: z.ZodObject<{
|
|
|
44327
45642
|
} | undefined;
|
|
44328
45643
|
downloadChunkSize?: number | undefined;
|
|
44329
45644
|
figmaRenderChunkSize?: number | undefined;
|
|
45645
|
+
maxFileDepth?: number | undefined;
|
|
44330
45646
|
};
|
|
44331
45647
|
}>;
|
|
44332
45648
|
}>;
|
|
44333
45649
|
type FigmaImportBaseContext = z.infer<typeof FigmaImportBaseContext>;
|
|
45650
|
+
declare const FigmaImportContextWithSourcesState: z.ZodObject<{
|
|
45651
|
+
designSystemId: z.ZodString;
|
|
45652
|
+
fileAccessByFileId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45653
|
+
accessToken: z.ZodString;
|
|
45654
|
+
}, "strip", z.ZodTypeAny, {
|
|
45655
|
+
accessToken: string;
|
|
45656
|
+
}, {
|
|
45657
|
+
accessToken: string;
|
|
45658
|
+
}>>;
|
|
45659
|
+
importedSourceDataBySourceId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
45660
|
+
sourceId: z.ZodString;
|
|
45661
|
+
figmaRemote: z.ZodObject<{
|
|
45662
|
+
type: z.ZodLiteral<"Figma">;
|
|
45663
|
+
fileId: z.ZodString;
|
|
45664
|
+
ownerId: z.ZodString;
|
|
45665
|
+
ownerName: z.ZodString;
|
|
45666
|
+
scope: z.ZodObject<{
|
|
45667
|
+
assets: z.ZodBoolean;
|
|
45668
|
+
components: z.ZodBoolean;
|
|
45669
|
+
documentationFrames: z.ZodBoolean;
|
|
45670
|
+
tokens: z.ZodBoolean;
|
|
45671
|
+
themePersistentId: z.ZodOptional<z.ZodString>;
|
|
45672
|
+
}, "strip", z.ZodTypeAny, {
|
|
45673
|
+
assets: boolean;
|
|
45674
|
+
components: boolean;
|
|
45675
|
+
documentationFrames: boolean;
|
|
45676
|
+
tokens: boolean;
|
|
45677
|
+
themePersistentId?: string | undefined;
|
|
45678
|
+
}, {
|
|
45679
|
+
assets: boolean;
|
|
45680
|
+
components: boolean;
|
|
45681
|
+
documentationFrames: boolean;
|
|
45682
|
+
tokens: boolean;
|
|
45683
|
+
themePersistentId?: string | undefined;
|
|
45684
|
+
}>;
|
|
45685
|
+
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45686
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
45687
|
+
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
45688
|
+
fileData: z.ZodOptional<z.ZodObject<{
|
|
45689
|
+
lastUpdatedAt: z.ZodDate;
|
|
45690
|
+
}, "strip", z.ZodTypeAny, {
|
|
45691
|
+
lastUpdatedAt: Date;
|
|
45692
|
+
}, {
|
|
45693
|
+
lastUpdatedAt: Date;
|
|
45694
|
+
}>>;
|
|
45695
|
+
importedPublishedVersion: z.ZodOptional<z.ZodObject<{
|
|
45696
|
+
id: z.ZodString;
|
|
45697
|
+
label: z.ZodOptional<z.ZodString>;
|
|
45698
|
+
description: z.ZodOptional<z.ZodString>;
|
|
45699
|
+
createdAt: z.ZodDate;
|
|
45700
|
+
}, "strip", z.ZodTypeAny, {
|
|
45701
|
+
id: string;
|
|
45702
|
+
createdAt: Date;
|
|
45703
|
+
label?: string | undefined;
|
|
45704
|
+
description?: string | undefined;
|
|
45705
|
+
}, {
|
|
45706
|
+
id: string;
|
|
45707
|
+
createdAt: Date;
|
|
45708
|
+
label?: string | undefined;
|
|
45709
|
+
description?: string | undefined;
|
|
45710
|
+
}>>;
|
|
45711
|
+
}, "strip", z.ZodTypeAny, {
|
|
45712
|
+
fileData?: {
|
|
45713
|
+
lastUpdatedAt: Date;
|
|
45714
|
+
} | undefined;
|
|
45715
|
+
importedPublishedVersion?: {
|
|
45716
|
+
id: string;
|
|
45717
|
+
createdAt: Date;
|
|
45718
|
+
label?: string | undefined;
|
|
45719
|
+
description?: string | undefined;
|
|
45720
|
+
} | undefined;
|
|
45721
|
+
}, {
|
|
45722
|
+
fileData?: {
|
|
45723
|
+
lastUpdatedAt: Date;
|
|
45724
|
+
} | undefined;
|
|
45725
|
+
importedPublishedVersion?: {
|
|
45726
|
+
id: string;
|
|
45727
|
+
createdAt: Date;
|
|
45728
|
+
label?: string | undefined;
|
|
45729
|
+
description?: string | undefined;
|
|
45730
|
+
} | undefined;
|
|
45731
|
+
}>>;
|
|
45732
|
+
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45733
|
+
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
45734
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
45735
|
+
}, "strip", z.ZodTypeAny, {
|
|
45736
|
+
type: "Figma";
|
|
45737
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45738
|
+
scope: {
|
|
45739
|
+
assets: boolean;
|
|
45740
|
+
components: boolean;
|
|
45741
|
+
documentationFrames: boolean;
|
|
45742
|
+
tokens: boolean;
|
|
45743
|
+
themePersistentId?: string | undefined;
|
|
45744
|
+
};
|
|
45745
|
+
fileId: string;
|
|
45746
|
+
ownerId: string;
|
|
45747
|
+
ownerName: string;
|
|
45748
|
+
requiresSync: boolean;
|
|
45749
|
+
lastImportMetadata?: {
|
|
45750
|
+
fileData?: {
|
|
45751
|
+
lastUpdatedAt: Date;
|
|
45752
|
+
} | undefined;
|
|
45753
|
+
importedPublishedVersion?: {
|
|
45754
|
+
id: string;
|
|
45755
|
+
createdAt: Date;
|
|
45756
|
+
label?: string | undefined;
|
|
45757
|
+
description?: string | undefined;
|
|
45758
|
+
} | undefined;
|
|
45759
|
+
} | undefined;
|
|
45760
|
+
downloadChunkSize?: number | undefined;
|
|
45761
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45762
|
+
maxFileDepth?: number | undefined;
|
|
45763
|
+
}, {
|
|
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
|
+
}, "strip", z.ZodTypeAny, {
|
|
45793
|
+
sourceId: string;
|
|
45794
|
+
figmaRemote: {
|
|
45795
|
+
type: "Figma";
|
|
45796
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45797
|
+
scope: {
|
|
45798
|
+
assets: boolean;
|
|
45799
|
+
components: boolean;
|
|
45800
|
+
documentationFrames: boolean;
|
|
45801
|
+
tokens: boolean;
|
|
45802
|
+
themePersistentId?: string | undefined;
|
|
45803
|
+
};
|
|
45804
|
+
fileId: string;
|
|
45805
|
+
ownerId: string;
|
|
45806
|
+
ownerName: string;
|
|
45807
|
+
requiresSync: boolean;
|
|
45808
|
+
lastImportMetadata?: {
|
|
45809
|
+
fileData?: {
|
|
45810
|
+
lastUpdatedAt: Date;
|
|
45811
|
+
} | undefined;
|
|
45812
|
+
importedPublishedVersion?: {
|
|
45813
|
+
id: string;
|
|
45814
|
+
createdAt: Date;
|
|
45815
|
+
label?: string | undefined;
|
|
45816
|
+
description?: string | undefined;
|
|
45817
|
+
} | undefined;
|
|
45818
|
+
} | undefined;
|
|
45819
|
+
downloadChunkSize?: number | undefined;
|
|
45820
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45821
|
+
maxFileDepth?: number | undefined;
|
|
45822
|
+
};
|
|
45823
|
+
}, {
|
|
45824
|
+
sourceId: string;
|
|
45825
|
+
figmaRemote: {
|
|
45826
|
+
type: "Figma";
|
|
45827
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45828
|
+
scope: {
|
|
45829
|
+
assets: boolean;
|
|
45830
|
+
components: boolean;
|
|
45831
|
+
documentationFrames: boolean;
|
|
45832
|
+
tokens: boolean;
|
|
45833
|
+
themePersistentId?: string | undefined;
|
|
45834
|
+
};
|
|
45835
|
+
fileId: string;
|
|
45836
|
+
ownerId: string;
|
|
45837
|
+
ownerName: string;
|
|
45838
|
+
requiresSync?: boolean | undefined;
|
|
45839
|
+
lastImportMetadata?: {
|
|
45840
|
+
fileData?: {
|
|
45841
|
+
lastUpdatedAt: Date;
|
|
45842
|
+
} | undefined;
|
|
45843
|
+
importedPublishedVersion?: {
|
|
45844
|
+
id: string;
|
|
45845
|
+
createdAt: Date;
|
|
45846
|
+
label?: string | undefined;
|
|
45847
|
+
description?: string | undefined;
|
|
45848
|
+
} | undefined;
|
|
45849
|
+
} | undefined;
|
|
45850
|
+
downloadChunkSize?: number | undefined;
|
|
45851
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45852
|
+
maxFileDepth?: number | undefined;
|
|
45853
|
+
};
|
|
45854
|
+
}>>;
|
|
45855
|
+
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
45856
|
+
}, "strip", z.ZodTypeAny, {
|
|
45857
|
+
designSystemId: string;
|
|
45858
|
+
fileAccessByFileId: Record<string, {
|
|
45859
|
+
accessToken: string;
|
|
45860
|
+
}>;
|
|
45861
|
+
importedSourceDataBySourceId: Record<string, {
|
|
45862
|
+
sourceId: string;
|
|
45863
|
+
figmaRemote: {
|
|
45864
|
+
type: "Figma";
|
|
45865
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45866
|
+
scope: {
|
|
45867
|
+
assets: boolean;
|
|
45868
|
+
components: boolean;
|
|
45869
|
+
documentationFrames: boolean;
|
|
45870
|
+
tokens: boolean;
|
|
45871
|
+
themePersistentId?: string | undefined;
|
|
45872
|
+
};
|
|
45873
|
+
fileId: string;
|
|
45874
|
+
ownerId: string;
|
|
45875
|
+
ownerName: string;
|
|
45876
|
+
requiresSync: boolean;
|
|
45877
|
+
lastImportMetadata?: {
|
|
45878
|
+
fileData?: {
|
|
45879
|
+
lastUpdatedAt: Date;
|
|
45880
|
+
} | undefined;
|
|
45881
|
+
importedPublishedVersion?: {
|
|
45882
|
+
id: string;
|
|
45883
|
+
createdAt: Date;
|
|
45884
|
+
label?: string | undefined;
|
|
45885
|
+
description?: string | undefined;
|
|
45886
|
+
} | undefined;
|
|
45887
|
+
} | undefined;
|
|
45888
|
+
downloadChunkSize?: number | undefined;
|
|
45889
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45890
|
+
maxFileDepth?: number | undefined;
|
|
45891
|
+
};
|
|
45892
|
+
}>;
|
|
45893
|
+
sourcesWithMissingAccess: string[];
|
|
45894
|
+
}, {
|
|
45895
|
+
designSystemId: string;
|
|
45896
|
+
fileAccessByFileId: Record<string, {
|
|
45897
|
+
accessToken: string;
|
|
45898
|
+
}>;
|
|
45899
|
+
importedSourceDataBySourceId: Record<string, {
|
|
45900
|
+
sourceId: string;
|
|
45901
|
+
figmaRemote: {
|
|
45902
|
+
type: "Figma";
|
|
45903
|
+
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
45904
|
+
scope: {
|
|
45905
|
+
assets: boolean;
|
|
45906
|
+
components: boolean;
|
|
45907
|
+
documentationFrames: boolean;
|
|
45908
|
+
tokens: boolean;
|
|
45909
|
+
themePersistentId?: string | undefined;
|
|
45910
|
+
};
|
|
45911
|
+
fileId: string;
|
|
45912
|
+
ownerId: string;
|
|
45913
|
+
ownerName: string;
|
|
45914
|
+
requiresSync?: boolean | undefined;
|
|
45915
|
+
lastImportMetadata?: {
|
|
45916
|
+
fileData?: {
|
|
45917
|
+
lastUpdatedAt: Date;
|
|
45918
|
+
} | undefined;
|
|
45919
|
+
importedPublishedVersion?: {
|
|
45920
|
+
id: string;
|
|
45921
|
+
createdAt: Date;
|
|
45922
|
+
label?: string | undefined;
|
|
45923
|
+
description?: string | undefined;
|
|
45924
|
+
} | undefined;
|
|
45925
|
+
} | undefined;
|
|
45926
|
+
downloadChunkSize?: number | undefined;
|
|
45927
|
+
figmaRenderChunkSize?: number | undefined;
|
|
45928
|
+
maxFileDepth?: number | undefined;
|
|
45929
|
+
};
|
|
45930
|
+
}>;
|
|
45931
|
+
sourcesWithMissingAccess?: string[] | undefined;
|
|
45932
|
+
}>;
|
|
45933
|
+
type FigmaImportContextWithSourcesState = z.infer<typeof FigmaImportContextWithSourcesState>;
|
|
44334
45934
|
declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
44335
45935
|
sourceId: z.ZodString;
|
|
44336
45936
|
figmaRemote: z.ZodObject<{
|
|
@@ -44358,6 +45958,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44358
45958
|
themePersistentId?: string | undefined;
|
|
44359
45959
|
}>;
|
|
44360
45960
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
45961
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44361
45962
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44362
45963
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44363
45964
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44405,6 +46006,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44405
46006
|
}>>;
|
|
44406
46007
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44407
46008
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46009
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44408
46010
|
}, "strip", z.ZodTypeAny, {
|
|
44409
46011
|
type: "Figma";
|
|
44410
46012
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44418,6 +46020,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44418
46020
|
fileId: string;
|
|
44419
46021
|
ownerId: string;
|
|
44420
46022
|
ownerName: string;
|
|
46023
|
+
requiresSync: boolean;
|
|
44421
46024
|
lastImportMetadata?: {
|
|
44422
46025
|
fileData?: {
|
|
44423
46026
|
lastUpdatedAt: Date;
|
|
@@ -44431,6 +46034,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44431
46034
|
} | undefined;
|
|
44432
46035
|
downloadChunkSize?: number | undefined;
|
|
44433
46036
|
figmaRenderChunkSize?: number | undefined;
|
|
46037
|
+
maxFileDepth?: number | undefined;
|
|
44434
46038
|
}, {
|
|
44435
46039
|
type: "Figma";
|
|
44436
46040
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44444,6 +46048,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44444
46048
|
fileId: string;
|
|
44445
46049
|
ownerId: string;
|
|
44446
46050
|
ownerName: string;
|
|
46051
|
+
requiresSync?: boolean | undefined;
|
|
44447
46052
|
lastImportMetadata?: {
|
|
44448
46053
|
fileData?: {
|
|
44449
46054
|
lastUpdatedAt: Date;
|
|
@@ -44457,6 +46062,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44457
46062
|
} | undefined;
|
|
44458
46063
|
downloadChunkSize?: number | undefined;
|
|
44459
46064
|
figmaRenderChunkSize?: number | undefined;
|
|
46065
|
+
maxFileDepth?: number | undefined;
|
|
44460
46066
|
}>;
|
|
44461
46067
|
importMetadata: z.ZodObject<{
|
|
44462
46068
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
@@ -44518,6 +46124,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44518
46124
|
fileId: string;
|
|
44519
46125
|
ownerId: string;
|
|
44520
46126
|
ownerName: string;
|
|
46127
|
+
requiresSync: boolean;
|
|
44521
46128
|
lastImportMetadata?: {
|
|
44522
46129
|
fileData?: {
|
|
44523
46130
|
lastUpdatedAt: Date;
|
|
@@ -44531,6 +46138,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44531
46138
|
} | undefined;
|
|
44532
46139
|
downloadChunkSize?: number | undefined;
|
|
44533
46140
|
figmaRenderChunkSize?: number | undefined;
|
|
46141
|
+
maxFileDepth?: number | undefined;
|
|
44534
46142
|
};
|
|
44535
46143
|
importMetadata: {
|
|
44536
46144
|
fileData?: {
|
|
@@ -44558,6 +46166,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44558
46166
|
fileId: string;
|
|
44559
46167
|
ownerId: string;
|
|
44560
46168
|
ownerName: string;
|
|
46169
|
+
requiresSync?: boolean | undefined;
|
|
44561
46170
|
lastImportMetadata?: {
|
|
44562
46171
|
fileData?: {
|
|
44563
46172
|
lastUpdatedAt: Date;
|
|
@@ -44571,6 +46180,7 @@ declare const ChangedImportedFigmaSourceData: z.ZodObject<{
|
|
|
44571
46180
|
} | undefined;
|
|
44572
46181
|
downloadChunkSize?: number | undefined;
|
|
44573
46182
|
figmaRenderChunkSize?: number | undefined;
|
|
46183
|
+
maxFileDepth?: number | undefined;
|
|
44574
46184
|
};
|
|
44575
46185
|
importMetadata: {
|
|
44576
46186
|
fileData?: {
|
|
@@ -44621,6 +46231,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44621
46231
|
themePersistentId?: string | undefined;
|
|
44622
46232
|
}>;
|
|
44623
46233
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
46234
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44624
46235
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44625
46236
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44626
46237
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44668,6 +46279,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44668
46279
|
}>>;
|
|
44669
46280
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44670
46281
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46282
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44671
46283
|
}, "strip", z.ZodTypeAny, {
|
|
44672
46284
|
type: "Figma";
|
|
44673
46285
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44681,6 +46293,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44681
46293
|
fileId: string;
|
|
44682
46294
|
ownerId: string;
|
|
44683
46295
|
ownerName: string;
|
|
46296
|
+
requiresSync: boolean;
|
|
44684
46297
|
lastImportMetadata?: {
|
|
44685
46298
|
fileData?: {
|
|
44686
46299
|
lastUpdatedAt: Date;
|
|
@@ -44694,6 +46307,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44694
46307
|
} | undefined;
|
|
44695
46308
|
downloadChunkSize?: number | undefined;
|
|
44696
46309
|
figmaRenderChunkSize?: number | undefined;
|
|
46310
|
+
maxFileDepth?: number | undefined;
|
|
44697
46311
|
}, {
|
|
44698
46312
|
type: "Figma";
|
|
44699
46313
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44707,6 +46321,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44707
46321
|
fileId: string;
|
|
44708
46322
|
ownerId: string;
|
|
44709
46323
|
ownerName: string;
|
|
46324
|
+
requiresSync?: boolean | undefined;
|
|
44710
46325
|
lastImportMetadata?: {
|
|
44711
46326
|
fileData?: {
|
|
44712
46327
|
lastUpdatedAt: Date;
|
|
@@ -44720,6 +46335,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44720
46335
|
} | undefined;
|
|
44721
46336
|
downloadChunkSize?: number | undefined;
|
|
44722
46337
|
figmaRenderChunkSize?: number | undefined;
|
|
46338
|
+
maxFileDepth?: number | undefined;
|
|
44723
46339
|
}>;
|
|
44724
46340
|
}, "strip", z.ZodTypeAny, {
|
|
44725
46341
|
sourceId: string;
|
|
@@ -44736,6 +46352,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44736
46352
|
fileId: string;
|
|
44737
46353
|
ownerId: string;
|
|
44738
46354
|
ownerName: string;
|
|
46355
|
+
requiresSync: boolean;
|
|
44739
46356
|
lastImportMetadata?: {
|
|
44740
46357
|
fileData?: {
|
|
44741
46358
|
lastUpdatedAt: Date;
|
|
@@ -44749,6 +46366,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44749
46366
|
} | undefined;
|
|
44750
46367
|
downloadChunkSize?: number | undefined;
|
|
44751
46368
|
figmaRenderChunkSize?: number | undefined;
|
|
46369
|
+
maxFileDepth?: number | undefined;
|
|
44752
46370
|
};
|
|
44753
46371
|
}, {
|
|
44754
46372
|
sourceId: string;
|
|
@@ -44765,6 +46383,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44765
46383
|
fileId: string;
|
|
44766
46384
|
ownerId: string;
|
|
44767
46385
|
ownerName: string;
|
|
46386
|
+
requiresSync?: boolean | undefined;
|
|
44768
46387
|
lastImportMetadata?: {
|
|
44769
46388
|
fileData?: {
|
|
44770
46389
|
lastUpdatedAt: Date;
|
|
@@ -44778,26 +46397,31 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44778
46397
|
} | undefined;
|
|
44779
46398
|
downloadChunkSize?: number | undefined;
|
|
44780
46399
|
figmaRenderChunkSize?: number | undefined;
|
|
46400
|
+
maxFileDepth?: number | undefined;
|
|
44781
46401
|
};
|
|
44782
46402
|
}>>;
|
|
46403
|
+
sourcesWithMissingAccess: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
44783
46404
|
fileDownloadScopesByFileId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
44784
46405
|
styles: z.ZodBoolean;
|
|
44785
46406
|
components: z.ZodBoolean;
|
|
44786
46407
|
currentVersion: z.ZodNullable<z.ZodLiteral<"__latest__">>;
|
|
44787
46408
|
publishedVersion: z.ZodNullable<z.ZodString>;
|
|
44788
46409
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46410
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44789
46411
|
}, "strip", z.ZodTypeAny, {
|
|
44790
46412
|
components: boolean;
|
|
44791
46413
|
styles: boolean;
|
|
44792
46414
|
currentVersion: "__latest__" | null;
|
|
44793
46415
|
publishedVersion: string | null;
|
|
44794
46416
|
downloadChunkSize?: number | undefined;
|
|
46417
|
+
maxFileDepth?: number | undefined;
|
|
44795
46418
|
}, {
|
|
44796
46419
|
components: boolean;
|
|
44797
46420
|
styles: boolean;
|
|
44798
46421
|
currentVersion: "__latest__" | null;
|
|
44799
46422
|
publishedVersion: string | null;
|
|
44800
46423
|
downloadChunkSize?: number | undefined;
|
|
46424
|
+
maxFileDepth?: number | undefined;
|
|
44801
46425
|
}>>;
|
|
44802
46426
|
changedImportedSourceDataBySourceId: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
44803
46427
|
sourceId: z.ZodString;
|
|
@@ -44826,6 +46450,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44826
46450
|
themePersistentId?: string | undefined;
|
|
44827
46451
|
}>;
|
|
44828
46452
|
state: z.ZodEnum<["Active", "MissingIntegration", "MissingFileAccess", "MissingFileOwner"]>;
|
|
46453
|
+
requiresSync: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean, boolean | undefined>;
|
|
44829
46454
|
lastImportMetadata: z.ZodOptional<z.ZodObject<{
|
|
44830
46455
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
44831
46456
|
lastUpdatedAt: z.ZodDate;
|
|
@@ -44873,6 +46498,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44873
46498
|
}>>;
|
|
44874
46499
|
downloadChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
44875
46500
|
figmaRenderChunkSize: z.ZodOptional<z.ZodNumber>;
|
|
46501
|
+
maxFileDepth: z.ZodOptional<z.ZodNumber>;
|
|
44876
46502
|
}, "strip", z.ZodTypeAny, {
|
|
44877
46503
|
type: "Figma";
|
|
44878
46504
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44886,6 +46512,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44886
46512
|
fileId: string;
|
|
44887
46513
|
ownerId: string;
|
|
44888
46514
|
ownerName: string;
|
|
46515
|
+
requiresSync: boolean;
|
|
44889
46516
|
lastImportMetadata?: {
|
|
44890
46517
|
fileData?: {
|
|
44891
46518
|
lastUpdatedAt: Date;
|
|
@@ -44899,6 +46526,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44899
46526
|
} | undefined;
|
|
44900
46527
|
downloadChunkSize?: number | undefined;
|
|
44901
46528
|
figmaRenderChunkSize?: number | undefined;
|
|
46529
|
+
maxFileDepth?: number | undefined;
|
|
44902
46530
|
}, {
|
|
44903
46531
|
type: "Figma";
|
|
44904
46532
|
state: "Active" | "MissingIntegration" | "MissingFileAccess" | "MissingFileOwner";
|
|
@@ -44912,6 +46540,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44912
46540
|
fileId: string;
|
|
44913
46541
|
ownerId: string;
|
|
44914
46542
|
ownerName: string;
|
|
46543
|
+
requiresSync?: boolean | undefined;
|
|
44915
46544
|
lastImportMetadata?: {
|
|
44916
46545
|
fileData?: {
|
|
44917
46546
|
lastUpdatedAt: Date;
|
|
@@ -44925,6 +46554,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44925
46554
|
} | undefined;
|
|
44926
46555
|
downloadChunkSize?: number | undefined;
|
|
44927
46556
|
figmaRenderChunkSize?: number | undefined;
|
|
46557
|
+
maxFileDepth?: number | undefined;
|
|
44928
46558
|
}>;
|
|
44929
46559
|
importMetadata: z.ZodObject<{
|
|
44930
46560
|
fileData: z.ZodOptional<z.ZodObject<{
|
|
@@ -44986,6 +46616,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44986
46616
|
fileId: string;
|
|
44987
46617
|
ownerId: string;
|
|
44988
46618
|
ownerName: string;
|
|
46619
|
+
requiresSync: boolean;
|
|
44989
46620
|
lastImportMetadata?: {
|
|
44990
46621
|
fileData?: {
|
|
44991
46622
|
lastUpdatedAt: Date;
|
|
@@ -44999,6 +46630,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
44999
46630
|
} | undefined;
|
|
45000
46631
|
downloadChunkSize?: number | undefined;
|
|
45001
46632
|
figmaRenderChunkSize?: number | undefined;
|
|
46633
|
+
maxFileDepth?: number | undefined;
|
|
45002
46634
|
};
|
|
45003
46635
|
importMetadata: {
|
|
45004
46636
|
fileData?: {
|
|
@@ -45026,6 +46658,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45026
46658
|
fileId: string;
|
|
45027
46659
|
ownerId: string;
|
|
45028
46660
|
ownerName: string;
|
|
46661
|
+
requiresSync?: boolean | undefined;
|
|
45029
46662
|
lastImportMetadata?: {
|
|
45030
46663
|
fileData?: {
|
|
45031
46664
|
lastUpdatedAt: Date;
|
|
@@ -45039,6 +46672,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45039
46672
|
} | undefined;
|
|
45040
46673
|
downloadChunkSize?: number | undefined;
|
|
45041
46674
|
figmaRenderChunkSize?: number | undefined;
|
|
46675
|
+
maxFileDepth?: number | undefined;
|
|
45042
46676
|
};
|
|
45043
46677
|
importMetadata: {
|
|
45044
46678
|
fileData?: {
|
|
@@ -45072,6 +46706,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45072
46706
|
fileId: string;
|
|
45073
46707
|
ownerId: string;
|
|
45074
46708
|
ownerName: string;
|
|
46709
|
+
requiresSync: boolean;
|
|
45075
46710
|
lastImportMetadata?: {
|
|
45076
46711
|
fileData?: {
|
|
45077
46712
|
lastUpdatedAt: Date;
|
|
@@ -45085,14 +46720,17 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45085
46720
|
} | undefined;
|
|
45086
46721
|
downloadChunkSize?: number | undefined;
|
|
45087
46722
|
figmaRenderChunkSize?: number | undefined;
|
|
46723
|
+
maxFileDepth?: number | undefined;
|
|
45088
46724
|
};
|
|
45089
46725
|
}>;
|
|
46726
|
+
sourcesWithMissingAccess: string[];
|
|
45090
46727
|
fileDownloadScopesByFileId: Record<string, {
|
|
45091
46728
|
components: boolean;
|
|
45092
46729
|
styles: boolean;
|
|
45093
46730
|
currentVersion: "__latest__" | null;
|
|
45094
46731
|
publishedVersion: string | null;
|
|
45095
46732
|
downloadChunkSize?: number | undefined;
|
|
46733
|
+
maxFileDepth?: number | undefined;
|
|
45096
46734
|
}>;
|
|
45097
46735
|
changedImportedSourceDataBySourceId: Record<string, {
|
|
45098
46736
|
sourceId: string;
|
|
@@ -45109,6 +46747,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45109
46747
|
fileId: string;
|
|
45110
46748
|
ownerId: string;
|
|
45111
46749
|
ownerName: string;
|
|
46750
|
+
requiresSync: boolean;
|
|
45112
46751
|
lastImportMetadata?: {
|
|
45113
46752
|
fileData?: {
|
|
45114
46753
|
lastUpdatedAt: Date;
|
|
@@ -45122,6 +46761,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45122
46761
|
} | undefined;
|
|
45123
46762
|
downloadChunkSize?: number | undefined;
|
|
45124
46763
|
figmaRenderChunkSize?: number | undefined;
|
|
46764
|
+
maxFileDepth?: number | undefined;
|
|
45125
46765
|
};
|
|
45126
46766
|
importMetadata: {
|
|
45127
46767
|
fileData?: {
|
|
@@ -45155,6 +46795,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45155
46795
|
fileId: string;
|
|
45156
46796
|
ownerId: string;
|
|
45157
46797
|
ownerName: string;
|
|
46798
|
+
requiresSync?: boolean | undefined;
|
|
45158
46799
|
lastImportMetadata?: {
|
|
45159
46800
|
fileData?: {
|
|
45160
46801
|
lastUpdatedAt: Date;
|
|
@@ -45168,6 +46809,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45168
46809
|
} | undefined;
|
|
45169
46810
|
downloadChunkSize?: number | undefined;
|
|
45170
46811
|
figmaRenderChunkSize?: number | undefined;
|
|
46812
|
+
maxFileDepth?: number | undefined;
|
|
45171
46813
|
};
|
|
45172
46814
|
}>;
|
|
45173
46815
|
fileDownloadScopesByFileId: Record<string, {
|
|
@@ -45176,6 +46818,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45176
46818
|
currentVersion: "__latest__" | null;
|
|
45177
46819
|
publishedVersion: string | null;
|
|
45178
46820
|
downloadChunkSize?: number | undefined;
|
|
46821
|
+
maxFileDepth?: number | undefined;
|
|
45179
46822
|
}>;
|
|
45180
46823
|
changedImportedSourceDataBySourceId: Record<string, {
|
|
45181
46824
|
sourceId: string;
|
|
@@ -45192,6 +46835,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45192
46835
|
fileId: string;
|
|
45193
46836
|
ownerId: string;
|
|
45194
46837
|
ownerName: string;
|
|
46838
|
+
requiresSync?: boolean | undefined;
|
|
45195
46839
|
lastImportMetadata?: {
|
|
45196
46840
|
fileData?: {
|
|
45197
46841
|
lastUpdatedAt: Date;
|
|
@@ -45205,6 +46849,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45205
46849
|
} | undefined;
|
|
45206
46850
|
downloadChunkSize?: number | undefined;
|
|
45207
46851
|
figmaRenderChunkSize?: number | undefined;
|
|
46852
|
+
maxFileDepth?: number | undefined;
|
|
45208
46853
|
};
|
|
45209
46854
|
importMetadata: {
|
|
45210
46855
|
fileData?: {
|
|
@@ -45218,6 +46863,7 @@ declare const FigmaImportContextWithDownloadScopes: z.ZodObject<{
|
|
|
45218
46863
|
} | undefined;
|
|
45219
46864
|
};
|
|
45220
46865
|
}>;
|
|
46866
|
+
sourcesWithMissingAccess?: string[] | undefined;
|
|
45221
46867
|
}>;
|
|
45222
46868
|
type FigmaImportContextWithDownloadScopes = z.infer<typeof FigmaImportContextWithDownloadScopes>;
|
|
45223
46869
|
|
|
@@ -100436,195 +102082,6 @@ declare const DocumentationPageRoom: z.ZodObject<{
|
|
|
100436
102082
|
type DocumentationPageRoom = z.infer<typeof DocumentationPageRoom>;
|
|
100437
102083
|
type CreateDocumentationPageRoom = DbCreateInputOmit<DocumentationPageRoom>;
|
|
100438
102084
|
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
102085
|
declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
100629
102086
|
page: z.ZodObject<{
|
|
100630
102087
|
id: z.ZodString;
|
|
@@ -104557,8 +106014,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104557
106014
|
} | null | undefined;
|
|
104558
106015
|
} | undefined;
|
|
104559
106016
|
}>;
|
|
104560
|
-
pageBlocks: z.ZodArray<z.ZodObject<{
|
|
106017
|
+
pageBlocks: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
104561
106018
|
id: z.ZodString;
|
|
106019
|
+
type: z.ZodLiteral<"Block">;
|
|
104562
106020
|
data: z.ZodObject<{
|
|
104563
106021
|
packageId: z.ZodString;
|
|
104564
106022
|
variantId: z.ZodOptional<z.ZodString>;
|
|
@@ -104692,6 +106150,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104692
106150
|
}>;
|
|
104693
106151
|
}, "strip", z.ZodTypeAny, {
|
|
104694
106152
|
id: string;
|
|
106153
|
+
type: "Block";
|
|
104695
106154
|
data: {
|
|
104696
106155
|
items: {
|
|
104697
106156
|
id: string;
|
|
@@ -104719,6 +106178,7 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104719
106178
|
};
|
|
104720
106179
|
}, {
|
|
104721
106180
|
id: string;
|
|
106181
|
+
type: "Block";
|
|
104722
106182
|
data: {
|
|
104723
106183
|
items: {
|
|
104724
106184
|
id: string;
|
|
@@ -104744,13 +106204,582 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
104744
106204
|
numberOfColumns?: number | undefined;
|
|
104745
106205
|
} | undefined;
|
|
104746
106206
|
};
|
|
104747
|
-
}>,
|
|
106207
|
+
}>, z.ZodObject<{
|
|
106208
|
+
id: z.ZodString;
|
|
106209
|
+
type: z.ZodLiteral<"Section">;
|
|
106210
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
106211
|
+
sectionType: z.ZodEnum<["Tabs"]>;
|
|
106212
|
+
appearance: z.ZodObject<{
|
|
106213
|
+
expandToEdges: z.ZodBoolean;
|
|
106214
|
+
contentExpandToEdges: z.ZodBoolean;
|
|
106215
|
+
backgroundColor: z.ZodOptional<z.ZodObject<{
|
|
106216
|
+
value: z.ZodString;
|
|
106217
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106218
|
+
}, "strip", z.ZodTypeAny, {
|
|
106219
|
+
value: string;
|
|
106220
|
+
referencedTokenId?: string | undefined;
|
|
106221
|
+
}, {
|
|
106222
|
+
value: string;
|
|
106223
|
+
referencedTokenId?: string | undefined;
|
|
106224
|
+
}>>;
|
|
106225
|
+
foregroundColor: z.ZodOptional<z.ZodObject<{
|
|
106226
|
+
value: z.ZodString;
|
|
106227
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106228
|
+
}, "strip", z.ZodTypeAny, {
|
|
106229
|
+
value: string;
|
|
106230
|
+
referencedTokenId?: string | undefined;
|
|
106231
|
+
}, {
|
|
106232
|
+
value: string;
|
|
106233
|
+
referencedTokenId?: string | undefined;
|
|
106234
|
+
}>>;
|
|
106235
|
+
padding: z.ZodOptional<z.ZodObject<{
|
|
106236
|
+
top: z.ZodOptional<z.ZodNumber>;
|
|
106237
|
+
bottom: z.ZodOptional<z.ZodNumber>;
|
|
106238
|
+
left: z.ZodOptional<z.ZodNumber>;
|
|
106239
|
+
right: z.ZodOptional<z.ZodNumber>;
|
|
106240
|
+
}, "strip", z.ZodTypeAny, {
|
|
106241
|
+
top?: number | undefined;
|
|
106242
|
+
bottom?: number | undefined;
|
|
106243
|
+
left?: number | undefined;
|
|
106244
|
+
right?: number | undefined;
|
|
106245
|
+
}, {
|
|
106246
|
+
top?: number | undefined;
|
|
106247
|
+
bottom?: number | undefined;
|
|
106248
|
+
left?: number | undefined;
|
|
106249
|
+
right?: number | undefined;
|
|
106250
|
+
}>>;
|
|
106251
|
+
}, "strip", z.ZodTypeAny, {
|
|
106252
|
+
expandToEdges: boolean;
|
|
106253
|
+
contentExpandToEdges: boolean;
|
|
106254
|
+
backgroundColor?: {
|
|
106255
|
+
value: string;
|
|
106256
|
+
referencedTokenId?: string | undefined;
|
|
106257
|
+
} | undefined;
|
|
106258
|
+
foregroundColor?: {
|
|
106259
|
+
value: string;
|
|
106260
|
+
referencedTokenId?: string | undefined;
|
|
106261
|
+
} | undefined;
|
|
106262
|
+
padding?: {
|
|
106263
|
+
top?: number | undefined;
|
|
106264
|
+
bottom?: number | undefined;
|
|
106265
|
+
left?: number | undefined;
|
|
106266
|
+
right?: number | undefined;
|
|
106267
|
+
} | undefined;
|
|
106268
|
+
}, {
|
|
106269
|
+
expandToEdges: boolean;
|
|
106270
|
+
contentExpandToEdges: boolean;
|
|
106271
|
+
backgroundColor?: {
|
|
106272
|
+
value: string;
|
|
106273
|
+
referencedTokenId?: string | undefined;
|
|
106274
|
+
} | undefined;
|
|
106275
|
+
foregroundColor?: {
|
|
106276
|
+
value: string;
|
|
106277
|
+
referencedTokenId?: string | undefined;
|
|
106278
|
+
} | undefined;
|
|
106279
|
+
padding?: {
|
|
106280
|
+
top?: number | undefined;
|
|
106281
|
+
bottom?: number | undefined;
|
|
106282
|
+
left?: number | undefined;
|
|
106283
|
+
right?: number | undefined;
|
|
106284
|
+
} | undefined;
|
|
106285
|
+
}>;
|
|
106286
|
+
items: z.ZodArray<z.ZodObject<{
|
|
106287
|
+
id: z.ZodString;
|
|
106288
|
+
title: z.ZodString;
|
|
106289
|
+
columns: z.ZodArray<z.ZodObject<{
|
|
106290
|
+
id: z.ZodString;
|
|
106291
|
+
blocks: z.ZodArray<z.ZodObject<{
|
|
106292
|
+
id: z.ZodString;
|
|
106293
|
+
type: z.ZodLiteral<"Block">;
|
|
106294
|
+
data: z.ZodObject<{
|
|
106295
|
+
packageId: z.ZodString;
|
|
106296
|
+
variantId: z.ZodOptional<z.ZodString>;
|
|
106297
|
+
indentLevel: z.ZodNumber;
|
|
106298
|
+
appearance: z.ZodOptional<z.ZodObject<{
|
|
106299
|
+
itemBackgroundColor: z.ZodOptional<z.ZodObject<{
|
|
106300
|
+
value: z.ZodString;
|
|
106301
|
+
referencedTokenId: z.ZodOptional<z.ZodString>;
|
|
106302
|
+
}, "strip", z.ZodTypeAny, {
|
|
106303
|
+
value: string;
|
|
106304
|
+
referencedTokenId?: string | undefined;
|
|
106305
|
+
}, {
|
|
106306
|
+
value: string;
|
|
106307
|
+
referencedTokenId?: string | undefined;
|
|
106308
|
+
}>>;
|
|
106309
|
+
numberOfColumns: z.ZodOptional<z.ZodNumber>;
|
|
106310
|
+
}, "strip", z.ZodTypeAny, {
|
|
106311
|
+
itemBackgroundColor?: {
|
|
106312
|
+
value: string;
|
|
106313
|
+
referencedTokenId?: string | undefined;
|
|
106314
|
+
} | undefined;
|
|
106315
|
+
numberOfColumns?: number | undefined;
|
|
106316
|
+
}, {
|
|
106317
|
+
itemBackgroundColor?: {
|
|
106318
|
+
value: string;
|
|
106319
|
+
referencedTokenId?: string | undefined;
|
|
106320
|
+
} | undefined;
|
|
106321
|
+
numberOfColumns?: number | undefined;
|
|
106322
|
+
}>>;
|
|
106323
|
+
items: z.ZodArray<z.ZodObject<{
|
|
106324
|
+
id: z.ZodString;
|
|
106325
|
+
linksTo: z.ZodOptional<z.ZodObject<{
|
|
106326
|
+
type: z.ZodEnum<["DocumentationItem", "PageHeading", "Url"]>;
|
|
106327
|
+
documentationItemId: z.ZodOptional<z.ZodString>;
|
|
106328
|
+
pageHeadingId: z.ZodOptional<z.ZodString>;
|
|
106329
|
+
url: z.ZodOptional<z.ZodString>;
|
|
106330
|
+
openInNewTab: z.ZodOptional<z.ZodBoolean>;
|
|
106331
|
+
}, "strip", z.ZodTypeAny, {
|
|
106332
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106333
|
+
documentationItemId?: string | undefined;
|
|
106334
|
+
pageHeadingId?: string | undefined;
|
|
106335
|
+
url?: string | undefined;
|
|
106336
|
+
openInNewTab?: boolean | undefined;
|
|
106337
|
+
}, {
|
|
106338
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106339
|
+
documentationItemId?: string | undefined;
|
|
106340
|
+
pageHeadingId?: string | undefined;
|
|
106341
|
+
url?: string | undefined;
|
|
106342
|
+
openInNewTab?: boolean | undefined;
|
|
106343
|
+
}>>;
|
|
106344
|
+
props: z.ZodRecord<z.ZodString, z.ZodIntersection<z.ZodObject<{
|
|
106345
|
+
value: z.ZodAny;
|
|
106346
|
+
}, "strip", z.ZodTypeAny, {
|
|
106347
|
+
value?: any;
|
|
106348
|
+
}, {
|
|
106349
|
+
value?: any;
|
|
106350
|
+
}>, z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
106351
|
+
}, "strip", z.ZodTypeAny, {
|
|
106352
|
+
id: string;
|
|
106353
|
+
props: Record<string, {
|
|
106354
|
+
value?: any;
|
|
106355
|
+
} & Record<string, any>>;
|
|
106356
|
+
linksTo?: {
|
|
106357
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106358
|
+
documentationItemId?: string | undefined;
|
|
106359
|
+
pageHeadingId?: string | undefined;
|
|
106360
|
+
url?: string | undefined;
|
|
106361
|
+
openInNewTab?: boolean | undefined;
|
|
106362
|
+
} | undefined;
|
|
106363
|
+
}, {
|
|
106364
|
+
id: string;
|
|
106365
|
+
props: Record<string, {
|
|
106366
|
+
value?: any;
|
|
106367
|
+
} & Record<string, any>>;
|
|
106368
|
+
linksTo?: {
|
|
106369
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106370
|
+
documentationItemId?: string | undefined;
|
|
106371
|
+
pageHeadingId?: string | undefined;
|
|
106372
|
+
url?: string | undefined;
|
|
106373
|
+
openInNewTab?: boolean | undefined;
|
|
106374
|
+
} | undefined;
|
|
106375
|
+
}>, "many">;
|
|
106376
|
+
}, "strip", z.ZodTypeAny, {
|
|
106377
|
+
items: {
|
|
106378
|
+
id: string;
|
|
106379
|
+
props: Record<string, {
|
|
106380
|
+
value?: any;
|
|
106381
|
+
} & Record<string, any>>;
|
|
106382
|
+
linksTo?: {
|
|
106383
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106384
|
+
documentationItemId?: string | undefined;
|
|
106385
|
+
pageHeadingId?: string | undefined;
|
|
106386
|
+
url?: string | undefined;
|
|
106387
|
+
openInNewTab?: boolean | undefined;
|
|
106388
|
+
} | undefined;
|
|
106389
|
+
}[];
|
|
106390
|
+
packageId: string;
|
|
106391
|
+
indentLevel: number;
|
|
106392
|
+
variantId?: string | undefined;
|
|
106393
|
+
appearance?: {
|
|
106394
|
+
itemBackgroundColor?: {
|
|
106395
|
+
value: string;
|
|
106396
|
+
referencedTokenId?: string | undefined;
|
|
106397
|
+
} | undefined;
|
|
106398
|
+
numberOfColumns?: number | undefined;
|
|
106399
|
+
} | undefined;
|
|
106400
|
+
}, {
|
|
106401
|
+
items: {
|
|
106402
|
+
id: string;
|
|
106403
|
+
props: Record<string, {
|
|
106404
|
+
value?: any;
|
|
106405
|
+
} & Record<string, any>>;
|
|
106406
|
+
linksTo?: {
|
|
106407
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106408
|
+
documentationItemId?: string | undefined;
|
|
106409
|
+
pageHeadingId?: string | undefined;
|
|
106410
|
+
url?: string | undefined;
|
|
106411
|
+
openInNewTab?: boolean | undefined;
|
|
106412
|
+
} | undefined;
|
|
106413
|
+
}[];
|
|
106414
|
+
packageId: string;
|
|
106415
|
+
indentLevel: number;
|
|
106416
|
+
variantId?: string | undefined;
|
|
106417
|
+
appearance?: {
|
|
106418
|
+
itemBackgroundColor?: {
|
|
106419
|
+
value: string;
|
|
106420
|
+
referencedTokenId?: string | undefined;
|
|
106421
|
+
} | undefined;
|
|
106422
|
+
numberOfColumns?: number | undefined;
|
|
106423
|
+
} | undefined;
|
|
106424
|
+
}>;
|
|
106425
|
+
}, "strip", z.ZodTypeAny, {
|
|
106426
|
+
id: string;
|
|
106427
|
+
type: "Block";
|
|
106428
|
+
data: {
|
|
106429
|
+
items: {
|
|
106430
|
+
id: string;
|
|
106431
|
+
props: Record<string, {
|
|
106432
|
+
value?: any;
|
|
106433
|
+
} & Record<string, any>>;
|
|
106434
|
+
linksTo?: {
|
|
106435
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106436
|
+
documentationItemId?: string | undefined;
|
|
106437
|
+
pageHeadingId?: string | undefined;
|
|
106438
|
+
url?: string | undefined;
|
|
106439
|
+
openInNewTab?: boolean | undefined;
|
|
106440
|
+
} | undefined;
|
|
106441
|
+
}[];
|
|
106442
|
+
packageId: string;
|
|
106443
|
+
indentLevel: number;
|
|
106444
|
+
variantId?: string | undefined;
|
|
106445
|
+
appearance?: {
|
|
106446
|
+
itemBackgroundColor?: {
|
|
106447
|
+
value: string;
|
|
106448
|
+
referencedTokenId?: string | undefined;
|
|
106449
|
+
} | undefined;
|
|
106450
|
+
numberOfColumns?: number | undefined;
|
|
106451
|
+
} | undefined;
|
|
106452
|
+
};
|
|
106453
|
+
}, {
|
|
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
|
+
}>, "many">;
|
|
106482
|
+
}, "strip", z.ZodTypeAny, {
|
|
106483
|
+
id: string;
|
|
106484
|
+
blocks: {
|
|
106485
|
+
id: string;
|
|
106486
|
+
type: "Block";
|
|
106487
|
+
data: {
|
|
106488
|
+
items: {
|
|
106489
|
+
id: string;
|
|
106490
|
+
props: Record<string, {
|
|
106491
|
+
value?: any;
|
|
106492
|
+
} & Record<string, any>>;
|
|
106493
|
+
linksTo?: {
|
|
106494
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106495
|
+
documentationItemId?: string | undefined;
|
|
106496
|
+
pageHeadingId?: string | undefined;
|
|
106497
|
+
url?: string | undefined;
|
|
106498
|
+
openInNewTab?: boolean | undefined;
|
|
106499
|
+
} | undefined;
|
|
106500
|
+
}[];
|
|
106501
|
+
packageId: string;
|
|
106502
|
+
indentLevel: number;
|
|
106503
|
+
variantId?: string | undefined;
|
|
106504
|
+
appearance?: {
|
|
106505
|
+
itemBackgroundColor?: {
|
|
106506
|
+
value: string;
|
|
106507
|
+
referencedTokenId?: string | undefined;
|
|
106508
|
+
} | undefined;
|
|
106509
|
+
numberOfColumns?: number | undefined;
|
|
106510
|
+
} | undefined;
|
|
106511
|
+
};
|
|
106512
|
+
}[];
|
|
106513
|
+
}, {
|
|
106514
|
+
id: string;
|
|
106515
|
+
blocks: {
|
|
106516
|
+
id: string;
|
|
106517
|
+
type: "Block";
|
|
106518
|
+
data: {
|
|
106519
|
+
items: {
|
|
106520
|
+
id: string;
|
|
106521
|
+
props: Record<string, {
|
|
106522
|
+
value?: any;
|
|
106523
|
+
} & Record<string, any>>;
|
|
106524
|
+
linksTo?: {
|
|
106525
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106526
|
+
documentationItemId?: string | undefined;
|
|
106527
|
+
pageHeadingId?: string | undefined;
|
|
106528
|
+
url?: string | undefined;
|
|
106529
|
+
openInNewTab?: boolean | undefined;
|
|
106530
|
+
} | undefined;
|
|
106531
|
+
}[];
|
|
106532
|
+
packageId: string;
|
|
106533
|
+
indentLevel: number;
|
|
106534
|
+
variantId?: string | undefined;
|
|
106535
|
+
appearance?: {
|
|
106536
|
+
itemBackgroundColor?: {
|
|
106537
|
+
value: string;
|
|
106538
|
+
referencedTokenId?: string | undefined;
|
|
106539
|
+
} | undefined;
|
|
106540
|
+
numberOfColumns?: number | undefined;
|
|
106541
|
+
} | undefined;
|
|
106542
|
+
};
|
|
106543
|
+
}[];
|
|
106544
|
+
}>, "many">;
|
|
106545
|
+
}, "strip", z.ZodTypeAny, {
|
|
106546
|
+
id: string;
|
|
106547
|
+
title: string;
|
|
106548
|
+
columns: {
|
|
106549
|
+
id: string;
|
|
106550
|
+
blocks: {
|
|
106551
|
+
id: string;
|
|
106552
|
+
type: "Block";
|
|
106553
|
+
data: {
|
|
106554
|
+
items: {
|
|
106555
|
+
id: string;
|
|
106556
|
+
props: Record<string, {
|
|
106557
|
+
value?: any;
|
|
106558
|
+
} & Record<string, any>>;
|
|
106559
|
+
linksTo?: {
|
|
106560
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106561
|
+
documentationItemId?: string | undefined;
|
|
106562
|
+
pageHeadingId?: string | undefined;
|
|
106563
|
+
url?: string | undefined;
|
|
106564
|
+
openInNewTab?: boolean | undefined;
|
|
106565
|
+
} | undefined;
|
|
106566
|
+
}[];
|
|
106567
|
+
packageId: string;
|
|
106568
|
+
indentLevel: number;
|
|
106569
|
+
variantId?: string | undefined;
|
|
106570
|
+
appearance?: {
|
|
106571
|
+
itemBackgroundColor?: {
|
|
106572
|
+
value: string;
|
|
106573
|
+
referencedTokenId?: string | undefined;
|
|
106574
|
+
} | undefined;
|
|
106575
|
+
numberOfColumns?: number | undefined;
|
|
106576
|
+
} | undefined;
|
|
106577
|
+
};
|
|
106578
|
+
}[];
|
|
106579
|
+
}[];
|
|
106580
|
+
}, {
|
|
106581
|
+
id: string;
|
|
106582
|
+
title: string;
|
|
106583
|
+
columns: {
|
|
106584
|
+
id: string;
|
|
106585
|
+
blocks: {
|
|
106586
|
+
id: string;
|
|
106587
|
+
type: "Block";
|
|
106588
|
+
data: {
|
|
106589
|
+
items: {
|
|
106590
|
+
id: string;
|
|
106591
|
+
props: Record<string, {
|
|
106592
|
+
value?: any;
|
|
106593
|
+
} & Record<string, any>>;
|
|
106594
|
+
linksTo?: {
|
|
106595
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106596
|
+
documentationItemId?: string | undefined;
|
|
106597
|
+
pageHeadingId?: string | undefined;
|
|
106598
|
+
url?: string | undefined;
|
|
106599
|
+
openInNewTab?: boolean | undefined;
|
|
106600
|
+
} | undefined;
|
|
106601
|
+
}[];
|
|
106602
|
+
packageId: string;
|
|
106603
|
+
indentLevel: number;
|
|
106604
|
+
variantId?: string | undefined;
|
|
106605
|
+
appearance?: {
|
|
106606
|
+
itemBackgroundColor?: {
|
|
106607
|
+
value: string;
|
|
106608
|
+
referencedTokenId?: string | undefined;
|
|
106609
|
+
} | undefined;
|
|
106610
|
+
numberOfColumns?: number | undefined;
|
|
106611
|
+
} | undefined;
|
|
106612
|
+
};
|
|
106613
|
+
}[];
|
|
106614
|
+
}[];
|
|
106615
|
+
}>, "many">;
|
|
106616
|
+
}, "strip", z.ZodTypeAny, {
|
|
106617
|
+
id: string;
|
|
106618
|
+
type: "Section";
|
|
106619
|
+
items: {
|
|
106620
|
+
id: string;
|
|
106621
|
+
title: string;
|
|
106622
|
+
columns: {
|
|
106623
|
+
id: string;
|
|
106624
|
+
blocks: {
|
|
106625
|
+
id: string;
|
|
106626
|
+
type: "Block";
|
|
106627
|
+
data: {
|
|
106628
|
+
items: {
|
|
106629
|
+
id: string;
|
|
106630
|
+
props: Record<string, {
|
|
106631
|
+
value?: any;
|
|
106632
|
+
} & Record<string, any>>;
|
|
106633
|
+
linksTo?: {
|
|
106634
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106635
|
+
documentationItemId?: string | undefined;
|
|
106636
|
+
pageHeadingId?: string | undefined;
|
|
106637
|
+
url?: string | undefined;
|
|
106638
|
+
openInNewTab?: boolean | undefined;
|
|
106639
|
+
} | undefined;
|
|
106640
|
+
}[];
|
|
106641
|
+
packageId: string;
|
|
106642
|
+
indentLevel: number;
|
|
106643
|
+
variantId?: string | undefined;
|
|
106644
|
+
appearance?: {
|
|
106645
|
+
itemBackgroundColor?: {
|
|
106646
|
+
value: string;
|
|
106647
|
+
referencedTokenId?: string | undefined;
|
|
106648
|
+
} | undefined;
|
|
106649
|
+
numberOfColumns?: number | undefined;
|
|
106650
|
+
} | undefined;
|
|
106651
|
+
};
|
|
106652
|
+
}[];
|
|
106653
|
+
}[];
|
|
106654
|
+
}[];
|
|
106655
|
+
appearance: {
|
|
106656
|
+
expandToEdges: boolean;
|
|
106657
|
+
contentExpandToEdges: boolean;
|
|
106658
|
+
backgroundColor?: {
|
|
106659
|
+
value: string;
|
|
106660
|
+
referencedTokenId?: string | undefined;
|
|
106661
|
+
} | undefined;
|
|
106662
|
+
foregroundColor?: {
|
|
106663
|
+
value: string;
|
|
106664
|
+
referencedTokenId?: string | undefined;
|
|
106665
|
+
} | undefined;
|
|
106666
|
+
padding?: {
|
|
106667
|
+
top?: number | undefined;
|
|
106668
|
+
bottom?: number | undefined;
|
|
106669
|
+
left?: number | undefined;
|
|
106670
|
+
right?: number | undefined;
|
|
106671
|
+
} | undefined;
|
|
106672
|
+
};
|
|
106673
|
+
sectionType: "Tabs";
|
|
106674
|
+
variantId?: string | undefined;
|
|
106675
|
+
}, {
|
|
106676
|
+
id: string;
|
|
106677
|
+
type: "Section";
|
|
106678
|
+
items: {
|
|
106679
|
+
id: string;
|
|
106680
|
+
title: string;
|
|
106681
|
+
columns: {
|
|
106682
|
+
id: string;
|
|
106683
|
+
blocks: {
|
|
106684
|
+
id: string;
|
|
106685
|
+
type: "Block";
|
|
106686
|
+
data: {
|
|
106687
|
+
items: {
|
|
106688
|
+
id: string;
|
|
106689
|
+
props: Record<string, {
|
|
106690
|
+
value?: any;
|
|
106691
|
+
} & Record<string, any>>;
|
|
106692
|
+
linksTo?: {
|
|
106693
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
106694
|
+
documentationItemId?: string | undefined;
|
|
106695
|
+
pageHeadingId?: string | undefined;
|
|
106696
|
+
url?: string | undefined;
|
|
106697
|
+
openInNewTab?: boolean | undefined;
|
|
106698
|
+
} | undefined;
|
|
106699
|
+
}[];
|
|
106700
|
+
packageId: string;
|
|
106701
|
+
indentLevel: number;
|
|
106702
|
+
variantId?: string | undefined;
|
|
106703
|
+
appearance?: {
|
|
106704
|
+
itemBackgroundColor?: {
|
|
106705
|
+
value: string;
|
|
106706
|
+
referencedTokenId?: string | undefined;
|
|
106707
|
+
} | undefined;
|
|
106708
|
+
numberOfColumns?: number | undefined;
|
|
106709
|
+
} | undefined;
|
|
106710
|
+
};
|
|
106711
|
+
}[];
|
|
106712
|
+
}[];
|
|
106713
|
+
}[];
|
|
106714
|
+
appearance: {
|
|
106715
|
+
expandToEdges: boolean;
|
|
106716
|
+
contentExpandToEdges: boolean;
|
|
106717
|
+
backgroundColor?: {
|
|
106718
|
+
value: string;
|
|
106719
|
+
referencedTokenId?: string | undefined;
|
|
106720
|
+
} | undefined;
|
|
106721
|
+
foregroundColor?: {
|
|
106722
|
+
value: string;
|
|
106723
|
+
referencedTokenId?: string | undefined;
|
|
106724
|
+
} | undefined;
|
|
106725
|
+
padding?: {
|
|
106726
|
+
top?: number | undefined;
|
|
106727
|
+
bottom?: number | undefined;
|
|
106728
|
+
left?: number | undefined;
|
|
106729
|
+
right?: number | undefined;
|
|
106730
|
+
} | undefined;
|
|
106731
|
+
};
|
|
106732
|
+
sectionType: "Tabs";
|
|
106733
|
+
variantId?: string | undefined;
|
|
106734
|
+
}>]>, "many">;
|
|
104748
106735
|
blockDefinitions: z.ZodArray<z.ZodObject<{
|
|
104749
106736
|
id: z.ZodString;
|
|
104750
106737
|
name: z.ZodString;
|
|
104751
106738
|
description: z.ZodString;
|
|
104752
106739
|
category: z.ZodEnum<["Text", "Layout", "Media", "Embed", "Figma", "Code", "Guidelines", "Tokens", "Components", "Assets", "Data", "Other"]>;
|
|
104753
|
-
icon: z.ZodOptional<z.ZodObject<{
|
|
106740
|
+
icon: z.ZodOptional<z.ZodObject<{
|
|
106741
|
+
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
106742
|
+
resource: z.ZodOptional<z.ZodObject<{
|
|
106743
|
+
url: z.ZodString;
|
|
106744
|
+
resourceId: z.ZodString;
|
|
106745
|
+
}, "strip", z.ZodTypeAny, {
|
|
106746
|
+
url: string;
|
|
106747
|
+
resourceId: string;
|
|
106748
|
+
}, {
|
|
106749
|
+
url: string;
|
|
106750
|
+
resourceId: string;
|
|
106751
|
+
}>>;
|
|
106752
|
+
figmaFile: z.ZodOptional<z.ZodObject<{
|
|
106753
|
+
sourceId: z.ZodString;
|
|
106754
|
+
frameReferenceId: z.ZodString;
|
|
106755
|
+
}, "strip", z.ZodTypeAny, {
|
|
106756
|
+
sourceId: string;
|
|
106757
|
+
frameReferenceId: string;
|
|
106758
|
+
}, {
|
|
106759
|
+
sourceId: string;
|
|
106760
|
+
frameReferenceId: string;
|
|
106761
|
+
}>>;
|
|
106762
|
+
}, "strip", z.ZodTypeAny, {
|
|
106763
|
+
type: "Resource" | "FigmaNode";
|
|
106764
|
+
resource?: {
|
|
106765
|
+
url: string;
|
|
106766
|
+
resourceId: string;
|
|
106767
|
+
} | undefined;
|
|
106768
|
+
figmaFile?: {
|
|
106769
|
+
sourceId: string;
|
|
106770
|
+
frameReferenceId: string;
|
|
106771
|
+
} | undefined;
|
|
106772
|
+
}, {
|
|
106773
|
+
type: "Resource" | "FigmaNode";
|
|
106774
|
+
resource?: {
|
|
106775
|
+
url: string;
|
|
106776
|
+
resourceId: string;
|
|
106777
|
+
} | undefined;
|
|
106778
|
+
figmaFile?: {
|
|
106779
|
+
sourceId: string;
|
|
106780
|
+
frameReferenceId: string;
|
|
106781
|
+
} | undefined;
|
|
106782
|
+
}>>;
|
|
104754
106783
|
documentationLink: z.ZodOptional<z.ZodString>;
|
|
104755
106784
|
searchKeywords: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
104756
106785
|
item: z.ZodObject<{
|
|
@@ -105068,7 +107097,17 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105068
107097
|
documentationLink?: string | undefined;
|
|
105069
107098
|
} | undefined;
|
|
105070
107099
|
};
|
|
105071
|
-
icon?: {
|
|
107100
|
+
icon?: {
|
|
107101
|
+
type: "Resource" | "FigmaNode";
|
|
107102
|
+
resource?: {
|
|
107103
|
+
url: string;
|
|
107104
|
+
resourceId: string;
|
|
107105
|
+
} | undefined;
|
|
107106
|
+
figmaFile?: {
|
|
107107
|
+
sourceId: string;
|
|
107108
|
+
frameReferenceId: string;
|
|
107109
|
+
} | undefined;
|
|
107110
|
+
} | undefined;
|
|
105072
107111
|
documentationLink?: string | undefined;
|
|
105073
107112
|
searchKeywords?: string[] | undefined;
|
|
105074
107113
|
appearance?: {
|
|
@@ -105136,7 +107175,17 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105136
107175
|
documentationLink?: string | undefined;
|
|
105137
107176
|
} | undefined;
|
|
105138
107177
|
};
|
|
105139
|
-
icon?: {
|
|
107178
|
+
icon?: {
|
|
107179
|
+
type: "Resource" | "FigmaNode";
|
|
107180
|
+
resource?: {
|
|
107181
|
+
url: string;
|
|
107182
|
+
resourceId: string;
|
|
107183
|
+
} | undefined;
|
|
107184
|
+
figmaFile?: {
|
|
107185
|
+
sourceId: string;
|
|
107186
|
+
frameReferenceId: string;
|
|
107187
|
+
} | undefined;
|
|
107188
|
+
} | undefined;
|
|
105140
107189
|
documentationLink?: string | undefined;
|
|
105141
107190
|
searchKeywords?: string[] | undefined;
|
|
105142
107191
|
appearance?: {
|
|
@@ -105246,8 +107295,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105246
107295
|
} | undefined;
|
|
105247
107296
|
} | undefined;
|
|
105248
107297
|
};
|
|
105249
|
-
pageBlocks: {
|
|
107298
|
+
pageBlocks: ({
|
|
105250
107299
|
id: string;
|
|
107300
|
+
type: "Block";
|
|
105251
107301
|
data: {
|
|
105252
107302
|
items: {
|
|
105253
107303
|
id: string;
|
|
@@ -105273,7 +107323,66 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105273
107323
|
numberOfColumns?: number | undefined;
|
|
105274
107324
|
} | undefined;
|
|
105275
107325
|
};
|
|
105276
|
-
}
|
|
107326
|
+
} | {
|
|
107327
|
+
id: string;
|
|
107328
|
+
type: "Section";
|
|
107329
|
+
items: {
|
|
107330
|
+
id: string;
|
|
107331
|
+
title: string;
|
|
107332
|
+
columns: {
|
|
107333
|
+
id: string;
|
|
107334
|
+
blocks: {
|
|
107335
|
+
id: string;
|
|
107336
|
+
type: "Block";
|
|
107337
|
+
data: {
|
|
107338
|
+
items: {
|
|
107339
|
+
id: string;
|
|
107340
|
+
props: Record<string, {
|
|
107341
|
+
value?: any;
|
|
107342
|
+
} & Record<string, any>>;
|
|
107343
|
+
linksTo?: {
|
|
107344
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
107345
|
+
documentationItemId?: string | undefined;
|
|
107346
|
+
pageHeadingId?: string | undefined;
|
|
107347
|
+
url?: string | undefined;
|
|
107348
|
+
openInNewTab?: boolean | undefined;
|
|
107349
|
+
} | undefined;
|
|
107350
|
+
}[];
|
|
107351
|
+
packageId: string;
|
|
107352
|
+
indentLevel: number;
|
|
107353
|
+
variantId?: string | undefined;
|
|
107354
|
+
appearance?: {
|
|
107355
|
+
itemBackgroundColor?: {
|
|
107356
|
+
value: string;
|
|
107357
|
+
referencedTokenId?: string | undefined;
|
|
107358
|
+
} | undefined;
|
|
107359
|
+
numberOfColumns?: number | undefined;
|
|
107360
|
+
} | undefined;
|
|
107361
|
+
};
|
|
107362
|
+
}[];
|
|
107363
|
+
}[];
|
|
107364
|
+
}[];
|
|
107365
|
+
appearance: {
|
|
107366
|
+
expandToEdges: boolean;
|
|
107367
|
+
contentExpandToEdges: boolean;
|
|
107368
|
+
backgroundColor?: {
|
|
107369
|
+
value: string;
|
|
107370
|
+
referencedTokenId?: string | undefined;
|
|
107371
|
+
} | undefined;
|
|
107372
|
+
foregroundColor?: {
|
|
107373
|
+
value: string;
|
|
107374
|
+
referencedTokenId?: string | undefined;
|
|
107375
|
+
} | undefined;
|
|
107376
|
+
padding?: {
|
|
107377
|
+
top?: number | undefined;
|
|
107378
|
+
bottom?: number | undefined;
|
|
107379
|
+
left?: number | undefined;
|
|
107380
|
+
right?: number | undefined;
|
|
107381
|
+
} | undefined;
|
|
107382
|
+
};
|
|
107383
|
+
sectionType: "Tabs";
|
|
107384
|
+
variantId?: string | undefined;
|
|
107385
|
+
})[];
|
|
105277
107386
|
blockDefinitions: {
|
|
105278
107387
|
id: string;
|
|
105279
107388
|
name: string;
|
|
@@ -105334,7 +107443,17 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105334
107443
|
documentationLink?: string | undefined;
|
|
105335
107444
|
} | undefined;
|
|
105336
107445
|
};
|
|
105337
|
-
icon?: {
|
|
107446
|
+
icon?: {
|
|
107447
|
+
type: "Resource" | "FigmaNode";
|
|
107448
|
+
resource?: {
|
|
107449
|
+
url: string;
|
|
107450
|
+
resourceId: string;
|
|
107451
|
+
} | undefined;
|
|
107452
|
+
figmaFile?: {
|
|
107453
|
+
sourceId: string;
|
|
107454
|
+
frameReferenceId: string;
|
|
107455
|
+
} | undefined;
|
|
107456
|
+
} | undefined;
|
|
105338
107457
|
documentationLink?: string | undefined;
|
|
105339
107458
|
searchKeywords?: string[] | undefined;
|
|
105340
107459
|
appearance?: {
|
|
@@ -105802,8 +107921,9 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105802
107921
|
} | null | undefined;
|
|
105803
107922
|
} | undefined;
|
|
105804
107923
|
};
|
|
105805
|
-
pageBlocks: {
|
|
107924
|
+
pageBlocks: ({
|
|
105806
107925
|
id: string;
|
|
107926
|
+
type: "Block";
|
|
105807
107927
|
data: {
|
|
105808
107928
|
items: {
|
|
105809
107929
|
id: string;
|
|
@@ -105829,7 +107949,66 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105829
107949
|
numberOfColumns?: number | undefined;
|
|
105830
107950
|
} | undefined;
|
|
105831
107951
|
};
|
|
105832
|
-
}
|
|
107952
|
+
} | {
|
|
107953
|
+
id: string;
|
|
107954
|
+
type: "Section";
|
|
107955
|
+
items: {
|
|
107956
|
+
id: string;
|
|
107957
|
+
title: string;
|
|
107958
|
+
columns: {
|
|
107959
|
+
id: string;
|
|
107960
|
+
blocks: {
|
|
107961
|
+
id: string;
|
|
107962
|
+
type: "Block";
|
|
107963
|
+
data: {
|
|
107964
|
+
items: {
|
|
107965
|
+
id: string;
|
|
107966
|
+
props: Record<string, {
|
|
107967
|
+
value?: any;
|
|
107968
|
+
} & Record<string, any>>;
|
|
107969
|
+
linksTo?: {
|
|
107970
|
+
type: "DocumentationItem" | "PageHeading" | "Url";
|
|
107971
|
+
documentationItemId?: string | undefined;
|
|
107972
|
+
pageHeadingId?: string | undefined;
|
|
107973
|
+
url?: string | undefined;
|
|
107974
|
+
openInNewTab?: boolean | undefined;
|
|
107975
|
+
} | undefined;
|
|
107976
|
+
}[];
|
|
107977
|
+
packageId: string;
|
|
107978
|
+
indentLevel: number;
|
|
107979
|
+
variantId?: string | undefined;
|
|
107980
|
+
appearance?: {
|
|
107981
|
+
itemBackgroundColor?: {
|
|
107982
|
+
value: string;
|
|
107983
|
+
referencedTokenId?: string | undefined;
|
|
107984
|
+
} | undefined;
|
|
107985
|
+
numberOfColumns?: number | undefined;
|
|
107986
|
+
} | undefined;
|
|
107987
|
+
};
|
|
107988
|
+
}[];
|
|
107989
|
+
}[];
|
|
107990
|
+
}[];
|
|
107991
|
+
appearance: {
|
|
107992
|
+
expandToEdges: boolean;
|
|
107993
|
+
contentExpandToEdges: boolean;
|
|
107994
|
+
backgroundColor?: {
|
|
107995
|
+
value: string;
|
|
107996
|
+
referencedTokenId?: string | undefined;
|
|
107997
|
+
} | undefined;
|
|
107998
|
+
foregroundColor?: {
|
|
107999
|
+
value: string;
|
|
108000
|
+
referencedTokenId?: string | undefined;
|
|
108001
|
+
} | undefined;
|
|
108002
|
+
padding?: {
|
|
108003
|
+
top?: number | undefined;
|
|
108004
|
+
bottom?: number | undefined;
|
|
108005
|
+
left?: number | undefined;
|
|
108006
|
+
right?: number | undefined;
|
|
108007
|
+
} | undefined;
|
|
108008
|
+
};
|
|
108009
|
+
sectionType: "Tabs";
|
|
108010
|
+
variantId?: string | undefined;
|
|
108011
|
+
})[];
|
|
105833
108012
|
blockDefinitions: {
|
|
105834
108013
|
id: string;
|
|
105835
108014
|
name: string;
|
|
@@ -105890,7 +108069,17 @@ declare const DocumentationPageRoomInitialState: z.ZodObject<{
|
|
|
105890
108069
|
documentationLink?: string | undefined;
|
|
105891
108070
|
} | undefined;
|
|
105892
108071
|
};
|
|
105893
|
-
icon?: {
|
|
108072
|
+
icon?: {
|
|
108073
|
+
type: "Resource" | "FigmaNode";
|
|
108074
|
+
resource?: {
|
|
108075
|
+
url: string;
|
|
108076
|
+
resourceId: string;
|
|
108077
|
+
} | undefined;
|
|
108078
|
+
figmaFile?: {
|
|
108079
|
+
sourceId: string;
|
|
108080
|
+
frameReferenceId: string;
|
|
108081
|
+
} | undefined;
|
|
108082
|
+
} | undefined;
|
|
105894
108083
|
documentationLink?: string | undefined;
|
|
105895
108084
|
searchKeywords?: string[] | undefined;
|
|
105896
108085
|
appearance?: {
|
|
@@ -106713,181 +108902,147 @@ type PersonalAccessTokenWithUser = {
|
|
|
106713
108902
|
};
|
|
106714
108903
|
|
|
106715
108904
|
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"]>;
|
|
108905
|
+
declare const NpmRegistryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
106718
108906
|
declare const NpmRegistryBasicAuthConfig: z.ZodObject<{
|
|
106719
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106720
108907
|
authType: z.ZodLiteral<"Basic">;
|
|
106721
108908
|
username: z.ZodString;
|
|
106722
108909
|
password: z.ZodString;
|
|
106723
108910
|
}, "strip", z.ZodTypeAny, {
|
|
106724
108911
|
password: string;
|
|
106725
108912
|
username: string;
|
|
106726
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106727
108913
|
authType: "Basic";
|
|
106728
108914
|
}, {
|
|
106729
108915
|
password: string;
|
|
106730
108916
|
username: string;
|
|
106731
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106732
108917
|
authType: "Basic";
|
|
106733
108918
|
}>;
|
|
106734
108919
|
declare const NpmRegistryBearerAuthConfig: z.ZodObject<{
|
|
106735
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106736
108920
|
authType: z.ZodLiteral<"Bearer">;
|
|
106737
108921
|
accessToken: z.ZodString;
|
|
106738
108922
|
}, "strip", z.ZodTypeAny, {
|
|
106739
108923
|
accessToken: string;
|
|
106740
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106741
108924
|
authType: "Bearer";
|
|
106742
108925
|
}, {
|
|
106743
108926
|
accessToken: string;
|
|
106744
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106745
108927
|
authType: "Bearer";
|
|
106746
108928
|
}>;
|
|
106747
108929
|
declare const NpmRegistryNoAuthConfig: z.ZodObject<{
|
|
106748
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106749
108930
|
authType: z.ZodLiteral<"None">;
|
|
106750
108931
|
}, "strip", z.ZodTypeAny, {
|
|
106751
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106752
108932
|
authType: "None";
|
|
106753
108933
|
}, {
|
|
106754
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106755
108934
|
authType: "None";
|
|
106756
108935
|
}>;
|
|
106757
108936
|
declare const NpmRegistrCustomAuthConfig: z.ZodObject<{
|
|
106758
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106759
108937
|
authType: z.ZodLiteral<"Custom">;
|
|
106760
108938
|
authHeaderName: z.ZodString;
|
|
106761
108939
|
authHeaderValue: z.ZodString;
|
|
106762
108940
|
}, "strip", z.ZodTypeAny, {
|
|
106763
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106764
108941
|
authType: "Custom";
|
|
106765
108942
|
authHeaderName: string;
|
|
106766
108943
|
authHeaderValue: string;
|
|
106767
108944
|
}, {
|
|
106768
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106769
108945
|
authType: "Custom";
|
|
106770
108946
|
authHeaderName: string;
|
|
106771
108947
|
authHeaderValue: string;
|
|
106772
108948
|
}>;
|
|
106773
108949
|
declare const NpmRegistryAuthConfig: z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
106774
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106775
108950
|
authType: z.ZodLiteral<"Basic">;
|
|
106776
108951
|
username: z.ZodString;
|
|
106777
108952
|
password: z.ZodString;
|
|
106778
108953
|
}, "strip", z.ZodTypeAny, {
|
|
106779
108954
|
password: string;
|
|
106780
108955
|
username: string;
|
|
106781
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106782
108956
|
authType: "Basic";
|
|
106783
108957
|
}, {
|
|
106784
108958
|
password: string;
|
|
106785
108959
|
username: string;
|
|
106786
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106787
108960
|
authType: "Basic";
|
|
106788
108961
|
}>, z.ZodObject<{
|
|
106789
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106790
108962
|
authType: z.ZodLiteral<"Bearer">;
|
|
106791
108963
|
accessToken: z.ZodString;
|
|
106792
108964
|
}, "strip", z.ZodTypeAny, {
|
|
106793
108965
|
accessToken: string;
|
|
106794
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106795
108966
|
authType: "Bearer";
|
|
106796
108967
|
}, {
|
|
106797
108968
|
accessToken: string;
|
|
106798
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106799
108969
|
authType: "Bearer";
|
|
106800
108970
|
}>, z.ZodObject<{
|
|
106801
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106802
108971
|
authType: z.ZodLiteral<"None">;
|
|
106803
108972
|
}, "strip", z.ZodTypeAny, {
|
|
106804
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106805
108973
|
authType: "None";
|
|
106806
108974
|
}, {
|
|
106807
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106808
108975
|
authType: "None";
|
|
106809
108976
|
}>, z.ZodObject<{
|
|
106810
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106811
108977
|
authType: z.ZodLiteral<"Custom">;
|
|
106812
108978
|
authHeaderName: z.ZodString;
|
|
106813
108979
|
authHeaderValue: z.ZodString;
|
|
106814
108980
|
}, "strip", z.ZodTypeAny, {
|
|
106815
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106816
108981
|
authType: "Custom";
|
|
106817
108982
|
authHeaderName: string;
|
|
106818
108983
|
authHeaderValue: string;
|
|
106819
108984
|
}, {
|
|
106820
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106821
108985
|
authType: "Custom";
|
|
106822
108986
|
authHeaderName: string;
|
|
106823
108987
|
authHeaderValue: string;
|
|
106824
108988
|
}>]>;
|
|
106825
108989
|
declare const NpmRegistryConfig: z.ZodIntersection<z.ZodObject<{
|
|
108990
|
+
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
106826
108991
|
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
106827
108992
|
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
106828
108993
|
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
106829
108994
|
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
106830
108995
|
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
106831
108996
|
}, "strip", z.ZodTypeAny, {
|
|
108997
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
106832
108998
|
enabledScopes: string[];
|
|
106833
108999
|
bypassProxy: boolean;
|
|
106834
109000
|
customRegistryUrl?: string | undefined;
|
|
106835
109001
|
npmProxyRegistryConfigId?: string | undefined;
|
|
106836
109002
|
npmProxyVersion?: number | undefined;
|
|
106837
109003
|
}, {
|
|
109004
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
106838
109005
|
enabledScopes: string[];
|
|
106839
109006
|
customRegistryUrl?: string | undefined;
|
|
106840
109007
|
bypassProxy?: boolean | undefined;
|
|
106841
109008
|
npmProxyRegistryConfigId?: string | undefined;
|
|
106842
109009
|
npmProxyVersion?: number | undefined;
|
|
106843
109010
|
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
106844
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom", "AzureDevOps"]>;
|
|
106845
109011
|
authType: z.ZodLiteral<"Basic">;
|
|
106846
109012
|
username: z.ZodString;
|
|
106847
109013
|
password: z.ZodString;
|
|
106848
109014
|
}, "strip", z.ZodTypeAny, {
|
|
106849
109015
|
password: string;
|
|
106850
109016
|
username: string;
|
|
106851
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106852
109017
|
authType: "Basic";
|
|
106853
109018
|
}, {
|
|
106854
109019
|
password: string;
|
|
106855
109020
|
username: string;
|
|
106856
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory" | "AzureDevOps";
|
|
106857
109021
|
authType: "Basic";
|
|
106858
109022
|
}>, z.ZodObject<{
|
|
106859
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106860
109023
|
authType: z.ZodLiteral<"Bearer">;
|
|
106861
109024
|
accessToken: z.ZodString;
|
|
106862
109025
|
}, "strip", z.ZodTypeAny, {
|
|
106863
109026
|
accessToken: string;
|
|
106864
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106865
109027
|
authType: "Bearer";
|
|
106866
109028
|
}, {
|
|
106867
109029
|
accessToken: string;
|
|
106868
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106869
109030
|
authType: "Bearer";
|
|
106870
109031
|
}>, z.ZodObject<{
|
|
106871
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106872
109032
|
authType: z.ZodLiteral<"None">;
|
|
106873
109033
|
}, "strip", z.ZodTypeAny, {
|
|
106874
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106875
109034
|
authType: "None";
|
|
106876
109035
|
}, {
|
|
106877
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106878
109036
|
authType: "None";
|
|
106879
109037
|
}>, z.ZodObject<{
|
|
106880
|
-
registryType: z.ZodEnum<["NPMJS", "GitHub", "Artifactory", "Custom"]>;
|
|
106881
109038
|
authType: z.ZodLiteral<"Custom">;
|
|
106882
109039
|
authHeaderName: z.ZodString;
|
|
106883
109040
|
authHeaderValue: z.ZodString;
|
|
106884
109041
|
}, "strip", z.ZodTypeAny, {
|
|
106885
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106886
109042
|
authType: "Custom";
|
|
106887
109043
|
authHeaderName: string;
|
|
106888
109044
|
authHeaderValue: string;
|
|
106889
109045
|
}, {
|
|
106890
|
-
registryType: "Custom" | "NPMJS" | "GitHub" | "Artifactory";
|
|
106891
109046
|
authType: "Custom";
|
|
106892
109047
|
authHeaderName: string;
|
|
106893
109048
|
authHeaderValue: string;
|
|
@@ -110452,4 +112607,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
110452
112607
|
}>;
|
|
110453
112608
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
110454
112609
|
|
|
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 };
|
|
112610
|
+
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 };
|