@supernova-studio/model 1.4.23 → 1.5.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 +1004 -630
- package/dist/index.d.ts +1004 -630
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -459,17 +459,17 @@ declare const BillingDetails: z.ZodObject<{
|
|
|
459
459
|
type BillingDetails = z.infer<typeof BillingDetails>;
|
|
460
460
|
|
|
461
461
|
declare const featureLimitedSchema: z.ZodObject<{
|
|
462
|
-
max: z.ZodNumber
|
|
462
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
463
463
|
errorMessage: z.ZodString;
|
|
464
464
|
errorReason: z.ZodString;
|
|
465
465
|
}, "strip", z.ZodTypeAny, {
|
|
466
466
|
errorMessage: string;
|
|
467
|
-
max: number;
|
|
468
467
|
errorReason: string;
|
|
468
|
+
max?: number | undefined;
|
|
469
469
|
}, {
|
|
470
470
|
errorMessage: string;
|
|
471
|
-
max: number;
|
|
472
471
|
errorReason: string;
|
|
472
|
+
max?: number | undefined;
|
|
473
473
|
}>;
|
|
474
474
|
declare const featureToggleSchema: z.ZodObject<{
|
|
475
475
|
enabled: z.ZodBoolean;
|
|
@@ -485,7 +485,7 @@ declare const featureToggleSchema: z.ZodObject<{
|
|
|
485
485
|
enabled: boolean;
|
|
486
486
|
}>;
|
|
487
487
|
declare const featureWithImportJobsSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
488
|
-
max: z.ZodNumber
|
|
488
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
489
489
|
errorMessage: z.ZodString;
|
|
490
490
|
errorReason: z.ZodString;
|
|
491
491
|
}, {
|
|
@@ -493,36 +493,36 @@ declare const featureWithImportJobsSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
493
493
|
noImportJobsErrorReason: z.ZodString;
|
|
494
494
|
}>, "strip", z.ZodTypeAny, {
|
|
495
495
|
errorMessage: string;
|
|
496
|
-
max: number;
|
|
497
496
|
errorReason: string;
|
|
498
497
|
noImportJobsErrorMessage: string;
|
|
499
498
|
noImportJobsErrorReason: string;
|
|
499
|
+
max?: number | undefined;
|
|
500
500
|
}, {
|
|
501
501
|
errorMessage: string;
|
|
502
|
-
max: number;
|
|
503
502
|
errorReason: string;
|
|
504
503
|
noImportJobsErrorMessage: string;
|
|
505
504
|
noImportJobsErrorReason: string;
|
|
505
|
+
max?: number | undefined;
|
|
506
506
|
}>;
|
|
507
507
|
type FeatureLimitedDetails = z.infer<typeof featureLimitedSchema>;
|
|
508
508
|
type FeatureToggleDetails = z.infer<typeof featureToggleSchema>;
|
|
509
509
|
type FeatureWithImportJobsDetails = z.infer<typeof featureWithImportJobsSchema>;
|
|
510
510
|
declare const FeaturesSummary: z.ZodObject<{
|
|
511
511
|
designSystems: z.ZodObject<{
|
|
512
|
-
max: z.ZodNumber
|
|
512
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
513
513
|
errorMessage: z.ZodString;
|
|
514
514
|
errorReason: z.ZodString;
|
|
515
515
|
}, "strip", z.ZodTypeAny, {
|
|
516
516
|
errorMessage: string;
|
|
517
|
-
max: number;
|
|
518
517
|
errorReason: string;
|
|
518
|
+
max?: number | undefined;
|
|
519
519
|
}, {
|
|
520
520
|
errorMessage: string;
|
|
521
|
-
max: number;
|
|
522
521
|
errorReason: string;
|
|
522
|
+
max?: number | undefined;
|
|
523
523
|
}>;
|
|
524
524
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
525
|
-
max: z.ZodNumber
|
|
525
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
526
526
|
errorMessage: z.ZodString;
|
|
527
527
|
errorReason: z.ZodString;
|
|
528
528
|
}, {
|
|
@@ -530,68 +530,68 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
530
530
|
noImportJobsErrorReason: z.ZodString;
|
|
531
531
|
}>, "strip", z.ZodTypeAny, {
|
|
532
532
|
errorMessage: string;
|
|
533
|
-
max: number;
|
|
534
533
|
errorReason: string;
|
|
535
534
|
noImportJobsErrorMessage: string;
|
|
536
535
|
noImportJobsErrorReason: string;
|
|
536
|
+
max?: number | undefined;
|
|
537
537
|
}, {
|
|
538
538
|
errorMessage: string;
|
|
539
|
-
max: number;
|
|
540
539
|
errorReason: string;
|
|
541
540
|
noImportJobsErrorMessage: string;
|
|
542
541
|
noImportJobsErrorReason: string;
|
|
542
|
+
max?: number | undefined;
|
|
543
543
|
}>;
|
|
544
544
|
designSystemVersions: z.ZodObject<{
|
|
545
|
-
max: z.ZodNumber
|
|
545
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
546
546
|
errorMessage: z.ZodString;
|
|
547
547
|
errorReason: z.ZodString;
|
|
548
548
|
}, "strip", z.ZodTypeAny, {
|
|
549
549
|
errorMessage: string;
|
|
550
|
-
max: number;
|
|
551
550
|
errorReason: string;
|
|
551
|
+
max?: number | undefined;
|
|
552
552
|
}, {
|
|
553
553
|
errorMessage: string;
|
|
554
|
-
max: number;
|
|
555
554
|
errorReason: string;
|
|
555
|
+
max?: number | undefined;
|
|
556
556
|
}>;
|
|
557
557
|
themes: z.ZodObject<{
|
|
558
|
-
max: z.ZodNumber
|
|
558
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
559
559
|
errorMessage: z.ZodString;
|
|
560
560
|
errorReason: z.ZodString;
|
|
561
561
|
}, "strip", z.ZodTypeAny, {
|
|
562
562
|
errorMessage: string;
|
|
563
|
-
max: number;
|
|
564
563
|
errorReason: string;
|
|
564
|
+
max?: number | undefined;
|
|
565
565
|
}, {
|
|
566
566
|
errorMessage: string;
|
|
567
|
-
max: number;
|
|
568
567
|
errorReason: string;
|
|
568
|
+
max?: number | undefined;
|
|
569
569
|
}>;
|
|
570
570
|
brands: z.ZodObject<{
|
|
571
|
-
max: z.ZodNumber
|
|
571
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
572
572
|
errorMessage: z.ZodString;
|
|
573
573
|
errorReason: z.ZodString;
|
|
574
574
|
}, "strip", z.ZodTypeAny, {
|
|
575
575
|
errorMessage: string;
|
|
576
|
-
max: number;
|
|
577
576
|
errorReason: string;
|
|
577
|
+
max?: number | undefined;
|
|
578
578
|
}, {
|
|
579
579
|
errorMessage: string;
|
|
580
|
-
max: number;
|
|
581
580
|
errorReason: string;
|
|
581
|
+
max?: number | undefined;
|
|
582
582
|
}>;
|
|
583
583
|
codegenSchedules: z.ZodObject<{
|
|
584
|
-
max: z.ZodNumber
|
|
584
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
585
585
|
errorMessage: z.ZodString;
|
|
586
586
|
errorReason: z.ZodString;
|
|
587
587
|
}, "strip", z.ZodTypeAny, {
|
|
588
588
|
errorMessage: string;
|
|
589
|
-
max: number;
|
|
590
589
|
errorReason: string;
|
|
590
|
+
max?: number | undefined;
|
|
591
591
|
}, {
|
|
592
592
|
errorMessage: string;
|
|
593
|
-
max: number;
|
|
594
593
|
errorReason: string;
|
|
594
|
+
max?: number | undefined;
|
|
595
595
|
}>;
|
|
596
596
|
publicDocumentation: z.ZodObject<{
|
|
597
597
|
enabled: z.ZodBoolean;
|
|
@@ -698,30 +698,30 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
698
698
|
enabled: boolean;
|
|
699
699
|
}>;
|
|
700
700
|
workspacePaidSeats: z.ZodObject<{
|
|
701
|
-
max: z.ZodNumber
|
|
701
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
702
702
|
errorMessage: z.ZodString;
|
|
703
703
|
errorReason: z.ZodString;
|
|
704
704
|
}, "strip", z.ZodTypeAny, {
|
|
705
705
|
errorMessage: string;
|
|
706
|
-
max: number;
|
|
707
706
|
errorReason: string;
|
|
707
|
+
max?: number | undefined;
|
|
708
708
|
}, {
|
|
709
709
|
errorMessage: string;
|
|
710
|
-
max: number;
|
|
711
710
|
errorReason: string;
|
|
711
|
+
max?: number | undefined;
|
|
712
712
|
}>;
|
|
713
713
|
workspaceViewers: z.ZodObject<{
|
|
714
|
-
max: z.ZodNumber
|
|
714
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
715
715
|
errorMessage: z.ZodString;
|
|
716
716
|
errorReason: z.ZodString;
|
|
717
717
|
}, "strip", z.ZodTypeAny, {
|
|
718
718
|
errorMessage: string;
|
|
719
|
-
max: number;
|
|
720
719
|
errorReason: string;
|
|
720
|
+
max?: number | undefined;
|
|
721
721
|
}, {
|
|
722
722
|
errorMessage: string;
|
|
723
|
-
max: number;
|
|
724
723
|
errorReason: string;
|
|
724
|
+
max?: number | undefined;
|
|
725
725
|
}>;
|
|
726
726
|
customDocumentationExporter: z.ZodObject<{
|
|
727
727
|
enabled: z.ZodBoolean;
|
|
@@ -814,38 +814,56 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
814
814
|
errorReason: string;
|
|
815
815
|
enabled: boolean;
|
|
816
816
|
}>;
|
|
817
|
+
analytics: z.ZodObject<{
|
|
818
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
819
|
+
errorMessage: z.ZodString;
|
|
820
|
+
errorReason: z.ZodString;
|
|
821
|
+
}, "strip", z.ZodTypeAny, {
|
|
822
|
+
errorMessage: string;
|
|
823
|
+
errorReason: string;
|
|
824
|
+
max?: number | undefined;
|
|
825
|
+
}, {
|
|
826
|
+
errorMessage: string;
|
|
827
|
+
errorReason: string;
|
|
828
|
+
max?: number | undefined;
|
|
829
|
+
}>;
|
|
817
830
|
}, "strip", z.ZodTypeAny, {
|
|
831
|
+
analytics: {
|
|
832
|
+
errorMessage: string;
|
|
833
|
+
errorReason: string;
|
|
834
|
+
max?: number | undefined;
|
|
835
|
+
};
|
|
818
836
|
themes: {
|
|
819
837
|
errorMessage: string;
|
|
820
|
-
max: number;
|
|
821
838
|
errorReason: string;
|
|
839
|
+
max?: number | undefined;
|
|
822
840
|
};
|
|
823
841
|
designSystems: {
|
|
824
842
|
errorMessage: string;
|
|
825
|
-
max: number;
|
|
826
843
|
errorReason: string;
|
|
844
|
+
max?: number | undefined;
|
|
827
845
|
};
|
|
828
846
|
designSystemSources: {
|
|
829
847
|
errorMessage: string;
|
|
830
|
-
max: number;
|
|
831
848
|
errorReason: string;
|
|
832
849
|
noImportJobsErrorMessage: string;
|
|
833
850
|
noImportJobsErrorReason: string;
|
|
851
|
+
max?: number | undefined;
|
|
834
852
|
};
|
|
835
853
|
designSystemVersions: {
|
|
836
854
|
errorMessage: string;
|
|
837
|
-
max: number;
|
|
838
855
|
errorReason: string;
|
|
856
|
+
max?: number | undefined;
|
|
839
857
|
};
|
|
840
858
|
brands: {
|
|
841
859
|
errorMessage: string;
|
|
842
|
-
max: number;
|
|
843
860
|
errorReason: string;
|
|
861
|
+
max?: number | undefined;
|
|
844
862
|
};
|
|
845
863
|
codegenSchedules: {
|
|
846
864
|
errorMessage: string;
|
|
847
|
-
max: number;
|
|
848
865
|
errorReason: string;
|
|
866
|
+
max?: number | undefined;
|
|
849
867
|
};
|
|
850
868
|
publicDocumentation: {
|
|
851
869
|
errorMessage: string;
|
|
@@ -889,13 +907,13 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
889
907
|
};
|
|
890
908
|
workspacePaidSeats: {
|
|
891
909
|
errorMessage: string;
|
|
892
|
-
max: number;
|
|
893
910
|
errorReason: string;
|
|
911
|
+
max?: number | undefined;
|
|
894
912
|
};
|
|
895
913
|
workspaceViewers: {
|
|
896
914
|
errorMessage: string;
|
|
897
|
-
max: number;
|
|
898
915
|
errorReason: string;
|
|
916
|
+
max?: number | undefined;
|
|
899
917
|
};
|
|
900
918
|
customDocumentationExporter: {
|
|
901
919
|
errorMessage: string;
|
|
@@ -933,37 +951,42 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
933
951
|
enabled: boolean;
|
|
934
952
|
};
|
|
935
953
|
}, {
|
|
954
|
+
analytics: {
|
|
955
|
+
errorMessage: string;
|
|
956
|
+
errorReason: string;
|
|
957
|
+
max?: number | undefined;
|
|
958
|
+
};
|
|
936
959
|
themes: {
|
|
937
960
|
errorMessage: string;
|
|
938
|
-
max: number;
|
|
939
961
|
errorReason: string;
|
|
962
|
+
max?: number | undefined;
|
|
940
963
|
};
|
|
941
964
|
designSystems: {
|
|
942
965
|
errorMessage: string;
|
|
943
|
-
max: number;
|
|
944
966
|
errorReason: string;
|
|
967
|
+
max?: number | undefined;
|
|
945
968
|
};
|
|
946
969
|
designSystemSources: {
|
|
947
970
|
errorMessage: string;
|
|
948
|
-
max: number;
|
|
949
971
|
errorReason: string;
|
|
950
972
|
noImportJobsErrorMessage: string;
|
|
951
973
|
noImportJobsErrorReason: string;
|
|
974
|
+
max?: number | undefined;
|
|
952
975
|
};
|
|
953
976
|
designSystemVersions: {
|
|
954
977
|
errorMessage: string;
|
|
955
|
-
max: number;
|
|
956
978
|
errorReason: string;
|
|
979
|
+
max?: number | undefined;
|
|
957
980
|
};
|
|
958
981
|
brands: {
|
|
959
982
|
errorMessage: string;
|
|
960
|
-
max: number;
|
|
961
983
|
errorReason: string;
|
|
984
|
+
max?: number | undefined;
|
|
962
985
|
};
|
|
963
986
|
codegenSchedules: {
|
|
964
987
|
errorMessage: string;
|
|
965
|
-
max: number;
|
|
966
988
|
errorReason: string;
|
|
989
|
+
max?: number | undefined;
|
|
967
990
|
};
|
|
968
991
|
publicDocumentation: {
|
|
969
992
|
errorMessage: string;
|
|
@@ -1007,13 +1030,13 @@ declare const FeaturesSummary: z.ZodObject<{
|
|
|
1007
1030
|
};
|
|
1008
1031
|
workspacePaidSeats: {
|
|
1009
1032
|
errorMessage: string;
|
|
1010
|
-
max: number;
|
|
1011
1033
|
errorReason: string;
|
|
1034
|
+
max?: number | undefined;
|
|
1012
1035
|
};
|
|
1013
1036
|
workspaceViewers: {
|
|
1014
1037
|
errorMessage: string;
|
|
1015
|
-
max: number;
|
|
1016
1038
|
errorReason: string;
|
|
1039
|
+
max?: number | undefined;
|
|
1017
1040
|
};
|
|
1018
1041
|
customDocumentationExporter: {
|
|
1019
1042
|
errorMessage: string;
|
|
@@ -1297,20 +1320,20 @@ declare const Subscription: z.ZodObject<{
|
|
|
1297
1320
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
1298
1321
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
1299
1322
|
designSystems: z.ZodObject<{
|
|
1300
|
-
max: z.ZodNumber
|
|
1323
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1301
1324
|
errorMessage: z.ZodString;
|
|
1302
1325
|
errorReason: z.ZodString;
|
|
1303
1326
|
}, "strip", z.ZodTypeAny, {
|
|
1304
1327
|
errorMessage: string;
|
|
1305
|
-
max: number;
|
|
1306
1328
|
errorReason: string;
|
|
1329
|
+
max?: number | undefined;
|
|
1307
1330
|
}, {
|
|
1308
1331
|
errorMessage: string;
|
|
1309
|
-
max: number;
|
|
1310
1332
|
errorReason: string;
|
|
1333
|
+
max?: number | undefined;
|
|
1311
1334
|
}>;
|
|
1312
1335
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
1313
|
-
max: z.ZodNumber
|
|
1336
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1314
1337
|
errorMessage: z.ZodString;
|
|
1315
1338
|
errorReason: z.ZodString;
|
|
1316
1339
|
}, {
|
|
@@ -1318,68 +1341,68 @@ declare const Subscription: z.ZodObject<{
|
|
|
1318
1341
|
noImportJobsErrorReason: z.ZodString;
|
|
1319
1342
|
}>, "strip", z.ZodTypeAny, {
|
|
1320
1343
|
errorMessage: string;
|
|
1321
|
-
max: number;
|
|
1322
1344
|
errorReason: string;
|
|
1323
1345
|
noImportJobsErrorMessage: string;
|
|
1324
1346
|
noImportJobsErrorReason: string;
|
|
1347
|
+
max?: number | undefined;
|
|
1325
1348
|
}, {
|
|
1326
1349
|
errorMessage: string;
|
|
1327
|
-
max: number;
|
|
1328
1350
|
errorReason: string;
|
|
1329
1351
|
noImportJobsErrorMessage: string;
|
|
1330
1352
|
noImportJobsErrorReason: string;
|
|
1353
|
+
max?: number | undefined;
|
|
1331
1354
|
}>;
|
|
1332
1355
|
designSystemVersions: z.ZodObject<{
|
|
1333
|
-
max: z.ZodNumber
|
|
1356
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1334
1357
|
errorMessage: z.ZodString;
|
|
1335
1358
|
errorReason: z.ZodString;
|
|
1336
1359
|
}, "strip", z.ZodTypeAny, {
|
|
1337
1360
|
errorMessage: string;
|
|
1338
|
-
max: number;
|
|
1339
1361
|
errorReason: string;
|
|
1362
|
+
max?: number | undefined;
|
|
1340
1363
|
}, {
|
|
1341
1364
|
errorMessage: string;
|
|
1342
|
-
max: number;
|
|
1343
1365
|
errorReason: string;
|
|
1366
|
+
max?: number | undefined;
|
|
1344
1367
|
}>;
|
|
1345
1368
|
themes: z.ZodObject<{
|
|
1346
|
-
max: z.ZodNumber
|
|
1369
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1347
1370
|
errorMessage: z.ZodString;
|
|
1348
1371
|
errorReason: z.ZodString;
|
|
1349
1372
|
}, "strip", z.ZodTypeAny, {
|
|
1350
1373
|
errorMessage: string;
|
|
1351
|
-
max: number;
|
|
1352
1374
|
errorReason: string;
|
|
1375
|
+
max?: number | undefined;
|
|
1353
1376
|
}, {
|
|
1354
1377
|
errorMessage: string;
|
|
1355
|
-
max: number;
|
|
1356
1378
|
errorReason: string;
|
|
1379
|
+
max?: number | undefined;
|
|
1357
1380
|
}>;
|
|
1358
1381
|
brands: z.ZodObject<{
|
|
1359
|
-
max: z.ZodNumber
|
|
1382
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1360
1383
|
errorMessage: z.ZodString;
|
|
1361
1384
|
errorReason: z.ZodString;
|
|
1362
1385
|
}, "strip", z.ZodTypeAny, {
|
|
1363
1386
|
errorMessage: string;
|
|
1364
|
-
max: number;
|
|
1365
1387
|
errorReason: string;
|
|
1388
|
+
max?: number | undefined;
|
|
1366
1389
|
}, {
|
|
1367
1390
|
errorMessage: string;
|
|
1368
|
-
max: number;
|
|
1369
1391
|
errorReason: string;
|
|
1392
|
+
max?: number | undefined;
|
|
1370
1393
|
}>;
|
|
1371
1394
|
codegenSchedules: z.ZodObject<{
|
|
1372
|
-
max: z.ZodNumber
|
|
1395
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1373
1396
|
errorMessage: z.ZodString;
|
|
1374
1397
|
errorReason: z.ZodString;
|
|
1375
1398
|
}, "strip", z.ZodTypeAny, {
|
|
1376
1399
|
errorMessage: string;
|
|
1377
|
-
max: number;
|
|
1378
1400
|
errorReason: string;
|
|
1401
|
+
max?: number | undefined;
|
|
1379
1402
|
}, {
|
|
1380
1403
|
errorMessage: string;
|
|
1381
|
-
max: number;
|
|
1382
1404
|
errorReason: string;
|
|
1405
|
+
max?: number | undefined;
|
|
1383
1406
|
}>;
|
|
1384
1407
|
publicDocumentation: z.ZodObject<{
|
|
1385
1408
|
enabled: z.ZodBoolean;
|
|
@@ -1486,30 +1509,30 @@ declare const Subscription: z.ZodObject<{
|
|
|
1486
1509
|
enabled: boolean;
|
|
1487
1510
|
}>;
|
|
1488
1511
|
workspacePaidSeats: z.ZodObject<{
|
|
1489
|
-
max: z.ZodNumber
|
|
1512
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1490
1513
|
errorMessage: z.ZodString;
|
|
1491
1514
|
errorReason: z.ZodString;
|
|
1492
1515
|
}, "strip", z.ZodTypeAny, {
|
|
1493
1516
|
errorMessage: string;
|
|
1494
|
-
max: number;
|
|
1495
1517
|
errorReason: string;
|
|
1518
|
+
max?: number | undefined;
|
|
1496
1519
|
}, {
|
|
1497
1520
|
errorMessage: string;
|
|
1498
|
-
max: number;
|
|
1499
1521
|
errorReason: string;
|
|
1522
|
+
max?: number | undefined;
|
|
1500
1523
|
}>;
|
|
1501
1524
|
workspaceViewers: z.ZodObject<{
|
|
1502
|
-
max: z.ZodNumber
|
|
1525
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1503
1526
|
errorMessage: z.ZodString;
|
|
1504
1527
|
errorReason: z.ZodString;
|
|
1505
1528
|
}, "strip", z.ZodTypeAny, {
|
|
1506
1529
|
errorMessage: string;
|
|
1507
|
-
max: number;
|
|
1508
1530
|
errorReason: string;
|
|
1531
|
+
max?: number | undefined;
|
|
1509
1532
|
}, {
|
|
1510
1533
|
errorMessage: string;
|
|
1511
|
-
max: number;
|
|
1512
1534
|
errorReason: string;
|
|
1535
|
+
max?: number | undefined;
|
|
1513
1536
|
}>;
|
|
1514
1537
|
customDocumentationExporter: z.ZodObject<{
|
|
1515
1538
|
enabled: z.ZodBoolean;
|
|
@@ -1602,38 +1625,56 @@ declare const Subscription: z.ZodObject<{
|
|
|
1602
1625
|
errorReason: string;
|
|
1603
1626
|
enabled: boolean;
|
|
1604
1627
|
}>;
|
|
1628
|
+
analytics: z.ZodObject<{
|
|
1629
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
1630
|
+
errorMessage: z.ZodString;
|
|
1631
|
+
errorReason: z.ZodString;
|
|
1632
|
+
}, "strip", z.ZodTypeAny, {
|
|
1633
|
+
errorMessage: string;
|
|
1634
|
+
errorReason: string;
|
|
1635
|
+
max?: number | undefined;
|
|
1636
|
+
}, {
|
|
1637
|
+
errorMessage: string;
|
|
1638
|
+
errorReason: string;
|
|
1639
|
+
max?: number | undefined;
|
|
1640
|
+
}>;
|
|
1605
1641
|
}, "strip", z.ZodTypeAny, {
|
|
1642
|
+
analytics: {
|
|
1643
|
+
errorMessage: string;
|
|
1644
|
+
errorReason: string;
|
|
1645
|
+
max?: number | undefined;
|
|
1646
|
+
};
|
|
1606
1647
|
themes: {
|
|
1607
1648
|
errorMessage: string;
|
|
1608
|
-
max: number;
|
|
1609
1649
|
errorReason: string;
|
|
1650
|
+
max?: number | undefined;
|
|
1610
1651
|
};
|
|
1611
1652
|
designSystems: {
|
|
1612
1653
|
errorMessage: string;
|
|
1613
|
-
max: number;
|
|
1614
1654
|
errorReason: string;
|
|
1655
|
+
max?: number | undefined;
|
|
1615
1656
|
};
|
|
1616
1657
|
designSystemSources: {
|
|
1617
1658
|
errorMessage: string;
|
|
1618
|
-
max: number;
|
|
1619
1659
|
errorReason: string;
|
|
1620
1660
|
noImportJobsErrorMessage: string;
|
|
1621
1661
|
noImportJobsErrorReason: string;
|
|
1662
|
+
max?: number | undefined;
|
|
1622
1663
|
};
|
|
1623
1664
|
designSystemVersions: {
|
|
1624
1665
|
errorMessage: string;
|
|
1625
|
-
max: number;
|
|
1626
1666
|
errorReason: string;
|
|
1667
|
+
max?: number | undefined;
|
|
1627
1668
|
};
|
|
1628
1669
|
brands: {
|
|
1629
1670
|
errorMessage: string;
|
|
1630
|
-
max: number;
|
|
1631
1671
|
errorReason: string;
|
|
1672
|
+
max?: number | undefined;
|
|
1632
1673
|
};
|
|
1633
1674
|
codegenSchedules: {
|
|
1634
1675
|
errorMessage: string;
|
|
1635
|
-
max: number;
|
|
1636
1676
|
errorReason: string;
|
|
1677
|
+
max?: number | undefined;
|
|
1637
1678
|
};
|
|
1638
1679
|
publicDocumentation: {
|
|
1639
1680
|
errorMessage: string;
|
|
@@ -1677,13 +1718,13 @@ declare const Subscription: z.ZodObject<{
|
|
|
1677
1718
|
};
|
|
1678
1719
|
workspacePaidSeats: {
|
|
1679
1720
|
errorMessage: string;
|
|
1680
|
-
max: number;
|
|
1681
1721
|
errorReason: string;
|
|
1722
|
+
max?: number | undefined;
|
|
1682
1723
|
};
|
|
1683
1724
|
workspaceViewers: {
|
|
1684
1725
|
errorMessage: string;
|
|
1685
|
-
max: number;
|
|
1686
1726
|
errorReason: string;
|
|
1727
|
+
max?: number | undefined;
|
|
1687
1728
|
};
|
|
1688
1729
|
customDocumentationExporter: {
|
|
1689
1730
|
errorMessage: string;
|
|
@@ -1721,37 +1762,42 @@ declare const Subscription: z.ZodObject<{
|
|
|
1721
1762
|
enabled: boolean;
|
|
1722
1763
|
};
|
|
1723
1764
|
}, {
|
|
1765
|
+
analytics: {
|
|
1766
|
+
errorMessage: string;
|
|
1767
|
+
errorReason: string;
|
|
1768
|
+
max?: number | undefined;
|
|
1769
|
+
};
|
|
1724
1770
|
themes: {
|
|
1725
1771
|
errorMessage: string;
|
|
1726
|
-
max: number;
|
|
1727
1772
|
errorReason: string;
|
|
1773
|
+
max?: number | undefined;
|
|
1728
1774
|
};
|
|
1729
1775
|
designSystems: {
|
|
1730
1776
|
errorMessage: string;
|
|
1731
|
-
max: number;
|
|
1732
1777
|
errorReason: string;
|
|
1778
|
+
max?: number | undefined;
|
|
1733
1779
|
};
|
|
1734
1780
|
designSystemSources: {
|
|
1735
1781
|
errorMessage: string;
|
|
1736
|
-
max: number;
|
|
1737
1782
|
errorReason: string;
|
|
1738
1783
|
noImportJobsErrorMessage: string;
|
|
1739
1784
|
noImportJobsErrorReason: string;
|
|
1785
|
+
max?: number | undefined;
|
|
1740
1786
|
};
|
|
1741
1787
|
designSystemVersions: {
|
|
1742
1788
|
errorMessage: string;
|
|
1743
|
-
max: number;
|
|
1744
1789
|
errorReason: string;
|
|
1790
|
+
max?: number | undefined;
|
|
1745
1791
|
};
|
|
1746
1792
|
brands: {
|
|
1747
1793
|
errorMessage: string;
|
|
1748
|
-
max: number;
|
|
1749
1794
|
errorReason: string;
|
|
1795
|
+
max?: number | undefined;
|
|
1750
1796
|
};
|
|
1751
1797
|
codegenSchedules: {
|
|
1752
1798
|
errorMessage: string;
|
|
1753
|
-
max: number;
|
|
1754
1799
|
errorReason: string;
|
|
1800
|
+
max?: number | undefined;
|
|
1755
1801
|
};
|
|
1756
1802
|
publicDocumentation: {
|
|
1757
1803
|
errorMessage: string;
|
|
@@ -1795,13 +1841,13 @@ declare const Subscription: z.ZodObject<{
|
|
|
1795
1841
|
};
|
|
1796
1842
|
workspacePaidSeats: {
|
|
1797
1843
|
errorMessage: string;
|
|
1798
|
-
max: number;
|
|
1799
1844
|
errorReason: string;
|
|
1845
|
+
max?: number | undefined;
|
|
1800
1846
|
};
|
|
1801
1847
|
workspaceViewers: {
|
|
1802
1848
|
errorMessage: string;
|
|
1803
|
-
max: number;
|
|
1804
1849
|
errorReason: string;
|
|
1850
|
+
max?: number | undefined;
|
|
1805
1851
|
};
|
|
1806
1852
|
customDocumentationExporter: {
|
|
1807
1853
|
errorMessage: string;
|
|
@@ -1906,37 +1952,42 @@ declare const Subscription: z.ZodObject<{
|
|
|
1906
1952
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
1907
1953
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
1908
1954
|
featuresSummary?: {
|
|
1955
|
+
analytics: {
|
|
1956
|
+
errorMessage: string;
|
|
1957
|
+
errorReason: string;
|
|
1958
|
+
max?: number | undefined;
|
|
1959
|
+
};
|
|
1909
1960
|
themes: {
|
|
1910
1961
|
errorMessage: string;
|
|
1911
|
-
max: number;
|
|
1912
1962
|
errorReason: string;
|
|
1963
|
+
max?: number | undefined;
|
|
1913
1964
|
};
|
|
1914
1965
|
designSystems: {
|
|
1915
1966
|
errorMessage: string;
|
|
1916
|
-
max: number;
|
|
1917
1967
|
errorReason: string;
|
|
1968
|
+
max?: number | undefined;
|
|
1918
1969
|
};
|
|
1919
1970
|
designSystemSources: {
|
|
1920
1971
|
errorMessage: string;
|
|
1921
|
-
max: number;
|
|
1922
1972
|
errorReason: string;
|
|
1923
1973
|
noImportJobsErrorMessage: string;
|
|
1924
1974
|
noImportJobsErrorReason: string;
|
|
1975
|
+
max?: number | undefined;
|
|
1925
1976
|
};
|
|
1926
1977
|
designSystemVersions: {
|
|
1927
1978
|
errorMessage: string;
|
|
1928
|
-
max: number;
|
|
1929
1979
|
errorReason: string;
|
|
1980
|
+
max?: number | undefined;
|
|
1930
1981
|
};
|
|
1931
1982
|
brands: {
|
|
1932
1983
|
errorMessage: string;
|
|
1933
|
-
max: number;
|
|
1934
1984
|
errorReason: string;
|
|
1985
|
+
max?: number | undefined;
|
|
1935
1986
|
};
|
|
1936
1987
|
codegenSchedules: {
|
|
1937
1988
|
errorMessage: string;
|
|
1938
|
-
max: number;
|
|
1939
1989
|
errorReason: string;
|
|
1990
|
+
max?: number | undefined;
|
|
1940
1991
|
};
|
|
1941
1992
|
publicDocumentation: {
|
|
1942
1993
|
errorMessage: string;
|
|
@@ -1980,13 +2031,13 @@ declare const Subscription: z.ZodObject<{
|
|
|
1980
2031
|
};
|
|
1981
2032
|
workspacePaidSeats: {
|
|
1982
2033
|
errorMessage: string;
|
|
1983
|
-
max: number;
|
|
1984
2034
|
errorReason: string;
|
|
2035
|
+
max?: number | undefined;
|
|
1985
2036
|
};
|
|
1986
2037
|
workspaceViewers: {
|
|
1987
2038
|
errorMessage: string;
|
|
1988
|
-
max: number;
|
|
1989
2039
|
errorReason: string;
|
|
2040
|
+
max?: number | undefined;
|
|
1990
2041
|
};
|
|
1991
2042
|
customDocumentationExporter: {
|
|
1992
2043
|
errorMessage: string;
|
|
@@ -2058,37 +2109,42 @@ declare const Subscription: z.ZodObject<{
|
|
|
2058
2109
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
2059
2110
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
2060
2111
|
featuresSummary?: {
|
|
2112
|
+
analytics: {
|
|
2113
|
+
errorMessage: string;
|
|
2114
|
+
errorReason: string;
|
|
2115
|
+
max?: number | undefined;
|
|
2116
|
+
};
|
|
2061
2117
|
themes: {
|
|
2062
2118
|
errorMessage: string;
|
|
2063
|
-
max: number;
|
|
2064
2119
|
errorReason: string;
|
|
2120
|
+
max?: number | undefined;
|
|
2065
2121
|
};
|
|
2066
2122
|
designSystems: {
|
|
2067
2123
|
errorMessage: string;
|
|
2068
|
-
max: number;
|
|
2069
2124
|
errorReason: string;
|
|
2125
|
+
max?: number | undefined;
|
|
2070
2126
|
};
|
|
2071
2127
|
designSystemSources: {
|
|
2072
2128
|
errorMessage: string;
|
|
2073
|
-
max: number;
|
|
2074
2129
|
errorReason: string;
|
|
2075
2130
|
noImportJobsErrorMessage: string;
|
|
2076
2131
|
noImportJobsErrorReason: string;
|
|
2132
|
+
max?: number | undefined;
|
|
2077
2133
|
};
|
|
2078
2134
|
designSystemVersions: {
|
|
2079
2135
|
errorMessage: string;
|
|
2080
|
-
max: number;
|
|
2081
2136
|
errorReason: string;
|
|
2137
|
+
max?: number | undefined;
|
|
2082
2138
|
};
|
|
2083
2139
|
brands: {
|
|
2084
2140
|
errorMessage: string;
|
|
2085
|
-
max: number;
|
|
2086
2141
|
errorReason: string;
|
|
2142
|
+
max?: number | undefined;
|
|
2087
2143
|
};
|
|
2088
2144
|
codegenSchedules: {
|
|
2089
2145
|
errorMessage: string;
|
|
2090
|
-
max: number;
|
|
2091
2146
|
errorReason: string;
|
|
2147
|
+
max?: number | undefined;
|
|
2092
2148
|
};
|
|
2093
2149
|
publicDocumentation: {
|
|
2094
2150
|
errorMessage: string;
|
|
@@ -2132,13 +2188,13 @@ declare const Subscription: z.ZodObject<{
|
|
|
2132
2188
|
};
|
|
2133
2189
|
workspacePaidSeats: {
|
|
2134
2190
|
errorMessage: string;
|
|
2135
|
-
max: number;
|
|
2136
2191
|
errorReason: string;
|
|
2192
|
+
max?: number | undefined;
|
|
2137
2193
|
};
|
|
2138
2194
|
workspaceViewers: {
|
|
2139
2195
|
errorMessage: string;
|
|
2140
|
-
max: number;
|
|
2141
2196
|
errorReason: string;
|
|
2197
|
+
max?: number | undefined;
|
|
2142
2198
|
};
|
|
2143
2199
|
customDocumentationExporter: {
|
|
2144
2200
|
errorMessage: string;
|
|
@@ -12152,20 +12208,20 @@ declare const UserDump: z.ZodObject<{
|
|
|
12152
12208
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
12153
12209
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
12154
12210
|
designSystems: z.ZodObject<{
|
|
12155
|
-
max: z.ZodNumber
|
|
12211
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12156
12212
|
errorMessage: z.ZodString;
|
|
12157
12213
|
errorReason: z.ZodString;
|
|
12158
12214
|
}, "strip", z.ZodTypeAny, {
|
|
12159
12215
|
errorMessage: string;
|
|
12160
|
-
max: number;
|
|
12161
12216
|
errorReason: string;
|
|
12217
|
+
max?: number | undefined;
|
|
12162
12218
|
}, {
|
|
12163
12219
|
errorMessage: string;
|
|
12164
|
-
max: number;
|
|
12165
12220
|
errorReason: string;
|
|
12221
|
+
max?: number | undefined;
|
|
12166
12222
|
}>;
|
|
12167
12223
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
12168
|
-
max: z.ZodNumber
|
|
12224
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12169
12225
|
errorMessage: z.ZodString;
|
|
12170
12226
|
errorReason: z.ZodString;
|
|
12171
12227
|
}, {
|
|
@@ -12173,68 +12229,68 @@ declare const UserDump: z.ZodObject<{
|
|
|
12173
12229
|
noImportJobsErrorReason: z.ZodString;
|
|
12174
12230
|
}>, "strip", z.ZodTypeAny, {
|
|
12175
12231
|
errorMessage: string;
|
|
12176
|
-
max: number;
|
|
12177
12232
|
errorReason: string;
|
|
12178
12233
|
noImportJobsErrorMessage: string;
|
|
12179
12234
|
noImportJobsErrorReason: string;
|
|
12235
|
+
max?: number | undefined;
|
|
12180
12236
|
}, {
|
|
12181
12237
|
errorMessage: string;
|
|
12182
|
-
max: number;
|
|
12183
12238
|
errorReason: string;
|
|
12184
12239
|
noImportJobsErrorMessage: string;
|
|
12185
12240
|
noImportJobsErrorReason: string;
|
|
12241
|
+
max?: number | undefined;
|
|
12186
12242
|
}>;
|
|
12187
12243
|
designSystemVersions: z.ZodObject<{
|
|
12188
|
-
max: z.ZodNumber
|
|
12244
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12189
12245
|
errorMessage: z.ZodString;
|
|
12190
12246
|
errorReason: z.ZodString;
|
|
12191
12247
|
}, "strip", z.ZodTypeAny, {
|
|
12192
12248
|
errorMessage: string;
|
|
12193
|
-
max: number;
|
|
12194
12249
|
errorReason: string;
|
|
12250
|
+
max?: number | undefined;
|
|
12195
12251
|
}, {
|
|
12196
12252
|
errorMessage: string;
|
|
12197
|
-
max: number;
|
|
12198
12253
|
errorReason: string;
|
|
12254
|
+
max?: number | undefined;
|
|
12199
12255
|
}>;
|
|
12200
12256
|
themes: z.ZodObject<{
|
|
12201
|
-
max: z.ZodNumber
|
|
12257
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12202
12258
|
errorMessage: z.ZodString;
|
|
12203
12259
|
errorReason: z.ZodString;
|
|
12204
12260
|
}, "strip", z.ZodTypeAny, {
|
|
12205
12261
|
errorMessage: string;
|
|
12206
|
-
max: number;
|
|
12207
12262
|
errorReason: string;
|
|
12263
|
+
max?: number | undefined;
|
|
12208
12264
|
}, {
|
|
12209
12265
|
errorMessage: string;
|
|
12210
|
-
max: number;
|
|
12211
12266
|
errorReason: string;
|
|
12267
|
+
max?: number | undefined;
|
|
12212
12268
|
}>;
|
|
12213
12269
|
brands: z.ZodObject<{
|
|
12214
|
-
max: z.ZodNumber
|
|
12270
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12215
12271
|
errorMessage: z.ZodString;
|
|
12216
12272
|
errorReason: z.ZodString;
|
|
12217
12273
|
}, "strip", z.ZodTypeAny, {
|
|
12218
12274
|
errorMessage: string;
|
|
12219
|
-
max: number;
|
|
12220
12275
|
errorReason: string;
|
|
12276
|
+
max?: number | undefined;
|
|
12221
12277
|
}, {
|
|
12222
12278
|
errorMessage: string;
|
|
12223
|
-
max: number;
|
|
12224
12279
|
errorReason: string;
|
|
12280
|
+
max?: number | undefined;
|
|
12225
12281
|
}>;
|
|
12226
12282
|
codegenSchedules: z.ZodObject<{
|
|
12227
|
-
max: z.ZodNumber
|
|
12283
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12228
12284
|
errorMessage: z.ZodString;
|
|
12229
12285
|
errorReason: z.ZodString;
|
|
12230
12286
|
}, "strip", z.ZodTypeAny, {
|
|
12231
12287
|
errorMessage: string;
|
|
12232
|
-
max: number;
|
|
12233
12288
|
errorReason: string;
|
|
12289
|
+
max?: number | undefined;
|
|
12234
12290
|
}, {
|
|
12235
12291
|
errorMessage: string;
|
|
12236
|
-
max: number;
|
|
12237
12292
|
errorReason: string;
|
|
12293
|
+
max?: number | undefined;
|
|
12238
12294
|
}>;
|
|
12239
12295
|
publicDocumentation: z.ZodObject<{
|
|
12240
12296
|
enabled: z.ZodBoolean;
|
|
@@ -12341,30 +12397,30 @@ declare const UserDump: z.ZodObject<{
|
|
|
12341
12397
|
enabled: boolean;
|
|
12342
12398
|
}>;
|
|
12343
12399
|
workspacePaidSeats: z.ZodObject<{
|
|
12344
|
-
max: z.ZodNumber
|
|
12400
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12345
12401
|
errorMessage: z.ZodString;
|
|
12346
12402
|
errorReason: z.ZodString;
|
|
12347
12403
|
}, "strip", z.ZodTypeAny, {
|
|
12348
12404
|
errorMessage: string;
|
|
12349
|
-
max: number;
|
|
12350
12405
|
errorReason: string;
|
|
12406
|
+
max?: number | undefined;
|
|
12351
12407
|
}, {
|
|
12352
12408
|
errorMessage: string;
|
|
12353
|
-
max: number;
|
|
12354
12409
|
errorReason: string;
|
|
12410
|
+
max?: number | undefined;
|
|
12355
12411
|
}>;
|
|
12356
12412
|
workspaceViewers: z.ZodObject<{
|
|
12357
|
-
max: z.ZodNumber
|
|
12413
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12358
12414
|
errorMessage: z.ZodString;
|
|
12359
12415
|
errorReason: z.ZodString;
|
|
12360
12416
|
}, "strip", z.ZodTypeAny, {
|
|
12361
12417
|
errorMessage: string;
|
|
12362
|
-
max: number;
|
|
12363
12418
|
errorReason: string;
|
|
12419
|
+
max?: number | undefined;
|
|
12364
12420
|
}, {
|
|
12365
12421
|
errorMessage: string;
|
|
12366
|
-
max: number;
|
|
12367
12422
|
errorReason: string;
|
|
12423
|
+
max?: number | undefined;
|
|
12368
12424
|
}>;
|
|
12369
12425
|
customDocumentationExporter: z.ZodObject<{
|
|
12370
12426
|
enabled: z.ZodBoolean;
|
|
@@ -12457,38 +12513,56 @@ declare const UserDump: z.ZodObject<{
|
|
|
12457
12513
|
errorReason: string;
|
|
12458
12514
|
enabled: boolean;
|
|
12459
12515
|
}>;
|
|
12516
|
+
analytics: z.ZodObject<{
|
|
12517
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
12518
|
+
errorMessage: z.ZodString;
|
|
12519
|
+
errorReason: z.ZodString;
|
|
12520
|
+
}, "strip", z.ZodTypeAny, {
|
|
12521
|
+
errorMessage: string;
|
|
12522
|
+
errorReason: string;
|
|
12523
|
+
max?: number | undefined;
|
|
12524
|
+
}, {
|
|
12525
|
+
errorMessage: string;
|
|
12526
|
+
errorReason: string;
|
|
12527
|
+
max?: number | undefined;
|
|
12528
|
+
}>;
|
|
12460
12529
|
}, "strip", z.ZodTypeAny, {
|
|
12530
|
+
analytics: {
|
|
12531
|
+
errorMessage: string;
|
|
12532
|
+
errorReason: string;
|
|
12533
|
+
max?: number | undefined;
|
|
12534
|
+
};
|
|
12461
12535
|
themes: {
|
|
12462
12536
|
errorMessage: string;
|
|
12463
|
-
max: number;
|
|
12464
12537
|
errorReason: string;
|
|
12538
|
+
max?: number | undefined;
|
|
12465
12539
|
};
|
|
12466
12540
|
designSystems: {
|
|
12467
12541
|
errorMessage: string;
|
|
12468
|
-
max: number;
|
|
12469
12542
|
errorReason: string;
|
|
12543
|
+
max?: number | undefined;
|
|
12470
12544
|
};
|
|
12471
12545
|
designSystemSources: {
|
|
12472
12546
|
errorMessage: string;
|
|
12473
|
-
max: number;
|
|
12474
12547
|
errorReason: string;
|
|
12475
12548
|
noImportJobsErrorMessage: string;
|
|
12476
12549
|
noImportJobsErrorReason: string;
|
|
12550
|
+
max?: number | undefined;
|
|
12477
12551
|
};
|
|
12478
12552
|
designSystemVersions: {
|
|
12479
12553
|
errorMessage: string;
|
|
12480
|
-
max: number;
|
|
12481
12554
|
errorReason: string;
|
|
12555
|
+
max?: number | undefined;
|
|
12482
12556
|
};
|
|
12483
12557
|
brands: {
|
|
12484
12558
|
errorMessage: string;
|
|
12485
|
-
max: number;
|
|
12486
12559
|
errorReason: string;
|
|
12560
|
+
max?: number | undefined;
|
|
12487
12561
|
};
|
|
12488
12562
|
codegenSchedules: {
|
|
12489
12563
|
errorMessage: string;
|
|
12490
|
-
max: number;
|
|
12491
12564
|
errorReason: string;
|
|
12565
|
+
max?: number | undefined;
|
|
12492
12566
|
};
|
|
12493
12567
|
publicDocumentation: {
|
|
12494
12568
|
errorMessage: string;
|
|
@@ -12532,13 +12606,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12532
12606
|
};
|
|
12533
12607
|
workspacePaidSeats: {
|
|
12534
12608
|
errorMessage: string;
|
|
12535
|
-
max: number;
|
|
12536
12609
|
errorReason: string;
|
|
12610
|
+
max?: number | undefined;
|
|
12537
12611
|
};
|
|
12538
12612
|
workspaceViewers: {
|
|
12539
12613
|
errorMessage: string;
|
|
12540
|
-
max: number;
|
|
12541
12614
|
errorReason: string;
|
|
12615
|
+
max?: number | undefined;
|
|
12542
12616
|
};
|
|
12543
12617
|
customDocumentationExporter: {
|
|
12544
12618
|
errorMessage: string;
|
|
@@ -12576,37 +12650,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
12576
12650
|
enabled: boolean;
|
|
12577
12651
|
};
|
|
12578
12652
|
}, {
|
|
12653
|
+
analytics: {
|
|
12654
|
+
errorMessage: string;
|
|
12655
|
+
errorReason: string;
|
|
12656
|
+
max?: number | undefined;
|
|
12657
|
+
};
|
|
12579
12658
|
themes: {
|
|
12580
12659
|
errorMessage: string;
|
|
12581
|
-
max: number;
|
|
12582
12660
|
errorReason: string;
|
|
12661
|
+
max?: number | undefined;
|
|
12583
12662
|
};
|
|
12584
12663
|
designSystems: {
|
|
12585
12664
|
errorMessage: string;
|
|
12586
|
-
max: number;
|
|
12587
12665
|
errorReason: string;
|
|
12666
|
+
max?: number | undefined;
|
|
12588
12667
|
};
|
|
12589
12668
|
designSystemSources: {
|
|
12590
12669
|
errorMessage: string;
|
|
12591
|
-
max: number;
|
|
12592
12670
|
errorReason: string;
|
|
12593
12671
|
noImportJobsErrorMessage: string;
|
|
12594
12672
|
noImportJobsErrorReason: string;
|
|
12673
|
+
max?: number | undefined;
|
|
12595
12674
|
};
|
|
12596
12675
|
designSystemVersions: {
|
|
12597
12676
|
errorMessage: string;
|
|
12598
|
-
max: number;
|
|
12599
12677
|
errorReason: string;
|
|
12678
|
+
max?: number | undefined;
|
|
12600
12679
|
};
|
|
12601
12680
|
brands: {
|
|
12602
12681
|
errorMessage: string;
|
|
12603
|
-
max: number;
|
|
12604
12682
|
errorReason: string;
|
|
12683
|
+
max?: number | undefined;
|
|
12605
12684
|
};
|
|
12606
12685
|
codegenSchedules: {
|
|
12607
12686
|
errorMessage: string;
|
|
12608
|
-
max: number;
|
|
12609
12687
|
errorReason: string;
|
|
12688
|
+
max?: number | undefined;
|
|
12610
12689
|
};
|
|
12611
12690
|
publicDocumentation: {
|
|
12612
12691
|
errorMessage: string;
|
|
@@ -12650,13 +12729,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12650
12729
|
};
|
|
12651
12730
|
workspacePaidSeats: {
|
|
12652
12731
|
errorMessage: string;
|
|
12653
|
-
max: number;
|
|
12654
12732
|
errorReason: string;
|
|
12733
|
+
max?: number | undefined;
|
|
12655
12734
|
};
|
|
12656
12735
|
workspaceViewers: {
|
|
12657
12736
|
errorMessage: string;
|
|
12658
|
-
max: number;
|
|
12659
12737
|
errorReason: string;
|
|
12738
|
+
max?: number | undefined;
|
|
12660
12739
|
};
|
|
12661
12740
|
customDocumentationExporter: {
|
|
12662
12741
|
errorMessage: string;
|
|
@@ -12761,37 +12840,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
12761
12840
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
12762
12841
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
12763
12842
|
featuresSummary?: {
|
|
12843
|
+
analytics: {
|
|
12844
|
+
errorMessage: string;
|
|
12845
|
+
errorReason: string;
|
|
12846
|
+
max?: number | undefined;
|
|
12847
|
+
};
|
|
12764
12848
|
themes: {
|
|
12765
12849
|
errorMessage: string;
|
|
12766
|
-
max: number;
|
|
12767
12850
|
errorReason: string;
|
|
12851
|
+
max?: number | undefined;
|
|
12768
12852
|
};
|
|
12769
12853
|
designSystems: {
|
|
12770
12854
|
errorMessage: string;
|
|
12771
|
-
max: number;
|
|
12772
12855
|
errorReason: string;
|
|
12856
|
+
max?: number | undefined;
|
|
12773
12857
|
};
|
|
12774
12858
|
designSystemSources: {
|
|
12775
12859
|
errorMessage: string;
|
|
12776
|
-
max: number;
|
|
12777
12860
|
errorReason: string;
|
|
12778
12861
|
noImportJobsErrorMessage: string;
|
|
12779
12862
|
noImportJobsErrorReason: string;
|
|
12863
|
+
max?: number | undefined;
|
|
12780
12864
|
};
|
|
12781
12865
|
designSystemVersions: {
|
|
12782
12866
|
errorMessage: string;
|
|
12783
|
-
max: number;
|
|
12784
12867
|
errorReason: string;
|
|
12868
|
+
max?: number | undefined;
|
|
12785
12869
|
};
|
|
12786
12870
|
brands: {
|
|
12787
12871
|
errorMessage: string;
|
|
12788
|
-
max: number;
|
|
12789
12872
|
errorReason: string;
|
|
12873
|
+
max?: number | undefined;
|
|
12790
12874
|
};
|
|
12791
12875
|
codegenSchedules: {
|
|
12792
12876
|
errorMessage: string;
|
|
12793
|
-
max: number;
|
|
12794
12877
|
errorReason: string;
|
|
12878
|
+
max?: number | undefined;
|
|
12795
12879
|
};
|
|
12796
12880
|
publicDocumentation: {
|
|
12797
12881
|
errorMessage: string;
|
|
@@ -12835,13 +12919,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12835
12919
|
};
|
|
12836
12920
|
workspacePaidSeats: {
|
|
12837
12921
|
errorMessage: string;
|
|
12838
|
-
max: number;
|
|
12839
12922
|
errorReason: string;
|
|
12923
|
+
max?: number | undefined;
|
|
12840
12924
|
};
|
|
12841
12925
|
workspaceViewers: {
|
|
12842
12926
|
errorMessage: string;
|
|
12843
|
-
max: number;
|
|
12844
12927
|
errorReason: string;
|
|
12928
|
+
max?: number | undefined;
|
|
12845
12929
|
};
|
|
12846
12930
|
customDocumentationExporter: {
|
|
12847
12931
|
errorMessage: string;
|
|
@@ -12913,37 +12997,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
12913
12997
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
12914
12998
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
12915
12999
|
featuresSummary?: {
|
|
13000
|
+
analytics: {
|
|
13001
|
+
errorMessage: string;
|
|
13002
|
+
errorReason: string;
|
|
13003
|
+
max?: number | undefined;
|
|
13004
|
+
};
|
|
12916
13005
|
themes: {
|
|
12917
13006
|
errorMessage: string;
|
|
12918
|
-
max: number;
|
|
12919
13007
|
errorReason: string;
|
|
13008
|
+
max?: number | undefined;
|
|
12920
13009
|
};
|
|
12921
13010
|
designSystems: {
|
|
12922
13011
|
errorMessage: string;
|
|
12923
|
-
max: number;
|
|
12924
13012
|
errorReason: string;
|
|
13013
|
+
max?: number | undefined;
|
|
12925
13014
|
};
|
|
12926
13015
|
designSystemSources: {
|
|
12927
13016
|
errorMessage: string;
|
|
12928
|
-
max: number;
|
|
12929
13017
|
errorReason: string;
|
|
12930
13018
|
noImportJobsErrorMessage: string;
|
|
12931
13019
|
noImportJobsErrorReason: string;
|
|
13020
|
+
max?: number | undefined;
|
|
12932
13021
|
};
|
|
12933
13022
|
designSystemVersions: {
|
|
12934
13023
|
errorMessage: string;
|
|
12935
|
-
max: number;
|
|
12936
13024
|
errorReason: string;
|
|
13025
|
+
max?: number | undefined;
|
|
12937
13026
|
};
|
|
12938
13027
|
brands: {
|
|
12939
13028
|
errorMessage: string;
|
|
12940
|
-
max: number;
|
|
12941
13029
|
errorReason: string;
|
|
13030
|
+
max?: number | undefined;
|
|
12942
13031
|
};
|
|
12943
13032
|
codegenSchedules: {
|
|
12944
13033
|
errorMessage: string;
|
|
12945
|
-
max: number;
|
|
12946
13034
|
errorReason: string;
|
|
13035
|
+
max?: number | undefined;
|
|
12947
13036
|
};
|
|
12948
13037
|
publicDocumentation: {
|
|
12949
13038
|
errorMessage: string;
|
|
@@ -12987,13 +13076,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
12987
13076
|
};
|
|
12988
13077
|
workspacePaidSeats: {
|
|
12989
13078
|
errorMessage: string;
|
|
12990
|
-
max: number;
|
|
12991
13079
|
errorReason: string;
|
|
13080
|
+
max?: number | undefined;
|
|
12992
13081
|
};
|
|
12993
13082
|
workspaceViewers: {
|
|
12994
13083
|
errorMessage: string;
|
|
12995
|
-
max: number;
|
|
12996
13084
|
errorReason: string;
|
|
13085
|
+
max?: number | undefined;
|
|
12997
13086
|
};
|
|
12998
13087
|
customDocumentationExporter: {
|
|
12999
13088
|
errorMessage: string;
|
|
@@ -13241,37 +13330,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
13241
13330
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
13242
13331
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
13243
13332
|
featuresSummary?: {
|
|
13333
|
+
analytics: {
|
|
13334
|
+
errorMessage: string;
|
|
13335
|
+
errorReason: string;
|
|
13336
|
+
max?: number | undefined;
|
|
13337
|
+
};
|
|
13244
13338
|
themes: {
|
|
13245
13339
|
errorMessage: string;
|
|
13246
|
-
max: number;
|
|
13247
13340
|
errorReason: string;
|
|
13341
|
+
max?: number | undefined;
|
|
13248
13342
|
};
|
|
13249
13343
|
designSystems: {
|
|
13250
13344
|
errorMessage: string;
|
|
13251
|
-
max: number;
|
|
13252
13345
|
errorReason: string;
|
|
13346
|
+
max?: number | undefined;
|
|
13253
13347
|
};
|
|
13254
13348
|
designSystemSources: {
|
|
13255
13349
|
errorMessage: string;
|
|
13256
|
-
max: number;
|
|
13257
13350
|
errorReason: string;
|
|
13258
13351
|
noImportJobsErrorMessage: string;
|
|
13259
13352
|
noImportJobsErrorReason: string;
|
|
13353
|
+
max?: number | undefined;
|
|
13260
13354
|
};
|
|
13261
13355
|
designSystemVersions: {
|
|
13262
13356
|
errorMessage: string;
|
|
13263
|
-
max: number;
|
|
13264
13357
|
errorReason: string;
|
|
13358
|
+
max?: number | undefined;
|
|
13265
13359
|
};
|
|
13266
13360
|
brands: {
|
|
13267
13361
|
errorMessage: string;
|
|
13268
|
-
max: number;
|
|
13269
13362
|
errorReason: string;
|
|
13363
|
+
max?: number | undefined;
|
|
13270
13364
|
};
|
|
13271
13365
|
codegenSchedules: {
|
|
13272
13366
|
errorMessage: string;
|
|
13273
|
-
max: number;
|
|
13274
13367
|
errorReason: string;
|
|
13368
|
+
max?: number | undefined;
|
|
13275
13369
|
};
|
|
13276
13370
|
publicDocumentation: {
|
|
13277
13371
|
errorMessage: string;
|
|
@@ -13315,13 +13409,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
13315
13409
|
};
|
|
13316
13410
|
workspacePaidSeats: {
|
|
13317
13411
|
errorMessage: string;
|
|
13318
|
-
max: number;
|
|
13319
13412
|
errorReason: string;
|
|
13413
|
+
max?: number | undefined;
|
|
13320
13414
|
};
|
|
13321
13415
|
workspaceViewers: {
|
|
13322
13416
|
errorMessage: string;
|
|
13323
|
-
max: number;
|
|
13324
13417
|
errorReason: string;
|
|
13418
|
+
max?: number | undefined;
|
|
13325
13419
|
};
|
|
13326
13420
|
customDocumentationExporter: {
|
|
13327
13421
|
errorMessage: string;
|
|
@@ -13458,37 +13552,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
13458
13552
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
13459
13553
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
13460
13554
|
featuresSummary?: {
|
|
13555
|
+
analytics: {
|
|
13556
|
+
errorMessage: string;
|
|
13557
|
+
errorReason: string;
|
|
13558
|
+
max?: number | undefined;
|
|
13559
|
+
};
|
|
13461
13560
|
themes: {
|
|
13462
13561
|
errorMessage: string;
|
|
13463
|
-
max: number;
|
|
13464
13562
|
errorReason: string;
|
|
13563
|
+
max?: number | undefined;
|
|
13465
13564
|
};
|
|
13466
13565
|
designSystems: {
|
|
13467
13566
|
errorMessage: string;
|
|
13468
|
-
max: number;
|
|
13469
13567
|
errorReason: string;
|
|
13568
|
+
max?: number | undefined;
|
|
13470
13569
|
};
|
|
13471
13570
|
designSystemSources: {
|
|
13472
13571
|
errorMessage: string;
|
|
13473
|
-
max: number;
|
|
13474
13572
|
errorReason: string;
|
|
13475
13573
|
noImportJobsErrorMessage: string;
|
|
13476
13574
|
noImportJobsErrorReason: string;
|
|
13575
|
+
max?: number | undefined;
|
|
13477
13576
|
};
|
|
13478
13577
|
designSystemVersions: {
|
|
13479
13578
|
errorMessage: string;
|
|
13480
|
-
max: number;
|
|
13481
13579
|
errorReason: string;
|
|
13580
|
+
max?: number | undefined;
|
|
13482
13581
|
};
|
|
13483
13582
|
brands: {
|
|
13484
13583
|
errorMessage: string;
|
|
13485
|
-
max: number;
|
|
13486
13584
|
errorReason: string;
|
|
13585
|
+
max?: number | undefined;
|
|
13487
13586
|
};
|
|
13488
13587
|
codegenSchedules: {
|
|
13489
13588
|
errorMessage: string;
|
|
13490
|
-
max: number;
|
|
13491
13589
|
errorReason: string;
|
|
13590
|
+
max?: number | undefined;
|
|
13492
13591
|
};
|
|
13493
13592
|
publicDocumentation: {
|
|
13494
13593
|
errorMessage: string;
|
|
@@ -13532,13 +13631,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
13532
13631
|
};
|
|
13533
13632
|
workspacePaidSeats: {
|
|
13534
13633
|
errorMessage: string;
|
|
13535
|
-
max: number;
|
|
13536
13634
|
errorReason: string;
|
|
13635
|
+
max?: number | undefined;
|
|
13537
13636
|
};
|
|
13538
13637
|
workspaceViewers: {
|
|
13539
13638
|
errorMessage: string;
|
|
13540
|
-
max: number;
|
|
13541
13639
|
errorReason: string;
|
|
13640
|
+
max?: number | undefined;
|
|
13542
13641
|
};
|
|
13543
13642
|
customDocumentationExporter: {
|
|
13544
13643
|
errorMessage: string;
|
|
@@ -20283,37 +20382,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
20283
20382
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
20284
20383
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
20285
20384
|
featuresSummary?: {
|
|
20385
|
+
analytics: {
|
|
20386
|
+
errorMessage: string;
|
|
20387
|
+
errorReason: string;
|
|
20388
|
+
max?: number | undefined;
|
|
20389
|
+
};
|
|
20286
20390
|
themes: {
|
|
20287
20391
|
errorMessage: string;
|
|
20288
|
-
max: number;
|
|
20289
20392
|
errorReason: string;
|
|
20393
|
+
max?: number | undefined;
|
|
20290
20394
|
};
|
|
20291
20395
|
designSystems: {
|
|
20292
20396
|
errorMessage: string;
|
|
20293
|
-
max: number;
|
|
20294
20397
|
errorReason: string;
|
|
20398
|
+
max?: number | undefined;
|
|
20295
20399
|
};
|
|
20296
20400
|
designSystemSources: {
|
|
20297
20401
|
errorMessage: string;
|
|
20298
|
-
max: number;
|
|
20299
20402
|
errorReason: string;
|
|
20300
20403
|
noImportJobsErrorMessage: string;
|
|
20301
20404
|
noImportJobsErrorReason: string;
|
|
20405
|
+
max?: number | undefined;
|
|
20302
20406
|
};
|
|
20303
20407
|
designSystemVersions: {
|
|
20304
20408
|
errorMessage: string;
|
|
20305
|
-
max: number;
|
|
20306
20409
|
errorReason: string;
|
|
20410
|
+
max?: number | undefined;
|
|
20307
20411
|
};
|
|
20308
20412
|
brands: {
|
|
20309
20413
|
errorMessage: string;
|
|
20310
|
-
max: number;
|
|
20311
20414
|
errorReason: string;
|
|
20415
|
+
max?: number | undefined;
|
|
20312
20416
|
};
|
|
20313
20417
|
codegenSchedules: {
|
|
20314
20418
|
errorMessage: string;
|
|
20315
|
-
max: number;
|
|
20316
20419
|
errorReason: string;
|
|
20420
|
+
max?: number | undefined;
|
|
20317
20421
|
};
|
|
20318
20422
|
publicDocumentation: {
|
|
20319
20423
|
errorMessage: string;
|
|
@@ -20357,13 +20461,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
20357
20461
|
};
|
|
20358
20462
|
workspacePaidSeats: {
|
|
20359
20463
|
errorMessage: string;
|
|
20360
|
-
max: number;
|
|
20361
20464
|
errorReason: string;
|
|
20465
|
+
max?: number | undefined;
|
|
20362
20466
|
};
|
|
20363
20467
|
workspaceViewers: {
|
|
20364
20468
|
errorMessage: string;
|
|
20365
|
-
max: number;
|
|
20366
20469
|
errorReason: string;
|
|
20470
|
+
max?: number | undefined;
|
|
20367
20471
|
};
|
|
20368
20472
|
customDocumentationExporter: {
|
|
20369
20473
|
errorMessage: string;
|
|
@@ -21265,37 +21369,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
21265
21369
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
21266
21370
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
21267
21371
|
featuresSummary?: {
|
|
21372
|
+
analytics: {
|
|
21373
|
+
errorMessage: string;
|
|
21374
|
+
errorReason: string;
|
|
21375
|
+
max?: number | undefined;
|
|
21376
|
+
};
|
|
21268
21377
|
themes: {
|
|
21269
21378
|
errorMessage: string;
|
|
21270
|
-
max: number;
|
|
21271
21379
|
errorReason: string;
|
|
21380
|
+
max?: number | undefined;
|
|
21272
21381
|
};
|
|
21273
21382
|
designSystems: {
|
|
21274
21383
|
errorMessage: string;
|
|
21275
|
-
max: number;
|
|
21276
21384
|
errorReason: string;
|
|
21385
|
+
max?: number | undefined;
|
|
21277
21386
|
};
|
|
21278
21387
|
designSystemSources: {
|
|
21279
21388
|
errorMessage: string;
|
|
21280
|
-
max: number;
|
|
21281
21389
|
errorReason: string;
|
|
21282
21390
|
noImportJobsErrorMessage: string;
|
|
21283
21391
|
noImportJobsErrorReason: string;
|
|
21392
|
+
max?: number | undefined;
|
|
21284
21393
|
};
|
|
21285
21394
|
designSystemVersions: {
|
|
21286
21395
|
errorMessage: string;
|
|
21287
|
-
max: number;
|
|
21288
21396
|
errorReason: string;
|
|
21397
|
+
max?: number | undefined;
|
|
21289
21398
|
};
|
|
21290
21399
|
brands: {
|
|
21291
21400
|
errorMessage: string;
|
|
21292
|
-
max: number;
|
|
21293
21401
|
errorReason: string;
|
|
21402
|
+
max?: number | undefined;
|
|
21294
21403
|
};
|
|
21295
21404
|
codegenSchedules: {
|
|
21296
21405
|
errorMessage: string;
|
|
21297
|
-
max: number;
|
|
21298
21406
|
errorReason: string;
|
|
21407
|
+
max?: number | undefined;
|
|
21299
21408
|
};
|
|
21300
21409
|
publicDocumentation: {
|
|
21301
21410
|
errorMessage: string;
|
|
@@ -21339,13 +21448,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
21339
21448
|
};
|
|
21340
21449
|
workspacePaidSeats: {
|
|
21341
21450
|
errorMessage: string;
|
|
21342
|
-
max: number;
|
|
21343
21451
|
errorReason: string;
|
|
21452
|
+
max?: number | undefined;
|
|
21344
21453
|
};
|
|
21345
21454
|
workspaceViewers: {
|
|
21346
21455
|
errorMessage: string;
|
|
21347
|
-
max: number;
|
|
21348
21456
|
errorReason: string;
|
|
21457
|
+
max?: number | undefined;
|
|
21349
21458
|
};
|
|
21350
21459
|
customDocumentationExporter: {
|
|
21351
21460
|
errorMessage: string;
|
|
@@ -22249,37 +22358,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
22249
22358
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
22250
22359
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
22251
22360
|
featuresSummary?: {
|
|
22361
|
+
analytics: {
|
|
22362
|
+
errorMessage: string;
|
|
22363
|
+
errorReason: string;
|
|
22364
|
+
max?: number | undefined;
|
|
22365
|
+
};
|
|
22252
22366
|
themes: {
|
|
22253
22367
|
errorMessage: string;
|
|
22254
|
-
max: number;
|
|
22255
22368
|
errorReason: string;
|
|
22369
|
+
max?: number | undefined;
|
|
22256
22370
|
};
|
|
22257
22371
|
designSystems: {
|
|
22258
22372
|
errorMessage: string;
|
|
22259
|
-
max: number;
|
|
22260
22373
|
errorReason: string;
|
|
22374
|
+
max?: number | undefined;
|
|
22261
22375
|
};
|
|
22262
22376
|
designSystemSources: {
|
|
22263
22377
|
errorMessage: string;
|
|
22264
|
-
max: number;
|
|
22265
22378
|
errorReason: string;
|
|
22266
22379
|
noImportJobsErrorMessage: string;
|
|
22267
22380
|
noImportJobsErrorReason: string;
|
|
22381
|
+
max?: number | undefined;
|
|
22268
22382
|
};
|
|
22269
22383
|
designSystemVersions: {
|
|
22270
22384
|
errorMessage: string;
|
|
22271
|
-
max: number;
|
|
22272
22385
|
errorReason: string;
|
|
22386
|
+
max?: number | undefined;
|
|
22273
22387
|
};
|
|
22274
22388
|
brands: {
|
|
22275
22389
|
errorMessage: string;
|
|
22276
|
-
max: number;
|
|
22277
22390
|
errorReason: string;
|
|
22391
|
+
max?: number | undefined;
|
|
22278
22392
|
};
|
|
22279
22393
|
codegenSchedules: {
|
|
22280
22394
|
errorMessage: string;
|
|
22281
|
-
max: number;
|
|
22282
22395
|
errorReason: string;
|
|
22396
|
+
max?: number | undefined;
|
|
22283
22397
|
};
|
|
22284
22398
|
publicDocumentation: {
|
|
22285
22399
|
errorMessage: string;
|
|
@@ -22323,13 +22437,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
22323
22437
|
};
|
|
22324
22438
|
workspacePaidSeats: {
|
|
22325
22439
|
errorMessage: string;
|
|
22326
|
-
max: number;
|
|
22327
22440
|
errorReason: string;
|
|
22441
|
+
max?: number | undefined;
|
|
22328
22442
|
};
|
|
22329
22443
|
workspaceViewers: {
|
|
22330
22444
|
errorMessage: string;
|
|
22331
|
-
max: number;
|
|
22332
22445
|
errorReason: string;
|
|
22446
|
+
max?: number | undefined;
|
|
22333
22447
|
};
|
|
22334
22448
|
customDocumentationExporter: {
|
|
22335
22449
|
errorMessage: string;
|
|
@@ -23263,37 +23377,42 @@ declare const UserDump: z.ZodObject<{
|
|
|
23263
23377
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
23264
23378
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
23265
23379
|
featuresSummary?: {
|
|
23380
|
+
analytics: {
|
|
23381
|
+
errorMessage: string;
|
|
23382
|
+
errorReason: string;
|
|
23383
|
+
max?: number | undefined;
|
|
23384
|
+
};
|
|
23266
23385
|
themes: {
|
|
23267
23386
|
errorMessage: string;
|
|
23268
|
-
max: number;
|
|
23269
23387
|
errorReason: string;
|
|
23388
|
+
max?: number | undefined;
|
|
23270
23389
|
};
|
|
23271
23390
|
designSystems: {
|
|
23272
23391
|
errorMessage: string;
|
|
23273
|
-
max: number;
|
|
23274
23392
|
errorReason: string;
|
|
23393
|
+
max?: number | undefined;
|
|
23275
23394
|
};
|
|
23276
23395
|
designSystemSources: {
|
|
23277
23396
|
errorMessage: string;
|
|
23278
|
-
max: number;
|
|
23279
23397
|
errorReason: string;
|
|
23280
23398
|
noImportJobsErrorMessage: string;
|
|
23281
23399
|
noImportJobsErrorReason: string;
|
|
23400
|
+
max?: number | undefined;
|
|
23282
23401
|
};
|
|
23283
23402
|
designSystemVersions: {
|
|
23284
23403
|
errorMessage: string;
|
|
23285
|
-
max: number;
|
|
23286
23404
|
errorReason: string;
|
|
23405
|
+
max?: number | undefined;
|
|
23287
23406
|
};
|
|
23288
23407
|
brands: {
|
|
23289
23408
|
errorMessage: string;
|
|
23290
|
-
max: number;
|
|
23291
23409
|
errorReason: string;
|
|
23410
|
+
max?: number | undefined;
|
|
23292
23411
|
};
|
|
23293
23412
|
codegenSchedules: {
|
|
23294
23413
|
errorMessage: string;
|
|
23295
|
-
max: number;
|
|
23296
23414
|
errorReason: string;
|
|
23415
|
+
max?: number | undefined;
|
|
23297
23416
|
};
|
|
23298
23417
|
publicDocumentation: {
|
|
23299
23418
|
errorMessage: string;
|
|
@@ -23337,13 +23456,13 @@ declare const UserDump: z.ZodObject<{
|
|
|
23337
23456
|
};
|
|
23338
23457
|
workspacePaidSeats: {
|
|
23339
23458
|
errorMessage: string;
|
|
23340
|
-
max: number;
|
|
23341
23459
|
errorReason: string;
|
|
23460
|
+
max?: number | undefined;
|
|
23342
23461
|
};
|
|
23343
23462
|
workspaceViewers: {
|
|
23344
23463
|
errorMessage: string;
|
|
23345
|
-
max: number;
|
|
23346
23464
|
errorReason: string;
|
|
23465
|
+
max?: number | undefined;
|
|
23347
23466
|
};
|
|
23348
23467
|
customDocumentationExporter: {
|
|
23349
23468
|
errorMessage: string;
|
|
@@ -24348,20 +24467,20 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24348
24467
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
24349
24468
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
24350
24469
|
designSystems: z.ZodObject<{
|
|
24351
|
-
max: z.ZodNumber
|
|
24470
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24352
24471
|
errorMessage: z.ZodString;
|
|
24353
24472
|
errorReason: z.ZodString;
|
|
24354
24473
|
}, "strip", z.ZodTypeAny, {
|
|
24355
24474
|
errorMessage: string;
|
|
24356
|
-
max: number;
|
|
24357
24475
|
errorReason: string;
|
|
24476
|
+
max?: number | undefined;
|
|
24358
24477
|
}, {
|
|
24359
24478
|
errorMessage: string;
|
|
24360
|
-
max: number;
|
|
24361
24479
|
errorReason: string;
|
|
24480
|
+
max?: number | undefined;
|
|
24362
24481
|
}>;
|
|
24363
24482
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
24364
|
-
max: z.ZodNumber
|
|
24483
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24365
24484
|
errorMessage: z.ZodString;
|
|
24366
24485
|
errorReason: z.ZodString;
|
|
24367
24486
|
}, {
|
|
@@ -24369,68 +24488,68 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24369
24488
|
noImportJobsErrorReason: z.ZodString;
|
|
24370
24489
|
}>, "strip", z.ZodTypeAny, {
|
|
24371
24490
|
errorMessage: string;
|
|
24372
|
-
max: number;
|
|
24373
24491
|
errorReason: string;
|
|
24374
24492
|
noImportJobsErrorMessage: string;
|
|
24375
24493
|
noImportJobsErrorReason: string;
|
|
24494
|
+
max?: number | undefined;
|
|
24376
24495
|
}, {
|
|
24377
24496
|
errorMessage: string;
|
|
24378
|
-
max: number;
|
|
24379
24497
|
errorReason: string;
|
|
24380
24498
|
noImportJobsErrorMessage: string;
|
|
24381
24499
|
noImportJobsErrorReason: string;
|
|
24500
|
+
max?: number | undefined;
|
|
24382
24501
|
}>;
|
|
24383
24502
|
designSystemVersions: z.ZodObject<{
|
|
24384
|
-
max: z.ZodNumber
|
|
24503
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24385
24504
|
errorMessage: z.ZodString;
|
|
24386
24505
|
errorReason: z.ZodString;
|
|
24387
24506
|
}, "strip", z.ZodTypeAny, {
|
|
24388
24507
|
errorMessage: string;
|
|
24389
|
-
max: number;
|
|
24390
24508
|
errorReason: string;
|
|
24509
|
+
max?: number | undefined;
|
|
24391
24510
|
}, {
|
|
24392
24511
|
errorMessage: string;
|
|
24393
|
-
max: number;
|
|
24394
24512
|
errorReason: string;
|
|
24513
|
+
max?: number | undefined;
|
|
24395
24514
|
}>;
|
|
24396
24515
|
themes: z.ZodObject<{
|
|
24397
|
-
max: z.ZodNumber
|
|
24516
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24398
24517
|
errorMessage: z.ZodString;
|
|
24399
24518
|
errorReason: z.ZodString;
|
|
24400
24519
|
}, "strip", z.ZodTypeAny, {
|
|
24401
24520
|
errorMessage: string;
|
|
24402
|
-
max: number;
|
|
24403
24521
|
errorReason: string;
|
|
24522
|
+
max?: number | undefined;
|
|
24404
24523
|
}, {
|
|
24405
24524
|
errorMessage: string;
|
|
24406
|
-
max: number;
|
|
24407
24525
|
errorReason: string;
|
|
24526
|
+
max?: number | undefined;
|
|
24408
24527
|
}>;
|
|
24409
24528
|
brands: z.ZodObject<{
|
|
24410
|
-
max: z.ZodNumber
|
|
24529
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24411
24530
|
errorMessage: z.ZodString;
|
|
24412
24531
|
errorReason: z.ZodString;
|
|
24413
24532
|
}, "strip", z.ZodTypeAny, {
|
|
24414
24533
|
errorMessage: string;
|
|
24415
|
-
max: number;
|
|
24416
24534
|
errorReason: string;
|
|
24535
|
+
max?: number | undefined;
|
|
24417
24536
|
}, {
|
|
24418
24537
|
errorMessage: string;
|
|
24419
|
-
max: number;
|
|
24420
24538
|
errorReason: string;
|
|
24539
|
+
max?: number | undefined;
|
|
24421
24540
|
}>;
|
|
24422
24541
|
codegenSchedules: z.ZodObject<{
|
|
24423
|
-
max: z.ZodNumber
|
|
24542
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24424
24543
|
errorMessage: z.ZodString;
|
|
24425
24544
|
errorReason: z.ZodString;
|
|
24426
24545
|
}, "strip", z.ZodTypeAny, {
|
|
24427
24546
|
errorMessage: string;
|
|
24428
|
-
max: number;
|
|
24429
24547
|
errorReason: string;
|
|
24548
|
+
max?: number | undefined;
|
|
24430
24549
|
}, {
|
|
24431
24550
|
errorMessage: string;
|
|
24432
|
-
max: number;
|
|
24433
24551
|
errorReason: string;
|
|
24552
|
+
max?: number | undefined;
|
|
24434
24553
|
}>;
|
|
24435
24554
|
publicDocumentation: z.ZodObject<{
|
|
24436
24555
|
enabled: z.ZodBoolean;
|
|
@@ -24537,30 +24656,30 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24537
24656
|
enabled: boolean;
|
|
24538
24657
|
}>;
|
|
24539
24658
|
workspacePaidSeats: z.ZodObject<{
|
|
24540
|
-
max: z.ZodNumber
|
|
24659
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24541
24660
|
errorMessage: z.ZodString;
|
|
24542
24661
|
errorReason: z.ZodString;
|
|
24543
24662
|
}, "strip", z.ZodTypeAny, {
|
|
24544
24663
|
errorMessage: string;
|
|
24545
|
-
max: number;
|
|
24546
24664
|
errorReason: string;
|
|
24665
|
+
max?: number | undefined;
|
|
24547
24666
|
}, {
|
|
24548
24667
|
errorMessage: string;
|
|
24549
|
-
max: number;
|
|
24550
24668
|
errorReason: string;
|
|
24669
|
+
max?: number | undefined;
|
|
24551
24670
|
}>;
|
|
24552
24671
|
workspaceViewers: z.ZodObject<{
|
|
24553
|
-
max: z.ZodNumber
|
|
24672
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24554
24673
|
errorMessage: z.ZodString;
|
|
24555
24674
|
errorReason: z.ZodString;
|
|
24556
24675
|
}, "strip", z.ZodTypeAny, {
|
|
24557
24676
|
errorMessage: string;
|
|
24558
|
-
max: number;
|
|
24559
24677
|
errorReason: string;
|
|
24678
|
+
max?: number | undefined;
|
|
24560
24679
|
}, {
|
|
24561
24680
|
errorMessage: string;
|
|
24562
|
-
max: number;
|
|
24563
24681
|
errorReason: string;
|
|
24682
|
+
max?: number | undefined;
|
|
24564
24683
|
}>;
|
|
24565
24684
|
customDocumentationExporter: z.ZodObject<{
|
|
24566
24685
|
enabled: z.ZodBoolean;
|
|
@@ -24653,38 +24772,56 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24653
24772
|
errorReason: string;
|
|
24654
24773
|
enabled: boolean;
|
|
24655
24774
|
}>;
|
|
24775
|
+
analytics: z.ZodObject<{
|
|
24776
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
24777
|
+
errorMessage: z.ZodString;
|
|
24778
|
+
errorReason: z.ZodString;
|
|
24779
|
+
}, "strip", z.ZodTypeAny, {
|
|
24780
|
+
errorMessage: string;
|
|
24781
|
+
errorReason: string;
|
|
24782
|
+
max?: number | undefined;
|
|
24783
|
+
}, {
|
|
24784
|
+
errorMessage: string;
|
|
24785
|
+
errorReason: string;
|
|
24786
|
+
max?: number | undefined;
|
|
24787
|
+
}>;
|
|
24656
24788
|
}, "strip", z.ZodTypeAny, {
|
|
24789
|
+
analytics: {
|
|
24790
|
+
errorMessage: string;
|
|
24791
|
+
errorReason: string;
|
|
24792
|
+
max?: number | undefined;
|
|
24793
|
+
};
|
|
24657
24794
|
themes: {
|
|
24658
24795
|
errorMessage: string;
|
|
24659
|
-
max: number;
|
|
24660
24796
|
errorReason: string;
|
|
24797
|
+
max?: number | undefined;
|
|
24661
24798
|
};
|
|
24662
24799
|
designSystems: {
|
|
24663
24800
|
errorMessage: string;
|
|
24664
|
-
max: number;
|
|
24665
24801
|
errorReason: string;
|
|
24802
|
+
max?: number | undefined;
|
|
24666
24803
|
};
|
|
24667
24804
|
designSystemSources: {
|
|
24668
24805
|
errorMessage: string;
|
|
24669
|
-
max: number;
|
|
24670
24806
|
errorReason: string;
|
|
24671
24807
|
noImportJobsErrorMessage: string;
|
|
24672
24808
|
noImportJobsErrorReason: string;
|
|
24809
|
+
max?: number | undefined;
|
|
24673
24810
|
};
|
|
24674
24811
|
designSystemVersions: {
|
|
24675
24812
|
errorMessage: string;
|
|
24676
|
-
max: number;
|
|
24677
24813
|
errorReason: string;
|
|
24814
|
+
max?: number | undefined;
|
|
24678
24815
|
};
|
|
24679
24816
|
brands: {
|
|
24680
24817
|
errorMessage: string;
|
|
24681
|
-
max: number;
|
|
24682
24818
|
errorReason: string;
|
|
24819
|
+
max?: number | undefined;
|
|
24683
24820
|
};
|
|
24684
24821
|
codegenSchedules: {
|
|
24685
24822
|
errorMessage: string;
|
|
24686
|
-
max: number;
|
|
24687
24823
|
errorReason: string;
|
|
24824
|
+
max?: number | undefined;
|
|
24688
24825
|
};
|
|
24689
24826
|
publicDocumentation: {
|
|
24690
24827
|
errorMessage: string;
|
|
@@ -24728,13 +24865,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24728
24865
|
};
|
|
24729
24866
|
workspacePaidSeats: {
|
|
24730
24867
|
errorMessage: string;
|
|
24731
|
-
max: number;
|
|
24732
24868
|
errorReason: string;
|
|
24869
|
+
max?: number | undefined;
|
|
24733
24870
|
};
|
|
24734
24871
|
workspaceViewers: {
|
|
24735
24872
|
errorMessage: string;
|
|
24736
|
-
max: number;
|
|
24737
24873
|
errorReason: string;
|
|
24874
|
+
max?: number | undefined;
|
|
24738
24875
|
};
|
|
24739
24876
|
customDocumentationExporter: {
|
|
24740
24877
|
errorMessage: string;
|
|
@@ -24772,37 +24909,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24772
24909
|
enabled: boolean;
|
|
24773
24910
|
};
|
|
24774
24911
|
}, {
|
|
24912
|
+
analytics: {
|
|
24913
|
+
errorMessage: string;
|
|
24914
|
+
errorReason: string;
|
|
24915
|
+
max?: number | undefined;
|
|
24916
|
+
};
|
|
24775
24917
|
themes: {
|
|
24776
24918
|
errorMessage: string;
|
|
24777
|
-
max: number;
|
|
24778
24919
|
errorReason: string;
|
|
24920
|
+
max?: number | undefined;
|
|
24779
24921
|
};
|
|
24780
24922
|
designSystems: {
|
|
24781
24923
|
errorMessage: string;
|
|
24782
|
-
max: number;
|
|
24783
24924
|
errorReason: string;
|
|
24925
|
+
max?: number | undefined;
|
|
24784
24926
|
};
|
|
24785
24927
|
designSystemSources: {
|
|
24786
24928
|
errorMessage: string;
|
|
24787
|
-
max: number;
|
|
24788
24929
|
errorReason: string;
|
|
24789
24930
|
noImportJobsErrorMessage: string;
|
|
24790
24931
|
noImportJobsErrorReason: string;
|
|
24932
|
+
max?: number | undefined;
|
|
24791
24933
|
};
|
|
24792
24934
|
designSystemVersions: {
|
|
24793
24935
|
errorMessage: string;
|
|
24794
|
-
max: number;
|
|
24795
24936
|
errorReason: string;
|
|
24937
|
+
max?: number | undefined;
|
|
24796
24938
|
};
|
|
24797
24939
|
brands: {
|
|
24798
24940
|
errorMessage: string;
|
|
24799
|
-
max: number;
|
|
24800
24941
|
errorReason: string;
|
|
24942
|
+
max?: number | undefined;
|
|
24801
24943
|
};
|
|
24802
24944
|
codegenSchedules: {
|
|
24803
24945
|
errorMessage: string;
|
|
24804
|
-
max: number;
|
|
24805
24946
|
errorReason: string;
|
|
24947
|
+
max?: number | undefined;
|
|
24806
24948
|
};
|
|
24807
24949
|
publicDocumentation: {
|
|
24808
24950
|
errorMessage: string;
|
|
@@ -24846,13 +24988,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24846
24988
|
};
|
|
24847
24989
|
workspacePaidSeats: {
|
|
24848
24990
|
errorMessage: string;
|
|
24849
|
-
max: number;
|
|
24850
24991
|
errorReason: string;
|
|
24992
|
+
max?: number | undefined;
|
|
24851
24993
|
};
|
|
24852
24994
|
workspaceViewers: {
|
|
24853
24995
|
errorMessage: string;
|
|
24854
|
-
max: number;
|
|
24855
24996
|
errorReason: string;
|
|
24997
|
+
max?: number | undefined;
|
|
24856
24998
|
};
|
|
24857
24999
|
customDocumentationExporter: {
|
|
24858
25000
|
errorMessage: string;
|
|
@@ -24957,37 +25099,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
24957
25099
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
24958
25100
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
24959
25101
|
featuresSummary?: {
|
|
25102
|
+
analytics: {
|
|
25103
|
+
errorMessage: string;
|
|
25104
|
+
errorReason: string;
|
|
25105
|
+
max?: number | undefined;
|
|
25106
|
+
};
|
|
24960
25107
|
themes: {
|
|
24961
25108
|
errorMessage: string;
|
|
24962
|
-
max: number;
|
|
24963
25109
|
errorReason: string;
|
|
25110
|
+
max?: number | undefined;
|
|
24964
25111
|
};
|
|
24965
25112
|
designSystems: {
|
|
24966
25113
|
errorMessage: string;
|
|
24967
|
-
max: number;
|
|
24968
25114
|
errorReason: string;
|
|
25115
|
+
max?: number | undefined;
|
|
24969
25116
|
};
|
|
24970
25117
|
designSystemSources: {
|
|
24971
25118
|
errorMessage: string;
|
|
24972
|
-
max: number;
|
|
24973
25119
|
errorReason: string;
|
|
24974
25120
|
noImportJobsErrorMessage: string;
|
|
24975
25121
|
noImportJobsErrorReason: string;
|
|
25122
|
+
max?: number | undefined;
|
|
24976
25123
|
};
|
|
24977
25124
|
designSystemVersions: {
|
|
24978
25125
|
errorMessage: string;
|
|
24979
|
-
max: number;
|
|
24980
25126
|
errorReason: string;
|
|
25127
|
+
max?: number | undefined;
|
|
24981
25128
|
};
|
|
24982
25129
|
brands: {
|
|
24983
25130
|
errorMessage: string;
|
|
24984
|
-
max: number;
|
|
24985
25131
|
errorReason: string;
|
|
25132
|
+
max?: number | undefined;
|
|
24986
25133
|
};
|
|
24987
25134
|
codegenSchedules: {
|
|
24988
25135
|
errorMessage: string;
|
|
24989
|
-
max: number;
|
|
24990
25136
|
errorReason: string;
|
|
25137
|
+
max?: number | undefined;
|
|
24991
25138
|
};
|
|
24992
25139
|
publicDocumentation: {
|
|
24993
25140
|
errorMessage: string;
|
|
@@ -25031,13 +25178,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25031
25178
|
};
|
|
25032
25179
|
workspacePaidSeats: {
|
|
25033
25180
|
errorMessage: string;
|
|
25034
|
-
max: number;
|
|
25035
25181
|
errorReason: string;
|
|
25182
|
+
max?: number | undefined;
|
|
25036
25183
|
};
|
|
25037
25184
|
workspaceViewers: {
|
|
25038
25185
|
errorMessage: string;
|
|
25039
|
-
max: number;
|
|
25040
25186
|
errorReason: string;
|
|
25187
|
+
max?: number | undefined;
|
|
25041
25188
|
};
|
|
25042
25189
|
customDocumentationExporter: {
|
|
25043
25190
|
errorMessage: string;
|
|
@@ -25109,37 +25256,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25109
25256
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
25110
25257
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
25111
25258
|
featuresSummary?: {
|
|
25259
|
+
analytics: {
|
|
25260
|
+
errorMessage: string;
|
|
25261
|
+
errorReason: string;
|
|
25262
|
+
max?: number | undefined;
|
|
25263
|
+
};
|
|
25112
25264
|
themes: {
|
|
25113
25265
|
errorMessage: string;
|
|
25114
|
-
max: number;
|
|
25115
25266
|
errorReason: string;
|
|
25267
|
+
max?: number | undefined;
|
|
25116
25268
|
};
|
|
25117
25269
|
designSystems: {
|
|
25118
25270
|
errorMessage: string;
|
|
25119
|
-
max: number;
|
|
25120
25271
|
errorReason: string;
|
|
25272
|
+
max?: number | undefined;
|
|
25121
25273
|
};
|
|
25122
25274
|
designSystemSources: {
|
|
25123
25275
|
errorMessage: string;
|
|
25124
|
-
max: number;
|
|
25125
25276
|
errorReason: string;
|
|
25126
25277
|
noImportJobsErrorMessage: string;
|
|
25127
25278
|
noImportJobsErrorReason: string;
|
|
25279
|
+
max?: number | undefined;
|
|
25128
25280
|
};
|
|
25129
25281
|
designSystemVersions: {
|
|
25130
25282
|
errorMessage: string;
|
|
25131
|
-
max: number;
|
|
25132
25283
|
errorReason: string;
|
|
25284
|
+
max?: number | undefined;
|
|
25133
25285
|
};
|
|
25134
25286
|
brands: {
|
|
25135
25287
|
errorMessage: string;
|
|
25136
|
-
max: number;
|
|
25137
25288
|
errorReason: string;
|
|
25289
|
+
max?: number | undefined;
|
|
25138
25290
|
};
|
|
25139
25291
|
codegenSchedules: {
|
|
25140
25292
|
errorMessage: string;
|
|
25141
|
-
max: number;
|
|
25142
25293
|
errorReason: string;
|
|
25294
|
+
max?: number | undefined;
|
|
25143
25295
|
};
|
|
25144
25296
|
publicDocumentation: {
|
|
25145
25297
|
errorMessage: string;
|
|
@@ -25183,13 +25335,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25183
25335
|
};
|
|
25184
25336
|
workspacePaidSeats: {
|
|
25185
25337
|
errorMessage: string;
|
|
25186
|
-
max: number;
|
|
25187
25338
|
errorReason: string;
|
|
25339
|
+
max?: number | undefined;
|
|
25188
25340
|
};
|
|
25189
25341
|
workspaceViewers: {
|
|
25190
25342
|
errorMessage: string;
|
|
25191
|
-
max: number;
|
|
25192
25343
|
errorReason: string;
|
|
25344
|
+
max?: number | undefined;
|
|
25193
25345
|
};
|
|
25194
25346
|
customDocumentationExporter: {
|
|
25195
25347
|
errorMessage: string;
|
|
@@ -25437,37 +25589,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25437
25589
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
25438
25590
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
25439
25591
|
featuresSummary?: {
|
|
25592
|
+
analytics: {
|
|
25593
|
+
errorMessage: string;
|
|
25594
|
+
errorReason: string;
|
|
25595
|
+
max?: number | undefined;
|
|
25596
|
+
};
|
|
25440
25597
|
themes: {
|
|
25441
25598
|
errorMessage: string;
|
|
25442
|
-
max: number;
|
|
25443
25599
|
errorReason: string;
|
|
25600
|
+
max?: number | undefined;
|
|
25444
25601
|
};
|
|
25445
25602
|
designSystems: {
|
|
25446
25603
|
errorMessage: string;
|
|
25447
|
-
max: number;
|
|
25448
25604
|
errorReason: string;
|
|
25605
|
+
max?: number | undefined;
|
|
25449
25606
|
};
|
|
25450
25607
|
designSystemSources: {
|
|
25451
25608
|
errorMessage: string;
|
|
25452
|
-
max: number;
|
|
25453
25609
|
errorReason: string;
|
|
25454
25610
|
noImportJobsErrorMessage: string;
|
|
25455
25611
|
noImportJobsErrorReason: string;
|
|
25612
|
+
max?: number | undefined;
|
|
25456
25613
|
};
|
|
25457
25614
|
designSystemVersions: {
|
|
25458
25615
|
errorMessage: string;
|
|
25459
|
-
max: number;
|
|
25460
25616
|
errorReason: string;
|
|
25617
|
+
max?: number | undefined;
|
|
25461
25618
|
};
|
|
25462
25619
|
brands: {
|
|
25463
25620
|
errorMessage: string;
|
|
25464
|
-
max: number;
|
|
25465
25621
|
errorReason: string;
|
|
25622
|
+
max?: number | undefined;
|
|
25466
25623
|
};
|
|
25467
25624
|
codegenSchedules: {
|
|
25468
25625
|
errorMessage: string;
|
|
25469
|
-
max: number;
|
|
25470
25626
|
errorReason: string;
|
|
25627
|
+
max?: number | undefined;
|
|
25471
25628
|
};
|
|
25472
25629
|
publicDocumentation: {
|
|
25473
25630
|
errorMessage: string;
|
|
@@ -25511,13 +25668,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25511
25668
|
};
|
|
25512
25669
|
workspacePaidSeats: {
|
|
25513
25670
|
errorMessage: string;
|
|
25514
|
-
max: number;
|
|
25515
25671
|
errorReason: string;
|
|
25672
|
+
max?: number | undefined;
|
|
25516
25673
|
};
|
|
25517
25674
|
workspaceViewers: {
|
|
25518
25675
|
errorMessage: string;
|
|
25519
|
-
max: number;
|
|
25520
25676
|
errorReason: string;
|
|
25677
|
+
max?: number | undefined;
|
|
25521
25678
|
};
|
|
25522
25679
|
customDocumentationExporter: {
|
|
25523
25680
|
errorMessage: string;
|
|
@@ -25654,37 +25811,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25654
25811
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
25655
25812
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
25656
25813
|
featuresSummary?: {
|
|
25814
|
+
analytics: {
|
|
25815
|
+
errorMessage: string;
|
|
25816
|
+
errorReason: string;
|
|
25817
|
+
max?: number | undefined;
|
|
25818
|
+
};
|
|
25657
25819
|
themes: {
|
|
25658
25820
|
errorMessage: string;
|
|
25659
|
-
max: number;
|
|
25660
25821
|
errorReason: string;
|
|
25822
|
+
max?: number | undefined;
|
|
25661
25823
|
};
|
|
25662
25824
|
designSystems: {
|
|
25663
25825
|
errorMessage: string;
|
|
25664
|
-
max: number;
|
|
25665
25826
|
errorReason: string;
|
|
25827
|
+
max?: number | undefined;
|
|
25666
25828
|
};
|
|
25667
25829
|
designSystemSources: {
|
|
25668
25830
|
errorMessage: string;
|
|
25669
|
-
max: number;
|
|
25670
25831
|
errorReason: string;
|
|
25671
25832
|
noImportJobsErrorMessage: string;
|
|
25672
25833
|
noImportJobsErrorReason: string;
|
|
25834
|
+
max?: number | undefined;
|
|
25673
25835
|
};
|
|
25674
25836
|
designSystemVersions: {
|
|
25675
25837
|
errorMessage: string;
|
|
25676
|
-
max: number;
|
|
25677
25838
|
errorReason: string;
|
|
25839
|
+
max?: number | undefined;
|
|
25678
25840
|
};
|
|
25679
25841
|
brands: {
|
|
25680
25842
|
errorMessage: string;
|
|
25681
|
-
max: number;
|
|
25682
25843
|
errorReason: string;
|
|
25844
|
+
max?: number | undefined;
|
|
25683
25845
|
};
|
|
25684
25846
|
codegenSchedules: {
|
|
25685
25847
|
errorMessage: string;
|
|
25686
|
-
max: number;
|
|
25687
25848
|
errorReason: string;
|
|
25849
|
+
max?: number | undefined;
|
|
25688
25850
|
};
|
|
25689
25851
|
publicDocumentation: {
|
|
25690
25852
|
errorMessage: string;
|
|
@@ -25728,13 +25890,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
25728
25890
|
};
|
|
25729
25891
|
workspacePaidSeats: {
|
|
25730
25892
|
errorMessage: string;
|
|
25731
|
-
max: number;
|
|
25732
25893
|
errorReason: string;
|
|
25894
|
+
max?: number | undefined;
|
|
25733
25895
|
};
|
|
25734
25896
|
workspaceViewers: {
|
|
25735
25897
|
errorMessage: string;
|
|
25736
|
-
max: number;
|
|
25737
25898
|
errorReason: string;
|
|
25899
|
+
max?: number | undefined;
|
|
25738
25900
|
};
|
|
25739
25901
|
customDocumentationExporter: {
|
|
25740
25902
|
errorMessage: string;
|
|
@@ -32479,37 +32641,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32479
32641
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
32480
32642
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
32481
32643
|
featuresSummary?: {
|
|
32644
|
+
analytics: {
|
|
32645
|
+
errorMessage: string;
|
|
32646
|
+
errorReason: string;
|
|
32647
|
+
max?: number | undefined;
|
|
32648
|
+
};
|
|
32482
32649
|
themes: {
|
|
32483
32650
|
errorMessage: string;
|
|
32484
|
-
max: number;
|
|
32485
32651
|
errorReason: string;
|
|
32652
|
+
max?: number | undefined;
|
|
32486
32653
|
};
|
|
32487
32654
|
designSystems: {
|
|
32488
32655
|
errorMessage: string;
|
|
32489
|
-
max: number;
|
|
32490
32656
|
errorReason: string;
|
|
32657
|
+
max?: number | undefined;
|
|
32491
32658
|
};
|
|
32492
32659
|
designSystemSources: {
|
|
32493
32660
|
errorMessage: string;
|
|
32494
|
-
max: number;
|
|
32495
32661
|
errorReason: string;
|
|
32496
32662
|
noImportJobsErrorMessage: string;
|
|
32497
32663
|
noImportJobsErrorReason: string;
|
|
32664
|
+
max?: number | undefined;
|
|
32498
32665
|
};
|
|
32499
32666
|
designSystemVersions: {
|
|
32500
32667
|
errorMessage: string;
|
|
32501
|
-
max: number;
|
|
32502
32668
|
errorReason: string;
|
|
32669
|
+
max?: number | undefined;
|
|
32503
32670
|
};
|
|
32504
32671
|
brands: {
|
|
32505
32672
|
errorMessage: string;
|
|
32506
|
-
max: number;
|
|
32507
32673
|
errorReason: string;
|
|
32674
|
+
max?: number | undefined;
|
|
32508
32675
|
};
|
|
32509
32676
|
codegenSchedules: {
|
|
32510
32677
|
errorMessage: string;
|
|
32511
|
-
max: number;
|
|
32512
32678
|
errorReason: string;
|
|
32679
|
+
max?: number | undefined;
|
|
32513
32680
|
};
|
|
32514
32681
|
publicDocumentation: {
|
|
32515
32682
|
errorMessage: string;
|
|
@@ -32553,13 +32720,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
32553
32720
|
};
|
|
32554
32721
|
workspacePaidSeats: {
|
|
32555
32722
|
errorMessage: string;
|
|
32556
|
-
max: number;
|
|
32557
32723
|
errorReason: string;
|
|
32724
|
+
max?: number | undefined;
|
|
32558
32725
|
};
|
|
32559
32726
|
workspaceViewers: {
|
|
32560
32727
|
errorMessage: string;
|
|
32561
|
-
max: number;
|
|
32562
32728
|
errorReason: string;
|
|
32729
|
+
max?: number | undefined;
|
|
32563
32730
|
};
|
|
32564
32731
|
customDocumentationExporter: {
|
|
32565
32732
|
errorMessage: string;
|
|
@@ -33461,37 +33628,42 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33461
33628
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
33462
33629
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
33463
33630
|
featuresSummary?: {
|
|
33631
|
+
analytics: {
|
|
33632
|
+
errorMessage: string;
|
|
33633
|
+
errorReason: string;
|
|
33634
|
+
max?: number | undefined;
|
|
33635
|
+
};
|
|
33464
33636
|
themes: {
|
|
33465
33637
|
errorMessage: string;
|
|
33466
|
-
max: number;
|
|
33467
33638
|
errorReason: string;
|
|
33639
|
+
max?: number | undefined;
|
|
33468
33640
|
};
|
|
33469
33641
|
designSystems: {
|
|
33470
33642
|
errorMessage: string;
|
|
33471
|
-
max: number;
|
|
33472
33643
|
errorReason: string;
|
|
33644
|
+
max?: number | undefined;
|
|
33473
33645
|
};
|
|
33474
33646
|
designSystemSources: {
|
|
33475
33647
|
errorMessage: string;
|
|
33476
|
-
max: number;
|
|
33477
33648
|
errorReason: string;
|
|
33478
33649
|
noImportJobsErrorMessage: string;
|
|
33479
33650
|
noImportJobsErrorReason: string;
|
|
33651
|
+
max?: number | undefined;
|
|
33480
33652
|
};
|
|
33481
33653
|
designSystemVersions: {
|
|
33482
33654
|
errorMessage: string;
|
|
33483
|
-
max: number;
|
|
33484
33655
|
errorReason: string;
|
|
33656
|
+
max?: number | undefined;
|
|
33485
33657
|
};
|
|
33486
33658
|
brands: {
|
|
33487
33659
|
errorMessage: string;
|
|
33488
|
-
max: number;
|
|
33489
33660
|
errorReason: string;
|
|
33661
|
+
max?: number | undefined;
|
|
33490
33662
|
};
|
|
33491
33663
|
codegenSchedules: {
|
|
33492
33664
|
errorMessage: string;
|
|
33493
|
-
max: number;
|
|
33494
33665
|
errorReason: string;
|
|
33666
|
+
max?: number | undefined;
|
|
33495
33667
|
};
|
|
33496
33668
|
publicDocumentation: {
|
|
33497
33669
|
errorMessage: string;
|
|
@@ -33535,13 +33707,13 @@ declare const WorkspaceDump: z.ZodObject<{
|
|
|
33535
33707
|
};
|
|
33536
33708
|
workspacePaidSeats: {
|
|
33537
33709
|
errorMessage: string;
|
|
33538
|
-
max: number;
|
|
33539
33710
|
errorReason: string;
|
|
33711
|
+
max?: number | undefined;
|
|
33540
33712
|
};
|
|
33541
33713
|
workspaceViewers: {
|
|
33542
33714
|
errorMessage: string;
|
|
33543
|
-
max: number;
|
|
33544
33715
|
errorReason: string;
|
|
33716
|
+
max?: number | undefined;
|
|
33545
33717
|
};
|
|
33546
33718
|
customDocumentationExporter: {
|
|
33547
33719
|
errorMessage: string;
|
|
@@ -136541,20 +136713,20 @@ declare const Workspace: z.ZodObject<{
|
|
|
136541
136713
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
136542
136714
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
136543
136715
|
designSystems: z.ZodObject<{
|
|
136544
|
-
max: z.ZodNumber
|
|
136716
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136545
136717
|
errorMessage: z.ZodString;
|
|
136546
136718
|
errorReason: z.ZodString;
|
|
136547
136719
|
}, "strip", z.ZodTypeAny, {
|
|
136548
136720
|
errorMessage: string;
|
|
136549
|
-
max: number;
|
|
136550
136721
|
errorReason: string;
|
|
136722
|
+
max?: number | undefined;
|
|
136551
136723
|
}, {
|
|
136552
136724
|
errorMessage: string;
|
|
136553
|
-
max: number;
|
|
136554
136725
|
errorReason: string;
|
|
136726
|
+
max?: number | undefined;
|
|
136555
136727
|
}>;
|
|
136556
136728
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
136557
|
-
max: z.ZodNumber
|
|
136729
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136558
136730
|
errorMessage: z.ZodString;
|
|
136559
136731
|
errorReason: z.ZodString;
|
|
136560
136732
|
}, {
|
|
@@ -136562,68 +136734,68 @@ declare const Workspace: z.ZodObject<{
|
|
|
136562
136734
|
noImportJobsErrorReason: z.ZodString;
|
|
136563
136735
|
}>, "strip", z.ZodTypeAny, {
|
|
136564
136736
|
errorMessage: string;
|
|
136565
|
-
max: number;
|
|
136566
136737
|
errorReason: string;
|
|
136567
136738
|
noImportJobsErrorMessage: string;
|
|
136568
136739
|
noImportJobsErrorReason: string;
|
|
136740
|
+
max?: number | undefined;
|
|
136569
136741
|
}, {
|
|
136570
136742
|
errorMessage: string;
|
|
136571
|
-
max: number;
|
|
136572
136743
|
errorReason: string;
|
|
136573
136744
|
noImportJobsErrorMessage: string;
|
|
136574
136745
|
noImportJobsErrorReason: string;
|
|
136746
|
+
max?: number | undefined;
|
|
136575
136747
|
}>;
|
|
136576
136748
|
designSystemVersions: z.ZodObject<{
|
|
136577
|
-
max: z.ZodNumber
|
|
136749
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136578
136750
|
errorMessage: z.ZodString;
|
|
136579
136751
|
errorReason: z.ZodString;
|
|
136580
136752
|
}, "strip", z.ZodTypeAny, {
|
|
136581
136753
|
errorMessage: string;
|
|
136582
|
-
max: number;
|
|
136583
136754
|
errorReason: string;
|
|
136755
|
+
max?: number | undefined;
|
|
136584
136756
|
}, {
|
|
136585
136757
|
errorMessage: string;
|
|
136586
|
-
max: number;
|
|
136587
136758
|
errorReason: string;
|
|
136759
|
+
max?: number | undefined;
|
|
136588
136760
|
}>;
|
|
136589
136761
|
themes: z.ZodObject<{
|
|
136590
|
-
max: z.ZodNumber
|
|
136762
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136591
136763
|
errorMessage: z.ZodString;
|
|
136592
136764
|
errorReason: z.ZodString;
|
|
136593
136765
|
}, "strip", z.ZodTypeAny, {
|
|
136594
136766
|
errorMessage: string;
|
|
136595
|
-
max: number;
|
|
136596
136767
|
errorReason: string;
|
|
136768
|
+
max?: number | undefined;
|
|
136597
136769
|
}, {
|
|
136598
136770
|
errorMessage: string;
|
|
136599
|
-
max: number;
|
|
136600
136771
|
errorReason: string;
|
|
136772
|
+
max?: number | undefined;
|
|
136601
136773
|
}>;
|
|
136602
136774
|
brands: z.ZodObject<{
|
|
136603
|
-
max: z.ZodNumber
|
|
136775
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136604
136776
|
errorMessage: z.ZodString;
|
|
136605
136777
|
errorReason: z.ZodString;
|
|
136606
136778
|
}, "strip", z.ZodTypeAny, {
|
|
136607
136779
|
errorMessage: string;
|
|
136608
|
-
max: number;
|
|
136609
136780
|
errorReason: string;
|
|
136781
|
+
max?: number | undefined;
|
|
136610
136782
|
}, {
|
|
136611
136783
|
errorMessage: string;
|
|
136612
|
-
max: number;
|
|
136613
136784
|
errorReason: string;
|
|
136785
|
+
max?: number | undefined;
|
|
136614
136786
|
}>;
|
|
136615
136787
|
codegenSchedules: z.ZodObject<{
|
|
136616
|
-
max: z.ZodNumber
|
|
136788
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136617
136789
|
errorMessage: z.ZodString;
|
|
136618
136790
|
errorReason: z.ZodString;
|
|
136619
136791
|
}, "strip", z.ZodTypeAny, {
|
|
136620
136792
|
errorMessage: string;
|
|
136621
|
-
max: number;
|
|
136622
136793
|
errorReason: string;
|
|
136794
|
+
max?: number | undefined;
|
|
136623
136795
|
}, {
|
|
136624
136796
|
errorMessage: string;
|
|
136625
|
-
max: number;
|
|
136626
136797
|
errorReason: string;
|
|
136798
|
+
max?: number | undefined;
|
|
136627
136799
|
}>;
|
|
136628
136800
|
publicDocumentation: z.ZodObject<{
|
|
136629
136801
|
enabled: z.ZodBoolean;
|
|
@@ -136730,30 +136902,30 @@ declare const Workspace: z.ZodObject<{
|
|
|
136730
136902
|
enabled: boolean;
|
|
136731
136903
|
}>;
|
|
136732
136904
|
workspacePaidSeats: z.ZodObject<{
|
|
136733
|
-
max: z.ZodNumber
|
|
136905
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136734
136906
|
errorMessage: z.ZodString;
|
|
136735
136907
|
errorReason: z.ZodString;
|
|
136736
136908
|
}, "strip", z.ZodTypeAny, {
|
|
136737
136909
|
errorMessage: string;
|
|
136738
|
-
max: number;
|
|
136739
136910
|
errorReason: string;
|
|
136911
|
+
max?: number | undefined;
|
|
136740
136912
|
}, {
|
|
136741
136913
|
errorMessage: string;
|
|
136742
|
-
max: number;
|
|
136743
136914
|
errorReason: string;
|
|
136915
|
+
max?: number | undefined;
|
|
136744
136916
|
}>;
|
|
136745
136917
|
workspaceViewers: z.ZodObject<{
|
|
136746
|
-
max: z.ZodNumber
|
|
136918
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
136747
136919
|
errorMessage: z.ZodString;
|
|
136748
136920
|
errorReason: z.ZodString;
|
|
136749
136921
|
}, "strip", z.ZodTypeAny, {
|
|
136750
136922
|
errorMessage: string;
|
|
136751
|
-
max: number;
|
|
136752
136923
|
errorReason: string;
|
|
136924
|
+
max?: number | undefined;
|
|
136753
136925
|
}, {
|
|
136754
136926
|
errorMessage: string;
|
|
136755
|
-
max: number;
|
|
136756
136927
|
errorReason: string;
|
|
136928
|
+
max?: number | undefined;
|
|
136757
136929
|
}>;
|
|
136758
136930
|
customDocumentationExporter: z.ZodObject<{
|
|
136759
136931
|
enabled: z.ZodBoolean;
|
|
@@ -136846,38 +137018,56 @@ declare const Workspace: z.ZodObject<{
|
|
|
136846
137018
|
errorReason: string;
|
|
136847
137019
|
enabled: boolean;
|
|
136848
137020
|
}>;
|
|
137021
|
+
analytics: z.ZodObject<{
|
|
137022
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
137023
|
+
errorMessage: z.ZodString;
|
|
137024
|
+
errorReason: z.ZodString;
|
|
137025
|
+
}, "strip", z.ZodTypeAny, {
|
|
137026
|
+
errorMessage: string;
|
|
137027
|
+
errorReason: string;
|
|
137028
|
+
max?: number | undefined;
|
|
137029
|
+
}, {
|
|
137030
|
+
errorMessage: string;
|
|
137031
|
+
errorReason: string;
|
|
137032
|
+
max?: number | undefined;
|
|
137033
|
+
}>;
|
|
136849
137034
|
}, "strip", z.ZodTypeAny, {
|
|
137035
|
+
analytics: {
|
|
137036
|
+
errorMessage: string;
|
|
137037
|
+
errorReason: string;
|
|
137038
|
+
max?: number | undefined;
|
|
137039
|
+
};
|
|
136850
137040
|
themes: {
|
|
136851
137041
|
errorMessage: string;
|
|
136852
|
-
max: number;
|
|
136853
137042
|
errorReason: string;
|
|
137043
|
+
max?: number | undefined;
|
|
136854
137044
|
};
|
|
136855
137045
|
designSystems: {
|
|
136856
137046
|
errorMessage: string;
|
|
136857
|
-
max: number;
|
|
136858
137047
|
errorReason: string;
|
|
137048
|
+
max?: number | undefined;
|
|
136859
137049
|
};
|
|
136860
137050
|
designSystemSources: {
|
|
136861
137051
|
errorMessage: string;
|
|
136862
|
-
max: number;
|
|
136863
137052
|
errorReason: string;
|
|
136864
137053
|
noImportJobsErrorMessage: string;
|
|
136865
137054
|
noImportJobsErrorReason: string;
|
|
137055
|
+
max?: number | undefined;
|
|
136866
137056
|
};
|
|
136867
137057
|
designSystemVersions: {
|
|
136868
137058
|
errorMessage: string;
|
|
136869
|
-
max: number;
|
|
136870
137059
|
errorReason: string;
|
|
137060
|
+
max?: number | undefined;
|
|
136871
137061
|
};
|
|
136872
137062
|
brands: {
|
|
136873
137063
|
errorMessage: string;
|
|
136874
|
-
max: number;
|
|
136875
137064
|
errorReason: string;
|
|
137065
|
+
max?: number | undefined;
|
|
136876
137066
|
};
|
|
136877
137067
|
codegenSchedules: {
|
|
136878
137068
|
errorMessage: string;
|
|
136879
|
-
max: number;
|
|
136880
137069
|
errorReason: string;
|
|
137070
|
+
max?: number | undefined;
|
|
136881
137071
|
};
|
|
136882
137072
|
publicDocumentation: {
|
|
136883
137073
|
errorMessage: string;
|
|
@@ -136921,13 +137111,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
136921
137111
|
};
|
|
136922
137112
|
workspacePaidSeats: {
|
|
136923
137113
|
errorMessage: string;
|
|
136924
|
-
max: number;
|
|
136925
137114
|
errorReason: string;
|
|
137115
|
+
max?: number | undefined;
|
|
136926
137116
|
};
|
|
136927
137117
|
workspaceViewers: {
|
|
136928
137118
|
errorMessage: string;
|
|
136929
|
-
max: number;
|
|
136930
137119
|
errorReason: string;
|
|
137120
|
+
max?: number | undefined;
|
|
136931
137121
|
};
|
|
136932
137122
|
customDocumentationExporter: {
|
|
136933
137123
|
errorMessage: string;
|
|
@@ -136965,37 +137155,42 @@ declare const Workspace: z.ZodObject<{
|
|
|
136965
137155
|
enabled: boolean;
|
|
136966
137156
|
};
|
|
136967
137157
|
}, {
|
|
137158
|
+
analytics: {
|
|
137159
|
+
errorMessage: string;
|
|
137160
|
+
errorReason: string;
|
|
137161
|
+
max?: number | undefined;
|
|
137162
|
+
};
|
|
136968
137163
|
themes: {
|
|
136969
137164
|
errorMessage: string;
|
|
136970
|
-
max: number;
|
|
136971
137165
|
errorReason: string;
|
|
137166
|
+
max?: number | undefined;
|
|
136972
137167
|
};
|
|
136973
137168
|
designSystems: {
|
|
136974
137169
|
errorMessage: string;
|
|
136975
|
-
max: number;
|
|
136976
137170
|
errorReason: string;
|
|
137171
|
+
max?: number | undefined;
|
|
136977
137172
|
};
|
|
136978
137173
|
designSystemSources: {
|
|
136979
137174
|
errorMessage: string;
|
|
136980
|
-
max: number;
|
|
136981
137175
|
errorReason: string;
|
|
136982
137176
|
noImportJobsErrorMessage: string;
|
|
136983
137177
|
noImportJobsErrorReason: string;
|
|
137178
|
+
max?: number | undefined;
|
|
136984
137179
|
};
|
|
136985
137180
|
designSystemVersions: {
|
|
136986
137181
|
errorMessage: string;
|
|
136987
|
-
max: number;
|
|
136988
137182
|
errorReason: string;
|
|
137183
|
+
max?: number | undefined;
|
|
136989
137184
|
};
|
|
136990
137185
|
brands: {
|
|
136991
137186
|
errorMessage: string;
|
|
136992
|
-
max: number;
|
|
136993
137187
|
errorReason: string;
|
|
137188
|
+
max?: number | undefined;
|
|
136994
137189
|
};
|
|
136995
137190
|
codegenSchedules: {
|
|
136996
137191
|
errorMessage: string;
|
|
136997
|
-
max: number;
|
|
136998
137192
|
errorReason: string;
|
|
137193
|
+
max?: number | undefined;
|
|
136999
137194
|
};
|
|
137000
137195
|
publicDocumentation: {
|
|
137001
137196
|
errorMessage: string;
|
|
@@ -137039,13 +137234,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
137039
137234
|
};
|
|
137040
137235
|
workspacePaidSeats: {
|
|
137041
137236
|
errorMessage: string;
|
|
137042
|
-
max: number;
|
|
137043
137237
|
errorReason: string;
|
|
137238
|
+
max?: number | undefined;
|
|
137044
137239
|
};
|
|
137045
137240
|
workspaceViewers: {
|
|
137046
137241
|
errorMessage: string;
|
|
137047
|
-
max: number;
|
|
137048
137242
|
errorReason: string;
|
|
137243
|
+
max?: number | undefined;
|
|
137049
137244
|
};
|
|
137050
137245
|
customDocumentationExporter: {
|
|
137051
137246
|
errorMessage: string;
|
|
@@ -137150,37 +137345,42 @@ declare const Workspace: z.ZodObject<{
|
|
|
137150
137345
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
137151
137346
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
137152
137347
|
featuresSummary?: {
|
|
137348
|
+
analytics: {
|
|
137349
|
+
errorMessage: string;
|
|
137350
|
+
errorReason: string;
|
|
137351
|
+
max?: number | undefined;
|
|
137352
|
+
};
|
|
137153
137353
|
themes: {
|
|
137154
137354
|
errorMessage: string;
|
|
137155
|
-
max: number;
|
|
137156
137355
|
errorReason: string;
|
|
137356
|
+
max?: number | undefined;
|
|
137157
137357
|
};
|
|
137158
137358
|
designSystems: {
|
|
137159
137359
|
errorMessage: string;
|
|
137160
|
-
max: number;
|
|
137161
137360
|
errorReason: string;
|
|
137361
|
+
max?: number | undefined;
|
|
137162
137362
|
};
|
|
137163
137363
|
designSystemSources: {
|
|
137164
137364
|
errorMessage: string;
|
|
137165
|
-
max: number;
|
|
137166
137365
|
errorReason: string;
|
|
137167
137366
|
noImportJobsErrorMessage: string;
|
|
137168
137367
|
noImportJobsErrorReason: string;
|
|
137368
|
+
max?: number | undefined;
|
|
137169
137369
|
};
|
|
137170
137370
|
designSystemVersions: {
|
|
137171
137371
|
errorMessage: string;
|
|
137172
|
-
max: number;
|
|
137173
137372
|
errorReason: string;
|
|
137373
|
+
max?: number | undefined;
|
|
137174
137374
|
};
|
|
137175
137375
|
brands: {
|
|
137176
137376
|
errorMessage: string;
|
|
137177
|
-
max: number;
|
|
137178
137377
|
errorReason: string;
|
|
137378
|
+
max?: number | undefined;
|
|
137179
137379
|
};
|
|
137180
137380
|
codegenSchedules: {
|
|
137181
137381
|
errorMessage: string;
|
|
137182
|
-
max: number;
|
|
137183
137382
|
errorReason: string;
|
|
137383
|
+
max?: number | undefined;
|
|
137184
137384
|
};
|
|
137185
137385
|
publicDocumentation: {
|
|
137186
137386
|
errorMessage: string;
|
|
@@ -137224,13 +137424,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
137224
137424
|
};
|
|
137225
137425
|
workspacePaidSeats: {
|
|
137226
137426
|
errorMessage: string;
|
|
137227
|
-
max: number;
|
|
137228
137427
|
errorReason: string;
|
|
137428
|
+
max?: number | undefined;
|
|
137229
137429
|
};
|
|
137230
137430
|
workspaceViewers: {
|
|
137231
137431
|
errorMessage: string;
|
|
137232
|
-
max: number;
|
|
137233
137432
|
errorReason: string;
|
|
137433
|
+
max?: number | undefined;
|
|
137234
137434
|
};
|
|
137235
137435
|
customDocumentationExporter: {
|
|
137236
137436
|
errorMessage: string;
|
|
@@ -137302,37 +137502,42 @@ declare const Workspace: z.ZodObject<{
|
|
|
137302
137502
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
137303
137503
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
137304
137504
|
featuresSummary?: {
|
|
137505
|
+
analytics: {
|
|
137506
|
+
errorMessage: string;
|
|
137507
|
+
errorReason: string;
|
|
137508
|
+
max?: number | undefined;
|
|
137509
|
+
};
|
|
137305
137510
|
themes: {
|
|
137306
137511
|
errorMessage: string;
|
|
137307
|
-
max: number;
|
|
137308
137512
|
errorReason: string;
|
|
137513
|
+
max?: number | undefined;
|
|
137309
137514
|
};
|
|
137310
137515
|
designSystems: {
|
|
137311
137516
|
errorMessage: string;
|
|
137312
|
-
max: number;
|
|
137313
137517
|
errorReason: string;
|
|
137518
|
+
max?: number | undefined;
|
|
137314
137519
|
};
|
|
137315
137520
|
designSystemSources: {
|
|
137316
137521
|
errorMessage: string;
|
|
137317
|
-
max: number;
|
|
137318
137522
|
errorReason: string;
|
|
137319
137523
|
noImportJobsErrorMessage: string;
|
|
137320
137524
|
noImportJobsErrorReason: string;
|
|
137525
|
+
max?: number | undefined;
|
|
137321
137526
|
};
|
|
137322
137527
|
designSystemVersions: {
|
|
137323
137528
|
errorMessage: string;
|
|
137324
|
-
max: number;
|
|
137325
137529
|
errorReason: string;
|
|
137530
|
+
max?: number | undefined;
|
|
137326
137531
|
};
|
|
137327
137532
|
brands: {
|
|
137328
137533
|
errorMessage: string;
|
|
137329
|
-
max: number;
|
|
137330
137534
|
errorReason: string;
|
|
137535
|
+
max?: number | undefined;
|
|
137331
137536
|
};
|
|
137332
137537
|
codegenSchedules: {
|
|
137333
137538
|
errorMessage: string;
|
|
137334
|
-
max: number;
|
|
137335
137539
|
errorReason: string;
|
|
137540
|
+
max?: number | undefined;
|
|
137336
137541
|
};
|
|
137337
137542
|
publicDocumentation: {
|
|
137338
137543
|
errorMessage: string;
|
|
@@ -137376,13 +137581,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
137376
137581
|
};
|
|
137377
137582
|
workspacePaidSeats: {
|
|
137378
137583
|
errorMessage: string;
|
|
137379
|
-
max: number;
|
|
137380
137584
|
errorReason: string;
|
|
137585
|
+
max?: number | undefined;
|
|
137381
137586
|
};
|
|
137382
137587
|
workspaceViewers: {
|
|
137383
137588
|
errorMessage: string;
|
|
137384
|
-
max: number;
|
|
137385
137589
|
errorReason: string;
|
|
137590
|
+
max?: number | undefined;
|
|
137386
137591
|
};
|
|
137387
137592
|
customDocumentationExporter: {
|
|
137388
137593
|
errorMessage: string;
|
|
@@ -137630,37 +137835,42 @@ declare const Workspace: z.ZodObject<{
|
|
|
137630
137835
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
137631
137836
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
137632
137837
|
featuresSummary?: {
|
|
137838
|
+
analytics: {
|
|
137839
|
+
errorMessage: string;
|
|
137840
|
+
errorReason: string;
|
|
137841
|
+
max?: number | undefined;
|
|
137842
|
+
};
|
|
137633
137843
|
themes: {
|
|
137634
137844
|
errorMessage: string;
|
|
137635
|
-
max: number;
|
|
137636
137845
|
errorReason: string;
|
|
137846
|
+
max?: number | undefined;
|
|
137637
137847
|
};
|
|
137638
137848
|
designSystems: {
|
|
137639
137849
|
errorMessage: string;
|
|
137640
|
-
max: number;
|
|
137641
137850
|
errorReason: string;
|
|
137851
|
+
max?: number | undefined;
|
|
137642
137852
|
};
|
|
137643
137853
|
designSystemSources: {
|
|
137644
137854
|
errorMessage: string;
|
|
137645
|
-
max: number;
|
|
137646
137855
|
errorReason: string;
|
|
137647
137856
|
noImportJobsErrorMessage: string;
|
|
137648
137857
|
noImportJobsErrorReason: string;
|
|
137858
|
+
max?: number | undefined;
|
|
137649
137859
|
};
|
|
137650
137860
|
designSystemVersions: {
|
|
137651
137861
|
errorMessage: string;
|
|
137652
|
-
max: number;
|
|
137653
137862
|
errorReason: string;
|
|
137863
|
+
max?: number | undefined;
|
|
137654
137864
|
};
|
|
137655
137865
|
brands: {
|
|
137656
137866
|
errorMessage: string;
|
|
137657
|
-
max: number;
|
|
137658
137867
|
errorReason: string;
|
|
137868
|
+
max?: number | undefined;
|
|
137659
137869
|
};
|
|
137660
137870
|
codegenSchedules: {
|
|
137661
137871
|
errorMessage: string;
|
|
137662
|
-
max: number;
|
|
137663
137872
|
errorReason: string;
|
|
137873
|
+
max?: number | undefined;
|
|
137664
137874
|
};
|
|
137665
137875
|
publicDocumentation: {
|
|
137666
137876
|
errorMessage: string;
|
|
@@ -137704,13 +137914,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
137704
137914
|
};
|
|
137705
137915
|
workspacePaidSeats: {
|
|
137706
137916
|
errorMessage: string;
|
|
137707
|
-
max: number;
|
|
137708
137917
|
errorReason: string;
|
|
137918
|
+
max?: number | undefined;
|
|
137709
137919
|
};
|
|
137710
137920
|
workspaceViewers: {
|
|
137711
137921
|
errorMessage: string;
|
|
137712
|
-
max: number;
|
|
137713
137922
|
errorReason: string;
|
|
137923
|
+
max?: number | undefined;
|
|
137714
137924
|
};
|
|
137715
137925
|
customDocumentationExporter: {
|
|
137716
137926
|
errorMessage: string;
|
|
@@ -137847,37 +138057,42 @@ declare const Workspace: z.ZodObject<{
|
|
|
137847
138057
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
137848
138058
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
137849
138059
|
featuresSummary?: {
|
|
138060
|
+
analytics: {
|
|
138061
|
+
errorMessage: string;
|
|
138062
|
+
errorReason: string;
|
|
138063
|
+
max?: number | undefined;
|
|
138064
|
+
};
|
|
137850
138065
|
themes: {
|
|
137851
138066
|
errorMessage: string;
|
|
137852
|
-
max: number;
|
|
137853
138067
|
errorReason: string;
|
|
138068
|
+
max?: number | undefined;
|
|
137854
138069
|
};
|
|
137855
138070
|
designSystems: {
|
|
137856
138071
|
errorMessage: string;
|
|
137857
|
-
max: number;
|
|
137858
138072
|
errorReason: string;
|
|
138073
|
+
max?: number | undefined;
|
|
137859
138074
|
};
|
|
137860
138075
|
designSystemSources: {
|
|
137861
138076
|
errorMessage: string;
|
|
137862
|
-
max: number;
|
|
137863
138077
|
errorReason: string;
|
|
137864
138078
|
noImportJobsErrorMessage: string;
|
|
137865
138079
|
noImportJobsErrorReason: string;
|
|
138080
|
+
max?: number | undefined;
|
|
137866
138081
|
};
|
|
137867
138082
|
designSystemVersions: {
|
|
137868
138083
|
errorMessage: string;
|
|
137869
|
-
max: number;
|
|
137870
138084
|
errorReason: string;
|
|
138085
|
+
max?: number | undefined;
|
|
137871
138086
|
};
|
|
137872
138087
|
brands: {
|
|
137873
138088
|
errorMessage: string;
|
|
137874
|
-
max: number;
|
|
137875
138089
|
errorReason: string;
|
|
138090
|
+
max?: number | undefined;
|
|
137876
138091
|
};
|
|
137877
138092
|
codegenSchedules: {
|
|
137878
138093
|
errorMessage: string;
|
|
137879
|
-
max: number;
|
|
137880
138094
|
errorReason: string;
|
|
138095
|
+
max?: number | undefined;
|
|
137881
138096
|
};
|
|
137882
138097
|
publicDocumentation: {
|
|
137883
138098
|
errorMessage: string;
|
|
@@ -137921,13 +138136,13 @@ declare const Workspace: z.ZodObject<{
|
|
|
137921
138136
|
};
|
|
137922
138137
|
workspacePaidSeats: {
|
|
137923
138138
|
errorMessage: string;
|
|
137924
|
-
max: number;
|
|
137925
138139
|
errorReason: string;
|
|
138140
|
+
max?: number | undefined;
|
|
137926
138141
|
};
|
|
137927
138142
|
workspaceViewers: {
|
|
137928
138143
|
errorMessage: string;
|
|
137929
|
-
max: number;
|
|
137930
138144
|
errorReason: string;
|
|
138145
|
+
max?: number | undefined;
|
|
137931
138146
|
};
|
|
137932
138147
|
customDocumentationExporter: {
|
|
137933
138148
|
errorMessage: string;
|
|
@@ -138136,20 +138351,20 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138136
138351
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
138137
138352
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
138138
138353
|
designSystems: z.ZodObject<{
|
|
138139
|
-
max: z.ZodNumber
|
|
138354
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138140
138355
|
errorMessage: z.ZodString;
|
|
138141
138356
|
errorReason: z.ZodString;
|
|
138142
138357
|
}, "strip", z.ZodTypeAny, {
|
|
138143
138358
|
errorMessage: string;
|
|
138144
|
-
max: number;
|
|
138145
138359
|
errorReason: string;
|
|
138360
|
+
max?: number | undefined;
|
|
138146
138361
|
}, {
|
|
138147
138362
|
errorMessage: string;
|
|
138148
|
-
max: number;
|
|
138149
138363
|
errorReason: string;
|
|
138364
|
+
max?: number | undefined;
|
|
138150
138365
|
}>;
|
|
138151
138366
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
138152
|
-
max: z.ZodNumber
|
|
138367
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138153
138368
|
errorMessage: z.ZodString;
|
|
138154
138369
|
errorReason: z.ZodString;
|
|
138155
138370
|
}, {
|
|
@@ -138157,68 +138372,68 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138157
138372
|
noImportJobsErrorReason: z.ZodString;
|
|
138158
138373
|
}>, "strip", z.ZodTypeAny, {
|
|
138159
138374
|
errorMessage: string;
|
|
138160
|
-
max: number;
|
|
138161
138375
|
errorReason: string;
|
|
138162
138376
|
noImportJobsErrorMessage: string;
|
|
138163
138377
|
noImportJobsErrorReason: string;
|
|
138378
|
+
max?: number | undefined;
|
|
138164
138379
|
}, {
|
|
138165
138380
|
errorMessage: string;
|
|
138166
|
-
max: number;
|
|
138167
138381
|
errorReason: string;
|
|
138168
138382
|
noImportJobsErrorMessage: string;
|
|
138169
138383
|
noImportJobsErrorReason: string;
|
|
138384
|
+
max?: number | undefined;
|
|
138170
138385
|
}>;
|
|
138171
138386
|
designSystemVersions: z.ZodObject<{
|
|
138172
|
-
max: z.ZodNumber
|
|
138387
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138173
138388
|
errorMessage: z.ZodString;
|
|
138174
138389
|
errorReason: z.ZodString;
|
|
138175
138390
|
}, "strip", z.ZodTypeAny, {
|
|
138176
138391
|
errorMessage: string;
|
|
138177
|
-
max: number;
|
|
138178
138392
|
errorReason: string;
|
|
138393
|
+
max?: number | undefined;
|
|
138179
138394
|
}, {
|
|
138180
138395
|
errorMessage: string;
|
|
138181
|
-
max: number;
|
|
138182
138396
|
errorReason: string;
|
|
138397
|
+
max?: number | undefined;
|
|
138183
138398
|
}>;
|
|
138184
138399
|
themes: z.ZodObject<{
|
|
138185
|
-
max: z.ZodNumber
|
|
138400
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138186
138401
|
errorMessage: z.ZodString;
|
|
138187
138402
|
errorReason: z.ZodString;
|
|
138188
138403
|
}, "strip", z.ZodTypeAny, {
|
|
138189
138404
|
errorMessage: string;
|
|
138190
|
-
max: number;
|
|
138191
138405
|
errorReason: string;
|
|
138406
|
+
max?: number | undefined;
|
|
138192
138407
|
}, {
|
|
138193
138408
|
errorMessage: string;
|
|
138194
|
-
max: number;
|
|
138195
138409
|
errorReason: string;
|
|
138410
|
+
max?: number | undefined;
|
|
138196
138411
|
}>;
|
|
138197
138412
|
brands: z.ZodObject<{
|
|
138198
|
-
max: z.ZodNumber
|
|
138413
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138199
138414
|
errorMessage: z.ZodString;
|
|
138200
138415
|
errorReason: z.ZodString;
|
|
138201
138416
|
}, "strip", z.ZodTypeAny, {
|
|
138202
138417
|
errorMessage: string;
|
|
138203
|
-
max: number;
|
|
138204
138418
|
errorReason: string;
|
|
138419
|
+
max?: number | undefined;
|
|
138205
138420
|
}, {
|
|
138206
138421
|
errorMessage: string;
|
|
138207
|
-
max: number;
|
|
138208
138422
|
errorReason: string;
|
|
138423
|
+
max?: number | undefined;
|
|
138209
138424
|
}>;
|
|
138210
138425
|
codegenSchedules: z.ZodObject<{
|
|
138211
|
-
max: z.ZodNumber
|
|
138426
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138212
138427
|
errorMessage: z.ZodString;
|
|
138213
138428
|
errorReason: z.ZodString;
|
|
138214
138429
|
}, "strip", z.ZodTypeAny, {
|
|
138215
138430
|
errorMessage: string;
|
|
138216
|
-
max: number;
|
|
138217
138431
|
errorReason: string;
|
|
138432
|
+
max?: number | undefined;
|
|
138218
138433
|
}, {
|
|
138219
138434
|
errorMessage: string;
|
|
138220
|
-
max: number;
|
|
138221
138435
|
errorReason: string;
|
|
138436
|
+
max?: number | undefined;
|
|
138222
138437
|
}>;
|
|
138223
138438
|
publicDocumentation: z.ZodObject<{
|
|
138224
138439
|
enabled: z.ZodBoolean;
|
|
@@ -138325,30 +138540,30 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138325
138540
|
enabled: boolean;
|
|
138326
138541
|
}>;
|
|
138327
138542
|
workspacePaidSeats: z.ZodObject<{
|
|
138328
|
-
max: z.ZodNumber
|
|
138543
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138329
138544
|
errorMessage: z.ZodString;
|
|
138330
138545
|
errorReason: z.ZodString;
|
|
138331
138546
|
}, "strip", z.ZodTypeAny, {
|
|
138332
138547
|
errorMessage: string;
|
|
138333
|
-
max: number;
|
|
138334
138548
|
errorReason: string;
|
|
138549
|
+
max?: number | undefined;
|
|
138335
138550
|
}, {
|
|
138336
138551
|
errorMessage: string;
|
|
138337
|
-
max: number;
|
|
138338
138552
|
errorReason: string;
|
|
138553
|
+
max?: number | undefined;
|
|
138339
138554
|
}>;
|
|
138340
138555
|
workspaceViewers: z.ZodObject<{
|
|
138341
|
-
max: z.ZodNumber
|
|
138556
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138342
138557
|
errorMessage: z.ZodString;
|
|
138343
138558
|
errorReason: z.ZodString;
|
|
138344
138559
|
}, "strip", z.ZodTypeAny, {
|
|
138345
138560
|
errorMessage: string;
|
|
138346
|
-
max: number;
|
|
138347
138561
|
errorReason: string;
|
|
138562
|
+
max?: number | undefined;
|
|
138348
138563
|
}, {
|
|
138349
138564
|
errorMessage: string;
|
|
138350
|
-
max: number;
|
|
138351
138565
|
errorReason: string;
|
|
138566
|
+
max?: number | undefined;
|
|
138352
138567
|
}>;
|
|
138353
138568
|
customDocumentationExporter: z.ZodObject<{
|
|
138354
138569
|
enabled: z.ZodBoolean;
|
|
@@ -138441,38 +138656,56 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138441
138656
|
errorReason: string;
|
|
138442
138657
|
enabled: boolean;
|
|
138443
138658
|
}>;
|
|
138659
|
+
analytics: z.ZodObject<{
|
|
138660
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
138661
|
+
errorMessage: z.ZodString;
|
|
138662
|
+
errorReason: z.ZodString;
|
|
138663
|
+
}, "strip", z.ZodTypeAny, {
|
|
138664
|
+
errorMessage: string;
|
|
138665
|
+
errorReason: string;
|
|
138666
|
+
max?: number | undefined;
|
|
138667
|
+
}, {
|
|
138668
|
+
errorMessage: string;
|
|
138669
|
+
errorReason: string;
|
|
138670
|
+
max?: number | undefined;
|
|
138671
|
+
}>;
|
|
138444
138672
|
}, "strip", z.ZodTypeAny, {
|
|
138673
|
+
analytics: {
|
|
138674
|
+
errorMessage: string;
|
|
138675
|
+
errorReason: string;
|
|
138676
|
+
max?: number | undefined;
|
|
138677
|
+
};
|
|
138445
138678
|
themes: {
|
|
138446
138679
|
errorMessage: string;
|
|
138447
|
-
max: number;
|
|
138448
138680
|
errorReason: string;
|
|
138681
|
+
max?: number | undefined;
|
|
138449
138682
|
};
|
|
138450
138683
|
designSystems: {
|
|
138451
138684
|
errorMessage: string;
|
|
138452
|
-
max: number;
|
|
138453
138685
|
errorReason: string;
|
|
138686
|
+
max?: number | undefined;
|
|
138454
138687
|
};
|
|
138455
138688
|
designSystemSources: {
|
|
138456
138689
|
errorMessage: string;
|
|
138457
|
-
max: number;
|
|
138458
138690
|
errorReason: string;
|
|
138459
138691
|
noImportJobsErrorMessage: string;
|
|
138460
138692
|
noImportJobsErrorReason: string;
|
|
138693
|
+
max?: number | undefined;
|
|
138461
138694
|
};
|
|
138462
138695
|
designSystemVersions: {
|
|
138463
138696
|
errorMessage: string;
|
|
138464
|
-
max: number;
|
|
138465
138697
|
errorReason: string;
|
|
138698
|
+
max?: number | undefined;
|
|
138466
138699
|
};
|
|
138467
138700
|
brands: {
|
|
138468
138701
|
errorMessage: string;
|
|
138469
|
-
max: number;
|
|
138470
138702
|
errorReason: string;
|
|
138703
|
+
max?: number | undefined;
|
|
138471
138704
|
};
|
|
138472
138705
|
codegenSchedules: {
|
|
138473
138706
|
errorMessage: string;
|
|
138474
|
-
max: number;
|
|
138475
138707
|
errorReason: string;
|
|
138708
|
+
max?: number | undefined;
|
|
138476
138709
|
};
|
|
138477
138710
|
publicDocumentation: {
|
|
138478
138711
|
errorMessage: string;
|
|
@@ -138516,13 +138749,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138516
138749
|
};
|
|
138517
138750
|
workspacePaidSeats: {
|
|
138518
138751
|
errorMessage: string;
|
|
138519
|
-
max: number;
|
|
138520
138752
|
errorReason: string;
|
|
138753
|
+
max?: number | undefined;
|
|
138521
138754
|
};
|
|
138522
138755
|
workspaceViewers: {
|
|
138523
138756
|
errorMessage: string;
|
|
138524
|
-
max: number;
|
|
138525
138757
|
errorReason: string;
|
|
138758
|
+
max?: number | undefined;
|
|
138526
138759
|
};
|
|
138527
138760
|
customDocumentationExporter: {
|
|
138528
138761
|
errorMessage: string;
|
|
@@ -138560,37 +138793,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138560
138793
|
enabled: boolean;
|
|
138561
138794
|
};
|
|
138562
138795
|
}, {
|
|
138796
|
+
analytics: {
|
|
138797
|
+
errorMessage: string;
|
|
138798
|
+
errorReason: string;
|
|
138799
|
+
max?: number | undefined;
|
|
138800
|
+
};
|
|
138563
138801
|
themes: {
|
|
138564
138802
|
errorMessage: string;
|
|
138565
|
-
max: number;
|
|
138566
138803
|
errorReason: string;
|
|
138804
|
+
max?: number | undefined;
|
|
138567
138805
|
};
|
|
138568
138806
|
designSystems: {
|
|
138569
138807
|
errorMessage: string;
|
|
138570
|
-
max: number;
|
|
138571
138808
|
errorReason: string;
|
|
138809
|
+
max?: number | undefined;
|
|
138572
138810
|
};
|
|
138573
138811
|
designSystemSources: {
|
|
138574
138812
|
errorMessage: string;
|
|
138575
|
-
max: number;
|
|
138576
138813
|
errorReason: string;
|
|
138577
138814
|
noImportJobsErrorMessage: string;
|
|
138578
138815
|
noImportJobsErrorReason: string;
|
|
138816
|
+
max?: number | undefined;
|
|
138579
138817
|
};
|
|
138580
138818
|
designSystemVersions: {
|
|
138581
138819
|
errorMessage: string;
|
|
138582
|
-
max: number;
|
|
138583
138820
|
errorReason: string;
|
|
138821
|
+
max?: number | undefined;
|
|
138584
138822
|
};
|
|
138585
138823
|
brands: {
|
|
138586
138824
|
errorMessage: string;
|
|
138587
|
-
max: number;
|
|
138588
138825
|
errorReason: string;
|
|
138826
|
+
max?: number | undefined;
|
|
138589
138827
|
};
|
|
138590
138828
|
codegenSchedules: {
|
|
138591
138829
|
errorMessage: string;
|
|
138592
|
-
max: number;
|
|
138593
138830
|
errorReason: string;
|
|
138831
|
+
max?: number | undefined;
|
|
138594
138832
|
};
|
|
138595
138833
|
publicDocumentation: {
|
|
138596
138834
|
errorMessage: string;
|
|
@@ -138634,13 +138872,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138634
138872
|
};
|
|
138635
138873
|
workspacePaidSeats: {
|
|
138636
138874
|
errorMessage: string;
|
|
138637
|
-
max: number;
|
|
138638
138875
|
errorReason: string;
|
|
138876
|
+
max?: number | undefined;
|
|
138639
138877
|
};
|
|
138640
138878
|
workspaceViewers: {
|
|
138641
138879
|
errorMessage: string;
|
|
138642
|
-
max: number;
|
|
138643
138880
|
errorReason: string;
|
|
138881
|
+
max?: number | undefined;
|
|
138644
138882
|
};
|
|
138645
138883
|
customDocumentationExporter: {
|
|
138646
138884
|
errorMessage: string;
|
|
@@ -138745,37 +138983,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138745
138983
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
138746
138984
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
138747
138985
|
featuresSummary?: {
|
|
138986
|
+
analytics: {
|
|
138987
|
+
errorMessage: string;
|
|
138988
|
+
errorReason: string;
|
|
138989
|
+
max?: number | undefined;
|
|
138990
|
+
};
|
|
138748
138991
|
themes: {
|
|
138749
138992
|
errorMessage: string;
|
|
138750
|
-
max: number;
|
|
138751
138993
|
errorReason: string;
|
|
138994
|
+
max?: number | undefined;
|
|
138752
138995
|
};
|
|
138753
138996
|
designSystems: {
|
|
138754
138997
|
errorMessage: string;
|
|
138755
|
-
max: number;
|
|
138756
138998
|
errorReason: string;
|
|
138999
|
+
max?: number | undefined;
|
|
138757
139000
|
};
|
|
138758
139001
|
designSystemSources: {
|
|
138759
139002
|
errorMessage: string;
|
|
138760
|
-
max: number;
|
|
138761
139003
|
errorReason: string;
|
|
138762
139004
|
noImportJobsErrorMessage: string;
|
|
138763
139005
|
noImportJobsErrorReason: string;
|
|
139006
|
+
max?: number | undefined;
|
|
138764
139007
|
};
|
|
138765
139008
|
designSystemVersions: {
|
|
138766
139009
|
errorMessage: string;
|
|
138767
|
-
max: number;
|
|
138768
139010
|
errorReason: string;
|
|
139011
|
+
max?: number | undefined;
|
|
138769
139012
|
};
|
|
138770
139013
|
brands: {
|
|
138771
139014
|
errorMessage: string;
|
|
138772
|
-
max: number;
|
|
138773
139015
|
errorReason: string;
|
|
139016
|
+
max?: number | undefined;
|
|
138774
139017
|
};
|
|
138775
139018
|
codegenSchedules: {
|
|
138776
139019
|
errorMessage: string;
|
|
138777
|
-
max: number;
|
|
138778
139020
|
errorReason: string;
|
|
139021
|
+
max?: number | undefined;
|
|
138779
139022
|
};
|
|
138780
139023
|
publicDocumentation: {
|
|
138781
139024
|
errorMessage: string;
|
|
@@ -138819,13 +139062,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138819
139062
|
};
|
|
138820
139063
|
workspacePaidSeats: {
|
|
138821
139064
|
errorMessage: string;
|
|
138822
|
-
max: number;
|
|
138823
139065
|
errorReason: string;
|
|
139066
|
+
max?: number | undefined;
|
|
138824
139067
|
};
|
|
138825
139068
|
workspaceViewers: {
|
|
138826
139069
|
errorMessage: string;
|
|
138827
|
-
max: number;
|
|
138828
139070
|
errorReason: string;
|
|
139071
|
+
max?: number | undefined;
|
|
138829
139072
|
};
|
|
138830
139073
|
customDocumentationExporter: {
|
|
138831
139074
|
errorMessage: string;
|
|
@@ -138897,37 +139140,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138897
139140
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
138898
139141
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
138899
139142
|
featuresSummary?: {
|
|
139143
|
+
analytics: {
|
|
139144
|
+
errorMessage: string;
|
|
139145
|
+
errorReason: string;
|
|
139146
|
+
max?: number | undefined;
|
|
139147
|
+
};
|
|
138900
139148
|
themes: {
|
|
138901
139149
|
errorMessage: string;
|
|
138902
|
-
max: number;
|
|
138903
139150
|
errorReason: string;
|
|
139151
|
+
max?: number | undefined;
|
|
138904
139152
|
};
|
|
138905
139153
|
designSystems: {
|
|
138906
139154
|
errorMessage: string;
|
|
138907
|
-
max: number;
|
|
138908
139155
|
errorReason: string;
|
|
139156
|
+
max?: number | undefined;
|
|
138909
139157
|
};
|
|
138910
139158
|
designSystemSources: {
|
|
138911
139159
|
errorMessage: string;
|
|
138912
|
-
max: number;
|
|
138913
139160
|
errorReason: string;
|
|
138914
139161
|
noImportJobsErrorMessage: string;
|
|
138915
139162
|
noImportJobsErrorReason: string;
|
|
139163
|
+
max?: number | undefined;
|
|
138916
139164
|
};
|
|
138917
139165
|
designSystemVersions: {
|
|
138918
139166
|
errorMessage: string;
|
|
138919
|
-
max: number;
|
|
138920
139167
|
errorReason: string;
|
|
139168
|
+
max?: number | undefined;
|
|
138921
139169
|
};
|
|
138922
139170
|
brands: {
|
|
138923
139171
|
errorMessage: string;
|
|
138924
|
-
max: number;
|
|
138925
139172
|
errorReason: string;
|
|
139173
|
+
max?: number | undefined;
|
|
138926
139174
|
};
|
|
138927
139175
|
codegenSchedules: {
|
|
138928
139176
|
errorMessage: string;
|
|
138929
|
-
max: number;
|
|
138930
139177
|
errorReason: string;
|
|
139178
|
+
max?: number | undefined;
|
|
138931
139179
|
};
|
|
138932
139180
|
publicDocumentation: {
|
|
138933
139181
|
errorMessage: string;
|
|
@@ -138971,13 +139219,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
138971
139219
|
};
|
|
138972
139220
|
workspacePaidSeats: {
|
|
138973
139221
|
errorMessage: string;
|
|
138974
|
-
max: number;
|
|
138975
139222
|
errorReason: string;
|
|
139223
|
+
max?: number | undefined;
|
|
138976
139224
|
};
|
|
138977
139225
|
workspaceViewers: {
|
|
138978
139226
|
errorMessage: string;
|
|
138979
|
-
max: number;
|
|
138980
139227
|
errorReason: string;
|
|
139228
|
+
max?: number | undefined;
|
|
138981
139229
|
};
|
|
138982
139230
|
customDocumentationExporter: {
|
|
138983
139231
|
errorMessage: string;
|
|
@@ -139225,37 +139473,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139225
139473
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
139226
139474
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
139227
139475
|
featuresSummary?: {
|
|
139476
|
+
analytics: {
|
|
139477
|
+
errorMessage: string;
|
|
139478
|
+
errorReason: string;
|
|
139479
|
+
max?: number | undefined;
|
|
139480
|
+
};
|
|
139228
139481
|
themes: {
|
|
139229
139482
|
errorMessage: string;
|
|
139230
|
-
max: number;
|
|
139231
139483
|
errorReason: string;
|
|
139484
|
+
max?: number | undefined;
|
|
139232
139485
|
};
|
|
139233
139486
|
designSystems: {
|
|
139234
139487
|
errorMessage: string;
|
|
139235
|
-
max: number;
|
|
139236
139488
|
errorReason: string;
|
|
139489
|
+
max?: number | undefined;
|
|
139237
139490
|
};
|
|
139238
139491
|
designSystemSources: {
|
|
139239
139492
|
errorMessage: string;
|
|
139240
|
-
max: number;
|
|
139241
139493
|
errorReason: string;
|
|
139242
139494
|
noImportJobsErrorMessage: string;
|
|
139243
139495
|
noImportJobsErrorReason: string;
|
|
139496
|
+
max?: number | undefined;
|
|
139244
139497
|
};
|
|
139245
139498
|
designSystemVersions: {
|
|
139246
139499
|
errorMessage: string;
|
|
139247
|
-
max: number;
|
|
139248
139500
|
errorReason: string;
|
|
139501
|
+
max?: number | undefined;
|
|
139249
139502
|
};
|
|
139250
139503
|
brands: {
|
|
139251
139504
|
errorMessage: string;
|
|
139252
|
-
max: number;
|
|
139253
139505
|
errorReason: string;
|
|
139506
|
+
max?: number | undefined;
|
|
139254
139507
|
};
|
|
139255
139508
|
codegenSchedules: {
|
|
139256
139509
|
errorMessage: string;
|
|
139257
|
-
max: number;
|
|
139258
139510
|
errorReason: string;
|
|
139511
|
+
max?: number | undefined;
|
|
139259
139512
|
};
|
|
139260
139513
|
publicDocumentation: {
|
|
139261
139514
|
errorMessage: string;
|
|
@@ -139299,13 +139552,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139299
139552
|
};
|
|
139300
139553
|
workspacePaidSeats: {
|
|
139301
139554
|
errorMessage: string;
|
|
139302
|
-
max: number;
|
|
139303
139555
|
errorReason: string;
|
|
139556
|
+
max?: number | undefined;
|
|
139304
139557
|
};
|
|
139305
139558
|
workspaceViewers: {
|
|
139306
139559
|
errorMessage: string;
|
|
139307
|
-
max: number;
|
|
139308
139560
|
errorReason: string;
|
|
139561
|
+
max?: number | undefined;
|
|
139309
139562
|
};
|
|
139310
139563
|
customDocumentationExporter: {
|
|
139311
139564
|
errorMessage: string;
|
|
@@ -139442,37 +139695,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139442
139695
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
139443
139696
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
139444
139697
|
featuresSummary?: {
|
|
139698
|
+
analytics: {
|
|
139699
|
+
errorMessage: string;
|
|
139700
|
+
errorReason: string;
|
|
139701
|
+
max?: number | undefined;
|
|
139702
|
+
};
|
|
139445
139703
|
themes: {
|
|
139446
139704
|
errorMessage: string;
|
|
139447
|
-
max: number;
|
|
139448
139705
|
errorReason: string;
|
|
139706
|
+
max?: number | undefined;
|
|
139449
139707
|
};
|
|
139450
139708
|
designSystems: {
|
|
139451
139709
|
errorMessage: string;
|
|
139452
|
-
max: number;
|
|
139453
139710
|
errorReason: string;
|
|
139711
|
+
max?: number | undefined;
|
|
139454
139712
|
};
|
|
139455
139713
|
designSystemSources: {
|
|
139456
139714
|
errorMessage: string;
|
|
139457
|
-
max: number;
|
|
139458
139715
|
errorReason: string;
|
|
139459
139716
|
noImportJobsErrorMessage: string;
|
|
139460
139717
|
noImportJobsErrorReason: string;
|
|
139718
|
+
max?: number | undefined;
|
|
139461
139719
|
};
|
|
139462
139720
|
designSystemVersions: {
|
|
139463
139721
|
errorMessage: string;
|
|
139464
|
-
max: number;
|
|
139465
139722
|
errorReason: string;
|
|
139723
|
+
max?: number | undefined;
|
|
139466
139724
|
};
|
|
139467
139725
|
brands: {
|
|
139468
139726
|
errorMessage: string;
|
|
139469
|
-
max: number;
|
|
139470
139727
|
errorReason: string;
|
|
139728
|
+
max?: number | undefined;
|
|
139471
139729
|
};
|
|
139472
139730
|
codegenSchedules: {
|
|
139473
139731
|
errorMessage: string;
|
|
139474
|
-
max: number;
|
|
139475
139732
|
errorReason: string;
|
|
139733
|
+
max?: number | undefined;
|
|
139476
139734
|
};
|
|
139477
139735
|
publicDocumentation: {
|
|
139478
139736
|
errorMessage: string;
|
|
@@ -139516,13 +139774,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139516
139774
|
};
|
|
139517
139775
|
workspacePaidSeats: {
|
|
139518
139776
|
errorMessage: string;
|
|
139519
|
-
max: number;
|
|
139520
139777
|
errorReason: string;
|
|
139778
|
+
max?: number | undefined;
|
|
139521
139779
|
};
|
|
139522
139780
|
workspaceViewers: {
|
|
139523
139781
|
errorMessage: string;
|
|
139524
|
-
max: number;
|
|
139525
139782
|
errorReason: string;
|
|
139783
|
+
max?: number | undefined;
|
|
139526
139784
|
};
|
|
139527
139785
|
customDocumentationExporter: {
|
|
139528
139786
|
errorMessage: string;
|
|
@@ -139737,37 +139995,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139737
139995
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
139738
139996
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
139739
139997
|
featuresSummary?: {
|
|
139998
|
+
analytics: {
|
|
139999
|
+
errorMessage: string;
|
|
140000
|
+
errorReason: string;
|
|
140001
|
+
max?: number | undefined;
|
|
140002
|
+
};
|
|
139740
140003
|
themes: {
|
|
139741
140004
|
errorMessage: string;
|
|
139742
|
-
max: number;
|
|
139743
140005
|
errorReason: string;
|
|
140006
|
+
max?: number | undefined;
|
|
139744
140007
|
};
|
|
139745
140008
|
designSystems: {
|
|
139746
140009
|
errorMessage: string;
|
|
139747
|
-
max: number;
|
|
139748
140010
|
errorReason: string;
|
|
140011
|
+
max?: number | undefined;
|
|
139749
140012
|
};
|
|
139750
140013
|
designSystemSources: {
|
|
139751
140014
|
errorMessage: string;
|
|
139752
|
-
max: number;
|
|
139753
140015
|
errorReason: string;
|
|
139754
140016
|
noImportJobsErrorMessage: string;
|
|
139755
140017
|
noImportJobsErrorReason: string;
|
|
140018
|
+
max?: number | undefined;
|
|
139756
140019
|
};
|
|
139757
140020
|
designSystemVersions: {
|
|
139758
140021
|
errorMessage: string;
|
|
139759
|
-
max: number;
|
|
139760
140022
|
errorReason: string;
|
|
140023
|
+
max?: number | undefined;
|
|
139761
140024
|
};
|
|
139762
140025
|
brands: {
|
|
139763
140026
|
errorMessage: string;
|
|
139764
|
-
max: number;
|
|
139765
140027
|
errorReason: string;
|
|
140028
|
+
max?: number | undefined;
|
|
139766
140029
|
};
|
|
139767
140030
|
codegenSchedules: {
|
|
139768
140031
|
errorMessage: string;
|
|
139769
|
-
max: number;
|
|
139770
140032
|
errorReason: string;
|
|
140033
|
+
max?: number | undefined;
|
|
139771
140034
|
};
|
|
139772
140035
|
publicDocumentation: {
|
|
139773
140036
|
errorMessage: string;
|
|
@@ -139811,13 +140074,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139811
140074
|
};
|
|
139812
140075
|
workspacePaidSeats: {
|
|
139813
140076
|
errorMessage: string;
|
|
139814
|
-
max: number;
|
|
139815
140077
|
errorReason: string;
|
|
140078
|
+
max?: number | undefined;
|
|
139816
140079
|
};
|
|
139817
140080
|
workspaceViewers: {
|
|
139818
140081
|
errorMessage: string;
|
|
139819
|
-
max: number;
|
|
139820
140082
|
errorReason: string;
|
|
140083
|
+
max?: number | undefined;
|
|
139821
140084
|
};
|
|
139822
140085
|
customDocumentationExporter: {
|
|
139823
140086
|
errorMessage: string;
|
|
@@ -139979,37 +140242,42 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
139979
140242
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
139980
140243
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
139981
140244
|
featuresSummary?: {
|
|
140245
|
+
analytics: {
|
|
140246
|
+
errorMessage: string;
|
|
140247
|
+
errorReason: string;
|
|
140248
|
+
max?: number | undefined;
|
|
140249
|
+
};
|
|
139982
140250
|
themes: {
|
|
139983
140251
|
errorMessage: string;
|
|
139984
|
-
max: number;
|
|
139985
140252
|
errorReason: string;
|
|
140253
|
+
max?: number | undefined;
|
|
139986
140254
|
};
|
|
139987
140255
|
designSystems: {
|
|
139988
140256
|
errorMessage: string;
|
|
139989
|
-
max: number;
|
|
139990
140257
|
errorReason: string;
|
|
140258
|
+
max?: number | undefined;
|
|
139991
140259
|
};
|
|
139992
140260
|
designSystemSources: {
|
|
139993
140261
|
errorMessage: string;
|
|
139994
|
-
max: number;
|
|
139995
140262
|
errorReason: string;
|
|
139996
140263
|
noImportJobsErrorMessage: string;
|
|
139997
140264
|
noImportJobsErrorReason: string;
|
|
140265
|
+
max?: number | undefined;
|
|
139998
140266
|
};
|
|
139999
140267
|
designSystemVersions: {
|
|
140000
140268
|
errorMessage: string;
|
|
140001
|
-
max: number;
|
|
140002
140269
|
errorReason: string;
|
|
140270
|
+
max?: number | undefined;
|
|
140003
140271
|
};
|
|
140004
140272
|
brands: {
|
|
140005
140273
|
errorMessage: string;
|
|
140006
|
-
max: number;
|
|
140007
140274
|
errorReason: string;
|
|
140275
|
+
max?: number | undefined;
|
|
140008
140276
|
};
|
|
140009
140277
|
codegenSchedules: {
|
|
140010
140278
|
errorMessage: string;
|
|
140011
|
-
max: number;
|
|
140012
140279
|
errorReason: string;
|
|
140280
|
+
max?: number | undefined;
|
|
140013
140281
|
};
|
|
140014
140282
|
publicDocumentation: {
|
|
140015
140283
|
errorMessage: string;
|
|
@@ -140053,13 +140321,13 @@ declare const WorkspaceWithDesignSystems: z.ZodObject<{
|
|
|
140053
140321
|
};
|
|
140054
140322
|
workspacePaidSeats: {
|
|
140055
140323
|
errorMessage: string;
|
|
140056
|
-
max: number;
|
|
140057
140324
|
errorReason: string;
|
|
140325
|
+
max?: number | undefined;
|
|
140058
140326
|
};
|
|
140059
140327
|
workspaceViewers: {
|
|
140060
140328
|
errorMessage: string;
|
|
140061
|
-
max: number;
|
|
140062
140329
|
errorReason: string;
|
|
140330
|
+
max?: number | undefined;
|
|
140063
140331
|
};
|
|
140064
140332
|
customDocumentationExporter: {
|
|
140065
140333
|
errorMessage: string;
|
|
@@ -143462,20 +143730,20 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143462
143730
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
143463
143731
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
143464
143732
|
designSystems: z.ZodObject<{
|
|
143465
|
-
max: z.ZodNumber
|
|
143733
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143466
143734
|
errorMessage: z.ZodString;
|
|
143467
143735
|
errorReason: z.ZodString;
|
|
143468
143736
|
}, "strip", z.ZodTypeAny, {
|
|
143469
143737
|
errorMessage: string;
|
|
143470
|
-
max: number;
|
|
143471
143738
|
errorReason: string;
|
|
143739
|
+
max?: number | undefined;
|
|
143472
143740
|
}, {
|
|
143473
143741
|
errorMessage: string;
|
|
143474
|
-
max: number;
|
|
143475
143742
|
errorReason: string;
|
|
143743
|
+
max?: number | undefined;
|
|
143476
143744
|
}>;
|
|
143477
143745
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
143478
|
-
max: z.ZodNumber
|
|
143746
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143479
143747
|
errorMessage: z.ZodString;
|
|
143480
143748
|
errorReason: z.ZodString;
|
|
143481
143749
|
}, {
|
|
@@ -143483,68 +143751,68 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143483
143751
|
noImportJobsErrorReason: z.ZodString;
|
|
143484
143752
|
}>, "strip", z.ZodTypeAny, {
|
|
143485
143753
|
errorMessage: string;
|
|
143486
|
-
max: number;
|
|
143487
143754
|
errorReason: string;
|
|
143488
143755
|
noImportJobsErrorMessage: string;
|
|
143489
143756
|
noImportJobsErrorReason: string;
|
|
143757
|
+
max?: number | undefined;
|
|
143490
143758
|
}, {
|
|
143491
143759
|
errorMessage: string;
|
|
143492
|
-
max: number;
|
|
143493
143760
|
errorReason: string;
|
|
143494
143761
|
noImportJobsErrorMessage: string;
|
|
143495
143762
|
noImportJobsErrorReason: string;
|
|
143763
|
+
max?: number | undefined;
|
|
143496
143764
|
}>;
|
|
143497
143765
|
designSystemVersions: z.ZodObject<{
|
|
143498
|
-
max: z.ZodNumber
|
|
143766
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143499
143767
|
errorMessage: z.ZodString;
|
|
143500
143768
|
errorReason: z.ZodString;
|
|
143501
143769
|
}, "strip", z.ZodTypeAny, {
|
|
143502
143770
|
errorMessage: string;
|
|
143503
|
-
max: number;
|
|
143504
143771
|
errorReason: string;
|
|
143772
|
+
max?: number | undefined;
|
|
143505
143773
|
}, {
|
|
143506
143774
|
errorMessage: string;
|
|
143507
|
-
max: number;
|
|
143508
143775
|
errorReason: string;
|
|
143776
|
+
max?: number | undefined;
|
|
143509
143777
|
}>;
|
|
143510
143778
|
themes: z.ZodObject<{
|
|
143511
|
-
max: z.ZodNumber
|
|
143779
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143512
143780
|
errorMessage: z.ZodString;
|
|
143513
143781
|
errorReason: z.ZodString;
|
|
143514
143782
|
}, "strip", z.ZodTypeAny, {
|
|
143515
143783
|
errorMessage: string;
|
|
143516
|
-
max: number;
|
|
143517
143784
|
errorReason: string;
|
|
143785
|
+
max?: number | undefined;
|
|
143518
143786
|
}, {
|
|
143519
143787
|
errorMessage: string;
|
|
143520
|
-
max: number;
|
|
143521
143788
|
errorReason: string;
|
|
143789
|
+
max?: number | undefined;
|
|
143522
143790
|
}>;
|
|
143523
143791
|
brands: z.ZodObject<{
|
|
143524
|
-
max: z.ZodNumber
|
|
143792
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143525
143793
|
errorMessage: z.ZodString;
|
|
143526
143794
|
errorReason: z.ZodString;
|
|
143527
143795
|
}, "strip", z.ZodTypeAny, {
|
|
143528
143796
|
errorMessage: string;
|
|
143529
|
-
max: number;
|
|
143530
143797
|
errorReason: string;
|
|
143798
|
+
max?: number | undefined;
|
|
143531
143799
|
}, {
|
|
143532
143800
|
errorMessage: string;
|
|
143533
|
-
max: number;
|
|
143534
143801
|
errorReason: string;
|
|
143802
|
+
max?: number | undefined;
|
|
143535
143803
|
}>;
|
|
143536
143804
|
codegenSchedules: z.ZodObject<{
|
|
143537
|
-
max: z.ZodNumber
|
|
143805
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143538
143806
|
errorMessage: z.ZodString;
|
|
143539
143807
|
errorReason: z.ZodString;
|
|
143540
143808
|
}, "strip", z.ZodTypeAny, {
|
|
143541
143809
|
errorMessage: string;
|
|
143542
|
-
max: number;
|
|
143543
143810
|
errorReason: string;
|
|
143811
|
+
max?: number | undefined;
|
|
143544
143812
|
}, {
|
|
143545
143813
|
errorMessage: string;
|
|
143546
|
-
max: number;
|
|
143547
143814
|
errorReason: string;
|
|
143815
|
+
max?: number | undefined;
|
|
143548
143816
|
}>;
|
|
143549
143817
|
publicDocumentation: z.ZodObject<{
|
|
143550
143818
|
enabled: z.ZodBoolean;
|
|
@@ -143651,30 +143919,30 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143651
143919
|
enabled: boolean;
|
|
143652
143920
|
}>;
|
|
143653
143921
|
workspacePaidSeats: z.ZodObject<{
|
|
143654
|
-
max: z.ZodNumber
|
|
143922
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143655
143923
|
errorMessage: z.ZodString;
|
|
143656
143924
|
errorReason: z.ZodString;
|
|
143657
143925
|
}, "strip", z.ZodTypeAny, {
|
|
143658
143926
|
errorMessage: string;
|
|
143659
|
-
max: number;
|
|
143660
143927
|
errorReason: string;
|
|
143928
|
+
max?: number | undefined;
|
|
143661
143929
|
}, {
|
|
143662
143930
|
errorMessage: string;
|
|
143663
|
-
max: number;
|
|
143664
143931
|
errorReason: string;
|
|
143932
|
+
max?: number | undefined;
|
|
143665
143933
|
}>;
|
|
143666
143934
|
workspaceViewers: z.ZodObject<{
|
|
143667
|
-
max: z.ZodNumber
|
|
143935
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
143668
143936
|
errorMessage: z.ZodString;
|
|
143669
143937
|
errorReason: z.ZodString;
|
|
143670
143938
|
}, "strip", z.ZodTypeAny, {
|
|
143671
143939
|
errorMessage: string;
|
|
143672
|
-
max: number;
|
|
143673
143940
|
errorReason: string;
|
|
143941
|
+
max?: number | undefined;
|
|
143674
143942
|
}, {
|
|
143675
143943
|
errorMessage: string;
|
|
143676
|
-
max: number;
|
|
143677
143944
|
errorReason: string;
|
|
143945
|
+
max?: number | undefined;
|
|
143678
143946
|
}>;
|
|
143679
143947
|
customDocumentationExporter: z.ZodObject<{
|
|
143680
143948
|
enabled: z.ZodBoolean;
|
|
@@ -143767,38 +144035,56 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143767
144035
|
errorReason: string;
|
|
143768
144036
|
enabled: boolean;
|
|
143769
144037
|
}>;
|
|
144038
|
+
analytics: z.ZodObject<{
|
|
144039
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
144040
|
+
errorMessage: z.ZodString;
|
|
144041
|
+
errorReason: z.ZodString;
|
|
144042
|
+
}, "strip", z.ZodTypeAny, {
|
|
144043
|
+
errorMessage: string;
|
|
144044
|
+
errorReason: string;
|
|
144045
|
+
max?: number | undefined;
|
|
144046
|
+
}, {
|
|
144047
|
+
errorMessage: string;
|
|
144048
|
+
errorReason: string;
|
|
144049
|
+
max?: number | undefined;
|
|
144050
|
+
}>;
|
|
143770
144051
|
}, "strip", z.ZodTypeAny, {
|
|
144052
|
+
analytics: {
|
|
144053
|
+
errorMessage: string;
|
|
144054
|
+
errorReason: string;
|
|
144055
|
+
max?: number | undefined;
|
|
144056
|
+
};
|
|
143771
144057
|
themes: {
|
|
143772
144058
|
errorMessage: string;
|
|
143773
|
-
max: number;
|
|
143774
144059
|
errorReason: string;
|
|
144060
|
+
max?: number | undefined;
|
|
143775
144061
|
};
|
|
143776
144062
|
designSystems: {
|
|
143777
144063
|
errorMessage: string;
|
|
143778
|
-
max: number;
|
|
143779
144064
|
errorReason: string;
|
|
144065
|
+
max?: number | undefined;
|
|
143780
144066
|
};
|
|
143781
144067
|
designSystemSources: {
|
|
143782
144068
|
errorMessage: string;
|
|
143783
|
-
max: number;
|
|
143784
144069
|
errorReason: string;
|
|
143785
144070
|
noImportJobsErrorMessage: string;
|
|
143786
144071
|
noImportJobsErrorReason: string;
|
|
144072
|
+
max?: number | undefined;
|
|
143787
144073
|
};
|
|
143788
144074
|
designSystemVersions: {
|
|
143789
144075
|
errorMessage: string;
|
|
143790
|
-
max: number;
|
|
143791
144076
|
errorReason: string;
|
|
144077
|
+
max?: number | undefined;
|
|
143792
144078
|
};
|
|
143793
144079
|
brands: {
|
|
143794
144080
|
errorMessage: string;
|
|
143795
|
-
max: number;
|
|
143796
144081
|
errorReason: string;
|
|
144082
|
+
max?: number | undefined;
|
|
143797
144083
|
};
|
|
143798
144084
|
codegenSchedules: {
|
|
143799
144085
|
errorMessage: string;
|
|
143800
|
-
max: number;
|
|
143801
144086
|
errorReason: string;
|
|
144087
|
+
max?: number | undefined;
|
|
143802
144088
|
};
|
|
143803
144089
|
publicDocumentation: {
|
|
143804
144090
|
errorMessage: string;
|
|
@@ -143842,13 +144128,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143842
144128
|
};
|
|
143843
144129
|
workspacePaidSeats: {
|
|
143844
144130
|
errorMessage: string;
|
|
143845
|
-
max: number;
|
|
143846
144131
|
errorReason: string;
|
|
144132
|
+
max?: number | undefined;
|
|
143847
144133
|
};
|
|
143848
144134
|
workspaceViewers: {
|
|
143849
144135
|
errorMessage: string;
|
|
143850
|
-
max: number;
|
|
143851
144136
|
errorReason: string;
|
|
144137
|
+
max?: number | undefined;
|
|
143852
144138
|
};
|
|
143853
144139
|
customDocumentationExporter: {
|
|
143854
144140
|
errorMessage: string;
|
|
@@ -143886,37 +144172,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143886
144172
|
enabled: boolean;
|
|
143887
144173
|
};
|
|
143888
144174
|
}, {
|
|
144175
|
+
analytics: {
|
|
144176
|
+
errorMessage: string;
|
|
144177
|
+
errorReason: string;
|
|
144178
|
+
max?: number | undefined;
|
|
144179
|
+
};
|
|
143889
144180
|
themes: {
|
|
143890
144181
|
errorMessage: string;
|
|
143891
|
-
max: number;
|
|
143892
144182
|
errorReason: string;
|
|
144183
|
+
max?: number | undefined;
|
|
143893
144184
|
};
|
|
143894
144185
|
designSystems: {
|
|
143895
144186
|
errorMessage: string;
|
|
143896
|
-
max: number;
|
|
143897
144187
|
errorReason: string;
|
|
144188
|
+
max?: number | undefined;
|
|
143898
144189
|
};
|
|
143899
144190
|
designSystemSources: {
|
|
143900
144191
|
errorMessage: string;
|
|
143901
|
-
max: number;
|
|
143902
144192
|
errorReason: string;
|
|
143903
144193
|
noImportJobsErrorMessage: string;
|
|
143904
144194
|
noImportJobsErrorReason: string;
|
|
144195
|
+
max?: number | undefined;
|
|
143905
144196
|
};
|
|
143906
144197
|
designSystemVersions: {
|
|
143907
144198
|
errorMessage: string;
|
|
143908
|
-
max: number;
|
|
143909
144199
|
errorReason: string;
|
|
144200
|
+
max?: number | undefined;
|
|
143910
144201
|
};
|
|
143911
144202
|
brands: {
|
|
143912
144203
|
errorMessage: string;
|
|
143913
|
-
max: number;
|
|
143914
144204
|
errorReason: string;
|
|
144205
|
+
max?: number | undefined;
|
|
143915
144206
|
};
|
|
143916
144207
|
codegenSchedules: {
|
|
143917
144208
|
errorMessage: string;
|
|
143918
|
-
max: number;
|
|
143919
144209
|
errorReason: string;
|
|
144210
|
+
max?: number | undefined;
|
|
143920
144211
|
};
|
|
143921
144212
|
publicDocumentation: {
|
|
143922
144213
|
errorMessage: string;
|
|
@@ -143960,13 +144251,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
143960
144251
|
};
|
|
143961
144252
|
workspacePaidSeats: {
|
|
143962
144253
|
errorMessage: string;
|
|
143963
|
-
max: number;
|
|
143964
144254
|
errorReason: string;
|
|
144255
|
+
max?: number | undefined;
|
|
143965
144256
|
};
|
|
143966
144257
|
workspaceViewers: {
|
|
143967
144258
|
errorMessage: string;
|
|
143968
|
-
max: number;
|
|
143969
144259
|
errorReason: string;
|
|
144260
|
+
max?: number | undefined;
|
|
143970
144261
|
};
|
|
143971
144262
|
customDocumentationExporter: {
|
|
143972
144263
|
errorMessage: string;
|
|
@@ -144071,37 +144362,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144071
144362
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
144072
144363
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
144073
144364
|
featuresSummary?: {
|
|
144365
|
+
analytics: {
|
|
144366
|
+
errorMessage: string;
|
|
144367
|
+
errorReason: string;
|
|
144368
|
+
max?: number | undefined;
|
|
144369
|
+
};
|
|
144074
144370
|
themes: {
|
|
144075
144371
|
errorMessage: string;
|
|
144076
|
-
max: number;
|
|
144077
144372
|
errorReason: string;
|
|
144373
|
+
max?: number | undefined;
|
|
144078
144374
|
};
|
|
144079
144375
|
designSystems: {
|
|
144080
144376
|
errorMessage: string;
|
|
144081
|
-
max: number;
|
|
144082
144377
|
errorReason: string;
|
|
144378
|
+
max?: number | undefined;
|
|
144083
144379
|
};
|
|
144084
144380
|
designSystemSources: {
|
|
144085
144381
|
errorMessage: string;
|
|
144086
|
-
max: number;
|
|
144087
144382
|
errorReason: string;
|
|
144088
144383
|
noImportJobsErrorMessage: string;
|
|
144089
144384
|
noImportJobsErrorReason: string;
|
|
144385
|
+
max?: number | undefined;
|
|
144090
144386
|
};
|
|
144091
144387
|
designSystemVersions: {
|
|
144092
144388
|
errorMessage: string;
|
|
144093
|
-
max: number;
|
|
144094
144389
|
errorReason: string;
|
|
144390
|
+
max?: number | undefined;
|
|
144095
144391
|
};
|
|
144096
144392
|
brands: {
|
|
144097
144393
|
errorMessage: string;
|
|
144098
|
-
max: number;
|
|
144099
144394
|
errorReason: string;
|
|
144395
|
+
max?: number | undefined;
|
|
144100
144396
|
};
|
|
144101
144397
|
codegenSchedules: {
|
|
144102
144398
|
errorMessage: string;
|
|
144103
|
-
max: number;
|
|
144104
144399
|
errorReason: string;
|
|
144400
|
+
max?: number | undefined;
|
|
144105
144401
|
};
|
|
144106
144402
|
publicDocumentation: {
|
|
144107
144403
|
errorMessage: string;
|
|
@@ -144145,13 +144441,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144145
144441
|
};
|
|
144146
144442
|
workspacePaidSeats: {
|
|
144147
144443
|
errorMessage: string;
|
|
144148
|
-
max: number;
|
|
144149
144444
|
errorReason: string;
|
|
144445
|
+
max?: number | undefined;
|
|
144150
144446
|
};
|
|
144151
144447
|
workspaceViewers: {
|
|
144152
144448
|
errorMessage: string;
|
|
144153
|
-
max: number;
|
|
144154
144449
|
errorReason: string;
|
|
144450
|
+
max?: number | undefined;
|
|
144155
144451
|
};
|
|
144156
144452
|
customDocumentationExporter: {
|
|
144157
144453
|
errorMessage: string;
|
|
@@ -144223,37 +144519,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144223
144519
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
144224
144520
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
144225
144521
|
featuresSummary?: {
|
|
144522
|
+
analytics: {
|
|
144523
|
+
errorMessage: string;
|
|
144524
|
+
errorReason: string;
|
|
144525
|
+
max?: number | undefined;
|
|
144526
|
+
};
|
|
144226
144527
|
themes: {
|
|
144227
144528
|
errorMessage: string;
|
|
144228
|
-
max: number;
|
|
144229
144529
|
errorReason: string;
|
|
144530
|
+
max?: number | undefined;
|
|
144230
144531
|
};
|
|
144231
144532
|
designSystems: {
|
|
144232
144533
|
errorMessage: string;
|
|
144233
|
-
max: number;
|
|
144234
144534
|
errorReason: string;
|
|
144535
|
+
max?: number | undefined;
|
|
144235
144536
|
};
|
|
144236
144537
|
designSystemSources: {
|
|
144237
144538
|
errorMessage: string;
|
|
144238
|
-
max: number;
|
|
144239
144539
|
errorReason: string;
|
|
144240
144540
|
noImportJobsErrorMessage: string;
|
|
144241
144541
|
noImportJobsErrorReason: string;
|
|
144542
|
+
max?: number | undefined;
|
|
144242
144543
|
};
|
|
144243
144544
|
designSystemVersions: {
|
|
144244
144545
|
errorMessage: string;
|
|
144245
|
-
max: number;
|
|
144246
144546
|
errorReason: string;
|
|
144547
|
+
max?: number | undefined;
|
|
144247
144548
|
};
|
|
144248
144549
|
brands: {
|
|
144249
144550
|
errorMessage: string;
|
|
144250
|
-
max: number;
|
|
144251
144551
|
errorReason: string;
|
|
144552
|
+
max?: number | undefined;
|
|
144252
144553
|
};
|
|
144253
144554
|
codegenSchedules: {
|
|
144254
144555
|
errorMessage: string;
|
|
144255
|
-
max: number;
|
|
144256
144556
|
errorReason: string;
|
|
144557
|
+
max?: number | undefined;
|
|
144257
144558
|
};
|
|
144258
144559
|
publicDocumentation: {
|
|
144259
144560
|
errorMessage: string;
|
|
@@ -144297,13 +144598,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144297
144598
|
};
|
|
144298
144599
|
workspacePaidSeats: {
|
|
144299
144600
|
errorMessage: string;
|
|
144300
|
-
max: number;
|
|
144301
144601
|
errorReason: string;
|
|
144602
|
+
max?: number | undefined;
|
|
144302
144603
|
};
|
|
144303
144604
|
workspaceViewers: {
|
|
144304
144605
|
errorMessage: string;
|
|
144305
|
-
max: number;
|
|
144306
144606
|
errorReason: string;
|
|
144607
|
+
max?: number | undefined;
|
|
144307
144608
|
};
|
|
144308
144609
|
customDocumentationExporter: {
|
|
144309
144610
|
errorMessage: string;
|
|
@@ -144551,37 +144852,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144551
144852
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
144552
144853
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
144553
144854
|
featuresSummary?: {
|
|
144855
|
+
analytics: {
|
|
144856
|
+
errorMessage: string;
|
|
144857
|
+
errorReason: string;
|
|
144858
|
+
max?: number | undefined;
|
|
144859
|
+
};
|
|
144554
144860
|
themes: {
|
|
144555
144861
|
errorMessage: string;
|
|
144556
|
-
max: number;
|
|
144557
144862
|
errorReason: string;
|
|
144863
|
+
max?: number | undefined;
|
|
144558
144864
|
};
|
|
144559
144865
|
designSystems: {
|
|
144560
144866
|
errorMessage: string;
|
|
144561
|
-
max: number;
|
|
144562
144867
|
errorReason: string;
|
|
144868
|
+
max?: number | undefined;
|
|
144563
144869
|
};
|
|
144564
144870
|
designSystemSources: {
|
|
144565
144871
|
errorMessage: string;
|
|
144566
|
-
max: number;
|
|
144567
144872
|
errorReason: string;
|
|
144568
144873
|
noImportJobsErrorMessage: string;
|
|
144569
144874
|
noImportJobsErrorReason: string;
|
|
144875
|
+
max?: number | undefined;
|
|
144570
144876
|
};
|
|
144571
144877
|
designSystemVersions: {
|
|
144572
144878
|
errorMessage: string;
|
|
144573
|
-
max: number;
|
|
144574
144879
|
errorReason: string;
|
|
144880
|
+
max?: number | undefined;
|
|
144575
144881
|
};
|
|
144576
144882
|
brands: {
|
|
144577
144883
|
errorMessage: string;
|
|
144578
|
-
max: number;
|
|
144579
144884
|
errorReason: string;
|
|
144885
|
+
max?: number | undefined;
|
|
144580
144886
|
};
|
|
144581
144887
|
codegenSchedules: {
|
|
144582
144888
|
errorMessage: string;
|
|
144583
|
-
max: number;
|
|
144584
144889
|
errorReason: string;
|
|
144890
|
+
max?: number | undefined;
|
|
144585
144891
|
};
|
|
144586
144892
|
publicDocumentation: {
|
|
144587
144893
|
errorMessage: string;
|
|
@@ -144625,13 +144931,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144625
144931
|
};
|
|
144626
144932
|
workspacePaidSeats: {
|
|
144627
144933
|
errorMessage: string;
|
|
144628
|
-
max: number;
|
|
144629
144934
|
errorReason: string;
|
|
144935
|
+
max?: number | undefined;
|
|
144630
144936
|
};
|
|
144631
144937
|
workspaceViewers: {
|
|
144632
144938
|
errorMessage: string;
|
|
144633
|
-
max: number;
|
|
144634
144939
|
errorReason: string;
|
|
144940
|
+
max?: number | undefined;
|
|
144635
144941
|
};
|
|
144636
144942
|
customDocumentationExporter: {
|
|
144637
144943
|
errorMessage: string;
|
|
@@ -144768,37 +145074,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144768
145074
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
144769
145075
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
144770
145076
|
featuresSummary?: {
|
|
145077
|
+
analytics: {
|
|
145078
|
+
errorMessage: string;
|
|
145079
|
+
errorReason: string;
|
|
145080
|
+
max?: number | undefined;
|
|
145081
|
+
};
|
|
144771
145082
|
themes: {
|
|
144772
145083
|
errorMessage: string;
|
|
144773
|
-
max: number;
|
|
144774
145084
|
errorReason: string;
|
|
145085
|
+
max?: number | undefined;
|
|
144775
145086
|
};
|
|
144776
145087
|
designSystems: {
|
|
144777
145088
|
errorMessage: string;
|
|
144778
|
-
max: number;
|
|
144779
145089
|
errorReason: string;
|
|
145090
|
+
max?: number | undefined;
|
|
144780
145091
|
};
|
|
144781
145092
|
designSystemSources: {
|
|
144782
145093
|
errorMessage: string;
|
|
144783
|
-
max: number;
|
|
144784
145094
|
errorReason: string;
|
|
144785
145095
|
noImportJobsErrorMessage: string;
|
|
144786
145096
|
noImportJobsErrorReason: string;
|
|
145097
|
+
max?: number | undefined;
|
|
144787
145098
|
};
|
|
144788
145099
|
designSystemVersions: {
|
|
144789
145100
|
errorMessage: string;
|
|
144790
|
-
max: number;
|
|
144791
145101
|
errorReason: string;
|
|
145102
|
+
max?: number | undefined;
|
|
144792
145103
|
};
|
|
144793
145104
|
brands: {
|
|
144794
145105
|
errorMessage: string;
|
|
144795
|
-
max: number;
|
|
144796
145106
|
errorReason: string;
|
|
145107
|
+
max?: number | undefined;
|
|
144797
145108
|
};
|
|
144798
145109
|
codegenSchedules: {
|
|
144799
145110
|
errorMessage: string;
|
|
144800
|
-
max: number;
|
|
144801
145111
|
errorReason: string;
|
|
145112
|
+
max?: number | undefined;
|
|
144802
145113
|
};
|
|
144803
145114
|
publicDocumentation: {
|
|
144804
145115
|
errorMessage: string;
|
|
@@ -144842,13 +145153,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
144842
145153
|
};
|
|
144843
145154
|
workspacePaidSeats: {
|
|
144844
145155
|
errorMessage: string;
|
|
144845
|
-
max: number;
|
|
144846
145156
|
errorReason: string;
|
|
145157
|
+
max?: number | undefined;
|
|
144847
145158
|
};
|
|
144848
145159
|
workspaceViewers: {
|
|
144849
145160
|
errorMessage: string;
|
|
144850
|
-
max: number;
|
|
144851
145161
|
errorReason: string;
|
|
145162
|
+
max?: number | undefined;
|
|
144852
145163
|
};
|
|
144853
145164
|
customDocumentationExporter: {
|
|
144854
145165
|
errorMessage: string;
|
|
@@ -145273,37 +145584,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145273
145584
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
145274
145585
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
145275
145586
|
featuresSummary?: {
|
|
145587
|
+
analytics: {
|
|
145588
|
+
errorMessage: string;
|
|
145589
|
+
errorReason: string;
|
|
145590
|
+
max?: number | undefined;
|
|
145591
|
+
};
|
|
145276
145592
|
themes: {
|
|
145277
145593
|
errorMessage: string;
|
|
145278
|
-
max: number;
|
|
145279
145594
|
errorReason: string;
|
|
145595
|
+
max?: number | undefined;
|
|
145280
145596
|
};
|
|
145281
145597
|
designSystems: {
|
|
145282
145598
|
errorMessage: string;
|
|
145283
|
-
max: number;
|
|
145284
145599
|
errorReason: string;
|
|
145600
|
+
max?: number | undefined;
|
|
145285
145601
|
};
|
|
145286
145602
|
designSystemSources: {
|
|
145287
145603
|
errorMessage: string;
|
|
145288
|
-
max: number;
|
|
145289
145604
|
errorReason: string;
|
|
145290
145605
|
noImportJobsErrorMessage: string;
|
|
145291
145606
|
noImportJobsErrorReason: string;
|
|
145607
|
+
max?: number | undefined;
|
|
145292
145608
|
};
|
|
145293
145609
|
designSystemVersions: {
|
|
145294
145610
|
errorMessage: string;
|
|
145295
|
-
max: number;
|
|
145296
145611
|
errorReason: string;
|
|
145612
|
+
max?: number | undefined;
|
|
145297
145613
|
};
|
|
145298
145614
|
brands: {
|
|
145299
145615
|
errorMessage: string;
|
|
145300
|
-
max: number;
|
|
145301
145616
|
errorReason: string;
|
|
145617
|
+
max?: number | undefined;
|
|
145302
145618
|
};
|
|
145303
145619
|
codegenSchedules: {
|
|
145304
145620
|
errorMessage: string;
|
|
145305
|
-
max: number;
|
|
145306
145621
|
errorReason: string;
|
|
145622
|
+
max?: number | undefined;
|
|
145307
145623
|
};
|
|
145308
145624
|
publicDocumentation: {
|
|
145309
145625
|
errorMessage: string;
|
|
@@ -145347,13 +145663,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145347
145663
|
};
|
|
145348
145664
|
workspacePaidSeats: {
|
|
145349
145665
|
errorMessage: string;
|
|
145350
|
-
max: number;
|
|
145351
145666
|
errorReason: string;
|
|
145667
|
+
max?: number | undefined;
|
|
145352
145668
|
};
|
|
145353
145669
|
workspaceViewers: {
|
|
145354
145670
|
errorMessage: string;
|
|
145355
|
-
max: number;
|
|
145356
145671
|
errorReason: string;
|
|
145672
|
+
max?: number | undefined;
|
|
145357
145673
|
};
|
|
145358
145674
|
customDocumentationExporter: {
|
|
145359
145675
|
errorMessage: string;
|
|
@@ -145553,37 +145869,42 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145553
145869
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
145554
145870
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
145555
145871
|
featuresSummary?: {
|
|
145872
|
+
analytics: {
|
|
145873
|
+
errorMessage: string;
|
|
145874
|
+
errorReason: string;
|
|
145875
|
+
max?: number | undefined;
|
|
145876
|
+
};
|
|
145556
145877
|
themes: {
|
|
145557
145878
|
errorMessage: string;
|
|
145558
|
-
max: number;
|
|
145559
145879
|
errorReason: string;
|
|
145880
|
+
max?: number | undefined;
|
|
145560
145881
|
};
|
|
145561
145882
|
designSystems: {
|
|
145562
145883
|
errorMessage: string;
|
|
145563
|
-
max: number;
|
|
145564
145884
|
errorReason: string;
|
|
145885
|
+
max?: number | undefined;
|
|
145565
145886
|
};
|
|
145566
145887
|
designSystemSources: {
|
|
145567
145888
|
errorMessage: string;
|
|
145568
|
-
max: number;
|
|
145569
145889
|
errorReason: string;
|
|
145570
145890
|
noImportJobsErrorMessage: string;
|
|
145571
145891
|
noImportJobsErrorReason: string;
|
|
145892
|
+
max?: number | undefined;
|
|
145572
145893
|
};
|
|
145573
145894
|
designSystemVersions: {
|
|
145574
145895
|
errorMessage: string;
|
|
145575
|
-
max: number;
|
|
145576
145896
|
errorReason: string;
|
|
145897
|
+
max?: number | undefined;
|
|
145577
145898
|
};
|
|
145578
145899
|
brands: {
|
|
145579
145900
|
errorMessage: string;
|
|
145580
|
-
max: number;
|
|
145581
145901
|
errorReason: string;
|
|
145902
|
+
max?: number | undefined;
|
|
145582
145903
|
};
|
|
145583
145904
|
codegenSchedules: {
|
|
145584
145905
|
errorMessage: string;
|
|
145585
|
-
max: number;
|
|
145586
145906
|
errorReason: string;
|
|
145907
|
+
max?: number | undefined;
|
|
145587
145908
|
};
|
|
145588
145909
|
publicDocumentation: {
|
|
145589
145910
|
errorMessage: string;
|
|
@@ -145627,13 +145948,13 @@ declare const DesignSystemInviteEmailData: z.ZodObject<{
|
|
|
145627
145948
|
};
|
|
145628
145949
|
workspacePaidSeats: {
|
|
145629
145950
|
errorMessage: string;
|
|
145630
|
-
max: number;
|
|
145631
145951
|
errorReason: string;
|
|
145952
|
+
max?: number | undefined;
|
|
145632
145953
|
};
|
|
145633
145954
|
workspaceViewers: {
|
|
145634
145955
|
errorMessage: string;
|
|
145635
|
-
max: number;
|
|
145636
145956
|
errorReason: string;
|
|
145957
|
+
max?: number | undefined;
|
|
145637
145958
|
};
|
|
145638
145959
|
customDocumentationExporter: {
|
|
145639
145960
|
errorMessage: string;
|
|
@@ -145927,20 +146248,20 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145927
146248
|
product: z.ZodEnum<["free", "team", "company", "enterprise"]>;
|
|
145928
146249
|
featuresSummary: z.ZodOptional<z.ZodObject<{
|
|
145929
146250
|
designSystems: z.ZodObject<{
|
|
145930
|
-
max: z.ZodNumber
|
|
146251
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
145931
146252
|
errorMessage: z.ZodString;
|
|
145932
146253
|
errorReason: z.ZodString;
|
|
145933
146254
|
}, "strip", z.ZodTypeAny, {
|
|
145934
146255
|
errorMessage: string;
|
|
145935
|
-
max: number;
|
|
145936
146256
|
errorReason: string;
|
|
146257
|
+
max?: number | undefined;
|
|
145937
146258
|
}, {
|
|
145938
146259
|
errorMessage: string;
|
|
145939
|
-
max: number;
|
|
145940
146260
|
errorReason: string;
|
|
146261
|
+
max?: number | undefined;
|
|
145941
146262
|
}>;
|
|
145942
146263
|
designSystemSources: z.ZodObject<z.objectUtil.extendShape<{
|
|
145943
|
-
max: z.ZodNumber
|
|
146264
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
145944
146265
|
errorMessage: z.ZodString;
|
|
145945
146266
|
errorReason: z.ZodString;
|
|
145946
146267
|
}, {
|
|
@@ -145948,68 +146269,68 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
145948
146269
|
noImportJobsErrorReason: z.ZodString;
|
|
145949
146270
|
}>, "strip", z.ZodTypeAny, {
|
|
145950
146271
|
errorMessage: string;
|
|
145951
|
-
max: number;
|
|
145952
146272
|
errorReason: string;
|
|
145953
146273
|
noImportJobsErrorMessage: string;
|
|
145954
146274
|
noImportJobsErrorReason: string;
|
|
146275
|
+
max?: number | undefined;
|
|
145955
146276
|
}, {
|
|
145956
146277
|
errorMessage: string;
|
|
145957
|
-
max: number;
|
|
145958
146278
|
errorReason: string;
|
|
145959
146279
|
noImportJobsErrorMessage: string;
|
|
145960
146280
|
noImportJobsErrorReason: string;
|
|
146281
|
+
max?: number | undefined;
|
|
145961
146282
|
}>;
|
|
145962
146283
|
designSystemVersions: z.ZodObject<{
|
|
145963
|
-
max: z.ZodNumber
|
|
146284
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
145964
146285
|
errorMessage: z.ZodString;
|
|
145965
146286
|
errorReason: z.ZodString;
|
|
145966
146287
|
}, "strip", z.ZodTypeAny, {
|
|
145967
146288
|
errorMessage: string;
|
|
145968
|
-
max: number;
|
|
145969
146289
|
errorReason: string;
|
|
146290
|
+
max?: number | undefined;
|
|
145970
146291
|
}, {
|
|
145971
146292
|
errorMessage: string;
|
|
145972
|
-
max: number;
|
|
145973
146293
|
errorReason: string;
|
|
146294
|
+
max?: number | undefined;
|
|
145974
146295
|
}>;
|
|
145975
146296
|
themes: z.ZodObject<{
|
|
145976
|
-
max: z.ZodNumber
|
|
146297
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
145977
146298
|
errorMessage: z.ZodString;
|
|
145978
146299
|
errorReason: z.ZodString;
|
|
145979
146300
|
}, "strip", z.ZodTypeAny, {
|
|
145980
146301
|
errorMessage: string;
|
|
145981
|
-
max: number;
|
|
145982
146302
|
errorReason: string;
|
|
146303
|
+
max?: number | undefined;
|
|
145983
146304
|
}, {
|
|
145984
146305
|
errorMessage: string;
|
|
145985
|
-
max: number;
|
|
145986
146306
|
errorReason: string;
|
|
146307
|
+
max?: number | undefined;
|
|
145987
146308
|
}>;
|
|
145988
146309
|
brands: z.ZodObject<{
|
|
145989
|
-
max: z.ZodNumber
|
|
146310
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
145990
146311
|
errorMessage: z.ZodString;
|
|
145991
146312
|
errorReason: z.ZodString;
|
|
145992
146313
|
}, "strip", z.ZodTypeAny, {
|
|
145993
146314
|
errorMessage: string;
|
|
145994
|
-
max: number;
|
|
145995
146315
|
errorReason: string;
|
|
146316
|
+
max?: number | undefined;
|
|
145996
146317
|
}, {
|
|
145997
146318
|
errorMessage: string;
|
|
145998
|
-
max: number;
|
|
145999
146319
|
errorReason: string;
|
|
146320
|
+
max?: number | undefined;
|
|
146000
146321
|
}>;
|
|
146001
146322
|
codegenSchedules: z.ZodObject<{
|
|
146002
|
-
max: z.ZodNumber
|
|
146323
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
146003
146324
|
errorMessage: z.ZodString;
|
|
146004
146325
|
errorReason: z.ZodString;
|
|
146005
146326
|
}, "strip", z.ZodTypeAny, {
|
|
146006
146327
|
errorMessage: string;
|
|
146007
|
-
max: number;
|
|
146008
146328
|
errorReason: string;
|
|
146329
|
+
max?: number | undefined;
|
|
146009
146330
|
}, {
|
|
146010
146331
|
errorMessage: string;
|
|
146011
|
-
max: number;
|
|
146012
146332
|
errorReason: string;
|
|
146333
|
+
max?: number | undefined;
|
|
146013
146334
|
}>;
|
|
146014
146335
|
publicDocumentation: z.ZodObject<{
|
|
146015
146336
|
enabled: z.ZodBoolean;
|
|
@@ -146116,30 +146437,30 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146116
146437
|
enabled: boolean;
|
|
146117
146438
|
}>;
|
|
146118
146439
|
workspacePaidSeats: z.ZodObject<{
|
|
146119
|
-
max: z.ZodNumber
|
|
146440
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
146120
146441
|
errorMessage: z.ZodString;
|
|
146121
146442
|
errorReason: z.ZodString;
|
|
146122
146443
|
}, "strip", z.ZodTypeAny, {
|
|
146123
146444
|
errorMessage: string;
|
|
146124
|
-
max: number;
|
|
146125
146445
|
errorReason: string;
|
|
146446
|
+
max?: number | undefined;
|
|
146126
146447
|
}, {
|
|
146127
146448
|
errorMessage: string;
|
|
146128
|
-
max: number;
|
|
146129
146449
|
errorReason: string;
|
|
146450
|
+
max?: number | undefined;
|
|
146130
146451
|
}>;
|
|
146131
146452
|
workspaceViewers: z.ZodObject<{
|
|
146132
|
-
max: z.ZodNumber
|
|
146453
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
146133
146454
|
errorMessage: z.ZodString;
|
|
146134
146455
|
errorReason: z.ZodString;
|
|
146135
146456
|
}, "strip", z.ZodTypeAny, {
|
|
146136
146457
|
errorMessage: string;
|
|
146137
|
-
max: number;
|
|
146138
146458
|
errorReason: string;
|
|
146459
|
+
max?: number | undefined;
|
|
146139
146460
|
}, {
|
|
146140
146461
|
errorMessage: string;
|
|
146141
|
-
max: number;
|
|
146142
146462
|
errorReason: string;
|
|
146463
|
+
max?: number | undefined;
|
|
146143
146464
|
}>;
|
|
146144
146465
|
customDocumentationExporter: z.ZodObject<{
|
|
146145
146466
|
enabled: z.ZodBoolean;
|
|
@@ -146232,38 +146553,56 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146232
146553
|
errorReason: string;
|
|
146233
146554
|
enabled: boolean;
|
|
146234
146555
|
}>;
|
|
146556
|
+
analytics: z.ZodObject<{
|
|
146557
|
+
max: z.ZodOptional<z.ZodNumber>;
|
|
146558
|
+
errorMessage: z.ZodString;
|
|
146559
|
+
errorReason: z.ZodString;
|
|
146560
|
+
}, "strip", z.ZodTypeAny, {
|
|
146561
|
+
errorMessage: string;
|
|
146562
|
+
errorReason: string;
|
|
146563
|
+
max?: number | undefined;
|
|
146564
|
+
}, {
|
|
146565
|
+
errorMessage: string;
|
|
146566
|
+
errorReason: string;
|
|
146567
|
+
max?: number | undefined;
|
|
146568
|
+
}>;
|
|
146235
146569
|
}, "strip", z.ZodTypeAny, {
|
|
146570
|
+
analytics: {
|
|
146571
|
+
errorMessage: string;
|
|
146572
|
+
errorReason: string;
|
|
146573
|
+
max?: number | undefined;
|
|
146574
|
+
};
|
|
146236
146575
|
themes: {
|
|
146237
146576
|
errorMessage: string;
|
|
146238
|
-
max: number;
|
|
146239
146577
|
errorReason: string;
|
|
146578
|
+
max?: number | undefined;
|
|
146240
146579
|
};
|
|
146241
146580
|
designSystems: {
|
|
146242
146581
|
errorMessage: string;
|
|
146243
|
-
max: number;
|
|
146244
146582
|
errorReason: string;
|
|
146583
|
+
max?: number | undefined;
|
|
146245
146584
|
};
|
|
146246
146585
|
designSystemSources: {
|
|
146247
146586
|
errorMessage: string;
|
|
146248
|
-
max: number;
|
|
146249
146587
|
errorReason: string;
|
|
146250
146588
|
noImportJobsErrorMessage: string;
|
|
146251
146589
|
noImportJobsErrorReason: string;
|
|
146590
|
+
max?: number | undefined;
|
|
146252
146591
|
};
|
|
146253
146592
|
designSystemVersions: {
|
|
146254
146593
|
errorMessage: string;
|
|
146255
|
-
max: number;
|
|
146256
146594
|
errorReason: string;
|
|
146595
|
+
max?: number | undefined;
|
|
146257
146596
|
};
|
|
146258
146597
|
brands: {
|
|
146259
146598
|
errorMessage: string;
|
|
146260
|
-
max: number;
|
|
146261
146599
|
errorReason: string;
|
|
146600
|
+
max?: number | undefined;
|
|
146262
146601
|
};
|
|
146263
146602
|
codegenSchedules: {
|
|
146264
146603
|
errorMessage: string;
|
|
146265
|
-
max: number;
|
|
146266
146604
|
errorReason: string;
|
|
146605
|
+
max?: number | undefined;
|
|
146267
146606
|
};
|
|
146268
146607
|
publicDocumentation: {
|
|
146269
146608
|
errorMessage: string;
|
|
@@ -146307,13 +146646,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146307
146646
|
};
|
|
146308
146647
|
workspacePaidSeats: {
|
|
146309
146648
|
errorMessage: string;
|
|
146310
|
-
max: number;
|
|
146311
146649
|
errorReason: string;
|
|
146650
|
+
max?: number | undefined;
|
|
146312
146651
|
};
|
|
146313
146652
|
workspaceViewers: {
|
|
146314
146653
|
errorMessage: string;
|
|
146315
|
-
max: number;
|
|
146316
146654
|
errorReason: string;
|
|
146655
|
+
max?: number | undefined;
|
|
146317
146656
|
};
|
|
146318
146657
|
customDocumentationExporter: {
|
|
146319
146658
|
errorMessage: string;
|
|
@@ -146351,37 +146690,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146351
146690
|
enabled: boolean;
|
|
146352
146691
|
};
|
|
146353
146692
|
}, {
|
|
146693
|
+
analytics: {
|
|
146694
|
+
errorMessage: string;
|
|
146695
|
+
errorReason: string;
|
|
146696
|
+
max?: number | undefined;
|
|
146697
|
+
};
|
|
146354
146698
|
themes: {
|
|
146355
146699
|
errorMessage: string;
|
|
146356
|
-
max: number;
|
|
146357
146700
|
errorReason: string;
|
|
146701
|
+
max?: number | undefined;
|
|
146358
146702
|
};
|
|
146359
146703
|
designSystems: {
|
|
146360
146704
|
errorMessage: string;
|
|
146361
|
-
max: number;
|
|
146362
146705
|
errorReason: string;
|
|
146706
|
+
max?: number | undefined;
|
|
146363
146707
|
};
|
|
146364
146708
|
designSystemSources: {
|
|
146365
146709
|
errorMessage: string;
|
|
146366
|
-
max: number;
|
|
146367
146710
|
errorReason: string;
|
|
146368
146711
|
noImportJobsErrorMessage: string;
|
|
146369
146712
|
noImportJobsErrorReason: string;
|
|
146713
|
+
max?: number | undefined;
|
|
146370
146714
|
};
|
|
146371
146715
|
designSystemVersions: {
|
|
146372
146716
|
errorMessage: string;
|
|
146373
|
-
max: number;
|
|
146374
146717
|
errorReason: string;
|
|
146718
|
+
max?: number | undefined;
|
|
146375
146719
|
};
|
|
146376
146720
|
brands: {
|
|
146377
146721
|
errorMessage: string;
|
|
146378
|
-
max: number;
|
|
146379
146722
|
errorReason: string;
|
|
146723
|
+
max?: number | undefined;
|
|
146380
146724
|
};
|
|
146381
146725
|
codegenSchedules: {
|
|
146382
146726
|
errorMessage: string;
|
|
146383
|
-
max: number;
|
|
146384
146727
|
errorReason: string;
|
|
146728
|
+
max?: number | undefined;
|
|
146385
146729
|
};
|
|
146386
146730
|
publicDocumentation: {
|
|
146387
146731
|
errorMessage: string;
|
|
@@ -146425,13 +146769,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146425
146769
|
};
|
|
146426
146770
|
workspacePaidSeats: {
|
|
146427
146771
|
errorMessage: string;
|
|
146428
|
-
max: number;
|
|
146429
146772
|
errorReason: string;
|
|
146773
|
+
max?: number | undefined;
|
|
146430
146774
|
};
|
|
146431
146775
|
workspaceViewers: {
|
|
146432
146776
|
errorMessage: string;
|
|
146433
|
-
max: number;
|
|
146434
146777
|
errorReason: string;
|
|
146778
|
+
max?: number | undefined;
|
|
146435
146779
|
};
|
|
146436
146780
|
customDocumentationExporter: {
|
|
146437
146781
|
errorMessage: string;
|
|
@@ -146536,37 +146880,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146536
146880
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
146537
146881
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
146538
146882
|
featuresSummary?: {
|
|
146883
|
+
analytics: {
|
|
146884
|
+
errorMessage: string;
|
|
146885
|
+
errorReason: string;
|
|
146886
|
+
max?: number | undefined;
|
|
146887
|
+
};
|
|
146539
146888
|
themes: {
|
|
146540
146889
|
errorMessage: string;
|
|
146541
|
-
max: number;
|
|
146542
146890
|
errorReason: string;
|
|
146891
|
+
max?: number | undefined;
|
|
146543
146892
|
};
|
|
146544
146893
|
designSystems: {
|
|
146545
146894
|
errorMessage: string;
|
|
146546
|
-
max: number;
|
|
146547
146895
|
errorReason: string;
|
|
146896
|
+
max?: number | undefined;
|
|
146548
146897
|
};
|
|
146549
146898
|
designSystemSources: {
|
|
146550
146899
|
errorMessage: string;
|
|
146551
|
-
max: number;
|
|
146552
146900
|
errorReason: string;
|
|
146553
146901
|
noImportJobsErrorMessage: string;
|
|
146554
146902
|
noImportJobsErrorReason: string;
|
|
146903
|
+
max?: number | undefined;
|
|
146555
146904
|
};
|
|
146556
146905
|
designSystemVersions: {
|
|
146557
146906
|
errorMessage: string;
|
|
146558
|
-
max: number;
|
|
146559
146907
|
errorReason: string;
|
|
146908
|
+
max?: number | undefined;
|
|
146560
146909
|
};
|
|
146561
146910
|
brands: {
|
|
146562
146911
|
errorMessage: string;
|
|
146563
|
-
max: number;
|
|
146564
146912
|
errorReason: string;
|
|
146913
|
+
max?: number | undefined;
|
|
146565
146914
|
};
|
|
146566
146915
|
codegenSchedules: {
|
|
146567
146916
|
errorMessage: string;
|
|
146568
|
-
max: number;
|
|
146569
146917
|
errorReason: string;
|
|
146918
|
+
max?: number | undefined;
|
|
146570
146919
|
};
|
|
146571
146920
|
publicDocumentation: {
|
|
146572
146921
|
errorMessage: string;
|
|
@@ -146610,13 +146959,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146610
146959
|
};
|
|
146611
146960
|
workspacePaidSeats: {
|
|
146612
146961
|
errorMessage: string;
|
|
146613
|
-
max: number;
|
|
146614
146962
|
errorReason: string;
|
|
146963
|
+
max?: number | undefined;
|
|
146615
146964
|
};
|
|
146616
146965
|
workspaceViewers: {
|
|
146617
146966
|
errorMessage: string;
|
|
146618
|
-
max: number;
|
|
146619
146967
|
errorReason: string;
|
|
146968
|
+
max?: number | undefined;
|
|
146620
146969
|
};
|
|
146621
146970
|
customDocumentationExporter: {
|
|
146622
146971
|
errorMessage: string;
|
|
@@ -146688,37 +147037,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146688
147037
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
146689
147038
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
146690
147039
|
featuresSummary?: {
|
|
147040
|
+
analytics: {
|
|
147041
|
+
errorMessage: string;
|
|
147042
|
+
errorReason: string;
|
|
147043
|
+
max?: number | undefined;
|
|
147044
|
+
};
|
|
146691
147045
|
themes: {
|
|
146692
147046
|
errorMessage: string;
|
|
146693
|
-
max: number;
|
|
146694
147047
|
errorReason: string;
|
|
147048
|
+
max?: number | undefined;
|
|
146695
147049
|
};
|
|
146696
147050
|
designSystems: {
|
|
146697
147051
|
errorMessage: string;
|
|
146698
|
-
max: number;
|
|
146699
147052
|
errorReason: string;
|
|
147053
|
+
max?: number | undefined;
|
|
146700
147054
|
};
|
|
146701
147055
|
designSystemSources: {
|
|
146702
147056
|
errorMessage: string;
|
|
146703
|
-
max: number;
|
|
146704
147057
|
errorReason: string;
|
|
146705
147058
|
noImportJobsErrorMessage: string;
|
|
146706
147059
|
noImportJobsErrorReason: string;
|
|
147060
|
+
max?: number | undefined;
|
|
146707
147061
|
};
|
|
146708
147062
|
designSystemVersions: {
|
|
146709
147063
|
errorMessage: string;
|
|
146710
|
-
max: number;
|
|
146711
147064
|
errorReason: string;
|
|
147065
|
+
max?: number | undefined;
|
|
146712
147066
|
};
|
|
146713
147067
|
brands: {
|
|
146714
147068
|
errorMessage: string;
|
|
146715
|
-
max: number;
|
|
146716
147069
|
errorReason: string;
|
|
147070
|
+
max?: number | undefined;
|
|
146717
147071
|
};
|
|
146718
147072
|
codegenSchedules: {
|
|
146719
147073
|
errorMessage: string;
|
|
146720
|
-
max: number;
|
|
146721
147074
|
errorReason: string;
|
|
147075
|
+
max?: number | undefined;
|
|
146722
147076
|
};
|
|
146723
147077
|
publicDocumentation: {
|
|
146724
147078
|
errorMessage: string;
|
|
@@ -146762,13 +147116,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
146762
147116
|
};
|
|
146763
147117
|
workspacePaidSeats: {
|
|
146764
147118
|
errorMessage: string;
|
|
146765
|
-
max: number;
|
|
146766
147119
|
errorReason: string;
|
|
147120
|
+
max?: number | undefined;
|
|
146767
147121
|
};
|
|
146768
147122
|
workspaceViewers: {
|
|
146769
147123
|
errorMessage: string;
|
|
146770
|
-
max: number;
|
|
146771
147124
|
errorReason: string;
|
|
147125
|
+
max?: number | undefined;
|
|
146772
147126
|
};
|
|
146773
147127
|
customDocumentationExporter: {
|
|
146774
147128
|
errorMessage: string;
|
|
@@ -147016,37 +147370,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147016
147370
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
147017
147371
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
147018
147372
|
featuresSummary?: {
|
|
147373
|
+
analytics: {
|
|
147374
|
+
errorMessage: string;
|
|
147375
|
+
errorReason: string;
|
|
147376
|
+
max?: number | undefined;
|
|
147377
|
+
};
|
|
147019
147378
|
themes: {
|
|
147020
147379
|
errorMessage: string;
|
|
147021
|
-
max: number;
|
|
147022
147380
|
errorReason: string;
|
|
147381
|
+
max?: number | undefined;
|
|
147023
147382
|
};
|
|
147024
147383
|
designSystems: {
|
|
147025
147384
|
errorMessage: string;
|
|
147026
|
-
max: number;
|
|
147027
147385
|
errorReason: string;
|
|
147386
|
+
max?: number | undefined;
|
|
147028
147387
|
};
|
|
147029
147388
|
designSystemSources: {
|
|
147030
147389
|
errorMessage: string;
|
|
147031
|
-
max: number;
|
|
147032
147390
|
errorReason: string;
|
|
147033
147391
|
noImportJobsErrorMessage: string;
|
|
147034
147392
|
noImportJobsErrorReason: string;
|
|
147393
|
+
max?: number | undefined;
|
|
147035
147394
|
};
|
|
147036
147395
|
designSystemVersions: {
|
|
147037
147396
|
errorMessage: string;
|
|
147038
|
-
max: number;
|
|
147039
147397
|
errorReason: string;
|
|
147398
|
+
max?: number | undefined;
|
|
147040
147399
|
};
|
|
147041
147400
|
brands: {
|
|
147042
147401
|
errorMessage: string;
|
|
147043
|
-
max: number;
|
|
147044
147402
|
errorReason: string;
|
|
147403
|
+
max?: number | undefined;
|
|
147045
147404
|
};
|
|
147046
147405
|
codegenSchedules: {
|
|
147047
147406
|
errorMessage: string;
|
|
147048
|
-
max: number;
|
|
147049
147407
|
errorReason: string;
|
|
147408
|
+
max?: number | undefined;
|
|
147050
147409
|
};
|
|
147051
147410
|
publicDocumentation: {
|
|
147052
147411
|
errorMessage: string;
|
|
@@ -147090,13 +147449,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147090
147449
|
};
|
|
147091
147450
|
workspacePaidSeats: {
|
|
147092
147451
|
errorMessage: string;
|
|
147093
|
-
max: number;
|
|
147094
147452
|
errorReason: string;
|
|
147453
|
+
max?: number | undefined;
|
|
147095
147454
|
};
|
|
147096
147455
|
workspaceViewers: {
|
|
147097
147456
|
errorMessage: string;
|
|
147098
|
-
max: number;
|
|
147099
147457
|
errorReason: string;
|
|
147458
|
+
max?: number | undefined;
|
|
147100
147459
|
};
|
|
147101
147460
|
customDocumentationExporter: {
|
|
147102
147461
|
errorMessage: string;
|
|
@@ -147233,37 +147592,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147233
147592
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
147234
147593
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
147235
147594
|
featuresSummary?: {
|
|
147595
|
+
analytics: {
|
|
147596
|
+
errorMessage: string;
|
|
147597
|
+
errorReason: string;
|
|
147598
|
+
max?: number | undefined;
|
|
147599
|
+
};
|
|
147236
147600
|
themes: {
|
|
147237
147601
|
errorMessage: string;
|
|
147238
|
-
max: number;
|
|
147239
147602
|
errorReason: string;
|
|
147603
|
+
max?: number | undefined;
|
|
147240
147604
|
};
|
|
147241
147605
|
designSystems: {
|
|
147242
147606
|
errorMessage: string;
|
|
147243
|
-
max: number;
|
|
147244
147607
|
errorReason: string;
|
|
147608
|
+
max?: number | undefined;
|
|
147245
147609
|
};
|
|
147246
147610
|
designSystemSources: {
|
|
147247
147611
|
errorMessage: string;
|
|
147248
|
-
max: number;
|
|
147249
147612
|
errorReason: string;
|
|
147250
147613
|
noImportJobsErrorMessage: string;
|
|
147251
147614
|
noImportJobsErrorReason: string;
|
|
147615
|
+
max?: number | undefined;
|
|
147252
147616
|
};
|
|
147253
147617
|
designSystemVersions: {
|
|
147254
147618
|
errorMessage: string;
|
|
147255
|
-
max: number;
|
|
147256
147619
|
errorReason: string;
|
|
147620
|
+
max?: number | undefined;
|
|
147257
147621
|
};
|
|
147258
147622
|
brands: {
|
|
147259
147623
|
errorMessage: string;
|
|
147260
|
-
max: number;
|
|
147261
147624
|
errorReason: string;
|
|
147625
|
+
max?: number | undefined;
|
|
147262
147626
|
};
|
|
147263
147627
|
codegenSchedules: {
|
|
147264
147628
|
errorMessage: string;
|
|
147265
|
-
max: number;
|
|
147266
147629
|
errorReason: string;
|
|
147630
|
+
max?: number | undefined;
|
|
147267
147631
|
};
|
|
147268
147632
|
publicDocumentation: {
|
|
147269
147633
|
errorMessage: string;
|
|
@@ -147307,13 +147671,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147307
147671
|
};
|
|
147308
147672
|
workspacePaidSeats: {
|
|
147309
147673
|
errorMessage: string;
|
|
147310
|
-
max: number;
|
|
147311
147674
|
errorReason: string;
|
|
147675
|
+
max?: number | undefined;
|
|
147312
147676
|
};
|
|
147313
147677
|
workspaceViewers: {
|
|
147314
147678
|
errorMessage: string;
|
|
147315
|
-
max: number;
|
|
147316
147679
|
errorReason: string;
|
|
147680
|
+
max?: number | undefined;
|
|
147317
147681
|
};
|
|
147318
147682
|
customDocumentationExporter: {
|
|
147319
147683
|
errorMessage: string;
|
|
@@ -147662,37 +148026,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147662
148026
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
147663
148027
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
147664
148028
|
featuresSummary?: {
|
|
148029
|
+
analytics: {
|
|
148030
|
+
errorMessage: string;
|
|
148031
|
+
errorReason: string;
|
|
148032
|
+
max?: number | undefined;
|
|
148033
|
+
};
|
|
147665
148034
|
themes: {
|
|
147666
148035
|
errorMessage: string;
|
|
147667
|
-
max: number;
|
|
147668
148036
|
errorReason: string;
|
|
148037
|
+
max?: number | undefined;
|
|
147669
148038
|
};
|
|
147670
148039
|
designSystems: {
|
|
147671
148040
|
errorMessage: string;
|
|
147672
|
-
max: number;
|
|
147673
148041
|
errorReason: string;
|
|
148042
|
+
max?: number | undefined;
|
|
147674
148043
|
};
|
|
147675
148044
|
designSystemSources: {
|
|
147676
148045
|
errorMessage: string;
|
|
147677
|
-
max: number;
|
|
147678
148046
|
errorReason: string;
|
|
147679
148047
|
noImportJobsErrorMessage: string;
|
|
147680
148048
|
noImportJobsErrorReason: string;
|
|
148049
|
+
max?: number | undefined;
|
|
147681
148050
|
};
|
|
147682
148051
|
designSystemVersions: {
|
|
147683
148052
|
errorMessage: string;
|
|
147684
|
-
max: number;
|
|
147685
148053
|
errorReason: string;
|
|
148054
|
+
max?: number | undefined;
|
|
147686
148055
|
};
|
|
147687
148056
|
brands: {
|
|
147688
148057
|
errorMessage: string;
|
|
147689
|
-
max: number;
|
|
147690
148058
|
errorReason: string;
|
|
148059
|
+
max?: number | undefined;
|
|
147691
148060
|
};
|
|
147692
148061
|
codegenSchedules: {
|
|
147693
148062
|
errorMessage: string;
|
|
147694
|
-
max: number;
|
|
147695
148063
|
errorReason: string;
|
|
148064
|
+
max?: number | undefined;
|
|
147696
148065
|
};
|
|
147697
148066
|
publicDocumentation: {
|
|
147698
148067
|
errorMessage: string;
|
|
@@ -147736,13 +148105,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147736
148105
|
};
|
|
147737
148106
|
workspacePaidSeats: {
|
|
147738
148107
|
errorMessage: string;
|
|
147739
|
-
max: number;
|
|
147740
148108
|
errorReason: string;
|
|
148109
|
+
max?: number | undefined;
|
|
147741
148110
|
};
|
|
147742
148111
|
workspaceViewers: {
|
|
147743
148112
|
errorMessage: string;
|
|
147744
|
-
max: number;
|
|
147745
148113
|
errorReason: string;
|
|
148114
|
+
max?: number | undefined;
|
|
147746
148115
|
};
|
|
147747
148116
|
customDocumentationExporter: {
|
|
147748
148117
|
errorMessage: string;
|
|
@@ -147919,37 +148288,42 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147919
148288
|
subscriptionStatus?: "unknown" | "active" | "trialing" | "past_due" | "canceled" | "unpaid" | "incomplete_expired" | "incomplete" | undefined;
|
|
147920
148289
|
internalStatus?: "active" | "suspended" | "gracePeriod" | "cancelled" | "downgraded_to_free" | undefined;
|
|
147921
148290
|
featuresSummary?: {
|
|
148291
|
+
analytics: {
|
|
148292
|
+
errorMessage: string;
|
|
148293
|
+
errorReason: string;
|
|
148294
|
+
max?: number | undefined;
|
|
148295
|
+
};
|
|
147922
148296
|
themes: {
|
|
147923
148297
|
errorMessage: string;
|
|
147924
|
-
max: number;
|
|
147925
148298
|
errorReason: string;
|
|
148299
|
+
max?: number | undefined;
|
|
147926
148300
|
};
|
|
147927
148301
|
designSystems: {
|
|
147928
148302
|
errorMessage: string;
|
|
147929
|
-
max: number;
|
|
147930
148303
|
errorReason: string;
|
|
148304
|
+
max?: number | undefined;
|
|
147931
148305
|
};
|
|
147932
148306
|
designSystemSources: {
|
|
147933
148307
|
errorMessage: string;
|
|
147934
|
-
max: number;
|
|
147935
148308
|
errorReason: string;
|
|
147936
148309
|
noImportJobsErrorMessage: string;
|
|
147937
148310
|
noImportJobsErrorReason: string;
|
|
148311
|
+
max?: number | undefined;
|
|
147938
148312
|
};
|
|
147939
148313
|
designSystemVersions: {
|
|
147940
148314
|
errorMessage: string;
|
|
147941
|
-
max: number;
|
|
147942
148315
|
errorReason: string;
|
|
148316
|
+
max?: number | undefined;
|
|
147943
148317
|
};
|
|
147944
148318
|
brands: {
|
|
147945
148319
|
errorMessage: string;
|
|
147946
|
-
max: number;
|
|
147947
148320
|
errorReason: string;
|
|
148321
|
+
max?: number | undefined;
|
|
147948
148322
|
};
|
|
147949
148323
|
codegenSchedules: {
|
|
147950
148324
|
errorMessage: string;
|
|
147951
|
-
max: number;
|
|
147952
148325
|
errorReason: string;
|
|
148326
|
+
max?: number | undefined;
|
|
147953
148327
|
};
|
|
147954
148328
|
publicDocumentation: {
|
|
147955
148329
|
errorMessage: string;
|
|
@@ -147993,13 +148367,13 @@ declare const WorkspaceInviteEmailData: z.ZodObject<{
|
|
|
147993
148367
|
};
|
|
147994
148368
|
workspacePaidSeats: {
|
|
147995
148369
|
errorMessage: string;
|
|
147996
|
-
max: number;
|
|
147997
148370
|
errorReason: string;
|
|
148371
|
+
max?: number | undefined;
|
|
147998
148372
|
};
|
|
147999
148373
|
workspaceViewers: {
|
|
148000
148374
|
errorMessage: string;
|
|
148001
|
-
max: number;
|
|
148002
148375
|
errorReason: string;
|
|
148376
|
+
max?: number | undefined;
|
|
148003
148377
|
};
|
|
148004
148378
|
customDocumentationExporter: {
|
|
148005
148379
|
errorMessage: string;
|