@supernova-studio/client 1.48.6 → 1.48.7
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 +3175 -333
- package/dist/index.d.ts +3175 -333
- package/dist/index.js +45 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +45 -36
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -142867,19 +142867,15 @@ declare const DTOCreateForgeProjectInvitation: z.ZodObject<Pick<{
|
|
|
142867
142867
|
createdAt: z.ZodDate;
|
|
142868
142868
|
updatedAt: z.ZodDate;
|
|
142869
142869
|
createdById: z.ZodString;
|
|
142870
|
-
}, "email" | "role"
|
|
142871
|
-
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
142872
|
-
}, "strip", z.ZodTypeAny, {
|
|
142870
|
+
}, "email" | "role">, "strip", z.ZodTypeAny, {
|
|
142873
142871
|
email: string;
|
|
142874
142872
|
role: "Admin" | "Viewer" | "Builder";
|
|
142875
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142876
142873
|
}, {
|
|
142877
142874
|
email: string;
|
|
142878
142875
|
role: "Admin" | "Viewer" | "Builder";
|
|
142879
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
142880
142876
|
}>;
|
|
142881
142877
|
type DTOCreateForgeProjectInvitation = z.infer<typeof DTOCreateForgeProjectInvitation>;
|
|
142882
|
-
declare const DTOUpdateForgeProjectInvitation: z.ZodObject<
|
|
142878
|
+
declare const DTOUpdateForgeProjectInvitation: z.ZodObject<Pick<{
|
|
142883
142879
|
email: z.ZodString;
|
|
142884
142880
|
forgeProjectId: z.ZodString;
|
|
142885
142881
|
workspaceInvitationId: z.ZodString;
|
|
@@ -142887,9 +142883,7 @@ declare const DTOUpdateForgeProjectInvitation: z.ZodObject<Omit<Pick<{
|
|
|
142887
142883
|
createdAt: z.ZodDate;
|
|
142888
142884
|
updatedAt: z.ZodDate;
|
|
142889
142885
|
createdById: z.ZodString;
|
|
142890
|
-
}, "email" | "role"
|
|
142891
|
-
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
142892
|
-
}, "workspaceRole">, "strip", z.ZodTypeAny, {
|
|
142886
|
+
}, "email" | "role">, "strip", z.ZodTypeAny, {
|
|
142893
142887
|
email: string;
|
|
142894
142888
|
role: "Admin" | "Viewer" | "Builder";
|
|
142895
142889
|
}, {
|
|
@@ -142905,9 +142899,7 @@ declare const DTORemoveForgeProjectInvitation: z.ZodObject<Pick<Pick<{
|
|
|
142905
142899
|
createdAt: z.ZodDate;
|
|
142906
142900
|
updatedAt: z.ZodDate;
|
|
142907
142901
|
createdById: z.ZodString;
|
|
142908
|
-
}, "email" | "role"
|
|
142909
|
-
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
142910
|
-
}, "email">, "strip", z.ZodTypeAny, {
|
|
142902
|
+
}, "email" | "role">, "email">, "strip", z.ZodTypeAny, {
|
|
142911
142903
|
email: string;
|
|
142912
142904
|
}, {
|
|
142913
142905
|
email: string;
|
|
@@ -157888,8 +157880,8 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
157888
157880
|
role: "Admin" | "Viewer" | "Builder";
|
|
157889
157881
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
157890
157882
|
forgeProjectId: string;
|
|
157891
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
157892
157883
|
workspaceMembershipId: string;
|
|
157884
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
157893
157885
|
}, {
|
|
157894
157886
|
user: {
|
|
157895
157887
|
id: string;
|
|
@@ -157904,8 +157896,8 @@ declare const DTOForgeProjectMember: z.ZodObject<{
|
|
|
157904
157896
|
role: "Admin" | "Viewer" | "Builder";
|
|
157905
157897
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
157906
157898
|
forgeProjectId: string;
|
|
157907
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
157908
157899
|
workspaceMembershipId: string;
|
|
157900
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
157909
157901
|
}>;
|
|
157910
157902
|
type DTOForgeProjectMember = z.infer<typeof DTOForgeProjectMember>;
|
|
157911
157903
|
declare const DTOCreateForgeProjectMember: z.ZodObject<Pick<{
|
|
@@ -158109,8 +158101,8 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
158109
158101
|
role: "Admin" | "Viewer" | "Builder";
|
|
158110
158102
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158111
158103
|
forgeProjectId: string;
|
|
158112
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158113
158104
|
workspaceMembershipId: string;
|
|
158105
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158114
158106
|
}, {
|
|
158115
158107
|
user: {
|
|
158116
158108
|
id: string;
|
|
@@ -158125,8 +158117,8 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
158125
158117
|
role: "Admin" | "Viewer" | "Builder";
|
|
158126
158118
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158127
158119
|
forgeProjectId: string;
|
|
158128
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158129
158120
|
workspaceMembershipId: string;
|
|
158121
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158130
158122
|
}>, "many">;
|
|
158131
158123
|
invitations: z.ZodArray<z.ZodObject<{
|
|
158132
158124
|
email: z.ZodString;
|
|
@@ -158168,8 +158160,8 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
158168
158160
|
role: "Admin" | "Viewer" | "Builder";
|
|
158169
158161
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158170
158162
|
forgeProjectId: string;
|
|
158171
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158172
158163
|
workspaceMembershipId: string;
|
|
158164
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158173
158165
|
}[];
|
|
158174
158166
|
invitations: {
|
|
158175
158167
|
email: string;
|
|
@@ -158195,8 +158187,8 @@ declare const DTOForgeProjectMembersListResponse: z.ZodObject<{
|
|
|
158195
158187
|
role: "Admin" | "Viewer" | "Builder";
|
|
158196
158188
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158197
158189
|
forgeProjectId: string;
|
|
158198
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158199
158190
|
workspaceMembershipId: string;
|
|
158191
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158200
158192
|
}[];
|
|
158201
158193
|
invitations: {
|
|
158202
158194
|
email: string;
|
|
@@ -158265,8 +158257,8 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
158265
158257
|
role: "Admin" | "Viewer" | "Builder";
|
|
158266
158258
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158267
158259
|
forgeProjectId: string;
|
|
158268
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158269
158260
|
workspaceMembershipId: string;
|
|
158261
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158270
158262
|
}, {
|
|
158271
158263
|
user: {
|
|
158272
158264
|
id: string;
|
|
@@ -158281,8 +158273,8 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
158281
158273
|
role: "Admin" | "Viewer" | "Builder";
|
|
158282
158274
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158283
158275
|
forgeProjectId: string;
|
|
158284
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158285
158276
|
workspaceMembershipId: string;
|
|
158277
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158286
158278
|
}>;
|
|
158287
158279
|
}, "strip", z.ZodTypeAny, {
|
|
158288
158280
|
member: {
|
|
@@ -158299,8 +158291,8 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
158299
158291
|
role: "Admin" | "Viewer" | "Builder";
|
|
158300
158292
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158301
158293
|
forgeProjectId: string;
|
|
158302
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158303
158294
|
workspaceMembershipId: string;
|
|
158295
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158304
158296
|
};
|
|
158305
158297
|
}, {
|
|
158306
158298
|
member: {
|
|
@@ -158317,8 +158309,8 @@ declare const DTOForgeProjectMemberGetResponse: z.ZodObject<{
|
|
|
158317
158309
|
role: "Admin" | "Viewer" | "Builder";
|
|
158318
158310
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158319
158311
|
forgeProjectId: string;
|
|
158320
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158321
158312
|
workspaceMembershipId: string;
|
|
158313
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158322
158314
|
};
|
|
158323
158315
|
}>;
|
|
158324
158316
|
type DTOForgeProjectMemberGetResponse = z.infer<typeof DTOForgeProjectMemberGetResponse>;
|
|
@@ -158378,8 +158370,8 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
158378
158370
|
role: "Admin" | "Viewer" | "Builder";
|
|
158379
158371
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158380
158372
|
forgeProjectId: string;
|
|
158381
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158382
158373
|
workspaceMembershipId: string;
|
|
158374
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158383
158375
|
}, {
|
|
158384
158376
|
user: {
|
|
158385
158377
|
id: string;
|
|
@@ -158394,8 +158386,8 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
158394
158386
|
role: "Admin" | "Viewer" | "Builder";
|
|
158395
158387
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158396
158388
|
forgeProjectId: string;
|
|
158397
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158398
158389
|
workspaceMembershipId: string;
|
|
158390
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158399
158391
|
}>;
|
|
158400
158392
|
}, "strip", z.ZodTypeAny, {
|
|
158401
158393
|
member: {
|
|
@@ -158412,8 +158404,8 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
158412
158404
|
role: "Admin" | "Viewer" | "Builder";
|
|
158413
158405
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158414
158406
|
forgeProjectId: string;
|
|
158415
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158416
158407
|
workspaceMembershipId: string;
|
|
158408
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158417
158409
|
};
|
|
158418
158410
|
}, {
|
|
158419
158411
|
member: {
|
|
@@ -158430,8 +158422,8 @@ declare const DTOForgeProjectMemberCreateResponse: z.ZodObject<{
|
|
|
158430
158422
|
role: "Admin" | "Viewer" | "Builder";
|
|
158431
158423
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158432
158424
|
forgeProjectId: string;
|
|
158433
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158434
158425
|
workspaceMembershipId: string;
|
|
158426
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158435
158427
|
};
|
|
158436
158428
|
}>;
|
|
158437
158429
|
type DTOForgeProjectMemberCreateResponse = z.infer<typeof DTOForgeProjectMemberCreateResponse>;
|
|
@@ -158491,8 +158483,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
158491
158483
|
role: "Admin" | "Viewer" | "Builder";
|
|
158492
158484
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158493
158485
|
forgeProjectId: string;
|
|
158494
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158495
158486
|
workspaceMembershipId: string;
|
|
158487
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158496
158488
|
}, {
|
|
158497
158489
|
user: {
|
|
158498
158490
|
id: string;
|
|
@@ -158507,8 +158499,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
158507
158499
|
role: "Admin" | "Viewer" | "Builder";
|
|
158508
158500
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158509
158501
|
forgeProjectId: string;
|
|
158510
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158511
158502
|
workspaceMembershipId: string;
|
|
158503
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158512
158504
|
}>>;
|
|
158513
158505
|
}, "strip", z.ZodTypeAny, {
|
|
158514
158506
|
member: {
|
|
@@ -158525,8 +158517,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
158525
158517
|
role: "Admin" | "Viewer" | "Builder";
|
|
158526
158518
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158527
158519
|
forgeProjectId: string;
|
|
158528
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158529
158520
|
workspaceMembershipId: string;
|
|
158521
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158530
158522
|
} | null;
|
|
158531
158523
|
}, {
|
|
158532
158524
|
member: {
|
|
@@ -158543,8 +158535,8 @@ declare const DTOForgeProjectMemberUpdateResponse: z.ZodObject<{
|
|
|
158543
158535
|
role: "Admin" | "Viewer" | "Builder";
|
|
158544
158536
|
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
158545
158537
|
forgeProjectId: string;
|
|
158546
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158547
158538
|
workspaceMembershipId: string;
|
|
158539
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158548
158540
|
} | null;
|
|
158549
158541
|
}>;
|
|
158550
158542
|
type DTOForgeProjectMemberUpdateResponse = z.infer<typeof DTOForgeProjectMemberUpdateResponse>;
|
|
@@ -158565,28 +158557,22 @@ declare const DTOAddMembersToForgeProject: z.ZodObject<{
|
|
|
158565
158557
|
createdAt: z.ZodDate;
|
|
158566
158558
|
updatedAt: z.ZodDate;
|
|
158567
158559
|
createdById: z.ZodString;
|
|
158568
|
-
}, "email" | "role"
|
|
158569
|
-
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
158570
|
-
}, "strip", z.ZodTypeAny, {
|
|
158560
|
+
}, "email" | "role">, "strip", z.ZodTypeAny, {
|
|
158571
158561
|
email: string;
|
|
158572
158562
|
role: "Admin" | "Viewer" | "Builder";
|
|
158573
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158574
158563
|
}, {
|
|
158575
158564
|
email: string;
|
|
158576
158565
|
role: "Admin" | "Viewer" | "Builder";
|
|
158577
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158578
158566
|
}>, "many">;
|
|
158579
158567
|
}, "strip", z.ZodTypeAny, {
|
|
158580
158568
|
membersToInvite: {
|
|
158581
158569
|
email: string;
|
|
158582
158570
|
role: "Admin" | "Viewer" | "Builder";
|
|
158583
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158584
158571
|
}[];
|
|
158585
158572
|
}, {
|
|
158586
158573
|
membersToInvite: {
|
|
158587
158574
|
email: string;
|
|
158588
158575
|
role: "Admin" | "Viewer" | "Builder";
|
|
158589
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
158590
158576
|
}[];
|
|
158591
158577
|
}>;
|
|
158592
158578
|
type DTOAddMembersToForgeProject = z.infer<typeof DTOAddMembersToForgeProject>;
|
|
@@ -178792,16 +178778,12 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
178792
178778
|
createdAt: z.ZodDate;
|
|
178793
178779
|
updatedAt: z.ZodDate;
|
|
178794
178780
|
createdById: z.ZodString;
|
|
178795
|
-
}, "email" | "role"
|
|
178796
|
-
workspaceRole: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest", "Contributor"]>;
|
|
178797
|
-
}, "strip", z.ZodTypeAny, {
|
|
178781
|
+
}, "email" | "role">, "strip", z.ZodTypeAny, {
|
|
178798
178782
|
email: string;
|
|
178799
178783
|
role: "Admin" | "Viewer" | "Builder";
|
|
178800
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
178801
178784
|
}, {
|
|
178802
178785
|
email: string;
|
|
178803
178786
|
role: "Admin" | "Viewer" | "Builder";
|
|
178804
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
178805
178787
|
}>, "many">>;
|
|
178806
178788
|
initialFeature: z.ZodOptional<z.ZodObject<{
|
|
178807
178789
|
id: z.ZodString;
|
|
@@ -179217,7 +179199,6 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
179217
179199
|
membersToInvite?: {
|
|
179218
179200
|
email: string;
|
|
179219
179201
|
role: "Admin" | "Viewer" | "Builder";
|
|
179220
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
179221
179202
|
}[] | undefined;
|
|
179222
179203
|
projectContextId?: string | undefined;
|
|
179223
179204
|
tokenThemeSetId?: string | undefined;
|
|
@@ -179273,7 +179254,6 @@ declare const DTOForgeProjectCreate: z.ZodObject<Pick<{
|
|
|
179273
179254
|
membersToInvite?: {
|
|
179274
179255
|
email: string;
|
|
179275
179256
|
role: "Admin" | "Viewer" | "Builder";
|
|
179276
|
-
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
179277
179257
|
}[] | undefined;
|
|
179278
179258
|
projectContextId?: string | undefined;
|
|
179279
179259
|
defaultRole?: "Viewer" | "Builder" | undefined;
|
|
@@ -234402,6 +234382,7 @@ declare const DTOUserWorkspaceMembership: z.ZodObject<{
|
|
|
234402
234382
|
}>;
|
|
234403
234383
|
type DTOUserWorkspaceMembership = z.infer<typeof DTOUserWorkspaceMembership>;
|
|
234404
234384
|
declare const DTOWorkspaceMember: z.ZodObject<{
|
|
234385
|
+
membershipId: z.ZodString;
|
|
234405
234386
|
user: z.ZodObject<{
|
|
234406
234387
|
id: z.ZodString;
|
|
234407
234388
|
email: z.ZodString;
|
|
@@ -234782,6 +234763,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
234782
234763
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
234783
234764
|
seatType: "Full" | "Builder" | "None";
|
|
234784
234765
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
234766
|
+
membershipId: string;
|
|
234785
234767
|
}, {
|
|
234786
234768
|
user: {
|
|
234787
234769
|
email: string;
|
|
@@ -234837,6 +234819,7 @@ declare const DTOWorkspaceMember: z.ZodObject<{
|
|
|
234837
234819
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
234838
234820
|
seatType: "Full" | "Builder" | "None";
|
|
234839
234821
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
234822
|
+
membershipId: string;
|
|
234840
234823
|
}>;
|
|
234841
234824
|
type DTOWorkspaceMember = z.infer<typeof DTOWorkspaceMember>;
|
|
234842
234825
|
declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
@@ -235602,6 +235585,7 @@ declare const DTOUserWorkspaceMembershipsResponse: z.ZodObject<{
|
|
|
235602
235585
|
type DTOUserWorkspaceMembershipsResponse = z.infer<typeof DTOUserWorkspaceMembershipsResponse>;
|
|
235603
235586
|
declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
235604
235587
|
members: z.ZodArray<z.ZodObject<{
|
|
235588
|
+
membershipId: z.ZodString;
|
|
235605
235589
|
user: z.ZodObject<{
|
|
235606
235590
|
id: z.ZodString;
|
|
235607
235591
|
email: z.ZodString;
|
|
@@ -235982,6 +235966,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
235982
235966
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
235983
235967
|
seatType: "Full" | "Builder" | "None";
|
|
235984
235968
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
235969
|
+
membershipId: string;
|
|
235985
235970
|
}, {
|
|
235986
235971
|
user: {
|
|
235987
235972
|
email: string;
|
|
@@ -236037,6 +236022,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
236037
236022
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
236038
236023
|
seatType: "Full" | "Builder" | "None";
|
|
236039
236024
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
236025
|
+
membershipId: string;
|
|
236040
236026
|
}>, "many">;
|
|
236041
236027
|
}, "strip", z.ZodTypeAny, {
|
|
236042
236028
|
members: {
|
|
@@ -236094,6 +236080,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
236094
236080
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
236095
236081
|
seatType: "Full" | "Builder" | "None";
|
|
236096
236082
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
236083
|
+
membershipId: string;
|
|
236097
236084
|
}[];
|
|
236098
236085
|
}, {
|
|
236099
236086
|
members: {
|
|
@@ -236151,6 +236138,7 @@ declare const DTOWorkspaceMembersListResponse: z.ZodObject<{
|
|
|
236151
236138
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
236152
236139
|
seatType: "Full" | "Builder" | "None";
|
|
236153
236140
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
236141
|
+
membershipId: string;
|
|
236154
236142
|
}[];
|
|
236155
236143
|
}>;
|
|
236156
236144
|
type DTOWorkspaceMembersListResponse = z.infer<typeof DTOWorkspaceMembersListResponse>;
|
|
@@ -252416,303 +252404,3156 @@ declare class ForgeProjectContextsEndpoint {
|
|
|
252416
252404
|
id: string;
|
|
252417
252405
|
createdAt: Date;
|
|
252418
252406
|
name: string;
|
|
252419
|
-
meta: {
|
|
252420
|
-
name: string;
|
|
252421
|
-
description?: string | undefined;
|
|
252422
|
-
};
|
|
252423
|
-
designSystemId: string;
|
|
252424
|
-
dependencies: {
|
|
252425
|
-
type: "npm";
|
|
252426
|
-
version: string;
|
|
252427
|
-
packageName: string;
|
|
252428
|
-
}[];
|
|
252429
|
-
updatedAt: Date;
|
|
252430
|
-
workspaceId: string;
|
|
252431
|
-
definition: string;
|
|
252432
|
-
platform: "Angular" | "Vue" | "React";
|
|
252433
|
-
styling: "CSS" | "Tailwind";
|
|
252434
|
-
npmProxySettings?: {
|
|
252435
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
252436
|
-
registryUrl: string;
|
|
252437
|
-
proxyUrl: string;
|
|
252438
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
252439
|
-
enabledScopes: string[];
|
|
252440
|
-
bypassProxy: boolean;
|
|
252441
|
-
accessToken?: string | undefined;
|
|
252442
|
-
username?: string | undefined;
|
|
252443
|
-
customRegistryUrl?: string | undefined;
|
|
252444
|
-
password?: string | undefined;
|
|
252445
|
-
} | undefined;
|
|
252446
|
-
tailwindConfig?: {
|
|
252447
|
-
version: string;
|
|
252448
|
-
content: string;
|
|
252449
|
-
} | undefined;
|
|
252450
|
-
}[];
|
|
252451
|
-
}>;
|
|
252452
|
-
create(workspaceId: string, body: DTOCreateForgeProjectContext): Promise<{
|
|
252453
|
-
context: {
|
|
252454
|
-
id: string;
|
|
252455
|
-
createdAt: Date;
|
|
252456
|
-
name: string;
|
|
252457
|
-
meta: {
|
|
252458
|
-
name: string;
|
|
252459
|
-
description?: string | undefined;
|
|
252460
|
-
};
|
|
252461
|
-
designSystemId: string;
|
|
252462
|
-
dependencies: {
|
|
252463
|
-
type: "npm";
|
|
252464
|
-
version: string;
|
|
252465
|
-
packageName: string;
|
|
252466
|
-
}[];
|
|
252467
|
-
updatedAt: Date;
|
|
252468
|
-
workspaceId: string;
|
|
252469
|
-
definition: string;
|
|
252470
|
-
platform: "Angular" | "Vue" | "React";
|
|
252471
|
-
styling: "CSS" | "Tailwind";
|
|
252472
|
-
npmProxySettings?: {
|
|
252473
|
-
registryType: "Artifactory" | "Custom" | "NPMJS" | "GitHub" | "AzureDevOps";
|
|
252474
|
-
registryUrl: string;
|
|
252475
|
-
proxyUrl: string;
|
|
252476
|
-
authType: "Custom" | "None" | "Basic" | "Bearer";
|
|
252477
|
-
enabledScopes: string[];
|
|
252478
|
-
bypassProxy: boolean;
|
|
252479
|
-
accessToken?: string | undefined;
|
|
252480
|
-
username?: string | undefined;
|
|
252481
|
-
customRegistryUrl?: string | undefined;
|
|
252482
|
-
password?: string | undefined;
|
|
252483
|
-
} | undefined;
|
|
252484
|
-
tailwindConfig?: {
|
|
252485
|
-
version: string;
|
|
252486
|
-
content: string;
|
|
252487
|
-
} | undefined;
|
|
252488
|
-
};
|
|
252489
|
-
}>;
|
|
252490
|
-
update(workspaceId: string, contextId: string, body: DTOUpdateForgeProjectContext): Promise<{
|
|
252491
|
-
context: {
|
|
252492
|
-
id: string;
|
|
252493
|
-
createdAt: Date;
|
|
252494
|
-
name: string;
|
|
252495
|
-
meta: {
|
|
252496
|
-
name: string;
|
|
252497
|
-
description?: string | undefined;
|
|
252498
|
-
};
|
|
252499
|
-
designSystemId: string;
|
|
252500
|
-
dependencies: {
|
|
252501
|
-
type: "npm";
|
|
252502
|
-
version: string;
|
|
252503
|
-
packageName: string;
|
|
252504
|
-
}[];
|
|
252505
252407
|
updatedAt: Date;
|
|
252506
|
-
|
|
252507
|
-
|
|
252508
|
-
|
|
252509
|
-
|
|
252510
|
-
|
|
252511
|
-
|
|
252512
|
-
|
|
252513
|
-
|
|
252514
|
-
|
|
252515
|
-
|
|
252516
|
-
|
|
252517
|
-
|
|
252518
|
-
|
|
252519
|
-
|
|
252520
|
-
|
|
252521
|
-
} | undefined;
|
|
252522
|
-
tailwindConfig?: {
|
|
252523
|
-
version: string;
|
|
252524
|
-
content: string;
|
|
252525
|
-
} | undefined;
|
|
252526
|
-
};
|
|
252527
|
-
}>;
|
|
252528
|
-
}
|
|
252529
|
-
|
|
252530
|
-
declare class ForgeProjectFilesEndpoint {
|
|
252531
|
-
private readonly requestExecutor;
|
|
252532
|
-
constructor(requestExecutor: RequestExecutor);
|
|
252533
|
-
upload(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadPayload): Promise<{
|
|
252534
|
-
files: {
|
|
252535
|
-
id: string;
|
|
252536
|
-
name: string;
|
|
252537
|
-
url: string;
|
|
252538
|
-
size: number;
|
|
252539
|
-
checksum: string;
|
|
252540
|
-
pendingUpload?: boolean | undefined;
|
|
252541
|
-
}[];
|
|
252542
|
-
uploadUrls: {
|
|
252543
|
-
fileId: string;
|
|
252544
|
-
uploadUrl: string;
|
|
252545
|
-
}[];
|
|
252546
|
-
}>;
|
|
252547
|
-
finalize(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadFinalizePayload): Promise<{
|
|
252548
|
-
ok: true;
|
|
252549
|
-
}>;
|
|
252550
|
-
list(workspaceId: string, projectId: string): Promise<{
|
|
252551
|
-
files: {
|
|
252552
|
-
id: string;
|
|
252553
|
-
name: string;
|
|
252554
|
-
url: string;
|
|
252555
|
-
size: number;
|
|
252556
|
-
checksum: string;
|
|
252557
|
-
pendingUpload?: boolean | undefined;
|
|
252558
|
-
}[];
|
|
252559
|
-
}>;
|
|
252560
|
-
}
|
|
252561
|
-
|
|
252562
|
-
declare class ForgeProjectInvitationsEndpoint {
|
|
252563
|
-
private readonly requestExecutor;
|
|
252564
|
-
constructor(requestExecutor: RequestExecutor);
|
|
252565
|
-
list(projectId: string): Promise<{
|
|
252566
|
-
members: {
|
|
252567
|
-
user: {
|
|
252568
|
-
id: string;
|
|
252569
|
-
email: string;
|
|
252570
|
-
profile: {
|
|
252571
|
-
name: string;
|
|
252572
|
-
nickname?: string | undefined;
|
|
252573
|
-
avatar?: string | undefined;
|
|
252408
|
+
theme: {
|
|
252409
|
+
card: {
|
|
252410
|
+
value?: {
|
|
252411
|
+
color: string | {
|
|
252412
|
+
aliasTo?: string | undefined;
|
|
252413
|
+
};
|
|
252414
|
+
opacity: {
|
|
252415
|
+
value?: {
|
|
252416
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252417
|
+
measure: number;
|
|
252418
|
+
} | undefined;
|
|
252419
|
+
aliasTo?: string | undefined;
|
|
252420
|
+
};
|
|
252421
|
+
} | undefined;
|
|
252422
|
+
aliasTo?: string | undefined;
|
|
252574
252423
|
};
|
|
252575
|
-
|
|
252576
|
-
|
|
252577
|
-
|
|
252578
|
-
|
|
252579
|
-
|
|
252580
|
-
|
|
252581
|
-
|
|
252582
|
-
|
|
252583
|
-
|
|
252584
|
-
|
|
252585
|
-
|
|
252586
|
-
|
|
252587
|
-
|
|
252588
|
-
|
|
252589
|
-
forgeProjectId: string;
|
|
252590
|
-
createdById: string;
|
|
252591
|
-
}[];
|
|
252592
|
-
}>;
|
|
252593
|
-
create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
|
|
252594
|
-
members: {
|
|
252595
|
-
user: {
|
|
252596
|
-
id: string;
|
|
252597
|
-
email: string;
|
|
252598
|
-
profile: {
|
|
252599
|
-
name: string;
|
|
252600
|
-
nickname?: string | undefined;
|
|
252601
|
-
avatar?: string | undefined;
|
|
252424
|
+
input: {
|
|
252425
|
+
value?: {
|
|
252426
|
+
color: string | {
|
|
252427
|
+
aliasTo?: string | undefined;
|
|
252428
|
+
};
|
|
252429
|
+
opacity: {
|
|
252430
|
+
value?: {
|
|
252431
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252432
|
+
measure: number;
|
|
252433
|
+
} | undefined;
|
|
252434
|
+
aliasTo?: string | undefined;
|
|
252435
|
+
};
|
|
252436
|
+
} | undefined;
|
|
252437
|
+
aliasTo?: string | undefined;
|
|
252602
252438
|
};
|
|
252603
|
-
|
|
252604
|
-
|
|
252605
|
-
|
|
252606
|
-
|
|
252607
|
-
|
|
252608
|
-
|
|
252609
|
-
|
|
252610
|
-
|
|
252611
|
-
|
|
252612
|
-
|
|
252613
|
-
|
|
252614
|
-
|
|
252615
|
-
|
|
252616
|
-
|
|
252617
|
-
forgeProjectId: string;
|
|
252618
|
-
createdById: string;
|
|
252619
|
-
}[];
|
|
252620
|
-
}>;
|
|
252621
|
-
update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
|
|
252622
|
-
invitation: {
|
|
252623
|
-
email: string;
|
|
252624
|
-
createdAt: Date;
|
|
252625
|
-
updatedAt: Date;
|
|
252626
|
-
role: "Builder" | "Admin" | "Viewer";
|
|
252627
|
-
workspaceInvitationId: string;
|
|
252628
|
-
forgeProjectId: string;
|
|
252629
|
-
createdById: string;
|
|
252630
|
-
};
|
|
252631
|
-
}>;
|
|
252632
|
-
delete(projectId: string, email: string): Promise<{
|
|
252633
|
-
ok: true;
|
|
252634
|
-
}>;
|
|
252635
|
-
}
|
|
252636
|
-
|
|
252637
|
-
declare class ForgeProjectMembersEndpoint {
|
|
252638
|
-
private readonly requestExecutor;
|
|
252639
|
-
constructor(requestExecutor: RequestExecutor);
|
|
252640
|
-
list(projectId: string): Promise<{
|
|
252641
|
-
members: {
|
|
252642
|
-
user: {
|
|
252643
|
-
id: string;
|
|
252644
|
-
email: string;
|
|
252645
|
-
profile: {
|
|
252646
|
-
name: string;
|
|
252647
|
-
nickname?: string | undefined;
|
|
252648
|
-
avatar?: string | undefined;
|
|
252439
|
+
background: {
|
|
252440
|
+
value?: {
|
|
252441
|
+
color: string | {
|
|
252442
|
+
aliasTo?: string | undefined;
|
|
252443
|
+
};
|
|
252444
|
+
opacity: {
|
|
252445
|
+
value?: {
|
|
252446
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252447
|
+
measure: number;
|
|
252448
|
+
} | undefined;
|
|
252449
|
+
aliasTo?: string | undefined;
|
|
252450
|
+
};
|
|
252451
|
+
} | undefined;
|
|
252452
|
+
aliasTo?: string | undefined;
|
|
252649
252453
|
};
|
|
252650
|
-
|
|
252651
|
-
|
|
252652
|
-
|
|
252653
|
-
|
|
252654
|
-
|
|
252655
|
-
|
|
252656
|
-
|
|
252657
|
-
|
|
252658
|
-
|
|
252659
|
-
|
|
252660
|
-
|
|
252661
|
-
|
|
252662
|
-
|
|
252663
|
-
|
|
252664
|
-
forgeProjectId: string;
|
|
252665
|
-
createdById: string;
|
|
252666
|
-
}[];
|
|
252667
|
-
}>;
|
|
252668
|
-
create(projectId: string, body: DTOAddMembersToForgeProject): Promise<{
|
|
252669
|
-
members: {
|
|
252670
|
-
user: {
|
|
252671
|
-
id: string;
|
|
252672
|
-
email: string;
|
|
252673
|
-
profile: {
|
|
252674
|
-
name: string;
|
|
252675
|
-
nickname?: string | undefined;
|
|
252676
|
-
avatar?: string | undefined;
|
|
252454
|
+
foreground: {
|
|
252455
|
+
value?: {
|
|
252456
|
+
color: string | {
|
|
252457
|
+
aliasTo?: string | undefined;
|
|
252458
|
+
};
|
|
252459
|
+
opacity: {
|
|
252460
|
+
value?: {
|
|
252461
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252462
|
+
measure: number;
|
|
252463
|
+
} | undefined;
|
|
252464
|
+
aliasTo?: string | undefined;
|
|
252465
|
+
};
|
|
252466
|
+
} | undefined;
|
|
252467
|
+
aliasTo?: string | undefined;
|
|
252677
252468
|
};
|
|
252678
|
-
|
|
252679
|
-
|
|
252680
|
-
|
|
252681
|
-
|
|
252682
|
-
|
|
252683
|
-
|
|
252684
|
-
|
|
252685
|
-
|
|
252686
|
-
|
|
252687
|
-
|
|
252688
|
-
|
|
252689
|
-
|
|
252690
|
-
|
|
252691
|
-
|
|
252692
|
-
forgeProjectId: string;
|
|
252693
|
-
createdById: string;
|
|
252694
|
-
}[];
|
|
252695
|
-
}>;
|
|
252696
|
-
update(projectId: string, userId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
252697
|
-
member: {
|
|
252698
|
-
user: {
|
|
252699
|
-
id: string;
|
|
252700
|
-
email: string;
|
|
252701
|
-
profile: {
|
|
252702
|
-
name: string;
|
|
252703
|
-
nickname?: string | undefined;
|
|
252704
|
-
avatar?: string | undefined;
|
|
252469
|
+
cardForeground: {
|
|
252470
|
+
value?: {
|
|
252471
|
+
color: string | {
|
|
252472
|
+
aliasTo?: string | undefined;
|
|
252473
|
+
};
|
|
252474
|
+
opacity: {
|
|
252475
|
+
value?: {
|
|
252476
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252477
|
+
measure: number;
|
|
252478
|
+
} | undefined;
|
|
252479
|
+
aliasTo?: string | undefined;
|
|
252480
|
+
};
|
|
252481
|
+
} | undefined;
|
|
252482
|
+
aliasTo?: string | undefined;
|
|
252705
252483
|
};
|
|
252706
|
-
|
|
252707
|
-
|
|
252708
|
-
|
|
252709
|
-
|
|
252710
|
-
|
|
252711
|
-
|
|
252712
|
-
|
|
252484
|
+
popover: {
|
|
252485
|
+
value?: {
|
|
252486
|
+
color: string | {
|
|
252487
|
+
aliasTo?: string | undefined;
|
|
252488
|
+
};
|
|
252489
|
+
opacity: {
|
|
252490
|
+
value?: {
|
|
252491
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252492
|
+
measure: number;
|
|
252493
|
+
} | undefined;
|
|
252494
|
+
aliasTo?: string | undefined;
|
|
252495
|
+
};
|
|
252496
|
+
} | undefined;
|
|
252497
|
+
aliasTo?: string | undefined;
|
|
252498
|
+
};
|
|
252499
|
+
popoverForeground: {
|
|
252500
|
+
value?: {
|
|
252501
|
+
color: string | {
|
|
252502
|
+
aliasTo?: string | undefined;
|
|
252503
|
+
};
|
|
252504
|
+
opacity: {
|
|
252505
|
+
value?: {
|
|
252506
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252507
|
+
measure: number;
|
|
252508
|
+
} | undefined;
|
|
252509
|
+
aliasTo?: string | undefined;
|
|
252510
|
+
};
|
|
252511
|
+
} | undefined;
|
|
252512
|
+
aliasTo?: string | undefined;
|
|
252513
|
+
};
|
|
252514
|
+
primary: {
|
|
252515
|
+
value?: {
|
|
252516
|
+
color: string | {
|
|
252517
|
+
aliasTo?: string | undefined;
|
|
252518
|
+
};
|
|
252519
|
+
opacity: {
|
|
252520
|
+
value?: {
|
|
252521
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252522
|
+
measure: number;
|
|
252523
|
+
} | undefined;
|
|
252524
|
+
aliasTo?: string | undefined;
|
|
252525
|
+
};
|
|
252526
|
+
} | undefined;
|
|
252527
|
+
aliasTo?: string | undefined;
|
|
252528
|
+
};
|
|
252529
|
+
primaryForeground: {
|
|
252530
|
+
value?: {
|
|
252531
|
+
color: string | {
|
|
252532
|
+
aliasTo?: string | undefined;
|
|
252533
|
+
};
|
|
252534
|
+
opacity: {
|
|
252535
|
+
value?: {
|
|
252536
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252537
|
+
measure: number;
|
|
252538
|
+
} | undefined;
|
|
252539
|
+
aliasTo?: string | undefined;
|
|
252540
|
+
};
|
|
252541
|
+
} | undefined;
|
|
252542
|
+
aliasTo?: string | undefined;
|
|
252543
|
+
};
|
|
252544
|
+
secondary: {
|
|
252545
|
+
value?: {
|
|
252546
|
+
color: string | {
|
|
252547
|
+
aliasTo?: string | undefined;
|
|
252548
|
+
};
|
|
252549
|
+
opacity: {
|
|
252550
|
+
value?: {
|
|
252551
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252552
|
+
measure: number;
|
|
252553
|
+
} | undefined;
|
|
252554
|
+
aliasTo?: string | undefined;
|
|
252555
|
+
};
|
|
252556
|
+
} | undefined;
|
|
252557
|
+
aliasTo?: string | undefined;
|
|
252558
|
+
};
|
|
252559
|
+
secondaryForeground: {
|
|
252560
|
+
value?: {
|
|
252561
|
+
color: string | {
|
|
252562
|
+
aliasTo?: string | undefined;
|
|
252563
|
+
};
|
|
252564
|
+
opacity: {
|
|
252565
|
+
value?: {
|
|
252566
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252567
|
+
measure: number;
|
|
252568
|
+
} | undefined;
|
|
252569
|
+
aliasTo?: string | undefined;
|
|
252570
|
+
};
|
|
252571
|
+
} | undefined;
|
|
252572
|
+
aliasTo?: string | undefined;
|
|
252573
|
+
};
|
|
252574
|
+
muted: {
|
|
252575
|
+
value?: {
|
|
252576
|
+
color: string | {
|
|
252577
|
+
aliasTo?: string | undefined;
|
|
252578
|
+
};
|
|
252579
|
+
opacity: {
|
|
252580
|
+
value?: {
|
|
252581
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252582
|
+
measure: number;
|
|
252583
|
+
} | undefined;
|
|
252584
|
+
aliasTo?: string | undefined;
|
|
252585
|
+
};
|
|
252586
|
+
} | undefined;
|
|
252587
|
+
aliasTo?: string | undefined;
|
|
252588
|
+
};
|
|
252589
|
+
mutedForeground: {
|
|
252590
|
+
value?: {
|
|
252591
|
+
color: string | {
|
|
252592
|
+
aliasTo?: string | undefined;
|
|
252593
|
+
};
|
|
252594
|
+
opacity: {
|
|
252595
|
+
value?: {
|
|
252596
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252597
|
+
measure: number;
|
|
252598
|
+
} | undefined;
|
|
252599
|
+
aliasTo?: string | undefined;
|
|
252600
|
+
};
|
|
252601
|
+
} | undefined;
|
|
252602
|
+
aliasTo?: string | undefined;
|
|
252603
|
+
};
|
|
252604
|
+
accent: {
|
|
252605
|
+
value?: {
|
|
252606
|
+
color: string | {
|
|
252607
|
+
aliasTo?: string | undefined;
|
|
252608
|
+
};
|
|
252609
|
+
opacity: {
|
|
252610
|
+
value?: {
|
|
252611
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252612
|
+
measure: number;
|
|
252613
|
+
} | undefined;
|
|
252614
|
+
aliasTo?: string | undefined;
|
|
252615
|
+
};
|
|
252616
|
+
} | undefined;
|
|
252617
|
+
aliasTo?: string | undefined;
|
|
252618
|
+
};
|
|
252619
|
+
accentForeground: {
|
|
252620
|
+
value?: {
|
|
252621
|
+
color: string | {
|
|
252622
|
+
aliasTo?: string | undefined;
|
|
252623
|
+
};
|
|
252624
|
+
opacity: {
|
|
252625
|
+
value?: {
|
|
252626
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252627
|
+
measure: number;
|
|
252628
|
+
} | undefined;
|
|
252629
|
+
aliasTo?: string | undefined;
|
|
252630
|
+
};
|
|
252631
|
+
} | undefined;
|
|
252632
|
+
aliasTo?: string | undefined;
|
|
252633
|
+
};
|
|
252634
|
+
destructive: {
|
|
252635
|
+
value?: {
|
|
252636
|
+
color: string | {
|
|
252637
|
+
aliasTo?: string | undefined;
|
|
252638
|
+
};
|
|
252639
|
+
opacity: {
|
|
252640
|
+
value?: {
|
|
252641
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252642
|
+
measure: number;
|
|
252643
|
+
} | undefined;
|
|
252644
|
+
aliasTo?: string | undefined;
|
|
252645
|
+
};
|
|
252646
|
+
} | undefined;
|
|
252647
|
+
aliasTo?: string | undefined;
|
|
252648
|
+
};
|
|
252649
|
+
border: {
|
|
252650
|
+
value?: {
|
|
252651
|
+
color: string | {
|
|
252652
|
+
aliasTo?: string | undefined;
|
|
252653
|
+
};
|
|
252654
|
+
opacity: {
|
|
252655
|
+
value?: {
|
|
252656
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252657
|
+
measure: number;
|
|
252658
|
+
} | undefined;
|
|
252659
|
+
aliasTo?: string | undefined;
|
|
252660
|
+
};
|
|
252661
|
+
} | undefined;
|
|
252662
|
+
aliasTo?: string | undefined;
|
|
252663
|
+
};
|
|
252664
|
+
ring: {
|
|
252665
|
+
value?: {
|
|
252666
|
+
color: string | {
|
|
252667
|
+
aliasTo?: string | undefined;
|
|
252668
|
+
};
|
|
252669
|
+
opacity: {
|
|
252670
|
+
value?: {
|
|
252671
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252672
|
+
measure: number;
|
|
252673
|
+
} | undefined;
|
|
252674
|
+
aliasTo?: string | undefined;
|
|
252675
|
+
};
|
|
252676
|
+
} | undefined;
|
|
252677
|
+
aliasTo?: string | undefined;
|
|
252678
|
+
};
|
|
252679
|
+
chart1: {
|
|
252680
|
+
value?: {
|
|
252681
|
+
color: string | {
|
|
252682
|
+
aliasTo?: string | undefined;
|
|
252683
|
+
};
|
|
252684
|
+
opacity: {
|
|
252685
|
+
value?: {
|
|
252686
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252687
|
+
measure: number;
|
|
252688
|
+
} | undefined;
|
|
252689
|
+
aliasTo?: string | undefined;
|
|
252690
|
+
};
|
|
252691
|
+
} | undefined;
|
|
252692
|
+
aliasTo?: string | undefined;
|
|
252693
|
+
};
|
|
252694
|
+
chart2: {
|
|
252695
|
+
value?: {
|
|
252696
|
+
color: string | {
|
|
252697
|
+
aliasTo?: string | undefined;
|
|
252698
|
+
};
|
|
252699
|
+
opacity: {
|
|
252700
|
+
value?: {
|
|
252701
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252702
|
+
measure: number;
|
|
252703
|
+
} | undefined;
|
|
252704
|
+
aliasTo?: string | undefined;
|
|
252705
|
+
};
|
|
252706
|
+
} | undefined;
|
|
252707
|
+
aliasTo?: string | undefined;
|
|
252708
|
+
};
|
|
252709
|
+
chart3: {
|
|
252710
|
+
value?: {
|
|
252711
|
+
color: string | {
|
|
252712
|
+
aliasTo?: string | undefined;
|
|
252713
|
+
};
|
|
252714
|
+
opacity: {
|
|
252715
|
+
value?: {
|
|
252716
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252717
|
+
measure: number;
|
|
252718
|
+
} | undefined;
|
|
252719
|
+
aliasTo?: string | undefined;
|
|
252720
|
+
};
|
|
252721
|
+
} | undefined;
|
|
252722
|
+
aliasTo?: string | undefined;
|
|
252723
|
+
};
|
|
252724
|
+
chart4: {
|
|
252725
|
+
value?: {
|
|
252726
|
+
color: string | {
|
|
252727
|
+
aliasTo?: string | undefined;
|
|
252728
|
+
};
|
|
252729
|
+
opacity: {
|
|
252730
|
+
value?: {
|
|
252731
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252732
|
+
measure: number;
|
|
252733
|
+
} | undefined;
|
|
252734
|
+
aliasTo?: string | undefined;
|
|
252735
|
+
};
|
|
252736
|
+
} | undefined;
|
|
252737
|
+
aliasTo?: string | undefined;
|
|
252738
|
+
};
|
|
252739
|
+
chart5: {
|
|
252740
|
+
value?: {
|
|
252741
|
+
color: string | {
|
|
252742
|
+
aliasTo?: string | undefined;
|
|
252743
|
+
};
|
|
252744
|
+
opacity: {
|
|
252745
|
+
value?: {
|
|
252746
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252747
|
+
measure: number;
|
|
252748
|
+
} | undefined;
|
|
252749
|
+
aliasTo?: string | undefined;
|
|
252750
|
+
};
|
|
252751
|
+
} | undefined;
|
|
252752
|
+
aliasTo?: string | undefined;
|
|
252753
|
+
};
|
|
252754
|
+
sidebar: {
|
|
252755
|
+
value?: {
|
|
252756
|
+
color: string | {
|
|
252757
|
+
aliasTo?: string | undefined;
|
|
252758
|
+
};
|
|
252759
|
+
opacity: {
|
|
252760
|
+
value?: {
|
|
252761
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252762
|
+
measure: number;
|
|
252763
|
+
} | undefined;
|
|
252764
|
+
aliasTo?: string | undefined;
|
|
252765
|
+
};
|
|
252766
|
+
} | undefined;
|
|
252767
|
+
aliasTo?: string | undefined;
|
|
252768
|
+
};
|
|
252769
|
+
sidebarForeground: {
|
|
252770
|
+
value?: {
|
|
252771
|
+
color: string | {
|
|
252772
|
+
aliasTo?: string | undefined;
|
|
252773
|
+
};
|
|
252774
|
+
opacity: {
|
|
252775
|
+
value?: {
|
|
252776
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252777
|
+
measure: number;
|
|
252778
|
+
} | undefined;
|
|
252779
|
+
aliasTo?: string | undefined;
|
|
252780
|
+
};
|
|
252781
|
+
} | undefined;
|
|
252782
|
+
aliasTo?: string | undefined;
|
|
252783
|
+
};
|
|
252784
|
+
sidebarPrimary: {
|
|
252785
|
+
value?: {
|
|
252786
|
+
color: string | {
|
|
252787
|
+
aliasTo?: string | undefined;
|
|
252788
|
+
};
|
|
252789
|
+
opacity: {
|
|
252790
|
+
value?: {
|
|
252791
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252792
|
+
measure: number;
|
|
252793
|
+
} | undefined;
|
|
252794
|
+
aliasTo?: string | undefined;
|
|
252795
|
+
};
|
|
252796
|
+
} | undefined;
|
|
252797
|
+
aliasTo?: string | undefined;
|
|
252798
|
+
};
|
|
252799
|
+
sidebarPrimaryForeground: {
|
|
252800
|
+
value?: {
|
|
252801
|
+
color: string | {
|
|
252802
|
+
aliasTo?: string | undefined;
|
|
252803
|
+
};
|
|
252804
|
+
opacity: {
|
|
252805
|
+
value?: {
|
|
252806
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252807
|
+
measure: number;
|
|
252808
|
+
} | undefined;
|
|
252809
|
+
aliasTo?: string | undefined;
|
|
252810
|
+
};
|
|
252811
|
+
} | undefined;
|
|
252812
|
+
aliasTo?: string | undefined;
|
|
252813
|
+
};
|
|
252814
|
+
sidebarAccent: {
|
|
252815
|
+
value?: {
|
|
252816
|
+
color: string | {
|
|
252817
|
+
aliasTo?: string | undefined;
|
|
252818
|
+
};
|
|
252819
|
+
opacity: {
|
|
252820
|
+
value?: {
|
|
252821
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252822
|
+
measure: number;
|
|
252823
|
+
} | undefined;
|
|
252824
|
+
aliasTo?: string | undefined;
|
|
252825
|
+
};
|
|
252826
|
+
} | undefined;
|
|
252827
|
+
aliasTo?: string | undefined;
|
|
252828
|
+
};
|
|
252829
|
+
sidebarAccentForeground: {
|
|
252830
|
+
value?: {
|
|
252831
|
+
color: string | {
|
|
252832
|
+
aliasTo?: string | undefined;
|
|
252833
|
+
};
|
|
252834
|
+
opacity: {
|
|
252835
|
+
value?: {
|
|
252836
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252837
|
+
measure: number;
|
|
252838
|
+
} | undefined;
|
|
252839
|
+
aliasTo?: string | undefined;
|
|
252840
|
+
};
|
|
252841
|
+
} | undefined;
|
|
252842
|
+
aliasTo?: string | undefined;
|
|
252843
|
+
};
|
|
252844
|
+
sidebarBorder: {
|
|
252845
|
+
value?: {
|
|
252846
|
+
color: string | {
|
|
252847
|
+
aliasTo?: string | undefined;
|
|
252848
|
+
};
|
|
252849
|
+
opacity: {
|
|
252850
|
+
value?: {
|
|
252851
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252852
|
+
measure: number;
|
|
252853
|
+
} | undefined;
|
|
252854
|
+
aliasTo?: string | undefined;
|
|
252855
|
+
};
|
|
252856
|
+
} | undefined;
|
|
252857
|
+
aliasTo?: string | undefined;
|
|
252858
|
+
};
|
|
252859
|
+
sidebarRing: {
|
|
252860
|
+
value?: {
|
|
252861
|
+
color: string | {
|
|
252862
|
+
aliasTo?: string | undefined;
|
|
252863
|
+
};
|
|
252864
|
+
opacity: {
|
|
252865
|
+
value?: {
|
|
252866
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252867
|
+
measure: number;
|
|
252868
|
+
} | undefined;
|
|
252869
|
+
aliasTo?: string | undefined;
|
|
252870
|
+
};
|
|
252871
|
+
} | undefined;
|
|
252872
|
+
aliasTo?: string | undefined;
|
|
252873
|
+
};
|
|
252874
|
+
fontFamily: {
|
|
252875
|
+
value?: string | undefined;
|
|
252876
|
+
aliasTo?: string | undefined;
|
|
252877
|
+
};
|
|
252878
|
+
textXs: {
|
|
252879
|
+
value?: {
|
|
252880
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252881
|
+
measure: number;
|
|
252882
|
+
} | undefined;
|
|
252883
|
+
aliasTo?: string | undefined;
|
|
252884
|
+
};
|
|
252885
|
+
textSm: {
|
|
252886
|
+
value?: {
|
|
252887
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252888
|
+
measure: number;
|
|
252889
|
+
} | undefined;
|
|
252890
|
+
aliasTo?: string | undefined;
|
|
252891
|
+
};
|
|
252892
|
+
textBase: {
|
|
252893
|
+
value?: {
|
|
252894
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252895
|
+
measure: number;
|
|
252896
|
+
} | undefined;
|
|
252897
|
+
aliasTo?: string | undefined;
|
|
252898
|
+
};
|
|
252899
|
+
textLg: {
|
|
252900
|
+
value?: {
|
|
252901
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252902
|
+
measure: number;
|
|
252903
|
+
} | undefined;
|
|
252904
|
+
aliasTo?: string | undefined;
|
|
252905
|
+
};
|
|
252906
|
+
textXl: {
|
|
252907
|
+
value?: {
|
|
252908
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252909
|
+
measure: number;
|
|
252910
|
+
} | undefined;
|
|
252911
|
+
aliasTo?: string | undefined;
|
|
252912
|
+
};
|
|
252913
|
+
text2xl: {
|
|
252914
|
+
value?: {
|
|
252915
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252916
|
+
measure: number;
|
|
252917
|
+
} | undefined;
|
|
252918
|
+
aliasTo?: string | undefined;
|
|
252919
|
+
};
|
|
252920
|
+
text3xl: {
|
|
252921
|
+
value?: {
|
|
252922
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252923
|
+
measure: number;
|
|
252924
|
+
} | undefined;
|
|
252925
|
+
aliasTo?: string | undefined;
|
|
252926
|
+
};
|
|
252927
|
+
text4xl: {
|
|
252928
|
+
value?: {
|
|
252929
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252930
|
+
measure: number;
|
|
252931
|
+
} | undefined;
|
|
252932
|
+
aliasTo?: string | undefined;
|
|
252933
|
+
};
|
|
252934
|
+
text5xl: {
|
|
252935
|
+
value?: {
|
|
252936
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252937
|
+
measure: number;
|
|
252938
|
+
} | undefined;
|
|
252939
|
+
aliasTo?: string | undefined;
|
|
252940
|
+
};
|
|
252941
|
+
text6xl: {
|
|
252942
|
+
value?: {
|
|
252943
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252944
|
+
measure: number;
|
|
252945
|
+
} | undefined;
|
|
252946
|
+
aliasTo?: string | undefined;
|
|
252947
|
+
};
|
|
252948
|
+
text7xl: {
|
|
252949
|
+
value?: {
|
|
252950
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252951
|
+
measure: number;
|
|
252952
|
+
} | undefined;
|
|
252953
|
+
aliasTo?: string | undefined;
|
|
252954
|
+
};
|
|
252955
|
+
text8xl: {
|
|
252956
|
+
value?: {
|
|
252957
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252958
|
+
measure: number;
|
|
252959
|
+
} | undefined;
|
|
252960
|
+
aliasTo?: string | undefined;
|
|
252961
|
+
};
|
|
252962
|
+
text9xl: {
|
|
252963
|
+
value?: {
|
|
252964
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252965
|
+
measure: number;
|
|
252966
|
+
} | undefined;
|
|
252967
|
+
aliasTo?: string | undefined;
|
|
252968
|
+
};
|
|
252969
|
+
textXsLineHeight: {
|
|
252970
|
+
value?: {
|
|
252971
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252972
|
+
measure: number;
|
|
252973
|
+
} | undefined;
|
|
252974
|
+
aliasTo?: string | undefined;
|
|
252975
|
+
};
|
|
252976
|
+
textSmLineHeight: {
|
|
252977
|
+
value?: {
|
|
252978
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252979
|
+
measure: number;
|
|
252980
|
+
} | undefined;
|
|
252981
|
+
aliasTo?: string | undefined;
|
|
252982
|
+
};
|
|
252983
|
+
textBaseLineHeight: {
|
|
252984
|
+
value?: {
|
|
252985
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252986
|
+
measure: number;
|
|
252987
|
+
} | undefined;
|
|
252988
|
+
aliasTo?: string | undefined;
|
|
252989
|
+
};
|
|
252990
|
+
textLgLineHeight: {
|
|
252991
|
+
value?: {
|
|
252992
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
252993
|
+
measure: number;
|
|
252994
|
+
} | undefined;
|
|
252995
|
+
aliasTo?: string | undefined;
|
|
252996
|
+
};
|
|
252997
|
+
textXlLineHeight: {
|
|
252998
|
+
value?: {
|
|
252999
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253000
|
+
measure: number;
|
|
253001
|
+
} | undefined;
|
|
253002
|
+
aliasTo?: string | undefined;
|
|
253003
|
+
};
|
|
253004
|
+
text2xlLineHeight: {
|
|
253005
|
+
value?: {
|
|
253006
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253007
|
+
measure: number;
|
|
253008
|
+
} | undefined;
|
|
253009
|
+
aliasTo?: string | undefined;
|
|
253010
|
+
};
|
|
253011
|
+
text3xlLineHeight: {
|
|
253012
|
+
value?: {
|
|
253013
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253014
|
+
measure: number;
|
|
253015
|
+
} | undefined;
|
|
253016
|
+
aliasTo?: string | undefined;
|
|
253017
|
+
};
|
|
253018
|
+
text4xlLineHeight: {
|
|
253019
|
+
value?: {
|
|
253020
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253021
|
+
measure: number;
|
|
253022
|
+
} | undefined;
|
|
253023
|
+
aliasTo?: string | undefined;
|
|
253024
|
+
};
|
|
253025
|
+
text5xlLineHeight: {
|
|
253026
|
+
value?: {
|
|
253027
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253028
|
+
measure: number;
|
|
253029
|
+
} | undefined;
|
|
253030
|
+
aliasTo?: string | undefined;
|
|
253031
|
+
};
|
|
253032
|
+
text6xlLineHeight: {
|
|
253033
|
+
value?: {
|
|
253034
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253035
|
+
measure: number;
|
|
253036
|
+
} | undefined;
|
|
253037
|
+
aliasTo?: string | undefined;
|
|
253038
|
+
};
|
|
253039
|
+
text7xlLineHeight: {
|
|
253040
|
+
value?: {
|
|
253041
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253042
|
+
measure: number;
|
|
253043
|
+
} | undefined;
|
|
253044
|
+
aliasTo?: string | undefined;
|
|
253045
|
+
};
|
|
253046
|
+
text8xlLineHeight: {
|
|
253047
|
+
value?: {
|
|
253048
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253049
|
+
measure: number;
|
|
253050
|
+
} | undefined;
|
|
253051
|
+
aliasTo?: string | undefined;
|
|
253052
|
+
};
|
|
253053
|
+
text9xlLineHeight: {
|
|
253054
|
+
value?: {
|
|
253055
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253056
|
+
measure: number;
|
|
253057
|
+
} | undefined;
|
|
253058
|
+
aliasTo?: string | undefined;
|
|
253059
|
+
};
|
|
253060
|
+
fontWeightThin: {
|
|
253061
|
+
value?: string | undefined;
|
|
253062
|
+
aliasTo?: string | undefined;
|
|
253063
|
+
};
|
|
253064
|
+
fontWeightExtralight: {
|
|
253065
|
+
value?: string | undefined;
|
|
253066
|
+
aliasTo?: string | undefined;
|
|
253067
|
+
};
|
|
253068
|
+
fontWeightLight: {
|
|
253069
|
+
value?: string | undefined;
|
|
253070
|
+
aliasTo?: string | undefined;
|
|
253071
|
+
};
|
|
253072
|
+
fontWeightNormal: {
|
|
253073
|
+
value?: string | undefined;
|
|
253074
|
+
aliasTo?: string | undefined;
|
|
253075
|
+
};
|
|
253076
|
+
fontWeightMedium: {
|
|
253077
|
+
value?: string | undefined;
|
|
253078
|
+
aliasTo?: string | undefined;
|
|
253079
|
+
};
|
|
253080
|
+
fontWeightSemibold: {
|
|
253081
|
+
value?: string | undefined;
|
|
253082
|
+
aliasTo?: string | undefined;
|
|
253083
|
+
};
|
|
253084
|
+
fontWeightBold: {
|
|
253085
|
+
value?: string | undefined;
|
|
253086
|
+
aliasTo?: string | undefined;
|
|
253087
|
+
};
|
|
253088
|
+
fontWeightExtrabold: {
|
|
253089
|
+
value?: string | undefined;
|
|
253090
|
+
aliasTo?: string | undefined;
|
|
253091
|
+
};
|
|
253092
|
+
fontWeightBlack: {
|
|
253093
|
+
value?: string | undefined;
|
|
253094
|
+
aliasTo?: string | undefined;
|
|
253095
|
+
};
|
|
253096
|
+
radius: {
|
|
253097
|
+
value?: {
|
|
253098
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253099
|
+
measure: number;
|
|
253100
|
+
} | undefined;
|
|
253101
|
+
aliasTo?: string | undefined;
|
|
253102
|
+
};
|
|
253103
|
+
spacing: {
|
|
253104
|
+
value?: {
|
|
253105
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253106
|
+
measure: number;
|
|
253107
|
+
} | undefined;
|
|
253108
|
+
aliasTo?: string | undefined;
|
|
253109
|
+
};
|
|
253110
|
+
shadow2xs: {
|
|
253111
|
+
value?: {
|
|
253112
|
+
value?: {
|
|
253113
|
+
type: "Drop" | "Inner";
|
|
253114
|
+
color: {
|
|
253115
|
+
value?: {
|
|
253116
|
+
color: string | {
|
|
253117
|
+
aliasTo?: string | undefined;
|
|
253118
|
+
};
|
|
253119
|
+
opacity: {
|
|
253120
|
+
value?: {
|
|
253121
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253122
|
+
measure: number;
|
|
253123
|
+
} | undefined;
|
|
253124
|
+
aliasTo?: string | undefined;
|
|
253125
|
+
};
|
|
253126
|
+
} | undefined;
|
|
253127
|
+
aliasTo?: string | undefined;
|
|
253128
|
+
};
|
|
253129
|
+
radius: number;
|
|
253130
|
+
x: number;
|
|
253131
|
+
y: number;
|
|
253132
|
+
spread: number;
|
|
253133
|
+
opacity?: {
|
|
253134
|
+
value?: {
|
|
253135
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253136
|
+
measure: number;
|
|
253137
|
+
} | undefined;
|
|
253138
|
+
aliasTo?: string | undefined;
|
|
253139
|
+
} | undefined;
|
|
253140
|
+
} | undefined;
|
|
253141
|
+
aliasTo?: string | undefined;
|
|
253142
|
+
}[] | undefined;
|
|
253143
|
+
aliasTo?: string | undefined;
|
|
253144
|
+
};
|
|
253145
|
+
shadowXs: {
|
|
253146
|
+
value?: {
|
|
253147
|
+
value?: {
|
|
253148
|
+
type: "Drop" | "Inner";
|
|
253149
|
+
color: {
|
|
253150
|
+
value?: {
|
|
253151
|
+
color: string | {
|
|
253152
|
+
aliasTo?: string | undefined;
|
|
253153
|
+
};
|
|
253154
|
+
opacity: {
|
|
253155
|
+
value?: {
|
|
253156
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253157
|
+
measure: number;
|
|
253158
|
+
} | undefined;
|
|
253159
|
+
aliasTo?: string | undefined;
|
|
253160
|
+
};
|
|
253161
|
+
} | undefined;
|
|
253162
|
+
aliasTo?: string | undefined;
|
|
253163
|
+
};
|
|
253164
|
+
radius: number;
|
|
253165
|
+
x: number;
|
|
253166
|
+
y: number;
|
|
253167
|
+
spread: number;
|
|
253168
|
+
opacity?: {
|
|
253169
|
+
value?: {
|
|
253170
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253171
|
+
measure: number;
|
|
253172
|
+
} | undefined;
|
|
253173
|
+
aliasTo?: string | undefined;
|
|
253174
|
+
} | undefined;
|
|
253175
|
+
} | undefined;
|
|
253176
|
+
aliasTo?: string | undefined;
|
|
253177
|
+
}[] | undefined;
|
|
253178
|
+
aliasTo?: string | undefined;
|
|
253179
|
+
};
|
|
253180
|
+
shadowSm: {
|
|
253181
|
+
value?: {
|
|
253182
|
+
value?: {
|
|
253183
|
+
type: "Drop" | "Inner";
|
|
253184
|
+
color: {
|
|
253185
|
+
value?: {
|
|
253186
|
+
color: string | {
|
|
253187
|
+
aliasTo?: string | undefined;
|
|
253188
|
+
};
|
|
253189
|
+
opacity: {
|
|
253190
|
+
value?: {
|
|
253191
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253192
|
+
measure: number;
|
|
253193
|
+
} | undefined;
|
|
253194
|
+
aliasTo?: string | undefined;
|
|
253195
|
+
};
|
|
253196
|
+
} | undefined;
|
|
253197
|
+
aliasTo?: string | undefined;
|
|
253198
|
+
};
|
|
253199
|
+
radius: number;
|
|
253200
|
+
x: number;
|
|
253201
|
+
y: number;
|
|
253202
|
+
spread: number;
|
|
253203
|
+
opacity?: {
|
|
253204
|
+
value?: {
|
|
253205
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253206
|
+
measure: number;
|
|
253207
|
+
} | undefined;
|
|
253208
|
+
aliasTo?: string | undefined;
|
|
253209
|
+
} | undefined;
|
|
253210
|
+
} | undefined;
|
|
253211
|
+
aliasTo?: string | undefined;
|
|
253212
|
+
}[] | undefined;
|
|
253213
|
+
aliasTo?: string | undefined;
|
|
253214
|
+
};
|
|
253215
|
+
shadowMd: {
|
|
253216
|
+
value?: {
|
|
253217
|
+
value?: {
|
|
253218
|
+
type: "Drop" | "Inner";
|
|
253219
|
+
color: {
|
|
253220
|
+
value?: {
|
|
253221
|
+
color: string | {
|
|
253222
|
+
aliasTo?: string | undefined;
|
|
253223
|
+
};
|
|
253224
|
+
opacity: {
|
|
253225
|
+
value?: {
|
|
253226
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253227
|
+
measure: number;
|
|
253228
|
+
} | undefined;
|
|
253229
|
+
aliasTo?: string | undefined;
|
|
253230
|
+
};
|
|
253231
|
+
} | undefined;
|
|
253232
|
+
aliasTo?: string | undefined;
|
|
253233
|
+
};
|
|
253234
|
+
radius: number;
|
|
253235
|
+
x: number;
|
|
253236
|
+
y: number;
|
|
253237
|
+
spread: number;
|
|
253238
|
+
opacity?: {
|
|
253239
|
+
value?: {
|
|
253240
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253241
|
+
measure: number;
|
|
253242
|
+
} | undefined;
|
|
253243
|
+
aliasTo?: string | undefined;
|
|
253244
|
+
} | undefined;
|
|
253245
|
+
} | undefined;
|
|
253246
|
+
aliasTo?: string | undefined;
|
|
253247
|
+
}[] | undefined;
|
|
253248
|
+
aliasTo?: string | undefined;
|
|
253249
|
+
};
|
|
253250
|
+
shadowLg: {
|
|
253251
|
+
value?: {
|
|
253252
|
+
value?: {
|
|
253253
|
+
type: "Drop" | "Inner";
|
|
253254
|
+
color: {
|
|
253255
|
+
value?: {
|
|
253256
|
+
color: string | {
|
|
253257
|
+
aliasTo?: string | undefined;
|
|
253258
|
+
};
|
|
253259
|
+
opacity: {
|
|
253260
|
+
value?: {
|
|
253261
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253262
|
+
measure: number;
|
|
253263
|
+
} | undefined;
|
|
253264
|
+
aliasTo?: string | undefined;
|
|
253265
|
+
};
|
|
253266
|
+
} | undefined;
|
|
253267
|
+
aliasTo?: string | undefined;
|
|
253268
|
+
};
|
|
253269
|
+
radius: number;
|
|
253270
|
+
x: number;
|
|
253271
|
+
y: number;
|
|
253272
|
+
spread: number;
|
|
253273
|
+
opacity?: {
|
|
253274
|
+
value?: {
|
|
253275
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253276
|
+
measure: number;
|
|
253277
|
+
} | undefined;
|
|
253278
|
+
aliasTo?: string | undefined;
|
|
253279
|
+
} | undefined;
|
|
253280
|
+
} | undefined;
|
|
253281
|
+
aliasTo?: string | undefined;
|
|
253282
|
+
}[] | undefined;
|
|
253283
|
+
aliasTo?: string | undefined;
|
|
253284
|
+
};
|
|
253285
|
+
shadowXl: {
|
|
253286
|
+
value?: {
|
|
253287
|
+
value?: {
|
|
253288
|
+
type: "Drop" | "Inner";
|
|
253289
|
+
color: {
|
|
253290
|
+
value?: {
|
|
253291
|
+
color: string | {
|
|
253292
|
+
aliasTo?: string | undefined;
|
|
253293
|
+
};
|
|
253294
|
+
opacity: {
|
|
253295
|
+
value?: {
|
|
253296
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253297
|
+
measure: number;
|
|
253298
|
+
} | undefined;
|
|
253299
|
+
aliasTo?: string | undefined;
|
|
253300
|
+
};
|
|
253301
|
+
} | undefined;
|
|
253302
|
+
aliasTo?: string | undefined;
|
|
253303
|
+
};
|
|
253304
|
+
radius: number;
|
|
253305
|
+
x: number;
|
|
253306
|
+
y: number;
|
|
253307
|
+
spread: number;
|
|
253308
|
+
opacity?: {
|
|
253309
|
+
value?: {
|
|
253310
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253311
|
+
measure: number;
|
|
253312
|
+
} | undefined;
|
|
253313
|
+
aliasTo?: string | undefined;
|
|
253314
|
+
} | undefined;
|
|
253315
|
+
} | undefined;
|
|
253316
|
+
aliasTo?: string | undefined;
|
|
253317
|
+
}[] | undefined;
|
|
253318
|
+
aliasTo?: string | undefined;
|
|
253319
|
+
};
|
|
253320
|
+
shadow2xl: {
|
|
253321
|
+
value?: {
|
|
253322
|
+
value?: {
|
|
253323
|
+
type: "Drop" | "Inner";
|
|
253324
|
+
color: {
|
|
253325
|
+
value?: {
|
|
253326
|
+
color: string | {
|
|
253327
|
+
aliasTo?: string | undefined;
|
|
253328
|
+
};
|
|
253329
|
+
opacity: {
|
|
253330
|
+
value?: {
|
|
253331
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253332
|
+
measure: number;
|
|
253333
|
+
} | undefined;
|
|
253334
|
+
aliasTo?: string | undefined;
|
|
253335
|
+
};
|
|
253336
|
+
} | undefined;
|
|
253337
|
+
aliasTo?: string | undefined;
|
|
253338
|
+
};
|
|
253339
|
+
radius: number;
|
|
253340
|
+
x: number;
|
|
253341
|
+
y: number;
|
|
253342
|
+
spread: number;
|
|
253343
|
+
opacity?: {
|
|
253344
|
+
value?: {
|
|
253345
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253346
|
+
measure: number;
|
|
253347
|
+
} | undefined;
|
|
253348
|
+
aliasTo?: string | undefined;
|
|
253349
|
+
} | undefined;
|
|
253350
|
+
} | undefined;
|
|
253351
|
+
aliasTo?: string | undefined;
|
|
253352
|
+
}[] | undefined;
|
|
253353
|
+
aliasTo?: string | undefined;
|
|
253354
|
+
};
|
|
253355
|
+
};
|
|
253356
|
+
workspaceId: string;
|
|
253357
|
+
isArchived: boolean;
|
|
253358
|
+
componentSet: {
|
|
253359
|
+
type: "Shadcn";
|
|
253360
|
+
};
|
|
253361
|
+
iconSet: {
|
|
253362
|
+
type: "Phosphor" | "Lucide" | "Tabler";
|
|
253363
|
+
variant?: string | undefined;
|
|
253364
|
+
};
|
|
253365
|
+
description?: string | undefined;
|
|
253366
|
+
designSystemId?: string | undefined;
|
|
253367
|
+
brandId?: string | undefined;
|
|
253368
|
+
thumbnail?: {
|
|
253369
|
+
id: string;
|
|
253370
|
+
url: string;
|
|
253371
|
+
name?: string | undefined;
|
|
253372
|
+
source?: {
|
|
253373
|
+
type: "UserUpload";
|
|
253374
|
+
userId: string;
|
|
253375
|
+
} | {
|
|
253376
|
+
type: "Figma";
|
|
253377
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
253378
|
+
} | undefined;
|
|
253379
|
+
} | undefined;
|
|
253380
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
253381
|
+
productContext?: string | undefined;
|
|
253382
|
+
additionalContext?: string | undefined;
|
|
253383
|
+
themePreset?: string | undefined;
|
|
253384
|
+
tokenThemeSets?: {
|
|
253385
|
+
id: string;
|
|
253386
|
+
name: string;
|
|
253387
|
+
tokenThemeIds: string[];
|
|
253388
|
+
}[] | undefined;
|
|
253389
|
+
}[];
|
|
253390
|
+
}>;
|
|
253391
|
+
create(body: DTOForgeProjectContextCreateV2): Promise<{
|
|
253392
|
+
context: {
|
|
253393
|
+
id: string;
|
|
253394
|
+
createdAt: Date;
|
|
253395
|
+
name: string;
|
|
253396
|
+
updatedAt: Date;
|
|
253397
|
+
theme: {
|
|
253398
|
+
card: {
|
|
253399
|
+
value?: {
|
|
253400
|
+
color: string | {
|
|
253401
|
+
aliasTo?: string | undefined;
|
|
253402
|
+
};
|
|
253403
|
+
opacity: {
|
|
253404
|
+
value?: {
|
|
253405
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253406
|
+
measure: number;
|
|
253407
|
+
} | undefined;
|
|
253408
|
+
aliasTo?: string | undefined;
|
|
253409
|
+
};
|
|
253410
|
+
} | undefined;
|
|
253411
|
+
aliasTo?: string | undefined;
|
|
253412
|
+
};
|
|
253413
|
+
input: {
|
|
253414
|
+
value?: {
|
|
253415
|
+
color: string | {
|
|
253416
|
+
aliasTo?: string | undefined;
|
|
253417
|
+
};
|
|
253418
|
+
opacity: {
|
|
253419
|
+
value?: {
|
|
253420
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253421
|
+
measure: number;
|
|
253422
|
+
} | undefined;
|
|
253423
|
+
aliasTo?: string | undefined;
|
|
253424
|
+
};
|
|
253425
|
+
} | undefined;
|
|
253426
|
+
aliasTo?: string | undefined;
|
|
253427
|
+
};
|
|
253428
|
+
background: {
|
|
253429
|
+
value?: {
|
|
253430
|
+
color: string | {
|
|
253431
|
+
aliasTo?: string | undefined;
|
|
253432
|
+
};
|
|
253433
|
+
opacity: {
|
|
253434
|
+
value?: {
|
|
253435
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253436
|
+
measure: number;
|
|
253437
|
+
} | undefined;
|
|
253438
|
+
aliasTo?: string | undefined;
|
|
253439
|
+
};
|
|
253440
|
+
} | undefined;
|
|
253441
|
+
aliasTo?: string | undefined;
|
|
253442
|
+
};
|
|
253443
|
+
foreground: {
|
|
253444
|
+
value?: {
|
|
253445
|
+
color: string | {
|
|
253446
|
+
aliasTo?: string | undefined;
|
|
253447
|
+
};
|
|
253448
|
+
opacity: {
|
|
253449
|
+
value?: {
|
|
253450
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253451
|
+
measure: number;
|
|
253452
|
+
} | undefined;
|
|
253453
|
+
aliasTo?: string | undefined;
|
|
253454
|
+
};
|
|
253455
|
+
} | undefined;
|
|
253456
|
+
aliasTo?: string | undefined;
|
|
253457
|
+
};
|
|
253458
|
+
cardForeground: {
|
|
253459
|
+
value?: {
|
|
253460
|
+
color: string | {
|
|
253461
|
+
aliasTo?: string | undefined;
|
|
253462
|
+
};
|
|
253463
|
+
opacity: {
|
|
253464
|
+
value?: {
|
|
253465
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253466
|
+
measure: number;
|
|
253467
|
+
} | undefined;
|
|
253468
|
+
aliasTo?: string | undefined;
|
|
253469
|
+
};
|
|
253470
|
+
} | undefined;
|
|
253471
|
+
aliasTo?: string | undefined;
|
|
253472
|
+
};
|
|
253473
|
+
popover: {
|
|
253474
|
+
value?: {
|
|
253475
|
+
color: string | {
|
|
253476
|
+
aliasTo?: string | undefined;
|
|
253477
|
+
};
|
|
253478
|
+
opacity: {
|
|
253479
|
+
value?: {
|
|
253480
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253481
|
+
measure: number;
|
|
253482
|
+
} | undefined;
|
|
253483
|
+
aliasTo?: string | undefined;
|
|
253484
|
+
};
|
|
253485
|
+
} | undefined;
|
|
253486
|
+
aliasTo?: string | undefined;
|
|
253487
|
+
};
|
|
253488
|
+
popoverForeground: {
|
|
253489
|
+
value?: {
|
|
253490
|
+
color: string | {
|
|
253491
|
+
aliasTo?: string | undefined;
|
|
253492
|
+
};
|
|
253493
|
+
opacity: {
|
|
253494
|
+
value?: {
|
|
253495
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253496
|
+
measure: number;
|
|
253497
|
+
} | undefined;
|
|
253498
|
+
aliasTo?: string | undefined;
|
|
253499
|
+
};
|
|
253500
|
+
} | undefined;
|
|
253501
|
+
aliasTo?: string | undefined;
|
|
253502
|
+
};
|
|
253503
|
+
primary: {
|
|
253504
|
+
value?: {
|
|
253505
|
+
color: string | {
|
|
253506
|
+
aliasTo?: string | undefined;
|
|
253507
|
+
};
|
|
253508
|
+
opacity: {
|
|
253509
|
+
value?: {
|
|
253510
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253511
|
+
measure: number;
|
|
253512
|
+
} | undefined;
|
|
253513
|
+
aliasTo?: string | undefined;
|
|
253514
|
+
};
|
|
253515
|
+
} | undefined;
|
|
253516
|
+
aliasTo?: string | undefined;
|
|
253517
|
+
};
|
|
253518
|
+
primaryForeground: {
|
|
253519
|
+
value?: {
|
|
253520
|
+
color: string | {
|
|
253521
|
+
aliasTo?: string | undefined;
|
|
253522
|
+
};
|
|
253523
|
+
opacity: {
|
|
253524
|
+
value?: {
|
|
253525
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253526
|
+
measure: number;
|
|
253527
|
+
} | undefined;
|
|
253528
|
+
aliasTo?: string | undefined;
|
|
253529
|
+
};
|
|
253530
|
+
} | undefined;
|
|
253531
|
+
aliasTo?: string | undefined;
|
|
253532
|
+
};
|
|
253533
|
+
secondary: {
|
|
253534
|
+
value?: {
|
|
253535
|
+
color: string | {
|
|
253536
|
+
aliasTo?: string | undefined;
|
|
253537
|
+
};
|
|
253538
|
+
opacity: {
|
|
253539
|
+
value?: {
|
|
253540
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253541
|
+
measure: number;
|
|
253542
|
+
} | undefined;
|
|
253543
|
+
aliasTo?: string | undefined;
|
|
253544
|
+
};
|
|
253545
|
+
} | undefined;
|
|
253546
|
+
aliasTo?: string | undefined;
|
|
253547
|
+
};
|
|
253548
|
+
secondaryForeground: {
|
|
253549
|
+
value?: {
|
|
253550
|
+
color: string | {
|
|
253551
|
+
aliasTo?: string | undefined;
|
|
253552
|
+
};
|
|
253553
|
+
opacity: {
|
|
253554
|
+
value?: {
|
|
253555
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253556
|
+
measure: number;
|
|
253557
|
+
} | undefined;
|
|
253558
|
+
aliasTo?: string | undefined;
|
|
253559
|
+
};
|
|
253560
|
+
} | undefined;
|
|
253561
|
+
aliasTo?: string | undefined;
|
|
253562
|
+
};
|
|
253563
|
+
muted: {
|
|
253564
|
+
value?: {
|
|
253565
|
+
color: string | {
|
|
253566
|
+
aliasTo?: string | undefined;
|
|
253567
|
+
};
|
|
253568
|
+
opacity: {
|
|
253569
|
+
value?: {
|
|
253570
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253571
|
+
measure: number;
|
|
253572
|
+
} | undefined;
|
|
253573
|
+
aliasTo?: string | undefined;
|
|
253574
|
+
};
|
|
253575
|
+
} | undefined;
|
|
253576
|
+
aliasTo?: string | undefined;
|
|
253577
|
+
};
|
|
253578
|
+
mutedForeground: {
|
|
253579
|
+
value?: {
|
|
253580
|
+
color: string | {
|
|
253581
|
+
aliasTo?: string | undefined;
|
|
253582
|
+
};
|
|
253583
|
+
opacity: {
|
|
253584
|
+
value?: {
|
|
253585
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253586
|
+
measure: number;
|
|
253587
|
+
} | undefined;
|
|
253588
|
+
aliasTo?: string | undefined;
|
|
253589
|
+
};
|
|
253590
|
+
} | undefined;
|
|
253591
|
+
aliasTo?: string | undefined;
|
|
253592
|
+
};
|
|
253593
|
+
accent: {
|
|
253594
|
+
value?: {
|
|
253595
|
+
color: string | {
|
|
253596
|
+
aliasTo?: string | undefined;
|
|
253597
|
+
};
|
|
253598
|
+
opacity: {
|
|
253599
|
+
value?: {
|
|
253600
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253601
|
+
measure: number;
|
|
253602
|
+
} | undefined;
|
|
253603
|
+
aliasTo?: string | undefined;
|
|
253604
|
+
};
|
|
253605
|
+
} | undefined;
|
|
253606
|
+
aliasTo?: string | undefined;
|
|
253607
|
+
};
|
|
253608
|
+
accentForeground: {
|
|
253609
|
+
value?: {
|
|
253610
|
+
color: string | {
|
|
253611
|
+
aliasTo?: string | undefined;
|
|
253612
|
+
};
|
|
253613
|
+
opacity: {
|
|
253614
|
+
value?: {
|
|
253615
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253616
|
+
measure: number;
|
|
253617
|
+
} | undefined;
|
|
253618
|
+
aliasTo?: string | undefined;
|
|
253619
|
+
};
|
|
253620
|
+
} | undefined;
|
|
253621
|
+
aliasTo?: string | undefined;
|
|
253622
|
+
};
|
|
253623
|
+
destructive: {
|
|
253624
|
+
value?: {
|
|
253625
|
+
color: string | {
|
|
253626
|
+
aliasTo?: string | undefined;
|
|
253627
|
+
};
|
|
253628
|
+
opacity: {
|
|
253629
|
+
value?: {
|
|
253630
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253631
|
+
measure: number;
|
|
253632
|
+
} | undefined;
|
|
253633
|
+
aliasTo?: string | undefined;
|
|
253634
|
+
};
|
|
253635
|
+
} | undefined;
|
|
253636
|
+
aliasTo?: string | undefined;
|
|
253637
|
+
};
|
|
253638
|
+
border: {
|
|
253639
|
+
value?: {
|
|
253640
|
+
color: string | {
|
|
253641
|
+
aliasTo?: string | undefined;
|
|
253642
|
+
};
|
|
253643
|
+
opacity: {
|
|
253644
|
+
value?: {
|
|
253645
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253646
|
+
measure: number;
|
|
253647
|
+
} | undefined;
|
|
253648
|
+
aliasTo?: string | undefined;
|
|
253649
|
+
};
|
|
253650
|
+
} | undefined;
|
|
253651
|
+
aliasTo?: string | undefined;
|
|
253652
|
+
};
|
|
253653
|
+
ring: {
|
|
253654
|
+
value?: {
|
|
253655
|
+
color: string | {
|
|
253656
|
+
aliasTo?: string | undefined;
|
|
253657
|
+
};
|
|
253658
|
+
opacity: {
|
|
253659
|
+
value?: {
|
|
253660
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253661
|
+
measure: number;
|
|
253662
|
+
} | undefined;
|
|
253663
|
+
aliasTo?: string | undefined;
|
|
253664
|
+
};
|
|
253665
|
+
} | undefined;
|
|
253666
|
+
aliasTo?: string | undefined;
|
|
253667
|
+
};
|
|
253668
|
+
chart1: {
|
|
253669
|
+
value?: {
|
|
253670
|
+
color: string | {
|
|
253671
|
+
aliasTo?: string | undefined;
|
|
253672
|
+
};
|
|
253673
|
+
opacity: {
|
|
253674
|
+
value?: {
|
|
253675
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253676
|
+
measure: number;
|
|
253677
|
+
} | undefined;
|
|
253678
|
+
aliasTo?: string | undefined;
|
|
253679
|
+
};
|
|
253680
|
+
} | undefined;
|
|
253681
|
+
aliasTo?: string | undefined;
|
|
253682
|
+
};
|
|
253683
|
+
chart2: {
|
|
253684
|
+
value?: {
|
|
253685
|
+
color: string | {
|
|
253686
|
+
aliasTo?: string | undefined;
|
|
253687
|
+
};
|
|
253688
|
+
opacity: {
|
|
253689
|
+
value?: {
|
|
253690
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253691
|
+
measure: number;
|
|
253692
|
+
} | undefined;
|
|
253693
|
+
aliasTo?: string | undefined;
|
|
253694
|
+
};
|
|
253695
|
+
} | undefined;
|
|
253696
|
+
aliasTo?: string | undefined;
|
|
253697
|
+
};
|
|
253698
|
+
chart3: {
|
|
253699
|
+
value?: {
|
|
253700
|
+
color: string | {
|
|
253701
|
+
aliasTo?: string | undefined;
|
|
253702
|
+
};
|
|
253703
|
+
opacity: {
|
|
253704
|
+
value?: {
|
|
253705
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253706
|
+
measure: number;
|
|
253707
|
+
} | undefined;
|
|
253708
|
+
aliasTo?: string | undefined;
|
|
253709
|
+
};
|
|
253710
|
+
} | undefined;
|
|
253711
|
+
aliasTo?: string | undefined;
|
|
253712
|
+
};
|
|
253713
|
+
chart4: {
|
|
253714
|
+
value?: {
|
|
253715
|
+
color: string | {
|
|
253716
|
+
aliasTo?: string | undefined;
|
|
253717
|
+
};
|
|
253718
|
+
opacity: {
|
|
253719
|
+
value?: {
|
|
253720
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253721
|
+
measure: number;
|
|
253722
|
+
} | undefined;
|
|
253723
|
+
aliasTo?: string | undefined;
|
|
253724
|
+
};
|
|
253725
|
+
} | undefined;
|
|
253726
|
+
aliasTo?: string | undefined;
|
|
253727
|
+
};
|
|
253728
|
+
chart5: {
|
|
253729
|
+
value?: {
|
|
253730
|
+
color: string | {
|
|
253731
|
+
aliasTo?: string | undefined;
|
|
253732
|
+
};
|
|
253733
|
+
opacity: {
|
|
253734
|
+
value?: {
|
|
253735
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253736
|
+
measure: number;
|
|
253737
|
+
} | undefined;
|
|
253738
|
+
aliasTo?: string | undefined;
|
|
253739
|
+
};
|
|
253740
|
+
} | undefined;
|
|
253741
|
+
aliasTo?: string | undefined;
|
|
253742
|
+
};
|
|
253743
|
+
sidebar: {
|
|
253744
|
+
value?: {
|
|
253745
|
+
color: string | {
|
|
253746
|
+
aliasTo?: string | undefined;
|
|
253747
|
+
};
|
|
253748
|
+
opacity: {
|
|
253749
|
+
value?: {
|
|
253750
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253751
|
+
measure: number;
|
|
253752
|
+
} | undefined;
|
|
253753
|
+
aliasTo?: string | undefined;
|
|
253754
|
+
};
|
|
253755
|
+
} | undefined;
|
|
253756
|
+
aliasTo?: string | undefined;
|
|
253757
|
+
};
|
|
253758
|
+
sidebarForeground: {
|
|
253759
|
+
value?: {
|
|
253760
|
+
color: string | {
|
|
253761
|
+
aliasTo?: string | undefined;
|
|
253762
|
+
};
|
|
253763
|
+
opacity: {
|
|
253764
|
+
value?: {
|
|
253765
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253766
|
+
measure: number;
|
|
253767
|
+
} | undefined;
|
|
253768
|
+
aliasTo?: string | undefined;
|
|
253769
|
+
};
|
|
253770
|
+
} | undefined;
|
|
253771
|
+
aliasTo?: string | undefined;
|
|
253772
|
+
};
|
|
253773
|
+
sidebarPrimary: {
|
|
253774
|
+
value?: {
|
|
253775
|
+
color: string | {
|
|
253776
|
+
aliasTo?: string | undefined;
|
|
253777
|
+
};
|
|
253778
|
+
opacity: {
|
|
253779
|
+
value?: {
|
|
253780
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253781
|
+
measure: number;
|
|
253782
|
+
} | undefined;
|
|
253783
|
+
aliasTo?: string | undefined;
|
|
253784
|
+
};
|
|
253785
|
+
} | undefined;
|
|
253786
|
+
aliasTo?: string | undefined;
|
|
253787
|
+
};
|
|
253788
|
+
sidebarPrimaryForeground: {
|
|
253789
|
+
value?: {
|
|
253790
|
+
color: string | {
|
|
253791
|
+
aliasTo?: string | undefined;
|
|
253792
|
+
};
|
|
253793
|
+
opacity: {
|
|
253794
|
+
value?: {
|
|
253795
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253796
|
+
measure: number;
|
|
253797
|
+
} | undefined;
|
|
253798
|
+
aliasTo?: string | undefined;
|
|
253799
|
+
};
|
|
253800
|
+
} | undefined;
|
|
253801
|
+
aliasTo?: string | undefined;
|
|
253802
|
+
};
|
|
253803
|
+
sidebarAccent: {
|
|
253804
|
+
value?: {
|
|
253805
|
+
color: string | {
|
|
253806
|
+
aliasTo?: string | undefined;
|
|
253807
|
+
};
|
|
253808
|
+
opacity: {
|
|
253809
|
+
value?: {
|
|
253810
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253811
|
+
measure: number;
|
|
253812
|
+
} | undefined;
|
|
253813
|
+
aliasTo?: string | undefined;
|
|
253814
|
+
};
|
|
253815
|
+
} | undefined;
|
|
253816
|
+
aliasTo?: string | undefined;
|
|
253817
|
+
};
|
|
253818
|
+
sidebarAccentForeground: {
|
|
253819
|
+
value?: {
|
|
253820
|
+
color: string | {
|
|
253821
|
+
aliasTo?: string | undefined;
|
|
253822
|
+
};
|
|
253823
|
+
opacity: {
|
|
253824
|
+
value?: {
|
|
253825
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253826
|
+
measure: number;
|
|
253827
|
+
} | undefined;
|
|
253828
|
+
aliasTo?: string | undefined;
|
|
253829
|
+
};
|
|
253830
|
+
} | undefined;
|
|
253831
|
+
aliasTo?: string | undefined;
|
|
253832
|
+
};
|
|
253833
|
+
sidebarBorder: {
|
|
253834
|
+
value?: {
|
|
253835
|
+
color: string | {
|
|
253836
|
+
aliasTo?: string | undefined;
|
|
253837
|
+
};
|
|
253838
|
+
opacity: {
|
|
253839
|
+
value?: {
|
|
253840
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253841
|
+
measure: number;
|
|
253842
|
+
} | undefined;
|
|
253843
|
+
aliasTo?: string | undefined;
|
|
253844
|
+
};
|
|
253845
|
+
} | undefined;
|
|
253846
|
+
aliasTo?: string | undefined;
|
|
253847
|
+
};
|
|
253848
|
+
sidebarRing: {
|
|
253849
|
+
value?: {
|
|
253850
|
+
color: string | {
|
|
253851
|
+
aliasTo?: string | undefined;
|
|
253852
|
+
};
|
|
253853
|
+
opacity: {
|
|
253854
|
+
value?: {
|
|
253855
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253856
|
+
measure: number;
|
|
253857
|
+
} | undefined;
|
|
253858
|
+
aliasTo?: string | undefined;
|
|
253859
|
+
};
|
|
253860
|
+
} | undefined;
|
|
253861
|
+
aliasTo?: string | undefined;
|
|
253862
|
+
};
|
|
253863
|
+
fontFamily: {
|
|
253864
|
+
value?: string | undefined;
|
|
253865
|
+
aliasTo?: string | undefined;
|
|
253866
|
+
};
|
|
253867
|
+
textXs: {
|
|
253868
|
+
value?: {
|
|
253869
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253870
|
+
measure: number;
|
|
253871
|
+
} | undefined;
|
|
253872
|
+
aliasTo?: string | undefined;
|
|
253873
|
+
};
|
|
253874
|
+
textSm: {
|
|
253875
|
+
value?: {
|
|
253876
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253877
|
+
measure: number;
|
|
253878
|
+
} | undefined;
|
|
253879
|
+
aliasTo?: string | undefined;
|
|
253880
|
+
};
|
|
253881
|
+
textBase: {
|
|
253882
|
+
value?: {
|
|
253883
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253884
|
+
measure: number;
|
|
253885
|
+
} | undefined;
|
|
253886
|
+
aliasTo?: string | undefined;
|
|
253887
|
+
};
|
|
253888
|
+
textLg: {
|
|
253889
|
+
value?: {
|
|
253890
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253891
|
+
measure: number;
|
|
253892
|
+
} | undefined;
|
|
253893
|
+
aliasTo?: string | undefined;
|
|
253894
|
+
};
|
|
253895
|
+
textXl: {
|
|
253896
|
+
value?: {
|
|
253897
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253898
|
+
measure: number;
|
|
253899
|
+
} | undefined;
|
|
253900
|
+
aliasTo?: string | undefined;
|
|
253901
|
+
};
|
|
253902
|
+
text2xl: {
|
|
253903
|
+
value?: {
|
|
253904
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253905
|
+
measure: number;
|
|
253906
|
+
} | undefined;
|
|
253907
|
+
aliasTo?: string | undefined;
|
|
253908
|
+
};
|
|
253909
|
+
text3xl: {
|
|
253910
|
+
value?: {
|
|
253911
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253912
|
+
measure: number;
|
|
253913
|
+
} | undefined;
|
|
253914
|
+
aliasTo?: string | undefined;
|
|
253915
|
+
};
|
|
253916
|
+
text4xl: {
|
|
253917
|
+
value?: {
|
|
253918
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253919
|
+
measure: number;
|
|
253920
|
+
} | undefined;
|
|
253921
|
+
aliasTo?: string | undefined;
|
|
253922
|
+
};
|
|
253923
|
+
text5xl: {
|
|
253924
|
+
value?: {
|
|
253925
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253926
|
+
measure: number;
|
|
253927
|
+
} | undefined;
|
|
253928
|
+
aliasTo?: string | undefined;
|
|
253929
|
+
};
|
|
253930
|
+
text6xl: {
|
|
253931
|
+
value?: {
|
|
253932
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253933
|
+
measure: number;
|
|
253934
|
+
} | undefined;
|
|
253935
|
+
aliasTo?: string | undefined;
|
|
253936
|
+
};
|
|
253937
|
+
text7xl: {
|
|
253938
|
+
value?: {
|
|
253939
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253940
|
+
measure: number;
|
|
253941
|
+
} | undefined;
|
|
253942
|
+
aliasTo?: string | undefined;
|
|
253943
|
+
};
|
|
253944
|
+
text8xl: {
|
|
253945
|
+
value?: {
|
|
253946
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253947
|
+
measure: number;
|
|
253948
|
+
} | undefined;
|
|
253949
|
+
aliasTo?: string | undefined;
|
|
253950
|
+
};
|
|
253951
|
+
text9xl: {
|
|
253952
|
+
value?: {
|
|
253953
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253954
|
+
measure: number;
|
|
253955
|
+
} | undefined;
|
|
253956
|
+
aliasTo?: string | undefined;
|
|
253957
|
+
};
|
|
253958
|
+
textXsLineHeight: {
|
|
253959
|
+
value?: {
|
|
253960
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253961
|
+
measure: number;
|
|
253962
|
+
} | undefined;
|
|
253963
|
+
aliasTo?: string | undefined;
|
|
253964
|
+
};
|
|
253965
|
+
textSmLineHeight: {
|
|
253966
|
+
value?: {
|
|
253967
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253968
|
+
measure: number;
|
|
253969
|
+
} | undefined;
|
|
253970
|
+
aliasTo?: string | undefined;
|
|
253971
|
+
};
|
|
253972
|
+
textBaseLineHeight: {
|
|
253973
|
+
value?: {
|
|
253974
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253975
|
+
measure: number;
|
|
253976
|
+
} | undefined;
|
|
253977
|
+
aliasTo?: string | undefined;
|
|
253978
|
+
};
|
|
253979
|
+
textLgLineHeight: {
|
|
253980
|
+
value?: {
|
|
253981
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253982
|
+
measure: number;
|
|
253983
|
+
} | undefined;
|
|
253984
|
+
aliasTo?: string | undefined;
|
|
253985
|
+
};
|
|
253986
|
+
textXlLineHeight: {
|
|
253987
|
+
value?: {
|
|
253988
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253989
|
+
measure: number;
|
|
253990
|
+
} | undefined;
|
|
253991
|
+
aliasTo?: string | undefined;
|
|
253992
|
+
};
|
|
253993
|
+
text2xlLineHeight: {
|
|
253994
|
+
value?: {
|
|
253995
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
253996
|
+
measure: number;
|
|
253997
|
+
} | undefined;
|
|
253998
|
+
aliasTo?: string | undefined;
|
|
253999
|
+
};
|
|
254000
|
+
text3xlLineHeight: {
|
|
254001
|
+
value?: {
|
|
254002
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254003
|
+
measure: number;
|
|
254004
|
+
} | undefined;
|
|
254005
|
+
aliasTo?: string | undefined;
|
|
254006
|
+
};
|
|
254007
|
+
text4xlLineHeight: {
|
|
254008
|
+
value?: {
|
|
254009
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254010
|
+
measure: number;
|
|
254011
|
+
} | undefined;
|
|
254012
|
+
aliasTo?: string | undefined;
|
|
254013
|
+
};
|
|
254014
|
+
text5xlLineHeight: {
|
|
254015
|
+
value?: {
|
|
254016
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254017
|
+
measure: number;
|
|
254018
|
+
} | undefined;
|
|
254019
|
+
aliasTo?: string | undefined;
|
|
254020
|
+
};
|
|
254021
|
+
text6xlLineHeight: {
|
|
254022
|
+
value?: {
|
|
254023
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254024
|
+
measure: number;
|
|
254025
|
+
} | undefined;
|
|
254026
|
+
aliasTo?: string | undefined;
|
|
254027
|
+
};
|
|
254028
|
+
text7xlLineHeight: {
|
|
254029
|
+
value?: {
|
|
254030
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254031
|
+
measure: number;
|
|
254032
|
+
} | undefined;
|
|
254033
|
+
aliasTo?: string | undefined;
|
|
254034
|
+
};
|
|
254035
|
+
text8xlLineHeight: {
|
|
254036
|
+
value?: {
|
|
254037
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254038
|
+
measure: number;
|
|
254039
|
+
} | undefined;
|
|
254040
|
+
aliasTo?: string | undefined;
|
|
254041
|
+
};
|
|
254042
|
+
text9xlLineHeight: {
|
|
254043
|
+
value?: {
|
|
254044
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254045
|
+
measure: number;
|
|
254046
|
+
} | undefined;
|
|
254047
|
+
aliasTo?: string | undefined;
|
|
254048
|
+
};
|
|
254049
|
+
fontWeightThin: {
|
|
254050
|
+
value?: string | undefined;
|
|
254051
|
+
aliasTo?: string | undefined;
|
|
254052
|
+
};
|
|
254053
|
+
fontWeightExtralight: {
|
|
254054
|
+
value?: string | undefined;
|
|
254055
|
+
aliasTo?: string | undefined;
|
|
254056
|
+
};
|
|
254057
|
+
fontWeightLight: {
|
|
254058
|
+
value?: string | undefined;
|
|
254059
|
+
aliasTo?: string | undefined;
|
|
254060
|
+
};
|
|
254061
|
+
fontWeightNormal: {
|
|
254062
|
+
value?: string | undefined;
|
|
254063
|
+
aliasTo?: string | undefined;
|
|
254064
|
+
};
|
|
254065
|
+
fontWeightMedium: {
|
|
254066
|
+
value?: string | undefined;
|
|
254067
|
+
aliasTo?: string | undefined;
|
|
254068
|
+
};
|
|
254069
|
+
fontWeightSemibold: {
|
|
254070
|
+
value?: string | undefined;
|
|
254071
|
+
aliasTo?: string | undefined;
|
|
254072
|
+
};
|
|
254073
|
+
fontWeightBold: {
|
|
254074
|
+
value?: string | undefined;
|
|
254075
|
+
aliasTo?: string | undefined;
|
|
254076
|
+
};
|
|
254077
|
+
fontWeightExtrabold: {
|
|
254078
|
+
value?: string | undefined;
|
|
254079
|
+
aliasTo?: string | undefined;
|
|
254080
|
+
};
|
|
254081
|
+
fontWeightBlack: {
|
|
254082
|
+
value?: string | undefined;
|
|
254083
|
+
aliasTo?: string | undefined;
|
|
254084
|
+
};
|
|
254085
|
+
radius: {
|
|
254086
|
+
value?: {
|
|
254087
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254088
|
+
measure: number;
|
|
254089
|
+
} | undefined;
|
|
254090
|
+
aliasTo?: string | undefined;
|
|
254091
|
+
};
|
|
254092
|
+
spacing: {
|
|
254093
|
+
value?: {
|
|
254094
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254095
|
+
measure: number;
|
|
254096
|
+
} | undefined;
|
|
254097
|
+
aliasTo?: string | undefined;
|
|
254098
|
+
};
|
|
254099
|
+
shadow2xs: {
|
|
254100
|
+
value?: {
|
|
254101
|
+
value?: {
|
|
254102
|
+
type: "Drop" | "Inner";
|
|
254103
|
+
color: {
|
|
254104
|
+
value?: {
|
|
254105
|
+
color: string | {
|
|
254106
|
+
aliasTo?: string | undefined;
|
|
254107
|
+
};
|
|
254108
|
+
opacity: {
|
|
254109
|
+
value?: {
|
|
254110
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254111
|
+
measure: number;
|
|
254112
|
+
} | undefined;
|
|
254113
|
+
aliasTo?: string | undefined;
|
|
254114
|
+
};
|
|
254115
|
+
} | undefined;
|
|
254116
|
+
aliasTo?: string | undefined;
|
|
254117
|
+
};
|
|
254118
|
+
radius: number;
|
|
254119
|
+
x: number;
|
|
254120
|
+
y: number;
|
|
254121
|
+
spread: number;
|
|
254122
|
+
opacity?: {
|
|
254123
|
+
value?: {
|
|
254124
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254125
|
+
measure: number;
|
|
254126
|
+
} | undefined;
|
|
254127
|
+
aliasTo?: string | undefined;
|
|
254128
|
+
} | undefined;
|
|
254129
|
+
} | undefined;
|
|
254130
|
+
aliasTo?: string | undefined;
|
|
254131
|
+
}[] | undefined;
|
|
254132
|
+
aliasTo?: string | undefined;
|
|
254133
|
+
};
|
|
254134
|
+
shadowXs: {
|
|
254135
|
+
value?: {
|
|
254136
|
+
value?: {
|
|
254137
|
+
type: "Drop" | "Inner";
|
|
254138
|
+
color: {
|
|
254139
|
+
value?: {
|
|
254140
|
+
color: string | {
|
|
254141
|
+
aliasTo?: string | undefined;
|
|
254142
|
+
};
|
|
254143
|
+
opacity: {
|
|
254144
|
+
value?: {
|
|
254145
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254146
|
+
measure: number;
|
|
254147
|
+
} | undefined;
|
|
254148
|
+
aliasTo?: string | undefined;
|
|
254149
|
+
};
|
|
254150
|
+
} | undefined;
|
|
254151
|
+
aliasTo?: string | undefined;
|
|
254152
|
+
};
|
|
254153
|
+
radius: number;
|
|
254154
|
+
x: number;
|
|
254155
|
+
y: number;
|
|
254156
|
+
spread: number;
|
|
254157
|
+
opacity?: {
|
|
254158
|
+
value?: {
|
|
254159
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254160
|
+
measure: number;
|
|
254161
|
+
} | undefined;
|
|
254162
|
+
aliasTo?: string | undefined;
|
|
254163
|
+
} | undefined;
|
|
254164
|
+
} | undefined;
|
|
254165
|
+
aliasTo?: string | undefined;
|
|
254166
|
+
}[] | undefined;
|
|
254167
|
+
aliasTo?: string | undefined;
|
|
254168
|
+
};
|
|
254169
|
+
shadowSm: {
|
|
254170
|
+
value?: {
|
|
254171
|
+
value?: {
|
|
254172
|
+
type: "Drop" | "Inner";
|
|
254173
|
+
color: {
|
|
254174
|
+
value?: {
|
|
254175
|
+
color: string | {
|
|
254176
|
+
aliasTo?: string | undefined;
|
|
254177
|
+
};
|
|
254178
|
+
opacity: {
|
|
254179
|
+
value?: {
|
|
254180
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254181
|
+
measure: number;
|
|
254182
|
+
} | undefined;
|
|
254183
|
+
aliasTo?: string | undefined;
|
|
254184
|
+
};
|
|
254185
|
+
} | undefined;
|
|
254186
|
+
aliasTo?: string | undefined;
|
|
254187
|
+
};
|
|
254188
|
+
radius: number;
|
|
254189
|
+
x: number;
|
|
254190
|
+
y: number;
|
|
254191
|
+
spread: number;
|
|
254192
|
+
opacity?: {
|
|
254193
|
+
value?: {
|
|
254194
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254195
|
+
measure: number;
|
|
254196
|
+
} | undefined;
|
|
254197
|
+
aliasTo?: string | undefined;
|
|
254198
|
+
} | undefined;
|
|
254199
|
+
} | undefined;
|
|
254200
|
+
aliasTo?: string | undefined;
|
|
254201
|
+
}[] | undefined;
|
|
254202
|
+
aliasTo?: string | undefined;
|
|
254203
|
+
};
|
|
254204
|
+
shadowMd: {
|
|
254205
|
+
value?: {
|
|
254206
|
+
value?: {
|
|
254207
|
+
type: "Drop" | "Inner";
|
|
254208
|
+
color: {
|
|
254209
|
+
value?: {
|
|
254210
|
+
color: string | {
|
|
254211
|
+
aliasTo?: string | undefined;
|
|
254212
|
+
};
|
|
254213
|
+
opacity: {
|
|
254214
|
+
value?: {
|
|
254215
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254216
|
+
measure: number;
|
|
254217
|
+
} | undefined;
|
|
254218
|
+
aliasTo?: string | undefined;
|
|
254219
|
+
};
|
|
254220
|
+
} | undefined;
|
|
254221
|
+
aliasTo?: string | undefined;
|
|
254222
|
+
};
|
|
254223
|
+
radius: number;
|
|
254224
|
+
x: number;
|
|
254225
|
+
y: number;
|
|
254226
|
+
spread: number;
|
|
254227
|
+
opacity?: {
|
|
254228
|
+
value?: {
|
|
254229
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254230
|
+
measure: number;
|
|
254231
|
+
} | undefined;
|
|
254232
|
+
aliasTo?: string | undefined;
|
|
254233
|
+
} | undefined;
|
|
254234
|
+
} | undefined;
|
|
254235
|
+
aliasTo?: string | undefined;
|
|
254236
|
+
}[] | undefined;
|
|
254237
|
+
aliasTo?: string | undefined;
|
|
254238
|
+
};
|
|
254239
|
+
shadowLg: {
|
|
254240
|
+
value?: {
|
|
254241
|
+
value?: {
|
|
254242
|
+
type: "Drop" | "Inner";
|
|
254243
|
+
color: {
|
|
254244
|
+
value?: {
|
|
254245
|
+
color: string | {
|
|
254246
|
+
aliasTo?: string | undefined;
|
|
254247
|
+
};
|
|
254248
|
+
opacity: {
|
|
254249
|
+
value?: {
|
|
254250
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254251
|
+
measure: number;
|
|
254252
|
+
} | undefined;
|
|
254253
|
+
aliasTo?: string | undefined;
|
|
254254
|
+
};
|
|
254255
|
+
} | undefined;
|
|
254256
|
+
aliasTo?: string | undefined;
|
|
254257
|
+
};
|
|
254258
|
+
radius: number;
|
|
254259
|
+
x: number;
|
|
254260
|
+
y: number;
|
|
254261
|
+
spread: number;
|
|
254262
|
+
opacity?: {
|
|
254263
|
+
value?: {
|
|
254264
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254265
|
+
measure: number;
|
|
254266
|
+
} | undefined;
|
|
254267
|
+
aliasTo?: string | undefined;
|
|
254268
|
+
} | undefined;
|
|
254269
|
+
} | undefined;
|
|
254270
|
+
aliasTo?: string | undefined;
|
|
254271
|
+
}[] | undefined;
|
|
254272
|
+
aliasTo?: string | undefined;
|
|
254273
|
+
};
|
|
254274
|
+
shadowXl: {
|
|
254275
|
+
value?: {
|
|
254276
|
+
value?: {
|
|
254277
|
+
type: "Drop" | "Inner";
|
|
254278
|
+
color: {
|
|
254279
|
+
value?: {
|
|
254280
|
+
color: string | {
|
|
254281
|
+
aliasTo?: string | undefined;
|
|
254282
|
+
};
|
|
254283
|
+
opacity: {
|
|
254284
|
+
value?: {
|
|
254285
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254286
|
+
measure: number;
|
|
254287
|
+
} | undefined;
|
|
254288
|
+
aliasTo?: string | undefined;
|
|
254289
|
+
};
|
|
254290
|
+
} | undefined;
|
|
254291
|
+
aliasTo?: string | undefined;
|
|
254292
|
+
};
|
|
254293
|
+
radius: number;
|
|
254294
|
+
x: number;
|
|
254295
|
+
y: number;
|
|
254296
|
+
spread: number;
|
|
254297
|
+
opacity?: {
|
|
254298
|
+
value?: {
|
|
254299
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254300
|
+
measure: number;
|
|
254301
|
+
} | undefined;
|
|
254302
|
+
aliasTo?: string | undefined;
|
|
254303
|
+
} | undefined;
|
|
254304
|
+
} | undefined;
|
|
254305
|
+
aliasTo?: string | undefined;
|
|
254306
|
+
}[] | undefined;
|
|
254307
|
+
aliasTo?: string | undefined;
|
|
254308
|
+
};
|
|
254309
|
+
shadow2xl: {
|
|
254310
|
+
value?: {
|
|
254311
|
+
value?: {
|
|
254312
|
+
type: "Drop" | "Inner";
|
|
254313
|
+
color: {
|
|
254314
|
+
value?: {
|
|
254315
|
+
color: string | {
|
|
254316
|
+
aliasTo?: string | undefined;
|
|
254317
|
+
};
|
|
254318
|
+
opacity: {
|
|
254319
|
+
value?: {
|
|
254320
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254321
|
+
measure: number;
|
|
254322
|
+
} | undefined;
|
|
254323
|
+
aliasTo?: string | undefined;
|
|
254324
|
+
};
|
|
254325
|
+
} | undefined;
|
|
254326
|
+
aliasTo?: string | undefined;
|
|
254327
|
+
};
|
|
254328
|
+
radius: number;
|
|
254329
|
+
x: number;
|
|
254330
|
+
y: number;
|
|
254331
|
+
spread: number;
|
|
254332
|
+
opacity?: {
|
|
254333
|
+
value?: {
|
|
254334
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254335
|
+
measure: number;
|
|
254336
|
+
} | undefined;
|
|
254337
|
+
aliasTo?: string | undefined;
|
|
254338
|
+
} | undefined;
|
|
254339
|
+
} | undefined;
|
|
254340
|
+
aliasTo?: string | undefined;
|
|
254341
|
+
}[] | undefined;
|
|
254342
|
+
aliasTo?: string | undefined;
|
|
254343
|
+
};
|
|
254344
|
+
};
|
|
254345
|
+
workspaceId: string;
|
|
254346
|
+
isArchived: boolean;
|
|
254347
|
+
componentSet: {
|
|
254348
|
+
type: "Shadcn";
|
|
254349
|
+
};
|
|
254350
|
+
iconSet: {
|
|
254351
|
+
type: "Phosphor" | "Lucide" | "Tabler";
|
|
254352
|
+
variant?: string | undefined;
|
|
254353
|
+
};
|
|
254354
|
+
description?: string | undefined;
|
|
254355
|
+
designSystemId?: string | undefined;
|
|
254356
|
+
brandId?: string | undefined;
|
|
254357
|
+
thumbnail?: {
|
|
254358
|
+
id: string;
|
|
254359
|
+
url: string;
|
|
254360
|
+
name?: string | undefined;
|
|
254361
|
+
source?: {
|
|
254362
|
+
type: "UserUpload";
|
|
254363
|
+
userId: string;
|
|
254364
|
+
} | {
|
|
254365
|
+
type: "Figma";
|
|
254366
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
254367
|
+
} | undefined;
|
|
254368
|
+
} | undefined;
|
|
254369
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
254370
|
+
productContext?: string | undefined;
|
|
254371
|
+
additionalContext?: string | undefined;
|
|
254372
|
+
themePreset?: string | undefined;
|
|
254373
|
+
tokenThemeSets?: {
|
|
254374
|
+
id: string;
|
|
254375
|
+
name: string;
|
|
254376
|
+
tokenThemeIds: string[];
|
|
254377
|
+
}[] | undefined;
|
|
254378
|
+
};
|
|
254379
|
+
}>;
|
|
254380
|
+
update(workspaceId: string, contextId: string, body: DTOUpdateForgeProjectContext): Promise<{
|
|
254381
|
+
context: {
|
|
254382
|
+
id: string;
|
|
254383
|
+
createdAt: Date;
|
|
254384
|
+
name: string;
|
|
254385
|
+
updatedAt: Date;
|
|
254386
|
+
theme: {
|
|
254387
|
+
card: {
|
|
254388
|
+
value?: {
|
|
254389
|
+
color: string | {
|
|
254390
|
+
aliasTo?: string | undefined;
|
|
254391
|
+
};
|
|
254392
|
+
opacity: {
|
|
254393
|
+
value?: {
|
|
254394
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254395
|
+
measure: number;
|
|
254396
|
+
} | undefined;
|
|
254397
|
+
aliasTo?: string | undefined;
|
|
254398
|
+
};
|
|
254399
|
+
} | undefined;
|
|
254400
|
+
aliasTo?: string | undefined;
|
|
254401
|
+
};
|
|
254402
|
+
input: {
|
|
254403
|
+
value?: {
|
|
254404
|
+
color: string | {
|
|
254405
|
+
aliasTo?: string | undefined;
|
|
254406
|
+
};
|
|
254407
|
+
opacity: {
|
|
254408
|
+
value?: {
|
|
254409
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254410
|
+
measure: number;
|
|
254411
|
+
} | undefined;
|
|
254412
|
+
aliasTo?: string | undefined;
|
|
254413
|
+
};
|
|
254414
|
+
} | undefined;
|
|
254415
|
+
aliasTo?: string | undefined;
|
|
254416
|
+
};
|
|
254417
|
+
background: {
|
|
254418
|
+
value?: {
|
|
254419
|
+
color: string | {
|
|
254420
|
+
aliasTo?: string | undefined;
|
|
254421
|
+
};
|
|
254422
|
+
opacity: {
|
|
254423
|
+
value?: {
|
|
254424
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254425
|
+
measure: number;
|
|
254426
|
+
} | undefined;
|
|
254427
|
+
aliasTo?: string | undefined;
|
|
254428
|
+
};
|
|
254429
|
+
} | undefined;
|
|
254430
|
+
aliasTo?: string | undefined;
|
|
254431
|
+
};
|
|
254432
|
+
foreground: {
|
|
254433
|
+
value?: {
|
|
254434
|
+
color: string | {
|
|
254435
|
+
aliasTo?: string | undefined;
|
|
254436
|
+
};
|
|
254437
|
+
opacity: {
|
|
254438
|
+
value?: {
|
|
254439
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254440
|
+
measure: number;
|
|
254441
|
+
} | undefined;
|
|
254442
|
+
aliasTo?: string | undefined;
|
|
254443
|
+
};
|
|
254444
|
+
} | undefined;
|
|
254445
|
+
aliasTo?: string | undefined;
|
|
254446
|
+
};
|
|
254447
|
+
cardForeground: {
|
|
254448
|
+
value?: {
|
|
254449
|
+
color: string | {
|
|
254450
|
+
aliasTo?: string | undefined;
|
|
254451
|
+
};
|
|
254452
|
+
opacity: {
|
|
254453
|
+
value?: {
|
|
254454
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254455
|
+
measure: number;
|
|
254456
|
+
} | undefined;
|
|
254457
|
+
aliasTo?: string | undefined;
|
|
254458
|
+
};
|
|
254459
|
+
} | undefined;
|
|
254460
|
+
aliasTo?: string | undefined;
|
|
254461
|
+
};
|
|
254462
|
+
popover: {
|
|
254463
|
+
value?: {
|
|
254464
|
+
color: string | {
|
|
254465
|
+
aliasTo?: string | undefined;
|
|
254466
|
+
};
|
|
254467
|
+
opacity: {
|
|
254468
|
+
value?: {
|
|
254469
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254470
|
+
measure: number;
|
|
254471
|
+
} | undefined;
|
|
254472
|
+
aliasTo?: string | undefined;
|
|
254473
|
+
};
|
|
254474
|
+
} | undefined;
|
|
254475
|
+
aliasTo?: string | undefined;
|
|
254476
|
+
};
|
|
254477
|
+
popoverForeground: {
|
|
254478
|
+
value?: {
|
|
254479
|
+
color: string | {
|
|
254480
|
+
aliasTo?: string | undefined;
|
|
254481
|
+
};
|
|
254482
|
+
opacity: {
|
|
254483
|
+
value?: {
|
|
254484
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254485
|
+
measure: number;
|
|
254486
|
+
} | undefined;
|
|
254487
|
+
aliasTo?: string | undefined;
|
|
254488
|
+
};
|
|
254489
|
+
} | undefined;
|
|
254490
|
+
aliasTo?: string | undefined;
|
|
254491
|
+
};
|
|
254492
|
+
primary: {
|
|
254493
|
+
value?: {
|
|
254494
|
+
color: string | {
|
|
254495
|
+
aliasTo?: string | undefined;
|
|
254496
|
+
};
|
|
254497
|
+
opacity: {
|
|
254498
|
+
value?: {
|
|
254499
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254500
|
+
measure: number;
|
|
254501
|
+
} | undefined;
|
|
254502
|
+
aliasTo?: string | undefined;
|
|
254503
|
+
};
|
|
254504
|
+
} | undefined;
|
|
254505
|
+
aliasTo?: string | undefined;
|
|
254506
|
+
};
|
|
254507
|
+
primaryForeground: {
|
|
254508
|
+
value?: {
|
|
254509
|
+
color: string | {
|
|
254510
|
+
aliasTo?: string | undefined;
|
|
254511
|
+
};
|
|
254512
|
+
opacity: {
|
|
254513
|
+
value?: {
|
|
254514
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254515
|
+
measure: number;
|
|
254516
|
+
} | undefined;
|
|
254517
|
+
aliasTo?: string | undefined;
|
|
254518
|
+
};
|
|
254519
|
+
} | undefined;
|
|
254520
|
+
aliasTo?: string | undefined;
|
|
254521
|
+
};
|
|
254522
|
+
secondary: {
|
|
254523
|
+
value?: {
|
|
254524
|
+
color: string | {
|
|
254525
|
+
aliasTo?: string | undefined;
|
|
254526
|
+
};
|
|
254527
|
+
opacity: {
|
|
254528
|
+
value?: {
|
|
254529
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254530
|
+
measure: number;
|
|
254531
|
+
} | undefined;
|
|
254532
|
+
aliasTo?: string | undefined;
|
|
254533
|
+
};
|
|
254534
|
+
} | undefined;
|
|
254535
|
+
aliasTo?: string | undefined;
|
|
254536
|
+
};
|
|
254537
|
+
secondaryForeground: {
|
|
254538
|
+
value?: {
|
|
254539
|
+
color: string | {
|
|
254540
|
+
aliasTo?: string | undefined;
|
|
254541
|
+
};
|
|
254542
|
+
opacity: {
|
|
254543
|
+
value?: {
|
|
254544
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254545
|
+
measure: number;
|
|
254546
|
+
} | undefined;
|
|
254547
|
+
aliasTo?: string | undefined;
|
|
254548
|
+
};
|
|
254549
|
+
} | undefined;
|
|
254550
|
+
aliasTo?: string | undefined;
|
|
254551
|
+
};
|
|
254552
|
+
muted: {
|
|
254553
|
+
value?: {
|
|
254554
|
+
color: string | {
|
|
254555
|
+
aliasTo?: string | undefined;
|
|
254556
|
+
};
|
|
254557
|
+
opacity: {
|
|
254558
|
+
value?: {
|
|
254559
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254560
|
+
measure: number;
|
|
254561
|
+
} | undefined;
|
|
254562
|
+
aliasTo?: string | undefined;
|
|
254563
|
+
};
|
|
254564
|
+
} | undefined;
|
|
254565
|
+
aliasTo?: string | undefined;
|
|
254566
|
+
};
|
|
254567
|
+
mutedForeground: {
|
|
254568
|
+
value?: {
|
|
254569
|
+
color: string | {
|
|
254570
|
+
aliasTo?: string | undefined;
|
|
254571
|
+
};
|
|
254572
|
+
opacity: {
|
|
254573
|
+
value?: {
|
|
254574
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254575
|
+
measure: number;
|
|
254576
|
+
} | undefined;
|
|
254577
|
+
aliasTo?: string | undefined;
|
|
254578
|
+
};
|
|
254579
|
+
} | undefined;
|
|
254580
|
+
aliasTo?: string | undefined;
|
|
254581
|
+
};
|
|
254582
|
+
accent: {
|
|
254583
|
+
value?: {
|
|
254584
|
+
color: string | {
|
|
254585
|
+
aliasTo?: string | undefined;
|
|
254586
|
+
};
|
|
254587
|
+
opacity: {
|
|
254588
|
+
value?: {
|
|
254589
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254590
|
+
measure: number;
|
|
254591
|
+
} | undefined;
|
|
254592
|
+
aliasTo?: string | undefined;
|
|
254593
|
+
};
|
|
254594
|
+
} | undefined;
|
|
254595
|
+
aliasTo?: string | undefined;
|
|
254596
|
+
};
|
|
254597
|
+
accentForeground: {
|
|
254598
|
+
value?: {
|
|
254599
|
+
color: string | {
|
|
254600
|
+
aliasTo?: string | undefined;
|
|
254601
|
+
};
|
|
254602
|
+
opacity: {
|
|
254603
|
+
value?: {
|
|
254604
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254605
|
+
measure: number;
|
|
254606
|
+
} | undefined;
|
|
254607
|
+
aliasTo?: string | undefined;
|
|
254608
|
+
};
|
|
254609
|
+
} | undefined;
|
|
254610
|
+
aliasTo?: string | undefined;
|
|
254611
|
+
};
|
|
254612
|
+
destructive: {
|
|
254613
|
+
value?: {
|
|
254614
|
+
color: string | {
|
|
254615
|
+
aliasTo?: string | undefined;
|
|
254616
|
+
};
|
|
254617
|
+
opacity: {
|
|
254618
|
+
value?: {
|
|
254619
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254620
|
+
measure: number;
|
|
254621
|
+
} | undefined;
|
|
254622
|
+
aliasTo?: string | undefined;
|
|
254623
|
+
};
|
|
254624
|
+
} | undefined;
|
|
254625
|
+
aliasTo?: string | undefined;
|
|
254626
|
+
};
|
|
254627
|
+
border: {
|
|
254628
|
+
value?: {
|
|
254629
|
+
color: string | {
|
|
254630
|
+
aliasTo?: string | undefined;
|
|
254631
|
+
};
|
|
254632
|
+
opacity: {
|
|
254633
|
+
value?: {
|
|
254634
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254635
|
+
measure: number;
|
|
254636
|
+
} | undefined;
|
|
254637
|
+
aliasTo?: string | undefined;
|
|
254638
|
+
};
|
|
254639
|
+
} | undefined;
|
|
254640
|
+
aliasTo?: string | undefined;
|
|
254641
|
+
};
|
|
254642
|
+
ring: {
|
|
254643
|
+
value?: {
|
|
254644
|
+
color: string | {
|
|
254645
|
+
aliasTo?: string | undefined;
|
|
254646
|
+
};
|
|
254647
|
+
opacity: {
|
|
254648
|
+
value?: {
|
|
254649
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254650
|
+
measure: number;
|
|
254651
|
+
} | undefined;
|
|
254652
|
+
aliasTo?: string | undefined;
|
|
254653
|
+
};
|
|
254654
|
+
} | undefined;
|
|
254655
|
+
aliasTo?: string | undefined;
|
|
254656
|
+
};
|
|
254657
|
+
chart1: {
|
|
254658
|
+
value?: {
|
|
254659
|
+
color: string | {
|
|
254660
|
+
aliasTo?: string | undefined;
|
|
254661
|
+
};
|
|
254662
|
+
opacity: {
|
|
254663
|
+
value?: {
|
|
254664
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254665
|
+
measure: number;
|
|
254666
|
+
} | undefined;
|
|
254667
|
+
aliasTo?: string | undefined;
|
|
254668
|
+
};
|
|
254669
|
+
} | undefined;
|
|
254670
|
+
aliasTo?: string | undefined;
|
|
254671
|
+
};
|
|
254672
|
+
chart2: {
|
|
254673
|
+
value?: {
|
|
254674
|
+
color: string | {
|
|
254675
|
+
aliasTo?: string | undefined;
|
|
254676
|
+
};
|
|
254677
|
+
opacity: {
|
|
254678
|
+
value?: {
|
|
254679
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254680
|
+
measure: number;
|
|
254681
|
+
} | undefined;
|
|
254682
|
+
aliasTo?: string | undefined;
|
|
254683
|
+
};
|
|
254684
|
+
} | undefined;
|
|
254685
|
+
aliasTo?: string | undefined;
|
|
254686
|
+
};
|
|
254687
|
+
chart3: {
|
|
254688
|
+
value?: {
|
|
254689
|
+
color: string | {
|
|
254690
|
+
aliasTo?: string | undefined;
|
|
254691
|
+
};
|
|
254692
|
+
opacity: {
|
|
254693
|
+
value?: {
|
|
254694
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254695
|
+
measure: number;
|
|
254696
|
+
} | undefined;
|
|
254697
|
+
aliasTo?: string | undefined;
|
|
254698
|
+
};
|
|
254699
|
+
} | undefined;
|
|
254700
|
+
aliasTo?: string | undefined;
|
|
254701
|
+
};
|
|
254702
|
+
chart4: {
|
|
254703
|
+
value?: {
|
|
254704
|
+
color: string | {
|
|
254705
|
+
aliasTo?: string | undefined;
|
|
254706
|
+
};
|
|
254707
|
+
opacity: {
|
|
254708
|
+
value?: {
|
|
254709
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254710
|
+
measure: number;
|
|
254711
|
+
} | undefined;
|
|
254712
|
+
aliasTo?: string | undefined;
|
|
254713
|
+
};
|
|
254714
|
+
} | undefined;
|
|
254715
|
+
aliasTo?: string | undefined;
|
|
254716
|
+
};
|
|
254717
|
+
chart5: {
|
|
254718
|
+
value?: {
|
|
254719
|
+
color: string | {
|
|
254720
|
+
aliasTo?: string | undefined;
|
|
254721
|
+
};
|
|
254722
|
+
opacity: {
|
|
254723
|
+
value?: {
|
|
254724
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254725
|
+
measure: number;
|
|
254726
|
+
} | undefined;
|
|
254727
|
+
aliasTo?: string | undefined;
|
|
254728
|
+
};
|
|
254729
|
+
} | undefined;
|
|
254730
|
+
aliasTo?: string | undefined;
|
|
254731
|
+
};
|
|
254732
|
+
sidebar: {
|
|
254733
|
+
value?: {
|
|
254734
|
+
color: string | {
|
|
254735
|
+
aliasTo?: string | undefined;
|
|
254736
|
+
};
|
|
254737
|
+
opacity: {
|
|
254738
|
+
value?: {
|
|
254739
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254740
|
+
measure: number;
|
|
254741
|
+
} | undefined;
|
|
254742
|
+
aliasTo?: string | undefined;
|
|
254743
|
+
};
|
|
254744
|
+
} | undefined;
|
|
254745
|
+
aliasTo?: string | undefined;
|
|
254746
|
+
};
|
|
254747
|
+
sidebarForeground: {
|
|
254748
|
+
value?: {
|
|
254749
|
+
color: string | {
|
|
254750
|
+
aliasTo?: string | undefined;
|
|
254751
|
+
};
|
|
254752
|
+
opacity: {
|
|
254753
|
+
value?: {
|
|
254754
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254755
|
+
measure: number;
|
|
254756
|
+
} | undefined;
|
|
254757
|
+
aliasTo?: string | undefined;
|
|
254758
|
+
};
|
|
254759
|
+
} | undefined;
|
|
254760
|
+
aliasTo?: string | undefined;
|
|
254761
|
+
};
|
|
254762
|
+
sidebarPrimary: {
|
|
254763
|
+
value?: {
|
|
254764
|
+
color: string | {
|
|
254765
|
+
aliasTo?: string | undefined;
|
|
254766
|
+
};
|
|
254767
|
+
opacity: {
|
|
254768
|
+
value?: {
|
|
254769
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254770
|
+
measure: number;
|
|
254771
|
+
} | undefined;
|
|
254772
|
+
aliasTo?: string | undefined;
|
|
254773
|
+
};
|
|
254774
|
+
} | undefined;
|
|
254775
|
+
aliasTo?: string | undefined;
|
|
254776
|
+
};
|
|
254777
|
+
sidebarPrimaryForeground: {
|
|
254778
|
+
value?: {
|
|
254779
|
+
color: string | {
|
|
254780
|
+
aliasTo?: string | undefined;
|
|
254781
|
+
};
|
|
254782
|
+
opacity: {
|
|
254783
|
+
value?: {
|
|
254784
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254785
|
+
measure: number;
|
|
254786
|
+
} | undefined;
|
|
254787
|
+
aliasTo?: string | undefined;
|
|
254788
|
+
};
|
|
254789
|
+
} | undefined;
|
|
254790
|
+
aliasTo?: string | undefined;
|
|
254791
|
+
};
|
|
254792
|
+
sidebarAccent: {
|
|
254793
|
+
value?: {
|
|
254794
|
+
color: string | {
|
|
254795
|
+
aliasTo?: string | undefined;
|
|
254796
|
+
};
|
|
254797
|
+
opacity: {
|
|
254798
|
+
value?: {
|
|
254799
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254800
|
+
measure: number;
|
|
254801
|
+
} | undefined;
|
|
254802
|
+
aliasTo?: string | undefined;
|
|
254803
|
+
};
|
|
254804
|
+
} | undefined;
|
|
254805
|
+
aliasTo?: string | undefined;
|
|
254806
|
+
};
|
|
254807
|
+
sidebarAccentForeground: {
|
|
254808
|
+
value?: {
|
|
254809
|
+
color: string | {
|
|
254810
|
+
aliasTo?: string | undefined;
|
|
254811
|
+
};
|
|
254812
|
+
opacity: {
|
|
254813
|
+
value?: {
|
|
254814
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254815
|
+
measure: number;
|
|
254816
|
+
} | undefined;
|
|
254817
|
+
aliasTo?: string | undefined;
|
|
254818
|
+
};
|
|
254819
|
+
} | undefined;
|
|
254820
|
+
aliasTo?: string | undefined;
|
|
254821
|
+
};
|
|
254822
|
+
sidebarBorder: {
|
|
254823
|
+
value?: {
|
|
254824
|
+
color: string | {
|
|
254825
|
+
aliasTo?: string | undefined;
|
|
254826
|
+
};
|
|
254827
|
+
opacity: {
|
|
254828
|
+
value?: {
|
|
254829
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254830
|
+
measure: number;
|
|
254831
|
+
} | undefined;
|
|
254832
|
+
aliasTo?: string | undefined;
|
|
254833
|
+
};
|
|
254834
|
+
} | undefined;
|
|
254835
|
+
aliasTo?: string | undefined;
|
|
254836
|
+
};
|
|
254837
|
+
sidebarRing: {
|
|
254838
|
+
value?: {
|
|
254839
|
+
color: string | {
|
|
254840
|
+
aliasTo?: string | undefined;
|
|
254841
|
+
};
|
|
254842
|
+
opacity: {
|
|
254843
|
+
value?: {
|
|
254844
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254845
|
+
measure: number;
|
|
254846
|
+
} | undefined;
|
|
254847
|
+
aliasTo?: string | undefined;
|
|
254848
|
+
};
|
|
254849
|
+
} | undefined;
|
|
254850
|
+
aliasTo?: string | undefined;
|
|
254851
|
+
};
|
|
254852
|
+
fontFamily: {
|
|
254853
|
+
value?: string | undefined;
|
|
254854
|
+
aliasTo?: string | undefined;
|
|
254855
|
+
};
|
|
254856
|
+
textXs: {
|
|
254857
|
+
value?: {
|
|
254858
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254859
|
+
measure: number;
|
|
254860
|
+
} | undefined;
|
|
254861
|
+
aliasTo?: string | undefined;
|
|
254862
|
+
};
|
|
254863
|
+
textSm: {
|
|
254864
|
+
value?: {
|
|
254865
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254866
|
+
measure: number;
|
|
254867
|
+
} | undefined;
|
|
254868
|
+
aliasTo?: string | undefined;
|
|
254869
|
+
};
|
|
254870
|
+
textBase: {
|
|
254871
|
+
value?: {
|
|
254872
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254873
|
+
measure: number;
|
|
254874
|
+
} | undefined;
|
|
254875
|
+
aliasTo?: string | undefined;
|
|
254876
|
+
};
|
|
254877
|
+
textLg: {
|
|
254878
|
+
value?: {
|
|
254879
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254880
|
+
measure: number;
|
|
254881
|
+
} | undefined;
|
|
254882
|
+
aliasTo?: string | undefined;
|
|
254883
|
+
};
|
|
254884
|
+
textXl: {
|
|
254885
|
+
value?: {
|
|
254886
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254887
|
+
measure: number;
|
|
254888
|
+
} | undefined;
|
|
254889
|
+
aliasTo?: string | undefined;
|
|
254890
|
+
};
|
|
254891
|
+
text2xl: {
|
|
254892
|
+
value?: {
|
|
254893
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254894
|
+
measure: number;
|
|
254895
|
+
} | undefined;
|
|
254896
|
+
aliasTo?: string | undefined;
|
|
254897
|
+
};
|
|
254898
|
+
text3xl: {
|
|
254899
|
+
value?: {
|
|
254900
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254901
|
+
measure: number;
|
|
254902
|
+
} | undefined;
|
|
254903
|
+
aliasTo?: string | undefined;
|
|
254904
|
+
};
|
|
254905
|
+
text4xl: {
|
|
254906
|
+
value?: {
|
|
254907
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254908
|
+
measure: number;
|
|
254909
|
+
} | undefined;
|
|
254910
|
+
aliasTo?: string | undefined;
|
|
254911
|
+
};
|
|
254912
|
+
text5xl: {
|
|
254913
|
+
value?: {
|
|
254914
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254915
|
+
measure: number;
|
|
254916
|
+
} | undefined;
|
|
254917
|
+
aliasTo?: string | undefined;
|
|
254918
|
+
};
|
|
254919
|
+
text6xl: {
|
|
254920
|
+
value?: {
|
|
254921
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254922
|
+
measure: number;
|
|
254923
|
+
} | undefined;
|
|
254924
|
+
aliasTo?: string | undefined;
|
|
254925
|
+
};
|
|
254926
|
+
text7xl: {
|
|
254927
|
+
value?: {
|
|
254928
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254929
|
+
measure: number;
|
|
254930
|
+
} | undefined;
|
|
254931
|
+
aliasTo?: string | undefined;
|
|
254932
|
+
};
|
|
254933
|
+
text8xl: {
|
|
254934
|
+
value?: {
|
|
254935
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254936
|
+
measure: number;
|
|
254937
|
+
} | undefined;
|
|
254938
|
+
aliasTo?: string | undefined;
|
|
254939
|
+
};
|
|
254940
|
+
text9xl: {
|
|
254941
|
+
value?: {
|
|
254942
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254943
|
+
measure: number;
|
|
254944
|
+
} | undefined;
|
|
254945
|
+
aliasTo?: string | undefined;
|
|
254946
|
+
};
|
|
254947
|
+
textXsLineHeight: {
|
|
254948
|
+
value?: {
|
|
254949
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254950
|
+
measure: number;
|
|
254951
|
+
} | undefined;
|
|
254952
|
+
aliasTo?: string | undefined;
|
|
254953
|
+
};
|
|
254954
|
+
textSmLineHeight: {
|
|
254955
|
+
value?: {
|
|
254956
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254957
|
+
measure: number;
|
|
254958
|
+
} | undefined;
|
|
254959
|
+
aliasTo?: string | undefined;
|
|
254960
|
+
};
|
|
254961
|
+
textBaseLineHeight: {
|
|
254962
|
+
value?: {
|
|
254963
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254964
|
+
measure: number;
|
|
254965
|
+
} | undefined;
|
|
254966
|
+
aliasTo?: string | undefined;
|
|
254967
|
+
};
|
|
254968
|
+
textLgLineHeight: {
|
|
254969
|
+
value?: {
|
|
254970
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254971
|
+
measure: number;
|
|
254972
|
+
} | undefined;
|
|
254973
|
+
aliasTo?: string | undefined;
|
|
254974
|
+
};
|
|
254975
|
+
textXlLineHeight: {
|
|
254976
|
+
value?: {
|
|
254977
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254978
|
+
measure: number;
|
|
254979
|
+
} | undefined;
|
|
254980
|
+
aliasTo?: string | undefined;
|
|
254981
|
+
};
|
|
254982
|
+
text2xlLineHeight: {
|
|
254983
|
+
value?: {
|
|
254984
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254985
|
+
measure: number;
|
|
254986
|
+
} | undefined;
|
|
254987
|
+
aliasTo?: string | undefined;
|
|
254988
|
+
};
|
|
254989
|
+
text3xlLineHeight: {
|
|
254990
|
+
value?: {
|
|
254991
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254992
|
+
measure: number;
|
|
254993
|
+
} | undefined;
|
|
254994
|
+
aliasTo?: string | undefined;
|
|
254995
|
+
};
|
|
254996
|
+
text4xlLineHeight: {
|
|
254997
|
+
value?: {
|
|
254998
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
254999
|
+
measure: number;
|
|
255000
|
+
} | undefined;
|
|
255001
|
+
aliasTo?: string | undefined;
|
|
255002
|
+
};
|
|
255003
|
+
text5xlLineHeight: {
|
|
255004
|
+
value?: {
|
|
255005
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255006
|
+
measure: number;
|
|
255007
|
+
} | undefined;
|
|
255008
|
+
aliasTo?: string | undefined;
|
|
255009
|
+
};
|
|
255010
|
+
text6xlLineHeight: {
|
|
255011
|
+
value?: {
|
|
255012
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255013
|
+
measure: number;
|
|
255014
|
+
} | undefined;
|
|
255015
|
+
aliasTo?: string | undefined;
|
|
255016
|
+
};
|
|
255017
|
+
text7xlLineHeight: {
|
|
255018
|
+
value?: {
|
|
255019
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255020
|
+
measure: number;
|
|
255021
|
+
} | undefined;
|
|
255022
|
+
aliasTo?: string | undefined;
|
|
255023
|
+
};
|
|
255024
|
+
text8xlLineHeight: {
|
|
255025
|
+
value?: {
|
|
255026
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255027
|
+
measure: number;
|
|
255028
|
+
} | undefined;
|
|
255029
|
+
aliasTo?: string | undefined;
|
|
255030
|
+
};
|
|
255031
|
+
text9xlLineHeight: {
|
|
255032
|
+
value?: {
|
|
255033
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255034
|
+
measure: number;
|
|
255035
|
+
} | undefined;
|
|
255036
|
+
aliasTo?: string | undefined;
|
|
255037
|
+
};
|
|
255038
|
+
fontWeightThin: {
|
|
255039
|
+
value?: string | undefined;
|
|
255040
|
+
aliasTo?: string | undefined;
|
|
255041
|
+
};
|
|
255042
|
+
fontWeightExtralight: {
|
|
255043
|
+
value?: string | undefined;
|
|
255044
|
+
aliasTo?: string | undefined;
|
|
255045
|
+
};
|
|
255046
|
+
fontWeightLight: {
|
|
255047
|
+
value?: string | undefined;
|
|
255048
|
+
aliasTo?: string | undefined;
|
|
255049
|
+
};
|
|
255050
|
+
fontWeightNormal: {
|
|
255051
|
+
value?: string | undefined;
|
|
255052
|
+
aliasTo?: string | undefined;
|
|
255053
|
+
};
|
|
255054
|
+
fontWeightMedium: {
|
|
255055
|
+
value?: string | undefined;
|
|
255056
|
+
aliasTo?: string | undefined;
|
|
255057
|
+
};
|
|
255058
|
+
fontWeightSemibold: {
|
|
255059
|
+
value?: string | undefined;
|
|
255060
|
+
aliasTo?: string | undefined;
|
|
255061
|
+
};
|
|
255062
|
+
fontWeightBold: {
|
|
255063
|
+
value?: string | undefined;
|
|
255064
|
+
aliasTo?: string | undefined;
|
|
255065
|
+
};
|
|
255066
|
+
fontWeightExtrabold: {
|
|
255067
|
+
value?: string | undefined;
|
|
255068
|
+
aliasTo?: string | undefined;
|
|
255069
|
+
};
|
|
255070
|
+
fontWeightBlack: {
|
|
255071
|
+
value?: string | undefined;
|
|
255072
|
+
aliasTo?: string | undefined;
|
|
255073
|
+
};
|
|
255074
|
+
radius: {
|
|
255075
|
+
value?: {
|
|
255076
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255077
|
+
measure: number;
|
|
255078
|
+
} | undefined;
|
|
255079
|
+
aliasTo?: string | undefined;
|
|
255080
|
+
};
|
|
255081
|
+
spacing: {
|
|
255082
|
+
value?: {
|
|
255083
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255084
|
+
measure: number;
|
|
255085
|
+
} | undefined;
|
|
255086
|
+
aliasTo?: string | undefined;
|
|
255087
|
+
};
|
|
255088
|
+
shadow2xs: {
|
|
255089
|
+
value?: {
|
|
255090
|
+
value?: {
|
|
255091
|
+
type: "Drop" | "Inner";
|
|
255092
|
+
color: {
|
|
255093
|
+
value?: {
|
|
255094
|
+
color: string | {
|
|
255095
|
+
aliasTo?: string | undefined;
|
|
255096
|
+
};
|
|
255097
|
+
opacity: {
|
|
255098
|
+
value?: {
|
|
255099
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255100
|
+
measure: number;
|
|
255101
|
+
} | undefined;
|
|
255102
|
+
aliasTo?: string | undefined;
|
|
255103
|
+
};
|
|
255104
|
+
} | undefined;
|
|
255105
|
+
aliasTo?: string | undefined;
|
|
255106
|
+
};
|
|
255107
|
+
radius: number;
|
|
255108
|
+
x: number;
|
|
255109
|
+
y: number;
|
|
255110
|
+
spread: number;
|
|
255111
|
+
opacity?: {
|
|
255112
|
+
value?: {
|
|
255113
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255114
|
+
measure: number;
|
|
255115
|
+
} | undefined;
|
|
255116
|
+
aliasTo?: string | undefined;
|
|
255117
|
+
} | undefined;
|
|
255118
|
+
} | undefined;
|
|
255119
|
+
aliasTo?: string | undefined;
|
|
255120
|
+
}[] | undefined;
|
|
255121
|
+
aliasTo?: string | undefined;
|
|
255122
|
+
};
|
|
255123
|
+
shadowXs: {
|
|
255124
|
+
value?: {
|
|
255125
|
+
value?: {
|
|
255126
|
+
type: "Drop" | "Inner";
|
|
255127
|
+
color: {
|
|
255128
|
+
value?: {
|
|
255129
|
+
color: string | {
|
|
255130
|
+
aliasTo?: string | undefined;
|
|
255131
|
+
};
|
|
255132
|
+
opacity: {
|
|
255133
|
+
value?: {
|
|
255134
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255135
|
+
measure: number;
|
|
255136
|
+
} | undefined;
|
|
255137
|
+
aliasTo?: string | undefined;
|
|
255138
|
+
};
|
|
255139
|
+
} | undefined;
|
|
255140
|
+
aliasTo?: string | undefined;
|
|
255141
|
+
};
|
|
255142
|
+
radius: number;
|
|
255143
|
+
x: number;
|
|
255144
|
+
y: number;
|
|
255145
|
+
spread: number;
|
|
255146
|
+
opacity?: {
|
|
255147
|
+
value?: {
|
|
255148
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255149
|
+
measure: number;
|
|
255150
|
+
} | undefined;
|
|
255151
|
+
aliasTo?: string | undefined;
|
|
255152
|
+
} | undefined;
|
|
255153
|
+
} | undefined;
|
|
255154
|
+
aliasTo?: string | undefined;
|
|
255155
|
+
}[] | undefined;
|
|
255156
|
+
aliasTo?: string | undefined;
|
|
255157
|
+
};
|
|
255158
|
+
shadowSm: {
|
|
255159
|
+
value?: {
|
|
255160
|
+
value?: {
|
|
255161
|
+
type: "Drop" | "Inner";
|
|
255162
|
+
color: {
|
|
255163
|
+
value?: {
|
|
255164
|
+
color: string | {
|
|
255165
|
+
aliasTo?: string | undefined;
|
|
255166
|
+
};
|
|
255167
|
+
opacity: {
|
|
255168
|
+
value?: {
|
|
255169
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255170
|
+
measure: number;
|
|
255171
|
+
} | undefined;
|
|
255172
|
+
aliasTo?: string | undefined;
|
|
255173
|
+
};
|
|
255174
|
+
} | undefined;
|
|
255175
|
+
aliasTo?: string | undefined;
|
|
255176
|
+
};
|
|
255177
|
+
radius: number;
|
|
255178
|
+
x: number;
|
|
255179
|
+
y: number;
|
|
255180
|
+
spread: number;
|
|
255181
|
+
opacity?: {
|
|
255182
|
+
value?: {
|
|
255183
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255184
|
+
measure: number;
|
|
255185
|
+
} | undefined;
|
|
255186
|
+
aliasTo?: string | undefined;
|
|
255187
|
+
} | undefined;
|
|
255188
|
+
} | undefined;
|
|
255189
|
+
aliasTo?: string | undefined;
|
|
255190
|
+
}[] | undefined;
|
|
255191
|
+
aliasTo?: string | undefined;
|
|
255192
|
+
};
|
|
255193
|
+
shadowMd: {
|
|
255194
|
+
value?: {
|
|
255195
|
+
value?: {
|
|
255196
|
+
type: "Drop" | "Inner";
|
|
255197
|
+
color: {
|
|
255198
|
+
value?: {
|
|
255199
|
+
color: string | {
|
|
255200
|
+
aliasTo?: string | undefined;
|
|
255201
|
+
};
|
|
255202
|
+
opacity: {
|
|
255203
|
+
value?: {
|
|
255204
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255205
|
+
measure: number;
|
|
255206
|
+
} | undefined;
|
|
255207
|
+
aliasTo?: string | undefined;
|
|
255208
|
+
};
|
|
255209
|
+
} | undefined;
|
|
255210
|
+
aliasTo?: string | undefined;
|
|
255211
|
+
};
|
|
255212
|
+
radius: number;
|
|
255213
|
+
x: number;
|
|
255214
|
+
y: number;
|
|
255215
|
+
spread: number;
|
|
255216
|
+
opacity?: {
|
|
255217
|
+
value?: {
|
|
255218
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255219
|
+
measure: number;
|
|
255220
|
+
} | undefined;
|
|
255221
|
+
aliasTo?: string | undefined;
|
|
255222
|
+
} | undefined;
|
|
255223
|
+
} | undefined;
|
|
255224
|
+
aliasTo?: string | undefined;
|
|
255225
|
+
}[] | undefined;
|
|
255226
|
+
aliasTo?: string | undefined;
|
|
255227
|
+
};
|
|
255228
|
+
shadowLg: {
|
|
255229
|
+
value?: {
|
|
255230
|
+
value?: {
|
|
255231
|
+
type: "Drop" | "Inner";
|
|
255232
|
+
color: {
|
|
255233
|
+
value?: {
|
|
255234
|
+
color: string | {
|
|
255235
|
+
aliasTo?: string | undefined;
|
|
255236
|
+
};
|
|
255237
|
+
opacity: {
|
|
255238
|
+
value?: {
|
|
255239
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255240
|
+
measure: number;
|
|
255241
|
+
} | undefined;
|
|
255242
|
+
aliasTo?: string | undefined;
|
|
255243
|
+
};
|
|
255244
|
+
} | undefined;
|
|
255245
|
+
aliasTo?: string | undefined;
|
|
255246
|
+
};
|
|
255247
|
+
radius: number;
|
|
255248
|
+
x: number;
|
|
255249
|
+
y: number;
|
|
255250
|
+
spread: number;
|
|
255251
|
+
opacity?: {
|
|
255252
|
+
value?: {
|
|
255253
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255254
|
+
measure: number;
|
|
255255
|
+
} | undefined;
|
|
255256
|
+
aliasTo?: string | undefined;
|
|
255257
|
+
} | undefined;
|
|
255258
|
+
} | undefined;
|
|
255259
|
+
aliasTo?: string | undefined;
|
|
255260
|
+
}[] | undefined;
|
|
255261
|
+
aliasTo?: string | undefined;
|
|
255262
|
+
};
|
|
255263
|
+
shadowXl: {
|
|
255264
|
+
value?: {
|
|
255265
|
+
value?: {
|
|
255266
|
+
type: "Drop" | "Inner";
|
|
255267
|
+
color: {
|
|
255268
|
+
value?: {
|
|
255269
|
+
color: string | {
|
|
255270
|
+
aliasTo?: string | undefined;
|
|
255271
|
+
};
|
|
255272
|
+
opacity: {
|
|
255273
|
+
value?: {
|
|
255274
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255275
|
+
measure: number;
|
|
255276
|
+
} | undefined;
|
|
255277
|
+
aliasTo?: string | undefined;
|
|
255278
|
+
};
|
|
255279
|
+
} | undefined;
|
|
255280
|
+
aliasTo?: string | undefined;
|
|
255281
|
+
};
|
|
255282
|
+
radius: number;
|
|
255283
|
+
x: number;
|
|
255284
|
+
y: number;
|
|
255285
|
+
spread: number;
|
|
255286
|
+
opacity?: {
|
|
255287
|
+
value?: {
|
|
255288
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255289
|
+
measure: number;
|
|
255290
|
+
} | undefined;
|
|
255291
|
+
aliasTo?: string | undefined;
|
|
255292
|
+
} | undefined;
|
|
255293
|
+
} | undefined;
|
|
255294
|
+
aliasTo?: string | undefined;
|
|
255295
|
+
}[] | undefined;
|
|
255296
|
+
aliasTo?: string | undefined;
|
|
255297
|
+
};
|
|
255298
|
+
shadow2xl: {
|
|
255299
|
+
value?: {
|
|
255300
|
+
value?: {
|
|
255301
|
+
type: "Drop" | "Inner";
|
|
255302
|
+
color: {
|
|
255303
|
+
value?: {
|
|
255304
|
+
color: string | {
|
|
255305
|
+
aliasTo?: string | undefined;
|
|
255306
|
+
};
|
|
255307
|
+
opacity: {
|
|
255308
|
+
value?: {
|
|
255309
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255310
|
+
measure: number;
|
|
255311
|
+
} | undefined;
|
|
255312
|
+
aliasTo?: string | undefined;
|
|
255313
|
+
};
|
|
255314
|
+
} | undefined;
|
|
255315
|
+
aliasTo?: string | undefined;
|
|
255316
|
+
};
|
|
255317
|
+
radius: number;
|
|
255318
|
+
x: number;
|
|
255319
|
+
y: number;
|
|
255320
|
+
spread: number;
|
|
255321
|
+
opacity?: {
|
|
255322
|
+
value?: {
|
|
255323
|
+
unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
|
|
255324
|
+
measure: number;
|
|
255325
|
+
} | undefined;
|
|
255326
|
+
aliasTo?: string | undefined;
|
|
255327
|
+
} | undefined;
|
|
255328
|
+
} | undefined;
|
|
255329
|
+
aliasTo?: string | undefined;
|
|
255330
|
+
}[] | undefined;
|
|
255331
|
+
aliasTo?: string | undefined;
|
|
255332
|
+
};
|
|
255333
|
+
};
|
|
255334
|
+
workspaceId: string;
|
|
255335
|
+
isArchived: boolean;
|
|
255336
|
+
componentSet: {
|
|
255337
|
+
type: "Shadcn";
|
|
255338
|
+
};
|
|
255339
|
+
iconSet: {
|
|
255340
|
+
type: "Phosphor" | "Lucide" | "Tabler";
|
|
255341
|
+
variant?: string | undefined;
|
|
255342
|
+
};
|
|
255343
|
+
description?: string | undefined;
|
|
255344
|
+
designSystemId?: string | undefined;
|
|
255345
|
+
brandId?: string | undefined;
|
|
255346
|
+
thumbnail?: {
|
|
255347
|
+
id: string;
|
|
255348
|
+
url: string;
|
|
255349
|
+
name?: string | undefined;
|
|
255350
|
+
source?: {
|
|
255351
|
+
type: "UserUpload";
|
|
255352
|
+
userId: string;
|
|
255353
|
+
} | {
|
|
255354
|
+
type: "Figma";
|
|
255355
|
+
renderMode: "Image" | "HTML" | "JSON";
|
|
255356
|
+
} | undefined;
|
|
255357
|
+
} | undefined;
|
|
255358
|
+
defaultTokenThemeSetId?: string | undefined;
|
|
255359
|
+
productContext?: string | undefined;
|
|
255360
|
+
additionalContext?: string | undefined;
|
|
255361
|
+
themePreset?: string | undefined;
|
|
255362
|
+
tokenThemeSets?: {
|
|
255363
|
+
id: string;
|
|
255364
|
+
name: string;
|
|
255365
|
+
tokenThemeIds: string[];
|
|
255366
|
+
}[] | undefined;
|
|
255367
|
+
};
|
|
255368
|
+
}>;
|
|
255369
|
+
}
|
|
255370
|
+
|
|
255371
|
+
declare class ForgeProjectFilesEndpoint {
|
|
255372
|
+
private readonly requestExecutor;
|
|
255373
|
+
constructor(requestExecutor: RequestExecutor);
|
|
255374
|
+
upload(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadPayload): Promise<{
|
|
255375
|
+
files: {
|
|
255376
|
+
id: string;
|
|
255377
|
+
name: string;
|
|
255378
|
+
url: string;
|
|
255379
|
+
size: number;
|
|
255380
|
+
checksum: string;
|
|
255381
|
+
pendingUpload?: boolean | undefined;
|
|
255382
|
+
}[];
|
|
255383
|
+
uploadUrls: {
|
|
255384
|
+
fileId: string;
|
|
255385
|
+
uploadUrl: string;
|
|
255386
|
+
}[];
|
|
255387
|
+
}>;
|
|
255388
|
+
finalize(workspaceId: string, projectId: string, body: DTOForgeProjectFileUploadFinalizePayload): Promise<{
|
|
255389
|
+
ok: true;
|
|
255390
|
+
}>;
|
|
255391
|
+
list(workspaceId: string, projectId: string): Promise<{
|
|
255392
|
+
files: {
|
|
255393
|
+
id: string;
|
|
255394
|
+
name: string;
|
|
255395
|
+
url: string;
|
|
255396
|
+
size: number;
|
|
255397
|
+
checksum: string;
|
|
255398
|
+
pendingUpload?: boolean | undefined;
|
|
255399
|
+
}[];
|
|
255400
|
+
}>;
|
|
255401
|
+
}
|
|
255402
|
+
|
|
255403
|
+
declare class ForgeProjectInvitationsEndpoint {
|
|
255404
|
+
private readonly requestExecutor;
|
|
255405
|
+
constructor(requestExecutor: RequestExecutor);
|
|
255406
|
+
list(projectId: string): Promise<{
|
|
255407
|
+
members: {
|
|
255408
|
+
user: {
|
|
255409
|
+
id: string;
|
|
255410
|
+
email: string;
|
|
255411
|
+
profile: {
|
|
255412
|
+
name: string;
|
|
255413
|
+
nickname?: string | undefined;
|
|
255414
|
+
avatar?: string | undefined;
|
|
255415
|
+
};
|
|
255416
|
+
};
|
|
255417
|
+
userId: string;
|
|
255418
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
255419
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
255420
|
+
forgeProjectId: string;
|
|
255421
|
+
workspaceMembershipId: string;
|
|
255422
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
255423
|
+
}[];
|
|
255424
|
+
invitations: {
|
|
255425
|
+
email: string;
|
|
255426
|
+
createdAt: Date;
|
|
255427
|
+
updatedAt: Date;
|
|
255428
|
+
role: "Builder" | "Admin" | "Viewer";
|
|
255429
|
+
workspaceInvitationId: string;
|
|
255430
|
+
forgeProjectId: string;
|
|
255431
|
+
createdById: string;
|
|
255432
|
+
}[];
|
|
255433
|
+
}>;
|
|
255434
|
+
create(projectId: string, body: DTOCreateForgeProjectInvitation): Promise<{
|
|
255435
|
+
members: {
|
|
255436
|
+
user: {
|
|
255437
|
+
id: string;
|
|
255438
|
+
email: string;
|
|
255439
|
+
profile: {
|
|
255440
|
+
name: string;
|
|
255441
|
+
nickname?: string | undefined;
|
|
255442
|
+
avatar?: string | undefined;
|
|
255443
|
+
};
|
|
255444
|
+
};
|
|
255445
|
+
userId: string;
|
|
255446
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
255447
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
255448
|
+
forgeProjectId: string;
|
|
255449
|
+
workspaceMembershipId: string;
|
|
255450
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
255451
|
+
}[];
|
|
255452
|
+
invitations: {
|
|
255453
|
+
email: string;
|
|
255454
|
+
createdAt: Date;
|
|
255455
|
+
updatedAt: Date;
|
|
255456
|
+
role: "Builder" | "Admin" | "Viewer";
|
|
255457
|
+
workspaceInvitationId: string;
|
|
255458
|
+
forgeProjectId: string;
|
|
255459
|
+
createdById: string;
|
|
255460
|
+
}[];
|
|
255461
|
+
}>;
|
|
255462
|
+
update(projectId: string, email: string, body: DTOUpdateForgeProjectInvitation): Promise<{
|
|
255463
|
+
invitation: {
|
|
255464
|
+
email: string;
|
|
255465
|
+
createdAt: Date;
|
|
255466
|
+
updatedAt: Date;
|
|
255467
|
+
role: "Builder" | "Admin" | "Viewer";
|
|
255468
|
+
workspaceInvitationId: string;
|
|
255469
|
+
forgeProjectId: string;
|
|
255470
|
+
createdById: string;
|
|
255471
|
+
};
|
|
255472
|
+
}>;
|
|
255473
|
+
delete(projectId: string, email: string): Promise<{
|
|
255474
|
+
ok: true;
|
|
255475
|
+
}>;
|
|
255476
|
+
}
|
|
255477
|
+
|
|
255478
|
+
declare class ForgeProjectMembersEndpoint {
|
|
255479
|
+
private readonly requestExecutor;
|
|
255480
|
+
constructor(requestExecutor: RequestExecutor);
|
|
255481
|
+
list(workspaceId: string, projectId: string): Promise<{
|
|
255482
|
+
members: {
|
|
255483
|
+
user: {
|
|
255484
|
+
id: string;
|
|
255485
|
+
email: string;
|
|
255486
|
+
profile: {
|
|
255487
|
+
name: string;
|
|
255488
|
+
nickname?: string | undefined;
|
|
255489
|
+
avatar?: string | undefined;
|
|
255490
|
+
};
|
|
255491
|
+
};
|
|
255492
|
+
userId: string;
|
|
255493
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
255494
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
255495
|
+
forgeProjectId: string;
|
|
255496
|
+
workspaceMembershipId: string;
|
|
255497
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
255498
|
+
}[];
|
|
255499
|
+
invitations: {
|
|
255500
|
+
email: string;
|
|
255501
|
+
createdAt: Date;
|
|
255502
|
+
updatedAt: Date;
|
|
255503
|
+
role: "Builder" | "Admin" | "Viewer";
|
|
255504
|
+
workspaceInvitationId: string;
|
|
255505
|
+
forgeProjectId: string;
|
|
255506
|
+
createdById: string;
|
|
255507
|
+
}[];
|
|
255508
|
+
}>;
|
|
255509
|
+
create(workspaceId: string, projectId: string, body: DTOAddMembersToForgeProject): Promise<{
|
|
255510
|
+
members: {
|
|
255511
|
+
user: {
|
|
255512
|
+
id: string;
|
|
255513
|
+
email: string;
|
|
255514
|
+
profile: {
|
|
255515
|
+
name: string;
|
|
255516
|
+
nickname?: string | undefined;
|
|
255517
|
+
avatar?: string | undefined;
|
|
255518
|
+
};
|
|
255519
|
+
};
|
|
255520
|
+
userId: string;
|
|
255521
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
255522
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
255523
|
+
forgeProjectId: string;
|
|
255524
|
+
workspaceMembershipId: string;
|
|
255525
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
255526
|
+
}[];
|
|
255527
|
+
invitations: {
|
|
255528
|
+
email: string;
|
|
255529
|
+
createdAt: Date;
|
|
255530
|
+
updatedAt: Date;
|
|
255531
|
+
role: "Builder" | "Admin" | "Viewer";
|
|
255532
|
+
workspaceInvitationId: string;
|
|
255533
|
+
forgeProjectId: string;
|
|
255534
|
+
createdById: string;
|
|
255535
|
+
}[];
|
|
255536
|
+
}>;
|
|
255537
|
+
update(workspaceId: string, projectId: string, body: DTOUpdateForgeProjectMember): Promise<{
|
|
255538
|
+
member: {
|
|
255539
|
+
user: {
|
|
255540
|
+
id: string;
|
|
255541
|
+
email: string;
|
|
255542
|
+
profile: {
|
|
255543
|
+
name: string;
|
|
255544
|
+
nickname?: string | undefined;
|
|
255545
|
+
avatar?: string | undefined;
|
|
255546
|
+
};
|
|
255547
|
+
};
|
|
255548
|
+
userId: string;
|
|
255549
|
+
role: "Admin" | "Viewer" | "Builder";
|
|
255550
|
+
effectiveRole: "Admin" | "Viewer" | "Builder";
|
|
255551
|
+
forgeProjectId: string;
|
|
255552
|
+
workspaceMembershipId: string;
|
|
255553
|
+
workspaceRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest" | "Contributor";
|
|
252713
255554
|
};
|
|
252714
255555
|
}>;
|
|
252715
|
-
delete(projectId: string, userId: string): Promise<{
|
|
255556
|
+
delete(workspaceId: string, projectId: string, userId: string): Promise<{
|
|
252716
255557
|
ok: true;
|
|
252717
255558
|
}>;
|
|
252718
255559
|
}
|
|
@@ -258745,6 +261586,7 @@ declare class WorkspaceMembersEndpoint {
|
|
|
258745
261586
|
effectiveRole: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Contributor";
|
|
258746
261587
|
seatType: "Full" | "Builder" | "None";
|
|
258747
261588
|
effectiveSeatType: "Full" | "Builder" | "None";
|
|
261589
|
+
membershipId: string;
|
|
258748
261590
|
}[];
|
|
258749
261591
|
}>;
|
|
258750
261592
|
update(workspaceId: string, body: UpdateMembershipRolesInput): Promise<{
|