@supernova-studio/model 0.47.1 → 0.47.5
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 +1044 -268
- package/dist/index.d.ts +1044 -268
- package/dist/index.js +115 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1852 -1744
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/asset-delete-schedule/asset-delete-schedule.ts +20 -0
- package/src/asset-delete-schedule/index.ts +1 -0
- package/src/dsm/documentation/block-definitions/definition.ts +1 -0
- package/src/dsm/documentation/block-definitions/item.ts +17 -0
- package/src/dsm/documentation/index.ts +1 -0
- package/src/dsm/documentation/thread.ts +35 -0
- package/src/index.ts +1 -0
- package/src/integrations/git.ts +29 -0
- package/src/integrations/index.ts +1 -0
- package/src/integrations/integration.ts +3 -0
- package/src/users/user-profile.ts +7 -0
- package/src/workspace/index.ts +1 -0
- package/src/workspace/workspace-configuration.ts +14 -0
- package/src/workspace/workspace.ts +6 -0
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,67 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ZodType, ZodTypeDef, z, ZodSchema } from 'zod';
|
|
2
2
|
import slugifyImplementation from '@sindresorhus/slugify';
|
|
3
3
|
|
|
4
|
+
type DbCreateInputOmit<T> = Omit<T, "id" | "createdAt" | "updatedAt">;
|
|
5
|
+
type DbUpdateInputOmit<T> = Omit<T, "createdAt" | "updatedAt" | "persistentId">;
|
|
6
|
+
type DbUpdate<T extends {
|
|
7
|
+
id: string;
|
|
8
|
+
}> = Partial<OptionalToNullable<DbUpdateInputOmit<Omit<T, "id">>>> & Pick<T, "id">;
|
|
9
|
+
type PickOptional<T> = {
|
|
10
|
+
[P in keyof T as undefined extends T[P] ? P : never]: T[P];
|
|
11
|
+
};
|
|
12
|
+
type PickNotOptional<T> = {
|
|
13
|
+
[P in keyof T as undefined extends T[P] ? never : P]: T[P];
|
|
14
|
+
};
|
|
15
|
+
type OptionalToNullable<T> = {
|
|
16
|
+
[K in keyof PickOptional<T>]-?: Exclude<T[K], undefined> | null;
|
|
17
|
+
} & {
|
|
18
|
+
[K in keyof PickNotOptional<T>]: T[K];
|
|
19
|
+
};
|
|
20
|
+
declare function zodCreateInputOmit(): {
|
|
21
|
+
readonly id: true;
|
|
22
|
+
readonly createdAt: true;
|
|
23
|
+
readonly updatedAt: true;
|
|
24
|
+
};
|
|
25
|
+
declare function zodUpdateInputOmit(): {
|
|
26
|
+
readonly id: true;
|
|
27
|
+
readonly createdAt: true;
|
|
28
|
+
readonly updatedAt: true;
|
|
29
|
+
readonly persistentId: true;
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Allows both null and undefined as input values in addition to the actual value,
|
|
34
|
+
* but coerces them both to undefined.
|
|
35
|
+
*/
|
|
36
|
+
declare function nullishToOptional<I, O>(type: ZodType<I, ZodTypeDef, O>): z.ZodEffects<z.ZodOptional<z.ZodNullable<ZodType<I, ZodTypeDef, O>>>, NonNullable<I> | undefined, O | null | undefined>;
|
|
37
|
+
|
|
38
|
+
declare const AssetDeleteScheduleStatus: z.ZodEnum<["InProgress", "Pending"]>;
|
|
39
|
+
type AssetDeleteScheduleStatus = z.infer<typeof AssetDeleteScheduleStatus>;
|
|
40
|
+
declare const AssetDeleteSchedule: z.ZodObject<{
|
|
41
|
+
id: z.ZodString;
|
|
42
|
+
path: z.ZodString;
|
|
43
|
+
createdAt: z.ZodDate;
|
|
44
|
+
deleteAt: z.ZodDate;
|
|
45
|
+
isFolder: z.ZodBoolean;
|
|
46
|
+
status: z.ZodEnum<["InProgress", "Pending"]>;
|
|
47
|
+
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
id: string;
|
|
49
|
+
createdAt: Date;
|
|
50
|
+
path: string;
|
|
51
|
+
status: "InProgress" | "Pending";
|
|
52
|
+
deleteAt: Date;
|
|
53
|
+
isFolder: boolean;
|
|
54
|
+
}, {
|
|
55
|
+
id: string;
|
|
56
|
+
createdAt: Date;
|
|
57
|
+
path: string;
|
|
58
|
+
status: "InProgress" | "Pending";
|
|
59
|
+
deleteAt: Date;
|
|
60
|
+
isFolder: boolean;
|
|
61
|
+
}>;
|
|
62
|
+
type AssetDeleteSchedule = z.infer<typeof AssetDeleteSchedule>;
|
|
63
|
+
type AssetDeleteScheduleDbInput = DbCreateInputOmit<AssetDeleteSchedule>;
|
|
64
|
+
|
|
4
65
|
declare const PluginOAuthRequestSchema: z.ZodObject<{
|
|
5
66
|
id: z.ZodString;
|
|
6
67
|
codeChallenge: z.ZodString;
|
|
@@ -12,21 +73,21 @@ declare const PluginOAuthRequestSchema: z.ZodObject<{
|
|
|
12
73
|
createdAt: z.ZodDate;
|
|
13
74
|
}, "strip", z.ZodTypeAny, {
|
|
14
75
|
id: string;
|
|
76
|
+
createdAt: Date;
|
|
15
77
|
codeChallenge: string;
|
|
16
78
|
readKey: string;
|
|
17
79
|
writeKey: string;
|
|
18
80
|
readKeyConsumed: boolean;
|
|
19
81
|
writeKeyConsumed: boolean;
|
|
20
|
-
createdAt: Date;
|
|
21
82
|
oAuthCode?: string | undefined;
|
|
22
83
|
}, {
|
|
23
84
|
id: string;
|
|
85
|
+
createdAt: Date;
|
|
24
86
|
codeChallenge: string;
|
|
25
87
|
readKey: string;
|
|
26
88
|
writeKey: string;
|
|
27
89
|
readKeyConsumed: boolean;
|
|
28
90
|
writeKeyConsumed: boolean;
|
|
29
|
-
createdAt: Date;
|
|
30
91
|
oAuthCode?: string | undefined;
|
|
31
92
|
}>;
|
|
32
93
|
type PluginOAuthRequest = z.infer<typeof PluginOAuthRequestSchema>;
|
|
@@ -1856,6 +1917,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
1856
1917
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
1857
1918
|
phase: z.ZodOptional<z.ZodString>;
|
|
1858
1919
|
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
1920
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
1859
1921
|
}, "strip", z.ZodTypeAny, {
|
|
1860
1922
|
companyName?: string | undefined;
|
|
1861
1923
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -1864,6 +1926,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
1864
1926
|
jobTitle?: string | undefined;
|
|
1865
1927
|
phase?: string | undefined;
|
|
1866
1928
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
1929
|
+
designSystemName?: string | undefined;
|
|
1867
1930
|
}, {
|
|
1868
1931
|
companyName?: string | undefined;
|
|
1869
1932
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -1872,6 +1935,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
1872
1935
|
jobTitle?: string | undefined;
|
|
1873
1936
|
phase?: string | undefined;
|
|
1874
1937
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
1938
|
+
designSystemName?: string | undefined;
|
|
1875
1939
|
}>>;
|
|
1876
1940
|
}, "strip", z.ZodTypeAny, {
|
|
1877
1941
|
name: string;
|
|
@@ -1885,6 +1949,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
1885
1949
|
jobTitle?: string | undefined;
|
|
1886
1950
|
phase?: string | undefined;
|
|
1887
1951
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
1952
|
+
designSystemName?: string | undefined;
|
|
1888
1953
|
} | undefined;
|
|
1889
1954
|
}, {
|
|
1890
1955
|
name: string;
|
|
@@ -1898,6 +1963,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
1898
1963
|
jobTitle?: string | undefined;
|
|
1899
1964
|
phase?: string | undefined;
|
|
1900
1965
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
1966
|
+
designSystemName?: string | undefined;
|
|
1901
1967
|
} | undefined;
|
|
1902
1968
|
}>;
|
|
1903
1969
|
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -2113,6 +2179,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
2113
2179
|
jobTitle?: string | undefined;
|
|
2114
2180
|
phase?: string | undefined;
|
|
2115
2181
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
2182
|
+
designSystemName?: string | undefined;
|
|
2116
2183
|
} | undefined;
|
|
2117
2184
|
};
|
|
2118
2185
|
isProtected: boolean;
|
|
@@ -2177,6 +2244,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
2177
2244
|
jobTitle?: string | undefined;
|
|
2178
2245
|
phase?: string | undefined;
|
|
2179
2246
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
2247
|
+
designSystemName?: string | undefined;
|
|
2180
2248
|
} | undefined;
|
|
2181
2249
|
};
|
|
2182
2250
|
isProtected: boolean;
|
|
@@ -2255,6 +2323,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
2255
2323
|
jobTitle?: string | undefined;
|
|
2256
2324
|
phase?: string | undefined;
|
|
2257
2325
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
2326
|
+
designSystemName?: string | undefined;
|
|
2258
2327
|
} | undefined;
|
|
2259
2328
|
};
|
|
2260
2329
|
isProtected: boolean;
|
|
@@ -2333,6 +2402,7 @@ declare const UserSession: z.ZodObject<{
|
|
|
2333
2402
|
jobTitle?: string | undefined;
|
|
2334
2403
|
phase?: string | undefined;
|
|
2335
2404
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
2405
|
+
designSystemName?: string | undefined;
|
|
2336
2406
|
} | undefined;
|
|
2337
2407
|
};
|
|
2338
2408
|
isProtected: boolean;
|
|
@@ -2402,40 +2472,6 @@ declare const AssetDynamoRecord: z.ZodObject<{
|
|
|
2402
2472
|
}>;
|
|
2403
2473
|
type AssetDynamoRecord = z.infer<typeof AssetDynamoRecord>;
|
|
2404
2474
|
|
|
2405
|
-
type DbCreateInputOmit<T> = Omit<T, "id" | "createdAt" | "updatedAt">;
|
|
2406
|
-
type DbUpdateInputOmit<T> = Omit<T, "createdAt" | "updatedAt" | "persistentId">;
|
|
2407
|
-
type DbUpdate<T extends {
|
|
2408
|
-
id: string;
|
|
2409
|
-
}> = Partial<OptionalToNullable<DbUpdateInputOmit<Omit<T, "id">>>> & Pick<T, "id">;
|
|
2410
|
-
type PickOptional<T> = {
|
|
2411
|
-
[P in keyof T as undefined extends T[P] ? P : never]: T[P];
|
|
2412
|
-
};
|
|
2413
|
-
type PickNotOptional<T> = {
|
|
2414
|
-
[P in keyof T as undefined extends T[P] ? never : P]: T[P];
|
|
2415
|
-
};
|
|
2416
|
-
type OptionalToNullable<T> = {
|
|
2417
|
-
[K in keyof PickOptional<T>]-?: Exclude<T[K], undefined> | null;
|
|
2418
|
-
} & {
|
|
2419
|
-
[K in keyof PickNotOptional<T>]: T[K];
|
|
2420
|
-
};
|
|
2421
|
-
declare function zodCreateInputOmit(): {
|
|
2422
|
-
readonly id: true;
|
|
2423
|
-
readonly createdAt: true;
|
|
2424
|
-
readonly updatedAt: true;
|
|
2425
|
-
};
|
|
2426
|
-
declare function zodUpdateInputOmit(): {
|
|
2427
|
-
readonly id: true;
|
|
2428
|
-
readonly createdAt: true;
|
|
2429
|
-
readonly updatedAt: true;
|
|
2430
|
-
readonly persistentId: true;
|
|
2431
|
-
};
|
|
2432
|
-
|
|
2433
|
-
/**
|
|
2434
|
-
* Allows both null and undefined as input values in addition to the actual value,
|
|
2435
|
-
* but coerces them both to undefined.
|
|
2436
|
-
*/
|
|
2437
|
-
declare function nullishToOptional<I, O>(type: ZodType<I, ZodTypeDef, O>): z.ZodEffects<z.ZodOptional<z.ZodNullable<ZodType<I, ZodTypeDef, O>>>, NonNullable<I> | undefined, O | null | undefined>;
|
|
2438
|
-
|
|
2439
2475
|
declare const AssetReference: z.ZodObject<{
|
|
2440
2476
|
id: z.ZodString;
|
|
2441
2477
|
designSystemVersionId: z.ZodString;
|
|
@@ -3497,7 +3533,7 @@ declare const ImportJob: z.ZodObject<{
|
|
|
3497
3533
|
id: string;
|
|
3498
3534
|
createdAt: Date;
|
|
3499
3535
|
updatedAt: Date;
|
|
3500
|
-
state: "
|
|
3536
|
+
state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
|
|
3501
3537
|
designSystemId: string;
|
|
3502
3538
|
designSystemVersionId: string;
|
|
3503
3539
|
importContextId: string;
|
|
@@ -3510,7 +3546,7 @@ declare const ImportJob: z.ZodObject<{
|
|
|
3510
3546
|
id: string;
|
|
3511
3547
|
createdAt: Date;
|
|
3512
3548
|
updatedAt: Date;
|
|
3513
|
-
state: "
|
|
3549
|
+
state: "InProgress" | "Success" | "PendingInput" | "Queued" | "Failed";
|
|
3514
3550
|
designSystemId: string;
|
|
3515
3551
|
designSystemVersionId: string;
|
|
3516
3552
|
importContextId: string;
|
|
@@ -3653,12 +3689,15 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
3653
3689
|
items: z.ZodOptional<z.ZodObject<{
|
|
3654
3690
|
numberOfItems: z.ZodNumber;
|
|
3655
3691
|
allowLinks: z.ZodBoolean;
|
|
3692
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
3656
3693
|
}, "strip", z.ZodTypeAny, {
|
|
3657
3694
|
numberOfItems: number;
|
|
3658
3695
|
allowLinks: boolean;
|
|
3696
|
+
newItemLabel?: string | undefined;
|
|
3659
3697
|
}, {
|
|
3660
3698
|
numberOfItems: number;
|
|
3661
3699
|
allowLinks: boolean;
|
|
3700
|
+
newItemLabel?: string | undefined;
|
|
3662
3701
|
}>>;
|
|
3663
3702
|
entities: z.ZodOptional<z.ZodObject<{
|
|
3664
3703
|
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
@@ -3675,6 +3714,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
3675
3714
|
items?: {
|
|
3676
3715
|
numberOfItems: number;
|
|
3677
3716
|
allowLinks: boolean;
|
|
3717
|
+
newItemLabel?: string | undefined;
|
|
3678
3718
|
} | undefined;
|
|
3679
3719
|
entities?: {
|
|
3680
3720
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -3685,6 +3725,7 @@ declare const PageBlockDefinitionBehavior: z.ZodObject<{
|
|
|
3685
3725
|
items?: {
|
|
3686
3726
|
numberOfItems: number;
|
|
3687
3727
|
allowLinks: boolean;
|
|
3728
|
+
newItemLabel?: string | undefined;
|
|
3688
3729
|
} | undefined;
|
|
3689
3730
|
entities?: {
|
|
3690
3731
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -3905,12 +3946,15 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3905
3946
|
items: z.ZodOptional<z.ZodObject<{
|
|
3906
3947
|
numberOfItems: z.ZodNumber;
|
|
3907
3948
|
allowLinks: z.ZodBoolean;
|
|
3949
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
3908
3950
|
}, "strip", z.ZodTypeAny, {
|
|
3909
3951
|
numberOfItems: number;
|
|
3910
3952
|
allowLinks: boolean;
|
|
3953
|
+
newItemLabel?: string | undefined;
|
|
3911
3954
|
}, {
|
|
3912
3955
|
numberOfItems: number;
|
|
3913
3956
|
allowLinks: boolean;
|
|
3957
|
+
newItemLabel?: string | undefined;
|
|
3914
3958
|
}>>;
|
|
3915
3959
|
entities: z.ZodOptional<z.ZodObject<{
|
|
3916
3960
|
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
@@ -3927,6 +3971,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3927
3971
|
items?: {
|
|
3928
3972
|
numberOfItems: number;
|
|
3929
3973
|
allowLinks: boolean;
|
|
3974
|
+
newItemLabel?: string | undefined;
|
|
3930
3975
|
} | undefined;
|
|
3931
3976
|
entities?: {
|
|
3932
3977
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -3937,6 +3982,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3937
3982
|
items?: {
|
|
3938
3983
|
numberOfItems: number;
|
|
3939
3984
|
allowLinks: boolean;
|
|
3985
|
+
newItemLabel?: string | undefined;
|
|
3940
3986
|
} | undefined;
|
|
3941
3987
|
entities?: {
|
|
3942
3988
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -3983,8 +4029,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
3983
4029
|
}>>;
|
|
3984
4030
|
}, "strip", z.ZodTypeAny, {
|
|
3985
4031
|
id: string;
|
|
3986
|
-
name: string;
|
|
3987
4032
|
description: string;
|
|
4033
|
+
name: string;
|
|
3988
4034
|
item: {
|
|
3989
4035
|
properties: {
|
|
3990
4036
|
id: string;
|
|
@@ -4031,6 +4077,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4031
4077
|
items?: {
|
|
4032
4078
|
numberOfItems: number;
|
|
4033
4079
|
allowLinks: boolean;
|
|
4080
|
+
newItemLabel?: string | undefined;
|
|
4034
4081
|
} | undefined;
|
|
4035
4082
|
entities?: {
|
|
4036
4083
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -4054,8 +4101,8 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4054
4101
|
} | undefined;
|
|
4055
4102
|
}, {
|
|
4056
4103
|
id: string;
|
|
4057
|
-
name: string;
|
|
4058
4104
|
description: string;
|
|
4105
|
+
name: string;
|
|
4059
4106
|
item: {
|
|
4060
4107
|
properties: {
|
|
4061
4108
|
id: string;
|
|
@@ -4102,6 +4149,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4102
4149
|
items?: {
|
|
4103
4150
|
numberOfItems: number;
|
|
4104
4151
|
allowLinks: boolean;
|
|
4152
|
+
newItemLabel?: string | undefined;
|
|
4105
4153
|
} | undefined;
|
|
4106
4154
|
entities?: {
|
|
4107
4155
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -4126,6 +4174,7 @@ declare const PageBlockDefinition: z.ZodObject<{
|
|
|
4126
4174
|
}>;
|
|
4127
4175
|
type PageBlockDefinition = z.infer<typeof PageBlockDefinition>;
|
|
4128
4176
|
|
|
4177
|
+
declare const PageBlockDefinitionSingleSelectPropertyColor: z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>;
|
|
4129
4178
|
declare const PageBlockDefinitionPropertyType: z.ZodEnum<["RichText", "MultiRichText", "Text", "Boolean", "Number", "SingleSelect", "MultiSelect", "Image", "Token", "TokenType", "TokenProperty", "Component", "ComponentProperty", "Asset", "AssetProperty", "FigmaNode", "EmbedURL", "URL", "Markdown", "Code", "CodeSandbox", "Table", "Divider", "Storybook", "Color"]>;
|
|
4130
4179
|
type PageBlockDefinitionPropertyType = z.infer<typeof PageBlockDefinitionPropertyType>;
|
|
4131
4180
|
declare const PageBlockDefinitionRichTextPropertyStyle: z.ZodEnum<["Title1", "Title2", "Title3", "Title4", "Title5", "Quote", "Callout", "Default"]>;
|
|
@@ -4150,14 +4199,17 @@ declare const PageBlockDefinitionSelectChoice: z.ZodObject<{
|
|
|
4150
4199
|
value: z.ZodString;
|
|
4151
4200
|
name: z.ZodString;
|
|
4152
4201
|
icon: z.ZodOptional<z.ZodString>;
|
|
4202
|
+
color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
|
|
4153
4203
|
}, "strip", z.ZodTypeAny, {
|
|
4154
4204
|
value: string;
|
|
4155
4205
|
name: string;
|
|
4156
4206
|
icon?: string | undefined;
|
|
4207
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4157
4208
|
}, {
|
|
4158
4209
|
value: string;
|
|
4159
4210
|
name: string;
|
|
4160
4211
|
icon?: string | undefined;
|
|
4212
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4161
4213
|
}>;
|
|
4162
4214
|
type PageBlockDefinitionSelectChoice = z.infer<typeof PageBlockDefinitionSelectChoice>;
|
|
4163
4215
|
declare const PageBlockDefinitionUntypedPropertyOptions: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
@@ -4202,14 +4254,17 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
|
4202
4254
|
value: z.ZodString;
|
|
4203
4255
|
name: z.ZodString;
|
|
4204
4256
|
icon: z.ZodOptional<z.ZodString>;
|
|
4257
|
+
color: z.ZodOptional<z.ZodEnum<["Green", "Red", "Yellow", "Blue", "Purple", "Orange", "Pink", "Teal", "Brown", "Grey", "LightGrey", "Cyan", "Fuchsia"]>>;
|
|
4205
4258
|
}, "strip", z.ZodTypeAny, {
|
|
4206
4259
|
value: string;
|
|
4207
4260
|
name: string;
|
|
4208
4261
|
icon?: string | undefined;
|
|
4262
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4209
4263
|
}, {
|
|
4210
4264
|
value: string;
|
|
4211
4265
|
name: string;
|
|
4212
4266
|
icon?: string | undefined;
|
|
4267
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4213
4268
|
}>, "many">;
|
|
4214
4269
|
}, "strip", z.ZodTypeAny, {
|
|
4215
4270
|
defaultChoice: string;
|
|
@@ -4217,6 +4272,7 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
|
4217
4272
|
value: string;
|
|
4218
4273
|
name: string;
|
|
4219
4274
|
icon?: string | undefined;
|
|
4275
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4220
4276
|
}[];
|
|
4221
4277
|
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
4222
4278
|
}, {
|
|
@@ -4225,6 +4281,7 @@ declare const PageBlockDefinitionSelectOptions: z.ZodObject<{
|
|
|
4225
4281
|
value: string;
|
|
4226
4282
|
name: string;
|
|
4227
4283
|
icon?: string | undefined;
|
|
4284
|
+
color?: "Green" | "Red" | "Yellow" | "Blue" | "Purple" | "Orange" | "Pink" | "Teal" | "Brown" | "Grey" | "LightGrey" | "Cyan" | "Fuchsia" | undefined;
|
|
4228
4285
|
}[];
|
|
4229
4286
|
singleSelectStyle?: "Select" | "SegmentedControl" | "ToggleButton" | "Checkbox" | undefined;
|
|
4230
4287
|
}>;
|
|
@@ -4519,9 +4576,9 @@ declare const DocumentationPageGroup: z.ZodObject<{
|
|
|
4519
4576
|
}, "strip", z.ZodTypeAny, {
|
|
4520
4577
|
id: string;
|
|
4521
4578
|
createdAt: Date;
|
|
4522
|
-
type: "ElementGroup";
|
|
4523
4579
|
updatedAt: Date;
|
|
4524
4580
|
persistentId: string;
|
|
4581
|
+
type: "ElementGroup";
|
|
4525
4582
|
designSystemVersionId: string;
|
|
4526
4583
|
shortPersistentId: string;
|
|
4527
4584
|
childType: "DocumentationPage";
|
|
@@ -4533,9 +4590,9 @@ declare const DocumentationPageGroup: z.ZodObject<{
|
|
|
4533
4590
|
}, {
|
|
4534
4591
|
id: string;
|
|
4535
4592
|
createdAt: Date;
|
|
4536
|
-
type: "ElementGroup";
|
|
4537
4593
|
updatedAt: Date;
|
|
4538
4594
|
persistentId: string;
|
|
4595
|
+
type: "ElementGroup";
|
|
4539
4596
|
designSystemVersionId: string;
|
|
4540
4597
|
shortPersistentId: string;
|
|
4541
4598
|
childType: "DocumentationPage";
|
|
@@ -7401,9 +7458,9 @@ declare const DocumentationPage: z.ZodObject<{
|
|
|
7401
7458
|
}, "strip", z.ZodTypeAny, {
|
|
7402
7459
|
id: string;
|
|
7403
7460
|
createdAt: Date;
|
|
7404
|
-
type: "DocumentationPage";
|
|
7405
7461
|
updatedAt: Date;
|
|
7406
7462
|
persistentId: string;
|
|
7463
|
+
type: "DocumentationPage";
|
|
7407
7464
|
designSystemVersionId: string;
|
|
7408
7465
|
shortPersistentId: string;
|
|
7409
7466
|
sortOrder: number;
|
|
@@ -7414,9 +7471,9 @@ declare const DocumentationPage: z.ZodObject<{
|
|
|
7414
7471
|
}, {
|
|
7415
7472
|
id: string;
|
|
7416
7473
|
createdAt: Date;
|
|
7417
|
-
type: "DocumentationPage";
|
|
7418
7474
|
updatedAt: Date;
|
|
7419
7475
|
persistentId: string;
|
|
7476
|
+
type: "DocumentationPage";
|
|
7420
7477
|
designSystemVersionId: string;
|
|
7421
7478
|
shortPersistentId: string;
|
|
7422
7479
|
sortOrder: number;
|
|
@@ -7427,6 +7484,71 @@ declare const DocumentationPage: z.ZodObject<{
|
|
|
7427
7484
|
}>;
|
|
7428
7485
|
type DocumentationPage = z.infer<typeof DocumentationPage>;
|
|
7429
7486
|
|
|
7487
|
+
declare const DocumentationComment: z.ZodObject<{
|
|
7488
|
+
id: z.ZodString;
|
|
7489
|
+
authorId: z.ZodString;
|
|
7490
|
+
threadId: z.ZodString;
|
|
7491
|
+
roomId: z.ZodString;
|
|
7492
|
+
createdAt: z.ZodDate;
|
|
7493
|
+
editedAt: z.ZodOptional<z.ZodDate>;
|
|
7494
|
+
deletedAt: z.ZodOptional<z.ZodDate>;
|
|
7495
|
+
body: z.ZodString;
|
|
7496
|
+
}, "strip", z.ZodTypeAny, {
|
|
7497
|
+
id: string;
|
|
7498
|
+
createdAt: Date;
|
|
7499
|
+
authorId: string;
|
|
7500
|
+
threadId: string;
|
|
7501
|
+
roomId: string;
|
|
7502
|
+
body: string;
|
|
7503
|
+
editedAt?: Date | undefined;
|
|
7504
|
+
deletedAt?: Date | undefined;
|
|
7505
|
+
}, {
|
|
7506
|
+
id: string;
|
|
7507
|
+
createdAt: Date;
|
|
7508
|
+
authorId: string;
|
|
7509
|
+
threadId: string;
|
|
7510
|
+
roomId: string;
|
|
7511
|
+
body: string;
|
|
7512
|
+
editedAt?: Date | undefined;
|
|
7513
|
+
deletedAt?: Date | undefined;
|
|
7514
|
+
}>;
|
|
7515
|
+
type DocumentationComment = z.infer<typeof DocumentationComment>;
|
|
7516
|
+
declare const DocumentationCommentThread: z.ZodObject<{
|
|
7517
|
+
id: z.ZodString;
|
|
7518
|
+
roomId: z.ZodString;
|
|
7519
|
+
pagePersistentId: z.ZodString;
|
|
7520
|
+
brandId: z.ZodString;
|
|
7521
|
+
designSystemVersionId: z.ZodString;
|
|
7522
|
+
designSystemId: z.ZodString;
|
|
7523
|
+
blockId: z.ZodOptional<z.ZodString>;
|
|
7524
|
+
resolved: z.ZodBoolean;
|
|
7525
|
+
createdAt: z.ZodDate;
|
|
7526
|
+
updatedAt: z.ZodDate;
|
|
7527
|
+
}, "strip", z.ZodTypeAny, {
|
|
7528
|
+
id: string;
|
|
7529
|
+
createdAt: Date;
|
|
7530
|
+
updatedAt: Date;
|
|
7531
|
+
designSystemId: string;
|
|
7532
|
+
designSystemVersionId: string;
|
|
7533
|
+
brandId: string;
|
|
7534
|
+
roomId: string;
|
|
7535
|
+
pagePersistentId: string;
|
|
7536
|
+
resolved: boolean;
|
|
7537
|
+
blockId?: string | undefined;
|
|
7538
|
+
}, {
|
|
7539
|
+
id: string;
|
|
7540
|
+
createdAt: Date;
|
|
7541
|
+
updatedAt: Date;
|
|
7542
|
+
designSystemId: string;
|
|
7543
|
+
designSystemVersionId: string;
|
|
7544
|
+
brandId: string;
|
|
7545
|
+
roomId: string;
|
|
7546
|
+
pagePersistentId: string;
|
|
7547
|
+
resolved: boolean;
|
|
7548
|
+
blockId?: string | undefined;
|
|
7549
|
+
}>;
|
|
7550
|
+
type DocumentationCommentThread = z.infer<typeof DocumentationCommentThread>;
|
|
7551
|
+
|
|
7430
7552
|
declare const TokenDataAliasSchema: z.ZodObject<{
|
|
7431
7553
|
aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
|
|
7432
7554
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10004,8 +10126,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
10004
10126
|
blacklistedElementProperties: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>;
|
|
10005
10127
|
userMetadata: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
10006
10128
|
}, "strip", z.ZodTypeAny, {
|
|
10007
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
10008
10129
|
persistentId: string;
|
|
10130
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
10009
10131
|
designObjectId?: string | undefined;
|
|
10010
10132
|
designObjectIds?: string[] | undefined;
|
|
10011
10133
|
tokenType?: NonNullable<"Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur"> | undefined;
|
|
@@ -10186,8 +10308,8 @@ declare const PageBlockBaseV1: z.ZodObject<{
|
|
|
10186
10308
|
blacklistedElementProperties?: string[] | undefined;
|
|
10187
10309
|
userMetadata?: string | undefined;
|
|
10188
10310
|
}, {
|
|
10189
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
10190
10311
|
persistentId: string;
|
|
10312
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
10191
10313
|
designObjectId?: string | null | undefined;
|
|
10192
10314
|
designObjectIds?: string[] | null | undefined;
|
|
10193
10315
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -12960,8 +13082,8 @@ type PageBlockItemTableValue = z.infer<typeof PageBlockItemTableValue>;
|
|
|
12960
13082
|
|
|
12961
13083
|
declare const DocumentationPageDataV1: z.ZodObject<{
|
|
12962
13084
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
12963
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
12964
13085
|
persistentId: string;
|
|
13086
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
12965
13087
|
designObjectId?: string | null | undefined;
|
|
12966
13088
|
designObjectIds?: string[] | null | undefined;
|
|
12967
13089
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -13143,8 +13265,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13143
13265
|
userMetadata?: string | null | undefined;
|
|
13144
13266
|
} & {
|
|
13145
13267
|
children: ({
|
|
13146
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13147
13268
|
persistentId: string;
|
|
13269
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13148
13270
|
designObjectId?: string | null | undefined;
|
|
13149
13271
|
designObjectIds?: string[] | null | undefined;
|
|
13150
13272
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -13692,8 +13814,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13692
13814
|
} | undefined;
|
|
13693
13815
|
}, {
|
|
13694
13816
|
blocks: ({
|
|
13695
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13696
13817
|
persistentId: string;
|
|
13818
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13697
13819
|
designObjectId?: string | null | undefined;
|
|
13698
13820
|
designObjectIds?: string[] | null | undefined;
|
|
13699
13821
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -13875,8 +13997,8 @@ declare const DocumentationPageDataV1: z.ZodObject<{
|
|
|
13875
13997
|
userMetadata?: string | null | undefined;
|
|
13876
13998
|
} & {
|
|
13877
13999
|
children: ({
|
|
13878
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13879
14000
|
persistentId: string;
|
|
14001
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
13880
14002
|
designObjectId?: string | null | undefined;
|
|
13881
14003
|
designObjectIds?: string[] | null | undefined;
|
|
13882
14004
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -20805,8 +20927,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20805
20927
|
shortPersistentId: z.ZodString;
|
|
20806
20928
|
data: z.ZodObject<{
|
|
20807
20929
|
blocks: z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
20808
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
20809
20930
|
persistentId: string;
|
|
20931
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
20810
20932
|
designObjectId?: string | null | undefined;
|
|
20811
20933
|
designObjectIds?: string[] | null | undefined;
|
|
20812
20934
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -20988,8 +21110,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
20988
21110
|
userMetadata?: string | null | undefined;
|
|
20989
21111
|
} & {
|
|
20990
21112
|
children: ({
|
|
20991
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
20992
21113
|
persistentId: string;
|
|
21114
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
20993
21115
|
designObjectId?: string | null | undefined;
|
|
20994
21116
|
designObjectIds?: string[] | null | undefined;
|
|
20995
21117
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -21537,8 +21659,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21537
21659
|
} | undefined;
|
|
21538
21660
|
}, {
|
|
21539
21661
|
blocks: ({
|
|
21540
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
21541
21662
|
persistentId: string;
|
|
21663
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
21542
21664
|
designObjectId?: string | null | undefined;
|
|
21543
21665
|
designObjectIds?: string[] | null | undefined;
|
|
21544
21666
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -21720,8 +21842,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
21720
21842
|
userMetadata?: string | null | undefined;
|
|
21721
21843
|
} & {
|
|
21722
21844
|
children: ({
|
|
21723
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
21724
21845
|
persistentId: string;
|
|
21846
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
21725
21847
|
designObjectId?: string | null | undefined;
|
|
21726
21848
|
designObjectIds?: string[] | null | undefined;
|
|
21727
21849
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -22075,8 +22197,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22075
22197
|
persistentId: string;
|
|
22076
22198
|
data: {
|
|
22077
22199
|
blocks: ({
|
|
22078
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
22079
22200
|
persistentId: string;
|
|
22201
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
22080
22202
|
designObjectId?: string | null | undefined;
|
|
22081
22203
|
designObjectIds?: string[] | null | undefined;
|
|
22082
22204
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -22258,8 +22380,8 @@ declare const DocumentationPageV1: z.ZodObject<{
|
|
|
22258
22380
|
userMetadata?: string | null | undefined;
|
|
22259
22381
|
} & {
|
|
22260
22382
|
children: ({
|
|
22261
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
22262
22383
|
persistentId: string;
|
|
22384
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
22263
22385
|
designObjectId?: string | null | undefined;
|
|
22264
22386
|
designObjectIds?: string[] | null | undefined;
|
|
22265
22387
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -23331,8 +23453,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23331
23453
|
isHidden?: boolean | undefined;
|
|
23332
23454
|
} | null | undefined>;
|
|
23333
23455
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
23334
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23335
23456
|
persistentId: string;
|
|
23457
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23336
23458
|
designObjectId?: string | null | undefined;
|
|
23337
23459
|
designObjectIds?: string[] | null | undefined;
|
|
23338
23460
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -23514,8 +23636,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23514
23636
|
userMetadata?: string | null | undefined;
|
|
23515
23637
|
} & {
|
|
23516
23638
|
children: ({
|
|
23517
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23518
23639
|
persistentId: string;
|
|
23640
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23519
23641
|
designObjectId?: string | null | undefined;
|
|
23520
23642
|
designObjectIds?: string[] | null | undefined;
|
|
23521
23643
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -23765,8 +23887,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23765
23887
|
isHidden?: boolean | undefined;
|
|
23766
23888
|
} | null | undefined;
|
|
23767
23889
|
oldBlocks?: ({
|
|
23768
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23769
23890
|
persistentId: string;
|
|
23891
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23770
23892
|
designObjectId?: string | null | undefined;
|
|
23771
23893
|
designObjectIds?: string[] | null | undefined;
|
|
23772
23894
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -23948,8 +24070,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
23948
24070
|
userMetadata?: string | null | undefined;
|
|
23949
24071
|
} & {
|
|
23950
24072
|
children: ({
|
|
23951
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23952
24073
|
persistentId: string;
|
|
24074
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
23953
24075
|
designObjectId?: string | null | undefined;
|
|
23954
24076
|
designObjectIds?: string[] | null | undefined;
|
|
23955
24077
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -24221,8 +24343,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24221
24343
|
isHidden?: boolean | undefined;
|
|
24222
24344
|
} | null | undefined;
|
|
24223
24345
|
oldBlocks?: ({
|
|
24224
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
24225
24346
|
persistentId: string;
|
|
24347
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
24226
24348
|
designObjectId?: string | null | undefined;
|
|
24227
24349
|
designObjectIds?: string[] | null | undefined;
|
|
24228
24350
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -24404,8 +24526,8 @@ declare const DocumentationPageV2: z.ZodObject<{
|
|
|
24404
24526
|
userMetadata?: string | null | undefined;
|
|
24405
24527
|
} & {
|
|
24406
24528
|
children: ({
|
|
24407
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
24408
24529
|
persistentId: string;
|
|
24530
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
24409
24531
|
designObjectId?: string | null | undefined;
|
|
24410
24532
|
designObjectIds?: string[] | null | undefined;
|
|
24411
24533
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -26133,8 +26255,8 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
26133
26255
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
26134
26256
|
}, "strip", z.ZodTypeAny, {
|
|
26135
26257
|
id: string;
|
|
26136
|
-
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26137
26258
|
persistentId: string;
|
|
26259
|
+
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26138
26260
|
designSystemVersionId: string;
|
|
26139
26261
|
sortOrder: number;
|
|
26140
26262
|
brandPersistentId?: string | undefined;
|
|
@@ -26144,8 +26266,8 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
26144
26266
|
origin?: Record<string, any> | undefined;
|
|
26145
26267
|
}, {
|
|
26146
26268
|
id: string;
|
|
26147
|
-
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26148
26269
|
persistentId: string;
|
|
26270
|
+
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26149
26271
|
designSystemVersionId: string;
|
|
26150
26272
|
sortOrder: number;
|
|
26151
26273
|
brandPersistentId?: string | undefined;
|
|
@@ -26157,8 +26279,8 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
26157
26279
|
type ShallowDesignElement = z.infer<typeof ShallowDesignElement>;
|
|
26158
26280
|
declare const DesignElement: z.ZodObject<{
|
|
26159
26281
|
id: z.ZodString;
|
|
26160
|
-
type: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
26161
26282
|
persistentId: z.ZodString;
|
|
26283
|
+
type: z.ZodUnion<[z.ZodEnum<["Color", "Border", "Gradient", "Shadow", "Dimension", "Duration", "Size", "Space", "Opacity", "FontSize", "LineHeight", "LetterSpacing", "ParagraphSpacing", "BorderWidth", "BorderRadius", "Duration", "ZIndex", "Image", "String", "ProductCopy", "FontFamily", "FontWeight", "TextDecoration", "TextCase", "Visibility", "Typography", "Blur", "Font"]>, z.ZodEnum<["Component", "Theme", "Documentation", "DocumentationPage", "DesignSystemComponent", "ElementGroup", "FigmaNodeStructure", "FigmaNodeReference", "PageBlock"]>]>;
|
|
26162
26284
|
designSystemVersionId: z.ZodString;
|
|
26163
26285
|
brandPersistentId: z.ZodOptional<z.ZodString>;
|
|
26164
26286
|
parentPersistentId: z.ZodOptional<z.ZodString>;
|
|
@@ -26194,9 +26316,9 @@ declare const DesignElement: z.ZodObject<{
|
|
|
26194
26316
|
}, "strip", z.ZodTypeAny, {
|
|
26195
26317
|
id: string;
|
|
26196
26318
|
createdAt: Date;
|
|
26197
|
-
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26198
26319
|
updatedAt: Date;
|
|
26199
26320
|
persistentId: string;
|
|
26321
|
+
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26200
26322
|
data: Record<string, any>;
|
|
26201
26323
|
designSystemVersionId: string;
|
|
26202
26324
|
sortOrder: number;
|
|
@@ -26218,9 +26340,9 @@ declare const DesignElement: z.ZodObject<{
|
|
|
26218
26340
|
}, {
|
|
26219
26341
|
id: string;
|
|
26220
26342
|
createdAt: Date;
|
|
26221
|
-
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26222
26343
|
updatedAt: Date;
|
|
26223
26344
|
persistentId: string;
|
|
26345
|
+
type: "Image" | "Font" | "Documentation" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | "Component" | "Theme" | "DocumentationPage" | "DesignSystemComponent" | "ElementGroup" | "FigmaNodeStructure" | "FigmaNodeReference" | "PageBlock";
|
|
26224
26346
|
data: Record<string, any>;
|
|
26225
26347
|
designSystemVersionId: string;
|
|
26226
26348
|
sortOrder: number;
|
|
@@ -92950,10 +93072,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92950
93072
|
linkElementType: z.ZodOptional<z.ZodEnum<["FigmaComponent", "DocumentationPage"]>>;
|
|
92951
93073
|
}, "strip", z.ZodTypeAny, {
|
|
92952
93074
|
id: string;
|
|
92953
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
92954
|
-
name: string;
|
|
92955
93075
|
persistentId: string;
|
|
93076
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
92956
93077
|
description: string;
|
|
93078
|
+
name: string;
|
|
92957
93079
|
designSystemVersionId: string;
|
|
92958
93080
|
codeName: string;
|
|
92959
93081
|
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
@@ -92967,10 +93089,10 @@ declare const ElementPropertyDefinition: z.ZodObject<{
|
|
|
92967
93089
|
linkElementType?: "DocumentationPage" | "FigmaComponent" | undefined;
|
|
92968
93090
|
}, {
|
|
92969
93091
|
id: string;
|
|
92970
|
-
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
92971
|
-
name: string;
|
|
92972
93092
|
persistentId: string;
|
|
93093
|
+
type: "Text" | "Number" | "Boolean" | "Select" | "Generic" | "Link" | "URL";
|
|
92973
93094
|
description: string;
|
|
93095
|
+
name: string;
|
|
92974
93096
|
designSystemVersionId: string;
|
|
92975
93097
|
codeName: string;
|
|
92976
93098
|
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
@@ -93048,16 +93170,16 @@ declare const ElementViewBasePropertyColumn: z.ZodObject<{
|
|
|
93048
93170
|
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
93049
93171
|
}, "strip", z.ZodTypeAny, {
|
|
93050
93172
|
id: string;
|
|
93051
|
-
type: "BaseProperty";
|
|
93052
93173
|
persistentId: string;
|
|
93174
|
+
type: "BaseProperty";
|
|
93053
93175
|
width: number;
|
|
93054
93176
|
elementDataViewId: string;
|
|
93055
93177
|
sortPosition: number;
|
|
93056
93178
|
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
93057
93179
|
}, {
|
|
93058
93180
|
id: string;
|
|
93059
|
-
type: "BaseProperty";
|
|
93060
93181
|
persistentId: string;
|
|
93182
|
+
type: "BaseProperty";
|
|
93061
93183
|
width: number;
|
|
93062
93184
|
elementDataViewId: string;
|
|
93063
93185
|
sortPosition: number;
|
|
@@ -93074,16 +93196,16 @@ declare const ElementViewPropertyDefinitionColumn: z.ZodObject<{
|
|
|
93074
93196
|
propertyDefinitionId: z.ZodString;
|
|
93075
93197
|
}, "strip", z.ZodTypeAny, {
|
|
93076
93198
|
id: string;
|
|
93077
|
-
type: "PropertyDefinition";
|
|
93078
93199
|
persistentId: string;
|
|
93200
|
+
type: "PropertyDefinition";
|
|
93079
93201
|
width: number;
|
|
93080
93202
|
elementDataViewId: string;
|
|
93081
93203
|
sortPosition: number;
|
|
93082
93204
|
propertyDefinitionId: string;
|
|
93083
93205
|
}, {
|
|
93084
93206
|
id: string;
|
|
93085
|
-
type: "PropertyDefinition";
|
|
93086
93207
|
persistentId: string;
|
|
93208
|
+
type: "PropertyDefinition";
|
|
93087
93209
|
width: number;
|
|
93088
93210
|
elementDataViewId: string;
|
|
93089
93211
|
sortPosition: number;
|
|
@@ -93100,16 +93222,16 @@ declare const ElementViewThemeColumn: z.ZodObject<{
|
|
|
93100
93222
|
themeId: z.ZodString;
|
|
93101
93223
|
}, "strip", z.ZodTypeAny, {
|
|
93102
93224
|
id: string;
|
|
93103
|
-
type: "Theme";
|
|
93104
93225
|
persistentId: string;
|
|
93226
|
+
type: "Theme";
|
|
93105
93227
|
width: number;
|
|
93106
93228
|
elementDataViewId: string;
|
|
93107
93229
|
sortPosition: number;
|
|
93108
93230
|
themeId: string;
|
|
93109
93231
|
}, {
|
|
93110
93232
|
id: string;
|
|
93111
|
-
type: "Theme";
|
|
93112
93233
|
persistentId: string;
|
|
93234
|
+
type: "Theme";
|
|
93113
93235
|
width: number;
|
|
93114
93236
|
elementDataViewId: string;
|
|
93115
93237
|
sortPosition: number;
|
|
@@ -93126,16 +93248,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
93126
93248
|
basePropertyType: z.ZodEnum<["Name", "Description", "Value", "UpdatedAt"]>;
|
|
93127
93249
|
}, "strip", z.ZodTypeAny, {
|
|
93128
93250
|
id: string;
|
|
93129
|
-
type: "BaseProperty";
|
|
93130
93251
|
persistentId: string;
|
|
93252
|
+
type: "BaseProperty";
|
|
93131
93253
|
width: number;
|
|
93132
93254
|
elementDataViewId: string;
|
|
93133
93255
|
sortPosition: number;
|
|
93134
93256
|
basePropertyType: "Name" | "Description" | "Value" | "UpdatedAt";
|
|
93135
93257
|
}, {
|
|
93136
93258
|
id: string;
|
|
93137
|
-
type: "BaseProperty";
|
|
93138
93259
|
persistentId: string;
|
|
93260
|
+
type: "BaseProperty";
|
|
93139
93261
|
width: number;
|
|
93140
93262
|
elementDataViewId: string;
|
|
93141
93263
|
sortPosition: number;
|
|
@@ -93150,16 +93272,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
93150
93272
|
propertyDefinitionId: z.ZodString;
|
|
93151
93273
|
}, "strip", z.ZodTypeAny, {
|
|
93152
93274
|
id: string;
|
|
93153
|
-
type: "PropertyDefinition";
|
|
93154
93275
|
persistentId: string;
|
|
93276
|
+
type: "PropertyDefinition";
|
|
93155
93277
|
width: number;
|
|
93156
93278
|
elementDataViewId: string;
|
|
93157
93279
|
sortPosition: number;
|
|
93158
93280
|
propertyDefinitionId: string;
|
|
93159
93281
|
}, {
|
|
93160
93282
|
id: string;
|
|
93161
|
-
type: "PropertyDefinition";
|
|
93162
93283
|
persistentId: string;
|
|
93284
|
+
type: "PropertyDefinition";
|
|
93163
93285
|
width: number;
|
|
93164
93286
|
elementDataViewId: string;
|
|
93165
93287
|
sortPosition: number;
|
|
@@ -93174,16 +93296,16 @@ declare const ElementViewColumn: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
|
93174
93296
|
themeId: z.ZodString;
|
|
93175
93297
|
}, "strip", z.ZodTypeAny, {
|
|
93176
93298
|
id: string;
|
|
93177
|
-
type: "Theme";
|
|
93178
93299
|
persistentId: string;
|
|
93300
|
+
type: "Theme";
|
|
93179
93301
|
width: number;
|
|
93180
93302
|
elementDataViewId: string;
|
|
93181
93303
|
sortPosition: number;
|
|
93182
93304
|
themeId: string;
|
|
93183
93305
|
}, {
|
|
93184
93306
|
id: string;
|
|
93185
|
-
type: "Theme";
|
|
93186
93307
|
persistentId: string;
|
|
93308
|
+
type: "Theme";
|
|
93187
93309
|
width: number;
|
|
93188
93310
|
elementDataViewId: string;
|
|
93189
93311
|
sortPosition: number;
|
|
@@ -93225,17 +93347,17 @@ declare const ElementView: z.ZodObject<{
|
|
|
93225
93347
|
isDefault: z.ZodBoolean;
|
|
93226
93348
|
}, "strip", z.ZodTypeAny, {
|
|
93227
93349
|
id: string;
|
|
93228
|
-
name: string;
|
|
93229
93350
|
persistentId: string;
|
|
93230
93351
|
description: string;
|
|
93352
|
+
name: string;
|
|
93231
93353
|
designSystemVersionId: string;
|
|
93232
93354
|
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
93233
93355
|
isDefault: boolean;
|
|
93234
93356
|
}, {
|
|
93235
93357
|
id: string;
|
|
93236
|
-
name: string;
|
|
93237
93358
|
persistentId: string;
|
|
93238
93359
|
description: string;
|
|
93360
|
+
name: string;
|
|
93239
93361
|
designSystemVersionId: string;
|
|
93240
93362
|
targetElementType: "Component" | "DocumentationPage" | "Token";
|
|
93241
93363
|
isDefault: boolean;
|
|
@@ -93252,15 +93374,15 @@ declare const Brand: z.ZodObject<{
|
|
|
93252
93374
|
description: z.ZodString;
|
|
93253
93375
|
}, "strip", z.ZodTypeAny, {
|
|
93254
93376
|
id: string;
|
|
93255
|
-
name: string;
|
|
93256
93377
|
persistentId: string;
|
|
93257
93378
|
description: string;
|
|
93379
|
+
name: string;
|
|
93258
93380
|
designSystemVersionId: string;
|
|
93259
93381
|
}, {
|
|
93260
93382
|
id: string;
|
|
93261
|
-
name: string;
|
|
93262
93383
|
persistentId: string;
|
|
93263
93384
|
description: string;
|
|
93385
|
+
name: string;
|
|
93264
93386
|
designSystemVersionId: string;
|
|
93265
93387
|
}>;
|
|
93266
93388
|
type Brand = z.infer<typeof Brand>;
|
|
@@ -93308,9 +93430,9 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
93308
93430
|
}, "strip", z.ZodTypeAny, {
|
|
93309
93431
|
id: string;
|
|
93310
93432
|
createdAt: Date;
|
|
93311
|
-
name: string;
|
|
93312
93433
|
updatedAt: Date;
|
|
93313
93434
|
description: string;
|
|
93435
|
+
name: string;
|
|
93314
93436
|
workspaceId: string;
|
|
93315
93437
|
docSlug: string;
|
|
93316
93438
|
docSlugDeprecated: string;
|
|
@@ -93327,9 +93449,9 @@ declare const DesignSystem: z.ZodObject<{
|
|
|
93327
93449
|
}, {
|
|
93328
93450
|
id: string;
|
|
93329
93451
|
createdAt: Date;
|
|
93330
|
-
name: string;
|
|
93331
93452
|
updatedAt: Date;
|
|
93332
93453
|
description: string;
|
|
93454
|
+
name: string;
|
|
93333
93455
|
workspaceId: string;
|
|
93334
93456
|
docSlug: string;
|
|
93335
93457
|
docSlugDeprecated: string;
|
|
@@ -93377,9 +93499,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93377
93499
|
}, "strip", z.ZodTypeAny, {
|
|
93378
93500
|
id: string;
|
|
93379
93501
|
createdAt: Date;
|
|
93380
|
-
name: string;
|
|
93381
93502
|
updatedAt: Date;
|
|
93382
93503
|
description: string;
|
|
93504
|
+
name: string;
|
|
93383
93505
|
workspaceId: string;
|
|
93384
93506
|
docSlug: string;
|
|
93385
93507
|
docSlugDeprecated: string;
|
|
@@ -93396,9 +93518,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
93396
93518
|
}, {
|
|
93397
93519
|
id: string;
|
|
93398
93520
|
createdAt: Date;
|
|
93399
|
-
name: string;
|
|
93400
93521
|
updatedAt: Date;
|
|
93401
93522
|
description: string;
|
|
93523
|
+
name: string;
|
|
93402
93524
|
workspaceId: string;
|
|
93403
93525
|
docSlug: string;
|
|
93404
93526
|
docSlugDeprecated: string;
|
|
@@ -94436,9 +94558,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
94436
94558
|
}, "strip", z.ZodTypeAny, {
|
|
94437
94559
|
id: string;
|
|
94438
94560
|
createdAt: Date;
|
|
94439
|
-
name: string;
|
|
94440
94561
|
updatedAt: Date;
|
|
94441
94562
|
description: string;
|
|
94563
|
+
name: string;
|
|
94442
94564
|
workspaceId: string;
|
|
94443
94565
|
docSlug: string;
|
|
94444
94566
|
docSlugDeprecated: string;
|
|
@@ -94455,9 +94577,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
94455
94577
|
}, {
|
|
94456
94578
|
id: string;
|
|
94457
94579
|
createdAt: Date;
|
|
94458
|
-
name: string;
|
|
94459
94580
|
updatedAt: Date;
|
|
94460
94581
|
description: string;
|
|
94582
|
+
name: string;
|
|
94461
94583
|
workspaceId: string;
|
|
94462
94584
|
docSlug: string;
|
|
94463
94585
|
docSlugDeprecated: string;
|
|
@@ -94667,9 +94789,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
94667
94789
|
designSystems?: {
|
|
94668
94790
|
id: string;
|
|
94669
94791
|
createdAt: Date;
|
|
94670
|
-
name: string;
|
|
94671
94792
|
updatedAt: Date;
|
|
94672
94793
|
description: string;
|
|
94794
|
+
name: string;
|
|
94673
94795
|
workspaceId: string;
|
|
94674
94796
|
docSlug: string;
|
|
94675
94797
|
docSlugDeprecated: string;
|
|
@@ -94879,9 +95001,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
94879
95001
|
designSystems?: {
|
|
94880
95002
|
id: string;
|
|
94881
95003
|
createdAt: Date;
|
|
94882
|
-
name: string;
|
|
94883
95004
|
updatedAt: Date;
|
|
94884
95005
|
description: string;
|
|
95006
|
+
name: string;
|
|
94885
95007
|
workspaceId: string;
|
|
94886
95008
|
docSlug: string;
|
|
94887
95009
|
docSlugDeprecated: string;
|
|
@@ -95093,9 +95215,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
95093
95215
|
designSystems?: {
|
|
95094
95216
|
id: string;
|
|
95095
95217
|
createdAt: Date;
|
|
95096
|
-
name: string;
|
|
95097
95218
|
updatedAt: Date;
|
|
95098
95219
|
description: string;
|
|
95220
|
+
name: string;
|
|
95099
95221
|
workspaceId: string;
|
|
95100
95222
|
docSlug: string;
|
|
95101
95223
|
docSlugDeprecated: string;
|
|
@@ -95114,9 +95236,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
95114
95236
|
designSystem: {
|
|
95115
95237
|
id: string;
|
|
95116
95238
|
createdAt: Date;
|
|
95117
|
-
name: string;
|
|
95118
95239
|
updatedAt: Date;
|
|
95119
95240
|
description: string;
|
|
95241
|
+
name: string;
|
|
95120
95242
|
workspaceId: string;
|
|
95121
95243
|
docSlug: string;
|
|
95122
95244
|
docSlugDeprecated: string;
|
|
@@ -95327,9 +95449,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
95327
95449
|
designSystems?: {
|
|
95328
95450
|
id: string;
|
|
95329
95451
|
createdAt: Date;
|
|
95330
|
-
name: string;
|
|
95331
95452
|
updatedAt: Date;
|
|
95332
95453
|
description: string;
|
|
95454
|
+
name: string;
|
|
95333
95455
|
workspaceId: string;
|
|
95334
95456
|
docSlug: string;
|
|
95335
95457
|
docSlugDeprecated: string;
|
|
@@ -95348,9 +95470,9 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
95348
95470
|
designSystem: {
|
|
95349
95471
|
id: string;
|
|
95350
95472
|
createdAt: Date;
|
|
95351
|
-
name: string;
|
|
95352
95473
|
updatedAt: Date;
|
|
95353
95474
|
description: string;
|
|
95475
|
+
name: string;
|
|
95354
95476
|
workspaceId: string;
|
|
95355
95477
|
docSlug: string;
|
|
95356
95478
|
docSlugDeprecated: string;
|
|
@@ -95373,11 +95495,11 @@ declare const DesignSystemCreateInput: z.ZodObject<{
|
|
|
95373
95495
|
name: z.ZodString;
|
|
95374
95496
|
description: z.ZodString;
|
|
95375
95497
|
}, "strip", z.ZodTypeAny, {
|
|
95376
|
-
name: string;
|
|
95377
95498
|
description: string;
|
|
95378
|
-
}, {
|
|
95379
95499
|
name: string;
|
|
95500
|
+
}, {
|
|
95380
95501
|
description: string;
|
|
95502
|
+
name: string;
|
|
95381
95503
|
}>;
|
|
95382
95504
|
workspaceId: z.ZodString;
|
|
95383
95505
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -95386,8 +95508,8 @@ declare const DesignSystemCreateInput: z.ZodObject<{
|
|
|
95386
95508
|
source: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
95387
95509
|
}, "strip", z.ZodTypeAny, {
|
|
95388
95510
|
meta: {
|
|
95389
|
-
name: string;
|
|
95390
95511
|
description: string;
|
|
95512
|
+
name: string;
|
|
95391
95513
|
};
|
|
95392
95514
|
workspaceId: string;
|
|
95393
95515
|
isPublic?: boolean | undefined;
|
|
@@ -95396,8 +95518,8 @@ declare const DesignSystemCreateInput: z.ZodObject<{
|
|
|
95396
95518
|
source?: string[] | undefined;
|
|
95397
95519
|
}, {
|
|
95398
95520
|
meta: {
|
|
95399
|
-
name: string;
|
|
95400
95521
|
description: string;
|
|
95522
|
+
name: string;
|
|
95401
95523
|
};
|
|
95402
95524
|
workspaceId: string;
|
|
95403
95525
|
isPublic?: boolean | undefined;
|
|
@@ -98258,14 +98380,14 @@ declare const VersionCreationJob: z.ZodObject<{
|
|
|
98258
98380
|
errorMessage: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
98259
98381
|
}, "strip", z.ZodTypeAny, {
|
|
98260
98382
|
id: string;
|
|
98261
|
-
status: "
|
|
98383
|
+
status: "InProgress" | "Success" | "Error";
|
|
98262
98384
|
designSystemId: string;
|
|
98263
98385
|
version: string;
|
|
98264
98386
|
designSystemVersionId?: string | undefined;
|
|
98265
98387
|
errorMessage?: string | undefined;
|
|
98266
98388
|
}, {
|
|
98267
98389
|
id: string;
|
|
98268
|
-
status: "
|
|
98390
|
+
status: "InProgress" | "Success" | "Error";
|
|
98269
98391
|
designSystemId: string;
|
|
98270
98392
|
version: string;
|
|
98271
98393
|
designSystemVersionId?: string | null | undefined;
|
|
@@ -100367,7 +100489,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
100367
100489
|
}, "strip", z.ZodTypeAny, {
|
|
100368
100490
|
id: string;
|
|
100369
100491
|
createdAt: Date;
|
|
100370
|
-
status: "
|
|
100492
|
+
status: "InProgress" | "Timeout" | "Success" | "Failed";
|
|
100371
100493
|
designSystemId: string;
|
|
100372
100494
|
designSystemVersionId: string;
|
|
100373
100495
|
workspaceId: string;
|
|
@@ -100437,7 +100559,7 @@ declare const ExportJob: z.ZodObject<{
|
|
|
100437
100559
|
}, {
|
|
100438
100560
|
id: string;
|
|
100439
100561
|
createdAt: Date;
|
|
100440
|
-
status: "
|
|
100562
|
+
status: "InProgress" | "Timeout" | "Success" | "Failed";
|
|
100441
100563
|
designSystemId: string;
|
|
100442
100564
|
designSystemVersionId: string;
|
|
100443
100565
|
workspaceId: string;
|
|
@@ -100520,7 +100642,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
100520
100642
|
destinations: z.ZodOptional<z.ZodArray<z.ZodEnum<["s3", "webhookUrl", "github", "documentation", "azure", "gitlab"]>, "many">>;
|
|
100521
100643
|
docsEnvironment: z.ZodOptional<z.ZodEnum<["Live", "Preview"]>>;
|
|
100522
100644
|
}, "strip", z.ZodTypeAny, {
|
|
100523
|
-
status?: "
|
|
100645
|
+
status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
|
|
100524
100646
|
designSystemId?: string | undefined;
|
|
100525
100647
|
designSystemVersionId?: string | undefined;
|
|
100526
100648
|
brandId?: string | undefined;
|
|
@@ -100531,7 +100653,7 @@ declare const ExportJobFindByFilter: z.ZodObject<{
|
|
|
100531
100653
|
destinations?: ("github" | "azure" | "gitlab" | "documentation" | "webhookUrl" | "s3")[] | undefined;
|
|
100532
100654
|
docsEnvironment?: "Live" | "Preview" | undefined;
|
|
100533
100655
|
}, {
|
|
100534
|
-
status?: "
|
|
100656
|
+
status?: "InProgress" | "Timeout" | "Success" | "Failed" | undefined;
|
|
100535
100657
|
designSystemId?: string | undefined;
|
|
100536
100658
|
designSystemVersionId?: string | undefined;
|
|
100537
100659
|
brandId?: string | undefined;
|
|
@@ -100884,26 +101006,26 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
100884
101006
|
}[] | null | undefined;
|
|
100885
101007
|
}[] | null | undefined>>;
|
|
100886
101008
|
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
100887
|
-
name: string;
|
|
100888
101009
|
key: string;
|
|
101010
|
+
name: string;
|
|
100889
101011
|
isDefault?: boolean | undefined;
|
|
100890
101012
|
description?: string | undefined;
|
|
100891
101013
|
thumbnailURL?: string | undefined;
|
|
100892
101014
|
}[]>, z.ZodTypeDef, Record<string, {
|
|
100893
|
-
name: string;
|
|
100894
101015
|
key: string;
|
|
101016
|
+
name: string;
|
|
100895
101017
|
isDefault?: boolean | null | undefined;
|
|
100896
101018
|
description?: string | null | undefined;
|
|
100897
101019
|
thumbnailURL?: string | null | undefined;
|
|
100898
101020
|
}[]>>>>, Record<string, {
|
|
100899
|
-
name: string;
|
|
100900
101021
|
key: string;
|
|
101022
|
+
name: string;
|
|
100901
101023
|
isDefault?: boolean | undefined;
|
|
100902
101024
|
description?: string | undefined;
|
|
100903
101025
|
thumbnailURL?: string | undefined;
|
|
100904
101026
|
}[]> | undefined, Record<string, {
|
|
100905
|
-
name: string;
|
|
100906
101027
|
key: string;
|
|
101028
|
+
name: string;
|
|
100907
101029
|
isDefault?: boolean | null | undefined;
|
|
100908
101030
|
description?: string | null | undefined;
|
|
100909
101031
|
thumbnailURL?: string | null | undefined;
|
|
@@ -100950,8 +101072,8 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
100950
101072
|
mode?: NonNullable<"array" | "block"> | undefined;
|
|
100951
101073
|
}[];
|
|
100952
101074
|
blockVariants: Record<string, {
|
|
100953
|
-
name: string;
|
|
100954
101075
|
key: string;
|
|
101076
|
+
name: string;
|
|
100955
101077
|
isDefault?: boolean | undefined;
|
|
100956
101078
|
description?: string | undefined;
|
|
100957
101079
|
thumbnailURL?: string | undefined;
|
|
@@ -101011,8 +101133,8 @@ declare const ExporterDetails: z.ZodObject<{
|
|
|
101011
101133
|
}[] | null | undefined;
|
|
101012
101134
|
}[] | null | undefined;
|
|
101013
101135
|
blockVariants?: Record<string, {
|
|
101014
|
-
name: string;
|
|
101015
101136
|
key: string;
|
|
101137
|
+
name: string;
|
|
101016
101138
|
isDefault?: boolean | null | undefined;
|
|
101017
101139
|
description?: string | null | undefined;
|
|
101018
101140
|
thumbnailURL?: string | null | undefined;
|
|
@@ -101152,26 +101274,26 @@ declare const Exporter: z.ZodObject<{
|
|
|
101152
101274
|
}[] | null | undefined;
|
|
101153
101275
|
}[] | null | undefined>>;
|
|
101154
101276
|
blockVariants: z.ZodDefault<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, {
|
|
101155
|
-
name: string;
|
|
101156
101277
|
key: string;
|
|
101278
|
+
name: string;
|
|
101157
101279
|
isDefault?: boolean | undefined;
|
|
101158
101280
|
description?: string | undefined;
|
|
101159
101281
|
thumbnailURL?: string | undefined;
|
|
101160
101282
|
}[]>, z.ZodTypeDef, Record<string, {
|
|
101161
|
-
name: string;
|
|
101162
101283
|
key: string;
|
|
101284
|
+
name: string;
|
|
101163
101285
|
isDefault?: boolean | null | undefined;
|
|
101164
101286
|
description?: string | null | undefined;
|
|
101165
101287
|
thumbnailURL?: string | null | undefined;
|
|
101166
101288
|
}[]>>>>, Record<string, {
|
|
101167
|
-
name: string;
|
|
101168
101289
|
key: string;
|
|
101290
|
+
name: string;
|
|
101169
101291
|
isDefault?: boolean | undefined;
|
|
101170
101292
|
description?: string | undefined;
|
|
101171
101293
|
thumbnailURL?: string | undefined;
|
|
101172
101294
|
}[]> | undefined, Record<string, {
|
|
101173
|
-
name: string;
|
|
101174
101295
|
key: string;
|
|
101296
|
+
name: string;
|
|
101175
101297
|
isDefault?: boolean | null | undefined;
|
|
101176
101298
|
description?: string | null | undefined;
|
|
101177
101299
|
thumbnailURL?: string | null | undefined;
|
|
@@ -101218,8 +101340,8 @@ declare const Exporter: z.ZodObject<{
|
|
|
101218
101340
|
mode?: NonNullable<"array" | "block"> | undefined;
|
|
101219
101341
|
}[];
|
|
101220
101342
|
blockVariants: Record<string, {
|
|
101221
|
-
name: string;
|
|
101222
101343
|
key: string;
|
|
101344
|
+
name: string;
|
|
101223
101345
|
isDefault?: boolean | undefined;
|
|
101224
101346
|
description?: string | undefined;
|
|
101225
101347
|
thumbnailURL?: string | undefined;
|
|
@@ -101279,8 +101401,8 @@ declare const Exporter: z.ZodObject<{
|
|
|
101279
101401
|
}[] | null | undefined;
|
|
101280
101402
|
}[] | null | undefined;
|
|
101281
101403
|
blockVariants?: Record<string, {
|
|
101282
|
-
name: string;
|
|
101283
101404
|
key: string;
|
|
101405
|
+
name: string;
|
|
101284
101406
|
isDefault?: boolean | null | undefined;
|
|
101285
101407
|
description?: string | null | undefined;
|
|
101286
101408
|
thumbnailURL?: string | null | undefined;
|
|
@@ -101335,8 +101457,8 @@ declare const Exporter: z.ZodObject<{
|
|
|
101335
101457
|
mode?: NonNullable<"array" | "block"> | undefined;
|
|
101336
101458
|
}[];
|
|
101337
101459
|
blockVariants: Record<string, {
|
|
101338
|
-
name: string;
|
|
101339
101460
|
key: string;
|
|
101461
|
+
name: string;
|
|
101340
101462
|
isDefault?: boolean | undefined;
|
|
101341
101463
|
description?: string | undefined;
|
|
101342
101464
|
thumbnailURL?: string | undefined;
|
|
@@ -101403,8 +101525,8 @@ declare const Exporter: z.ZodObject<{
|
|
|
101403
101525
|
}[] | null | undefined;
|
|
101404
101526
|
}[] | null | undefined;
|
|
101405
101527
|
blockVariants?: Record<string, {
|
|
101406
|
-
name: string;
|
|
101407
101528
|
key: string;
|
|
101529
|
+
name: string;
|
|
101408
101530
|
isDefault?: boolean | null | undefined;
|
|
101409
101531
|
description?: string | null | undefined;
|
|
101410
101532
|
thumbnailURL?: string | null | undefined;
|
|
@@ -101428,14 +101550,14 @@ declare const PulsarContributionVariant: z.ZodObject<{
|
|
|
101428
101550
|
description: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101429
101551
|
thumbnailURL: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
101430
101552
|
}, "strip", z.ZodTypeAny, {
|
|
101431
|
-
name: string;
|
|
101432
101553
|
key: string;
|
|
101554
|
+
name: string;
|
|
101433
101555
|
isDefault?: boolean | undefined;
|
|
101434
101556
|
description?: string | undefined;
|
|
101435
101557
|
thumbnailURL?: string | undefined;
|
|
101436
101558
|
}, {
|
|
101437
|
-
name: string;
|
|
101438
101559
|
key: string;
|
|
101560
|
+
name: string;
|
|
101439
101561
|
isDefault?: boolean | null | undefined;
|
|
101440
101562
|
description?: string | null | undefined;
|
|
101441
101563
|
thumbnailURL?: string | null | undefined;
|
|
@@ -101571,8 +101693,8 @@ declare const PulsarCustomBlock: z.ZodObject<{
|
|
|
101571
101693
|
}>;
|
|
101572
101694
|
type PulsarCustomBlock = z.infer<typeof PulsarCustomBlock>;
|
|
101573
101695
|
declare const PulsarContributionConfigurationProperty: z.ZodObject<{
|
|
101574
|
-
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
101575
101696
|
type: z.ZodEnum<["string", "number", "boolean", "image", "enum", "color", "typography", "component", "componentProperties", "tokenProperties", "tokenType"]>;
|
|
101697
|
+
values: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
101576
101698
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
101577
101699
|
default: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodBoolean, z.ZodNumber]>>>;
|
|
101578
101700
|
key: z.ZodString;
|
|
@@ -101660,6 +101782,63 @@ declare const ExternalOAuthRequest: z.ZodObject<{
|
|
|
101660
101782
|
}>;
|
|
101661
101783
|
type ExternalOAuthRequest = z.infer<typeof ExternalOAuthRequest>;
|
|
101662
101784
|
|
|
101785
|
+
declare const GitOrganization: z.ZodObject<{
|
|
101786
|
+
id: z.ZodString;
|
|
101787
|
+
name: z.ZodString;
|
|
101788
|
+
url: z.ZodString;
|
|
101789
|
+
}, "strip", z.ZodTypeAny, {
|
|
101790
|
+
id: string;
|
|
101791
|
+
name: string;
|
|
101792
|
+
url: string;
|
|
101793
|
+
}, {
|
|
101794
|
+
id: string;
|
|
101795
|
+
name: string;
|
|
101796
|
+
url: string;
|
|
101797
|
+
}>;
|
|
101798
|
+
type GitOrganization = z.infer<typeof GitOrganization>;
|
|
101799
|
+
declare const GitProject: z.ZodObject<{
|
|
101800
|
+
id: z.ZodString;
|
|
101801
|
+
name: z.ZodString;
|
|
101802
|
+
url: z.ZodString;
|
|
101803
|
+
}, "strip", z.ZodTypeAny, {
|
|
101804
|
+
id: string;
|
|
101805
|
+
name: string;
|
|
101806
|
+
url: string;
|
|
101807
|
+
}, {
|
|
101808
|
+
id: string;
|
|
101809
|
+
name: string;
|
|
101810
|
+
url: string;
|
|
101811
|
+
}>;
|
|
101812
|
+
type GitProject = z.infer<typeof GitProject>;
|
|
101813
|
+
declare const GitRepository: z.ZodObject<{
|
|
101814
|
+
id: z.ZodString;
|
|
101815
|
+
name: z.ZodString;
|
|
101816
|
+
url: z.ZodString;
|
|
101817
|
+
defaultBranch: z.ZodString;
|
|
101818
|
+
}, "strip", z.ZodTypeAny, {
|
|
101819
|
+
id: string;
|
|
101820
|
+
name: string;
|
|
101821
|
+
url: string;
|
|
101822
|
+
defaultBranch: string;
|
|
101823
|
+
}, {
|
|
101824
|
+
id: string;
|
|
101825
|
+
name: string;
|
|
101826
|
+
url: string;
|
|
101827
|
+
defaultBranch: string;
|
|
101828
|
+
}>;
|
|
101829
|
+
type GitRepository = z.infer<typeof GitRepository>;
|
|
101830
|
+
declare const GitBranch: z.ZodObject<{
|
|
101831
|
+
name: z.ZodString;
|
|
101832
|
+
lastCommitId: z.ZodString;
|
|
101833
|
+
}, "strip", z.ZodTypeAny, {
|
|
101834
|
+
name: string;
|
|
101835
|
+
lastCommitId: string;
|
|
101836
|
+
}, {
|
|
101837
|
+
name: string;
|
|
101838
|
+
lastCommitId: string;
|
|
101839
|
+
}>;
|
|
101840
|
+
type GitBranch = z.infer<typeof GitBranch>;
|
|
101841
|
+
|
|
101663
101842
|
declare const IntegrationDesignSystem: z.ZodObject<{
|
|
101664
101843
|
designSystemId: z.ZodString;
|
|
101665
101844
|
brandId: z.ZodString;
|
|
@@ -101686,17 +101865,26 @@ declare const IntegrationCredentialsProfile: z.ZodObject<{
|
|
|
101686
101865
|
id: z.ZodString;
|
|
101687
101866
|
email: z.ZodOptional<z.ZodString>;
|
|
101688
101867
|
handle: z.ZodOptional<z.ZodString>;
|
|
101868
|
+
type: z.ZodOptional<z.ZodString>;
|
|
101689
101869
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
101870
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
101871
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
101690
101872
|
}, "strip", z.ZodTypeAny, {
|
|
101691
101873
|
id: string;
|
|
101692
101874
|
email?: string | undefined;
|
|
101693
101875
|
handle?: string | undefined;
|
|
101876
|
+
type?: string | undefined;
|
|
101694
101877
|
avatarUrl?: string | undefined;
|
|
101878
|
+
organization?: string | undefined;
|
|
101879
|
+
installation?: string | undefined;
|
|
101695
101880
|
}, {
|
|
101696
101881
|
id: string;
|
|
101697
101882
|
email?: string | undefined;
|
|
101698
101883
|
handle?: string | undefined;
|
|
101884
|
+
type?: string | undefined;
|
|
101699
101885
|
avatarUrl?: string | undefined;
|
|
101886
|
+
organization?: string | undefined;
|
|
101887
|
+
installation?: string | undefined;
|
|
101700
101888
|
}>;
|
|
101701
101889
|
type IntegrationCredentialsProfile = z.infer<typeof IntegrationCredentialsProfile>;
|
|
101702
101890
|
declare const IntegrationCredentials: z.ZodObject<{
|
|
@@ -101713,17 +101901,26 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
101713
101901
|
id: z.ZodString;
|
|
101714
101902
|
email: z.ZodOptional<z.ZodString>;
|
|
101715
101903
|
handle: z.ZodOptional<z.ZodString>;
|
|
101904
|
+
type: z.ZodOptional<z.ZodString>;
|
|
101716
101905
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
101906
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
101907
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
101717
101908
|
}, "strip", z.ZodTypeAny, {
|
|
101718
101909
|
id: string;
|
|
101719
101910
|
email?: string | undefined;
|
|
101720
101911
|
handle?: string | undefined;
|
|
101912
|
+
type?: string | undefined;
|
|
101721
101913
|
avatarUrl?: string | undefined;
|
|
101914
|
+
organization?: string | undefined;
|
|
101915
|
+
installation?: string | undefined;
|
|
101722
101916
|
}, {
|
|
101723
101917
|
id: string;
|
|
101724
101918
|
email?: string | undefined;
|
|
101725
101919
|
handle?: string | undefined;
|
|
101920
|
+
type?: string | undefined;
|
|
101726
101921
|
avatarUrl?: string | undefined;
|
|
101922
|
+
organization?: string | undefined;
|
|
101923
|
+
installation?: string | undefined;
|
|
101727
101924
|
}>>;
|
|
101728
101925
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
101729
101926
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -101756,7 +101953,10 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
101756
101953
|
id: string;
|
|
101757
101954
|
email?: string | undefined;
|
|
101758
101955
|
handle?: string | undefined;
|
|
101956
|
+
type?: string | undefined;
|
|
101759
101957
|
avatarUrl?: string | undefined;
|
|
101958
|
+
organization?: string | undefined;
|
|
101959
|
+
installation?: string | undefined;
|
|
101760
101960
|
} | undefined;
|
|
101761
101961
|
customUrl?: string | undefined;
|
|
101762
101962
|
user?: {
|
|
@@ -101779,7 +101979,10 @@ declare const IntegrationCredentials: z.ZodObject<{
|
|
|
101779
101979
|
id: string;
|
|
101780
101980
|
email?: string | undefined;
|
|
101781
101981
|
handle?: string | undefined;
|
|
101982
|
+
type?: string | undefined;
|
|
101782
101983
|
avatarUrl?: string | undefined;
|
|
101984
|
+
organization?: string | undefined;
|
|
101985
|
+
installation?: string | undefined;
|
|
101783
101986
|
} | undefined;
|
|
101784
101987
|
customUrl?: string | undefined;
|
|
101785
101988
|
user?: {
|
|
@@ -101813,17 +102016,26 @@ declare const Integration: z.ZodObject<{
|
|
|
101813
102016
|
id: z.ZodString;
|
|
101814
102017
|
email: z.ZodOptional<z.ZodString>;
|
|
101815
102018
|
handle: z.ZodOptional<z.ZodString>;
|
|
102019
|
+
type: z.ZodOptional<z.ZodString>;
|
|
101816
102020
|
avatarUrl: z.ZodOptional<z.ZodString>;
|
|
102021
|
+
organization: z.ZodOptional<z.ZodString>;
|
|
102022
|
+
installation: z.ZodOptional<z.ZodString>;
|
|
101817
102023
|
}, "strip", z.ZodTypeAny, {
|
|
101818
102024
|
id: string;
|
|
101819
102025
|
email?: string | undefined;
|
|
101820
102026
|
handle?: string | undefined;
|
|
102027
|
+
type?: string | undefined;
|
|
101821
102028
|
avatarUrl?: string | undefined;
|
|
102029
|
+
organization?: string | undefined;
|
|
102030
|
+
installation?: string | undefined;
|
|
101822
102031
|
}, {
|
|
101823
102032
|
id: string;
|
|
101824
102033
|
email?: string | undefined;
|
|
101825
102034
|
handle?: string | undefined;
|
|
102035
|
+
type?: string | undefined;
|
|
101826
102036
|
avatarUrl?: string | undefined;
|
|
102037
|
+
organization?: string | undefined;
|
|
102038
|
+
installation?: string | undefined;
|
|
101827
102039
|
}>>;
|
|
101828
102040
|
customUrl: z.ZodOptional<z.ZodString>;
|
|
101829
102041
|
user: z.ZodOptional<z.ZodObject<{
|
|
@@ -101856,7 +102068,10 @@ declare const Integration: z.ZodObject<{
|
|
|
101856
102068
|
id: string;
|
|
101857
102069
|
email?: string | undefined;
|
|
101858
102070
|
handle?: string | undefined;
|
|
102071
|
+
type?: string | undefined;
|
|
101859
102072
|
avatarUrl?: string | undefined;
|
|
102073
|
+
organization?: string | undefined;
|
|
102074
|
+
installation?: string | undefined;
|
|
101860
102075
|
} | undefined;
|
|
101861
102076
|
customUrl?: string | undefined;
|
|
101862
102077
|
user?: {
|
|
@@ -101879,7 +102094,10 @@ declare const Integration: z.ZodObject<{
|
|
|
101879
102094
|
id: string;
|
|
101880
102095
|
email?: string | undefined;
|
|
101881
102096
|
handle?: string | undefined;
|
|
102097
|
+
type?: string | undefined;
|
|
101882
102098
|
avatarUrl?: string | undefined;
|
|
102099
|
+
organization?: string | undefined;
|
|
102100
|
+
installation?: string | undefined;
|
|
101883
102101
|
} | undefined;
|
|
101884
102102
|
customUrl?: string | undefined;
|
|
101885
102103
|
user?: {
|
|
@@ -101908,7 +102126,10 @@ declare const Integration: z.ZodObject<{
|
|
|
101908
102126
|
id: string;
|
|
101909
102127
|
email?: string | undefined;
|
|
101910
102128
|
handle?: string | undefined;
|
|
102129
|
+
type?: string | undefined;
|
|
101911
102130
|
avatarUrl?: string | undefined;
|
|
102131
|
+
organization?: string | undefined;
|
|
102132
|
+
installation?: string | undefined;
|
|
101912
102133
|
} | undefined;
|
|
101913
102134
|
customUrl?: string | undefined;
|
|
101914
102135
|
user?: {
|
|
@@ -101937,7 +102158,10 @@ declare const Integration: z.ZodObject<{
|
|
|
101937
102158
|
id: string;
|
|
101938
102159
|
email?: string | undefined;
|
|
101939
102160
|
handle?: string | undefined;
|
|
102161
|
+
type?: string | undefined;
|
|
101940
102162
|
avatarUrl?: string | undefined;
|
|
102163
|
+
organization?: string | undefined;
|
|
102164
|
+
installation?: string | undefined;
|
|
101941
102165
|
} | undefined;
|
|
101942
102166
|
customUrl?: string | undefined;
|
|
101943
102167
|
user?: {
|
|
@@ -102249,8 +102473,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102249
102473
|
isHidden?: boolean | undefined;
|
|
102250
102474
|
} | null | undefined>;
|
|
102251
102475
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
102252
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102253
102476
|
persistentId: string;
|
|
102477
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102254
102478
|
designObjectId?: string | null | undefined;
|
|
102255
102479
|
designObjectIds?: string[] | null | undefined;
|
|
102256
102480
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -102432,8 +102656,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102432
102656
|
userMetadata?: string | null | undefined;
|
|
102433
102657
|
} & {
|
|
102434
102658
|
children: ({
|
|
102435
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102436
102659
|
persistentId: string;
|
|
102660
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102437
102661
|
designObjectId?: string | null | undefined;
|
|
102438
102662
|
designObjectIds?: string[] | null | undefined;
|
|
102439
102663
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -102683,8 +102907,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102683
102907
|
isHidden?: boolean | undefined;
|
|
102684
102908
|
} | null | undefined;
|
|
102685
102909
|
oldBlocks?: ({
|
|
102686
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102687
102910
|
persistentId: string;
|
|
102911
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102688
102912
|
designObjectId?: string | null | undefined;
|
|
102689
102913
|
designObjectIds?: string[] | null | undefined;
|
|
102690
102914
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -102866,8 +103090,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
102866
103090
|
userMetadata?: string | null | undefined;
|
|
102867
103091
|
} & {
|
|
102868
103092
|
children: ({
|
|
102869
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102870
103093
|
persistentId: string;
|
|
103094
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
102871
103095
|
designObjectId?: string | null | undefined;
|
|
102872
103096
|
designObjectIds?: string[] | null | undefined;
|
|
102873
103097
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -103139,8 +103363,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
103139
103363
|
isHidden?: boolean | undefined;
|
|
103140
103364
|
} | null | undefined;
|
|
103141
103365
|
oldBlocks?: ({
|
|
103142
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
103143
103366
|
persistentId: string;
|
|
103367
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
103144
103368
|
designObjectId?: string | null | undefined;
|
|
103145
103369
|
designObjectIds?: string[] | null | undefined;
|
|
103146
103370
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -103322,8 +103546,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
103322
103546
|
userMetadata?: string | null | undefined;
|
|
103323
103547
|
} & {
|
|
103324
103548
|
children: ({
|
|
103325
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
103326
103549
|
persistentId: string;
|
|
103550
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
103327
103551
|
designObjectId?: string | null | undefined;
|
|
103328
103552
|
designObjectIds?: string[] | null | undefined;
|
|
103329
103553
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -104049,8 +104273,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
104049
104273
|
isHidden?: boolean | undefined;
|
|
104050
104274
|
} | null | undefined;
|
|
104051
104275
|
oldBlocks?: ({
|
|
104052
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104053
104276
|
persistentId: string;
|
|
104277
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104054
104278
|
designObjectId?: string | null | undefined;
|
|
104055
104279
|
designObjectIds?: string[] | null | undefined;
|
|
104056
104280
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -104232,8 +104456,8 @@ declare const DesignSystemVersionRoomInitialState: z.ZodObject<{
|
|
|
104232
104456
|
userMetadata?: string | null | undefined;
|
|
104233
104457
|
} & {
|
|
104234
104458
|
children: ({
|
|
104235
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104236
104459
|
persistentId: string;
|
|
104460
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104237
104461
|
designObjectId?: string | null | undefined;
|
|
104238
104462
|
designObjectIds?: string[] | null | undefined;
|
|
104239
104463
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -104581,8 +104805,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104581
104805
|
isHidden?: boolean | undefined;
|
|
104582
104806
|
} | null | undefined>;
|
|
104583
104807
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
104584
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104585
104808
|
persistentId: string;
|
|
104809
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104586
104810
|
designObjectId?: string | null | undefined;
|
|
104587
104811
|
designObjectIds?: string[] | null | undefined;
|
|
104588
104812
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -104764,8 +104988,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
104764
104988
|
userMetadata?: string | null | undefined;
|
|
104765
104989
|
} & {
|
|
104766
104990
|
children: ({
|
|
104767
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104768
104991
|
persistentId: string;
|
|
104992
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
104769
104993
|
designObjectId?: string | null | undefined;
|
|
104770
104994
|
designObjectIds?: string[] | null | undefined;
|
|
104771
104995
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -105015,8 +105239,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105015
105239
|
isHidden?: boolean | undefined;
|
|
105016
105240
|
} | null | undefined;
|
|
105017
105241
|
oldBlocks?: ({
|
|
105018
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105019
105242
|
persistentId: string;
|
|
105243
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105020
105244
|
designObjectId?: string | null | undefined;
|
|
105021
105245
|
designObjectIds?: string[] | null | undefined;
|
|
105022
105246
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -105198,8 +105422,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105198
105422
|
userMetadata?: string | null | undefined;
|
|
105199
105423
|
} & {
|
|
105200
105424
|
children: ({
|
|
105201
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105202
105425
|
persistentId: string;
|
|
105426
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105203
105427
|
designObjectId?: string | null | undefined;
|
|
105204
105428
|
designObjectIds?: string[] | null | undefined;
|
|
105205
105429
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -105471,8 +105695,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105471
105695
|
isHidden?: boolean | undefined;
|
|
105472
105696
|
} | null | undefined;
|
|
105473
105697
|
oldBlocks?: ({
|
|
105474
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105475
105698
|
persistentId: string;
|
|
105699
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105476
105700
|
designObjectId?: string | null | undefined;
|
|
105477
105701
|
designObjectIds?: string[] | null | undefined;
|
|
105478
105702
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -105654,8 +105878,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
105654
105878
|
userMetadata?: string | null | undefined;
|
|
105655
105879
|
} & {
|
|
105656
105880
|
children: ({
|
|
105657
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105658
105881
|
persistentId: string;
|
|
105882
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
105659
105883
|
designObjectId?: string | null | undefined;
|
|
105660
105884
|
designObjectIds?: string[] | null | undefined;
|
|
105661
105885
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -106375,8 +106599,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
106375
106599
|
isHidden?: boolean | undefined;
|
|
106376
106600
|
} | null | undefined;
|
|
106377
106601
|
oldBlocks?: ({
|
|
106378
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
106379
106602
|
persistentId: string;
|
|
106603
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
106380
106604
|
designObjectId?: string | null | undefined;
|
|
106381
106605
|
designObjectIds?: string[] | null | undefined;
|
|
106382
106606
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -106558,8 +106782,8 @@ declare const DesignSystemVersionRoomUpdate: z.ZodObject<{
|
|
|
106558
106782
|
userMetadata?: string | null | undefined;
|
|
106559
106783
|
} & {
|
|
106560
106784
|
children: ({
|
|
106561
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
106562
106785
|
persistentId: string;
|
|
106786
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
106563
106787
|
designObjectId?: string | null | undefined;
|
|
106564
106788
|
designObjectIds?: string[] | null | undefined;
|
|
106565
106789
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -108088,8 +108312,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108088
108312
|
isHidden?: boolean | undefined;
|
|
108089
108313
|
} | null | undefined>;
|
|
108090
108314
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
108091
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108092
108315
|
persistentId: string;
|
|
108316
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108093
108317
|
designObjectId?: string | null | undefined;
|
|
108094
108318
|
designObjectIds?: string[] | null | undefined;
|
|
108095
108319
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -108271,8 +108495,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108271
108495
|
userMetadata?: string | null | undefined;
|
|
108272
108496
|
} & {
|
|
108273
108497
|
children: ({
|
|
108274
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108275
108498
|
persistentId: string;
|
|
108499
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108276
108500
|
designObjectId?: string | null | undefined;
|
|
108277
108501
|
designObjectIds?: string[] | null | undefined;
|
|
108278
108502
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -108522,8 +108746,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108522
108746
|
isHidden?: boolean | undefined;
|
|
108523
108747
|
} | null | undefined;
|
|
108524
108748
|
oldBlocks?: ({
|
|
108525
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108526
108749
|
persistentId: string;
|
|
108750
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108527
108751
|
designObjectId?: string | null | undefined;
|
|
108528
108752
|
designObjectIds?: string[] | null | undefined;
|
|
108529
108753
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -108705,8 +108929,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108705
108929
|
userMetadata?: string | null | undefined;
|
|
108706
108930
|
} & {
|
|
108707
108931
|
children: ({
|
|
108708
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108709
108932
|
persistentId: string;
|
|
108933
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108710
108934
|
designObjectId?: string | null | undefined;
|
|
108711
108935
|
designObjectIds?: string[] | null | undefined;
|
|
108712
108936
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -108978,8 +109202,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
108978
109202
|
isHidden?: boolean | undefined;
|
|
108979
109203
|
} | null | undefined;
|
|
108980
109204
|
oldBlocks?: ({
|
|
108981
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108982
109205
|
persistentId: string;
|
|
109206
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
108983
109207
|
designObjectId?: string | null | undefined;
|
|
108984
109208
|
designObjectIds?: string[] | null | undefined;
|
|
108985
109209
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -109161,8 +109385,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
109161
109385
|
userMetadata?: string | null | undefined;
|
|
109162
109386
|
} & {
|
|
109163
109387
|
children: ({
|
|
109164
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
109165
109388
|
persistentId: string;
|
|
109389
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
109166
109390
|
designObjectId?: string | null | undefined;
|
|
109167
109391
|
designObjectIds?: string[] | null | undefined;
|
|
109168
109392
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -109825,8 +110049,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
109825
110049
|
isHidden?: boolean | undefined;
|
|
109826
110050
|
} | null | undefined;
|
|
109827
110051
|
oldBlocks?: ({
|
|
109828
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
109829
110052
|
persistentId: string;
|
|
110053
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
109830
110054
|
designObjectId?: string | null | undefined;
|
|
109831
110055
|
designObjectIds?: string[] | null | undefined;
|
|
109832
110056
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -110008,8 +110232,8 @@ declare const DocumentationPageRoomRoomUpdate: z.ZodObject<{
|
|
|
110008
110232
|
userMetadata?: string | null | undefined;
|
|
110009
110233
|
} & {
|
|
110010
110234
|
children: ({
|
|
110011
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110012
110235
|
persistentId: string;
|
|
110236
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110013
110237
|
designObjectId?: string | null | undefined;
|
|
110014
110238
|
designObjectIds?: string[] | null | undefined;
|
|
110015
110239
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -110407,8 +110631,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110407
110631
|
isHidden?: boolean | undefined;
|
|
110408
110632
|
} | null | undefined>;
|
|
110409
110633
|
oldBlocks: z.ZodOptional<z.ZodArray<z.ZodType<PageBlockV1, z.ZodTypeDef, {
|
|
110410
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110411
110634
|
persistentId: string;
|
|
110635
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110412
110636
|
designObjectId?: string | null | undefined;
|
|
110413
110637
|
designObjectIds?: string[] | null | undefined;
|
|
110414
110638
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -110590,8 +110814,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110590
110814
|
userMetadata?: string | null | undefined;
|
|
110591
110815
|
} & {
|
|
110592
110816
|
children: ({
|
|
110593
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110594
110817
|
persistentId: string;
|
|
110818
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110595
110819
|
designObjectId?: string | null | undefined;
|
|
110596
110820
|
designObjectIds?: string[] | null | undefined;
|
|
110597
110821
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -110841,8 +111065,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
110841
111065
|
isHidden?: boolean | undefined;
|
|
110842
111066
|
} | null | undefined;
|
|
110843
111067
|
oldBlocks?: ({
|
|
110844
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110845
111068
|
persistentId: string;
|
|
111069
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
110846
111070
|
designObjectId?: string | null | undefined;
|
|
110847
111071
|
designObjectIds?: string[] | null | undefined;
|
|
110848
111072
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -111024,8 +111248,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
111024
111248
|
userMetadata?: string | null | undefined;
|
|
111025
111249
|
} & {
|
|
111026
111250
|
children: ({
|
|
111027
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111028
111251
|
persistentId: string;
|
|
111252
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111029
111253
|
designObjectId?: string | null | undefined;
|
|
111030
111254
|
designObjectIds?: string[] | null | undefined;
|
|
111031
111255
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -111297,8 +111521,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
111297
111521
|
isHidden?: boolean | undefined;
|
|
111298
111522
|
} | null | undefined;
|
|
111299
111523
|
oldBlocks?: ({
|
|
111300
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111301
111524
|
persistentId: string;
|
|
111525
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111302
111526
|
designObjectId?: string | null | undefined;
|
|
111303
111527
|
designObjectIds?: string[] | null | undefined;
|
|
111304
111528
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -111480,8 +111704,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
111480
111704
|
userMetadata?: string | null | undefined;
|
|
111481
111705
|
} & {
|
|
111482
111706
|
children: ({
|
|
111483
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111484
111707
|
persistentId: string;
|
|
111708
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
111485
111709
|
designObjectId?: string | null | undefined;
|
|
111486
111710
|
designObjectIds?: string[] | null | undefined;
|
|
111487
111711
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -112919,12 +113143,15 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
112919
113143
|
items: z.ZodOptional<z.ZodObject<{
|
|
112920
113144
|
numberOfItems: z.ZodNumber;
|
|
112921
113145
|
allowLinks: z.ZodBoolean;
|
|
113146
|
+
newItemLabel: z.ZodOptional<z.ZodString>;
|
|
112922
113147
|
}, "strip", z.ZodTypeAny, {
|
|
112923
113148
|
numberOfItems: number;
|
|
112924
113149
|
allowLinks: boolean;
|
|
113150
|
+
newItemLabel?: string | undefined;
|
|
112925
113151
|
}, {
|
|
112926
113152
|
numberOfItems: number;
|
|
112927
113153
|
allowLinks: boolean;
|
|
113154
|
+
newItemLabel?: string | undefined;
|
|
112928
113155
|
}>>;
|
|
112929
113156
|
entities: z.ZodOptional<z.ZodObject<{
|
|
112930
113157
|
selectionType: z.ZodEnum<["Entity", "Group", "EntityAndGroup"]>;
|
|
@@ -112941,6 +113168,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
112941
113168
|
items?: {
|
|
112942
113169
|
numberOfItems: number;
|
|
112943
113170
|
allowLinks: boolean;
|
|
113171
|
+
newItemLabel?: string | undefined;
|
|
112944
113172
|
} | undefined;
|
|
112945
113173
|
entities?: {
|
|
112946
113174
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -112951,6 +113179,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
112951
113179
|
items?: {
|
|
112952
113180
|
numberOfItems: number;
|
|
112953
113181
|
allowLinks: boolean;
|
|
113182
|
+
newItemLabel?: string | undefined;
|
|
112954
113183
|
} | undefined;
|
|
112955
113184
|
entities?: {
|
|
112956
113185
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -112997,8 +113226,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
112997
113226
|
}>>;
|
|
112998
113227
|
}, "strip", z.ZodTypeAny, {
|
|
112999
113228
|
id: string;
|
|
113000
|
-
name: string;
|
|
113001
113229
|
description: string;
|
|
113230
|
+
name: string;
|
|
113002
113231
|
item: {
|
|
113003
113232
|
properties: {
|
|
113004
113233
|
id: string;
|
|
@@ -113045,6 +113274,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113045
113274
|
items?: {
|
|
113046
113275
|
numberOfItems: number;
|
|
113047
113276
|
allowLinks: boolean;
|
|
113277
|
+
newItemLabel?: string | undefined;
|
|
113048
113278
|
} | undefined;
|
|
113049
113279
|
entities?: {
|
|
113050
113280
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -113068,8 +113298,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113068
113298
|
} | undefined;
|
|
113069
113299
|
}, {
|
|
113070
113300
|
id: string;
|
|
113071
|
-
name: string;
|
|
113072
113301
|
description: string;
|
|
113302
|
+
name: string;
|
|
113073
113303
|
item: {
|
|
113074
113304
|
properties: {
|
|
113075
113305
|
id: string;
|
|
@@ -113116,6 +113346,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113116
113346
|
items?: {
|
|
113117
113347
|
numberOfItems: number;
|
|
113118
113348
|
allowLinks: boolean;
|
|
113349
|
+
newItemLabel?: string | undefined;
|
|
113119
113350
|
} | undefined;
|
|
113120
113351
|
entities?: {
|
|
113121
113352
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -113333,8 +113564,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113333
113564
|
};
|
|
113334
113565
|
blockDefinitions: {
|
|
113335
113566
|
id: string;
|
|
113336
|
-
name: string;
|
|
113337
113567
|
description: string;
|
|
113568
|
+
name: string;
|
|
113338
113569
|
item: {
|
|
113339
113570
|
properties: {
|
|
113340
113571
|
id: string;
|
|
@@ -113381,6 +113612,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113381
113612
|
items?: {
|
|
113382
113613
|
numberOfItems: number;
|
|
113383
113614
|
allowLinks: boolean;
|
|
113615
|
+
newItemLabel?: string | undefined;
|
|
113384
113616
|
} | undefined;
|
|
113385
113617
|
entities?: {
|
|
113386
113618
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -113443,8 +113675,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113443
113675
|
isHidden?: boolean | undefined;
|
|
113444
113676
|
} | null | undefined;
|
|
113445
113677
|
oldBlocks?: ({
|
|
113446
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
113447
113678
|
persistentId: string;
|
|
113679
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
113448
113680
|
designObjectId?: string | null | undefined;
|
|
113449
113681
|
designObjectIds?: string[] | null | undefined;
|
|
113450
113682
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -113626,8 +113858,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113626
113858
|
userMetadata?: string | null | undefined;
|
|
113627
113859
|
} & {
|
|
113628
113860
|
children: ({
|
|
113629
|
-
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
113630
113861
|
persistentId: string;
|
|
113862
|
+
type: "Custom" | "Image" | "Component" | "Theme" | "Token" | "Text" | "Link" | "Heading" | "Code" | "UnorderedList" | "OrderedList" | "Quote" | "Callout" | "Divider" | "Embed" | "Shortcuts" | "FigmaEmbed" | "YoutubeEmbed" | "StorybookEmbed" | "TokenGroup" | "TokenList" | "ComponentGroup" | "ComponentSandbox" | "FigmaFrames" | "ComponentAssets" | "RenderCode" | "Tabs" | "TabItem" | "Table" | "TableRow" | "TableCell";
|
|
113631
113863
|
designObjectId?: string | null | undefined;
|
|
113632
113864
|
designObjectIds?: string[] | null | undefined;
|
|
113633
113865
|
tokenType?: "Image" | "Font" | "Color" | "Border" | "Gradient" | "Shadow" | "Dimension" | "Duration" | "Size" | "Space" | "Opacity" | "FontSize" | "LineHeight" | "LetterSpacing" | "ParagraphSpacing" | "BorderWidth" | "BorderRadius" | "ZIndex" | "String" | "ProductCopy" | "FontFamily" | "FontWeight" | "TextDecoration" | "TextCase" | "Visibility" | "Typography" | "Blur" | null | undefined;
|
|
@@ -113964,8 +114196,8 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
113964
114196
|
};
|
|
113965
114197
|
blockDefinitions: {
|
|
113966
114198
|
id: string;
|
|
113967
|
-
name: string;
|
|
113968
114199
|
description: string;
|
|
114200
|
+
name: string;
|
|
113969
114201
|
item: {
|
|
113970
114202
|
properties: {
|
|
113971
114203
|
id: string;
|
|
@@ -114012,6 +114244,7 @@ declare const DocumentationPageRoomInitialStateUpdate: z.ZodObject<{
|
|
|
114012
114244
|
items?: {
|
|
114013
114245
|
numberOfItems: number;
|
|
114014
114246
|
allowLinks: boolean;
|
|
114247
|
+
newItemLabel?: string | undefined;
|
|
114015
114248
|
} | undefined;
|
|
114016
114249
|
entities?: {
|
|
114017
114250
|
selectionType: "Group" | "Entity" | "EntityAndGroup";
|
|
@@ -114463,6 +114696,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
114463
114696
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
114464
114697
|
phase: z.ZodOptional<z.ZodString>;
|
|
114465
114698
|
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
114699
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
114466
114700
|
}, "strip", z.ZodTypeAny, {
|
|
114467
114701
|
companyName?: string | undefined;
|
|
114468
114702
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114471,6 +114705,7 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
114471
114705
|
jobTitle?: string | undefined;
|
|
114472
114706
|
phase?: string | undefined;
|
|
114473
114707
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114708
|
+
designSystemName?: string | undefined;
|
|
114474
114709
|
}, {
|
|
114475
114710
|
companyName?: string | undefined;
|
|
114476
114711
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114479,8 +114714,69 @@ declare const UserOnboarding: z.ZodObject<{
|
|
|
114479
114714
|
jobTitle?: string | undefined;
|
|
114480
114715
|
phase?: string | undefined;
|
|
114481
114716
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114717
|
+
designSystemName?: string | undefined;
|
|
114482
114718
|
}>;
|
|
114483
114719
|
type UserOnboarding = z.infer<typeof UserOnboarding>;
|
|
114720
|
+
declare const UserProfileUpdate: z.ZodObject<Omit<{
|
|
114721
|
+
name: z.ZodOptional<z.ZodString>;
|
|
114722
|
+
avatar: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
114723
|
+
nickname: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
114724
|
+
onboarding: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
114725
|
+
companyName: z.ZodOptional<z.ZodString>;
|
|
114726
|
+
numberOfPeopleInOrg: z.ZodOptional<z.ZodString>;
|
|
114727
|
+
numberOfPeopleInDesignTeam: z.ZodOptional<z.ZodString>;
|
|
114728
|
+
department: z.ZodOptional<z.ZodEnum<["Design", "Engineering", "Product", "Brand", "Other"]>>;
|
|
114729
|
+
jobTitle: z.ZodOptional<z.ZodString>;
|
|
114730
|
+
phase: z.ZodOptional<z.ZodString>;
|
|
114731
|
+
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
114732
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
114733
|
+
}, "strip", z.ZodTypeAny, {
|
|
114734
|
+
companyName?: string | undefined;
|
|
114735
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
114736
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
114737
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
114738
|
+
jobTitle?: string | undefined;
|
|
114739
|
+
phase?: string | undefined;
|
|
114740
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114741
|
+
designSystemName?: string | undefined;
|
|
114742
|
+
}, {
|
|
114743
|
+
companyName?: string | undefined;
|
|
114744
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
114745
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
114746
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
114747
|
+
jobTitle?: string | undefined;
|
|
114748
|
+
phase?: string | undefined;
|
|
114749
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114750
|
+
designSystemName?: string | undefined;
|
|
114751
|
+
}>>>;
|
|
114752
|
+
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
114753
|
+
name?: string | undefined;
|
|
114754
|
+
nickname?: string | undefined;
|
|
114755
|
+
onboarding?: {
|
|
114756
|
+
companyName?: string | undefined;
|
|
114757
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
114758
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
114759
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
114760
|
+
jobTitle?: string | undefined;
|
|
114761
|
+
phase?: string | undefined;
|
|
114762
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114763
|
+
designSystemName?: string | undefined;
|
|
114764
|
+
} | undefined;
|
|
114765
|
+
}, {
|
|
114766
|
+
name?: string | undefined;
|
|
114767
|
+
nickname?: string | undefined;
|
|
114768
|
+
onboarding?: {
|
|
114769
|
+
companyName?: string | undefined;
|
|
114770
|
+
numberOfPeopleInOrg?: string | undefined;
|
|
114771
|
+
numberOfPeopleInDesignTeam?: string | undefined;
|
|
114772
|
+
department?: "Design" | "Engineering" | "Product" | "Brand" | "Other" | undefined;
|
|
114773
|
+
jobTitle?: string | undefined;
|
|
114774
|
+
phase?: string | undefined;
|
|
114775
|
+
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114776
|
+
designSystemName?: string | undefined;
|
|
114777
|
+
} | undefined;
|
|
114778
|
+
}>;
|
|
114779
|
+
type UserProfileUpdate = z.infer<typeof UserProfileUpdate>;
|
|
114484
114780
|
declare const UserProfile: z.ZodObject<{
|
|
114485
114781
|
name: z.ZodString;
|
|
114486
114782
|
avatar: z.ZodOptional<z.ZodString>;
|
|
@@ -114493,6 +114789,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
114493
114789
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
114494
114790
|
phase: z.ZodOptional<z.ZodString>;
|
|
114495
114791
|
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
114792
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
114496
114793
|
}, "strip", z.ZodTypeAny, {
|
|
114497
114794
|
companyName?: string | undefined;
|
|
114498
114795
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114501,6 +114798,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
114501
114798
|
jobTitle?: string | undefined;
|
|
114502
114799
|
phase?: string | undefined;
|
|
114503
114800
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114801
|
+
designSystemName?: string | undefined;
|
|
114504
114802
|
}, {
|
|
114505
114803
|
companyName?: string | undefined;
|
|
114506
114804
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114509,6 +114807,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
114509
114807
|
jobTitle?: string | undefined;
|
|
114510
114808
|
phase?: string | undefined;
|
|
114511
114809
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114810
|
+
designSystemName?: string | undefined;
|
|
114512
114811
|
}>>;
|
|
114513
114812
|
}, "strip", z.ZodTypeAny, {
|
|
114514
114813
|
name: string;
|
|
@@ -114522,6 +114821,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
114522
114821
|
jobTitle?: string | undefined;
|
|
114523
114822
|
phase?: string | undefined;
|
|
114524
114823
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114824
|
+
designSystemName?: string | undefined;
|
|
114525
114825
|
} | undefined;
|
|
114526
114826
|
}, {
|
|
114527
114827
|
name: string;
|
|
@@ -114535,6 +114835,7 @@ declare const UserProfile: z.ZodObject<{
|
|
|
114535
114835
|
jobTitle?: string | undefined;
|
|
114536
114836
|
phase?: string | undefined;
|
|
114537
114837
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114838
|
+
designSystemName?: string | undefined;
|
|
114538
114839
|
} | undefined;
|
|
114539
114840
|
}>;
|
|
114540
114841
|
type UserProfile = z.infer<typeof UserProfile>;
|
|
@@ -114569,6 +114870,7 @@ declare const User: z.ZodObject<{
|
|
|
114569
114870
|
jobTitle: z.ZodOptional<z.ZodString>;
|
|
114570
114871
|
phase: z.ZodOptional<z.ZodString>;
|
|
114571
114872
|
jobLevel: z.ZodOptional<z.ZodEnum<["Executive", "Manager", "IndividualContributor", "Other"]>>;
|
|
114873
|
+
designSystemName: z.ZodOptional<z.ZodString>;
|
|
114572
114874
|
}, "strip", z.ZodTypeAny, {
|
|
114573
114875
|
companyName?: string | undefined;
|
|
114574
114876
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114577,6 +114879,7 @@ declare const User: z.ZodObject<{
|
|
|
114577
114879
|
jobTitle?: string | undefined;
|
|
114578
114880
|
phase?: string | undefined;
|
|
114579
114881
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114882
|
+
designSystemName?: string | undefined;
|
|
114580
114883
|
}, {
|
|
114581
114884
|
companyName?: string | undefined;
|
|
114582
114885
|
numberOfPeopleInOrg?: string | undefined;
|
|
@@ -114585,6 +114888,7 @@ declare const User: z.ZodObject<{
|
|
|
114585
114888
|
jobTitle?: string | undefined;
|
|
114586
114889
|
phase?: string | undefined;
|
|
114587
114890
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114891
|
+
designSystemName?: string | undefined;
|
|
114588
114892
|
}>>;
|
|
114589
114893
|
}, "strip", z.ZodTypeAny, {
|
|
114590
114894
|
name: string;
|
|
@@ -114598,6 +114902,7 @@ declare const User: z.ZodObject<{
|
|
|
114598
114902
|
jobTitle?: string | undefined;
|
|
114599
114903
|
phase?: string | undefined;
|
|
114600
114904
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114905
|
+
designSystemName?: string | undefined;
|
|
114601
114906
|
} | undefined;
|
|
114602
114907
|
}, {
|
|
114603
114908
|
name: string;
|
|
@@ -114611,6 +114916,7 @@ declare const User: z.ZodObject<{
|
|
|
114611
114916
|
jobTitle?: string | undefined;
|
|
114612
114917
|
phase?: string | undefined;
|
|
114613
114918
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
114919
|
+
designSystemName?: string | undefined;
|
|
114614
114920
|
} | undefined;
|
|
114615
114921
|
}>;
|
|
114616
114922
|
linkedIntegrations: z.ZodOptional<z.ZodObject<{
|
|
@@ -114826,6 +115132,7 @@ declare const User: z.ZodObject<{
|
|
|
114826
115132
|
jobTitle?: string | undefined;
|
|
114827
115133
|
phase?: string | undefined;
|
|
114828
115134
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
115135
|
+
designSystemName?: string | undefined;
|
|
114829
115136
|
} | undefined;
|
|
114830
115137
|
};
|
|
114831
115138
|
isProtected: boolean;
|
|
@@ -114890,6 +115197,7 @@ declare const User: z.ZodObject<{
|
|
|
114890
115197
|
jobTitle?: string | undefined;
|
|
114891
115198
|
phase?: string | undefined;
|
|
114892
115199
|
jobLevel?: "Other" | "Executive" | "Manager" | "IndividualContributor" | undefined;
|
|
115200
|
+
designSystemName?: string | undefined;
|
|
114893
115201
|
} | undefined;
|
|
114894
115202
|
};
|
|
114895
115203
|
isProtected: boolean;
|
|
@@ -115147,47 +115455,25 @@ declare const UserInvites: z.ZodArray<z.ZodObject<{
|
|
|
115147
115455
|
}>, "many">;
|
|
115148
115456
|
type UserInvites = z.infer<typeof UserInvites>;
|
|
115149
115457
|
|
|
115150
|
-
declare const
|
|
115151
|
-
|
|
115152
|
-
|
|
115153
|
-
|
|
115154
|
-
|
|
115155
|
-
|
|
115156
|
-
isEnabled:
|
|
115157
|
-
|
|
115158
|
-
|
|
115159
|
-
|
|
115160
|
-
isEnabledForDocs: boolean;
|
|
115161
|
-
}, z.ZodTypeDef, {
|
|
115162
|
-
entries: {
|
|
115163
|
-
name: string;
|
|
115164
|
-
isEnabled: boolean;
|
|
115165
|
-
range: string;
|
|
115166
|
-
}[];
|
|
115167
|
-
isEnabledForCloud: boolean;
|
|
115168
|
-
isEnabledForDocs: boolean;
|
|
115169
|
-
}>>>, {
|
|
115170
|
-
entries: {
|
|
115458
|
+
declare const WorkspaceConfigurationUpdate: z.ZodObject<{
|
|
115459
|
+
id: z.ZodString;
|
|
115460
|
+
ipWhitelist: z.ZodOptional<z.ZodObject<{
|
|
115461
|
+
isEnabledForCloud: z.ZodBoolean;
|
|
115462
|
+
isEnabledForDocs: z.ZodBoolean;
|
|
115463
|
+
entries: z.ZodArray<z.ZodObject<{
|
|
115464
|
+
isEnabled: z.ZodBoolean;
|
|
115465
|
+
name: z.ZodString;
|
|
115466
|
+
range: z.ZodEffects<z.ZodString, string, string>;
|
|
115467
|
+
}, "strip", z.ZodTypeAny, {
|
|
115171
115468
|
name: string;
|
|
115172
115469
|
isEnabled: boolean;
|
|
115173
115470
|
range: string;
|
|
115174
|
-
}
|
|
115175
|
-
isEnabledForCloud: boolean;
|
|
115176
|
-
isEnabledForDocs: boolean;
|
|
115177
|
-
} | undefined, {
|
|
115178
|
-
entries: {
|
|
115471
|
+
}, {
|
|
115179
115472
|
name: string;
|
|
115180
115473
|
isEnabled: boolean;
|
|
115181
115474
|
range: string;
|
|
115182
|
-
}
|
|
115183
|
-
|
|
115184
|
-
isEnabledForDocs: boolean;
|
|
115185
|
-
} | null | undefined>;
|
|
115186
|
-
publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
|
|
115187
|
-
}, "strip", z.ZodTypeAny, {
|
|
115188
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
115189
|
-
workspaceId: string;
|
|
115190
|
-
ipWhitelist?: {
|
|
115475
|
+
}>, "many">;
|
|
115476
|
+
}, "strip", z.ZodTypeAny, {
|
|
115191
115477
|
entries: {
|
|
115192
115478
|
name: string;
|
|
115193
115479
|
isEnabled: boolean;
|
|
@@ -115195,12 +115481,7 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
115195
115481
|
}[];
|
|
115196
115482
|
isEnabledForCloud: boolean;
|
|
115197
115483
|
isEnabledForDocs: boolean;
|
|
115198
|
-
}
|
|
115199
|
-
publicDesignSystem?: boolean | undefined;
|
|
115200
|
-
}, {
|
|
115201
|
-
product: "free" | "team" | "company" | "enterprise";
|
|
115202
|
-
workspaceId: string;
|
|
115203
|
-
ipWhitelist?: {
|
|
115484
|
+
}, {
|
|
115204
115485
|
entries: {
|
|
115205
115486
|
name: string;
|
|
115206
115487
|
isEnabled: boolean;
|
|
@@ -115208,55 +115489,442 @@ declare const WorkspaceContext: z.ZodObject<{
|
|
|
115208
115489
|
}[];
|
|
115209
115490
|
isEnabledForCloud: boolean;
|
|
115210
115491
|
isEnabledForDocs: boolean;
|
|
115211
|
-
}
|
|
115212
|
-
|
|
115213
|
-
|
|
115214
|
-
|
|
115215
|
-
|
|
115216
|
-
|
|
115217
|
-
|
|
115218
|
-
|
|
115219
|
-
|
|
115220
|
-
|
|
115221
|
-
|
|
115222
|
-
|
|
115223
|
-
|
|
115224
|
-
|
|
115225
|
-
|
|
115226
|
-
|
|
115227
|
-
|
|
115228
|
-
|
|
115229
|
-
|
|
115230
|
-
}, {
|
|
115231
|
-
|
|
115232
|
-
|
|
115233
|
-
|
|
115234
|
-
|
|
115235
|
-
|
|
115236
|
-
|
|
115237
|
-
|
|
115238
|
-
|
|
115239
|
-
|
|
115240
|
-
|
|
115241
|
-
|
|
115242
|
-
|
|
115243
|
-
|
|
115244
|
-
|
|
115245
|
-
|
|
115246
|
-
|
|
115247
|
-
|
|
115248
|
-
|
|
115249
|
-
|
|
115250
|
-
|
|
115251
|
-
|
|
115252
|
-
|
|
115253
|
-
|
|
115254
|
-
|
|
115255
|
-
|
|
115256
|
-
|
|
115257
|
-
|
|
115258
|
-
|
|
115259
|
-
|
|
115492
|
+
}>>;
|
|
115493
|
+
sso: z.ZodOptional<z.ZodObject<{
|
|
115494
|
+
providerId: z.ZodString;
|
|
115495
|
+
defaultAutoInviteValue: z.ZodBoolean;
|
|
115496
|
+
autoInviteDomains: z.ZodRecord<z.ZodString, z.ZodBoolean>;
|
|
115497
|
+
skipDocsSupernovaLogin: z.ZodBoolean;
|
|
115498
|
+
areInvitesDisabled: z.ZodBoolean;
|
|
115499
|
+
isTestMode: z.ZodBoolean;
|
|
115500
|
+
emailDomains: z.ZodArray<z.ZodString, "many">;
|
|
115501
|
+
metadataXml: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115502
|
+
}, "strip", z.ZodTypeAny, {
|
|
115503
|
+
providerId: string;
|
|
115504
|
+
defaultAutoInviteValue: boolean;
|
|
115505
|
+
autoInviteDomains: Record<string, boolean>;
|
|
115506
|
+
skipDocsSupernovaLogin: boolean;
|
|
115507
|
+
areInvitesDisabled: boolean;
|
|
115508
|
+
isTestMode: boolean;
|
|
115509
|
+
emailDomains: string[];
|
|
115510
|
+
metadataXml?: string | null | undefined;
|
|
115511
|
+
}, {
|
|
115512
|
+
providerId: string;
|
|
115513
|
+
defaultAutoInviteValue: boolean;
|
|
115514
|
+
autoInviteDomains: Record<string, boolean>;
|
|
115515
|
+
skipDocsSupernovaLogin: boolean;
|
|
115516
|
+
areInvitesDisabled: boolean;
|
|
115517
|
+
isTestMode: boolean;
|
|
115518
|
+
emailDomains: string[];
|
|
115519
|
+
metadataXml?: string | null | undefined;
|
|
115520
|
+
}>>;
|
|
115521
|
+
npmRegistrySettings: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
|
|
115522
|
+
registryType: z.ZodEnum<["NPMJS", "GitHub", "AzureDevOps", "Artifactory", "Custom"]>;
|
|
115523
|
+
enabledScopes: z.ZodArray<z.ZodString, "many">;
|
|
115524
|
+
customRegistryUrl: z.ZodOptional<z.ZodString>;
|
|
115525
|
+
bypassProxy: z.ZodDefault<z.ZodBoolean>;
|
|
115526
|
+
npmProxyRegistryConfigId: z.ZodOptional<z.ZodString>;
|
|
115527
|
+
npmProxyVersion: z.ZodOptional<z.ZodNumber>;
|
|
115528
|
+
}, "strip", z.ZodTypeAny, {
|
|
115529
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
115530
|
+
enabledScopes: string[];
|
|
115531
|
+
bypassProxy: boolean;
|
|
115532
|
+
customRegistryUrl?: string | undefined;
|
|
115533
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
115534
|
+
npmProxyVersion?: number | undefined;
|
|
115535
|
+
}, {
|
|
115536
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
115537
|
+
enabledScopes: string[];
|
|
115538
|
+
customRegistryUrl?: string | undefined;
|
|
115539
|
+
bypassProxy?: boolean | undefined;
|
|
115540
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
115541
|
+
npmProxyVersion?: number | undefined;
|
|
115542
|
+
}>, z.ZodDiscriminatedUnion<"authType", [z.ZodObject<{
|
|
115543
|
+
authType: z.ZodLiteral<"Basic">;
|
|
115544
|
+
username: z.ZodString;
|
|
115545
|
+
password: z.ZodString;
|
|
115546
|
+
}, "strip", z.ZodTypeAny, {
|
|
115547
|
+
authType: "Basic";
|
|
115548
|
+
username: string;
|
|
115549
|
+
password: string;
|
|
115550
|
+
}, {
|
|
115551
|
+
authType: "Basic";
|
|
115552
|
+
username: string;
|
|
115553
|
+
password: string;
|
|
115554
|
+
}>, z.ZodObject<{
|
|
115555
|
+
authType: z.ZodLiteral<"Bearer">;
|
|
115556
|
+
accessToken: z.ZodString;
|
|
115557
|
+
}, "strip", z.ZodTypeAny, {
|
|
115558
|
+
authType: "Bearer";
|
|
115559
|
+
accessToken: string;
|
|
115560
|
+
}, {
|
|
115561
|
+
authType: "Bearer";
|
|
115562
|
+
accessToken: string;
|
|
115563
|
+
}>, z.ZodObject<{
|
|
115564
|
+
authType: z.ZodLiteral<"None">;
|
|
115565
|
+
}, "strip", z.ZodTypeAny, {
|
|
115566
|
+
authType: "None";
|
|
115567
|
+
}, {
|
|
115568
|
+
authType: "None";
|
|
115569
|
+
}>, z.ZodObject<{
|
|
115570
|
+
authType: z.ZodLiteral<"Custom">;
|
|
115571
|
+
authHeaderName: z.ZodString;
|
|
115572
|
+
authHeaderValue: z.ZodString;
|
|
115573
|
+
}, "strip", z.ZodTypeAny, {
|
|
115574
|
+
authType: "Custom";
|
|
115575
|
+
authHeaderName: string;
|
|
115576
|
+
authHeaderValue: string;
|
|
115577
|
+
}, {
|
|
115578
|
+
authType: "Custom";
|
|
115579
|
+
authHeaderName: string;
|
|
115580
|
+
authHeaderValue: string;
|
|
115581
|
+
}>]>>>;
|
|
115582
|
+
profile: z.ZodOptional<z.ZodObject<Omit<{
|
|
115583
|
+
name: z.ZodString;
|
|
115584
|
+
handle: z.ZodString;
|
|
115585
|
+
color: z.ZodString;
|
|
115586
|
+
avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
115587
|
+
billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
115588
|
+
address?: {
|
|
115589
|
+
street1?: string | undefined;
|
|
115590
|
+
street2?: string | undefined;
|
|
115591
|
+
city?: string | undefined;
|
|
115592
|
+
postal?: string | undefined;
|
|
115593
|
+
country?: string | undefined;
|
|
115594
|
+
state?: string | undefined;
|
|
115595
|
+
} | undefined;
|
|
115596
|
+
email?: string | undefined;
|
|
115597
|
+
companyName?: string | undefined;
|
|
115598
|
+
companyId?: string | undefined;
|
|
115599
|
+
notes?: string | undefined;
|
|
115600
|
+
vat?: string | undefined;
|
|
115601
|
+
poNumber?: string | undefined;
|
|
115602
|
+
}, z.ZodTypeDef, {
|
|
115603
|
+
address?: {
|
|
115604
|
+
street1?: string | null | undefined;
|
|
115605
|
+
street2?: string | null | undefined;
|
|
115606
|
+
city?: string | null | undefined;
|
|
115607
|
+
postal?: string | null | undefined;
|
|
115608
|
+
country?: string | null | undefined;
|
|
115609
|
+
state?: string | null | undefined;
|
|
115610
|
+
} | null | undefined;
|
|
115611
|
+
email?: string | null | undefined;
|
|
115612
|
+
companyName?: string | null | undefined;
|
|
115613
|
+
companyId?: string | null | undefined;
|
|
115614
|
+
notes?: string | null | undefined;
|
|
115615
|
+
vat?: string | null | undefined;
|
|
115616
|
+
poNumber?: string | null | undefined;
|
|
115617
|
+
}>>>, {
|
|
115618
|
+
address?: {
|
|
115619
|
+
street1?: string | undefined;
|
|
115620
|
+
street2?: string | undefined;
|
|
115621
|
+
city?: string | undefined;
|
|
115622
|
+
postal?: string | undefined;
|
|
115623
|
+
country?: string | undefined;
|
|
115624
|
+
state?: string | undefined;
|
|
115625
|
+
} | undefined;
|
|
115626
|
+
email?: string | undefined;
|
|
115627
|
+
companyName?: string | undefined;
|
|
115628
|
+
companyId?: string | undefined;
|
|
115629
|
+
notes?: string | undefined;
|
|
115630
|
+
vat?: string | undefined;
|
|
115631
|
+
poNumber?: string | undefined;
|
|
115632
|
+
} | undefined, {
|
|
115633
|
+
address?: {
|
|
115634
|
+
street1?: string | null | undefined;
|
|
115635
|
+
street2?: string | null | undefined;
|
|
115636
|
+
city?: string | null | undefined;
|
|
115637
|
+
postal?: string | null | undefined;
|
|
115638
|
+
country?: string | null | undefined;
|
|
115639
|
+
state?: string | null | undefined;
|
|
115640
|
+
} | null | undefined;
|
|
115641
|
+
email?: string | null | undefined;
|
|
115642
|
+
companyName?: string | null | undefined;
|
|
115643
|
+
companyId?: string | null | undefined;
|
|
115644
|
+
notes?: string | null | undefined;
|
|
115645
|
+
vat?: string | null | undefined;
|
|
115646
|
+
poNumber?: string | null | undefined;
|
|
115647
|
+
} | null | undefined>;
|
|
115648
|
+
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
115649
|
+
name: string;
|
|
115650
|
+
handle: string;
|
|
115651
|
+
color: string;
|
|
115652
|
+
billingDetails?: {
|
|
115653
|
+
address?: {
|
|
115654
|
+
street1?: string | undefined;
|
|
115655
|
+
street2?: string | undefined;
|
|
115656
|
+
city?: string | undefined;
|
|
115657
|
+
postal?: string | undefined;
|
|
115658
|
+
country?: string | undefined;
|
|
115659
|
+
state?: string | undefined;
|
|
115660
|
+
} | undefined;
|
|
115661
|
+
email?: string | undefined;
|
|
115662
|
+
companyName?: string | undefined;
|
|
115663
|
+
companyId?: string | undefined;
|
|
115664
|
+
notes?: string | undefined;
|
|
115665
|
+
vat?: string | undefined;
|
|
115666
|
+
poNumber?: string | undefined;
|
|
115667
|
+
} | undefined;
|
|
115668
|
+
}, {
|
|
115669
|
+
name: string;
|
|
115670
|
+
handle: string;
|
|
115671
|
+
color: string;
|
|
115672
|
+
billingDetails?: {
|
|
115673
|
+
address?: {
|
|
115674
|
+
street1?: string | null | undefined;
|
|
115675
|
+
street2?: string | null | undefined;
|
|
115676
|
+
city?: string | null | undefined;
|
|
115677
|
+
postal?: string | null | undefined;
|
|
115678
|
+
country?: string | null | undefined;
|
|
115679
|
+
state?: string | null | undefined;
|
|
115680
|
+
} | null | undefined;
|
|
115681
|
+
email?: string | null | undefined;
|
|
115682
|
+
companyName?: string | null | undefined;
|
|
115683
|
+
companyId?: string | null | undefined;
|
|
115684
|
+
notes?: string | null | undefined;
|
|
115685
|
+
vat?: string | null | undefined;
|
|
115686
|
+
poNumber?: string | null | undefined;
|
|
115687
|
+
} | null | undefined;
|
|
115688
|
+
}>>;
|
|
115689
|
+
}, "strip", z.ZodTypeAny, {
|
|
115690
|
+
id: string;
|
|
115691
|
+
ipWhitelist?: {
|
|
115692
|
+
entries: {
|
|
115693
|
+
name: string;
|
|
115694
|
+
isEnabled: boolean;
|
|
115695
|
+
range: string;
|
|
115696
|
+
}[];
|
|
115697
|
+
isEnabledForCloud: boolean;
|
|
115698
|
+
isEnabledForDocs: boolean;
|
|
115699
|
+
} | undefined;
|
|
115700
|
+
sso?: {
|
|
115701
|
+
providerId: string;
|
|
115702
|
+
defaultAutoInviteValue: boolean;
|
|
115703
|
+
autoInviteDomains: Record<string, boolean>;
|
|
115704
|
+
skipDocsSupernovaLogin: boolean;
|
|
115705
|
+
areInvitesDisabled: boolean;
|
|
115706
|
+
isTestMode: boolean;
|
|
115707
|
+
emailDomains: string[];
|
|
115708
|
+
metadataXml?: string | null | undefined;
|
|
115709
|
+
} | undefined;
|
|
115710
|
+
npmRegistrySettings?: ({
|
|
115711
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
115712
|
+
enabledScopes: string[];
|
|
115713
|
+
bypassProxy: boolean;
|
|
115714
|
+
customRegistryUrl?: string | undefined;
|
|
115715
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
115716
|
+
npmProxyVersion?: number | undefined;
|
|
115717
|
+
} & ({
|
|
115718
|
+
authType: "Basic";
|
|
115719
|
+
username: string;
|
|
115720
|
+
password: string;
|
|
115721
|
+
} | {
|
|
115722
|
+
authType: "Bearer";
|
|
115723
|
+
accessToken: string;
|
|
115724
|
+
} | {
|
|
115725
|
+
authType: "None";
|
|
115726
|
+
} | {
|
|
115727
|
+
authType: "Custom";
|
|
115728
|
+
authHeaderName: string;
|
|
115729
|
+
authHeaderValue: string;
|
|
115730
|
+
})) | undefined;
|
|
115731
|
+
profile?: {
|
|
115732
|
+
name: string;
|
|
115733
|
+
handle: string;
|
|
115734
|
+
color: string;
|
|
115735
|
+
billingDetails?: {
|
|
115736
|
+
address?: {
|
|
115737
|
+
street1?: string | undefined;
|
|
115738
|
+
street2?: string | undefined;
|
|
115739
|
+
city?: string | undefined;
|
|
115740
|
+
postal?: string | undefined;
|
|
115741
|
+
country?: string | undefined;
|
|
115742
|
+
state?: string | undefined;
|
|
115743
|
+
} | undefined;
|
|
115744
|
+
email?: string | undefined;
|
|
115745
|
+
companyName?: string | undefined;
|
|
115746
|
+
companyId?: string | undefined;
|
|
115747
|
+
notes?: string | undefined;
|
|
115748
|
+
vat?: string | undefined;
|
|
115749
|
+
poNumber?: string | undefined;
|
|
115750
|
+
} | undefined;
|
|
115751
|
+
} | undefined;
|
|
115752
|
+
}, {
|
|
115753
|
+
id: string;
|
|
115754
|
+
ipWhitelist?: {
|
|
115755
|
+
entries: {
|
|
115756
|
+
name: string;
|
|
115757
|
+
isEnabled: boolean;
|
|
115758
|
+
range: string;
|
|
115759
|
+
}[];
|
|
115760
|
+
isEnabledForCloud: boolean;
|
|
115761
|
+
isEnabledForDocs: boolean;
|
|
115762
|
+
} | undefined;
|
|
115763
|
+
sso?: {
|
|
115764
|
+
providerId: string;
|
|
115765
|
+
defaultAutoInviteValue: boolean;
|
|
115766
|
+
autoInviteDomains: Record<string, boolean>;
|
|
115767
|
+
skipDocsSupernovaLogin: boolean;
|
|
115768
|
+
areInvitesDisabled: boolean;
|
|
115769
|
+
isTestMode: boolean;
|
|
115770
|
+
emailDomains: string[];
|
|
115771
|
+
metadataXml?: string | null | undefined;
|
|
115772
|
+
} | undefined;
|
|
115773
|
+
npmRegistrySettings?: ({
|
|
115774
|
+
registryType: "Custom" | "NPMJS" | "GitHub" | "AzureDevOps" | "Artifactory";
|
|
115775
|
+
enabledScopes: string[];
|
|
115776
|
+
customRegistryUrl?: string | undefined;
|
|
115777
|
+
bypassProxy?: boolean | undefined;
|
|
115778
|
+
npmProxyRegistryConfigId?: string | undefined;
|
|
115779
|
+
npmProxyVersion?: number | undefined;
|
|
115780
|
+
} & ({
|
|
115781
|
+
authType: "Basic";
|
|
115782
|
+
username: string;
|
|
115783
|
+
password: string;
|
|
115784
|
+
} | {
|
|
115785
|
+
authType: "Bearer";
|
|
115786
|
+
accessToken: string;
|
|
115787
|
+
} | {
|
|
115788
|
+
authType: "None";
|
|
115789
|
+
} | {
|
|
115790
|
+
authType: "Custom";
|
|
115791
|
+
authHeaderName: string;
|
|
115792
|
+
authHeaderValue: string;
|
|
115793
|
+
})) | undefined;
|
|
115794
|
+
profile?: {
|
|
115795
|
+
name: string;
|
|
115796
|
+
handle: string;
|
|
115797
|
+
color: string;
|
|
115798
|
+
billingDetails?: {
|
|
115799
|
+
address?: {
|
|
115800
|
+
street1?: string | null | undefined;
|
|
115801
|
+
street2?: string | null | undefined;
|
|
115802
|
+
city?: string | null | undefined;
|
|
115803
|
+
postal?: string | null | undefined;
|
|
115804
|
+
country?: string | null | undefined;
|
|
115805
|
+
state?: string | null | undefined;
|
|
115806
|
+
} | null | undefined;
|
|
115807
|
+
email?: string | null | undefined;
|
|
115808
|
+
companyName?: string | null | undefined;
|
|
115809
|
+
companyId?: string | null | undefined;
|
|
115810
|
+
notes?: string | null | undefined;
|
|
115811
|
+
vat?: string | null | undefined;
|
|
115812
|
+
poNumber?: string | null | undefined;
|
|
115813
|
+
} | null | undefined;
|
|
115814
|
+
} | undefined;
|
|
115815
|
+
}>;
|
|
115816
|
+
type WorkspaceConfigurationUpdate = z.infer<typeof WorkspaceConfigurationUpdate>;
|
|
115817
|
+
|
|
115818
|
+
declare const WorkspaceContext: z.ZodObject<{
|
|
115819
|
+
workspaceId: z.ZodString;
|
|
115820
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
115821
|
+
ipWhitelist: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
115822
|
+
entries: {
|
|
115823
|
+
name: string;
|
|
115824
|
+
isEnabled: boolean;
|
|
115825
|
+
range: string;
|
|
115826
|
+
}[];
|
|
115827
|
+
isEnabledForCloud: boolean;
|
|
115828
|
+
isEnabledForDocs: boolean;
|
|
115829
|
+
}, z.ZodTypeDef, {
|
|
115830
|
+
entries: {
|
|
115831
|
+
name: string;
|
|
115832
|
+
isEnabled: boolean;
|
|
115833
|
+
range: string;
|
|
115834
|
+
}[];
|
|
115835
|
+
isEnabledForCloud: boolean;
|
|
115836
|
+
isEnabledForDocs: boolean;
|
|
115837
|
+
}>>>, {
|
|
115838
|
+
entries: {
|
|
115839
|
+
name: string;
|
|
115840
|
+
isEnabled: boolean;
|
|
115841
|
+
range: string;
|
|
115842
|
+
}[];
|
|
115843
|
+
isEnabledForCloud: boolean;
|
|
115844
|
+
isEnabledForDocs: boolean;
|
|
115845
|
+
} | undefined, {
|
|
115846
|
+
entries: {
|
|
115847
|
+
name: string;
|
|
115848
|
+
isEnabled: boolean;
|
|
115849
|
+
range: string;
|
|
115850
|
+
}[];
|
|
115851
|
+
isEnabledForCloud: boolean;
|
|
115852
|
+
isEnabledForDocs: boolean;
|
|
115853
|
+
} | null | undefined>;
|
|
115854
|
+
publicDesignSystem: z.ZodOptional<z.ZodBoolean>;
|
|
115855
|
+
}, "strip", z.ZodTypeAny, {
|
|
115856
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
115857
|
+
workspaceId: string;
|
|
115858
|
+
ipWhitelist?: {
|
|
115859
|
+
entries: {
|
|
115860
|
+
name: string;
|
|
115861
|
+
isEnabled: boolean;
|
|
115862
|
+
range: string;
|
|
115863
|
+
}[];
|
|
115864
|
+
isEnabledForCloud: boolean;
|
|
115865
|
+
isEnabledForDocs: boolean;
|
|
115866
|
+
} | undefined;
|
|
115867
|
+
publicDesignSystem?: boolean | undefined;
|
|
115868
|
+
}, {
|
|
115869
|
+
product: "free" | "team" | "company" | "enterprise";
|
|
115870
|
+
workspaceId: string;
|
|
115871
|
+
ipWhitelist?: {
|
|
115872
|
+
entries: {
|
|
115873
|
+
name: string;
|
|
115874
|
+
isEnabled: boolean;
|
|
115875
|
+
range: string;
|
|
115876
|
+
}[];
|
|
115877
|
+
isEnabledForCloud: boolean;
|
|
115878
|
+
isEnabledForDocs: boolean;
|
|
115879
|
+
} | null | undefined;
|
|
115880
|
+
publicDesignSystem?: boolean | undefined;
|
|
115881
|
+
}>;
|
|
115882
|
+
type WorkspaceContext = z.infer<typeof WorkspaceContext>;
|
|
115883
|
+
|
|
115884
|
+
declare const HANDLE_MIN_LENGTH = 2;
|
|
115885
|
+
declare const HANDLE_MAX_LENGTH = 64;
|
|
115886
|
+
declare const CreateWorkspaceInput: z.ZodObject<{
|
|
115887
|
+
name: z.ZodString;
|
|
115888
|
+
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
115889
|
+
priceId: z.ZodString;
|
|
115890
|
+
billingEmail: z.ZodOptional<z.ZodString>;
|
|
115891
|
+
handle: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
115892
|
+
invites: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
115893
|
+
email: z.ZodEffects<z.ZodString, string, string>;
|
|
115894
|
+
role: z.ZodEnum<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
|
|
115895
|
+
}, "strip", z.ZodTypeAny, {
|
|
115896
|
+
email: string;
|
|
115897
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
115898
|
+
}, {
|
|
115899
|
+
email: string;
|
|
115900
|
+
role: "Owner" | "Admin" | "Creator" | "Viewer" | "Billing" | "Guest";
|
|
115901
|
+
}>, "many">>;
|
|
115902
|
+
promoCode: z.ZodOptional<z.ZodString>;
|
|
115903
|
+
status: z.ZodOptional<z.ZodEnum<["active", "suspended", "gracePeriod", "cancelled", "downgraded_to_free"]>>;
|
|
115904
|
+
planInterval: z.ZodOptional<z.ZodEnum<["daily", "monthly", "weekly", "yearly"]>>;
|
|
115905
|
+
seats: z.ZodOptional<z.ZodNumber>;
|
|
115906
|
+
seatLimit: z.ZodOptional<z.ZodNumber>;
|
|
115907
|
+
card: z.ZodOptional<z.ZodObject<{
|
|
115908
|
+
cardId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115909
|
+
last4: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115910
|
+
expiryMonth: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115911
|
+
expiryYear: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115912
|
+
brand: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115913
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
115914
|
+
}, "strip", z.ZodTypeAny, {
|
|
115915
|
+
cardId?: string | null | undefined;
|
|
115916
|
+
last4?: string | null | undefined;
|
|
115917
|
+
expiryMonth?: string | null | undefined;
|
|
115918
|
+
expiryYear?: string | null | undefined;
|
|
115919
|
+
brand?: string | null | undefined;
|
|
115920
|
+
name?: string | null | undefined;
|
|
115921
|
+
}, {
|
|
115922
|
+
cardId?: string | null | undefined;
|
|
115923
|
+
last4?: string | null | undefined;
|
|
115924
|
+
expiryMonth?: string | null | undefined;
|
|
115925
|
+
expiryYear?: string | null | undefined;
|
|
115926
|
+
brand?: string | null | undefined;
|
|
115927
|
+
name?: string | null | undefined;
|
|
115260
115928
|
}>>;
|
|
115261
115929
|
sso: z.ZodOptional<z.ZodObject<{
|
|
115262
115930
|
providerId: z.ZodString;
|
|
@@ -115608,6 +116276,114 @@ declare const WorkspaceRoleSchema: z.ZodEnum<["Owner", "Admin", "Creator", "View
|
|
|
115608
116276
|
type WorkspaceRole = z.infer<typeof WorkspaceRoleSchema>;
|
|
115609
116277
|
declare const WorkspaceRole: z.Values<["Owner", "Admin", "Creator", "Viewer", "Billing", "Guest"]>;
|
|
115610
116278
|
|
|
116279
|
+
declare const WorkspaceProfileUpdate: z.ZodObject<Omit<{
|
|
116280
|
+
name: z.ZodString;
|
|
116281
|
+
handle: z.ZodString;
|
|
116282
|
+
color: z.ZodString;
|
|
116283
|
+
avatar: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>;
|
|
116284
|
+
billingDetails: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
|
|
116285
|
+
address?: {
|
|
116286
|
+
street1?: string | undefined;
|
|
116287
|
+
street2?: string | undefined;
|
|
116288
|
+
city?: string | undefined;
|
|
116289
|
+
postal?: string | undefined;
|
|
116290
|
+
country?: string | undefined;
|
|
116291
|
+
state?: string | undefined;
|
|
116292
|
+
} | undefined;
|
|
116293
|
+
email?: string | undefined;
|
|
116294
|
+
companyName?: string | undefined;
|
|
116295
|
+
companyId?: string | undefined;
|
|
116296
|
+
notes?: string | undefined;
|
|
116297
|
+
vat?: string | undefined;
|
|
116298
|
+
poNumber?: string | undefined;
|
|
116299
|
+
}, z.ZodTypeDef, {
|
|
116300
|
+
address?: {
|
|
116301
|
+
street1?: string | null | undefined;
|
|
116302
|
+
street2?: string | null | undefined;
|
|
116303
|
+
city?: string | null | undefined;
|
|
116304
|
+
postal?: string | null | undefined;
|
|
116305
|
+
country?: string | null | undefined;
|
|
116306
|
+
state?: string | null | undefined;
|
|
116307
|
+
} | null | undefined;
|
|
116308
|
+
email?: string | null | undefined;
|
|
116309
|
+
companyName?: string | null | undefined;
|
|
116310
|
+
companyId?: string | null | undefined;
|
|
116311
|
+
notes?: string | null | undefined;
|
|
116312
|
+
vat?: string | null | undefined;
|
|
116313
|
+
poNumber?: string | null | undefined;
|
|
116314
|
+
}>>>, {
|
|
116315
|
+
address?: {
|
|
116316
|
+
street1?: string | undefined;
|
|
116317
|
+
street2?: string | undefined;
|
|
116318
|
+
city?: string | undefined;
|
|
116319
|
+
postal?: string | undefined;
|
|
116320
|
+
country?: string | undefined;
|
|
116321
|
+
state?: string | undefined;
|
|
116322
|
+
} | undefined;
|
|
116323
|
+
email?: string | undefined;
|
|
116324
|
+
companyName?: string | undefined;
|
|
116325
|
+
companyId?: string | undefined;
|
|
116326
|
+
notes?: string | undefined;
|
|
116327
|
+
vat?: string | undefined;
|
|
116328
|
+
poNumber?: string | undefined;
|
|
116329
|
+
} | undefined, {
|
|
116330
|
+
address?: {
|
|
116331
|
+
street1?: string | null | undefined;
|
|
116332
|
+
street2?: string | null | undefined;
|
|
116333
|
+
city?: string | null | undefined;
|
|
116334
|
+
postal?: string | null | undefined;
|
|
116335
|
+
country?: string | null | undefined;
|
|
116336
|
+
state?: string | null | undefined;
|
|
116337
|
+
} | null | undefined;
|
|
116338
|
+
email?: string | null | undefined;
|
|
116339
|
+
companyName?: string | null | undefined;
|
|
116340
|
+
companyId?: string | null | undefined;
|
|
116341
|
+
notes?: string | null | undefined;
|
|
116342
|
+
vat?: string | null | undefined;
|
|
116343
|
+
poNumber?: string | null | undefined;
|
|
116344
|
+
} | null | undefined>;
|
|
116345
|
+
}, "avatar">, "strip", z.ZodTypeAny, {
|
|
116346
|
+
name: string;
|
|
116347
|
+
handle: string;
|
|
116348
|
+
color: string;
|
|
116349
|
+
billingDetails?: {
|
|
116350
|
+
address?: {
|
|
116351
|
+
street1?: string | undefined;
|
|
116352
|
+
street2?: string | undefined;
|
|
116353
|
+
city?: string | undefined;
|
|
116354
|
+
postal?: string | undefined;
|
|
116355
|
+
country?: string | undefined;
|
|
116356
|
+
state?: string | undefined;
|
|
116357
|
+
} | undefined;
|
|
116358
|
+
email?: string | undefined;
|
|
116359
|
+
companyName?: string | undefined;
|
|
116360
|
+
companyId?: string | undefined;
|
|
116361
|
+
notes?: string | undefined;
|
|
116362
|
+
vat?: string | undefined;
|
|
116363
|
+
poNumber?: string | undefined;
|
|
116364
|
+
} | undefined;
|
|
116365
|
+
}, {
|
|
116366
|
+
name: string;
|
|
116367
|
+
handle: string;
|
|
116368
|
+
color: string;
|
|
116369
|
+
billingDetails?: {
|
|
116370
|
+
address?: {
|
|
116371
|
+
street1?: string | null | undefined;
|
|
116372
|
+
street2?: string | null | undefined;
|
|
116373
|
+
city?: string | null | undefined;
|
|
116374
|
+
postal?: string | null | undefined;
|
|
116375
|
+
country?: string | null | undefined;
|
|
116376
|
+
state?: string | null | undefined;
|
|
116377
|
+
} | null | undefined;
|
|
116378
|
+
email?: string | null | undefined;
|
|
116379
|
+
companyName?: string | null | undefined;
|
|
116380
|
+
companyId?: string | null | undefined;
|
|
116381
|
+
notes?: string | null | undefined;
|
|
116382
|
+
vat?: string | null | undefined;
|
|
116383
|
+
poNumber?: string | null | undefined;
|
|
116384
|
+
} | null | undefined;
|
|
116385
|
+
}>;
|
|
116386
|
+
type WorkspaceProfileUpdate = z.infer<typeof WorkspaceProfileUpdate>;
|
|
115611
116387
|
declare const WorkspaceIpWhitelistEntry: z.ZodObject<{
|
|
115612
116388
|
isEnabled: z.ZodBoolean;
|
|
115613
116389
|
name: z.ZodString;
|
|
@@ -116789,9 +117565,9 @@ declare const Workspace: z.ZodObject<{
|
|
|
116789
117565
|
}, "strip", z.ZodTypeAny, {
|
|
116790
117566
|
id: string;
|
|
116791
117567
|
createdAt: Date;
|
|
116792
|
-
name: string;
|
|
116793
117568
|
updatedAt: Date;
|
|
116794
117569
|
description: string;
|
|
117570
|
+
name: string;
|
|
116795
117571
|
workspaceId: string;
|
|
116796
117572
|
docSlug: string;
|
|
116797
117573
|
docSlugDeprecated: string;
|
|
@@ -116808,9 +117584,9 @@ declare const Workspace: z.ZodObject<{
|
|
|
116808
117584
|
}, {
|
|
116809
117585
|
id: string;
|
|
116810
117586
|
createdAt: Date;
|
|
116811
|
-
name: string;
|
|
116812
117587
|
updatedAt: Date;
|
|
116813
117588
|
description: string;
|
|
117589
|
+
name: string;
|
|
116814
117590
|
workspaceId: string;
|
|
116815
117591
|
docSlug: string;
|
|
116816
117592
|
docSlugDeprecated: string;
|
|
@@ -117020,9 +117796,9 @@ declare const Workspace: z.ZodObject<{
|
|
|
117020
117796
|
designSystems?: {
|
|
117021
117797
|
id: string;
|
|
117022
117798
|
createdAt: Date;
|
|
117023
|
-
name: string;
|
|
117024
117799
|
updatedAt: Date;
|
|
117025
117800
|
description: string;
|
|
117801
|
+
name: string;
|
|
117026
117802
|
workspaceId: string;
|
|
117027
117803
|
docSlug: string;
|
|
117028
117804
|
docSlugDeprecated: string;
|
|
@@ -117232,9 +118008,9 @@ declare const Workspace: z.ZodObject<{
|
|
|
117232
118008
|
designSystems?: {
|
|
117233
118009
|
id: string;
|
|
117234
118010
|
createdAt: Date;
|
|
117235
|
-
name: string;
|
|
117236
118011
|
updatedAt: Date;
|
|
117237
118012
|
description: string;
|
|
118013
|
+
name: string;
|
|
117238
118014
|
workspaceId: string;
|
|
117239
118015
|
docSlug: string;
|
|
117240
118016
|
docSlugDeprecated: string;
|
|
@@ -118275,9 +119051,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118275
119051
|
}, "strip", z.ZodTypeAny, {
|
|
118276
119052
|
id: string;
|
|
118277
119053
|
createdAt: Date;
|
|
118278
|
-
name: string;
|
|
118279
119054
|
updatedAt: Date;
|
|
118280
119055
|
description: string;
|
|
119056
|
+
name: string;
|
|
118281
119057
|
workspaceId: string;
|
|
118282
119058
|
docSlug: string;
|
|
118283
119059
|
docSlugDeprecated: string;
|
|
@@ -118294,9 +119070,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118294
119070
|
}, {
|
|
118295
119071
|
id: string;
|
|
118296
119072
|
createdAt: Date;
|
|
118297
|
-
name: string;
|
|
118298
119073
|
updatedAt: Date;
|
|
118299
119074
|
description: string;
|
|
119075
|
+
name: string;
|
|
118300
119076
|
workspaceId: string;
|
|
118301
119077
|
docSlug: string;
|
|
118302
119078
|
docSlugDeprecated: string;
|
|
@@ -118506,9 +119282,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118506
119282
|
designSystems?: {
|
|
118507
119283
|
id: string;
|
|
118508
119284
|
createdAt: Date;
|
|
118509
|
-
name: string;
|
|
118510
119285
|
updatedAt: Date;
|
|
118511
119286
|
description: string;
|
|
119287
|
+
name: string;
|
|
118512
119288
|
workspaceId: string;
|
|
118513
119289
|
docSlug: string;
|
|
118514
119290
|
docSlugDeprecated: string;
|
|
@@ -118718,9 +119494,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118718
119494
|
designSystems?: {
|
|
118719
119495
|
id: string;
|
|
118720
119496
|
createdAt: Date;
|
|
118721
|
-
name: string;
|
|
118722
119497
|
updatedAt: Date;
|
|
118723
119498
|
description: string;
|
|
119499
|
+
name: string;
|
|
118724
119500
|
workspaceId: string;
|
|
118725
119501
|
docSlug: string;
|
|
118726
119502
|
docSlugDeprecated: string;
|
|
@@ -118767,9 +119543,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118767
119543
|
}, "strip", z.ZodTypeAny, {
|
|
118768
119544
|
id: string;
|
|
118769
119545
|
createdAt: Date;
|
|
118770
|
-
name: string;
|
|
118771
119546
|
updatedAt: Date;
|
|
118772
119547
|
description: string;
|
|
119548
|
+
name: string;
|
|
118773
119549
|
workspaceId: string;
|
|
118774
119550
|
docSlug: string;
|
|
118775
119551
|
docSlugDeprecated: string;
|
|
@@ -118786,9 +119562,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118786
119562
|
}, {
|
|
118787
119563
|
id: string;
|
|
118788
119564
|
createdAt: Date;
|
|
118789
|
-
name: string;
|
|
118790
119565
|
updatedAt: Date;
|
|
118791
119566
|
description: string;
|
|
119567
|
+
name: string;
|
|
118792
119568
|
workspaceId: string;
|
|
118793
119569
|
docSlug: string;
|
|
118794
119570
|
docSlugDeprecated: string;
|
|
@@ -118807,9 +119583,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
118807
119583
|
designSystems: {
|
|
118808
119584
|
id: string;
|
|
118809
119585
|
createdAt: Date;
|
|
118810
|
-
name: string;
|
|
118811
119586
|
updatedAt: Date;
|
|
118812
119587
|
description: string;
|
|
119588
|
+
name: string;
|
|
118813
119589
|
workspaceId: string;
|
|
118814
119590
|
docSlug: string;
|
|
118815
119591
|
docSlugDeprecated: string;
|
|
@@ -119019,9 +119795,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119019
119795
|
designSystems?: {
|
|
119020
119796
|
id: string;
|
|
119021
119797
|
createdAt: Date;
|
|
119022
|
-
name: string;
|
|
119023
119798
|
updatedAt: Date;
|
|
119024
119799
|
description: string;
|
|
119800
|
+
name: string;
|
|
119025
119801
|
workspaceId: string;
|
|
119026
119802
|
docSlug: string;
|
|
119027
119803
|
docSlugDeprecated: string;
|
|
@@ -119041,9 +119817,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119041
119817
|
designSystems: {
|
|
119042
119818
|
id: string;
|
|
119043
119819
|
createdAt: Date;
|
|
119044
|
-
name: string;
|
|
119045
119820
|
updatedAt: Date;
|
|
119046
119821
|
description: string;
|
|
119822
|
+
name: string;
|
|
119047
119823
|
workspaceId: string;
|
|
119048
119824
|
docSlug: string;
|
|
119049
119825
|
docSlugDeprecated: string;
|
|
@@ -119253,9 +120029,9 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119253
120029
|
designSystems?: {
|
|
119254
120030
|
id: string;
|
|
119255
120031
|
createdAt: Date;
|
|
119256
|
-
name: string;
|
|
119257
120032
|
updatedAt: Date;
|
|
119258
120033
|
description: string;
|
|
120034
|
+
name: string;
|
|
119259
120035
|
workspaceId: string;
|
|
119260
120036
|
docSlug: string;
|
|
119261
120037
|
docSlugDeprecated: string;
|
|
@@ -119274,4 +120050,4 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
119274
120050
|
}>;
|
|
119275
120051
|
type WorkspaceWithDesignSystems = z.infer<typeof WorkspaceWithDesignSystems>;
|
|
119276
120052
|
|
|
119277
|
-
export { Address, type AllFields, type ArrayElementType, Asset, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitProvider, GitProviderNames, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|
|
120053
|
+
export { Address, type AllFields, type ArrayElementType, Asset, AssetDeleteSchedule, type AssetDeleteScheduleDbInput, AssetDeleteScheduleStatus, AssetDynamoRecord, AssetFontProperties, type AssetImportModel, AssetImportModelInput, AssetOrigin, AssetProcessStatus, AssetProperties, AssetReference, type AssetReferenceDiff, AssetScope, AssetType, AssetValue, AuthTokens, BillingDetails, type BillingInterval, BillingIntervalSchema, BillingType, BillingTypeSchema, BlurTokenData, BlurType, BlurValue, BorderPosition, BorderRadiusTokenData, BorderRadiusUnit, BorderRadiusValue, BorderStyle, BorderTokenData, BorderValue, BorderWidthTokenData, BorderWidthUnit, BorderWidthValue, Brand, BrandedElementGroup, type Card, CardSchema, ChangedImportedFigmaSourceData, ColorTokenData, ColorTokenInlineData, ColorValue, Component, ComponentAsset, type ComponentDiff, ComponentElementData, ComponentImportModel, ComponentImportModelInput, ComponentOrigin, ComponentOriginPart, ContentLoadInstruction, ContentLoaderPayload, type CreateAssetReference, type CreateBrand, type CreateComponent, type CreateDataSource, type CreateDesignElement, type CreateDesignElementReference, type CreateDesignSystemVersion, type CreateDesignSystemVersionRoom, CreateDesignToken, type CreateDocumentationPageContent, type CreateDocumentationPageRoom, type CreateDocumentationPageV1, type CreateDocumentationPageV2, type CreateElementGroup, type CreateElementPropertyDefinition, type CreateElementPropertyValue, type CreateElementView, type CreateElementViewColumn, type CreateExportJob, type CreateExporterMembership, type CreateFigmaFileStructure, type CreateFigmaNodeReference, type CreateImportJob, type CreatePersonalAccessToken, type CreatePublishedDocPage, type CreateTheme, CreateUserInput, CreateWorkspaceInput, type CreateWorkspaceRoom, CustomDomain, type CustomDomainState, Customer, type DataSource, DataSourceAutoImportMode, DataSourceFigmaFileData, DataSourceFigmaFileVersionData, DataSourceFigmaImportMetadata, DataSourceFigmaRemote, DataSourceFigmaScope, DataSourceFigmaState, DataSourceImportModel, DataSourceRemote, DataSourceRemoteType, DataSourceStats, DataSourceTokenStudioRemote, DataSourceUploadImportMetadata, DataSourceUploadRemote, DataSourceUploadRemoteSource, DataSourceVersion, type DbCreateInputOmit, type DbUpdate, type DbUpdateInputOmit, DesignElement, DesignElementBase, DesignElementBrandedPart, DesignElementCategory, DesignElementGroupableBase, DesignElementGroupablePart, DesignElementGroupableRequiredPart, DesignElementImportedBase, DesignElementOrigin, type DesignElementOriginImportModel, type DesignElementReference, DesignElementSlugPart, DesignElementType, DesignSystem, DesignSystemCreateInput, DesignSystemElementExportProps, DesignSystemSwitcher, DesignSystemUpdateInput, DesignSystemVersion, DesignSystemVersionRoom, DesignSystemVersionRoomInitialState, DesignSystemVersionRoomInternalSettings, DesignSystemVersionRoomUpdate, DesignSystemWithWorkspace, DesignToken, DesignTokenBase, DesignTokenImportModel, DesignTokenImportModelBase, DesignTokenImportModelInput, DesignTokenImportModelInputBase, type DesignTokenImportModelInputOfType, type DesignTokenImportModelOfType, type DesignTokenOfType, DesignTokenOrigin, DesignTokenOriginPart, DesignTokenType, DesignTokenTypedData, type DesignTokenTypedDataOfType, type DesignTokensDiff, DimensionTokenData, DimensionUnit, DimensionValue, DocumentationComment, DocumentationCommentThread, DocumentationGroupBehavior, DocumentationGroupV1, DocumentationItemConfigurationV1, DocumentationItemConfigurationV2, DocumentationItemHeaderAlignment, DocumentationItemHeaderAlignmentSchema, DocumentationItemHeaderImageScaleType, DocumentationItemHeaderImageScaleTypeSchema, DocumentationItemHeaderV1, DocumentationItemHeaderV2, DocumentationLinkPreview, DocumentationPage, DocumentationPageAnchor, DocumentationPageContent, DocumentationPageContentBackup, DocumentationPageContentData, DocumentationPageContentItem, DocumentationPageDataV1, DocumentationPageDataV2, DocumentationPageGroup, DocumentationPageRoom, DocumentationPageRoomInitialStateUpdate, DocumentationPageRoomRoomUpdate, DocumentationPageRoomState, DocumentationPageV1, DocumentationPageV2, DurationTokenData, DurationUnit, DurationValue, ElementGroup, ElementGroupDataV1, ElementGroupDataV2, type ElementGroupsDiff, ElementPropertyDefinition, type ElementPropertyDefinitionDiff, ElementPropertyDefinitionOption, ElementPropertyLinkType, type ElementPropertyReference, ElementPropertyTargetType, ElementPropertyType, ElementPropertyTypeSchema, ElementPropertyValue, type ElementPropertyValueDiff, ElementView, ElementViewBaseColumnType, ElementViewBasePropertyColumn, ElementViewColumn, ElementViewColumnSharedAttributes, ElementViewColumnType, ElementViewPropertyDefinitionColumn, ElementViewThemeColumn, Entity, type ExplicitPartial, ExportDestinationsMap, ExportJob, ExportJobContext, ExportJobDestinationType, ExportJobDocsDestinationResult, ExportJobDocumentationContext, ExportJobFindByFilter, ExportJobLogEntry, ExportJobLogEntryType, ExportJobPullRequestDestinationResult, ExportJobResult, ExportJobS3DestinationResult, ExportJobStatus, Exporter, ExporterDestinationAzure, ExporterDestinationBitbucket, ExporterDestinationDocs, ExporterDestinationGithub, ExporterDestinationGitlab, ExporterDestinationS3, ExporterDetails, ExporterFunctionPayload, ExporterPropertyImageValue, ExporterPropertyValue, ExporterPropertyValuesCollection, ExporterSchedule, ExporterScheduleEventType, ExporterSource, ExporterTag, ExporterType, ExporterWorkspaceMembership, ExporterWorkspaceMembershipRole, type ExtendedIntegration, ExtendedIntegrationType, ExternalOAuthRequest, ExternalServiceType, FeatureFlag, FeatureFlagMap, type FeatureLimitedDetails, type FeatureToggleDetails, type FeatureWithImportJobsDetails, FeaturesSummary, FigmaFileAccessData, FigmaFileDownloadScope, FigmaFileStructure, FigmaFileStructureData, type FigmaFileStructureDiff, FigmaFileStructureElementData, FigmaFileStructureImportModel, FigmaFileStructureImportModelInput, FigmaFileStructureNode, FigmaFileStructureNodeBase, FigmaFileStructureNodeImportModel, FigmaFileStructureNodeType, FigmaFileStructureOrigin, FigmaFileStructureStatistics, FigmaImportBaseContext, FigmaImportContextWithDownloadScopes, FigmaImportContextWithSourcesState, FigmaNodeReference, FigmaNodeReferenceData, type FigmaNodeReferenceDiff, FigmaNodeReferenceElementData, FigmaNodeReferenceOrigin, FigmaPngRenderImportModel, FigmaRenderBase, FigmaRenderFormat, FigmaRenderImportModel, FigmaSvgRenderImportModel, FileStructureStats, FlaggedFeature, FontFamilyTokenData, FontFamilyValue, FontSizeTokenData, FontSizeUnit, FontSizeValue, FontWeightTokenData, FontWeightValue, GitBranch, GitOrganization, GitProject, GitProvider, GitProviderNames, GitRepository, GradientLayerData, GradientLayerValue, GradientStop, GradientTokenData, GradientTokenValue, GradientType, HANDLE_MAX_LENGTH, HANDLE_MIN_LENGTH, HierarchicalElements, ImageImportModel, ImageImportModelType, ImportFunctionInput, ImportJob, ImportJobOperation, ImportJobState, ImportModelBase, ImportModelCollection, ImportModelInputBase, ImportModelInputCollection, ImportWarning, ImportWarningType, type ImportedAsset, type ImportedComponent, type ImportedDesignToken, type ImportedDesignTokenOfType, ImportedFigmaSourceData, Integration, IntegrationAuthType, IntegrationCredentials, IntegrationCredentialsProfile, IntegrationCredentialsType, IntegrationDesignSystem, IntegrationToken, type IntegrationTokenOld, IntegrationTokenSchemaOld, IntegrationType, IntegrationUserInfo, InternalStatus, InternalStatusSchema, type Invoice, type InvoiceCoupon, InvoiceCouponSchema, type InvoiceLine, InvoiceLineSchema, InvoiceSchema, LetterSpacingTokenData, LetterSpacingUnit, LetterSpacingValue, LineHeightTokenData, LineHeightUnit, LineHeightValue, LiveblocksNotificationSettings, MAX_MEMBERS_COUNT, NpmPackage, NpmProxyToken, NpmProxyTokenPayload, NpmRegistrCustomAuthConfig, NpmRegistryAuthConfig, NpmRegistryAuthType, NpmRegistryBasicAuthConfig, NpmRegistryBearerAuthConfig, NpmRegistryConfig, NpmRegistryNoAuthConfig, NpmRegistryType, type Nullish, OAuthProvider, OAuthProviderNames, OAuthProviderSchema, ObjectMeta, type OmitStrict, OpacityTokenData, OpacityValue, type Optional, type OptionalToNullable, PageBlockAlignment, PageBlockAppearanceV2, PageBlockAsset, PageBlockAssetComponent, PageBlockAssetEntityMeta, PageBlockAssetType, PageBlockBaseV1, PageBlockBehaviorDataType, PageBlockBehaviorSelectionType, PageBlockCalloutType, PageBlockCategory, PageBlockCodeLanguage, PageBlockColorV2, PageBlockCustomBlockPropertyImageValue, PageBlockCustomBlockPropertyValue, PageBlockDataV2, PageBlockDefinition, PageBlockDefinitionAppearance, PageBlockDefinitionBehavior, PageBlockDefinitionBooleanOptions, PageBlockDefinitionBooleanPropertyStyle, PageBlockDefinitionComponentOptions, PageBlockDefinitionImageAspectRatio, PageBlockDefinitionImageOptions, PageBlockDefinitionImageWidth, PageBlockDefinitionItem, PageBlockDefinitionLayout, PageBlockDefinitionLayoutAlign, PageBlockDefinitionLayoutBase, PageBlockDefinitionLayoutGap, PageBlockDefinitionLayoutResizing, PageBlockDefinitionLayoutType, PageBlockDefinitionMultiRichTextPropertyStyle, PageBlockDefinitionMultiSelectPropertyStyle, PageBlockDefinitionMutiRichTextOptions, PageBlockDefinitionNumberOptions, PageBlockDefinitionOnboarding, PageBlockDefinitionProperty, PageBlockDefinitionPropertyType, PageBlockDefinitionRichTextOptions, PageBlockDefinitionRichTextPropertyStyle, PageBlockDefinitionSelectChoice, PageBlockDefinitionSelectOptions, PageBlockDefinitionSingleSelectPropertyColor, PageBlockDefinitionSingleSelectPropertyStyle, PageBlockDefinitionTextOptions, PageBlockDefinitionTextPropertyColor, PageBlockDefinitionTextPropertyStyle, PageBlockDefinitionUntypedPropertyOptions, PageBlockDefinitionVariant, PageBlockDefinitionsMap, PageBlockEditorModelV2, PageBlockFigmaFrameProperties, PageBlockFigmaNodeEntityMeta, PageBlockFrame, PageBlockFrameOrigin, PageBlockImageAlignment, PageBlockImageReference, PageBlockImageResourceReference, PageBlockImageType, PageBlockItemAssetPropertyValue, PageBlockItemAssetValue, PageBlockItemBooleanValue, PageBlockItemCodeValue, PageBlockItemColorValue, PageBlockItemComponentPropertyValue, PageBlockItemComponentValue, PageBlockItemDividerValue, PageBlockItemEmbedValue, PageBlockItemFigmaNodeValue, PageBlockItemImageValue, PageBlockItemMarkdownValue, PageBlockItemMultiRichTextValue, PageBlockItemMultiSelectValue, PageBlockItemNumberValue, PageBlockItemRichTextValue, PageBlockItemSandboxValue, PageBlockItemSingleSelectValue, PageBlockItemStorybookValue, PageBlockItemTableCell, PageBlockItemTableImageNode, PageBlockItemTableMultiRichTextNode, PageBlockItemTableNode, PageBlockItemTableRichTextNode, PageBlockItemTableRow, PageBlockItemTableValue, PageBlockItemTextValue, PageBlockItemTokenPropertyValue, PageBlockItemTokenTypeValue, PageBlockItemTokenValue, PageBlockItemUntypedValue, PageBlockItemUrlValue, PageBlockItemV2, PageBlockLinkPreview, PageBlockLinkType, PageBlockLinkV2, PageBlockPreviewContainerSize, PageBlockRenderCodeProperties, PageBlockResourceFrameNodeReference, PageBlockShortcut, PageBlockTableCellAlignment, PageBlockTableColumn, PageBlockTableProperties, PageBlockText, PageBlockTextSpan, PageBlockTextSpanAttribute, PageBlockTextSpanAttributeType, PageBlockTheme, PageBlockThemeDisplayMode, PageBlockThemeType, PageBlockTilesAlignment, PageBlockTilesLayout, PageBlockTypeV1, PageBlockUrlPreview, PageBlockV1, PageBlockV2, PageSectionAppearanceV2, PageSectionColumnV2, PageSectionEditorModelV2, PageSectionItemV2, PageSectionPaddingV2, PageSectionTypeV2, type Pagination, ParagraphIndentTokenData, ParagraphIndentUnit, ParagraphIndentValue, ParagraphSpacingTokenData, ParagraphSpacingUnit, ParagraphSpacingValue, PeriodSchema, PersonalAccessToken, type PersonalAccessTokenWithUser, type PluginOAuthRequest, PluginOAuthRequestSchema, Point2D, PostStripeCheckoutBodyInputSchema, PostStripeCheckoutOutputSchema, PostStripePortalSessionBodyInputSchema, PostStripePortalSessionOutputSchema, PostStripePortalUpdateSessionBodyInputSchema, type Price, PriceSchema, ProductCode, ProductCodeSchema, ProductCopyTokenData, ProductCopyValue, PublishedDoc, PublishedDocEnvironment, PublishedDocPage, PublishedDocRoutingVersion, PublishedDocsChecksums, PulsarBaseProperty, PulsarContributionConfigurationProperty, PulsarContributionVariant, PulsarCustomBlock, PulsarPropertyType, RESERVED_SLUGS, RESERVED_SLUG_PREFIX, type ResolvedAsset, RoomType, RoomTypeEnum, RoomTypeSchema, SHORT_PERSISTENT_ID_LENGTH, SafeIdSchema, Session, SessionData, ShadowLayerValue, ShadowTokenData, ShadowType, ShallowDesignElement, Size, SizeOrUndefined, SizeTokenData, SizeUnit, SizeValue, SourceImportComponentSummary, SourceImportFrameSummary, SourceImportSummary, SourceImportSummaryByTokenType, SourceImportTokenSummary, SpaceTokenData, SpaceUnit, SpaceValue, SsoProvider, StringTokenData, StringValue, type StripeCheckoutInput, type StripeCheckoutOutput, type StripePortalSessionInput, type StripePortalSessionOutput, StripeSubscriptionStatus, StripeSubscriptionStatusSchema, Subscription, SupernovaException, type SupernovaExceptionType, TextCase, TextCaseTokenData, TextCaseValue, TextDecoration, TextDecorationTokenData, TextDecorationValue, Theme, type ThemeDiff, ThemeElementData, ThemeImportModel, ThemeImportModelInput, ThemeOrigin, ThemeOriginObject, ThemeOriginPart, ThemeOriginSource, ThemeOverride, ThemeOverrideImportModel, ThemeOverrideImportModelBase, ThemeOverrideImportModelInput, type ThemeOverrideImportModelInputOfType, type ThemeOverrideImportModelOfType, type ThemeOverrideOfType, ThemeOverrideOrigin, ThemeOverrideOriginPart, ThemeUpdateImportModel, ThemeUpdateImportModelInput, TokenDataAliasSchema, TypographyTokenData, TypographyValue, type UpdateComponent, type UpdateDataSource, type UpdateDesignElement, type UpdateDesignSystemVersion, type UpdateDesignSystemVersionRoom, type UpdateDesignToken, type UpdateDocumentationPageContent, type UpdateDocumentationPageRoom, type UpdateDocumentationPageV1, type UpdateDocumentationPageV2, type UpdateElementGroup, type UpdateElementPropertyDefinition, type UpdateElementPropertyValue, type UpdateElementView, type UpdateElementViewColumn, type UpdateExportJob, type UpdateFigmaFileStructure, type UpdateFigmaNodeReference, type UpdateImportJob, UpdateMembershipRolesInput, type UpdatePublishedDocPage, type UpdateTheme, type UpdateWorkspaceRoom, UrlImageImportModel, User, UserIdentity, UserInvite, UserInvites, UserLinkedIntegrations, UserMinified, UserNotificationSettings, UserOnboarding, UserOnboardingDepartment, UserOnboardingJobLevel, UserProfile, UserProfileUpdate, UserSession, UserTest, VersionCreationJob, VersionCreationJobStatus, Visibility, VisibilityTokenData, VisibilityValue, Workspace, WorkspaceConfigurationUpdate, WorkspaceContext, WorkspaceInvitation, WorkspaceIpSettings, WorkspaceIpWhitelistEntry, WorkspaceMembership, type WorkspaceOAuthRequest, WorkspaceOAuthRequestSchema, WorkspaceProfile, WorkspaceProfileUpdate, WorkspaceRole, WorkspaceRoleSchema, WorkspaceRoom, WorkspaceWithDesignSystems, ZIndexTokenData, ZIndexUnit, ZIndexValue, addImportModelCollections, buildConstantEnum, defaultDocumentationItemConfigurationV1, defaultDocumentationItemConfigurationV2, defaultDocumentationItemHeaderV1, defaultDocumentationItemHeaderV2, defaultNotificationSettings, designTokenImportModelTypeFilter, designTokenTypeFilter, extractTokenTypedData, figmaFileStructureImportModelToMap, figmaFileStructureToMap, filterNonNullish, forceUnwrapNullish, getCodenameFromText, groupBy, isDesignTokenImportModelOfType, isDesignTokenOfType, isImportedAsset, isImportedComponent, isImportedDesignToken, isSlugReserved, isTokenType, mapByUnique, mapPageBlockItemValuesV2, nonNullFilter, nonNullishFilter, nullishToOptional, parseUrl, promiseWithTimeout, publishedDocEnvironments, sleep, slugRegex, slugify, tokenAliasOrValue, tokenElementTypes, traversePageBlockItemValuesV2, traversePageBlockItemsV2, traversePageBlocksV1, traversePageItemsV2, traverseStructure, trimLeadingSlash, trimTrailingSlash, tryParseShortPersistentId, zodCreateInputOmit, zodUpdateInputOmit };
|