@supernova-studio/model 0.53.7 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +59 -5
- package/dist/index.d.ts +59 -5
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dsm/elements/data/documentation-block-v2.ts +2 -0
- package/src/feature-flags/feature-flags.ts +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -41070,6 +41070,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41070
41070
|
type: z.ZodLiteral<"Image">;
|
|
41071
41071
|
id: z.ZodString;
|
|
41072
41072
|
caption: z.ZodOptional<z.ZodString>;
|
|
41073
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41073
41074
|
value: z.ZodOptional<z.ZodObject<{
|
|
41074
41075
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41075
41076
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41113,6 +41114,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41113
41114
|
frameReferenceId: string;
|
|
41114
41115
|
} | undefined;
|
|
41115
41116
|
}>>;
|
|
41117
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41116
41118
|
}, "strip", z.ZodTypeAny, {
|
|
41117
41119
|
id: string;
|
|
41118
41120
|
type: "Image";
|
|
@@ -41127,7 +41129,9 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41127
41129
|
frameReferenceId: string;
|
|
41128
41130
|
} | undefined;
|
|
41129
41131
|
} | undefined;
|
|
41132
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41130
41133
|
caption?: string | undefined;
|
|
41134
|
+
alt?: string | undefined;
|
|
41131
41135
|
}, {
|
|
41132
41136
|
id: string;
|
|
41133
41137
|
type: "Image";
|
|
@@ -41142,7 +41146,9 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41142
41146
|
frameReferenceId: string;
|
|
41143
41147
|
} | undefined;
|
|
41144
41148
|
} | undefined;
|
|
41149
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41145
41150
|
caption?: string | undefined;
|
|
41151
|
+
alt?: string | undefined;
|
|
41146
41152
|
}>;
|
|
41147
41153
|
type PageBlockItemTableImageNode = z.infer<typeof PageBlockItemTableImageNode>;
|
|
41148
41154
|
declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -41264,6 +41270,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41264
41270
|
type: z.ZodLiteral<"Image">;
|
|
41265
41271
|
id: z.ZodString;
|
|
41266
41272
|
caption: z.ZodOptional<z.ZodString>;
|
|
41273
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41267
41274
|
value: z.ZodOptional<z.ZodObject<{
|
|
41268
41275
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41269
41276
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41307,6 +41314,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41307
41314
|
frameReferenceId: string;
|
|
41308
41315
|
} | undefined;
|
|
41309
41316
|
}>>;
|
|
41317
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41310
41318
|
}, "strip", z.ZodTypeAny, {
|
|
41311
41319
|
id: string;
|
|
41312
41320
|
type: "Image";
|
|
@@ -41321,7 +41329,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41321
41329
|
frameReferenceId: string;
|
|
41322
41330
|
} | undefined;
|
|
41323
41331
|
} | undefined;
|
|
41332
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41324
41333
|
caption?: string | undefined;
|
|
41334
|
+
alt?: string | undefined;
|
|
41325
41335
|
}, {
|
|
41326
41336
|
id: string;
|
|
41327
41337
|
type: "Image";
|
|
@@ -41336,7 +41346,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41336
41346
|
frameReferenceId: string;
|
|
41337
41347
|
} | undefined;
|
|
41338
41348
|
} | undefined;
|
|
41349
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41339
41350
|
caption?: string | undefined;
|
|
41351
|
+
alt?: string | undefined;
|
|
41340
41352
|
}>]>;
|
|
41341
41353
|
type PageBlockItemTableNode = z.infer<typeof PageBlockItemTableNode>;
|
|
41342
41354
|
declare const PageBlockItemTableCell: z.ZodObject<{
|
|
@@ -41460,6 +41472,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41460
41472
|
type: z.ZodLiteral<"Image">;
|
|
41461
41473
|
id: z.ZodString;
|
|
41462
41474
|
caption: z.ZodOptional<z.ZodString>;
|
|
41475
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41463
41476
|
value: z.ZodOptional<z.ZodObject<{
|
|
41464
41477
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41465
41478
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41503,6 +41516,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41503
41516
|
frameReferenceId: string;
|
|
41504
41517
|
} | undefined;
|
|
41505
41518
|
}>>;
|
|
41519
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41506
41520
|
}, "strip", z.ZodTypeAny, {
|
|
41507
41521
|
id: string;
|
|
41508
41522
|
type: "Image";
|
|
@@ -41517,7 +41531,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41517
41531
|
frameReferenceId: string;
|
|
41518
41532
|
} | undefined;
|
|
41519
41533
|
} | undefined;
|
|
41534
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41520
41535
|
caption?: string | undefined;
|
|
41536
|
+
alt?: string | undefined;
|
|
41521
41537
|
}, {
|
|
41522
41538
|
id: string;
|
|
41523
41539
|
type: "Image";
|
|
@@ -41532,7 +41548,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41532
41548
|
frameReferenceId: string;
|
|
41533
41549
|
} | undefined;
|
|
41534
41550
|
} | undefined;
|
|
41551
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41535
41552
|
caption?: string | undefined;
|
|
41553
|
+
alt?: string | undefined;
|
|
41536
41554
|
}>]>, "many">;
|
|
41537
41555
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
41538
41556
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -41570,7 +41588,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41570
41588
|
frameReferenceId: string;
|
|
41571
41589
|
} | undefined;
|
|
41572
41590
|
} | undefined;
|
|
41591
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41573
41592
|
caption?: string | undefined;
|
|
41593
|
+
alt?: string | undefined;
|
|
41574
41594
|
})[];
|
|
41575
41595
|
columnWidth?: number | undefined;
|
|
41576
41596
|
}, {
|
|
@@ -41607,7 +41627,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41607
41627
|
frameReferenceId: string;
|
|
41608
41628
|
} | undefined;
|
|
41609
41629
|
} | undefined;
|
|
41630
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41610
41631
|
caption?: string | undefined;
|
|
41632
|
+
alt?: string | undefined;
|
|
41611
41633
|
})[];
|
|
41612
41634
|
columnWidth?: number | undefined;
|
|
41613
41635
|
}>;
|
|
@@ -41734,6 +41756,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41734
41756
|
type: z.ZodLiteral<"Image">;
|
|
41735
41757
|
id: z.ZodString;
|
|
41736
41758
|
caption: z.ZodOptional<z.ZodString>;
|
|
41759
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41737
41760
|
value: z.ZodOptional<z.ZodObject<{
|
|
41738
41761
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41739
41762
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41777,6 +41800,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41777
41800
|
frameReferenceId: string;
|
|
41778
41801
|
} | undefined;
|
|
41779
41802
|
}>>;
|
|
41803
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41780
41804
|
}, "strip", z.ZodTypeAny, {
|
|
41781
41805
|
id: string;
|
|
41782
41806
|
type: "Image";
|
|
@@ -41791,7 +41815,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41791
41815
|
frameReferenceId: string;
|
|
41792
41816
|
} | undefined;
|
|
41793
41817
|
} | undefined;
|
|
41818
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41794
41819
|
caption?: string | undefined;
|
|
41820
|
+
alt?: string | undefined;
|
|
41795
41821
|
}, {
|
|
41796
41822
|
id: string;
|
|
41797
41823
|
type: "Image";
|
|
@@ -41806,7 +41832,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41806
41832
|
frameReferenceId: string;
|
|
41807
41833
|
} | undefined;
|
|
41808
41834
|
} | undefined;
|
|
41835
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41809
41836
|
caption?: string | undefined;
|
|
41837
|
+
alt?: string | undefined;
|
|
41810
41838
|
}>]>, "many">;
|
|
41811
41839
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
41812
41840
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -41844,7 +41872,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41844
41872
|
frameReferenceId: string;
|
|
41845
41873
|
} | undefined;
|
|
41846
41874
|
} | undefined;
|
|
41875
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41847
41876
|
caption?: string | undefined;
|
|
41877
|
+
alt?: string | undefined;
|
|
41848
41878
|
})[];
|
|
41849
41879
|
columnWidth?: number | undefined;
|
|
41850
41880
|
}, {
|
|
@@ -41881,7 +41911,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41881
41911
|
frameReferenceId: string;
|
|
41882
41912
|
} | undefined;
|
|
41883
41913
|
} | undefined;
|
|
41914
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41884
41915
|
caption?: string | undefined;
|
|
41916
|
+
alt?: string | undefined;
|
|
41885
41917
|
})[];
|
|
41886
41918
|
columnWidth?: number | undefined;
|
|
41887
41919
|
}>, "many">;
|
|
@@ -41920,7 +41952,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41920
41952
|
frameReferenceId: string;
|
|
41921
41953
|
} | undefined;
|
|
41922
41954
|
} | undefined;
|
|
41955
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41923
41956
|
caption?: string | undefined;
|
|
41957
|
+
alt?: string | undefined;
|
|
41924
41958
|
})[];
|
|
41925
41959
|
columnWidth?: number | undefined;
|
|
41926
41960
|
}[];
|
|
@@ -41959,7 +41993,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41959
41993
|
frameReferenceId: string;
|
|
41960
41994
|
} | undefined;
|
|
41961
41995
|
} | undefined;
|
|
41996
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41962
41997
|
caption?: string | undefined;
|
|
41998
|
+
alt?: string | undefined;
|
|
41963
41999
|
})[];
|
|
41964
42000
|
columnWidth?: number | undefined;
|
|
41965
42001
|
}[];
|
|
@@ -42091,6 +42127,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42091
42127
|
type: z.ZodLiteral<"Image">;
|
|
42092
42128
|
id: z.ZodString;
|
|
42093
42129
|
caption: z.ZodOptional<z.ZodString>;
|
|
42130
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
42094
42131
|
value: z.ZodOptional<z.ZodObject<{
|
|
42095
42132
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
42096
42133
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -42134,6 +42171,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42134
42171
|
frameReferenceId: string;
|
|
42135
42172
|
} | undefined;
|
|
42136
42173
|
}>>;
|
|
42174
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42137
42175
|
}, "strip", z.ZodTypeAny, {
|
|
42138
42176
|
id: string;
|
|
42139
42177
|
type: "Image";
|
|
@@ -42148,7 +42186,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42148
42186
|
frameReferenceId: string;
|
|
42149
42187
|
} | undefined;
|
|
42150
42188
|
} | undefined;
|
|
42189
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42151
42190
|
caption?: string | undefined;
|
|
42191
|
+
alt?: string | undefined;
|
|
42152
42192
|
}, {
|
|
42153
42193
|
id: string;
|
|
42154
42194
|
type: "Image";
|
|
@@ -42163,7 +42203,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42163
42203
|
frameReferenceId: string;
|
|
42164
42204
|
} | undefined;
|
|
42165
42205
|
} | undefined;
|
|
42206
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42166
42207
|
caption?: string | undefined;
|
|
42208
|
+
alt?: string | undefined;
|
|
42167
42209
|
}>]>, "many">;
|
|
42168
42210
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
42169
42211
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -42201,7 +42243,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42201
42243
|
frameReferenceId: string;
|
|
42202
42244
|
} | undefined;
|
|
42203
42245
|
} | undefined;
|
|
42246
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42204
42247
|
caption?: string | undefined;
|
|
42248
|
+
alt?: string | undefined;
|
|
42205
42249
|
})[];
|
|
42206
42250
|
columnWidth?: number | undefined;
|
|
42207
42251
|
}, {
|
|
@@ -42238,7 +42282,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42238
42282
|
frameReferenceId: string;
|
|
42239
42283
|
} | undefined;
|
|
42240
42284
|
} | undefined;
|
|
42285
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42241
42286
|
caption?: string | undefined;
|
|
42287
|
+
alt?: string | undefined;
|
|
42242
42288
|
})[];
|
|
42243
42289
|
columnWidth?: number | undefined;
|
|
42244
42290
|
}>, "many">;
|
|
@@ -42277,7 +42323,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42277
42323
|
frameReferenceId: string;
|
|
42278
42324
|
} | undefined;
|
|
42279
42325
|
} | undefined;
|
|
42326
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42280
42327
|
caption?: string | undefined;
|
|
42328
|
+
alt?: string | undefined;
|
|
42281
42329
|
})[];
|
|
42282
42330
|
columnWidth?: number | undefined;
|
|
42283
42331
|
}[];
|
|
@@ -42316,7 +42364,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42316
42364
|
frameReferenceId: string;
|
|
42317
42365
|
} | undefined;
|
|
42318
42366
|
} | undefined;
|
|
42367
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42319
42368
|
caption?: string | undefined;
|
|
42369
|
+
alt?: string | undefined;
|
|
42320
42370
|
})[];
|
|
42321
42371
|
columnWidth?: number | undefined;
|
|
42322
42372
|
}[];
|
|
@@ -42357,7 +42407,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42357
42407
|
frameReferenceId: string;
|
|
42358
42408
|
} | undefined;
|
|
42359
42409
|
} | undefined;
|
|
42410
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42360
42411
|
caption?: string | undefined;
|
|
42412
|
+
alt?: string | undefined;
|
|
42361
42413
|
})[];
|
|
42362
42414
|
columnWidth?: number | undefined;
|
|
42363
42415
|
}[];
|
|
@@ -42401,7 +42453,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42401
42453
|
frameReferenceId: string;
|
|
42402
42454
|
} | undefined;
|
|
42403
42455
|
} | undefined;
|
|
42456
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42404
42457
|
caption?: string | undefined;
|
|
42458
|
+
alt?: string | undefined;
|
|
42405
42459
|
})[];
|
|
42406
42460
|
columnWidth?: number | undefined;
|
|
42407
42461
|
}[];
|
|
@@ -135376,13 +135430,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
135376
135430
|
}>;
|
|
135377
135431
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
135378
135432
|
|
|
135379
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135433
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135380
135434
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
135381
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>, z.ZodBoolean>;
|
|
135435
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>, z.ZodBoolean>;
|
|
135382
135436
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
135383
135437
|
declare const FeatureFlag: z.ZodObject<{
|
|
135384
135438
|
id: z.ZodString;
|
|
135385
|
-
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135439
|
+
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135386
135440
|
createdAt: z.ZodDate;
|
|
135387
135441
|
enabled: z.ZodBoolean;
|
|
135388
135442
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -135390,13 +135444,13 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
135390
135444
|
id: string;
|
|
135391
135445
|
createdAt: Date;
|
|
135392
135446
|
enabled: boolean;
|
|
135393
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135447
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135394
135448
|
designSystemId?: string | undefined;
|
|
135395
135449
|
}, {
|
|
135396
135450
|
id: string;
|
|
135397
135451
|
createdAt: Date;
|
|
135398
135452
|
enabled: boolean;
|
|
135399
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135453
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135400
135454
|
designSystemId?: string | undefined;
|
|
135401
135455
|
}>;
|
|
135402
135456
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
package/dist/index.d.ts
CHANGED
|
@@ -41070,6 +41070,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41070
41070
|
type: z.ZodLiteral<"Image">;
|
|
41071
41071
|
id: z.ZodString;
|
|
41072
41072
|
caption: z.ZodOptional<z.ZodString>;
|
|
41073
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41073
41074
|
value: z.ZodOptional<z.ZodObject<{
|
|
41074
41075
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41075
41076
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41113,6 +41114,7 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41113
41114
|
frameReferenceId: string;
|
|
41114
41115
|
} | undefined;
|
|
41115
41116
|
}>>;
|
|
41117
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41116
41118
|
}, "strip", z.ZodTypeAny, {
|
|
41117
41119
|
id: string;
|
|
41118
41120
|
type: "Image";
|
|
@@ -41127,7 +41129,9 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41127
41129
|
frameReferenceId: string;
|
|
41128
41130
|
} | undefined;
|
|
41129
41131
|
} | undefined;
|
|
41132
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41130
41133
|
caption?: string | undefined;
|
|
41134
|
+
alt?: string | undefined;
|
|
41131
41135
|
}, {
|
|
41132
41136
|
id: string;
|
|
41133
41137
|
type: "Image";
|
|
@@ -41142,7 +41146,9 @@ declare const PageBlockItemTableImageNode: z.ZodObject<{
|
|
|
41142
41146
|
frameReferenceId: string;
|
|
41143
41147
|
} | undefined;
|
|
41144
41148
|
} | undefined;
|
|
41149
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41145
41150
|
caption?: string | undefined;
|
|
41151
|
+
alt?: string | undefined;
|
|
41146
41152
|
}>;
|
|
41147
41153
|
type PageBlockItemTableImageNode = z.infer<typeof PageBlockItemTableImageNode>;
|
|
41148
41154
|
declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
@@ -41264,6 +41270,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41264
41270
|
type: z.ZodLiteral<"Image">;
|
|
41265
41271
|
id: z.ZodString;
|
|
41266
41272
|
caption: z.ZodOptional<z.ZodString>;
|
|
41273
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41267
41274
|
value: z.ZodOptional<z.ZodObject<{
|
|
41268
41275
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41269
41276
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41307,6 +41314,7 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41307
41314
|
frameReferenceId: string;
|
|
41308
41315
|
} | undefined;
|
|
41309
41316
|
}>>;
|
|
41317
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41310
41318
|
}, "strip", z.ZodTypeAny, {
|
|
41311
41319
|
id: string;
|
|
41312
41320
|
type: "Image";
|
|
@@ -41321,7 +41329,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41321
41329
|
frameReferenceId: string;
|
|
41322
41330
|
} | undefined;
|
|
41323
41331
|
} | undefined;
|
|
41332
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41324
41333
|
caption?: string | undefined;
|
|
41334
|
+
alt?: string | undefined;
|
|
41325
41335
|
}, {
|
|
41326
41336
|
id: string;
|
|
41327
41337
|
type: "Image";
|
|
@@ -41336,7 +41346,9 @@ declare const PageBlockItemTableNode: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
41336
41346
|
frameReferenceId: string;
|
|
41337
41347
|
} | undefined;
|
|
41338
41348
|
} | undefined;
|
|
41349
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41339
41350
|
caption?: string | undefined;
|
|
41351
|
+
alt?: string | undefined;
|
|
41340
41352
|
}>]>;
|
|
41341
41353
|
type PageBlockItemTableNode = z.infer<typeof PageBlockItemTableNode>;
|
|
41342
41354
|
declare const PageBlockItemTableCell: z.ZodObject<{
|
|
@@ -41460,6 +41472,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41460
41472
|
type: z.ZodLiteral<"Image">;
|
|
41461
41473
|
id: z.ZodString;
|
|
41462
41474
|
caption: z.ZodOptional<z.ZodString>;
|
|
41475
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41463
41476
|
value: z.ZodOptional<z.ZodObject<{
|
|
41464
41477
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41465
41478
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41503,6 +41516,7 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41503
41516
|
frameReferenceId: string;
|
|
41504
41517
|
} | undefined;
|
|
41505
41518
|
}>>;
|
|
41519
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41506
41520
|
}, "strip", z.ZodTypeAny, {
|
|
41507
41521
|
id: string;
|
|
41508
41522
|
type: "Image";
|
|
@@ -41517,7 +41531,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41517
41531
|
frameReferenceId: string;
|
|
41518
41532
|
} | undefined;
|
|
41519
41533
|
} | undefined;
|
|
41534
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41520
41535
|
caption?: string | undefined;
|
|
41536
|
+
alt?: string | undefined;
|
|
41521
41537
|
}, {
|
|
41522
41538
|
id: string;
|
|
41523
41539
|
type: "Image";
|
|
@@ -41532,7 +41548,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41532
41548
|
frameReferenceId: string;
|
|
41533
41549
|
} | undefined;
|
|
41534
41550
|
} | undefined;
|
|
41551
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41535
41552
|
caption?: string | undefined;
|
|
41553
|
+
alt?: string | undefined;
|
|
41536
41554
|
}>]>, "many">;
|
|
41537
41555
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
41538
41556
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -41570,7 +41588,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41570
41588
|
frameReferenceId: string;
|
|
41571
41589
|
} | undefined;
|
|
41572
41590
|
} | undefined;
|
|
41591
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41573
41592
|
caption?: string | undefined;
|
|
41593
|
+
alt?: string | undefined;
|
|
41574
41594
|
})[];
|
|
41575
41595
|
columnWidth?: number | undefined;
|
|
41576
41596
|
}, {
|
|
@@ -41607,7 +41627,9 @@ declare const PageBlockItemTableCell: z.ZodObject<{
|
|
|
41607
41627
|
frameReferenceId: string;
|
|
41608
41628
|
} | undefined;
|
|
41609
41629
|
} | undefined;
|
|
41630
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41610
41631
|
caption?: string | undefined;
|
|
41632
|
+
alt?: string | undefined;
|
|
41611
41633
|
})[];
|
|
41612
41634
|
columnWidth?: number | undefined;
|
|
41613
41635
|
}>;
|
|
@@ -41734,6 +41756,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41734
41756
|
type: z.ZodLiteral<"Image">;
|
|
41735
41757
|
id: z.ZodString;
|
|
41736
41758
|
caption: z.ZodOptional<z.ZodString>;
|
|
41759
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
41737
41760
|
value: z.ZodOptional<z.ZodObject<{
|
|
41738
41761
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
41739
41762
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -41777,6 +41800,7 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41777
41800
|
frameReferenceId: string;
|
|
41778
41801
|
} | undefined;
|
|
41779
41802
|
}>>;
|
|
41803
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
41780
41804
|
}, "strip", z.ZodTypeAny, {
|
|
41781
41805
|
id: string;
|
|
41782
41806
|
type: "Image";
|
|
@@ -41791,7 +41815,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41791
41815
|
frameReferenceId: string;
|
|
41792
41816
|
} | undefined;
|
|
41793
41817
|
} | undefined;
|
|
41818
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41794
41819
|
caption?: string | undefined;
|
|
41820
|
+
alt?: string | undefined;
|
|
41795
41821
|
}, {
|
|
41796
41822
|
id: string;
|
|
41797
41823
|
type: "Image";
|
|
@@ -41806,7 +41832,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41806
41832
|
frameReferenceId: string;
|
|
41807
41833
|
} | undefined;
|
|
41808
41834
|
} | undefined;
|
|
41835
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41809
41836
|
caption?: string | undefined;
|
|
41837
|
+
alt?: string | undefined;
|
|
41810
41838
|
}>]>, "many">;
|
|
41811
41839
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
41812
41840
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -41844,7 +41872,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41844
41872
|
frameReferenceId: string;
|
|
41845
41873
|
} | undefined;
|
|
41846
41874
|
} | undefined;
|
|
41875
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41847
41876
|
caption?: string | undefined;
|
|
41877
|
+
alt?: string | undefined;
|
|
41848
41878
|
})[];
|
|
41849
41879
|
columnWidth?: number | undefined;
|
|
41850
41880
|
}, {
|
|
@@ -41881,7 +41911,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41881
41911
|
frameReferenceId: string;
|
|
41882
41912
|
} | undefined;
|
|
41883
41913
|
} | undefined;
|
|
41914
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41884
41915
|
caption?: string | undefined;
|
|
41916
|
+
alt?: string | undefined;
|
|
41885
41917
|
})[];
|
|
41886
41918
|
columnWidth?: number | undefined;
|
|
41887
41919
|
}>, "many">;
|
|
@@ -41920,7 +41952,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41920
41952
|
frameReferenceId: string;
|
|
41921
41953
|
} | undefined;
|
|
41922
41954
|
} | undefined;
|
|
41955
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41923
41956
|
caption?: string | undefined;
|
|
41957
|
+
alt?: string | undefined;
|
|
41924
41958
|
})[];
|
|
41925
41959
|
columnWidth?: number | undefined;
|
|
41926
41960
|
}[];
|
|
@@ -41959,7 +41993,9 @@ declare const PageBlockItemTableRow: z.ZodObject<{
|
|
|
41959
41993
|
frameReferenceId: string;
|
|
41960
41994
|
} | undefined;
|
|
41961
41995
|
} | undefined;
|
|
41996
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
41962
41997
|
caption?: string | undefined;
|
|
41998
|
+
alt?: string | undefined;
|
|
41963
41999
|
})[];
|
|
41964
42000
|
columnWidth?: number | undefined;
|
|
41965
42001
|
}[];
|
|
@@ -42091,6 +42127,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42091
42127
|
type: z.ZodLiteral<"Image">;
|
|
42092
42128
|
id: z.ZodString;
|
|
42093
42129
|
caption: z.ZodOptional<z.ZodString>;
|
|
42130
|
+
alt: z.ZodOptional<z.ZodString>;
|
|
42094
42131
|
value: z.ZodOptional<z.ZodObject<{
|
|
42095
42132
|
type: z.ZodEnum<["Resource", "FigmaNode"]>;
|
|
42096
42133
|
resource: z.ZodOptional<z.ZodObject<{
|
|
@@ -42134,6 +42171,7 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42134
42171
|
frameReferenceId: string;
|
|
42135
42172
|
} | undefined;
|
|
42136
42173
|
}>>;
|
|
42174
|
+
alignment: z.ZodOptional<z.ZodEnum<["Left", "Center", "Stretch"]>>;
|
|
42137
42175
|
}, "strip", z.ZodTypeAny, {
|
|
42138
42176
|
id: string;
|
|
42139
42177
|
type: "Image";
|
|
@@ -42148,7 +42186,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42148
42186
|
frameReferenceId: string;
|
|
42149
42187
|
} | undefined;
|
|
42150
42188
|
} | undefined;
|
|
42189
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42151
42190
|
caption?: string | undefined;
|
|
42191
|
+
alt?: string | undefined;
|
|
42152
42192
|
}, {
|
|
42153
42193
|
id: string;
|
|
42154
42194
|
type: "Image";
|
|
@@ -42163,7 +42203,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42163
42203
|
frameReferenceId: string;
|
|
42164
42204
|
} | undefined;
|
|
42165
42205
|
} | undefined;
|
|
42206
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42166
42207
|
caption?: string | undefined;
|
|
42208
|
+
alt?: string | undefined;
|
|
42167
42209
|
}>]>, "many">;
|
|
42168
42210
|
columnWidth: z.ZodOptional<z.ZodNumber>;
|
|
42169
42211
|
alignment: z.ZodEnum<["Left", "Center", "Right"]>;
|
|
@@ -42201,7 +42243,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42201
42243
|
frameReferenceId: string;
|
|
42202
42244
|
} | undefined;
|
|
42203
42245
|
} | undefined;
|
|
42246
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42204
42247
|
caption?: string | undefined;
|
|
42248
|
+
alt?: string | undefined;
|
|
42205
42249
|
})[];
|
|
42206
42250
|
columnWidth?: number | undefined;
|
|
42207
42251
|
}, {
|
|
@@ -42238,7 +42282,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42238
42282
|
frameReferenceId: string;
|
|
42239
42283
|
} | undefined;
|
|
42240
42284
|
} | undefined;
|
|
42285
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42241
42286
|
caption?: string | undefined;
|
|
42287
|
+
alt?: string | undefined;
|
|
42242
42288
|
})[];
|
|
42243
42289
|
columnWidth?: number | undefined;
|
|
42244
42290
|
}>, "many">;
|
|
@@ -42277,7 +42323,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42277
42323
|
frameReferenceId: string;
|
|
42278
42324
|
} | undefined;
|
|
42279
42325
|
} | undefined;
|
|
42326
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42280
42327
|
caption?: string | undefined;
|
|
42328
|
+
alt?: string | undefined;
|
|
42281
42329
|
})[];
|
|
42282
42330
|
columnWidth?: number | undefined;
|
|
42283
42331
|
}[];
|
|
@@ -42316,7 +42364,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42316
42364
|
frameReferenceId: string;
|
|
42317
42365
|
} | undefined;
|
|
42318
42366
|
} | undefined;
|
|
42367
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42319
42368
|
caption?: string | undefined;
|
|
42369
|
+
alt?: string | undefined;
|
|
42320
42370
|
})[];
|
|
42321
42371
|
columnWidth?: number | undefined;
|
|
42322
42372
|
}[];
|
|
@@ -42357,7 +42407,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42357
42407
|
frameReferenceId: string;
|
|
42358
42408
|
} | undefined;
|
|
42359
42409
|
} | undefined;
|
|
42410
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42360
42411
|
caption?: string | undefined;
|
|
42412
|
+
alt?: string | undefined;
|
|
42361
42413
|
})[];
|
|
42362
42414
|
columnWidth?: number | undefined;
|
|
42363
42415
|
}[];
|
|
@@ -42401,7 +42453,9 @@ declare const PageBlockItemTableValue: z.ZodObject<{
|
|
|
42401
42453
|
frameReferenceId: string;
|
|
42402
42454
|
} | undefined;
|
|
42403
42455
|
} | undefined;
|
|
42456
|
+
alignment?: "Center" | "Left" | "Stretch" | undefined;
|
|
42404
42457
|
caption?: string | undefined;
|
|
42458
|
+
alt?: string | undefined;
|
|
42405
42459
|
})[];
|
|
42406
42460
|
columnWidth?: number | undefined;
|
|
42407
42461
|
}[];
|
|
@@ -135376,13 +135430,13 @@ declare const PulsarContributionConfigurationProperty: z.ZodObject<z.objectUtil.
|
|
|
135376
135430
|
}>;
|
|
135377
135431
|
type PulsarContributionConfigurationProperty = z.infer<typeof PulsarContributionConfigurationProperty>;
|
|
135378
135432
|
|
|
135379
|
-
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135433
|
+
declare const FlaggedFeature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135380
135434
|
type FlaggedFeature = z.infer<typeof FlaggedFeature>;
|
|
135381
|
-
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>, z.ZodBoolean>;
|
|
135435
|
+
declare const FeatureFlagMap: z.ZodRecord<z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>, z.ZodBoolean>;
|
|
135382
135436
|
type FeatureFlagMap = z.infer<typeof FeatureFlagMap>;
|
|
135383
135437
|
declare const FeatureFlag: z.ZodObject<{
|
|
135384
135438
|
id: z.ZodString;
|
|
135385
|
-
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]>;
|
|
135439
|
+
feature: z.ZodEnum<["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]>;
|
|
135386
135440
|
createdAt: z.ZodDate;
|
|
135387
135441
|
enabled: z.ZodBoolean;
|
|
135388
135442
|
designSystemId: z.ZodOptional<z.ZodString>;
|
|
@@ -135390,13 +135444,13 @@ declare const FeatureFlag: z.ZodObject<{
|
|
|
135390
135444
|
id: string;
|
|
135391
135445
|
createdAt: Date;
|
|
135392
135446
|
enabled: boolean;
|
|
135393
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135447
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135394
135448
|
designSystemId?: string | undefined;
|
|
135395
135449
|
}, {
|
|
135396
135450
|
id: string;
|
|
135397
135451
|
createdAt: Date;
|
|
135398
135452
|
enabled: boolean;
|
|
135399
|
-
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter";
|
|
135453
|
+
feature: "FigmaImporterV2" | "ShadowOpacityOptional" | "DisableImporter" | "VariablesOrder";
|
|
135400
135454
|
designSystemId?: string | undefined;
|
|
135401
135455
|
}>;
|
|
135402
135456
|
type FeatureFlag = z.infer<typeof FeatureFlag>;
|
package/dist/index.js
CHANGED
|
@@ -2480,7 +2480,9 @@ var PageBlockItemTableImageNode = _zod.z.object({
|
|
|
2480
2480
|
type: _zod.z.literal("Image"),
|
|
2481
2481
|
id: _zod.z.string(),
|
|
2482
2482
|
caption: PageBlockItemImageValue.shape.caption,
|
|
2483
|
-
|
|
2483
|
+
alt: PageBlockItemImageValue.shape.alt,
|
|
2484
|
+
value: PageBlockItemImageValue.shape.value,
|
|
2485
|
+
alignment: PageBlockItemImageValue.shape.alignment
|
|
2484
2486
|
});
|
|
2485
2487
|
var PageBlockItemTableNode = _zod.z.discriminatedUnion("type", [
|
|
2486
2488
|
PageBlockItemTableRichTextNode,
|
|
@@ -4946,7 +4948,7 @@ var ExporterWorkspaceMembership = _zod.z.object({
|
|
|
4946
4948
|
|
|
4947
4949
|
// src/feature-flags/feature-flags.ts
|
|
4948
4950
|
|
|
4949
|
-
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter"]);
|
|
4951
|
+
var FlaggedFeature = _zod.z.enum(["FigmaImporterV2", "ShadowOpacityOptional", "DisableImporter", "VariablesOrder"]);
|
|
4950
4952
|
var FeatureFlagMap = _zod.z.record(FlaggedFeature, _zod.z.boolean());
|
|
4951
4953
|
var FeatureFlag = _zod.z.object({
|
|
4952
4954
|
id: _zod.z.string(),
|