@postxl/schema 1.8.0 → 1.8.2

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.
@@ -420,6 +420,908 @@ export declare const sampleSchemas: {
420
420
  }[];
421
421
  }[];
422
422
  };
423
+ paxl: {
424
+ name: string;
425
+ slug: string;
426
+ description: string;
427
+ projectType: string;
428
+ version: string;
429
+ auth: {
430
+ provider: string;
431
+ roleClaimPath: string;
432
+ defaultDeny: boolean;
433
+ };
434
+ schemas: {
435
+ name: string;
436
+ }[];
437
+ defaultSchema: string;
438
+ systemUser: {
439
+ name: string;
440
+ email: string;
441
+ };
442
+ standardModels: string[];
443
+ models: {
444
+ Organization: {
445
+ description: string;
446
+ schema: string;
447
+ standardFields: string[];
448
+ labelField: string;
449
+ keyField: string;
450
+ fields: {
451
+ name: {
452
+ type: string;
453
+ label: string;
454
+ description: string;
455
+ maxLength: number;
456
+ };
457
+ slug: {
458
+ type: string;
459
+ label: string;
460
+ description: string;
461
+ isUnique: boolean;
462
+ maxLength: number;
463
+ };
464
+ status: {
465
+ type: {
466
+ Provisioning: string;
467
+ Active: string;
468
+ Suspended: string;
469
+ };
470
+ label: string;
471
+ description: string;
472
+ };
473
+ ssoProvider: {
474
+ type: string;
475
+ label: string;
476
+ description: string;
477
+ };
478
+ ssoRealm: {
479
+ type: string;
480
+ label: string;
481
+ description: string;
482
+ };
483
+ cloudProvider: {
484
+ type: {
485
+ Aws: string;
486
+ Azure: string;
487
+ None: string;
488
+ };
489
+ label: string;
490
+ description: string;
491
+ };
492
+ cloudCredentials: {
493
+ type: string;
494
+ label: string;
495
+ description: string;
496
+ };
497
+ gitProvider: {
498
+ type: {
499
+ Github: string;
500
+ Gitlab: string;
501
+ Bitbucket: string;
502
+ None: string;
503
+ };
504
+ label: string;
505
+ description: string;
506
+ };
507
+ };
508
+ };
509
+ Workspace: {
510
+ description: string;
511
+ schema: string;
512
+ standardFields: string[];
513
+ labelField: string;
514
+ keyField: string;
515
+ fields: {
516
+ name: {
517
+ type: string;
518
+ label: string;
519
+ description: string;
520
+ maxLength: number;
521
+ };
522
+ slug: {
523
+ type: string;
524
+ label: string;
525
+ description: string;
526
+ isUnique: boolean;
527
+ maxLength: number;
528
+ };
529
+ description: {
530
+ type: string;
531
+ label: string;
532
+ description: string;
533
+ };
534
+ status: {
535
+ type: {
536
+ Active: string;
537
+ Archived: string;
538
+ };
539
+ label: string;
540
+ description: string;
541
+ };
542
+ organizationId: {
543
+ type: string;
544
+ label: string;
545
+ description: string;
546
+ };
547
+ };
548
+ };
549
+ OrgMember: {
550
+ description: string;
551
+ schema: string;
552
+ standardFields: string[];
553
+ fields: {
554
+ role: {
555
+ type: {
556
+ OrgAdmin: string;
557
+ Member: string;
558
+ };
559
+ label: string;
560
+ description: string;
561
+ };
562
+ organizationId: {
563
+ type: string;
564
+ label: string;
565
+ description: string;
566
+ };
567
+ userId: {
568
+ type: string;
569
+ label: string;
570
+ description: string;
571
+ };
572
+ };
573
+ };
574
+ WorkspaceMember: {
575
+ description: string;
576
+ schema: string;
577
+ standardFields: string[];
578
+ fields: {
579
+ role: {
580
+ type: {
581
+ WorkspaceAdmin: string;
582
+ Builder: string;
583
+ Viewer: string;
584
+ };
585
+ label: string;
586
+ description: string;
587
+ };
588
+ workspaceId: {
589
+ type: string;
590
+ label: string;
591
+ description: string;
592
+ };
593
+ userId: {
594
+ type: string;
595
+ label: string;
596
+ description: string;
597
+ };
598
+ };
599
+ };
600
+ App: {
601
+ description: string;
602
+ schema: string;
603
+ standardFields: string[];
604
+ labelField: string;
605
+ keyField: string;
606
+ fields: {
607
+ name: {
608
+ type: string;
609
+ label: string;
610
+ description: string;
611
+ maxLength: number;
612
+ };
613
+ slug: {
614
+ type: string;
615
+ label: string;
616
+ description: string;
617
+ isUnique: boolean;
618
+ maxLength: number;
619
+ };
620
+ description: {
621
+ type: string;
622
+ label: string;
623
+ description: string;
624
+ };
625
+ status: {
626
+ type: {
627
+ Concept: string;
628
+ Building: string;
629
+ Built: string;
630
+ Deployed: string;
631
+ Archived: string;
632
+ };
633
+ label: string;
634
+ description: string;
635
+ };
636
+ workspaceId: {
637
+ type: string;
638
+ label: string;
639
+ description: string;
640
+ };
641
+ createdById: {
642
+ type: string;
643
+ label: string;
644
+ description: string;
645
+ };
646
+ };
647
+ };
648
+ AppVersion: {
649
+ description: string;
650
+ schema: string;
651
+ standardFields: string[];
652
+ labelField: string;
653
+ fields: {
654
+ versionNumber: {
655
+ type: string;
656
+ label: string;
657
+ description: string;
658
+ };
659
+ label: {
660
+ type: string;
661
+ label: string;
662
+ description: string;
663
+ maxLength: number;
664
+ };
665
+ status: {
666
+ type: {
667
+ Draft: string;
668
+ Current: string;
669
+ Superseded: string;
670
+ };
671
+ label: string;
672
+ description: string;
673
+ };
674
+ appId: {
675
+ type: string;
676
+ label: string;
677
+ description: string;
678
+ };
679
+ gitBranch: {
680
+ type: string;
681
+ label: string;
682
+ description: string;
683
+ };
684
+ gitCommitHash: {
685
+ type: string;
686
+ label: string;
687
+ description: string;
688
+ };
689
+ };
690
+ };
691
+ AppConcept: {
692
+ description: string;
693
+ schema: string;
694
+ standardFields: string[];
695
+ labelField: string;
696
+ fields: {
697
+ name: {
698
+ type: string;
699
+ label: string;
700
+ description: string;
701
+ maxLength: number;
702
+ };
703
+ status: {
704
+ type: {
705
+ Drafting: string;
706
+ InReview: string;
707
+ Approved: string;
708
+ Archived: string;
709
+ };
710
+ label: string;
711
+ description: string;
712
+ };
713
+ conceptData: {
714
+ type: string;
715
+ label: string;
716
+ description: string;
717
+ };
718
+ appId: {
719
+ type: string;
720
+ label: string;
721
+ description: string;
722
+ };
723
+ };
724
+ };
725
+ ConceptSection: {
726
+ description: string;
727
+ schema: string;
728
+ standardFields: string[];
729
+ labelField: string;
730
+ fields: {
731
+ name: {
732
+ type: string;
733
+ label: string;
734
+ description: string;
735
+ maxLength: number;
736
+ };
737
+ sectionType: {
738
+ type: {
739
+ Brief: string;
740
+ Features: string;
741
+ DataModel: string;
742
+ Screens: string;
743
+ Brand: string;
744
+ TechStack: string;
745
+ };
746
+ label: string;
747
+ description: string;
748
+ };
749
+ status: {
750
+ type: {
751
+ Pending: string;
752
+ Generated: string;
753
+ Reviewed: string;
754
+ Approved: string;
755
+ };
756
+ label: string;
757
+ description: string;
758
+ };
759
+ content: {
760
+ type: string;
761
+ label: string;
762
+ description: string;
763
+ };
764
+ appConceptId: {
765
+ type: string;
766
+ label: string;
767
+ description: string;
768
+ };
769
+ };
770
+ };
771
+ BuildSession: {
772
+ description: string;
773
+ schema: string;
774
+ standardFields: string[];
775
+ fields: {
776
+ status: {
777
+ type: {
778
+ Idle: string;
779
+ Generating: string;
780
+ Previewing: string;
781
+ Error: string;
782
+ };
783
+ label: string;
784
+ description: string;
785
+ };
786
+ mode: {
787
+ type: {
788
+ Agent: string;
789
+ Chat: string;
790
+ Visual: string;
791
+ };
792
+ label: string;
793
+ description: string;
794
+ };
795
+ appVersionId: {
796
+ type: string;
797
+ label: string;
798
+ description: string;
799
+ };
800
+ userId: {
801
+ type: string;
802
+ label: string;
803
+ description: string;
804
+ };
805
+ startedAt: {
806
+ type: string;
807
+ label: string;
808
+ description: string;
809
+ };
810
+ endedAt: {
811
+ type: string;
812
+ label: string;
813
+ description: string;
814
+ };
815
+ };
816
+ };
817
+ BuildMessage: {
818
+ description: string;
819
+ schema: string;
820
+ standardFields: string[];
821
+ labelField: string;
822
+ fields: {
823
+ role: {
824
+ type: {
825
+ User: string;
826
+ Agent: string;
827
+ System: string;
828
+ };
829
+ label: string;
830
+ description: string;
831
+ };
832
+ content: {
833
+ type: string;
834
+ label: string;
835
+ description: string;
836
+ };
837
+ metadata: {
838
+ type: string;
839
+ label: string;
840
+ description: string;
841
+ };
842
+ buildSessionId: {
843
+ type: string;
844
+ label: string;
845
+ description: string;
846
+ };
847
+ };
848
+ };
849
+ GitConnection: {
850
+ description: string;
851
+ schema: string;
852
+ standardFields: string[];
853
+ labelField: string;
854
+ fields: {
855
+ provider: {
856
+ type: {
857
+ Github: string;
858
+ Gitlab: string;
859
+ Bitbucket: string;
860
+ };
861
+ label: string;
862
+ description: string;
863
+ };
864
+ status: {
865
+ type: {
866
+ Connecting: string;
867
+ Connected: string;
868
+ Error: string;
869
+ Revoked: string;
870
+ };
871
+ label: string;
872
+ description: string;
873
+ };
874
+ accessToken: {
875
+ type: string;
876
+ label: string;
877
+ description: string;
878
+ };
879
+ refreshToken: {
880
+ type: string;
881
+ label: string;
882
+ description: string;
883
+ };
884
+ providerUsername: {
885
+ type: string;
886
+ label: string;
887
+ description: string;
888
+ };
889
+ workspaceId: {
890
+ type: string;
891
+ label: string;
892
+ description: string;
893
+ };
894
+ };
895
+ };
896
+ GitRepo: {
897
+ description: string;
898
+ schema: string;
899
+ standardFields: string[];
900
+ labelField: string;
901
+ fields: {
902
+ name: {
903
+ type: string;
904
+ label: string;
905
+ description: string;
906
+ maxLength: number;
907
+ };
908
+ fullName: {
909
+ type: string;
910
+ label: string;
911
+ description: string;
912
+ maxLength: number;
913
+ };
914
+ defaultBranch: {
915
+ type: string;
916
+ label: string;
917
+ description: string;
918
+ maxLength: number;
919
+ };
920
+ status: {
921
+ type: {
922
+ Linked: string;
923
+ Unlinked: string;
924
+ };
925
+ label: string;
926
+ description: string;
927
+ };
928
+ url: {
929
+ type: string;
930
+ label: string;
931
+ description: string;
932
+ };
933
+ gitConnectionId: {
934
+ type: string;
935
+ label: string;
936
+ description: string;
937
+ };
938
+ workspaceId: {
939
+ type: string;
940
+ label: string;
941
+ description: string;
942
+ };
943
+ };
944
+ };
945
+ GitCommit: {
946
+ description: string;
947
+ schema: string;
948
+ standardFields: string[];
949
+ labelField: string;
950
+ fields: {
951
+ commitHash: {
952
+ type: string;
953
+ label: string;
954
+ description: string;
955
+ maxLength: number;
956
+ };
957
+ message: {
958
+ type: string;
959
+ label: string;
960
+ description: string;
961
+ };
962
+ branch: {
963
+ type: string;
964
+ label: string;
965
+ description: string;
966
+ maxLength: number;
967
+ };
968
+ appVersionId: {
969
+ type: string;
970
+ label: string;
971
+ description: string;
972
+ };
973
+ gitRepoId: {
974
+ type: string;
975
+ label: string;
976
+ description: string;
977
+ };
978
+ committedAt: {
979
+ type: string;
980
+ label: string;
981
+ description: string;
982
+ };
983
+ };
984
+ };
985
+ CloudConnection: {
986
+ description: string;
987
+ schema: string;
988
+ standardFields: string[];
989
+ labelField: string;
990
+ fields: {
991
+ provider: {
992
+ type: {
993
+ Aws: string;
994
+ Azure: string;
995
+ };
996
+ label: string;
997
+ description: string;
998
+ };
999
+ status: {
1000
+ type: {
1001
+ Configuring: string;
1002
+ Connected: string;
1003
+ Error: string;
1004
+ Revoked: string;
1005
+ };
1006
+ label: string;
1007
+ description: string;
1008
+ };
1009
+ credentials: {
1010
+ type: string;
1011
+ label: string;
1012
+ description: string;
1013
+ };
1014
+ region: {
1015
+ type: string;
1016
+ label: string;
1017
+ description: string;
1018
+ maxLength: number;
1019
+ };
1020
+ organizationId: {
1021
+ type: string;
1022
+ label: string;
1023
+ description: string;
1024
+ };
1025
+ };
1026
+ };
1027
+ Deployment: {
1028
+ description: string;
1029
+ schema: string;
1030
+ standardFields: string[];
1031
+ labelField: string;
1032
+ fields: {
1033
+ status: {
1034
+ type: {
1035
+ Queued: string;
1036
+ Provisioning: string;
1037
+ Deploying: string;
1038
+ Running: string;
1039
+ Failed: string;
1040
+ Stopped: string;
1041
+ };
1042
+ label: string;
1043
+ description: string;
1044
+ };
1045
+ appVersionId: {
1046
+ type: string;
1047
+ label: string;
1048
+ description: string;
1049
+ };
1050
+ cloudConnectionId: {
1051
+ type: string;
1052
+ label: string;
1053
+ description: string;
1054
+ };
1055
+ vmInstanceId: {
1056
+ type: string;
1057
+ label: string;
1058
+ description: string;
1059
+ };
1060
+ url: {
1061
+ type: string;
1062
+ label: string;
1063
+ description: string;
1064
+ };
1065
+ startedAt: {
1066
+ type: string;
1067
+ label: string;
1068
+ description: string;
1069
+ };
1070
+ completedAt: {
1071
+ type: string;
1072
+ label: string;
1073
+ description: string;
1074
+ };
1075
+ errorMessage: {
1076
+ type: string;
1077
+ label: string;
1078
+ description: string;
1079
+ };
1080
+ };
1081
+ };
1082
+ DeploymentEnvironment: {
1083
+ description: string;
1084
+ schema: string;
1085
+ standardFields: string[];
1086
+ labelField: string;
1087
+ fields: {
1088
+ name: {
1089
+ type: string;
1090
+ label: string;
1091
+ description: string;
1092
+ maxLength: number;
1093
+ };
1094
+ environmentType: {
1095
+ type: {
1096
+ Development: string;
1097
+ Staging: string;
1098
+ Production: string;
1099
+ };
1100
+ label: string;
1101
+ description: string;
1102
+ };
1103
+ status: {
1104
+ type: {
1105
+ Active: string;
1106
+ Inactive: string;
1107
+ };
1108
+ label: string;
1109
+ description: string;
1110
+ };
1111
+ domain: {
1112
+ type: string;
1113
+ label: string;
1114
+ description: string;
1115
+ maxLength: number;
1116
+ };
1117
+ workspaceId: {
1118
+ type: string;
1119
+ label: string;
1120
+ description: string;
1121
+ };
1122
+ };
1123
+ };
1124
+ Template: {
1125
+ description: string;
1126
+ schema: string;
1127
+ standardFields: string[];
1128
+ labelField: string;
1129
+ keyField: string;
1130
+ fields: {
1131
+ name: {
1132
+ type: string;
1133
+ label: string;
1134
+ description: string;
1135
+ maxLength: number;
1136
+ };
1137
+ slug: {
1138
+ type: string;
1139
+ label: string;
1140
+ description: string;
1141
+ isUnique: boolean;
1142
+ maxLength: number;
1143
+ };
1144
+ description: {
1145
+ type: string;
1146
+ label: string;
1147
+ description: string;
1148
+ };
1149
+ category: {
1150
+ type: string;
1151
+ label: string;
1152
+ description: string;
1153
+ maxLength: number;
1154
+ };
1155
+ status: {
1156
+ type: {
1157
+ Draft: string;
1158
+ Published: string;
1159
+ Deprecated: string;
1160
+ };
1161
+ label: string;
1162
+ description: string;
1163
+ };
1164
+ conceptData: {
1165
+ type: string;
1166
+ label: string;
1167
+ description: string;
1168
+ };
1169
+ organizationId: {
1170
+ type: string;
1171
+ label: string;
1172
+ description: string;
1173
+ };
1174
+ createdById: {
1175
+ type: string;
1176
+ label: string;
1177
+ description: string;
1178
+ };
1179
+ usageCount: {
1180
+ type: string;
1181
+ label: string;
1182
+ description: string;
1183
+ isReadonly: boolean;
1184
+ };
1185
+ };
1186
+ };
1187
+ WebhookEndpoint: {
1188
+ description: string;
1189
+ schema: string;
1190
+ standardFields: string[];
1191
+ labelField: string;
1192
+ fields: {
1193
+ url: {
1194
+ type: string;
1195
+ label: string;
1196
+ description: string;
1197
+ };
1198
+ events: {
1199
+ type: string;
1200
+ label: string;
1201
+ description: string;
1202
+ };
1203
+ status: {
1204
+ type: {
1205
+ Active: string;
1206
+ Paused: string;
1207
+ Error: string;
1208
+ };
1209
+ label: string;
1210
+ description: string;
1211
+ };
1212
+ secret: {
1213
+ type: string;
1214
+ label: string;
1215
+ description: string;
1216
+ };
1217
+ appId: {
1218
+ type: string;
1219
+ label: string;
1220
+ description: string;
1221
+ };
1222
+ lastTriggeredAt: {
1223
+ type: string;
1224
+ label: string;
1225
+ description: string;
1226
+ };
1227
+ };
1228
+ };
1229
+ ApiKey: {
1230
+ description: string;
1231
+ schema: string;
1232
+ standardFields: string[];
1233
+ labelField: string;
1234
+ fields: {
1235
+ name: {
1236
+ type: string;
1237
+ label: string;
1238
+ description: string;
1239
+ maxLength: number;
1240
+ };
1241
+ keyHash: {
1242
+ type: string;
1243
+ label: string;
1244
+ description: string;
1245
+ };
1246
+ status: {
1247
+ type: {
1248
+ Active: string;
1249
+ Revoked: string;
1250
+ };
1251
+ label: string;
1252
+ description: string;
1253
+ };
1254
+ lastUsedAt: {
1255
+ type: string;
1256
+ label: string;
1257
+ description: string;
1258
+ };
1259
+ organizationId: {
1260
+ type: string;
1261
+ label: string;
1262
+ description: string;
1263
+ };
1264
+ createdById: {
1265
+ type: string;
1266
+ label: string;
1267
+ description: string;
1268
+ };
1269
+ };
1270
+ };
1271
+ Subscription: {
1272
+ description: string;
1273
+ schema: string;
1274
+ standardFields: string[];
1275
+ fields: {
1276
+ plan: {
1277
+ type: {
1278
+ Trial: string;
1279
+ Starter: string;
1280
+ Professional: string;
1281
+ Enterprise: string;
1282
+ };
1283
+ label: string;
1284
+ description: string;
1285
+ };
1286
+ status: {
1287
+ type: {
1288
+ Trial: string;
1289
+ Active: string;
1290
+ PastDue: string;
1291
+ Cancelled: string;
1292
+ };
1293
+ label: string;
1294
+ description: string;
1295
+ };
1296
+ organizationId: {
1297
+ type: string;
1298
+ label: string;
1299
+ description: string;
1300
+ };
1301
+ currentPeriodStart: {
1302
+ type: string;
1303
+ label: string;
1304
+ description: string;
1305
+ };
1306
+ currentPeriodEnd: {
1307
+ type: string;
1308
+ label: string;
1309
+ description: string;
1310
+ };
1311
+ maxApps: {
1312
+ type: string;
1313
+ label: string;
1314
+ description: string;
1315
+ };
1316
+ maxWorkspaces: {
1317
+ type: string;
1318
+ label: string;
1319
+ description: string;
1320
+ };
1321
+ };
1322
+ };
1323
+ };
1324
+ };
423
1325
  ring: {
424
1326
  name: string;
425
1327
  slug: string;