@supernova-studio/model 0.51.2 → 0.52.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 +321 -0
- package/dist/index.d.ts +321 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/billing/features.ts +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -549,6 +549,19 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
549
549
|
errorReason: string;
|
|
550
550
|
enabled: boolean;
|
|
551
551
|
}>;
|
|
552
|
+
selectivePublishing: z.ZodObject<{
|
|
553
|
+
enabled: z.ZodBoolean;
|
|
554
|
+
errorMessage: z.ZodString;
|
|
555
|
+
errorReason: z.ZodString;
|
|
556
|
+
}, "strip", z.ZodTypeAny, {
|
|
557
|
+
errorMessage: string;
|
|
558
|
+
errorReason: string;
|
|
559
|
+
enabled: boolean;
|
|
560
|
+
}, {
|
|
561
|
+
errorMessage: string;
|
|
562
|
+
errorReason: string;
|
|
563
|
+
enabled: boolean;
|
|
564
|
+
}>;
|
|
552
565
|
}, "strip", z.ZodTypeAny, {
|
|
553
566
|
designSystems: {
|
|
554
567
|
max: number;
|
|
@@ -647,6 +660,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
647
660
|
errorReason: string;
|
|
648
661
|
enabled: boolean;
|
|
649
662
|
};
|
|
663
|
+
selectivePublishing: {
|
|
664
|
+
errorMessage: string;
|
|
665
|
+
errorReason: string;
|
|
666
|
+
enabled: boolean;
|
|
667
|
+
};
|
|
650
668
|
}, {
|
|
651
669
|
designSystems: {
|
|
652
670
|
max: number;
|
|
@@ -745,6 +763,11 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
745
763
|
errorReason: string;
|
|
746
764
|
enabled: boolean;
|
|
747
765
|
};
|
|
766
|
+
selectivePublishing: {
|
|
767
|
+
errorMessage: string;
|
|
768
|
+
errorReason: string;
|
|
769
|
+
enabled: boolean;
|
|
770
|
+
};
|
|
748
771
|
}>;
|
|
749
772
|
type FeaturesSummary = z.infer<typeof FeaturesSummary>;
|
|
750
773
|
|
|
@@ -1245,6 +1268,19 @@ declare const Subscription: z.ZodObject<{
|
|
|
1245
1268
|
errorReason: string;
|
|
1246
1269
|
enabled: boolean;
|
|
1247
1270
|
}>;
|
|
1271
|
+
selectivePublishing: z.ZodObject<{
|
|
1272
|
+
enabled: z.ZodBoolean;
|
|
1273
|
+
errorMessage: z.ZodString;
|
|
1274
|
+
errorReason: z.ZodString;
|
|
1275
|
+
}, "strip", z.ZodTypeAny, {
|
|
1276
|
+
errorMessage: string;
|
|
1277
|
+
errorReason: string;
|
|
1278
|
+
enabled: boolean;
|
|
1279
|
+
}, {
|
|
1280
|
+
errorMessage: string;
|
|
1281
|
+
errorReason: string;
|
|
1282
|
+
enabled: boolean;
|
|
1283
|
+
}>;
|
|
1248
1284
|
}, "strip", z.ZodTypeAny, {
|
|
1249
1285
|
designSystems: {
|
|
1250
1286
|
max: number;
|
|
@@ -1343,6 +1379,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1343
1379
|
errorReason: string;
|
|
1344
1380
|
enabled: boolean;
|
|
1345
1381
|
};
|
|
1382
|
+
selectivePublishing: {
|
|
1383
|
+
errorMessage: string;
|
|
1384
|
+
errorReason: string;
|
|
1385
|
+
enabled: boolean;
|
|
1386
|
+
};
|
|
1346
1387
|
}, {
|
|
1347
1388
|
designSystems: {
|
|
1348
1389
|
max: number;
|
|
@@ -1441,6 +1482,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1441
1482
|
errorReason: string;
|
|
1442
1483
|
enabled: boolean;
|
|
1443
1484
|
};
|
|
1485
|
+
selectivePublishing: {
|
|
1486
|
+
errorMessage: string;
|
|
1487
|
+
errorReason: string;
|
|
1488
|
+
enabled: boolean;
|
|
1489
|
+
};
|
|
1444
1490
|
}>>;
|
|
1445
1491
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
1446
1492
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1606,6 +1652,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1606
1652
|
errorReason: string;
|
|
1607
1653
|
enabled: boolean;
|
|
1608
1654
|
};
|
|
1655
|
+
selectivePublishing: {
|
|
1656
|
+
errorMessage: string;
|
|
1657
|
+
errorReason: string;
|
|
1658
|
+
enabled: boolean;
|
|
1659
|
+
};
|
|
1609
1660
|
} | undefined;
|
|
1610
1661
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
1611
1662
|
currentPeriodStart?: string | undefined;
|
|
@@ -1738,6 +1789,11 @@ declare const Subscription: z.ZodObject<{
|
|
|
1738
1789
|
errorReason: string;
|
|
1739
1790
|
enabled: boolean;
|
|
1740
1791
|
};
|
|
1792
|
+
selectivePublishing: {
|
|
1793
|
+
errorMessage: string;
|
|
1794
|
+
errorReason: string;
|
|
1795
|
+
enabled: boolean;
|
|
1796
|
+
};
|
|
1741
1797
|
} | undefined;
|
|
1742
1798
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
1743
1799
|
currentPeriodStart?: string | undefined;
|
|
@@ -10654,6 +10710,19 @@ declare const UserDump: z.ZodObject<{
|
|
|
10654
10710
|
errorReason: string;
|
|
10655
10711
|
enabled: boolean;
|
|
10656
10712
|
}>;
|
|
10713
|
+
selectivePublishing: z.ZodObject<{
|
|
10714
|
+
enabled: z.ZodBoolean;
|
|
10715
|
+
errorMessage: z.ZodString;
|
|
10716
|
+
errorReason: z.ZodString;
|
|
10717
|
+
}, "strip", z.ZodTypeAny, {
|
|
10718
|
+
errorMessage: string;
|
|
10719
|
+
errorReason: string;
|
|
10720
|
+
enabled: boolean;
|
|
10721
|
+
}, {
|
|
10722
|
+
errorMessage: string;
|
|
10723
|
+
errorReason: string;
|
|
10724
|
+
enabled: boolean;
|
|
10725
|
+
}>;
|
|
10657
10726
|
}, "strip", z.ZodTypeAny, {
|
|
10658
10727
|
designSystems: {
|
|
10659
10728
|
max: number;
|
|
@@ -10752,6 +10821,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
10752
10821
|
errorReason: string;
|
|
10753
10822
|
enabled: boolean;
|
|
10754
10823
|
};
|
|
10824
|
+
selectivePublishing: {
|
|
10825
|
+
errorMessage: string;
|
|
10826
|
+
errorReason: string;
|
|
10827
|
+
enabled: boolean;
|
|
10828
|
+
};
|
|
10755
10829
|
}, {
|
|
10756
10830
|
designSystems: {
|
|
10757
10831
|
max: number;
|
|
@@ -10850,6 +10924,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
10850
10924
|
errorReason: string;
|
|
10851
10925
|
enabled: boolean;
|
|
10852
10926
|
};
|
|
10927
|
+
selectivePublishing: {
|
|
10928
|
+
errorMessage: string;
|
|
10929
|
+
errorReason: string;
|
|
10930
|
+
enabled: boolean;
|
|
10931
|
+
};
|
|
10853
10932
|
}>>;
|
|
10854
10933
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
10855
10934
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -11015,6 +11094,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11015
11094
|
errorReason: string;
|
|
11016
11095
|
enabled: boolean;
|
|
11017
11096
|
};
|
|
11097
|
+
selectivePublishing: {
|
|
11098
|
+
errorMessage: string;
|
|
11099
|
+
errorReason: string;
|
|
11100
|
+
enabled: boolean;
|
|
11101
|
+
};
|
|
11018
11102
|
} | undefined;
|
|
11019
11103
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11020
11104
|
currentPeriodStart?: string | undefined;
|
|
@@ -11147,6 +11231,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11147
11231
|
errorReason: string;
|
|
11148
11232
|
enabled: boolean;
|
|
11149
11233
|
};
|
|
11234
|
+
selectivePublishing: {
|
|
11235
|
+
errorMessage: string;
|
|
11236
|
+
errorReason: string;
|
|
11237
|
+
enabled: boolean;
|
|
11238
|
+
};
|
|
11150
11239
|
} | undefined;
|
|
11151
11240
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11152
11241
|
currentPeriodStart?: string | undefined;
|
|
@@ -11455,6 +11544,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11455
11544
|
errorReason: string;
|
|
11456
11545
|
enabled: boolean;
|
|
11457
11546
|
};
|
|
11547
|
+
selectivePublishing: {
|
|
11548
|
+
errorMessage: string;
|
|
11549
|
+
errorReason: string;
|
|
11550
|
+
enabled: boolean;
|
|
11551
|
+
};
|
|
11458
11552
|
} | undefined;
|
|
11459
11553
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11460
11554
|
currentPeriodStart?: string | undefined;
|
|
@@ -11652,6 +11746,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
11652
11746
|
errorReason: string;
|
|
11653
11747
|
enabled: boolean;
|
|
11654
11748
|
};
|
|
11749
|
+
selectivePublishing: {
|
|
11750
|
+
errorMessage: string;
|
|
11751
|
+
errorReason: string;
|
|
11752
|
+
enabled: boolean;
|
|
11753
|
+
};
|
|
11655
11754
|
} | undefined;
|
|
11656
11755
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
11657
11756
|
currentPeriodStart?: string | undefined;
|
|
@@ -17384,6 +17483,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
17384
17483
|
errorReason: string;
|
|
17385
17484
|
enabled: boolean;
|
|
17386
17485
|
};
|
|
17486
|
+
selectivePublishing: {
|
|
17487
|
+
errorMessage: string;
|
|
17488
|
+
errorReason: string;
|
|
17489
|
+
enabled: boolean;
|
|
17490
|
+
};
|
|
17387
17491
|
} | undefined;
|
|
17388
17492
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
17389
17493
|
currentPeriodStart?: string | undefined;
|
|
@@ -18180,6 +18284,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
18180
18284
|
errorReason: string;
|
|
18181
18285
|
enabled: boolean;
|
|
18182
18286
|
};
|
|
18287
|
+
selectivePublishing: {
|
|
18288
|
+
errorMessage: string;
|
|
18289
|
+
errorReason: string;
|
|
18290
|
+
enabled: boolean;
|
|
18291
|
+
};
|
|
18183
18292
|
} | undefined;
|
|
18184
18293
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
18185
18294
|
currentPeriodStart?: string | undefined;
|
|
@@ -18978,6 +19087,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
18978
19087
|
errorReason: string;
|
|
18979
19088
|
enabled: boolean;
|
|
18980
19089
|
};
|
|
19090
|
+
selectivePublishing: {
|
|
19091
|
+
errorMessage: string;
|
|
19092
|
+
errorReason: string;
|
|
19093
|
+
enabled: boolean;
|
|
19094
|
+
};
|
|
18981
19095
|
} | undefined;
|
|
18982
19096
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
18983
19097
|
currentPeriodStart?: string | undefined;
|
|
@@ -19845,6 +19959,11 @@ declare const UserDump: z.ZodObject<{
|
|
|
19845
19959
|
errorReason: string;
|
|
19846
19960
|
enabled: boolean;
|
|
19847
19961
|
};
|
|
19962
|
+
selectivePublishing: {
|
|
19963
|
+
errorMessage: string;
|
|
19964
|
+
errorReason: string;
|
|
19965
|
+
enabled: boolean;
|
|
19966
|
+
};
|
|
19848
19967
|
} | undefined;
|
|
19849
19968
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
19850
19969
|
currentPeriodStart?: string | undefined;
|
|
@@ -20509,6 +20628,19 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
20509
20628
|
errorReason: string;
|
|
20510
20629
|
enabled: boolean;
|
|
20511
20630
|
}>;
|
|
20631
|
+
selectivePublishing: z.ZodObject<{
|
|
20632
|
+
enabled: z.ZodBoolean;
|
|
20633
|
+
errorMessage: z.ZodString;
|
|
20634
|
+
errorReason: z.ZodString;
|
|
20635
|
+
}, "strip", z.ZodTypeAny, {
|
|
20636
|
+
errorMessage: string;
|
|
20637
|
+
errorReason: string;
|
|
20638
|
+
enabled: boolean;
|
|
20639
|
+
}, {
|
|
20640
|
+
errorMessage: string;
|
|
20641
|
+
errorReason: string;
|
|
20642
|
+
enabled: boolean;
|
|
20643
|
+
}>;
|
|
20512
20644
|
}, "strip", z.ZodTypeAny, {
|
|
20513
20645
|
designSystems: {
|
|
20514
20646
|
max: number;
|
|
@@ -20607,6 +20739,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
20607
20739
|
errorReason: string;
|
|
20608
20740
|
enabled: boolean;
|
|
20609
20741
|
};
|
|
20742
|
+
selectivePublishing: {
|
|
20743
|
+
errorMessage: string;
|
|
20744
|
+
errorReason: string;
|
|
20745
|
+
enabled: boolean;
|
|
20746
|
+
};
|
|
20610
20747
|
}, {
|
|
20611
20748
|
designSystems: {
|
|
20612
20749
|
max: number;
|
|
@@ -20705,6 +20842,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
20705
20842
|
errorReason: string;
|
|
20706
20843
|
enabled: boolean;
|
|
20707
20844
|
};
|
|
20845
|
+
selectivePublishing: {
|
|
20846
|
+
errorMessage: string;
|
|
20847
|
+
errorReason: string;
|
|
20848
|
+
enabled: boolean;
|
|
20849
|
+
};
|
|
20708
20850
|
}>>;
|
|
20709
20851
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
20710
20852
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -20870,6 +21012,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
20870
21012
|
errorReason: string;
|
|
20871
21013
|
enabled: boolean;
|
|
20872
21014
|
};
|
|
21015
|
+
selectivePublishing: {
|
|
21016
|
+
errorMessage: string;
|
|
21017
|
+
errorReason: string;
|
|
21018
|
+
enabled: boolean;
|
|
21019
|
+
};
|
|
20873
21020
|
} | undefined;
|
|
20874
21021
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
20875
21022
|
currentPeriodStart?: string | undefined;
|
|
@@ -21002,6 +21149,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21002
21149
|
errorReason: string;
|
|
21003
21150
|
enabled: boolean;
|
|
21004
21151
|
};
|
|
21152
|
+
selectivePublishing: {
|
|
21153
|
+
errorMessage: string;
|
|
21154
|
+
errorReason: string;
|
|
21155
|
+
enabled: boolean;
|
|
21156
|
+
};
|
|
21005
21157
|
} | undefined;
|
|
21006
21158
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21007
21159
|
currentPeriodStart?: string | undefined;
|
|
@@ -21310,6 +21462,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21310
21462
|
errorReason: string;
|
|
21311
21463
|
enabled: boolean;
|
|
21312
21464
|
};
|
|
21465
|
+
selectivePublishing: {
|
|
21466
|
+
errorMessage: string;
|
|
21467
|
+
errorReason: string;
|
|
21468
|
+
enabled: boolean;
|
|
21469
|
+
};
|
|
21313
21470
|
} | undefined;
|
|
21314
21471
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21315
21472
|
currentPeriodStart?: string | undefined;
|
|
@@ -21507,6 +21664,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
21507
21664
|
errorReason: string;
|
|
21508
21665
|
enabled: boolean;
|
|
21509
21666
|
};
|
|
21667
|
+
selectivePublishing: {
|
|
21668
|
+
errorMessage: string;
|
|
21669
|
+
errorReason: string;
|
|
21670
|
+
enabled: boolean;
|
|
21671
|
+
};
|
|
21510
21672
|
} | undefined;
|
|
21511
21673
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
21512
21674
|
currentPeriodStart?: string | undefined;
|
|
@@ -27239,6 +27401,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
27239
27401
|
errorReason: string;
|
|
27240
27402
|
enabled: boolean;
|
|
27241
27403
|
};
|
|
27404
|
+
selectivePublishing: {
|
|
27405
|
+
errorMessage: string;
|
|
27406
|
+
errorReason: string;
|
|
27407
|
+
enabled: boolean;
|
|
27408
|
+
};
|
|
27242
27409
|
} | undefined;
|
|
27243
27410
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
27244
27411
|
currentPeriodStart?: string | undefined;
|
|
@@ -28035,6 +28202,11 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
28035
28202
|
errorReason: string;
|
|
28036
28203
|
enabled: boolean;
|
|
28037
28204
|
};
|
|
28205
|
+
selectivePublishing: {
|
|
28206
|
+
errorMessage: string;
|
|
28207
|
+
errorReason: string;
|
|
28208
|
+
enabled: boolean;
|
|
28209
|
+
};
|
|
28038
28210
|
} | undefined;
|
|
28039
28211
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
28040
28212
|
currentPeriodStart?: string | undefined;
|
|
@@ -126132,6 +126304,19 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126132
126304
|
errorReason: string;
|
|
126133
126305
|
enabled: boolean;
|
|
126134
126306
|
}>;
|
|
126307
|
+
selectivePublishing: z.ZodObject<{
|
|
126308
|
+
enabled: z.ZodBoolean;
|
|
126309
|
+
errorMessage: z.ZodString;
|
|
126310
|
+
errorReason: z.ZodString;
|
|
126311
|
+
}, "strip", z.ZodTypeAny, {
|
|
126312
|
+
errorMessage: string;
|
|
126313
|
+
errorReason: string;
|
|
126314
|
+
enabled: boolean;
|
|
126315
|
+
}, {
|
|
126316
|
+
errorMessage: string;
|
|
126317
|
+
errorReason: string;
|
|
126318
|
+
enabled: boolean;
|
|
126319
|
+
}>;
|
|
126135
126320
|
}, "strip", z.ZodTypeAny, {
|
|
126136
126321
|
designSystems: {
|
|
126137
126322
|
max: number;
|
|
@@ -126230,6 +126415,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126230
126415
|
errorReason: string;
|
|
126231
126416
|
enabled: boolean;
|
|
126232
126417
|
};
|
|
126418
|
+
selectivePublishing: {
|
|
126419
|
+
errorMessage: string;
|
|
126420
|
+
errorReason: string;
|
|
126421
|
+
enabled: boolean;
|
|
126422
|
+
};
|
|
126233
126423
|
}, {
|
|
126234
126424
|
designSystems: {
|
|
126235
126425
|
max: number;
|
|
@@ -126328,6 +126518,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126328
126518
|
errorReason: string;
|
|
126329
126519
|
enabled: boolean;
|
|
126330
126520
|
};
|
|
126521
|
+
selectivePublishing: {
|
|
126522
|
+
errorMessage: string;
|
|
126523
|
+
errorReason: string;
|
|
126524
|
+
enabled: boolean;
|
|
126525
|
+
};
|
|
126331
126526
|
}>>;
|
|
126332
126527
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
126333
126528
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -126493,6 +126688,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126493
126688
|
errorReason: string;
|
|
126494
126689
|
enabled: boolean;
|
|
126495
126690
|
};
|
|
126691
|
+
selectivePublishing: {
|
|
126692
|
+
errorMessage: string;
|
|
126693
|
+
errorReason: string;
|
|
126694
|
+
enabled: boolean;
|
|
126695
|
+
};
|
|
126496
126696
|
} | undefined;
|
|
126497
126697
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
126498
126698
|
currentPeriodStart?: string | undefined;
|
|
@@ -126625,6 +126825,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126625
126825
|
errorReason: string;
|
|
126626
126826
|
enabled: boolean;
|
|
126627
126827
|
};
|
|
126828
|
+
selectivePublishing: {
|
|
126829
|
+
errorMessage: string;
|
|
126830
|
+
errorReason: string;
|
|
126831
|
+
enabled: boolean;
|
|
126832
|
+
};
|
|
126628
126833
|
} | undefined;
|
|
126629
126834
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
126630
126835
|
currentPeriodStart?: string | undefined;
|
|
@@ -126933,6 +127138,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
126933
127138
|
errorReason: string;
|
|
126934
127139
|
enabled: boolean;
|
|
126935
127140
|
};
|
|
127141
|
+
selectivePublishing: {
|
|
127142
|
+
errorMessage: string;
|
|
127143
|
+
errorReason: string;
|
|
127144
|
+
enabled: boolean;
|
|
127145
|
+
};
|
|
126936
127146
|
} | undefined;
|
|
126937
127147
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
126938
127148
|
currentPeriodStart?: string | undefined;
|
|
@@ -127130,6 +127340,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
127130
127340
|
errorReason: string;
|
|
127131
127341
|
enabled: boolean;
|
|
127132
127342
|
};
|
|
127343
|
+
selectivePublishing: {
|
|
127344
|
+
errorMessage: string;
|
|
127345
|
+
errorReason: string;
|
|
127346
|
+
enabled: boolean;
|
|
127347
|
+
};
|
|
127133
127348
|
} | undefined;
|
|
127134
127349
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
127135
127350
|
currentPeriodStart?: string | undefined;
|
|
@@ -127329,6 +127544,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
127329
127544
|
errorReason: string;
|
|
127330
127545
|
enabled: boolean;
|
|
127331
127546
|
};
|
|
127547
|
+
selectivePublishing: {
|
|
127548
|
+
errorMessage: string;
|
|
127549
|
+
errorReason: string;
|
|
127550
|
+
enabled: boolean;
|
|
127551
|
+
};
|
|
127332
127552
|
} | undefined;
|
|
127333
127553
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
127334
127554
|
currentPeriodStart?: string | undefined;
|
|
@@ -127550,6 +127770,11 @@ declare const DesignSystemWithWorkspace: z.ZodObject<{
|
|
|
127550
127770
|
errorReason: string;
|
|
127551
127771
|
enabled: boolean;
|
|
127552
127772
|
};
|
|
127773
|
+
selectivePublishing: {
|
|
127774
|
+
errorMessage: string;
|
|
127775
|
+
errorReason: string;
|
|
127776
|
+
enabled: boolean;
|
|
127777
|
+
};
|
|
127553
127778
|
} | undefined;
|
|
127554
127779
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
127555
127780
|
currentPeriodStart?: string | undefined;
|
|
@@ -161524,6 +161749,19 @@ declare const Workspace: z.ZodObject<{
|
|
|
161524
161749
|
errorReason: string;
|
|
161525
161750
|
enabled: boolean;
|
|
161526
161751
|
}>;
|
|
161752
|
+
selectivePublishing: z.ZodObject<{
|
|
161753
|
+
enabled: z.ZodBoolean;
|
|
161754
|
+
errorMessage: z.ZodString;
|
|
161755
|
+
errorReason: z.ZodString;
|
|
161756
|
+
}, "strip", z.ZodTypeAny, {
|
|
161757
|
+
errorMessage: string;
|
|
161758
|
+
errorReason: string;
|
|
161759
|
+
enabled: boolean;
|
|
161760
|
+
}, {
|
|
161761
|
+
errorMessage: string;
|
|
161762
|
+
errorReason: string;
|
|
161763
|
+
enabled: boolean;
|
|
161764
|
+
}>;
|
|
161527
161765
|
}, "strip", z.ZodTypeAny, {
|
|
161528
161766
|
designSystems: {
|
|
161529
161767
|
max: number;
|
|
@@ -161622,6 +161860,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
161622
161860
|
errorReason: string;
|
|
161623
161861
|
enabled: boolean;
|
|
161624
161862
|
};
|
|
161863
|
+
selectivePublishing: {
|
|
161864
|
+
errorMessage: string;
|
|
161865
|
+
errorReason: string;
|
|
161866
|
+
enabled: boolean;
|
|
161867
|
+
};
|
|
161625
161868
|
}, {
|
|
161626
161869
|
designSystems: {
|
|
161627
161870
|
max: number;
|
|
@@ -161720,6 +161963,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
161720
161963
|
errorReason: string;
|
|
161721
161964
|
enabled: boolean;
|
|
161722
161965
|
};
|
|
161966
|
+
selectivePublishing: {
|
|
161967
|
+
errorMessage: string;
|
|
161968
|
+
errorReason: string;
|
|
161969
|
+
enabled: boolean;
|
|
161970
|
+
};
|
|
161723
161971
|
}>>;
|
|
161724
161972
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
161725
161973
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -161885,6 +162133,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
161885
162133
|
errorReason: string;
|
|
161886
162134
|
enabled: boolean;
|
|
161887
162135
|
};
|
|
162136
|
+
selectivePublishing: {
|
|
162137
|
+
errorMessage: string;
|
|
162138
|
+
errorReason: string;
|
|
162139
|
+
enabled: boolean;
|
|
162140
|
+
};
|
|
161888
162141
|
} | undefined;
|
|
161889
162142
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
161890
162143
|
currentPeriodStart?: string | undefined;
|
|
@@ -162017,6 +162270,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
162017
162270
|
errorReason: string;
|
|
162018
162271
|
enabled: boolean;
|
|
162019
162272
|
};
|
|
162273
|
+
selectivePublishing: {
|
|
162274
|
+
errorMessage: string;
|
|
162275
|
+
errorReason: string;
|
|
162276
|
+
enabled: boolean;
|
|
162277
|
+
};
|
|
162020
162278
|
} | undefined;
|
|
162021
162279
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
162022
162280
|
currentPeriodStart?: string | undefined;
|
|
@@ -162325,6 +162583,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
162325
162583
|
errorReason: string;
|
|
162326
162584
|
enabled: boolean;
|
|
162327
162585
|
};
|
|
162586
|
+
selectivePublishing: {
|
|
162587
|
+
errorMessage: string;
|
|
162588
|
+
errorReason: string;
|
|
162589
|
+
enabled: boolean;
|
|
162590
|
+
};
|
|
162328
162591
|
} | undefined;
|
|
162329
162592
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
162330
162593
|
currentPeriodStart?: string | undefined;
|
|
@@ -162522,6 +162785,11 @@ declare const Workspace: z.ZodObject<{
|
|
|
162522
162785
|
errorReason: string;
|
|
162523
162786
|
enabled: boolean;
|
|
162524
162787
|
};
|
|
162788
|
+
selectivePublishing: {
|
|
162789
|
+
errorMessage: string;
|
|
162790
|
+
errorReason: string;
|
|
162791
|
+
enabled: boolean;
|
|
162792
|
+
};
|
|
162525
162793
|
} | undefined;
|
|
162526
162794
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
162527
162795
|
currentPeriodStart?: string | undefined;
|
|
@@ -162947,6 +163215,19 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
162947
163215
|
errorReason: string;
|
|
162948
163216
|
enabled: boolean;
|
|
162949
163217
|
}>;
|
|
163218
|
+
selectivePublishing: z.ZodObject<{
|
|
163219
|
+
enabled: z.ZodBoolean;
|
|
163220
|
+
errorMessage: z.ZodString;
|
|
163221
|
+
errorReason: z.ZodString;
|
|
163222
|
+
}, "strip", z.ZodTypeAny, {
|
|
163223
|
+
errorMessage: string;
|
|
163224
|
+
errorReason: string;
|
|
163225
|
+
enabled: boolean;
|
|
163226
|
+
}, {
|
|
163227
|
+
errorMessage: string;
|
|
163228
|
+
errorReason: string;
|
|
163229
|
+
enabled: boolean;
|
|
163230
|
+
}>;
|
|
162950
163231
|
}, "strip", z.ZodTypeAny, {
|
|
162951
163232
|
designSystems: {
|
|
162952
163233
|
max: number;
|
|
@@ -163045,6 +163326,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163045
163326
|
errorReason: string;
|
|
163046
163327
|
enabled: boolean;
|
|
163047
163328
|
};
|
|
163329
|
+
selectivePublishing: {
|
|
163330
|
+
errorMessage: string;
|
|
163331
|
+
errorReason: string;
|
|
163332
|
+
enabled: boolean;
|
|
163333
|
+
};
|
|
163048
163334
|
}, {
|
|
163049
163335
|
designSystems: {
|
|
163050
163336
|
max: number;
|
|
@@ -163143,6 +163429,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163143
163429
|
errorReason: string;
|
|
163144
163430
|
enabled: boolean;
|
|
163145
163431
|
};
|
|
163432
|
+
selectivePublishing: {
|
|
163433
|
+
errorMessage: string;
|
|
163434
|
+
errorReason: string;
|
|
163435
|
+
enabled: boolean;
|
|
163436
|
+
};
|
|
163146
163437
|
}>>;
|
|
163147
163438
|
stripeProductDescription: z.ZodOptional<z.ZodString>;
|
|
163148
163439
|
stripeProductFeatures: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -163308,6 +163599,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163308
163599
|
errorReason: string;
|
|
163309
163600
|
enabled: boolean;
|
|
163310
163601
|
};
|
|
163602
|
+
selectivePublishing: {
|
|
163603
|
+
errorMessage: string;
|
|
163604
|
+
errorReason: string;
|
|
163605
|
+
enabled: boolean;
|
|
163606
|
+
};
|
|
163311
163607
|
} | undefined;
|
|
163312
163608
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
163313
163609
|
currentPeriodStart?: string | undefined;
|
|
@@ -163440,6 +163736,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163440
163736
|
errorReason: string;
|
|
163441
163737
|
enabled: boolean;
|
|
163442
163738
|
};
|
|
163739
|
+
selectivePublishing: {
|
|
163740
|
+
errorMessage: string;
|
|
163741
|
+
errorReason: string;
|
|
163742
|
+
enabled: boolean;
|
|
163743
|
+
};
|
|
163443
163744
|
} | undefined;
|
|
163444
163745
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
163445
163746
|
currentPeriodStart?: string | undefined;
|
|
@@ -163748,6 +164049,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163748
164049
|
errorReason: string;
|
|
163749
164050
|
enabled: boolean;
|
|
163750
164051
|
};
|
|
164052
|
+
selectivePublishing: {
|
|
164053
|
+
errorMessage: string;
|
|
164054
|
+
errorReason: string;
|
|
164055
|
+
enabled: boolean;
|
|
164056
|
+
};
|
|
163751
164057
|
} | undefined;
|
|
163752
164058
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
163753
164059
|
currentPeriodStart?: string | undefined;
|
|
@@ -163945,6 +164251,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
163945
164251
|
errorReason: string;
|
|
163946
164252
|
enabled: boolean;
|
|
163947
164253
|
};
|
|
164254
|
+
selectivePublishing: {
|
|
164255
|
+
errorMessage: string;
|
|
164256
|
+
errorReason: string;
|
|
164257
|
+
enabled: boolean;
|
|
164258
|
+
};
|
|
163948
164259
|
} | undefined;
|
|
163949
164260
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
163950
164261
|
currentPeriodStart?: string | undefined;
|
|
@@ -164239,6 +164550,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
164239
164550
|
errorReason: string;
|
|
164240
164551
|
enabled: boolean;
|
|
164241
164552
|
};
|
|
164553
|
+
selectivePublishing: {
|
|
164554
|
+
errorMessage: string;
|
|
164555
|
+
errorReason: string;
|
|
164556
|
+
enabled: boolean;
|
|
164557
|
+
};
|
|
164242
164558
|
} | undefined;
|
|
164243
164559
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
164244
164560
|
currentPeriodStart?: string | undefined;
|
|
@@ -164460,6 +164776,11 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
164460
164776
|
errorReason: string;
|
|
164461
164777
|
enabled: boolean;
|
|
164462
164778
|
};
|
|
164779
|
+
selectivePublishing: {
|
|
164780
|
+
errorMessage: string;
|
|
164781
|
+
errorReason: string;
|
|
164782
|
+
enabled: boolean;
|
|
164783
|
+
};
|
|
164463
164784
|
} | undefined;
|
|
164464
164785
|
stripeSubscriptionMainItemId?: string | undefined;
|
|
164465
164786
|
currentPeriodStart?: string | undefined;
|