@supernova-studio/model 0.47.55 → 0.47.56
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 +112 -10
- package/dist/index.d.ts +112 -10
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/raw-element.ts +2 -2
- package/src/dsm/published-doc.ts +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -3339,6 +3339,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3339
3339
|
childType: z.ZodOptional<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"]>]>>;
|
|
3340
3340
|
sortOrder: z.ZodNumber;
|
|
3341
3341
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
3342
|
+
createdAt: z.ZodDate;
|
|
3343
|
+
updatedAt: z.ZodDate;
|
|
3342
3344
|
}, {
|
|
3343
3345
|
meta: z.ZodObject<{
|
|
3344
3346
|
name: z.ZodString;
|
|
@@ -3352,8 +3354,6 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
3352
3354
|
}>;
|
|
3353
3355
|
slug: z.ZodOptional<z.ZodString>;
|
|
3354
3356
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
3355
|
-
createdAt: z.ZodDate;
|
|
3356
|
-
updatedAt: z.ZodDate;
|
|
3357
3357
|
exportProperties: z.ZodOptional<z.ZodObject<{
|
|
3358
3358
|
isAsset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>, boolean, boolean | null | undefined>;
|
|
3359
3359
|
codeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -4934,6 +4934,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
4934
4934
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
4935
4935
|
usesLocalizations: z.ZodBoolean;
|
|
4936
4936
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
4937
|
+
tokenCount: z.ZodNumber;
|
|
4938
|
+
assetCount: z.ZodNumber;
|
|
4937
4939
|
}, "strip", z.ZodTypeAny, {
|
|
4938
4940
|
id: string;
|
|
4939
4941
|
createdAt: Date;
|
|
@@ -4949,6 +4951,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
4949
4951
|
wasMigrated: boolean;
|
|
4950
4952
|
usesLocalizations: boolean;
|
|
4951
4953
|
wasPublishedWithLocalizations: boolean;
|
|
4954
|
+
tokenCount: number;
|
|
4955
|
+
assetCount: number;
|
|
4952
4956
|
}, {
|
|
4953
4957
|
id: string;
|
|
4954
4958
|
createdAt: Date;
|
|
@@ -4964,6 +4968,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
4964
4968
|
wasMigrated: boolean;
|
|
4965
4969
|
usesLocalizations: boolean;
|
|
4966
4970
|
wasPublishedWithLocalizations: boolean;
|
|
4971
|
+
tokenCount: number;
|
|
4972
|
+
assetCount: number;
|
|
4967
4973
|
}>;
|
|
4968
4974
|
pages: z.ZodArray<z.ZodObject<{
|
|
4969
4975
|
id: z.ZodString;
|
|
@@ -5018,6 +5024,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5018
5024
|
wasMigrated: boolean;
|
|
5019
5025
|
usesLocalizations: boolean;
|
|
5020
5026
|
wasPublishedWithLocalizations: boolean;
|
|
5027
|
+
tokenCount: number;
|
|
5028
|
+
assetCount: number;
|
|
5021
5029
|
};
|
|
5022
5030
|
pages: {
|
|
5023
5031
|
id: string;
|
|
@@ -5048,6 +5056,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5048
5056
|
wasMigrated: boolean;
|
|
5049
5057
|
usesLocalizations: boolean;
|
|
5050
5058
|
wasPublishedWithLocalizations: boolean;
|
|
5059
|
+
tokenCount: number;
|
|
5060
|
+
assetCount: number;
|
|
5051
5061
|
};
|
|
5052
5062
|
pages: {
|
|
5053
5063
|
id: string;
|
|
@@ -5334,6 +5344,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5334
5344
|
wasMigrated: boolean;
|
|
5335
5345
|
usesLocalizations: boolean;
|
|
5336
5346
|
wasPublishedWithLocalizations: boolean;
|
|
5347
|
+
tokenCount: number;
|
|
5348
|
+
assetCount: number;
|
|
5337
5349
|
};
|
|
5338
5350
|
pages: {
|
|
5339
5351
|
id: string;
|
|
@@ -5610,6 +5622,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
5610
5622
|
wasMigrated: boolean;
|
|
5611
5623
|
usesLocalizations: boolean;
|
|
5612
5624
|
wasPublishedWithLocalizations: boolean;
|
|
5625
|
+
tokenCount: number;
|
|
5626
|
+
assetCount: number;
|
|
5613
5627
|
};
|
|
5614
5628
|
pages: {
|
|
5615
5629
|
id: string;
|
|
@@ -6140,6 +6154,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6140
6154
|
wasMigrated: boolean;
|
|
6141
6155
|
usesLocalizations: boolean;
|
|
6142
6156
|
wasPublishedWithLocalizations: boolean;
|
|
6157
|
+
tokenCount: number;
|
|
6158
|
+
assetCount: number;
|
|
6143
6159
|
};
|
|
6144
6160
|
pages: {
|
|
6145
6161
|
id: string;
|
|
@@ -6564,6 +6580,8 @@ declare const DesignSystemDump: z.ZodObject<{
|
|
|
6564
6580
|
wasMigrated: boolean;
|
|
6565
6581
|
usesLocalizations: boolean;
|
|
6566
6582
|
wasPublishedWithLocalizations: boolean;
|
|
6583
|
+
tokenCount: number;
|
|
6584
|
+
assetCount: number;
|
|
6567
6585
|
};
|
|
6568
6586
|
pages: {
|
|
6569
6587
|
id: string;
|
|
@@ -7258,6 +7276,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
7258
7276
|
childType: z.ZodOptional<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"]>]>>;
|
|
7259
7277
|
sortOrder: z.ZodNumber;
|
|
7260
7278
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7279
|
+
createdAt: z.ZodDate;
|
|
7280
|
+
updatedAt: z.ZodDate;
|
|
7261
7281
|
}, {
|
|
7262
7282
|
meta: z.ZodObject<{
|
|
7263
7283
|
name: z.ZodString;
|
|
@@ -7271,8 +7291,6 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
7271
7291
|
}>;
|
|
7272
7292
|
slug: z.ZodOptional<z.ZodString>;
|
|
7273
7293
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
7274
|
-
createdAt: z.ZodDate;
|
|
7275
|
-
updatedAt: z.ZodDate;
|
|
7276
7294
|
exportProperties: z.ZodOptional<z.ZodObject<{
|
|
7277
7295
|
isAsset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>, boolean, boolean | null | undefined>;
|
|
7278
7296
|
codeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -8853,6 +8871,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
8853
8871
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
8854
8872
|
usesLocalizations: z.ZodBoolean;
|
|
8855
8873
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
8874
|
+
tokenCount: z.ZodNumber;
|
|
8875
|
+
assetCount: z.ZodNumber;
|
|
8856
8876
|
}, "strip", z.ZodTypeAny, {
|
|
8857
8877
|
id: string;
|
|
8858
8878
|
createdAt: Date;
|
|
@@ -8868,6 +8888,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
8868
8888
|
wasMigrated: boolean;
|
|
8869
8889
|
usesLocalizations: boolean;
|
|
8870
8890
|
wasPublishedWithLocalizations: boolean;
|
|
8891
|
+
tokenCount: number;
|
|
8892
|
+
assetCount: number;
|
|
8871
8893
|
}, {
|
|
8872
8894
|
id: string;
|
|
8873
8895
|
createdAt: Date;
|
|
@@ -8883,6 +8905,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
8883
8905
|
wasMigrated: boolean;
|
|
8884
8906
|
usesLocalizations: boolean;
|
|
8885
8907
|
wasPublishedWithLocalizations: boolean;
|
|
8908
|
+
tokenCount: number;
|
|
8909
|
+
assetCount: number;
|
|
8886
8910
|
}>;
|
|
8887
8911
|
pages: z.ZodArray<z.ZodObject<{
|
|
8888
8912
|
id: z.ZodString;
|
|
@@ -8937,6 +8961,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
8937
8961
|
wasMigrated: boolean;
|
|
8938
8962
|
usesLocalizations: boolean;
|
|
8939
8963
|
wasPublishedWithLocalizations: boolean;
|
|
8964
|
+
tokenCount: number;
|
|
8965
|
+
assetCount: number;
|
|
8940
8966
|
};
|
|
8941
8967
|
pages: {
|
|
8942
8968
|
id: string;
|
|
@@ -8967,6 +8993,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
8967
8993
|
wasMigrated: boolean;
|
|
8968
8994
|
usesLocalizations: boolean;
|
|
8969
8995
|
wasPublishedWithLocalizations: boolean;
|
|
8996
|
+
tokenCount: number;
|
|
8997
|
+
assetCount: number;
|
|
8970
8998
|
};
|
|
8971
8999
|
pages: {
|
|
8972
9000
|
id: string;
|
|
@@ -9253,6 +9281,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9253
9281
|
wasMigrated: boolean;
|
|
9254
9282
|
usesLocalizations: boolean;
|
|
9255
9283
|
wasPublishedWithLocalizations: boolean;
|
|
9284
|
+
tokenCount: number;
|
|
9285
|
+
assetCount: number;
|
|
9256
9286
|
};
|
|
9257
9287
|
pages: {
|
|
9258
9288
|
id: string;
|
|
@@ -9529,6 +9559,8 @@ declare const DesignSystemVersionDump: z.ZodObject<{
|
|
|
9529
9559
|
wasMigrated: boolean;
|
|
9530
9560
|
usesLocalizations: boolean;
|
|
9531
9561
|
wasPublishedWithLocalizations: boolean;
|
|
9562
|
+
tokenCount: number;
|
|
9563
|
+
assetCount: number;
|
|
9532
9564
|
};
|
|
9533
9565
|
pages: {
|
|
9534
9566
|
id: string;
|
|
@@ -9569,6 +9601,8 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
9569
9601
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
9570
9602
|
usesLocalizations: z.ZodBoolean;
|
|
9571
9603
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
9604
|
+
tokenCount: z.ZodNumber;
|
|
9605
|
+
assetCount: z.ZodNumber;
|
|
9572
9606
|
}, "strip", z.ZodTypeAny, {
|
|
9573
9607
|
id: string;
|
|
9574
9608
|
createdAt: Date;
|
|
@@ -9584,6 +9618,8 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
9584
9618
|
wasMigrated: boolean;
|
|
9585
9619
|
usesLocalizations: boolean;
|
|
9586
9620
|
wasPublishedWithLocalizations: boolean;
|
|
9621
|
+
tokenCount: number;
|
|
9622
|
+
assetCount: number;
|
|
9587
9623
|
}, {
|
|
9588
9624
|
id: string;
|
|
9589
9625
|
createdAt: Date;
|
|
@@ -9599,6 +9635,8 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
9599
9635
|
wasMigrated: boolean;
|
|
9600
9636
|
usesLocalizations: boolean;
|
|
9601
9637
|
wasPublishedWithLocalizations: boolean;
|
|
9638
|
+
tokenCount: number;
|
|
9639
|
+
assetCount: number;
|
|
9602
9640
|
}>;
|
|
9603
9641
|
pages: z.ZodArray<z.ZodObject<{
|
|
9604
9642
|
id: z.ZodString;
|
|
@@ -9653,6 +9691,8 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
9653
9691
|
wasMigrated: boolean;
|
|
9654
9692
|
usesLocalizations: boolean;
|
|
9655
9693
|
wasPublishedWithLocalizations: boolean;
|
|
9694
|
+
tokenCount: number;
|
|
9695
|
+
assetCount: number;
|
|
9656
9696
|
};
|
|
9657
9697
|
pages: {
|
|
9658
9698
|
id: string;
|
|
@@ -9683,6 +9723,8 @@ declare const PublishedDocsDump: z.ZodObject<{
|
|
|
9683
9723
|
wasMigrated: boolean;
|
|
9684
9724
|
usesLocalizations: boolean;
|
|
9685
9725
|
wasPublishedWithLocalizations: boolean;
|
|
9726
|
+
tokenCount: number;
|
|
9727
|
+
assetCount: number;
|
|
9686
9728
|
};
|
|
9687
9729
|
pages: {
|
|
9688
9730
|
id: string;
|
|
@@ -12167,6 +12209,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
12167
12209
|
childType: z.ZodOptional<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"]>]>>;
|
|
12168
12210
|
sortOrder: z.ZodNumber;
|
|
12169
12211
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
12212
|
+
createdAt: z.ZodDate;
|
|
12213
|
+
updatedAt: z.ZodDate;
|
|
12170
12214
|
}, {
|
|
12171
12215
|
meta: z.ZodObject<{
|
|
12172
12216
|
name: z.ZodString;
|
|
@@ -12180,8 +12224,6 @@ declare const UserDump: z.ZodObject<{
|
|
|
12180
12224
|
}>;
|
|
12181
12225
|
slug: z.ZodOptional<z.ZodString>;
|
|
12182
12226
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
12183
|
-
createdAt: z.ZodDate;
|
|
12184
|
-
updatedAt: z.ZodDate;
|
|
12185
12227
|
exportProperties: z.ZodOptional<z.ZodObject<{
|
|
12186
12228
|
isAsset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>, boolean, boolean | null | undefined>;
|
|
12187
12229
|
codeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -13762,6 +13804,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
13762
13804
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
13763
13805
|
usesLocalizations: z.ZodBoolean;
|
|
13764
13806
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
13807
|
+
tokenCount: z.ZodNumber;
|
|
13808
|
+
assetCount: z.ZodNumber;
|
|
13765
13809
|
}, "strip", z.ZodTypeAny, {
|
|
13766
13810
|
id: string;
|
|
13767
13811
|
createdAt: Date;
|
|
@@ -13777,6 +13821,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
13777
13821
|
wasMigrated: boolean;
|
|
13778
13822
|
usesLocalizations: boolean;
|
|
13779
13823
|
wasPublishedWithLocalizations: boolean;
|
|
13824
|
+
tokenCount: number;
|
|
13825
|
+
assetCount: number;
|
|
13780
13826
|
}, {
|
|
13781
13827
|
id: string;
|
|
13782
13828
|
createdAt: Date;
|
|
@@ -13792,6 +13838,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
13792
13838
|
wasMigrated: boolean;
|
|
13793
13839
|
usesLocalizations: boolean;
|
|
13794
13840
|
wasPublishedWithLocalizations: boolean;
|
|
13841
|
+
tokenCount: number;
|
|
13842
|
+
assetCount: number;
|
|
13795
13843
|
}>;
|
|
13796
13844
|
pages: z.ZodArray<z.ZodObject<{
|
|
13797
13845
|
id: z.ZodString;
|
|
@@ -13846,6 +13894,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
13846
13894
|
wasMigrated: boolean;
|
|
13847
13895
|
usesLocalizations: boolean;
|
|
13848
13896
|
wasPublishedWithLocalizations: boolean;
|
|
13897
|
+
tokenCount: number;
|
|
13898
|
+
assetCount: number;
|
|
13849
13899
|
};
|
|
13850
13900
|
pages: {
|
|
13851
13901
|
id: string;
|
|
@@ -13876,6 +13926,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
13876
13926
|
wasMigrated: boolean;
|
|
13877
13927
|
usesLocalizations: boolean;
|
|
13878
13928
|
wasPublishedWithLocalizations: boolean;
|
|
13929
|
+
tokenCount: number;
|
|
13930
|
+
assetCount: number;
|
|
13879
13931
|
};
|
|
13880
13932
|
pages: {
|
|
13881
13933
|
id: string;
|
|
@@ -14162,6 +14214,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
14162
14214
|
wasMigrated: boolean;
|
|
14163
14215
|
usesLocalizations: boolean;
|
|
14164
14216
|
wasPublishedWithLocalizations: boolean;
|
|
14217
|
+
tokenCount: number;
|
|
14218
|
+
assetCount: number;
|
|
14165
14219
|
};
|
|
14166
14220
|
pages: {
|
|
14167
14221
|
id: string;
|
|
@@ -14438,6 +14492,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
14438
14492
|
wasMigrated: boolean;
|
|
14439
14493
|
usesLocalizations: boolean;
|
|
14440
14494
|
wasPublishedWithLocalizations: boolean;
|
|
14495
|
+
tokenCount: number;
|
|
14496
|
+
assetCount: number;
|
|
14441
14497
|
};
|
|
14442
14498
|
pages: {
|
|
14443
14499
|
id: string;
|
|
@@ -14968,6 +15024,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
14968
15024
|
wasMigrated: boolean;
|
|
14969
15025
|
usesLocalizations: boolean;
|
|
14970
15026
|
wasPublishedWithLocalizations: boolean;
|
|
15027
|
+
tokenCount: number;
|
|
15028
|
+
assetCount: number;
|
|
14971
15029
|
};
|
|
14972
15030
|
pages: {
|
|
14973
15031
|
id: string;
|
|
@@ -15392,6 +15450,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
15392
15450
|
wasMigrated: boolean;
|
|
15393
15451
|
usesLocalizations: boolean;
|
|
15394
15452
|
wasPublishedWithLocalizations: boolean;
|
|
15453
|
+
tokenCount: number;
|
|
15454
|
+
assetCount: number;
|
|
15395
15455
|
};
|
|
15396
15456
|
pages: {
|
|
15397
15457
|
id: string;
|
|
@@ -16906,6 +16966,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
16906
16966
|
wasMigrated: boolean;
|
|
16907
16967
|
usesLocalizations: boolean;
|
|
16908
16968
|
wasPublishedWithLocalizations: boolean;
|
|
16969
|
+
tokenCount: number;
|
|
16970
|
+
assetCount: number;
|
|
16909
16971
|
};
|
|
16910
16972
|
pages: {
|
|
16911
16973
|
id: string;
|
|
@@ -17687,6 +17749,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
17687
17749
|
wasMigrated: boolean;
|
|
17688
17750
|
usesLocalizations: boolean;
|
|
17689
17751
|
wasPublishedWithLocalizations: boolean;
|
|
17752
|
+
tokenCount: number;
|
|
17753
|
+
assetCount: number;
|
|
17690
17754
|
};
|
|
17691
17755
|
pages: {
|
|
17692
17756
|
id: string;
|
|
@@ -18470,6 +18534,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
18470
18534
|
wasMigrated: boolean;
|
|
18471
18535
|
usesLocalizations: boolean;
|
|
18472
18536
|
wasPublishedWithLocalizations: boolean;
|
|
18537
|
+
tokenCount: number;
|
|
18538
|
+
assetCount: number;
|
|
18473
18539
|
};
|
|
18474
18540
|
pages: {
|
|
18475
18541
|
id: string;
|
|
@@ -19321,6 +19387,8 @@ declare const UserDump: z.ZodObject<{
|
|
|
19321
19387
|
wasMigrated: boolean;
|
|
19322
19388
|
usesLocalizations: boolean;
|
|
19323
19389
|
wasPublishedWithLocalizations: boolean;
|
|
19390
|
+
tokenCount: number;
|
|
19391
|
+
assetCount: number;
|
|
19324
19392
|
};
|
|
19325
19393
|
pages: {
|
|
19326
19394
|
id: string;
|
|
@@ -21838,6 +21906,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21838
21906
|
childType: z.ZodOptional<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"]>]>>;
|
|
21839
21907
|
sortOrder: z.ZodNumber;
|
|
21840
21908
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
21909
|
+
createdAt: z.ZodDate;
|
|
21910
|
+
updatedAt: z.ZodDate;
|
|
21841
21911
|
}, {
|
|
21842
21912
|
meta: z.ZodObject<{
|
|
21843
21913
|
name: z.ZodString;
|
|
@@ -21851,8 +21921,6 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21851
21921
|
}>;
|
|
21852
21922
|
slug: z.ZodOptional<z.ZodString>;
|
|
21853
21923
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
21854
|
-
createdAt: z.ZodDate;
|
|
21855
|
-
updatedAt: z.ZodDate;
|
|
21856
21924
|
exportProperties: z.ZodOptional<z.ZodObject<{
|
|
21857
21925
|
isAsset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>, boolean, boolean | null | undefined>;
|
|
21858
21926
|
codeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -23433,6 +23501,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23433
23501
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
23434
23502
|
usesLocalizations: z.ZodBoolean;
|
|
23435
23503
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
23504
|
+
tokenCount: z.ZodNumber;
|
|
23505
|
+
assetCount: z.ZodNumber;
|
|
23436
23506
|
}, "strip", z.ZodTypeAny, {
|
|
23437
23507
|
id: string;
|
|
23438
23508
|
createdAt: Date;
|
|
@@ -23448,6 +23518,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23448
23518
|
wasMigrated: boolean;
|
|
23449
23519
|
usesLocalizations: boolean;
|
|
23450
23520
|
wasPublishedWithLocalizations: boolean;
|
|
23521
|
+
tokenCount: number;
|
|
23522
|
+
assetCount: number;
|
|
23451
23523
|
}, {
|
|
23452
23524
|
id: string;
|
|
23453
23525
|
createdAt: Date;
|
|
@@ -23463,6 +23535,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23463
23535
|
wasMigrated: boolean;
|
|
23464
23536
|
usesLocalizations: boolean;
|
|
23465
23537
|
wasPublishedWithLocalizations: boolean;
|
|
23538
|
+
tokenCount: number;
|
|
23539
|
+
assetCount: number;
|
|
23466
23540
|
}>;
|
|
23467
23541
|
pages: z.ZodArray<z.ZodObject<{
|
|
23468
23542
|
id: z.ZodString;
|
|
@@ -23517,6 +23591,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23517
23591
|
wasMigrated: boolean;
|
|
23518
23592
|
usesLocalizations: boolean;
|
|
23519
23593
|
wasPublishedWithLocalizations: boolean;
|
|
23594
|
+
tokenCount: number;
|
|
23595
|
+
assetCount: number;
|
|
23520
23596
|
};
|
|
23521
23597
|
pages: {
|
|
23522
23598
|
id: string;
|
|
@@ -23547,6 +23623,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23547
23623
|
wasMigrated: boolean;
|
|
23548
23624
|
usesLocalizations: boolean;
|
|
23549
23625
|
wasPublishedWithLocalizations: boolean;
|
|
23626
|
+
tokenCount: number;
|
|
23627
|
+
assetCount: number;
|
|
23550
23628
|
};
|
|
23551
23629
|
pages: {
|
|
23552
23630
|
id: string;
|
|
@@ -23833,6 +23911,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
23833
23911
|
wasMigrated: boolean;
|
|
23834
23912
|
usesLocalizations: boolean;
|
|
23835
23913
|
wasPublishedWithLocalizations: boolean;
|
|
23914
|
+
tokenCount: number;
|
|
23915
|
+
assetCount: number;
|
|
23836
23916
|
};
|
|
23837
23917
|
pages: {
|
|
23838
23918
|
id: string;
|
|
@@ -24109,6 +24189,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24109
24189
|
wasMigrated: boolean;
|
|
24110
24190
|
usesLocalizations: boolean;
|
|
24111
24191
|
wasPublishedWithLocalizations: boolean;
|
|
24192
|
+
tokenCount: number;
|
|
24193
|
+
assetCount: number;
|
|
24112
24194
|
};
|
|
24113
24195
|
pages: {
|
|
24114
24196
|
id: string;
|
|
@@ -24639,6 +24721,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24639
24721
|
wasMigrated: boolean;
|
|
24640
24722
|
usesLocalizations: boolean;
|
|
24641
24723
|
wasPublishedWithLocalizations: boolean;
|
|
24724
|
+
tokenCount: number;
|
|
24725
|
+
assetCount: number;
|
|
24642
24726
|
};
|
|
24643
24727
|
pages: {
|
|
24644
24728
|
id: string;
|
|
@@ -25063,6 +25147,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25063
25147
|
wasMigrated: boolean;
|
|
25064
25148
|
usesLocalizations: boolean;
|
|
25065
25149
|
wasPublishedWithLocalizations: boolean;
|
|
25150
|
+
tokenCount: number;
|
|
25151
|
+
assetCount: number;
|
|
25066
25152
|
};
|
|
25067
25153
|
pages: {
|
|
25068
25154
|
id: string;
|
|
@@ -26577,6 +26663,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
26577
26663
|
wasMigrated: boolean;
|
|
26578
26664
|
usesLocalizations: boolean;
|
|
26579
26665
|
wasPublishedWithLocalizations: boolean;
|
|
26666
|
+
tokenCount: number;
|
|
26667
|
+
assetCount: number;
|
|
26580
26668
|
};
|
|
26581
26669
|
pages: {
|
|
26582
26670
|
id: string;
|
|
@@ -27358,6 +27446,8 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27358
27446
|
wasMigrated: boolean;
|
|
27359
27447
|
usesLocalizations: boolean;
|
|
27360
27448
|
wasPublishedWithLocalizations: boolean;
|
|
27449
|
+
tokenCount: number;
|
|
27450
|
+
assetCount: number;
|
|
27361
27451
|
};
|
|
27362
27452
|
pages: {
|
|
27363
27453
|
id: string;
|
|
@@ -53242,8 +53332,12 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
53242
53332
|
childType: z.ZodOptional<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"]>]>>;
|
|
53243
53333
|
sortOrder: z.ZodNumber;
|
|
53244
53334
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
53335
|
+
createdAt: z.ZodDate;
|
|
53336
|
+
updatedAt: z.ZodDate;
|
|
53245
53337
|
}, "strip", z.ZodTypeAny, {
|
|
53246
53338
|
id: string;
|
|
53339
|
+
createdAt: Date;
|
|
53340
|
+
updatedAt: Date;
|
|
53247
53341
|
persistentId: string;
|
|
53248
53342
|
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";
|
|
53249
53343
|
designSystemVersionId: string;
|
|
@@ -53255,6 +53349,8 @@ declare const ShallowDesignElement: z.ZodObject<{
|
|
|
53255
53349
|
childType?: "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" | undefined;
|
|
53256
53350
|
}, {
|
|
53257
53351
|
id: string;
|
|
53352
|
+
createdAt: Date;
|
|
53353
|
+
updatedAt: Date;
|
|
53258
53354
|
persistentId: string;
|
|
53259
53355
|
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";
|
|
53260
53356
|
designSystemVersionId: string;
|
|
@@ -53277,6 +53373,8 @@ declare const DesignElement: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
53277
53373
|
childType: z.ZodOptional<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"]>]>>;
|
|
53278
53374
|
sortOrder: z.ZodNumber;
|
|
53279
53375
|
origin: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
53376
|
+
createdAt: z.ZodDate;
|
|
53377
|
+
updatedAt: z.ZodDate;
|
|
53280
53378
|
}, {
|
|
53281
53379
|
meta: z.ZodObject<{
|
|
53282
53380
|
name: z.ZodString;
|
|
@@ -53290,8 +53388,6 @@ declare const DesignElement: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
53290
53388
|
}>;
|
|
53291
53389
|
slug: z.ZodOptional<z.ZodString>;
|
|
53292
53390
|
userSlug: z.ZodOptional<z.ZodString>;
|
|
53293
|
-
createdAt: z.ZodDate;
|
|
53294
|
-
updatedAt: z.ZodDate;
|
|
53295
53391
|
exportProperties: z.ZodOptional<z.ZodObject<{
|
|
53296
53392
|
isAsset: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>, boolean, boolean | null | undefined>;
|
|
53297
53393
|
codeName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -126793,6 +126889,8 @@ declare const PublishedDoc: z.ZodObject<{
|
|
|
126793
126889
|
routingVersion: z.ZodEnum<["1", "2"]>;
|
|
126794
126890
|
usesLocalizations: z.ZodBoolean;
|
|
126795
126891
|
wasPublishedWithLocalizations: z.ZodBoolean;
|
|
126892
|
+
tokenCount: z.ZodNumber;
|
|
126893
|
+
assetCount: z.ZodNumber;
|
|
126796
126894
|
}, "strip", z.ZodTypeAny, {
|
|
126797
126895
|
id: string;
|
|
126798
126896
|
createdAt: Date;
|
|
@@ -126808,6 +126906,8 @@ declare const PublishedDoc: z.ZodObject<{
|
|
|
126808
126906
|
wasMigrated: boolean;
|
|
126809
126907
|
usesLocalizations: boolean;
|
|
126810
126908
|
wasPublishedWithLocalizations: boolean;
|
|
126909
|
+
tokenCount: number;
|
|
126910
|
+
assetCount: number;
|
|
126811
126911
|
}, {
|
|
126812
126912
|
id: string;
|
|
126813
126913
|
createdAt: Date;
|
|
@@ -126823,6 +126923,8 @@ declare const PublishedDoc: z.ZodObject<{
|
|
|
126823
126923
|
wasMigrated: boolean;
|
|
126824
126924
|
usesLocalizations: boolean;
|
|
126825
126925
|
wasPublishedWithLocalizations: boolean;
|
|
126926
|
+
tokenCount: number;
|
|
126927
|
+
assetCount: number;
|
|
126826
126928
|
}>;
|
|
126827
126929
|
type PublishedDoc = z.infer<typeof PublishedDoc>;
|
|
126828
126930
|
|