@supernova-studio/model 1.10.0 → 1.10.2
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 +2570 -1
- package/dist/index.d.ts +2570 -1
- package/dist/index.js +192 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +276 -85
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2373,6 +2373,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2373
2373
|
payload: z.ZodString;
|
|
2374
2374
|
createdAt: z.ZodDate;
|
|
2375
2375
|
updatedAt: z.ZodDate;
|
|
2376
|
+
opikSpanId: z.ZodOptional<z.ZodString>;
|
|
2376
2377
|
sender: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
2377
2378
|
type: z.ZodLiteral<"User">;
|
|
2378
2379
|
userId: z.ZodString;
|
|
@@ -2405,6 +2406,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2405
2406
|
type: "Agent";
|
|
2406
2407
|
persona: "Amy";
|
|
2407
2408
|
};
|
|
2409
|
+
opikSpanId?: string | undefined;
|
|
2408
2410
|
}, {
|
|
2409
2411
|
id: string;
|
|
2410
2412
|
createdAt: Date;
|
|
@@ -2418,6 +2420,7 @@ declare const ForgeChatMessage: z.ZodObject<{
|
|
|
2418
2420
|
type: "Agent";
|
|
2419
2421
|
persona: "Amy";
|
|
2420
2422
|
};
|
|
2423
|
+
opikSpanId?: string | undefined;
|
|
2421
2424
|
}>;
|
|
2422
2425
|
type ForgeChatMessage = z.infer<typeof ForgeChatMessage>;
|
|
2423
2426
|
|
|
@@ -162405,6 +162408,2572 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
162405
162408
|
}>;
|
|
162406
162409
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
|
162407
162410
|
|
|
162411
|
+
declare const ForgeAvatarBuilder: z.ZodObject<{
|
|
162412
|
+
headType: z.ZodString;
|
|
162413
|
+
hairType: z.ZodString;
|
|
162414
|
+
accessory1Type: z.ZodString;
|
|
162415
|
+
accessory2Type: z.ZodString;
|
|
162416
|
+
}, "strip", z.ZodTypeAny, {
|
|
162417
|
+
headType: string;
|
|
162418
|
+
hairType: string;
|
|
162419
|
+
accessory1Type: string;
|
|
162420
|
+
accessory2Type: string;
|
|
162421
|
+
}, {
|
|
162422
|
+
headType: string;
|
|
162423
|
+
hairType: string;
|
|
162424
|
+
accessory1Type: string;
|
|
162425
|
+
accessory2Type: string;
|
|
162426
|
+
}>;
|
|
162427
|
+
type ForgeAvatarBuilder = z.infer<typeof ForgeAvatarBuilder>;
|
|
162428
|
+
declare const ForgeAgent: z.ZodObject<{
|
|
162429
|
+
avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
162430
|
+
headType: z.ZodString;
|
|
162431
|
+
hairType: z.ZodString;
|
|
162432
|
+
accessory1Type: z.ZodString;
|
|
162433
|
+
accessory2Type: z.ZodString;
|
|
162434
|
+
}, "strip", z.ZodTypeAny, {
|
|
162435
|
+
headType: string;
|
|
162436
|
+
hairType: string;
|
|
162437
|
+
accessory1Type: string;
|
|
162438
|
+
accessory2Type: string;
|
|
162439
|
+
}, {
|
|
162440
|
+
headType: string;
|
|
162441
|
+
hairType: string;
|
|
162442
|
+
accessory1Type: string;
|
|
162443
|
+
accessory2Type: string;
|
|
162444
|
+
}>]>;
|
|
162445
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
162446
|
+
behavior: z.ZodEnum<["coder", "writer", "designer"]>;
|
|
162447
|
+
id: z.ZodString;
|
|
162448
|
+
name: z.ZodString;
|
|
162449
|
+
personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
|
|
162450
|
+
projectId: z.ZodString;
|
|
162451
|
+
}, "strip", z.ZodTypeAny, {
|
|
162452
|
+
avatar: string | {
|
|
162453
|
+
headType: string;
|
|
162454
|
+
hairType: string;
|
|
162455
|
+
accessory1Type: string;
|
|
162456
|
+
accessory2Type: string;
|
|
162457
|
+
};
|
|
162458
|
+
id: string;
|
|
162459
|
+
name: string;
|
|
162460
|
+
behavior: "designer" | "coder" | "writer";
|
|
162461
|
+
projectId: string;
|
|
162462
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
162463
|
+
avatarUrl?: string | undefined;
|
|
162464
|
+
}, {
|
|
162465
|
+
avatar: string | {
|
|
162466
|
+
headType: string;
|
|
162467
|
+
hairType: string;
|
|
162468
|
+
accessory1Type: string;
|
|
162469
|
+
accessory2Type: string;
|
|
162470
|
+
};
|
|
162471
|
+
id: string;
|
|
162472
|
+
name: string;
|
|
162473
|
+
behavior: "designer" | "coder" | "writer";
|
|
162474
|
+
projectId: string;
|
|
162475
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
162476
|
+
avatarUrl?: string | undefined;
|
|
162477
|
+
}>;
|
|
162478
|
+
type ForgeAgent = z.infer<typeof ForgeAgent>;
|
|
162479
|
+
type CreateForgeAgent = Omit<DbCreateInputOmit<ForgeAgent>, "projectId">;
|
|
162480
|
+
type UpdateForgeAgent = Omit<DbUpdate<ForgeAgent>, "projectId">;
|
|
162481
|
+
|
|
162482
|
+
declare const ForgeBuildArtifactFiles: z.ZodArray<z.ZodObject<{
|
|
162483
|
+
path: z.ZodString;
|
|
162484
|
+
content: z.ZodString;
|
|
162485
|
+
isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
|
|
162486
|
+
}, "strip", z.ZodTypeAny, {
|
|
162487
|
+
path: string;
|
|
162488
|
+
content: string;
|
|
162489
|
+
isVisibleToUser?: boolean | undefined;
|
|
162490
|
+
}, {
|
|
162491
|
+
path: string;
|
|
162492
|
+
content: string;
|
|
162493
|
+
isVisibleToUser?: boolean | undefined;
|
|
162494
|
+
}>, "many">;
|
|
162495
|
+
declare const ForgeBuildArtifactEnvironment: z.ZodObject<{
|
|
162496
|
+
dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
162497
|
+
}, "strip", z.ZodTypeAny, {
|
|
162498
|
+
dependencies: Record<string, string>;
|
|
162499
|
+
}, {
|
|
162500
|
+
dependencies: Record<string, string>;
|
|
162501
|
+
}>;
|
|
162502
|
+
declare const ForgeFileArtifact: z.ZodObject<z.objectUtil.extendShape<{
|
|
162503
|
+
id: z.ZodString;
|
|
162504
|
+
createdAt: z.ZodDate;
|
|
162505
|
+
projectIterationId: z.ZodString;
|
|
162506
|
+
}, {
|
|
162507
|
+
type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
|
|
162508
|
+
fileName: z.ZodString;
|
|
162509
|
+
uploadedFileUrl: z.ZodString;
|
|
162510
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162511
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
162512
|
+
id: string;
|
|
162513
|
+
createdAt: Date;
|
|
162514
|
+
fileName: string;
|
|
162515
|
+
projectIterationId: string;
|
|
162516
|
+
uploadedFileUrl: string;
|
|
162517
|
+
}, {
|
|
162518
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
162519
|
+
id: string;
|
|
162520
|
+
createdAt: Date;
|
|
162521
|
+
fileName: string;
|
|
162522
|
+
projectIterationId: string;
|
|
162523
|
+
uploadedFileUrl: string;
|
|
162524
|
+
}>;
|
|
162525
|
+
type ForgeFileArtifact = z.infer<typeof ForgeFileArtifact>;
|
|
162526
|
+
declare const ForgeFigmaArtifact: z.ZodObject<z.objectUtil.extendShape<{
|
|
162527
|
+
id: z.ZodString;
|
|
162528
|
+
createdAt: z.ZodDate;
|
|
162529
|
+
projectIterationId: z.ZodString;
|
|
162530
|
+
}, {
|
|
162531
|
+
type: z.ZodLiteral<"figma/node">;
|
|
162532
|
+
figmaFileUrl: z.ZodString;
|
|
162533
|
+
figmaNodeId: z.ZodString;
|
|
162534
|
+
figmaFileName: z.ZodOptional<z.ZodString>;
|
|
162535
|
+
previewUrl: z.ZodOptional<z.ZodString>;
|
|
162536
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162537
|
+
type: "figma/node";
|
|
162538
|
+
id: string;
|
|
162539
|
+
createdAt: Date;
|
|
162540
|
+
projectIterationId: string;
|
|
162541
|
+
figmaFileUrl: string;
|
|
162542
|
+
figmaNodeId: string;
|
|
162543
|
+
previewUrl?: string | undefined;
|
|
162544
|
+
figmaFileName?: string | undefined;
|
|
162545
|
+
}, {
|
|
162546
|
+
type: "figma/node";
|
|
162547
|
+
id: string;
|
|
162548
|
+
createdAt: Date;
|
|
162549
|
+
projectIterationId: string;
|
|
162550
|
+
figmaFileUrl: string;
|
|
162551
|
+
figmaNodeId: string;
|
|
162552
|
+
previewUrl?: string | undefined;
|
|
162553
|
+
figmaFileName?: string | undefined;
|
|
162554
|
+
}>;
|
|
162555
|
+
type ForgeFigmaArtifact = z.infer<typeof ForgeFigmaArtifact>;
|
|
162556
|
+
declare const ForgeSpecArtifact: z.ZodObject<z.objectUtil.extendShape<{
|
|
162557
|
+
id: z.ZodString;
|
|
162558
|
+
createdAt: z.ZodDate;
|
|
162559
|
+
projectIterationId: z.ZodString;
|
|
162560
|
+
}, {
|
|
162561
|
+
type: z.ZodLiteral<"spec">;
|
|
162562
|
+
fileName: z.ZodString;
|
|
162563
|
+
yjsDocId: z.ZodString;
|
|
162564
|
+
markdownText: z.ZodString;
|
|
162565
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162566
|
+
type: "spec";
|
|
162567
|
+
id: string;
|
|
162568
|
+
createdAt: Date;
|
|
162569
|
+
fileName: string;
|
|
162570
|
+
projectIterationId: string;
|
|
162571
|
+
yjsDocId: string;
|
|
162572
|
+
markdownText: string;
|
|
162573
|
+
}, {
|
|
162574
|
+
type: "spec";
|
|
162575
|
+
id: string;
|
|
162576
|
+
createdAt: Date;
|
|
162577
|
+
fileName: string;
|
|
162578
|
+
projectIterationId: string;
|
|
162579
|
+
yjsDocId: string;
|
|
162580
|
+
markdownText: string;
|
|
162581
|
+
}>;
|
|
162582
|
+
type ForgeSpecArtifact = z.infer<typeof ForgeSpecArtifact>;
|
|
162583
|
+
declare const ForgeBuildArtifact: z.ZodObject<z.objectUtil.extendShape<{
|
|
162584
|
+
id: z.ZodString;
|
|
162585
|
+
createdAt: z.ZodDate;
|
|
162586
|
+
projectIterationId: z.ZodString;
|
|
162587
|
+
}, {
|
|
162588
|
+
type: z.ZodLiteral<"build">;
|
|
162589
|
+
participantId: z.ZodString;
|
|
162590
|
+
files: z.ZodArray<z.ZodObject<{
|
|
162591
|
+
path: z.ZodString;
|
|
162592
|
+
content: z.ZodString;
|
|
162593
|
+
isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
|
|
162594
|
+
}, "strip", z.ZodTypeAny, {
|
|
162595
|
+
path: string;
|
|
162596
|
+
content: string;
|
|
162597
|
+
isVisibleToUser?: boolean | undefined;
|
|
162598
|
+
}, {
|
|
162599
|
+
path: string;
|
|
162600
|
+
content: string;
|
|
162601
|
+
isVisibleToUser?: boolean | undefined;
|
|
162602
|
+
}>, "many">;
|
|
162603
|
+
environment: z.ZodObject<{
|
|
162604
|
+
dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
162605
|
+
}, "strip", z.ZodTypeAny, {
|
|
162606
|
+
dependencies: Record<string, string>;
|
|
162607
|
+
}, {
|
|
162608
|
+
dependencies: Record<string, string>;
|
|
162609
|
+
}>;
|
|
162610
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162611
|
+
type: "build";
|
|
162612
|
+
files: {
|
|
162613
|
+
path: string;
|
|
162614
|
+
content: string;
|
|
162615
|
+
isVisibleToUser?: boolean | undefined;
|
|
162616
|
+
}[];
|
|
162617
|
+
id: string;
|
|
162618
|
+
createdAt: Date;
|
|
162619
|
+
environment: {
|
|
162620
|
+
dependencies: Record<string, string>;
|
|
162621
|
+
};
|
|
162622
|
+
projectIterationId: string;
|
|
162623
|
+
participantId: string;
|
|
162624
|
+
}, {
|
|
162625
|
+
type: "build";
|
|
162626
|
+
files: {
|
|
162627
|
+
path: string;
|
|
162628
|
+
content: string;
|
|
162629
|
+
isVisibleToUser?: boolean | undefined;
|
|
162630
|
+
}[];
|
|
162631
|
+
id: string;
|
|
162632
|
+
createdAt: Date;
|
|
162633
|
+
environment: {
|
|
162634
|
+
dependencies: Record<string, string>;
|
|
162635
|
+
};
|
|
162636
|
+
projectIterationId: string;
|
|
162637
|
+
participantId: string;
|
|
162638
|
+
}>;
|
|
162639
|
+
type ForgeBuildArtifact = z.infer<typeof ForgeBuildArtifact>;
|
|
162640
|
+
declare const ForgeArtifact: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
162641
|
+
id: z.ZodString;
|
|
162642
|
+
createdAt: z.ZodDate;
|
|
162643
|
+
projectIterationId: z.ZodString;
|
|
162644
|
+
}, {
|
|
162645
|
+
type: z.ZodLiteral<"build">;
|
|
162646
|
+
participantId: z.ZodString;
|
|
162647
|
+
files: z.ZodArray<z.ZodObject<{
|
|
162648
|
+
path: z.ZodString;
|
|
162649
|
+
content: z.ZodString;
|
|
162650
|
+
isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
|
|
162651
|
+
}, "strip", z.ZodTypeAny, {
|
|
162652
|
+
path: string;
|
|
162653
|
+
content: string;
|
|
162654
|
+
isVisibleToUser?: boolean | undefined;
|
|
162655
|
+
}, {
|
|
162656
|
+
path: string;
|
|
162657
|
+
content: string;
|
|
162658
|
+
isVisibleToUser?: boolean | undefined;
|
|
162659
|
+
}>, "many">;
|
|
162660
|
+
environment: z.ZodObject<{
|
|
162661
|
+
dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
162662
|
+
}, "strip", z.ZodTypeAny, {
|
|
162663
|
+
dependencies: Record<string, string>;
|
|
162664
|
+
}, {
|
|
162665
|
+
dependencies: Record<string, string>;
|
|
162666
|
+
}>;
|
|
162667
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162668
|
+
type: "build";
|
|
162669
|
+
files: {
|
|
162670
|
+
path: string;
|
|
162671
|
+
content: string;
|
|
162672
|
+
isVisibleToUser?: boolean | undefined;
|
|
162673
|
+
}[];
|
|
162674
|
+
id: string;
|
|
162675
|
+
createdAt: Date;
|
|
162676
|
+
environment: {
|
|
162677
|
+
dependencies: Record<string, string>;
|
|
162678
|
+
};
|
|
162679
|
+
projectIterationId: string;
|
|
162680
|
+
participantId: string;
|
|
162681
|
+
}, {
|
|
162682
|
+
type: "build";
|
|
162683
|
+
files: {
|
|
162684
|
+
path: string;
|
|
162685
|
+
content: string;
|
|
162686
|
+
isVisibleToUser?: boolean | undefined;
|
|
162687
|
+
}[];
|
|
162688
|
+
id: string;
|
|
162689
|
+
createdAt: Date;
|
|
162690
|
+
environment: {
|
|
162691
|
+
dependencies: Record<string, string>;
|
|
162692
|
+
};
|
|
162693
|
+
projectIterationId: string;
|
|
162694
|
+
participantId: string;
|
|
162695
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
162696
|
+
id: z.ZodString;
|
|
162697
|
+
createdAt: z.ZodDate;
|
|
162698
|
+
projectIterationId: z.ZodString;
|
|
162699
|
+
}, {
|
|
162700
|
+
type: z.ZodLiteral<"spec">;
|
|
162701
|
+
fileName: z.ZodString;
|
|
162702
|
+
yjsDocId: z.ZodString;
|
|
162703
|
+
markdownText: z.ZodString;
|
|
162704
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162705
|
+
type: "spec";
|
|
162706
|
+
id: string;
|
|
162707
|
+
createdAt: Date;
|
|
162708
|
+
fileName: string;
|
|
162709
|
+
projectIterationId: string;
|
|
162710
|
+
yjsDocId: string;
|
|
162711
|
+
markdownText: string;
|
|
162712
|
+
}, {
|
|
162713
|
+
type: "spec";
|
|
162714
|
+
id: string;
|
|
162715
|
+
createdAt: Date;
|
|
162716
|
+
fileName: string;
|
|
162717
|
+
projectIterationId: string;
|
|
162718
|
+
yjsDocId: string;
|
|
162719
|
+
markdownText: string;
|
|
162720
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
162721
|
+
id: z.ZodString;
|
|
162722
|
+
createdAt: z.ZodDate;
|
|
162723
|
+
projectIterationId: z.ZodString;
|
|
162724
|
+
}, {
|
|
162725
|
+
type: z.ZodLiteral<"figma/node">;
|
|
162726
|
+
figmaFileUrl: z.ZodString;
|
|
162727
|
+
figmaNodeId: z.ZodString;
|
|
162728
|
+
figmaFileName: z.ZodOptional<z.ZodString>;
|
|
162729
|
+
previewUrl: z.ZodOptional<z.ZodString>;
|
|
162730
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162731
|
+
type: "figma/node";
|
|
162732
|
+
id: string;
|
|
162733
|
+
createdAt: Date;
|
|
162734
|
+
projectIterationId: string;
|
|
162735
|
+
figmaFileUrl: string;
|
|
162736
|
+
figmaNodeId: string;
|
|
162737
|
+
previewUrl?: string | undefined;
|
|
162738
|
+
figmaFileName?: string | undefined;
|
|
162739
|
+
}, {
|
|
162740
|
+
type: "figma/node";
|
|
162741
|
+
id: string;
|
|
162742
|
+
createdAt: Date;
|
|
162743
|
+
projectIterationId: string;
|
|
162744
|
+
figmaFileUrl: string;
|
|
162745
|
+
figmaNodeId: string;
|
|
162746
|
+
previewUrl?: string | undefined;
|
|
162747
|
+
figmaFileName?: string | undefined;
|
|
162748
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
162749
|
+
id: z.ZodString;
|
|
162750
|
+
createdAt: z.ZodDate;
|
|
162751
|
+
projectIterationId: z.ZodString;
|
|
162752
|
+
}, {
|
|
162753
|
+
type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
|
|
162754
|
+
fileName: z.ZodString;
|
|
162755
|
+
uploadedFileUrl: z.ZodString;
|
|
162756
|
+
}>, "strip", z.ZodTypeAny, {
|
|
162757
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
162758
|
+
id: string;
|
|
162759
|
+
createdAt: Date;
|
|
162760
|
+
fileName: string;
|
|
162761
|
+
projectIterationId: string;
|
|
162762
|
+
uploadedFileUrl: string;
|
|
162763
|
+
}, {
|
|
162764
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
162765
|
+
id: string;
|
|
162766
|
+
createdAt: Date;
|
|
162767
|
+
fileName: string;
|
|
162768
|
+
projectIterationId: string;
|
|
162769
|
+
uploadedFileUrl: string;
|
|
162770
|
+
}>]>;
|
|
162771
|
+
type ForgeArtifact = z.infer<typeof ForgeArtifact>;
|
|
162772
|
+
|
|
162773
|
+
declare const ForgeIterationMessageStep: z.ZodObject<{
|
|
162774
|
+
name: z.ZodString;
|
|
162775
|
+
text: z.ZodString;
|
|
162776
|
+
status: z.ZodEnum<["pending", "started", "completed", "error"]>;
|
|
162777
|
+
}, "strip", z.ZodTypeAny, {
|
|
162778
|
+
status: "error" | "pending" | "started" | "completed";
|
|
162779
|
+
name: string;
|
|
162780
|
+
text: string;
|
|
162781
|
+
}, {
|
|
162782
|
+
status: "error" | "pending" | "started" | "completed";
|
|
162783
|
+
name: string;
|
|
162784
|
+
text: string;
|
|
162785
|
+
}>;
|
|
162786
|
+
declare const ForgeIterationMessage: z.ZodObject<{
|
|
162787
|
+
id: z.ZodString;
|
|
162788
|
+
createdAt: z.ZodDate;
|
|
162789
|
+
participantId: z.ZodString;
|
|
162790
|
+
participant: z.ZodObject<{
|
|
162791
|
+
id: z.ZodString;
|
|
162792
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
162793
|
+
agent: z.ZodOptional<z.ZodObject<{
|
|
162794
|
+
avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
162795
|
+
headType: z.ZodString;
|
|
162796
|
+
hairType: z.ZodString;
|
|
162797
|
+
accessory1Type: z.ZodString;
|
|
162798
|
+
accessory2Type: z.ZodString;
|
|
162799
|
+
}, "strip", z.ZodTypeAny, {
|
|
162800
|
+
headType: string;
|
|
162801
|
+
hairType: string;
|
|
162802
|
+
accessory1Type: string;
|
|
162803
|
+
accessory2Type: string;
|
|
162804
|
+
}, {
|
|
162805
|
+
headType: string;
|
|
162806
|
+
hairType: string;
|
|
162807
|
+
accessory1Type: string;
|
|
162808
|
+
accessory2Type: string;
|
|
162809
|
+
}>]>;
|
|
162810
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
162811
|
+
behavior: z.ZodEnum<["coder", "writer", "designer"]>;
|
|
162812
|
+
id: z.ZodString;
|
|
162813
|
+
name: z.ZodString;
|
|
162814
|
+
personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
|
|
162815
|
+
projectId: z.ZodString;
|
|
162816
|
+
}, "strip", z.ZodTypeAny, {
|
|
162817
|
+
avatar: string | {
|
|
162818
|
+
headType: string;
|
|
162819
|
+
hairType: string;
|
|
162820
|
+
accessory1Type: string;
|
|
162821
|
+
accessory2Type: string;
|
|
162822
|
+
};
|
|
162823
|
+
id: string;
|
|
162824
|
+
name: string;
|
|
162825
|
+
behavior: "designer" | "coder" | "writer";
|
|
162826
|
+
projectId: string;
|
|
162827
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
162828
|
+
avatarUrl?: string | undefined;
|
|
162829
|
+
}, {
|
|
162830
|
+
avatar: string | {
|
|
162831
|
+
headType: string;
|
|
162832
|
+
hairType: string;
|
|
162833
|
+
accessory1Type: string;
|
|
162834
|
+
accessory2Type: string;
|
|
162835
|
+
};
|
|
162836
|
+
id: string;
|
|
162837
|
+
name: string;
|
|
162838
|
+
behavior: "designer" | "coder" | "writer";
|
|
162839
|
+
projectId: string;
|
|
162840
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
162841
|
+
avatarUrl?: string | undefined;
|
|
162842
|
+
}>>;
|
|
162843
|
+
projectIterationId: z.ZodString;
|
|
162844
|
+
role: z.ZodEnum<["editor", "viewer"]>;
|
|
162845
|
+
type: z.ZodEnum<["Agent", "User"]>;
|
|
162846
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
162847
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
162848
|
+
id: z.ZodString;
|
|
162849
|
+
email: z.ZodString;
|
|
162850
|
+
createdAt: z.ZodDate;
|
|
162851
|
+
profile: z.ZodObject<{
|
|
162852
|
+
name: z.ZodString;
|
|
162853
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
162854
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
162855
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
162856
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
162857
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
162858
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
162859
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
162860
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
162861
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
162862
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
162863
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
162864
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
162865
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
162866
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
162867
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
162868
|
+
}, "strip", z.ZodTypeAny, {
|
|
162869
|
+
companyName?: string | undefined;
|
|
162870
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
162871
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
162872
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
162873
|
+
jobTitle?: string | undefined;
|
|
162874
|
+
phase?: string | undefined;
|
|
162875
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
162876
|
+
designSystemName?: string | undefined;
|
|
162877
|
+
defaultDestination?: string | undefined;
|
|
162878
|
+
figmaUrl?: string | undefined;
|
|
162879
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162880
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162881
|
+
}, {
|
|
162882
|
+
companyName?: string | undefined;
|
|
162883
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
162884
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
162885
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
162886
|
+
jobTitle?: string | undefined;
|
|
162887
|
+
phase?: string | undefined;
|
|
162888
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
162889
|
+
designSystemName?: string | undefined;
|
|
162890
|
+
defaultDestination?: string | undefined;
|
|
162891
|
+
figmaUrl?: string | undefined;
|
|
162892
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162893
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162894
|
+
}>>;
|
|
162895
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
162896
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
162897
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
162898
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
162899
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
162900
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
162901
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
162902
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
162903
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
162904
|
+
}, "strip", z.ZodTypeAny, {
|
|
162905
|
+
backgroundColor?: string | undefined;
|
|
162906
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162907
|
+
accentColor?: string | undefined;
|
|
162908
|
+
contrast?: number | undefined;
|
|
162909
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
162910
|
+
secondaryBackgroundColor?: string | undefined;
|
|
162911
|
+
secondaryContrast?: number | undefined;
|
|
162912
|
+
isEditorWhite?: boolean | undefined;
|
|
162913
|
+
}, {
|
|
162914
|
+
backgroundColor?: string | undefined;
|
|
162915
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162916
|
+
accentColor?: string | undefined;
|
|
162917
|
+
contrast?: number | undefined;
|
|
162918
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
162919
|
+
secondaryBackgroundColor?: string | undefined;
|
|
162920
|
+
secondaryContrast?: number | undefined;
|
|
162921
|
+
isEditorWhite?: boolean | undefined;
|
|
162922
|
+
}>>;
|
|
162923
|
+
}, "strip", z.ZodTypeAny, {
|
|
162924
|
+
name: string;
|
|
162925
|
+
avatar?: string | undefined;
|
|
162926
|
+
nickname?: string | undefined;
|
|
162927
|
+
theme?: {
|
|
162928
|
+
backgroundColor?: string | undefined;
|
|
162929
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162930
|
+
accentColor?: string | undefined;
|
|
162931
|
+
contrast?: number | undefined;
|
|
162932
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
162933
|
+
secondaryBackgroundColor?: string | undefined;
|
|
162934
|
+
secondaryContrast?: number | undefined;
|
|
162935
|
+
isEditorWhite?: boolean | undefined;
|
|
162936
|
+
} | undefined;
|
|
162937
|
+
onboarding?: {
|
|
162938
|
+
companyName?: string | undefined;
|
|
162939
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
162940
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
162941
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
162942
|
+
jobTitle?: string | undefined;
|
|
162943
|
+
phase?: string | undefined;
|
|
162944
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
162945
|
+
designSystemName?: string | undefined;
|
|
162946
|
+
defaultDestination?: string | undefined;
|
|
162947
|
+
figmaUrl?: string | undefined;
|
|
162948
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162949
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162950
|
+
} | undefined;
|
|
162951
|
+
}, {
|
|
162952
|
+
name: string;
|
|
162953
|
+
avatar?: string | undefined;
|
|
162954
|
+
nickname?: string | undefined;
|
|
162955
|
+
theme?: {
|
|
162956
|
+
backgroundColor?: string | undefined;
|
|
162957
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162958
|
+
accentColor?: string | undefined;
|
|
162959
|
+
contrast?: number | undefined;
|
|
162960
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
162961
|
+
secondaryBackgroundColor?: string | undefined;
|
|
162962
|
+
secondaryContrast?: number | undefined;
|
|
162963
|
+
isEditorWhite?: boolean | undefined;
|
|
162964
|
+
} | undefined;
|
|
162965
|
+
onboarding?: {
|
|
162966
|
+
companyName?: string | undefined;
|
|
162967
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
162968
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
162969
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
162970
|
+
jobTitle?: string | undefined;
|
|
162971
|
+
phase?: string | undefined;
|
|
162972
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
162973
|
+
designSystemName?: string | undefined;
|
|
162974
|
+
defaultDestination?: string | undefined;
|
|
162975
|
+
figmaUrl?: string | undefined;
|
|
162976
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
162977
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
162978
|
+
} | undefined;
|
|
162979
|
+
}>;
|
|
162980
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
162981
|
+
isProtected: z.ZodBoolean;
|
|
162982
|
+
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
162983
|
+
}, "strip", z.ZodTypeAny, {
|
|
162984
|
+
email: string;
|
|
162985
|
+
id: string;
|
|
162986
|
+
profile: {
|
|
162987
|
+
name: string;
|
|
162988
|
+
avatar?: string | undefined;
|
|
162989
|
+
nickname?: string | undefined;
|
|
162990
|
+
theme?: {
|
|
162991
|
+
backgroundColor?: string | undefined;
|
|
162992
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
162993
|
+
accentColor?: string | undefined;
|
|
162994
|
+
contrast?: number | undefined;
|
|
162995
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
162996
|
+
secondaryBackgroundColor?: string | undefined;
|
|
162997
|
+
secondaryContrast?: number | undefined;
|
|
162998
|
+
isEditorWhite?: boolean | undefined;
|
|
162999
|
+
} | undefined;
|
|
163000
|
+
onboarding?: {
|
|
163001
|
+
companyName?: string | undefined;
|
|
163002
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163003
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163004
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163005
|
+
jobTitle?: string | undefined;
|
|
163006
|
+
phase?: string | undefined;
|
|
163007
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163008
|
+
designSystemName?: string | undefined;
|
|
163009
|
+
defaultDestination?: string | undefined;
|
|
163010
|
+
figmaUrl?: string | undefined;
|
|
163011
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163012
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163013
|
+
} | undefined;
|
|
163014
|
+
};
|
|
163015
|
+
createdAt: Date;
|
|
163016
|
+
isProtected: boolean;
|
|
163017
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163018
|
+
loggedOutAt?: Date | undefined;
|
|
163019
|
+
}, {
|
|
163020
|
+
email: string;
|
|
163021
|
+
id: string;
|
|
163022
|
+
profile: {
|
|
163023
|
+
name: string;
|
|
163024
|
+
avatar?: string | undefined;
|
|
163025
|
+
nickname?: string | undefined;
|
|
163026
|
+
theme?: {
|
|
163027
|
+
backgroundColor?: string | undefined;
|
|
163028
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163029
|
+
accentColor?: string | undefined;
|
|
163030
|
+
contrast?: number | undefined;
|
|
163031
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163032
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163033
|
+
secondaryContrast?: number | undefined;
|
|
163034
|
+
isEditorWhite?: boolean | undefined;
|
|
163035
|
+
} | undefined;
|
|
163036
|
+
onboarding?: {
|
|
163037
|
+
companyName?: string | undefined;
|
|
163038
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163039
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163040
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163041
|
+
jobTitle?: string | undefined;
|
|
163042
|
+
phase?: string | undefined;
|
|
163043
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163044
|
+
designSystemName?: string | undefined;
|
|
163045
|
+
defaultDestination?: string | undefined;
|
|
163046
|
+
figmaUrl?: string | undefined;
|
|
163047
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163048
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163049
|
+
} | undefined;
|
|
163050
|
+
};
|
|
163051
|
+
createdAt: Date;
|
|
163052
|
+
isProtected: boolean;
|
|
163053
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163054
|
+
loggedOutAt?: Date | undefined;
|
|
163055
|
+
}>>;
|
|
163056
|
+
}, "strip", z.ZodTypeAny, {
|
|
163057
|
+
type: "User" | "Agent";
|
|
163058
|
+
id: string;
|
|
163059
|
+
role: "editor" | "viewer";
|
|
163060
|
+
projectIterationId: string;
|
|
163061
|
+
user?: {
|
|
163062
|
+
email: string;
|
|
163063
|
+
id: string;
|
|
163064
|
+
profile: {
|
|
163065
|
+
name: string;
|
|
163066
|
+
avatar?: string | undefined;
|
|
163067
|
+
nickname?: string | undefined;
|
|
163068
|
+
theme?: {
|
|
163069
|
+
backgroundColor?: string | undefined;
|
|
163070
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163071
|
+
accentColor?: string | undefined;
|
|
163072
|
+
contrast?: number | undefined;
|
|
163073
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163074
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163075
|
+
secondaryContrast?: number | undefined;
|
|
163076
|
+
isEditorWhite?: boolean | undefined;
|
|
163077
|
+
} | undefined;
|
|
163078
|
+
onboarding?: {
|
|
163079
|
+
companyName?: string | undefined;
|
|
163080
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163081
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163082
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163083
|
+
jobTitle?: string | undefined;
|
|
163084
|
+
phase?: string | undefined;
|
|
163085
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163086
|
+
designSystemName?: string | undefined;
|
|
163087
|
+
defaultDestination?: string | undefined;
|
|
163088
|
+
figmaUrl?: string | undefined;
|
|
163089
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163090
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163091
|
+
} | undefined;
|
|
163092
|
+
};
|
|
163093
|
+
createdAt: Date;
|
|
163094
|
+
isProtected: boolean;
|
|
163095
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163096
|
+
loggedOutAt?: Date | undefined;
|
|
163097
|
+
} | undefined;
|
|
163098
|
+
userId?: string | undefined;
|
|
163099
|
+
agentId?: string | undefined;
|
|
163100
|
+
agent?: {
|
|
163101
|
+
avatar: string | {
|
|
163102
|
+
headType: string;
|
|
163103
|
+
hairType: string;
|
|
163104
|
+
accessory1Type: string;
|
|
163105
|
+
accessory2Type: string;
|
|
163106
|
+
};
|
|
163107
|
+
id: string;
|
|
163108
|
+
name: string;
|
|
163109
|
+
behavior: "designer" | "coder" | "writer";
|
|
163110
|
+
projectId: string;
|
|
163111
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163112
|
+
avatarUrl?: string | undefined;
|
|
163113
|
+
} | undefined;
|
|
163114
|
+
}, {
|
|
163115
|
+
type: "User" | "Agent";
|
|
163116
|
+
id: string;
|
|
163117
|
+
role: "editor" | "viewer";
|
|
163118
|
+
projectIterationId: string;
|
|
163119
|
+
user?: {
|
|
163120
|
+
email: string;
|
|
163121
|
+
id: string;
|
|
163122
|
+
profile: {
|
|
163123
|
+
name: string;
|
|
163124
|
+
avatar?: string | undefined;
|
|
163125
|
+
nickname?: string | undefined;
|
|
163126
|
+
theme?: {
|
|
163127
|
+
backgroundColor?: string | undefined;
|
|
163128
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163129
|
+
accentColor?: string | undefined;
|
|
163130
|
+
contrast?: number | undefined;
|
|
163131
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163132
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163133
|
+
secondaryContrast?: number | undefined;
|
|
163134
|
+
isEditorWhite?: boolean | undefined;
|
|
163135
|
+
} | undefined;
|
|
163136
|
+
onboarding?: {
|
|
163137
|
+
companyName?: string | undefined;
|
|
163138
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163139
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163140
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163141
|
+
jobTitle?: string | undefined;
|
|
163142
|
+
phase?: string | undefined;
|
|
163143
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163144
|
+
designSystemName?: string | undefined;
|
|
163145
|
+
defaultDestination?: string | undefined;
|
|
163146
|
+
figmaUrl?: string | undefined;
|
|
163147
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163148
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163149
|
+
} | undefined;
|
|
163150
|
+
};
|
|
163151
|
+
createdAt: Date;
|
|
163152
|
+
isProtected: boolean;
|
|
163153
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163154
|
+
loggedOutAt?: Date | undefined;
|
|
163155
|
+
} | undefined;
|
|
163156
|
+
userId?: string | undefined;
|
|
163157
|
+
agentId?: string | undefined;
|
|
163158
|
+
agent?: {
|
|
163159
|
+
avatar: string | {
|
|
163160
|
+
headType: string;
|
|
163161
|
+
hairType: string;
|
|
163162
|
+
accessory1Type: string;
|
|
163163
|
+
accessory2Type: string;
|
|
163164
|
+
};
|
|
163165
|
+
id: string;
|
|
163166
|
+
name: string;
|
|
163167
|
+
behavior: "designer" | "coder" | "writer";
|
|
163168
|
+
projectId: string;
|
|
163169
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163170
|
+
avatarUrl?: string | undefined;
|
|
163171
|
+
} | undefined;
|
|
163172
|
+
}>;
|
|
163173
|
+
projectIterationId: z.ZodString;
|
|
163174
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
163175
|
+
name: z.ZodString;
|
|
163176
|
+
text: z.ZodString;
|
|
163177
|
+
status: z.ZodEnum<["pending", "started", "completed", "error"]>;
|
|
163178
|
+
}, "strip", z.ZodTypeAny, {
|
|
163179
|
+
status: "error" | "pending" | "started" | "completed";
|
|
163180
|
+
name: string;
|
|
163181
|
+
text: string;
|
|
163182
|
+
}, {
|
|
163183
|
+
status: "error" | "pending" | "started" | "completed";
|
|
163184
|
+
name: string;
|
|
163185
|
+
text: string;
|
|
163186
|
+
}>, "many">>;
|
|
163187
|
+
type: z.ZodEnum<["note", "action", "steps"]>;
|
|
163188
|
+
text: z.ZodString;
|
|
163189
|
+
}, "strip", z.ZodTypeAny, {
|
|
163190
|
+
type: "steps" | "note" | "action";
|
|
163191
|
+
id: string;
|
|
163192
|
+
createdAt: Date;
|
|
163193
|
+
text: string;
|
|
163194
|
+
projectIterationId: string;
|
|
163195
|
+
participantId: string;
|
|
163196
|
+
participant: {
|
|
163197
|
+
type: "User" | "Agent";
|
|
163198
|
+
id: string;
|
|
163199
|
+
role: "editor" | "viewer";
|
|
163200
|
+
projectIterationId: string;
|
|
163201
|
+
user?: {
|
|
163202
|
+
email: string;
|
|
163203
|
+
id: string;
|
|
163204
|
+
profile: {
|
|
163205
|
+
name: string;
|
|
163206
|
+
avatar?: string | undefined;
|
|
163207
|
+
nickname?: string | undefined;
|
|
163208
|
+
theme?: {
|
|
163209
|
+
backgroundColor?: string | undefined;
|
|
163210
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163211
|
+
accentColor?: string | undefined;
|
|
163212
|
+
contrast?: number | undefined;
|
|
163213
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163214
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163215
|
+
secondaryContrast?: number | undefined;
|
|
163216
|
+
isEditorWhite?: boolean | undefined;
|
|
163217
|
+
} | undefined;
|
|
163218
|
+
onboarding?: {
|
|
163219
|
+
companyName?: string | undefined;
|
|
163220
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163221
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163222
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163223
|
+
jobTitle?: string | undefined;
|
|
163224
|
+
phase?: string | undefined;
|
|
163225
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163226
|
+
designSystemName?: string | undefined;
|
|
163227
|
+
defaultDestination?: string | undefined;
|
|
163228
|
+
figmaUrl?: string | undefined;
|
|
163229
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163230
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163231
|
+
} | undefined;
|
|
163232
|
+
};
|
|
163233
|
+
createdAt: Date;
|
|
163234
|
+
isProtected: boolean;
|
|
163235
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163236
|
+
loggedOutAt?: Date | undefined;
|
|
163237
|
+
} | undefined;
|
|
163238
|
+
userId?: string | undefined;
|
|
163239
|
+
agentId?: string | undefined;
|
|
163240
|
+
agent?: {
|
|
163241
|
+
avatar: string | {
|
|
163242
|
+
headType: string;
|
|
163243
|
+
hairType: string;
|
|
163244
|
+
accessory1Type: string;
|
|
163245
|
+
accessory2Type: string;
|
|
163246
|
+
};
|
|
163247
|
+
id: string;
|
|
163248
|
+
name: string;
|
|
163249
|
+
behavior: "designer" | "coder" | "writer";
|
|
163250
|
+
projectId: string;
|
|
163251
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163252
|
+
avatarUrl?: string | undefined;
|
|
163253
|
+
} | undefined;
|
|
163254
|
+
};
|
|
163255
|
+
steps?: {
|
|
163256
|
+
status: "error" | "pending" | "started" | "completed";
|
|
163257
|
+
name: string;
|
|
163258
|
+
text: string;
|
|
163259
|
+
}[] | undefined;
|
|
163260
|
+
}, {
|
|
163261
|
+
type: "steps" | "note" | "action";
|
|
163262
|
+
id: string;
|
|
163263
|
+
createdAt: Date;
|
|
163264
|
+
text: string;
|
|
163265
|
+
projectIterationId: string;
|
|
163266
|
+
participantId: string;
|
|
163267
|
+
participant: {
|
|
163268
|
+
type: "User" | "Agent";
|
|
163269
|
+
id: string;
|
|
163270
|
+
role: "editor" | "viewer";
|
|
163271
|
+
projectIterationId: string;
|
|
163272
|
+
user?: {
|
|
163273
|
+
email: string;
|
|
163274
|
+
id: string;
|
|
163275
|
+
profile: {
|
|
163276
|
+
name: string;
|
|
163277
|
+
avatar?: string | undefined;
|
|
163278
|
+
nickname?: string | undefined;
|
|
163279
|
+
theme?: {
|
|
163280
|
+
backgroundColor?: string | undefined;
|
|
163281
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163282
|
+
accentColor?: string | undefined;
|
|
163283
|
+
contrast?: number | undefined;
|
|
163284
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163285
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163286
|
+
secondaryContrast?: number | undefined;
|
|
163287
|
+
isEditorWhite?: boolean | undefined;
|
|
163288
|
+
} | undefined;
|
|
163289
|
+
onboarding?: {
|
|
163290
|
+
companyName?: string | undefined;
|
|
163291
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163292
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163293
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163294
|
+
jobTitle?: string | undefined;
|
|
163295
|
+
phase?: string | undefined;
|
|
163296
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163297
|
+
designSystemName?: string | undefined;
|
|
163298
|
+
defaultDestination?: string | undefined;
|
|
163299
|
+
figmaUrl?: string | undefined;
|
|
163300
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163301
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163302
|
+
} | undefined;
|
|
163303
|
+
};
|
|
163304
|
+
createdAt: Date;
|
|
163305
|
+
isProtected: boolean;
|
|
163306
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163307
|
+
loggedOutAt?: Date | undefined;
|
|
163308
|
+
} | undefined;
|
|
163309
|
+
userId?: string | undefined;
|
|
163310
|
+
agentId?: string | undefined;
|
|
163311
|
+
agent?: {
|
|
163312
|
+
avatar: string | {
|
|
163313
|
+
headType: string;
|
|
163314
|
+
hairType: string;
|
|
163315
|
+
accessory1Type: string;
|
|
163316
|
+
accessory2Type: string;
|
|
163317
|
+
};
|
|
163318
|
+
id: string;
|
|
163319
|
+
name: string;
|
|
163320
|
+
behavior: "designer" | "coder" | "writer";
|
|
163321
|
+
projectId: string;
|
|
163322
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163323
|
+
avatarUrl?: string | undefined;
|
|
163324
|
+
} | undefined;
|
|
163325
|
+
};
|
|
163326
|
+
steps?: {
|
|
163327
|
+
status: "error" | "pending" | "started" | "completed";
|
|
163328
|
+
name: string;
|
|
163329
|
+
text: string;
|
|
163330
|
+
}[] | undefined;
|
|
163331
|
+
}>;
|
|
163332
|
+
type ForgeIterationMessage = z.infer<typeof ForgeIterationMessage>;
|
|
163333
|
+
|
|
163334
|
+
declare const ForgeMeta: z.ZodObject<{
|
|
163335
|
+
name: z.ZodString;
|
|
163336
|
+
description: z.ZodOptional<z.ZodString>;
|
|
163337
|
+
}, "strip", z.ZodTypeAny, {
|
|
163338
|
+
name: string;
|
|
163339
|
+
description?: string | undefined;
|
|
163340
|
+
}, {
|
|
163341
|
+
name: string;
|
|
163342
|
+
description?: string | undefined;
|
|
163343
|
+
}>;
|
|
163344
|
+
type ForgeMeta = z.infer<typeof ForgeMeta>;
|
|
163345
|
+
|
|
163346
|
+
declare const ForgeParticipant: z.ZodObject<{
|
|
163347
|
+
id: z.ZodString;
|
|
163348
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
163349
|
+
agent: z.ZodOptional<z.ZodObject<{
|
|
163350
|
+
avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
163351
|
+
headType: z.ZodString;
|
|
163352
|
+
hairType: z.ZodString;
|
|
163353
|
+
accessory1Type: z.ZodString;
|
|
163354
|
+
accessory2Type: z.ZodString;
|
|
163355
|
+
}, "strip", z.ZodTypeAny, {
|
|
163356
|
+
headType: string;
|
|
163357
|
+
hairType: string;
|
|
163358
|
+
accessory1Type: string;
|
|
163359
|
+
accessory2Type: string;
|
|
163360
|
+
}, {
|
|
163361
|
+
headType: string;
|
|
163362
|
+
hairType: string;
|
|
163363
|
+
accessory1Type: string;
|
|
163364
|
+
accessory2Type: string;
|
|
163365
|
+
}>]>;
|
|
163366
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
163367
|
+
behavior: z.ZodEnum<["coder", "writer", "designer"]>;
|
|
163368
|
+
id: z.ZodString;
|
|
163369
|
+
name: z.ZodString;
|
|
163370
|
+
personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
|
|
163371
|
+
projectId: z.ZodString;
|
|
163372
|
+
}, "strip", z.ZodTypeAny, {
|
|
163373
|
+
avatar: string | {
|
|
163374
|
+
headType: string;
|
|
163375
|
+
hairType: string;
|
|
163376
|
+
accessory1Type: string;
|
|
163377
|
+
accessory2Type: string;
|
|
163378
|
+
};
|
|
163379
|
+
id: string;
|
|
163380
|
+
name: string;
|
|
163381
|
+
behavior: "designer" | "coder" | "writer";
|
|
163382
|
+
projectId: string;
|
|
163383
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163384
|
+
avatarUrl?: string | undefined;
|
|
163385
|
+
}, {
|
|
163386
|
+
avatar: string | {
|
|
163387
|
+
headType: string;
|
|
163388
|
+
hairType: string;
|
|
163389
|
+
accessory1Type: string;
|
|
163390
|
+
accessory2Type: string;
|
|
163391
|
+
};
|
|
163392
|
+
id: string;
|
|
163393
|
+
name: string;
|
|
163394
|
+
behavior: "designer" | "coder" | "writer";
|
|
163395
|
+
projectId: string;
|
|
163396
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163397
|
+
avatarUrl?: string | undefined;
|
|
163398
|
+
}>>;
|
|
163399
|
+
projectIterationId: z.ZodString;
|
|
163400
|
+
role: z.ZodEnum<["editor", "viewer"]>;
|
|
163401
|
+
type: z.ZodEnum<["Agent", "User"]>;
|
|
163402
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
163403
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
163404
|
+
id: z.ZodString;
|
|
163405
|
+
email: z.ZodString;
|
|
163406
|
+
createdAt: z.ZodDate;
|
|
163407
|
+
profile: z.ZodObject<{
|
|
163408
|
+
name: z.ZodString;
|
|
163409
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
163410
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
163411
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
163412
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
163413
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
163414
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
163415
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
163416
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
163417
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
163418
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
163419
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
163420
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
163421
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
163422
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
163423
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
163424
|
+
}, "strip", z.ZodTypeAny, {
|
|
163425
|
+
companyName?: string | undefined;
|
|
163426
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163427
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163428
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163429
|
+
jobTitle?: string | undefined;
|
|
163430
|
+
phase?: string | undefined;
|
|
163431
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163432
|
+
designSystemName?: string | undefined;
|
|
163433
|
+
defaultDestination?: string | undefined;
|
|
163434
|
+
figmaUrl?: string | undefined;
|
|
163435
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163436
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163437
|
+
}, {
|
|
163438
|
+
companyName?: string | undefined;
|
|
163439
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163440
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163441
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163442
|
+
jobTitle?: string | undefined;
|
|
163443
|
+
phase?: string | undefined;
|
|
163444
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163445
|
+
designSystemName?: string | undefined;
|
|
163446
|
+
defaultDestination?: string | undefined;
|
|
163447
|
+
figmaUrl?: string | undefined;
|
|
163448
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163449
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163450
|
+
}>>;
|
|
163451
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
163452
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
163453
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
163454
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
163455
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
163456
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
163457
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
163458
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
163459
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
163460
|
+
}, "strip", z.ZodTypeAny, {
|
|
163461
|
+
backgroundColor?: string | undefined;
|
|
163462
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163463
|
+
accentColor?: string | undefined;
|
|
163464
|
+
contrast?: number | undefined;
|
|
163465
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163466
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163467
|
+
secondaryContrast?: number | undefined;
|
|
163468
|
+
isEditorWhite?: boolean | undefined;
|
|
163469
|
+
}, {
|
|
163470
|
+
backgroundColor?: string | undefined;
|
|
163471
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163472
|
+
accentColor?: string | undefined;
|
|
163473
|
+
contrast?: number | undefined;
|
|
163474
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163475
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163476
|
+
secondaryContrast?: number | undefined;
|
|
163477
|
+
isEditorWhite?: boolean | undefined;
|
|
163478
|
+
}>>;
|
|
163479
|
+
}, "strip", z.ZodTypeAny, {
|
|
163480
|
+
name: string;
|
|
163481
|
+
avatar?: string | undefined;
|
|
163482
|
+
nickname?: string | undefined;
|
|
163483
|
+
theme?: {
|
|
163484
|
+
backgroundColor?: string | undefined;
|
|
163485
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163486
|
+
accentColor?: string | undefined;
|
|
163487
|
+
contrast?: number | undefined;
|
|
163488
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163489
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163490
|
+
secondaryContrast?: number | undefined;
|
|
163491
|
+
isEditorWhite?: boolean | undefined;
|
|
163492
|
+
} | undefined;
|
|
163493
|
+
onboarding?: {
|
|
163494
|
+
companyName?: string | undefined;
|
|
163495
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163496
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163497
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163498
|
+
jobTitle?: string | undefined;
|
|
163499
|
+
phase?: string | undefined;
|
|
163500
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163501
|
+
designSystemName?: string | undefined;
|
|
163502
|
+
defaultDestination?: string | undefined;
|
|
163503
|
+
figmaUrl?: string | undefined;
|
|
163504
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163505
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163506
|
+
} | undefined;
|
|
163507
|
+
}, {
|
|
163508
|
+
name: string;
|
|
163509
|
+
avatar?: string | undefined;
|
|
163510
|
+
nickname?: string | undefined;
|
|
163511
|
+
theme?: {
|
|
163512
|
+
backgroundColor?: string | undefined;
|
|
163513
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163514
|
+
accentColor?: string | undefined;
|
|
163515
|
+
contrast?: number | undefined;
|
|
163516
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163517
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163518
|
+
secondaryContrast?: number | undefined;
|
|
163519
|
+
isEditorWhite?: boolean | undefined;
|
|
163520
|
+
} | undefined;
|
|
163521
|
+
onboarding?: {
|
|
163522
|
+
companyName?: string | undefined;
|
|
163523
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163524
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163525
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163526
|
+
jobTitle?: string | undefined;
|
|
163527
|
+
phase?: string | undefined;
|
|
163528
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163529
|
+
designSystemName?: string | undefined;
|
|
163530
|
+
defaultDestination?: string | undefined;
|
|
163531
|
+
figmaUrl?: string | undefined;
|
|
163532
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163533
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163534
|
+
} | undefined;
|
|
163535
|
+
}>;
|
|
163536
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
163537
|
+
isProtected: z.ZodBoolean;
|
|
163538
|
+
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
163539
|
+
}, "strip", z.ZodTypeAny, {
|
|
163540
|
+
email: string;
|
|
163541
|
+
id: string;
|
|
163542
|
+
profile: {
|
|
163543
|
+
name: string;
|
|
163544
|
+
avatar?: string | undefined;
|
|
163545
|
+
nickname?: string | undefined;
|
|
163546
|
+
theme?: {
|
|
163547
|
+
backgroundColor?: string | undefined;
|
|
163548
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163549
|
+
accentColor?: string | undefined;
|
|
163550
|
+
contrast?: number | undefined;
|
|
163551
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163552
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163553
|
+
secondaryContrast?: number | undefined;
|
|
163554
|
+
isEditorWhite?: boolean | undefined;
|
|
163555
|
+
} | undefined;
|
|
163556
|
+
onboarding?: {
|
|
163557
|
+
companyName?: string | undefined;
|
|
163558
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163559
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163560
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163561
|
+
jobTitle?: string | undefined;
|
|
163562
|
+
phase?: string | undefined;
|
|
163563
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163564
|
+
designSystemName?: string | undefined;
|
|
163565
|
+
defaultDestination?: string | undefined;
|
|
163566
|
+
figmaUrl?: string | undefined;
|
|
163567
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163568
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163569
|
+
} | undefined;
|
|
163570
|
+
};
|
|
163571
|
+
createdAt: Date;
|
|
163572
|
+
isProtected: boolean;
|
|
163573
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163574
|
+
loggedOutAt?: Date | undefined;
|
|
163575
|
+
}, {
|
|
163576
|
+
email: string;
|
|
163577
|
+
id: string;
|
|
163578
|
+
profile: {
|
|
163579
|
+
name: string;
|
|
163580
|
+
avatar?: string | undefined;
|
|
163581
|
+
nickname?: string | undefined;
|
|
163582
|
+
theme?: {
|
|
163583
|
+
backgroundColor?: string | undefined;
|
|
163584
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163585
|
+
accentColor?: string | undefined;
|
|
163586
|
+
contrast?: number | undefined;
|
|
163587
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163588
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163589
|
+
secondaryContrast?: number | undefined;
|
|
163590
|
+
isEditorWhite?: boolean | undefined;
|
|
163591
|
+
} | undefined;
|
|
163592
|
+
onboarding?: {
|
|
163593
|
+
companyName?: string | undefined;
|
|
163594
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163595
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163596
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163597
|
+
jobTitle?: string | undefined;
|
|
163598
|
+
phase?: string | undefined;
|
|
163599
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163600
|
+
designSystemName?: string | undefined;
|
|
163601
|
+
defaultDestination?: string | undefined;
|
|
163602
|
+
figmaUrl?: string | undefined;
|
|
163603
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163604
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163605
|
+
} | undefined;
|
|
163606
|
+
};
|
|
163607
|
+
createdAt: Date;
|
|
163608
|
+
isProtected: boolean;
|
|
163609
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163610
|
+
loggedOutAt?: Date | undefined;
|
|
163611
|
+
}>>;
|
|
163612
|
+
}, "strip", z.ZodTypeAny, {
|
|
163613
|
+
type: "User" | "Agent";
|
|
163614
|
+
id: string;
|
|
163615
|
+
role: "editor" | "viewer";
|
|
163616
|
+
projectIterationId: string;
|
|
163617
|
+
user?: {
|
|
163618
|
+
email: string;
|
|
163619
|
+
id: string;
|
|
163620
|
+
profile: {
|
|
163621
|
+
name: string;
|
|
163622
|
+
avatar?: string | undefined;
|
|
163623
|
+
nickname?: string | undefined;
|
|
163624
|
+
theme?: {
|
|
163625
|
+
backgroundColor?: string | undefined;
|
|
163626
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163627
|
+
accentColor?: string | undefined;
|
|
163628
|
+
contrast?: number | undefined;
|
|
163629
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163630
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163631
|
+
secondaryContrast?: number | undefined;
|
|
163632
|
+
isEditorWhite?: boolean | undefined;
|
|
163633
|
+
} | undefined;
|
|
163634
|
+
onboarding?: {
|
|
163635
|
+
companyName?: string | undefined;
|
|
163636
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163637
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163638
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163639
|
+
jobTitle?: string | undefined;
|
|
163640
|
+
phase?: string | undefined;
|
|
163641
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163642
|
+
designSystemName?: string | undefined;
|
|
163643
|
+
defaultDestination?: string | undefined;
|
|
163644
|
+
figmaUrl?: string | undefined;
|
|
163645
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163646
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163647
|
+
} | undefined;
|
|
163648
|
+
};
|
|
163649
|
+
createdAt: Date;
|
|
163650
|
+
isProtected: boolean;
|
|
163651
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163652
|
+
loggedOutAt?: Date | undefined;
|
|
163653
|
+
} | undefined;
|
|
163654
|
+
userId?: string | undefined;
|
|
163655
|
+
agentId?: string | undefined;
|
|
163656
|
+
agent?: {
|
|
163657
|
+
avatar: string | {
|
|
163658
|
+
headType: string;
|
|
163659
|
+
hairType: string;
|
|
163660
|
+
accessory1Type: string;
|
|
163661
|
+
accessory2Type: string;
|
|
163662
|
+
};
|
|
163663
|
+
id: string;
|
|
163664
|
+
name: string;
|
|
163665
|
+
behavior: "designer" | "coder" | "writer";
|
|
163666
|
+
projectId: string;
|
|
163667
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163668
|
+
avatarUrl?: string | undefined;
|
|
163669
|
+
} | undefined;
|
|
163670
|
+
}, {
|
|
163671
|
+
type: "User" | "Agent";
|
|
163672
|
+
id: string;
|
|
163673
|
+
role: "editor" | "viewer";
|
|
163674
|
+
projectIterationId: string;
|
|
163675
|
+
user?: {
|
|
163676
|
+
email: string;
|
|
163677
|
+
id: string;
|
|
163678
|
+
profile: {
|
|
163679
|
+
name: string;
|
|
163680
|
+
avatar?: string | undefined;
|
|
163681
|
+
nickname?: string | undefined;
|
|
163682
|
+
theme?: {
|
|
163683
|
+
backgroundColor?: string | undefined;
|
|
163684
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
163685
|
+
accentColor?: string | undefined;
|
|
163686
|
+
contrast?: number | undefined;
|
|
163687
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
163688
|
+
secondaryBackgroundColor?: string | undefined;
|
|
163689
|
+
secondaryContrast?: number | undefined;
|
|
163690
|
+
isEditorWhite?: boolean | undefined;
|
|
163691
|
+
} | undefined;
|
|
163692
|
+
onboarding?: {
|
|
163693
|
+
companyName?: string | undefined;
|
|
163694
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
163695
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
163696
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
163697
|
+
jobTitle?: string | undefined;
|
|
163698
|
+
phase?: string | undefined;
|
|
163699
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
163700
|
+
designSystemName?: string | undefined;
|
|
163701
|
+
defaultDestination?: string | undefined;
|
|
163702
|
+
figmaUrl?: string | undefined;
|
|
163703
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
163704
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
163705
|
+
} | undefined;
|
|
163706
|
+
};
|
|
163707
|
+
createdAt: Date;
|
|
163708
|
+
isProtected: boolean;
|
|
163709
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
163710
|
+
loggedOutAt?: Date | undefined;
|
|
163711
|
+
} | undefined;
|
|
163712
|
+
userId?: string | undefined;
|
|
163713
|
+
agentId?: string | undefined;
|
|
163714
|
+
agent?: {
|
|
163715
|
+
avatar: string | {
|
|
163716
|
+
headType: string;
|
|
163717
|
+
hairType: string;
|
|
163718
|
+
accessory1Type: string;
|
|
163719
|
+
accessory2Type: string;
|
|
163720
|
+
};
|
|
163721
|
+
id: string;
|
|
163722
|
+
name: string;
|
|
163723
|
+
behavior: "designer" | "coder" | "writer";
|
|
163724
|
+
projectId: string;
|
|
163725
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
163726
|
+
avatarUrl?: string | undefined;
|
|
163727
|
+
} | undefined;
|
|
163728
|
+
}>;
|
|
163729
|
+
type ForgeParticipant = z.infer<typeof ForgeParticipant>;
|
|
163730
|
+
|
|
163731
|
+
declare const ForgeProjectContextDependency: z.ZodObject<{
|
|
163732
|
+
packageName: z.ZodString;
|
|
163733
|
+
type: z.ZodLiteral<"npm">;
|
|
163734
|
+
version: z.ZodDefault<z.ZodString>;
|
|
163735
|
+
}, "strip", z.ZodTypeAny, {
|
|
163736
|
+
type: "npm";
|
|
163737
|
+
version: string;
|
|
163738
|
+
packageName: string;
|
|
163739
|
+
}, {
|
|
163740
|
+
type: "npm";
|
|
163741
|
+
packageName: string;
|
|
163742
|
+
version?: string | undefined;
|
|
163743
|
+
}>;
|
|
163744
|
+
type ForgeProjectContextDependency = z.infer<typeof ForgeProjectContextDependency>;
|
|
163745
|
+
declare const ForgeProjectContextTailwindConfig: z.ZodObject<{
|
|
163746
|
+
content: z.ZodString;
|
|
163747
|
+
version: z.ZodString;
|
|
163748
|
+
}, "strip", z.ZodTypeAny, {
|
|
163749
|
+
version: string;
|
|
163750
|
+
content: string;
|
|
163751
|
+
}, {
|
|
163752
|
+
version: string;
|
|
163753
|
+
content: string;
|
|
163754
|
+
}>;
|
|
163755
|
+
type ForgeProjectContextTailwindConfig = z.infer<typeof ForgeProjectContextTailwindConfig>;
|
|
163756
|
+
declare const ForgeProjectContext: z.ZodObject<{
|
|
163757
|
+
createdAt: z.ZodDate;
|
|
163758
|
+
definition: z.ZodString;
|
|
163759
|
+
dependencies: z.ZodArray<z.ZodObject<{
|
|
163760
|
+
packageName: z.ZodString;
|
|
163761
|
+
type: z.ZodLiteral<"npm">;
|
|
163762
|
+
version: z.ZodDefault<z.ZodString>;
|
|
163763
|
+
}, "strip", z.ZodTypeAny, {
|
|
163764
|
+
type: "npm";
|
|
163765
|
+
version: string;
|
|
163766
|
+
packageName: string;
|
|
163767
|
+
}, {
|
|
163768
|
+
type: "npm";
|
|
163769
|
+
packageName: string;
|
|
163770
|
+
version?: string | undefined;
|
|
163771
|
+
}>, "many">;
|
|
163772
|
+
designSystemId: z.ZodString;
|
|
163773
|
+
id: z.ZodString;
|
|
163774
|
+
meta: z.ZodObject<{
|
|
163775
|
+
name: z.ZodString;
|
|
163776
|
+
description: z.ZodOptional<z.ZodString>;
|
|
163777
|
+
}, "strip", z.ZodTypeAny, {
|
|
163778
|
+
name: string;
|
|
163779
|
+
description?: string | undefined;
|
|
163780
|
+
}, {
|
|
163781
|
+
name: string;
|
|
163782
|
+
description?: string | undefined;
|
|
163783
|
+
}>;
|
|
163784
|
+
name: z.ZodString;
|
|
163785
|
+
npmProxySettings: z.ZodIntersection<z.ZodObject<{
|
|
163786
|
+
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
163787
|
+
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
163788
|
+
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
163789
|
+
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
163790
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
163791
|
+
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
163792
|
+
}, "strip", z.ZodTypeAny, {
|
|
163793
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
163794
|
+
enabledScopes: string[];
|
|
163795
|
+
bypassProxy: boolean;
|
|
163796
|
+
customRegistryUrl?: string | undefined;
|
|
163797
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
163798
|
+
npmProxyVersion?: number | undefined;
|
|
163799
|
+
}, {
|
|
163800
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
163801
|
+
enabledScopes: string[];
|
|
163802
|
+
customRegistryUrl?: string | undefined;
|
|
163803
|
+
bypassProxy?: boolean | undefined;
|
|
163804
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
163805
|
+
npmProxyVersion?: number | undefined;
|
|
163806
|
+
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
163807
|
+
authType: z.ZodLiteral<"Basic">;
|
|
163808
|
+
username: z.ZodString;
|
|
163809
|
+
password: z.ZodString;
|
|
163810
|
+
}, "strip", z.ZodTypeAny, {
|
|
163811
|
+
password: string;
|
|
163812
|
+
username: string;
|
|
163813
|
+
authType: "Basic";
|
|
163814
|
+
}, {
|
|
163815
|
+
password: string;
|
|
163816
|
+
username: string;
|
|
163817
|
+
authType: "Basic";
|
|
163818
|
+
}>, z.ZodObject<{
|
|
163819
|
+
authType: z.ZodLiteral<"Bearer">;
|
|
163820
|
+
accessToken: z.ZodString;
|
|
163821
|
+
}, "strip", z.ZodTypeAny, {
|
|
163822
|
+
accessToken: string;
|
|
163823
|
+
authType: "Bearer";
|
|
163824
|
+
}, {
|
|
163825
|
+
accessToken: string;
|
|
163826
|
+
authType: "Bearer";
|
|
163827
|
+
}>, z.ZodObject<{
|
|
163828
|
+
authType: z.ZodLiteral<"None">;
|
|
163829
|
+
}, "strip", z.ZodTypeAny, {
|
|
163830
|
+
authType: "None";
|
|
163831
|
+
}, {
|
|
163832
|
+
authType: "None";
|
|
163833
|
+
}>, z.ZodObject<{
|
|
163834
|
+
authType: z.ZodLiteral<"Custom">;
|
|
163835
|
+
authHeaderName: z.ZodString;
|
|
163836
|
+
authHeaderValue: z.ZodString;
|
|
163837
|
+
}, "strip", z.ZodTypeAny, {
|
|
163838
|
+
authType: "Custom";
|
|
163839
|
+
authHeaderName: string;
|
|
163840
|
+
authHeaderValue: string;
|
|
163841
|
+
}, {
|
|
163842
|
+
authType: "Custom";
|
|
163843
|
+
authHeaderName: string;
|
|
163844
|
+
authHeaderValue: string;
|
|
163845
|
+
}>]>>;
|
|
163846
|
+
platform: z.ZodEnum<["react", "vue", "angular"]>;
|
|
163847
|
+
styling: z.ZodEnum<["css", "tailwind"]>;
|
|
163848
|
+
tailwindConfig: z.ZodOptional<z.ZodObject<{
|
|
163849
|
+
content: z.ZodString;
|
|
163850
|
+
version: z.ZodString;
|
|
163851
|
+
}, "strip", z.ZodTypeAny, {
|
|
163852
|
+
version: string;
|
|
163853
|
+
content: string;
|
|
163854
|
+
}, {
|
|
163855
|
+
version: string;
|
|
163856
|
+
content: string;
|
|
163857
|
+
}>>;
|
|
163858
|
+
updatedAt: z.ZodDate;
|
|
163859
|
+
workspaceId: z.ZodString;
|
|
163860
|
+
}, "strip", z.ZodTypeAny, {
|
|
163861
|
+
id: string;
|
|
163862
|
+
name: string;
|
|
163863
|
+
createdAt: Date;
|
|
163864
|
+
updatedAt: Date;
|
|
163865
|
+
workspaceId: string;
|
|
163866
|
+
designSystemId: string;
|
|
163867
|
+
dependencies: {
|
|
163868
|
+
type: "npm";
|
|
163869
|
+
version: string;
|
|
163870
|
+
packageName: string;
|
|
163871
|
+
}[];
|
|
163872
|
+
meta: {
|
|
163873
|
+
name: string;
|
|
163874
|
+
description?: string | undefined;
|
|
163875
|
+
};
|
|
163876
|
+
definition: string;
|
|
163877
|
+
npmProxySettings: {
|
|
163878
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
163879
|
+
enabledScopes: string[];
|
|
163880
|
+
bypassProxy: boolean;
|
|
163881
|
+
customRegistryUrl?: string | undefined;
|
|
163882
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
163883
|
+
npmProxyVersion?: number | undefined;
|
|
163884
|
+
} & ({
|
|
163885
|
+
password: string;
|
|
163886
|
+
username: string;
|
|
163887
|
+
authType: "Basic";
|
|
163888
|
+
} | {
|
|
163889
|
+
accessToken: string;
|
|
163890
|
+
authType: "Bearer";
|
|
163891
|
+
} | {
|
|
163892
|
+
authType: "None";
|
|
163893
|
+
} | {
|
|
163894
|
+
authType: "Custom";
|
|
163895
|
+
authHeaderName: string;
|
|
163896
|
+
authHeaderValue: string;
|
|
163897
|
+
});
|
|
163898
|
+
platform: "react" | "vue" | "angular";
|
|
163899
|
+
styling: "css" | "tailwind";
|
|
163900
|
+
tailwindConfig?: {
|
|
163901
|
+
version: string;
|
|
163902
|
+
content: string;
|
|
163903
|
+
} | undefined;
|
|
163904
|
+
}, {
|
|
163905
|
+
id: string;
|
|
163906
|
+
name: string;
|
|
163907
|
+
createdAt: Date;
|
|
163908
|
+
updatedAt: Date;
|
|
163909
|
+
workspaceId: string;
|
|
163910
|
+
designSystemId: string;
|
|
163911
|
+
dependencies: {
|
|
163912
|
+
type: "npm";
|
|
163913
|
+
packageName: string;
|
|
163914
|
+
version?: string | undefined;
|
|
163915
|
+
}[];
|
|
163916
|
+
meta: {
|
|
163917
|
+
name: string;
|
|
163918
|
+
description?: string | undefined;
|
|
163919
|
+
};
|
|
163920
|
+
definition: string;
|
|
163921
|
+
npmProxySettings: {
|
|
163922
|
+
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
163923
|
+
enabledScopes: string[];
|
|
163924
|
+
customRegistryUrl?: string | undefined;
|
|
163925
|
+
bypassProxy?: boolean | undefined;
|
|
163926
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
163927
|
+
npmProxyVersion?: number | undefined;
|
|
163928
|
+
} & ({
|
|
163929
|
+
password: string;
|
|
163930
|
+
username: string;
|
|
163931
|
+
authType: "Basic";
|
|
163932
|
+
} | {
|
|
163933
|
+
accessToken: string;
|
|
163934
|
+
authType: "Bearer";
|
|
163935
|
+
} | {
|
|
163936
|
+
authType: "None";
|
|
163937
|
+
} | {
|
|
163938
|
+
authType: "Custom";
|
|
163939
|
+
authHeaderName: string;
|
|
163940
|
+
authHeaderValue: string;
|
|
163941
|
+
});
|
|
163942
|
+
platform: "react" | "vue" | "angular";
|
|
163943
|
+
styling: "css" | "tailwind";
|
|
163944
|
+
tailwindConfig?: {
|
|
163945
|
+
version: string;
|
|
163946
|
+
content: string;
|
|
163947
|
+
} | undefined;
|
|
163948
|
+
}>;
|
|
163949
|
+
type ForgeProjectContext = z.infer<typeof ForgeProjectContext>;
|
|
163950
|
+
type CreateForgeProjectContext = Omit<DbCreateInputOmit<ForgeProjectContext>, "workspaceId">;
|
|
163951
|
+
type UpdateForgeProjectContext = Omit<DbUpdate<ForgeProjectContext>, "workspaceId">;
|
|
163952
|
+
|
|
163953
|
+
declare const ForgeProjectIterationMergeMeta: z.ZodObject<{
|
|
163954
|
+
mergeByUserId: z.ZodString;
|
|
163955
|
+
mergeAt: z.ZodDate;
|
|
163956
|
+
}, "strip", z.ZodTypeAny, {
|
|
163957
|
+
mergeByUserId: string;
|
|
163958
|
+
mergeAt: Date;
|
|
163959
|
+
}, {
|
|
163960
|
+
mergeByUserId: string;
|
|
163961
|
+
mergeAt: Date;
|
|
163962
|
+
}>;
|
|
163963
|
+
declare const ForgeProjectIteration: z.ZodObject<{
|
|
163964
|
+
branchId: z.ZodOptional<z.ZodString>;
|
|
163965
|
+
buildArtifactId: z.ZodString;
|
|
163966
|
+
createdAt: z.ZodDate;
|
|
163967
|
+
fpId: z.ZodString;
|
|
163968
|
+
id: z.ZodString;
|
|
163969
|
+
locked: z.ZodBoolean;
|
|
163970
|
+
messages: z.ZodArray<z.ZodObject<{
|
|
163971
|
+
id: z.ZodString;
|
|
163972
|
+
createdAt: z.ZodDate;
|
|
163973
|
+
participantId: z.ZodString;
|
|
163974
|
+
participant: z.ZodObject<{
|
|
163975
|
+
id: z.ZodString;
|
|
163976
|
+
agentId: z.ZodOptional<z.ZodString>;
|
|
163977
|
+
agent: z.ZodOptional<z.ZodObject<{
|
|
163978
|
+
avatar: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
163979
|
+
headType: z.ZodString;
|
|
163980
|
+
hairType: z.ZodString;
|
|
163981
|
+
accessory1Type: z.ZodString;
|
|
163982
|
+
accessory2Type: z.ZodString;
|
|
163983
|
+
}, "strip", z.ZodTypeAny, {
|
|
163984
|
+
headType: string;
|
|
163985
|
+
hairType: string;
|
|
163986
|
+
accessory1Type: string;
|
|
163987
|
+
accessory2Type: string;
|
|
163988
|
+
}, {
|
|
163989
|
+
headType: string;
|
|
163990
|
+
hairType: string;
|
|
163991
|
+
accessory1Type: string;
|
|
163992
|
+
accessory2Type: string;
|
|
163993
|
+
}>]>;
|
|
163994
|
+
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
163995
|
+
behavior: z.ZodEnum<["coder", "writer", "designer"]>;
|
|
163996
|
+
id: z.ZodString;
|
|
163997
|
+
name: z.ZodString;
|
|
163998
|
+
personality: z.ZodEnum<["neutral", "assertive", "crazy"]>;
|
|
163999
|
+
projectId: z.ZodString;
|
|
164000
|
+
}, "strip", z.ZodTypeAny, {
|
|
164001
|
+
avatar: string | {
|
|
164002
|
+
headType: string;
|
|
164003
|
+
hairType: string;
|
|
164004
|
+
accessory1Type: string;
|
|
164005
|
+
accessory2Type: string;
|
|
164006
|
+
};
|
|
164007
|
+
id: string;
|
|
164008
|
+
name: string;
|
|
164009
|
+
behavior: "designer" | "coder" | "writer";
|
|
164010
|
+
projectId: string;
|
|
164011
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164012
|
+
avatarUrl?: string | undefined;
|
|
164013
|
+
}, {
|
|
164014
|
+
avatar: string | {
|
|
164015
|
+
headType: string;
|
|
164016
|
+
hairType: string;
|
|
164017
|
+
accessory1Type: string;
|
|
164018
|
+
accessory2Type: string;
|
|
164019
|
+
};
|
|
164020
|
+
id: string;
|
|
164021
|
+
name: string;
|
|
164022
|
+
behavior: "designer" | "coder" | "writer";
|
|
164023
|
+
projectId: string;
|
|
164024
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164025
|
+
avatarUrl?: string | undefined;
|
|
164026
|
+
}>>;
|
|
164027
|
+
projectIterationId: z.ZodString;
|
|
164028
|
+
role: z.ZodEnum<["editor", "viewer"]>;
|
|
164029
|
+
type: z.ZodEnum<["Agent", "User"]>;
|
|
164030
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
164031
|
+
user: z.ZodOptional<z.ZodObject<{
|
|
164032
|
+
id: z.ZodString;
|
|
164033
|
+
email: z.ZodString;
|
|
164034
|
+
createdAt: z.ZodDate;
|
|
164035
|
+
profile: z.ZodObject<{
|
|
164036
|
+
name: z.ZodString;
|
|
164037
|
+
avatar: z.ZodOptional<z.ZodString>;
|
|
164038
|
+
nickname: z.ZodOptional<z.ZodString>;
|
|
164039
|
+
onboarding: z.ZodOptional<z.ZodObject<{
|
|
164040
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
164041
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
164042
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
164043
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
164044
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
164045
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
164046
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
164047
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
164048
|
+
defaultDestination: z.ZodOptional<z.ZodString>;
|
|
164049
|
+
figmaUrl: z.ZodOptional<z.ZodString>;
|
|
164050
|
+
isPageDraftOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
164051
|
+
isApprovalsOnboardingFinished: z.ZodOptional<z.ZodBoolean>;
|
|
164052
|
+
}, "strip", z.ZodTypeAny, {
|
|
164053
|
+
companyName?: string | undefined;
|
|
164054
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164055
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164056
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164057
|
+
jobTitle?: string | undefined;
|
|
164058
|
+
phase?: string | undefined;
|
|
164059
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164060
|
+
designSystemName?: string | undefined;
|
|
164061
|
+
defaultDestination?: string | undefined;
|
|
164062
|
+
figmaUrl?: string | undefined;
|
|
164063
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164064
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164065
|
+
}, {
|
|
164066
|
+
companyName?: string | undefined;
|
|
164067
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164068
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164069
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164070
|
+
jobTitle?: string | undefined;
|
|
164071
|
+
phase?: string | undefined;
|
|
164072
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164073
|
+
designSystemName?: string | undefined;
|
|
164074
|
+
defaultDestination?: string | undefined;
|
|
164075
|
+
figmaUrl?: string | undefined;
|
|
164076
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164077
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164078
|
+
}>>;
|
|
164079
|
+
theme: z.ZodOptional<z.ZodObject<{
|
|
164080
|
+
preset: z.ZodOptional<z.ZodEnum<["Custom", "Default", "HighContrast", "DefaultDark", "HighContrastDark", "SpaceBlue", "DarkGrey", "SystemPreference", "Sepia"]>>;
|
|
164081
|
+
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
164082
|
+
accentColor: z.ZodOptional<z.ZodString>;
|
|
164083
|
+
contrast: z.ZodOptional<z.ZodNumber>;
|
|
164084
|
+
isSecondaryEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
164085
|
+
secondaryBackgroundColor: z.ZodOptional<z.ZodString>;
|
|
164086
|
+
secondaryContrast: z.ZodOptional<z.ZodNumber>;
|
|
164087
|
+
isEditorWhite: z.ZodOptional<z.ZodBoolean>;
|
|
164088
|
+
}, "strip", z.ZodTypeAny, {
|
|
164089
|
+
backgroundColor?: string | undefined;
|
|
164090
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164091
|
+
accentColor?: string | undefined;
|
|
164092
|
+
contrast?: number | undefined;
|
|
164093
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164094
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164095
|
+
secondaryContrast?: number | undefined;
|
|
164096
|
+
isEditorWhite?: boolean | undefined;
|
|
164097
|
+
}, {
|
|
164098
|
+
backgroundColor?: string | undefined;
|
|
164099
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164100
|
+
accentColor?: string | undefined;
|
|
164101
|
+
contrast?: number | undefined;
|
|
164102
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164103
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164104
|
+
secondaryContrast?: number | undefined;
|
|
164105
|
+
isEditorWhite?: boolean | undefined;
|
|
164106
|
+
}>>;
|
|
164107
|
+
}, "strip", z.ZodTypeAny, {
|
|
164108
|
+
name: string;
|
|
164109
|
+
avatar?: string | undefined;
|
|
164110
|
+
nickname?: string | undefined;
|
|
164111
|
+
theme?: {
|
|
164112
|
+
backgroundColor?: string | undefined;
|
|
164113
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164114
|
+
accentColor?: string | undefined;
|
|
164115
|
+
contrast?: number | undefined;
|
|
164116
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164117
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164118
|
+
secondaryContrast?: number | undefined;
|
|
164119
|
+
isEditorWhite?: boolean | undefined;
|
|
164120
|
+
} | undefined;
|
|
164121
|
+
onboarding?: {
|
|
164122
|
+
companyName?: string | undefined;
|
|
164123
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164124
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164125
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164126
|
+
jobTitle?: string | undefined;
|
|
164127
|
+
phase?: string | undefined;
|
|
164128
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164129
|
+
designSystemName?: string | undefined;
|
|
164130
|
+
defaultDestination?: string | undefined;
|
|
164131
|
+
figmaUrl?: string | undefined;
|
|
164132
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164133
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164134
|
+
} | undefined;
|
|
164135
|
+
}, {
|
|
164136
|
+
name: string;
|
|
164137
|
+
avatar?: string | undefined;
|
|
164138
|
+
nickname?: string | undefined;
|
|
164139
|
+
theme?: {
|
|
164140
|
+
backgroundColor?: string | undefined;
|
|
164141
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164142
|
+
accentColor?: string | undefined;
|
|
164143
|
+
contrast?: number | undefined;
|
|
164144
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164145
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164146
|
+
secondaryContrast?: number | undefined;
|
|
164147
|
+
isEditorWhite?: boolean | undefined;
|
|
164148
|
+
} | undefined;
|
|
164149
|
+
onboarding?: {
|
|
164150
|
+
companyName?: string | undefined;
|
|
164151
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164152
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164153
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164154
|
+
jobTitle?: string | undefined;
|
|
164155
|
+
phase?: string | undefined;
|
|
164156
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164157
|
+
designSystemName?: string | undefined;
|
|
164158
|
+
defaultDestination?: string | undefined;
|
|
164159
|
+
figmaUrl?: string | undefined;
|
|
164160
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164161
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164162
|
+
} | undefined;
|
|
164163
|
+
}>;
|
|
164164
|
+
loggedOutAt: z.ZodOptional<z.ZodDate>;
|
|
164165
|
+
isProtected: z.ZodBoolean;
|
|
164166
|
+
source: z.ZodOptional<z.ZodEnum<["SignUp", "Invite", "SSO"]>>;
|
|
164167
|
+
}, "strip", z.ZodTypeAny, {
|
|
164168
|
+
email: string;
|
|
164169
|
+
id: string;
|
|
164170
|
+
profile: {
|
|
164171
|
+
name: string;
|
|
164172
|
+
avatar?: string | undefined;
|
|
164173
|
+
nickname?: string | undefined;
|
|
164174
|
+
theme?: {
|
|
164175
|
+
backgroundColor?: string | undefined;
|
|
164176
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164177
|
+
accentColor?: string | undefined;
|
|
164178
|
+
contrast?: number | undefined;
|
|
164179
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164180
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164181
|
+
secondaryContrast?: number | undefined;
|
|
164182
|
+
isEditorWhite?: boolean | undefined;
|
|
164183
|
+
} | undefined;
|
|
164184
|
+
onboarding?: {
|
|
164185
|
+
companyName?: string | undefined;
|
|
164186
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164187
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164188
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164189
|
+
jobTitle?: string | undefined;
|
|
164190
|
+
phase?: string | undefined;
|
|
164191
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164192
|
+
designSystemName?: string | undefined;
|
|
164193
|
+
defaultDestination?: string | undefined;
|
|
164194
|
+
figmaUrl?: string | undefined;
|
|
164195
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164196
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164197
|
+
} | undefined;
|
|
164198
|
+
};
|
|
164199
|
+
createdAt: Date;
|
|
164200
|
+
isProtected: boolean;
|
|
164201
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164202
|
+
loggedOutAt?: Date | undefined;
|
|
164203
|
+
}, {
|
|
164204
|
+
email: string;
|
|
164205
|
+
id: string;
|
|
164206
|
+
profile: {
|
|
164207
|
+
name: string;
|
|
164208
|
+
avatar?: string | undefined;
|
|
164209
|
+
nickname?: string | undefined;
|
|
164210
|
+
theme?: {
|
|
164211
|
+
backgroundColor?: string | undefined;
|
|
164212
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164213
|
+
accentColor?: string | undefined;
|
|
164214
|
+
contrast?: number | undefined;
|
|
164215
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164216
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164217
|
+
secondaryContrast?: number | undefined;
|
|
164218
|
+
isEditorWhite?: boolean | undefined;
|
|
164219
|
+
} | undefined;
|
|
164220
|
+
onboarding?: {
|
|
164221
|
+
companyName?: string | undefined;
|
|
164222
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164223
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164224
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164225
|
+
jobTitle?: string | undefined;
|
|
164226
|
+
phase?: string | undefined;
|
|
164227
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164228
|
+
designSystemName?: string | undefined;
|
|
164229
|
+
defaultDestination?: string | undefined;
|
|
164230
|
+
figmaUrl?: string | undefined;
|
|
164231
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164232
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164233
|
+
} | undefined;
|
|
164234
|
+
};
|
|
164235
|
+
createdAt: Date;
|
|
164236
|
+
isProtected: boolean;
|
|
164237
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164238
|
+
loggedOutAt?: Date | undefined;
|
|
164239
|
+
}>>;
|
|
164240
|
+
}, "strip", z.ZodTypeAny, {
|
|
164241
|
+
type: "User" | "Agent";
|
|
164242
|
+
id: string;
|
|
164243
|
+
role: "editor" | "viewer";
|
|
164244
|
+
projectIterationId: string;
|
|
164245
|
+
user?: {
|
|
164246
|
+
email: string;
|
|
164247
|
+
id: string;
|
|
164248
|
+
profile: {
|
|
164249
|
+
name: string;
|
|
164250
|
+
avatar?: string | undefined;
|
|
164251
|
+
nickname?: string | undefined;
|
|
164252
|
+
theme?: {
|
|
164253
|
+
backgroundColor?: string | undefined;
|
|
164254
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164255
|
+
accentColor?: string | undefined;
|
|
164256
|
+
contrast?: number | undefined;
|
|
164257
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164258
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164259
|
+
secondaryContrast?: number | undefined;
|
|
164260
|
+
isEditorWhite?: boolean | undefined;
|
|
164261
|
+
} | undefined;
|
|
164262
|
+
onboarding?: {
|
|
164263
|
+
companyName?: string | undefined;
|
|
164264
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164265
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164266
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164267
|
+
jobTitle?: string | undefined;
|
|
164268
|
+
phase?: string | undefined;
|
|
164269
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164270
|
+
designSystemName?: string | undefined;
|
|
164271
|
+
defaultDestination?: string | undefined;
|
|
164272
|
+
figmaUrl?: string | undefined;
|
|
164273
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164274
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164275
|
+
} | undefined;
|
|
164276
|
+
};
|
|
164277
|
+
createdAt: Date;
|
|
164278
|
+
isProtected: boolean;
|
|
164279
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164280
|
+
loggedOutAt?: Date | undefined;
|
|
164281
|
+
} | undefined;
|
|
164282
|
+
userId?: string | undefined;
|
|
164283
|
+
agentId?: string | undefined;
|
|
164284
|
+
agent?: {
|
|
164285
|
+
avatar: string | {
|
|
164286
|
+
headType: string;
|
|
164287
|
+
hairType: string;
|
|
164288
|
+
accessory1Type: string;
|
|
164289
|
+
accessory2Type: string;
|
|
164290
|
+
};
|
|
164291
|
+
id: string;
|
|
164292
|
+
name: string;
|
|
164293
|
+
behavior: "designer" | "coder" | "writer";
|
|
164294
|
+
projectId: string;
|
|
164295
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164296
|
+
avatarUrl?: string | undefined;
|
|
164297
|
+
} | undefined;
|
|
164298
|
+
}, {
|
|
164299
|
+
type: "User" | "Agent";
|
|
164300
|
+
id: string;
|
|
164301
|
+
role: "editor" | "viewer";
|
|
164302
|
+
projectIterationId: string;
|
|
164303
|
+
user?: {
|
|
164304
|
+
email: string;
|
|
164305
|
+
id: string;
|
|
164306
|
+
profile: {
|
|
164307
|
+
name: string;
|
|
164308
|
+
avatar?: string | undefined;
|
|
164309
|
+
nickname?: string | undefined;
|
|
164310
|
+
theme?: {
|
|
164311
|
+
backgroundColor?: string | undefined;
|
|
164312
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164313
|
+
accentColor?: string | undefined;
|
|
164314
|
+
contrast?: number | undefined;
|
|
164315
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164316
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164317
|
+
secondaryContrast?: number | undefined;
|
|
164318
|
+
isEditorWhite?: boolean | undefined;
|
|
164319
|
+
} | undefined;
|
|
164320
|
+
onboarding?: {
|
|
164321
|
+
companyName?: string | undefined;
|
|
164322
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164323
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164324
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164325
|
+
jobTitle?: string | undefined;
|
|
164326
|
+
phase?: string | undefined;
|
|
164327
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164328
|
+
designSystemName?: string | undefined;
|
|
164329
|
+
defaultDestination?: string | undefined;
|
|
164330
|
+
figmaUrl?: string | undefined;
|
|
164331
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164332
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164333
|
+
} | undefined;
|
|
164334
|
+
};
|
|
164335
|
+
createdAt: Date;
|
|
164336
|
+
isProtected: boolean;
|
|
164337
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164338
|
+
loggedOutAt?: Date | undefined;
|
|
164339
|
+
} | undefined;
|
|
164340
|
+
userId?: string | undefined;
|
|
164341
|
+
agentId?: string | undefined;
|
|
164342
|
+
agent?: {
|
|
164343
|
+
avatar: string | {
|
|
164344
|
+
headType: string;
|
|
164345
|
+
hairType: string;
|
|
164346
|
+
accessory1Type: string;
|
|
164347
|
+
accessory2Type: string;
|
|
164348
|
+
};
|
|
164349
|
+
id: string;
|
|
164350
|
+
name: string;
|
|
164351
|
+
behavior: "designer" | "coder" | "writer";
|
|
164352
|
+
projectId: string;
|
|
164353
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164354
|
+
avatarUrl?: string | undefined;
|
|
164355
|
+
} | undefined;
|
|
164356
|
+
}>;
|
|
164357
|
+
projectIterationId: z.ZodString;
|
|
164358
|
+
steps: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
164359
|
+
name: z.ZodString;
|
|
164360
|
+
text: z.ZodString;
|
|
164361
|
+
status: z.ZodEnum<["pending", "started", "completed", "error"]>;
|
|
164362
|
+
}, "strip", z.ZodTypeAny, {
|
|
164363
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164364
|
+
name: string;
|
|
164365
|
+
text: string;
|
|
164366
|
+
}, {
|
|
164367
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164368
|
+
name: string;
|
|
164369
|
+
text: string;
|
|
164370
|
+
}>, "many">>;
|
|
164371
|
+
type: z.ZodEnum<["note", "action", "steps"]>;
|
|
164372
|
+
text: z.ZodString;
|
|
164373
|
+
}, "strip", z.ZodTypeAny, {
|
|
164374
|
+
type: "steps" | "note" | "action";
|
|
164375
|
+
id: string;
|
|
164376
|
+
createdAt: Date;
|
|
164377
|
+
text: string;
|
|
164378
|
+
projectIterationId: string;
|
|
164379
|
+
participantId: string;
|
|
164380
|
+
participant: {
|
|
164381
|
+
type: "User" | "Agent";
|
|
164382
|
+
id: string;
|
|
164383
|
+
role: "editor" | "viewer";
|
|
164384
|
+
projectIterationId: string;
|
|
164385
|
+
user?: {
|
|
164386
|
+
email: string;
|
|
164387
|
+
id: string;
|
|
164388
|
+
profile: {
|
|
164389
|
+
name: string;
|
|
164390
|
+
avatar?: string | undefined;
|
|
164391
|
+
nickname?: string | undefined;
|
|
164392
|
+
theme?: {
|
|
164393
|
+
backgroundColor?: string | undefined;
|
|
164394
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164395
|
+
accentColor?: string | undefined;
|
|
164396
|
+
contrast?: number | undefined;
|
|
164397
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164398
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164399
|
+
secondaryContrast?: number | undefined;
|
|
164400
|
+
isEditorWhite?: boolean | undefined;
|
|
164401
|
+
} | undefined;
|
|
164402
|
+
onboarding?: {
|
|
164403
|
+
companyName?: string | undefined;
|
|
164404
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164405
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164406
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164407
|
+
jobTitle?: string | undefined;
|
|
164408
|
+
phase?: string | undefined;
|
|
164409
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164410
|
+
designSystemName?: string | undefined;
|
|
164411
|
+
defaultDestination?: string | undefined;
|
|
164412
|
+
figmaUrl?: string | undefined;
|
|
164413
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164414
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164415
|
+
} | undefined;
|
|
164416
|
+
};
|
|
164417
|
+
createdAt: Date;
|
|
164418
|
+
isProtected: boolean;
|
|
164419
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164420
|
+
loggedOutAt?: Date | undefined;
|
|
164421
|
+
} | undefined;
|
|
164422
|
+
userId?: string | undefined;
|
|
164423
|
+
agentId?: string | undefined;
|
|
164424
|
+
agent?: {
|
|
164425
|
+
avatar: string | {
|
|
164426
|
+
headType: string;
|
|
164427
|
+
hairType: string;
|
|
164428
|
+
accessory1Type: string;
|
|
164429
|
+
accessory2Type: string;
|
|
164430
|
+
};
|
|
164431
|
+
id: string;
|
|
164432
|
+
name: string;
|
|
164433
|
+
behavior: "designer" | "coder" | "writer";
|
|
164434
|
+
projectId: string;
|
|
164435
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164436
|
+
avatarUrl?: string | undefined;
|
|
164437
|
+
} | undefined;
|
|
164438
|
+
};
|
|
164439
|
+
steps?: {
|
|
164440
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164441
|
+
name: string;
|
|
164442
|
+
text: string;
|
|
164443
|
+
}[] | undefined;
|
|
164444
|
+
}, {
|
|
164445
|
+
type: "steps" | "note" | "action";
|
|
164446
|
+
id: string;
|
|
164447
|
+
createdAt: Date;
|
|
164448
|
+
text: string;
|
|
164449
|
+
projectIterationId: string;
|
|
164450
|
+
participantId: string;
|
|
164451
|
+
participant: {
|
|
164452
|
+
type: "User" | "Agent";
|
|
164453
|
+
id: string;
|
|
164454
|
+
role: "editor" | "viewer";
|
|
164455
|
+
projectIterationId: string;
|
|
164456
|
+
user?: {
|
|
164457
|
+
email: string;
|
|
164458
|
+
id: string;
|
|
164459
|
+
profile: {
|
|
164460
|
+
name: string;
|
|
164461
|
+
avatar?: string | undefined;
|
|
164462
|
+
nickname?: string | undefined;
|
|
164463
|
+
theme?: {
|
|
164464
|
+
backgroundColor?: string | undefined;
|
|
164465
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164466
|
+
accentColor?: string | undefined;
|
|
164467
|
+
contrast?: number | undefined;
|
|
164468
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164469
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164470
|
+
secondaryContrast?: number | undefined;
|
|
164471
|
+
isEditorWhite?: boolean | undefined;
|
|
164472
|
+
} | undefined;
|
|
164473
|
+
onboarding?: {
|
|
164474
|
+
companyName?: string | undefined;
|
|
164475
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164476
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164477
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164478
|
+
jobTitle?: string | undefined;
|
|
164479
|
+
phase?: string | undefined;
|
|
164480
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164481
|
+
designSystemName?: string | undefined;
|
|
164482
|
+
defaultDestination?: string | undefined;
|
|
164483
|
+
figmaUrl?: string | undefined;
|
|
164484
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164485
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164486
|
+
} | undefined;
|
|
164487
|
+
};
|
|
164488
|
+
createdAt: Date;
|
|
164489
|
+
isProtected: boolean;
|
|
164490
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164491
|
+
loggedOutAt?: Date | undefined;
|
|
164492
|
+
} | undefined;
|
|
164493
|
+
userId?: string | undefined;
|
|
164494
|
+
agentId?: string | undefined;
|
|
164495
|
+
agent?: {
|
|
164496
|
+
avatar: string | {
|
|
164497
|
+
headType: string;
|
|
164498
|
+
hairType: string;
|
|
164499
|
+
accessory1Type: string;
|
|
164500
|
+
accessory2Type: string;
|
|
164501
|
+
};
|
|
164502
|
+
id: string;
|
|
164503
|
+
name: string;
|
|
164504
|
+
behavior: "designer" | "coder" | "writer";
|
|
164505
|
+
projectId: string;
|
|
164506
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164507
|
+
avatarUrl?: string | undefined;
|
|
164508
|
+
} | undefined;
|
|
164509
|
+
};
|
|
164510
|
+
steps?: {
|
|
164511
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164512
|
+
name: string;
|
|
164513
|
+
text: string;
|
|
164514
|
+
}[] | undefined;
|
|
164515
|
+
}>, "many">;
|
|
164516
|
+
artifacts: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
164517
|
+
id: z.ZodString;
|
|
164518
|
+
createdAt: z.ZodDate;
|
|
164519
|
+
projectIterationId: z.ZodString;
|
|
164520
|
+
}, {
|
|
164521
|
+
type: z.ZodLiteral<"build">;
|
|
164522
|
+
participantId: z.ZodString;
|
|
164523
|
+
files: z.ZodArray<z.ZodObject<{
|
|
164524
|
+
path: z.ZodString;
|
|
164525
|
+
content: z.ZodString;
|
|
164526
|
+
isVisibleToUser: z.ZodOptional<z.ZodBoolean>;
|
|
164527
|
+
}, "strip", z.ZodTypeAny, {
|
|
164528
|
+
path: string;
|
|
164529
|
+
content: string;
|
|
164530
|
+
isVisibleToUser?: boolean | undefined;
|
|
164531
|
+
}, {
|
|
164532
|
+
path: string;
|
|
164533
|
+
content: string;
|
|
164534
|
+
isVisibleToUser?: boolean | undefined;
|
|
164535
|
+
}>, "many">;
|
|
164536
|
+
environment: z.ZodObject<{
|
|
164537
|
+
dependencies: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
164538
|
+
}, "strip", z.ZodTypeAny, {
|
|
164539
|
+
dependencies: Record<string, string>;
|
|
164540
|
+
}, {
|
|
164541
|
+
dependencies: Record<string, string>;
|
|
164542
|
+
}>;
|
|
164543
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164544
|
+
type: "build";
|
|
164545
|
+
files: {
|
|
164546
|
+
path: string;
|
|
164547
|
+
content: string;
|
|
164548
|
+
isVisibleToUser?: boolean | undefined;
|
|
164549
|
+
}[];
|
|
164550
|
+
id: string;
|
|
164551
|
+
createdAt: Date;
|
|
164552
|
+
environment: {
|
|
164553
|
+
dependencies: Record<string, string>;
|
|
164554
|
+
};
|
|
164555
|
+
projectIterationId: string;
|
|
164556
|
+
participantId: string;
|
|
164557
|
+
}, {
|
|
164558
|
+
type: "build";
|
|
164559
|
+
files: {
|
|
164560
|
+
path: string;
|
|
164561
|
+
content: string;
|
|
164562
|
+
isVisibleToUser?: boolean | undefined;
|
|
164563
|
+
}[];
|
|
164564
|
+
id: string;
|
|
164565
|
+
createdAt: Date;
|
|
164566
|
+
environment: {
|
|
164567
|
+
dependencies: Record<string, string>;
|
|
164568
|
+
};
|
|
164569
|
+
projectIterationId: string;
|
|
164570
|
+
participantId: string;
|
|
164571
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
164572
|
+
id: z.ZodString;
|
|
164573
|
+
createdAt: z.ZodDate;
|
|
164574
|
+
projectIterationId: z.ZodString;
|
|
164575
|
+
}, {
|
|
164576
|
+
type: z.ZodLiteral<"spec">;
|
|
164577
|
+
fileName: z.ZodString;
|
|
164578
|
+
yjsDocId: z.ZodString;
|
|
164579
|
+
markdownText: z.ZodString;
|
|
164580
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164581
|
+
type: "spec";
|
|
164582
|
+
id: string;
|
|
164583
|
+
createdAt: Date;
|
|
164584
|
+
fileName: string;
|
|
164585
|
+
projectIterationId: string;
|
|
164586
|
+
yjsDocId: string;
|
|
164587
|
+
markdownText: string;
|
|
164588
|
+
}, {
|
|
164589
|
+
type: "spec";
|
|
164590
|
+
id: string;
|
|
164591
|
+
createdAt: Date;
|
|
164592
|
+
fileName: string;
|
|
164593
|
+
projectIterationId: string;
|
|
164594
|
+
yjsDocId: string;
|
|
164595
|
+
markdownText: string;
|
|
164596
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
164597
|
+
id: z.ZodString;
|
|
164598
|
+
createdAt: z.ZodDate;
|
|
164599
|
+
projectIterationId: z.ZodString;
|
|
164600
|
+
}, {
|
|
164601
|
+
type: z.ZodLiteral<"figma/node">;
|
|
164602
|
+
figmaFileUrl: z.ZodString;
|
|
164603
|
+
figmaNodeId: z.ZodString;
|
|
164604
|
+
figmaFileName: z.ZodOptional<z.ZodString>;
|
|
164605
|
+
previewUrl: z.ZodOptional<z.ZodString>;
|
|
164606
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164607
|
+
type: "figma/node";
|
|
164608
|
+
id: string;
|
|
164609
|
+
createdAt: Date;
|
|
164610
|
+
projectIterationId: string;
|
|
164611
|
+
figmaFileUrl: string;
|
|
164612
|
+
figmaNodeId: string;
|
|
164613
|
+
previewUrl?: string | undefined;
|
|
164614
|
+
figmaFileName?: string | undefined;
|
|
164615
|
+
}, {
|
|
164616
|
+
type: "figma/node";
|
|
164617
|
+
id: string;
|
|
164618
|
+
createdAt: Date;
|
|
164619
|
+
projectIterationId: string;
|
|
164620
|
+
figmaFileUrl: string;
|
|
164621
|
+
figmaNodeId: string;
|
|
164622
|
+
previewUrl?: string | undefined;
|
|
164623
|
+
figmaFileName?: string | undefined;
|
|
164624
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
164625
|
+
id: z.ZodString;
|
|
164626
|
+
createdAt: z.ZodDate;
|
|
164627
|
+
projectIterationId: z.ZodString;
|
|
164628
|
+
}, {
|
|
164629
|
+
type: z.ZodEnum<["file/text", "file/pdf", "file/image"]>;
|
|
164630
|
+
fileName: z.ZodString;
|
|
164631
|
+
uploadedFileUrl: z.ZodString;
|
|
164632
|
+
}>, "strip", z.ZodTypeAny, {
|
|
164633
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
164634
|
+
id: string;
|
|
164635
|
+
createdAt: Date;
|
|
164636
|
+
fileName: string;
|
|
164637
|
+
projectIterationId: string;
|
|
164638
|
+
uploadedFileUrl: string;
|
|
164639
|
+
}, {
|
|
164640
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
164641
|
+
id: string;
|
|
164642
|
+
createdAt: Date;
|
|
164643
|
+
fileName: string;
|
|
164644
|
+
projectIterationId: string;
|
|
164645
|
+
uploadedFileUrl: string;
|
|
164646
|
+
}>]>, "many">;
|
|
164647
|
+
previousIterationId: z.ZodOptional<z.ZodString>;
|
|
164648
|
+
mergeMeta: z.ZodOptional<z.ZodObject<{
|
|
164649
|
+
mergeByUserId: z.ZodString;
|
|
164650
|
+
mergeAt: z.ZodDate;
|
|
164651
|
+
}, "strip", z.ZodTypeAny, {
|
|
164652
|
+
mergeByUserId: string;
|
|
164653
|
+
mergeAt: Date;
|
|
164654
|
+
}, {
|
|
164655
|
+
mergeByUserId: string;
|
|
164656
|
+
mergeAt: Date;
|
|
164657
|
+
}>>;
|
|
164658
|
+
}, "strip", z.ZodTypeAny, {
|
|
164659
|
+
id: string;
|
|
164660
|
+
messages: {
|
|
164661
|
+
type: "steps" | "note" | "action";
|
|
164662
|
+
id: string;
|
|
164663
|
+
createdAt: Date;
|
|
164664
|
+
text: string;
|
|
164665
|
+
projectIterationId: string;
|
|
164666
|
+
participantId: string;
|
|
164667
|
+
participant: {
|
|
164668
|
+
type: "User" | "Agent";
|
|
164669
|
+
id: string;
|
|
164670
|
+
role: "editor" | "viewer";
|
|
164671
|
+
projectIterationId: string;
|
|
164672
|
+
user?: {
|
|
164673
|
+
email: string;
|
|
164674
|
+
id: string;
|
|
164675
|
+
profile: {
|
|
164676
|
+
name: string;
|
|
164677
|
+
avatar?: string | undefined;
|
|
164678
|
+
nickname?: string | undefined;
|
|
164679
|
+
theme?: {
|
|
164680
|
+
backgroundColor?: string | undefined;
|
|
164681
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164682
|
+
accentColor?: string | undefined;
|
|
164683
|
+
contrast?: number | undefined;
|
|
164684
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164685
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164686
|
+
secondaryContrast?: number | undefined;
|
|
164687
|
+
isEditorWhite?: boolean | undefined;
|
|
164688
|
+
} | undefined;
|
|
164689
|
+
onboarding?: {
|
|
164690
|
+
companyName?: string | undefined;
|
|
164691
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164692
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164693
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164694
|
+
jobTitle?: string | undefined;
|
|
164695
|
+
phase?: string | undefined;
|
|
164696
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164697
|
+
designSystemName?: string | undefined;
|
|
164698
|
+
defaultDestination?: string | undefined;
|
|
164699
|
+
figmaUrl?: string | undefined;
|
|
164700
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164701
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164702
|
+
} | undefined;
|
|
164703
|
+
};
|
|
164704
|
+
createdAt: Date;
|
|
164705
|
+
isProtected: boolean;
|
|
164706
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164707
|
+
loggedOutAt?: Date | undefined;
|
|
164708
|
+
} | undefined;
|
|
164709
|
+
userId?: string | undefined;
|
|
164710
|
+
agentId?: string | undefined;
|
|
164711
|
+
agent?: {
|
|
164712
|
+
avatar: string | {
|
|
164713
|
+
headType: string;
|
|
164714
|
+
hairType: string;
|
|
164715
|
+
accessory1Type: string;
|
|
164716
|
+
accessory2Type: string;
|
|
164717
|
+
};
|
|
164718
|
+
id: string;
|
|
164719
|
+
name: string;
|
|
164720
|
+
behavior: "designer" | "coder" | "writer";
|
|
164721
|
+
projectId: string;
|
|
164722
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164723
|
+
avatarUrl?: string | undefined;
|
|
164724
|
+
} | undefined;
|
|
164725
|
+
};
|
|
164726
|
+
steps?: {
|
|
164727
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164728
|
+
name: string;
|
|
164729
|
+
text: string;
|
|
164730
|
+
}[] | undefined;
|
|
164731
|
+
}[];
|
|
164732
|
+
createdAt: Date;
|
|
164733
|
+
buildArtifactId: string;
|
|
164734
|
+
fpId: string;
|
|
164735
|
+
locked: boolean;
|
|
164736
|
+
artifacts: ({
|
|
164737
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
164738
|
+
id: string;
|
|
164739
|
+
createdAt: Date;
|
|
164740
|
+
fileName: string;
|
|
164741
|
+
projectIterationId: string;
|
|
164742
|
+
uploadedFileUrl: string;
|
|
164743
|
+
} | {
|
|
164744
|
+
type: "figma/node";
|
|
164745
|
+
id: string;
|
|
164746
|
+
createdAt: Date;
|
|
164747
|
+
projectIterationId: string;
|
|
164748
|
+
figmaFileUrl: string;
|
|
164749
|
+
figmaNodeId: string;
|
|
164750
|
+
previewUrl?: string | undefined;
|
|
164751
|
+
figmaFileName?: string | undefined;
|
|
164752
|
+
} | {
|
|
164753
|
+
type: "spec";
|
|
164754
|
+
id: string;
|
|
164755
|
+
createdAt: Date;
|
|
164756
|
+
fileName: string;
|
|
164757
|
+
projectIterationId: string;
|
|
164758
|
+
yjsDocId: string;
|
|
164759
|
+
markdownText: string;
|
|
164760
|
+
} | {
|
|
164761
|
+
type: "build";
|
|
164762
|
+
files: {
|
|
164763
|
+
path: string;
|
|
164764
|
+
content: string;
|
|
164765
|
+
isVisibleToUser?: boolean | undefined;
|
|
164766
|
+
}[];
|
|
164767
|
+
id: string;
|
|
164768
|
+
createdAt: Date;
|
|
164769
|
+
environment: {
|
|
164770
|
+
dependencies: Record<string, string>;
|
|
164771
|
+
};
|
|
164772
|
+
projectIterationId: string;
|
|
164773
|
+
participantId: string;
|
|
164774
|
+
})[];
|
|
164775
|
+
branchId?: string | undefined;
|
|
164776
|
+
previousIterationId?: string | undefined;
|
|
164777
|
+
mergeMeta?: {
|
|
164778
|
+
mergeByUserId: string;
|
|
164779
|
+
mergeAt: Date;
|
|
164780
|
+
} | undefined;
|
|
164781
|
+
}, {
|
|
164782
|
+
id: string;
|
|
164783
|
+
messages: {
|
|
164784
|
+
type: "steps" | "note" | "action";
|
|
164785
|
+
id: string;
|
|
164786
|
+
createdAt: Date;
|
|
164787
|
+
text: string;
|
|
164788
|
+
projectIterationId: string;
|
|
164789
|
+
participantId: string;
|
|
164790
|
+
participant: {
|
|
164791
|
+
type: "User" | "Agent";
|
|
164792
|
+
id: string;
|
|
164793
|
+
role: "editor" | "viewer";
|
|
164794
|
+
projectIterationId: string;
|
|
164795
|
+
user?: {
|
|
164796
|
+
email: string;
|
|
164797
|
+
id: string;
|
|
164798
|
+
profile: {
|
|
164799
|
+
name: string;
|
|
164800
|
+
avatar?: string | undefined;
|
|
164801
|
+
nickname?: string | undefined;
|
|
164802
|
+
theme?: {
|
|
164803
|
+
backgroundColor?: string | undefined;
|
|
164804
|
+
preset?: "Custom" | "Default" | "HighContrast" | "DefaultDark" | "HighContrastDark" | "SpaceBlue" | "DarkGrey" | "SystemPreference" | "Sepia" | undefined;
|
|
164805
|
+
accentColor?: string | undefined;
|
|
164806
|
+
contrast?: number | undefined;
|
|
164807
|
+
isSecondaryEnabled?: boolean | undefined;
|
|
164808
|
+
secondaryBackgroundColor?: string | undefined;
|
|
164809
|
+
secondaryContrast?: number | undefined;
|
|
164810
|
+
isEditorWhite?: boolean | undefined;
|
|
164811
|
+
} | undefined;
|
|
164812
|
+
onboarding?: {
|
|
164813
|
+
companyName?: string | undefined;
|
|
164814
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
164815
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
164816
|
+
department?: "Other" | "Design" | "Engineering" | "Product" | "Brand" | undefined;
|
|
164817
|
+
jobTitle?: string | undefined;
|
|
164818
|
+
phase?: string | undefined;
|
|
164819
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
164820
|
+
designSystemName?: string | undefined;
|
|
164821
|
+
defaultDestination?: string | undefined;
|
|
164822
|
+
figmaUrl?: string | undefined;
|
|
164823
|
+
isPageDraftOnboardingFinished?: boolean | undefined;
|
|
164824
|
+
isApprovalsOnboardingFinished?: boolean | undefined;
|
|
164825
|
+
} | undefined;
|
|
164826
|
+
};
|
|
164827
|
+
createdAt: Date;
|
|
164828
|
+
isProtected: boolean;
|
|
164829
|
+
source?: "SignUp" | "Invite" | "SSO" | undefined;
|
|
164830
|
+
loggedOutAt?: Date | undefined;
|
|
164831
|
+
} | undefined;
|
|
164832
|
+
userId?: string | undefined;
|
|
164833
|
+
agentId?: string | undefined;
|
|
164834
|
+
agent?: {
|
|
164835
|
+
avatar: string | {
|
|
164836
|
+
headType: string;
|
|
164837
|
+
hairType: string;
|
|
164838
|
+
accessory1Type: string;
|
|
164839
|
+
accessory2Type: string;
|
|
164840
|
+
};
|
|
164841
|
+
id: string;
|
|
164842
|
+
name: string;
|
|
164843
|
+
behavior: "designer" | "coder" | "writer";
|
|
164844
|
+
projectId: string;
|
|
164845
|
+
personality: "neutral" | "assertive" | "crazy";
|
|
164846
|
+
avatarUrl?: string | undefined;
|
|
164847
|
+
} | undefined;
|
|
164848
|
+
};
|
|
164849
|
+
steps?: {
|
|
164850
|
+
status: "error" | "pending" | "started" | "completed";
|
|
164851
|
+
name: string;
|
|
164852
|
+
text: string;
|
|
164853
|
+
}[] | undefined;
|
|
164854
|
+
}[];
|
|
164855
|
+
createdAt: Date;
|
|
164856
|
+
buildArtifactId: string;
|
|
164857
|
+
fpId: string;
|
|
164858
|
+
locked: boolean;
|
|
164859
|
+
artifacts: ({
|
|
164860
|
+
type: "file/text" | "file/pdf" | "file/image";
|
|
164861
|
+
id: string;
|
|
164862
|
+
createdAt: Date;
|
|
164863
|
+
fileName: string;
|
|
164864
|
+
projectIterationId: string;
|
|
164865
|
+
uploadedFileUrl: string;
|
|
164866
|
+
} | {
|
|
164867
|
+
type: "figma/node";
|
|
164868
|
+
id: string;
|
|
164869
|
+
createdAt: Date;
|
|
164870
|
+
projectIterationId: string;
|
|
164871
|
+
figmaFileUrl: string;
|
|
164872
|
+
figmaNodeId: string;
|
|
164873
|
+
previewUrl?: string | undefined;
|
|
164874
|
+
figmaFileName?: string | undefined;
|
|
164875
|
+
} | {
|
|
164876
|
+
type: "spec";
|
|
164877
|
+
id: string;
|
|
164878
|
+
createdAt: Date;
|
|
164879
|
+
fileName: string;
|
|
164880
|
+
projectIterationId: string;
|
|
164881
|
+
yjsDocId: string;
|
|
164882
|
+
markdownText: string;
|
|
164883
|
+
} | {
|
|
164884
|
+
type: "build";
|
|
164885
|
+
files: {
|
|
164886
|
+
path: string;
|
|
164887
|
+
content: string;
|
|
164888
|
+
isVisibleToUser?: boolean | undefined;
|
|
164889
|
+
}[];
|
|
164890
|
+
id: string;
|
|
164891
|
+
createdAt: Date;
|
|
164892
|
+
environment: {
|
|
164893
|
+
dependencies: Record<string, string>;
|
|
164894
|
+
};
|
|
164895
|
+
projectIterationId: string;
|
|
164896
|
+
participantId: string;
|
|
164897
|
+
})[];
|
|
164898
|
+
branchId?: string | undefined;
|
|
164899
|
+
previousIterationId?: string | undefined;
|
|
164900
|
+
mergeMeta?: {
|
|
164901
|
+
mergeByUserId: string;
|
|
164902
|
+
mergeAt: Date;
|
|
164903
|
+
} | undefined;
|
|
164904
|
+
}>;
|
|
164905
|
+
type ForgeProjectIteration = z.infer<typeof ForgeProjectIteration>;
|
|
164906
|
+
|
|
164907
|
+
declare const ForgeProjectPrivilegeSchema: z.ZodObject<{
|
|
164908
|
+
userId: z.ZodString;
|
|
164909
|
+
fpId: z.ZodString;
|
|
164910
|
+
role: z.ZodString;
|
|
164911
|
+
}, "strip", z.ZodTypeAny, {
|
|
164912
|
+
userId: string;
|
|
164913
|
+
role: string;
|
|
164914
|
+
fpId: string;
|
|
164915
|
+
}, {
|
|
164916
|
+
userId: string;
|
|
164917
|
+
role: string;
|
|
164918
|
+
fpId: string;
|
|
164919
|
+
}>;
|
|
164920
|
+
type ForgeProjectMembership = z.infer<typeof ForgeProjectPrivilegeSchema>;
|
|
164921
|
+
type CreateForgeProjectMembership = DbCreateInputOmit<ForgeProjectMembership>;
|
|
164922
|
+
|
|
164923
|
+
declare const ForgeProjectTag: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
164924
|
+
declare const ForgeProject: z.ZodObject<{
|
|
164925
|
+
createdAt: z.ZodDate;
|
|
164926
|
+
createdByUserId: z.ZodString;
|
|
164927
|
+
fpContextId: z.ZodString;
|
|
164928
|
+
id: z.ZodString;
|
|
164929
|
+
instruction: z.ZodNullable<z.ZodString>;
|
|
164930
|
+
meta: z.ZodObject<{
|
|
164931
|
+
name: z.ZodString;
|
|
164932
|
+
description: z.ZodOptional<z.ZodString>;
|
|
164933
|
+
}, "strip", z.ZodTypeAny, {
|
|
164934
|
+
name: string;
|
|
164935
|
+
description?: string | undefined;
|
|
164936
|
+
}, {
|
|
164937
|
+
name: string;
|
|
164938
|
+
description?: string | undefined;
|
|
164939
|
+
}>;
|
|
164940
|
+
name: z.ZodString;
|
|
164941
|
+
tags: z.ZodDefault<z.ZodArray<z.ZodString, "many">>;
|
|
164942
|
+
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
164943
|
+
workspaceId: z.ZodString;
|
|
164944
|
+
}, "strip", z.ZodTypeAny, {
|
|
164945
|
+
instruction: string | null;
|
|
164946
|
+
id: string;
|
|
164947
|
+
name: string;
|
|
164948
|
+
createdAt: Date;
|
|
164949
|
+
workspaceId: string;
|
|
164950
|
+
tags: string[];
|
|
164951
|
+
meta: {
|
|
164952
|
+
name: string;
|
|
164953
|
+
description?: string | undefined;
|
|
164954
|
+
};
|
|
164955
|
+
createdByUserId: string;
|
|
164956
|
+
fpContextId: string;
|
|
164957
|
+
updatedAt?: Date | undefined;
|
|
164958
|
+
}, {
|
|
164959
|
+
instruction: string | null;
|
|
164960
|
+
id: string;
|
|
164961
|
+
name: string;
|
|
164962
|
+
createdAt: Date;
|
|
164963
|
+
workspaceId: string;
|
|
164964
|
+
meta: {
|
|
164965
|
+
name: string;
|
|
164966
|
+
description?: string | undefined;
|
|
164967
|
+
};
|
|
164968
|
+
createdByUserId: string;
|
|
164969
|
+
fpContextId: string;
|
|
164970
|
+
updatedAt?: Date | undefined;
|
|
164971
|
+
tags?: string[] | undefined;
|
|
164972
|
+
}>;
|
|
164973
|
+
type ForgeProject = z.infer<typeof ForgeProject>;
|
|
164974
|
+
type CreateForgeProject = Omit<DbCreateInputOmit<ForgeProject>, "workspaceId" | "createdByUserId">;
|
|
164975
|
+
type UpdateForgeProject = Omit<DbUpdate<ForgeProject>, "fpContextId" | "workspaceId" | "createdByUserId">;
|
|
164976
|
+
|
|
162408
164977
|
declare enum OAuthProviderNames {
|
|
162409
164978
|
Figma = "figma",
|
|
162410
164979
|
Azure = "azure",
|
|
@@ -192698,4 +195267,4 @@ type PersonalAccessTokenWithUser = {
|
|
|
192698
195267
|
token: PersonalAccessToken;
|
|
192699
195268
|
};
|
|
192700
195269
|
|
|
192701
|
-
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, 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, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|
|
195270
|
+
export { Address, type AllFields, AnalyzeCodeComponentsInPackage, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProperties, AssetReference, type AssetReferenceDiff, AssetRenderConfiguration, AssetScope, AssetType, AssetValue, AuthTokens, AuthV2Request, AuthV2Session, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, CodeComponent, type CodeComponentCreate, CodeComponentParentType, CodeComponentProperty, CodeComponentResolvedType, CodeComponentResolvedTypeKind, type CodeComponentUpdate, type CodeComponentUpsert, CodeComponentUpsertResponse, CodeIntegrationDump, Collection, CollectionImportModel, CollectionImportModelInput, CollectionOrigin, ColorTokenData, ColorTokenInlineData, ColorValue, ComponentElementData, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateCollection, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystem, type CreateDesignSystemInvitation, type CreateDesignSystemMembership, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageApproval, type CreateDocumentationPageContent, type CreateDocumentationPageDependencies, type CreateDocumentationPageRoom, type CreateDocumentationPageSnapshot, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementGroupSnapshot, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaComponent, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateFigmaNodeStructureV2, type CreateForgeAgent, type CreateForgeProject, type CreateForgeProjectContext, type CreateForgeProjectMembership, type CreateImportJob, type CreatePersonalAccessToken, type CreatePortalSettings, type CreatePublishedDocPage, type CreatePublishedDocPageVisitsEntry, type CreateStorybookEntry, type CreateStorybookPayload, type CreateTheme, type CreateWorkspaceDbInput, CreateWorkspaceInput, type CreateWorkspaceInvitation, type CreateWorkspaceMembership, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, type DataSourceOfType, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceStorybookRemote, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, type Defined, DependencyDefinition, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementSnapshotBase, DesignElementSnapshotReason, DesignElementType, DesignSystem, DesignSystemAccessMode, DesignSystemDump, DesignSystemElementExportProps, DesignSystemInvitation, type DesignSystemInvitationAddition, DesignSystemInvite, DesignSystemInviteEmailData, DesignSystemInviteEmailRecipient, DesignSystemInviteUpdate, DesignSystemMemberUpdate, DesignSystemMembers, DesignSystemMembership, type DesignSystemMembershipAddition, DesignSystemMembershipUpdates, DesignSystemPendingMemberInvitation, type DesignSystemPendingMemberInvite, DesignSystemRole, DesignSystemSwitcher, DesignSystemUserInvitation, DesignSystemVersion, DesignSystemVersionDump, DesignSystemVersionMultiplayerDump, type DesignSystemVersionParsedRoomId, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageApproval, DocumentationPageApprovalState, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageDependencies, DocumentationPageGroup, type DocumentationPageOldParsedRoomId, type DocumentationPageParsedRoomId, DocumentationPageRoom, DocumentationPageRoomDump, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageSnapshot, DocumentationPageV1, DocumentationPageV2, DocumentationSettings, DocumentationThreadDump, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, ElementGroupSnapshot, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyImmutableType, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, Event, EventDataSourceImported, EventDocumentationPublished, EventVersionReleased, type ExplicitPartial, ExportDestinationsMap, ExportDestinationsMapUpdate, ExportJob, ExportJobContext, ExportJobDebugContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationChanges, ExportJobDocumentationContext, ExportJobDump, ExportJobExporterConfiguration, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterConfigurationPropertyValue, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyDefinition, ExporterPropertyDefinitionArray, ExporterPropertyDefinitionBoolean, ExporterPropertyDefinitionCode, ExporterPropertyDefinitionEnum, ExporterPropertyDefinitionEnumOption, ExporterPropertyDefinitionNumber, ExporterPropertyDefinitionObject, ExporterPropertyDefinitionString, type ExporterPropertyDefinitionValue, ExporterPropertyImageValue, ExporterPropertyType, ExporterPropertyValue, ExporterPropertyValueMap, ExporterPropertyValuesCollection, ExporterPulsarDetails, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagDefaults, type FeatureFlagDefaultsTypes, FeatureFlagMap, type FeatureFlagWithDefaults, FeatureFlagsKeepAliases, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaComponent, FigmaComponentAsset, FigmaComponentBooleanProperty, type FigmaComponentDiff, FigmaComponentImportModel, FigmaComponentImportModelInput, FigmaComponentInstancePreview, FigmaComponentInstanceSwapProperty, FigmaComponentOrigin, FigmaComponentOriginPart, FigmaComponentProperty, FigmaComponentPropertyMap, FigmaComponentPropertyOrigin, FigmaComponentPropertyType, FigmaComponentTextProperty, FigmaComponentVariantProperty, type FigmaExporter, FigmaExporterAnyDesignNodeSchema, FigmaFile, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceOrigin, FigmaNodeRelinkData, FigmaNodeRenderError, FigmaNodeRenderErrorType, FigmaNodeRenderFormat, FigmaNodeRenderState, FigmaNodeRenderedImage, FigmaNodeRendererPayload, FigmaNodeStructureDataV2, FigmaNodeStructureStateV2, FigmaNodeStructureV2, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontTokenData, FontValue, FontWeightTokenData, FontWeightValue, ForgeAgent, ForgeArtifact, ForgeAvatarBuilder, ForgeBuildArtifact, ForgeBuildArtifactEnvironment, ForgeBuildArtifactFiles, ForgeChatMessage, ForgeChatMessageSender, ForgeChatMessageSenderType, ForgeChatThread, ForgeFigmaArtifact, ForgeFileArtifact, ForgeIterationMessage, ForgeIterationMessageStep, ForgeMeta, ForgeParticipant, ForgeProject, ForgeProjectContext, ForgeProjectContextDependency, ForgeProjectContextTailwindConfig, ForgeProjectIteration, ForgeProjectIterationMergeMeta, type ForgeProjectMembership, ForgeProjectPrivilegeSchema, ForgeProjectTag, ForgeSpecArtifact, GitBranch, GitCommonDestinationOptions, GitIntegrationType, GitInteropPulsarError, GitObjectsQuery, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, IconSet, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedDesignToken, type ImportedDesignTokenOfType, type ImportedFigmaComponent, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsState, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, ListExporterQuery, LiveblocksNotificationSettings, 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, PageBlockAssetBlockConfig, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionFigmaComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextEditorOptions, PageBlockDefinitionRichTextEditorPropertyStyle, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaComponentBlockConfig, PageBlockFigmaComponentEntityMeta, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFile, PageBlockFrame, PageBlockFrameOrigin, PageBlockGuideline, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaComponentValue, PageBlockItemFigmaNodeValue, PageBlockItemFileValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextEditorListNode, PageBlockItemRichTextEditorNode, PageBlockItemRichTextEditorParagraphNode, PageBlockItemRichTextEditorValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemStorybookValueOld, PageBlockItemSwatch, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockSelectedFigmaComponent, PageBlockShortcut, PageBlockStorybookBlockConfig, PageBlockStorybookItem, PageBlockSwatch, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTokenBlockConfig, PageBlockTokenNameFormat, PageBlockTokenValueFormat, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, type PageContentDependencies, PageRedirect, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type PagesContentDependencies, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, type ParsedRoomId, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, Pipeline, PipelineDestinationExtraType, PipelineDestinationGitType, PipelineDestinationType, PipelineEventType, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PortalSettings, PortalSettingsTheme, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocPageVisitsEntry, PublishedDocRoutingVersion, PublishedDocsChecksums, PublishedDocsDump, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, Registry, RegistryType, RenderedAssetFile, ResolvedAsset, type RestoreDocumentationPage, type RestoreElementGroup, RestoredDocumentationGroup, RestoredDocumentationPage, type RoomOwner, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShadowValue, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportStorybookSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StorybookEntry, StorybookEntryOrigin, StorybookPayload, 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 UpdateCollection, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystem, type UpdateDesignSystemInvitation, type UpdateDesignSystemMembership, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageDependencies, type UpdateDocumentationPageRoom, type UpdateDocumentationPageSnapshot, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementGroupSnapshot, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaComponent, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateFigmaNodeStructureV2, type UpdateForgeAgent, type UpdateForgeProject, type UpdateForgeProjectContext, type UpdateImportJob, type UpdateIntegrationCredential, UpdateMembershipRolesInput, type UpdatePortalSettings, type UpdatePublishedDocPage, type UpdateStorybookEntry, type UpdateStorybookPayload, type UpdateTheme, type UpdateWorkspaceDbInput, type UpdateWorkspaceInvitation, type UpdateWorkspaceMembership, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserAnalyticsCleanupSchedule, UserAnalyticsCleanupScheduleDbInput, UserDump, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserSource, UserTest, UserTheme, VersionCreationJob, VersionCreationJobStatus, type VersionRoomOwner, Visibility, VisibilityTokenData, VisibilityValue, type WithRequired, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceDump, WorkspaceInvitation, WorkspaceInviteEmailData, WorkspaceInviteEmailRecipient, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, type WorkspaceParsedRoomId, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, type WorkspaceRoomOwner, WorkspaceUntypedData, type WorkspaceUntypedDataCreate, type WorkspaceUntypedDataUpdate, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, applyShallowObjectUpdate, areShallowObjectsEqual, areTokenTypesCompatible, buildConstantEnum, castStringToDimensionValue, chunkedArray, convertTokenTypedData, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, generateShortPersistentId, getCodenameFromText, getFigmaRenderFormatFileExtension, groupBy, hasProperty, isDataSourceOfType, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedDesignToken, isImportedFigmaComponent, isNotNullish, isNullish, isSlugReserved, isTokenType, joinRepeatingSpans, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, pickLatestGroupSnapshots, pickLatestPageSnapshots, pickLatestSnapshots, promiseWithTimeout, publishedDocEnvironments, recordToMap, removeCommentSpans, sleep, slugRegex, slugify, storybookValueFromOldValue, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, tryParseUrl, uniqueBy, workspaceRoleToDesignSystemRole, zodCreateInputOmit, zodUpdateInputOmit };
|