spacetimedb 2.3.0 → 2.4.1
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/LICENSE.txt +2 -2
- package/dist/index.browser.mjs +64 -4
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.cjs +64 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +64 -4
- package/dist/index.mjs.map +1 -1
- package/dist/lib/autogen/types.d.ts +675 -2
- package/dist/lib/autogen/types.d.ts.map +1 -1
- package/dist/lib/schema.d.ts.map +1 -1
- package/dist/min/index.browser.mjs +1 -1
- package/dist/min/index.browser.mjs.map +1 -1
- package/dist/min/sdk/index.browser.mjs +1 -1
- package/dist/min/sdk/index.browser.mjs.map +1 -1
- package/dist/sdk/decompress.d.ts.map +1 -1
- package/dist/sdk/index.browser.mjs +64 -4
- package/dist/sdk/index.browser.mjs.map +1 -1
- package/dist/sdk/index.cjs +64 -4
- package/dist/sdk/index.cjs.map +1 -1
- package/dist/sdk/index.mjs +64 -4
- package/dist/sdk/index.mjs.map +1 -1
- package/dist/server/http.d.ts +1 -2
- package/dist/server/http.d.ts.map +1 -1
- package/dist/server/http.test-d.d.ts +2 -0
- package/dist/server/http.test-d.d.ts.map +1 -0
- package/dist/server/http_handlers.d.ts +82 -0
- package/dist/server/http_handlers.d.ts.map +1 -0
- package/dist/server/http_internal.d.ts +1 -32
- package/dist/server/http_internal.d.ts.map +1 -1
- package/dist/server/http_shared.d.ts +44 -0
- package/dist/server/http_shared.d.ts.map +1 -0
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.mjs +628 -136
- package/dist/server/index.mjs.map +1 -1
- package/dist/server/runtime.d.ts +1 -0
- package/dist/server/runtime.d.ts.map +1 -1
- package/dist/server/schema.d.ts +19 -4
- package/dist/server/schema.d.ts.map +1 -1
- package/dist/server/views.d.ts +17 -1
- package/dist/server/views.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/lib/autogen/types.ts +38 -0
- package/src/lib/schema.ts +21 -0
- package/src/sdk/decompress.ts +19 -4
- package/src/sdk/logger.ts +1 -1
- package/src/server/http.test-d.ts +80 -0
- package/src/server/http.ts +14 -2
- package/src/server/http_handlers.ts +413 -0
- package/src/server/http_internal.ts +15 -142
- package/src/server/http_shared.ts +186 -0
- package/src/server/index.ts +11 -0
- package/src/server/procedures.ts +8 -30
- package/src/server/runtime.ts +137 -1
- package/src/server/schema.ts +86 -4
- package/src/server/sys.d.ts +7 -0
- package/src/server/view.test-d.ts +22 -0
- package/src/server/views.ts +127 -0
- package/dist/lib/http_types.d.ts +0 -2
- package/dist/lib/http_types.d.ts.map +0 -1
- package/src/lib/http_types.ts +0 -8
|
@@ -596,6 +596,132 @@ export declare const Lifecycle: import("../..").SumBuilder<{
|
|
|
596
596
|
};
|
|
597
597
|
}>;
|
|
598
598
|
export type Lifecycle = __Infer<typeof Lifecycle>;
|
|
599
|
+
export declare const MethodOrAny: import("../..").SumBuilder<{
|
|
600
|
+
Any: {
|
|
601
|
+
readonly type: {};
|
|
602
|
+
readonly algebraicType: {
|
|
603
|
+
tag: "Product";
|
|
604
|
+
value: {
|
|
605
|
+
elements: [];
|
|
606
|
+
};
|
|
607
|
+
};
|
|
608
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
609
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
610
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
611
|
+
};
|
|
612
|
+
readonly Method: import("../..").SumBuilder<{
|
|
613
|
+
Get: {
|
|
614
|
+
readonly type: {};
|
|
615
|
+
readonly algebraicType: {
|
|
616
|
+
tag: "Product";
|
|
617
|
+
value: {
|
|
618
|
+
elements: [];
|
|
619
|
+
};
|
|
620
|
+
};
|
|
621
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
622
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
623
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
624
|
+
};
|
|
625
|
+
Head: {
|
|
626
|
+
readonly type: {};
|
|
627
|
+
readonly algebraicType: {
|
|
628
|
+
tag: "Product";
|
|
629
|
+
value: {
|
|
630
|
+
elements: [];
|
|
631
|
+
};
|
|
632
|
+
};
|
|
633
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
634
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
635
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
636
|
+
};
|
|
637
|
+
Post: {
|
|
638
|
+
readonly type: {};
|
|
639
|
+
readonly algebraicType: {
|
|
640
|
+
tag: "Product";
|
|
641
|
+
value: {
|
|
642
|
+
elements: [];
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
646
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
647
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
648
|
+
};
|
|
649
|
+
Put: {
|
|
650
|
+
readonly type: {};
|
|
651
|
+
readonly algebraicType: {
|
|
652
|
+
tag: "Product";
|
|
653
|
+
value: {
|
|
654
|
+
elements: [];
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
658
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
659
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
660
|
+
};
|
|
661
|
+
Delete: {
|
|
662
|
+
readonly type: {};
|
|
663
|
+
readonly algebraicType: {
|
|
664
|
+
tag: "Product";
|
|
665
|
+
value: {
|
|
666
|
+
elements: [];
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
670
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
671
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
672
|
+
};
|
|
673
|
+
Connect: {
|
|
674
|
+
readonly type: {};
|
|
675
|
+
readonly algebraicType: {
|
|
676
|
+
tag: "Product";
|
|
677
|
+
value: {
|
|
678
|
+
elements: [];
|
|
679
|
+
};
|
|
680
|
+
};
|
|
681
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
682
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
683
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
684
|
+
};
|
|
685
|
+
Options: {
|
|
686
|
+
readonly type: {};
|
|
687
|
+
readonly algebraicType: {
|
|
688
|
+
tag: "Product";
|
|
689
|
+
value: {
|
|
690
|
+
elements: [];
|
|
691
|
+
};
|
|
692
|
+
};
|
|
693
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
694
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
695
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
696
|
+
};
|
|
697
|
+
Trace: {
|
|
698
|
+
readonly type: {};
|
|
699
|
+
readonly algebraicType: {
|
|
700
|
+
tag: "Product";
|
|
701
|
+
value: {
|
|
702
|
+
elements: [];
|
|
703
|
+
};
|
|
704
|
+
};
|
|
705
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
706
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
707
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
708
|
+
};
|
|
709
|
+
Patch: {
|
|
710
|
+
readonly type: {};
|
|
711
|
+
readonly algebraicType: {
|
|
712
|
+
tag: "Product";
|
|
713
|
+
value: {
|
|
714
|
+
elements: [];
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
718
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
719
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
720
|
+
};
|
|
721
|
+
Extension: import("../..").StringBuilder;
|
|
722
|
+
}>;
|
|
723
|
+
}>;
|
|
724
|
+
export type MethodOrAny = __Infer<typeof MethodOrAny>;
|
|
599
725
|
export declare const MiscModuleExport: import("../..").SumBuilder<{
|
|
600
726
|
readonly TypeAlias: import("../..").ProductBuilder<{
|
|
601
727
|
name: import("../..").StringBuilder;
|
|
@@ -666,6 +792,140 @@ export declare const RawConstraintDefV9: import("../..").ProductBuilder<{
|
|
|
666
792
|
}>;
|
|
667
793
|
}>;
|
|
668
794
|
export type RawConstraintDefV9 = __Infer<typeof RawConstraintDefV9>;
|
|
795
|
+
export declare const RawHttpHandlerDefV10: import("../..").ProductBuilder<{
|
|
796
|
+
sourceName: import("../..").StringBuilder;
|
|
797
|
+
}>;
|
|
798
|
+
export type RawHttpHandlerDefV10 = __Infer<typeof RawHttpHandlerDefV10>;
|
|
799
|
+
export declare const RawHttpRouteDefV10: import("../..").ProductBuilder<{
|
|
800
|
+
handlerFunction: import("../..").StringBuilder;
|
|
801
|
+
readonly method: import("../..").SumBuilder<{
|
|
802
|
+
Any: {
|
|
803
|
+
readonly type: {};
|
|
804
|
+
readonly algebraicType: {
|
|
805
|
+
tag: "Product";
|
|
806
|
+
value: {
|
|
807
|
+
elements: [];
|
|
808
|
+
};
|
|
809
|
+
};
|
|
810
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
811
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
812
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
813
|
+
};
|
|
814
|
+
readonly Method: import("../..").SumBuilder<{
|
|
815
|
+
Get: {
|
|
816
|
+
readonly type: {};
|
|
817
|
+
readonly algebraicType: {
|
|
818
|
+
tag: "Product";
|
|
819
|
+
value: {
|
|
820
|
+
elements: [];
|
|
821
|
+
};
|
|
822
|
+
};
|
|
823
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
824
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
825
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
826
|
+
};
|
|
827
|
+
Head: {
|
|
828
|
+
readonly type: {};
|
|
829
|
+
readonly algebraicType: {
|
|
830
|
+
tag: "Product";
|
|
831
|
+
value: {
|
|
832
|
+
elements: [];
|
|
833
|
+
};
|
|
834
|
+
};
|
|
835
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
836
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
837
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
838
|
+
};
|
|
839
|
+
Post: {
|
|
840
|
+
readonly type: {};
|
|
841
|
+
readonly algebraicType: {
|
|
842
|
+
tag: "Product";
|
|
843
|
+
value: {
|
|
844
|
+
elements: [];
|
|
845
|
+
};
|
|
846
|
+
};
|
|
847
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
848
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
849
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
850
|
+
};
|
|
851
|
+
Put: {
|
|
852
|
+
readonly type: {};
|
|
853
|
+
readonly algebraicType: {
|
|
854
|
+
tag: "Product";
|
|
855
|
+
value: {
|
|
856
|
+
elements: [];
|
|
857
|
+
};
|
|
858
|
+
};
|
|
859
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
860
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
861
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
862
|
+
};
|
|
863
|
+
Delete: {
|
|
864
|
+
readonly type: {};
|
|
865
|
+
readonly algebraicType: {
|
|
866
|
+
tag: "Product";
|
|
867
|
+
value: {
|
|
868
|
+
elements: [];
|
|
869
|
+
};
|
|
870
|
+
};
|
|
871
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
872
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
873
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
874
|
+
};
|
|
875
|
+
Connect: {
|
|
876
|
+
readonly type: {};
|
|
877
|
+
readonly algebraicType: {
|
|
878
|
+
tag: "Product";
|
|
879
|
+
value: {
|
|
880
|
+
elements: [];
|
|
881
|
+
};
|
|
882
|
+
};
|
|
883
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
884
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
885
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
886
|
+
};
|
|
887
|
+
Options: {
|
|
888
|
+
readonly type: {};
|
|
889
|
+
readonly algebraicType: {
|
|
890
|
+
tag: "Product";
|
|
891
|
+
value: {
|
|
892
|
+
elements: [];
|
|
893
|
+
};
|
|
894
|
+
};
|
|
895
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
896
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
897
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
898
|
+
};
|
|
899
|
+
Trace: {
|
|
900
|
+
readonly type: {};
|
|
901
|
+
readonly algebraicType: {
|
|
902
|
+
tag: "Product";
|
|
903
|
+
value: {
|
|
904
|
+
elements: [];
|
|
905
|
+
};
|
|
906
|
+
};
|
|
907
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
908
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
909
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
910
|
+
};
|
|
911
|
+
Patch: {
|
|
912
|
+
readonly type: {};
|
|
913
|
+
readonly algebraicType: {
|
|
914
|
+
tag: "Product";
|
|
915
|
+
value: {
|
|
916
|
+
elements: [];
|
|
917
|
+
};
|
|
918
|
+
};
|
|
919
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
920
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
921
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
922
|
+
};
|
|
923
|
+
Extension: import("../..").StringBuilder;
|
|
924
|
+
}>;
|
|
925
|
+
}>;
|
|
926
|
+
path: import("../..").StringBuilder;
|
|
927
|
+
}>;
|
|
928
|
+
export type RawHttpRouteDefV10 = __Infer<typeof RawHttpRouteDefV10>;
|
|
669
929
|
export declare const RawIndexAlgorithm: import("../..").SumBuilder<{
|
|
670
930
|
BTree: import("../..").ArrayBuilder<import("../..").U16Builder>;
|
|
671
931
|
Hash: import("../..").ArrayBuilder<import("../..").U16Builder>;
|
|
@@ -1330,8 +1590,144 @@ export declare const RawModuleDef: import("../..").SumBuilder<{
|
|
|
1330
1590
|
sourceName: import("../..").StringBuilder;
|
|
1331
1591
|
canonicalName: import("../..").StringBuilder;
|
|
1332
1592
|
}>;
|
|
1333
|
-
}>>;
|
|
1334
|
-
}>;
|
|
1593
|
+
}>>;
|
|
1594
|
+
}>;
|
|
1595
|
+
readonly HttpHandlers: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
1596
|
+
sourceName: import("../..").StringBuilder;
|
|
1597
|
+
}>>;
|
|
1598
|
+
readonly HttpRoutes: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
1599
|
+
handlerFunction: import("../..").StringBuilder;
|
|
1600
|
+
readonly method: import("../..").SumBuilder<{
|
|
1601
|
+
Any: {
|
|
1602
|
+
readonly type: {};
|
|
1603
|
+
readonly algebraicType: {
|
|
1604
|
+
tag: "Product";
|
|
1605
|
+
value: {
|
|
1606
|
+
elements: [];
|
|
1607
|
+
};
|
|
1608
|
+
};
|
|
1609
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1610
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1611
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1612
|
+
};
|
|
1613
|
+
readonly Method: import("../..").SumBuilder<{
|
|
1614
|
+
Get: {
|
|
1615
|
+
readonly type: {};
|
|
1616
|
+
readonly algebraicType: {
|
|
1617
|
+
tag: "Product";
|
|
1618
|
+
value: {
|
|
1619
|
+
elements: [];
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1623
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1624
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1625
|
+
};
|
|
1626
|
+
Head: {
|
|
1627
|
+
readonly type: {};
|
|
1628
|
+
readonly algebraicType: {
|
|
1629
|
+
tag: "Product";
|
|
1630
|
+
value: {
|
|
1631
|
+
elements: [];
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1635
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1636
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1637
|
+
};
|
|
1638
|
+
Post: {
|
|
1639
|
+
readonly type: {};
|
|
1640
|
+
readonly algebraicType: {
|
|
1641
|
+
tag: "Product";
|
|
1642
|
+
value: {
|
|
1643
|
+
elements: [];
|
|
1644
|
+
};
|
|
1645
|
+
};
|
|
1646
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1647
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1648
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1649
|
+
};
|
|
1650
|
+
Put: {
|
|
1651
|
+
readonly type: {};
|
|
1652
|
+
readonly algebraicType: {
|
|
1653
|
+
tag: "Product";
|
|
1654
|
+
value: {
|
|
1655
|
+
elements: [];
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1659
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1660
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1661
|
+
};
|
|
1662
|
+
Delete: {
|
|
1663
|
+
readonly type: {};
|
|
1664
|
+
readonly algebraicType: {
|
|
1665
|
+
tag: "Product";
|
|
1666
|
+
value: {
|
|
1667
|
+
elements: [];
|
|
1668
|
+
};
|
|
1669
|
+
};
|
|
1670
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1671
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1672
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1673
|
+
};
|
|
1674
|
+
Connect: {
|
|
1675
|
+
readonly type: {};
|
|
1676
|
+
readonly algebraicType: {
|
|
1677
|
+
tag: "Product";
|
|
1678
|
+
value: {
|
|
1679
|
+
elements: [];
|
|
1680
|
+
};
|
|
1681
|
+
};
|
|
1682
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1683
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1684
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1685
|
+
};
|
|
1686
|
+
Options: {
|
|
1687
|
+
readonly type: {};
|
|
1688
|
+
readonly algebraicType: {
|
|
1689
|
+
tag: "Product";
|
|
1690
|
+
value: {
|
|
1691
|
+
elements: [];
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1695
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1696
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1697
|
+
};
|
|
1698
|
+
Trace: {
|
|
1699
|
+
readonly type: {};
|
|
1700
|
+
readonly algebraicType: {
|
|
1701
|
+
tag: "Product";
|
|
1702
|
+
value: {
|
|
1703
|
+
elements: [];
|
|
1704
|
+
};
|
|
1705
|
+
};
|
|
1706
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1707
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1708
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1709
|
+
};
|
|
1710
|
+
Patch: {
|
|
1711
|
+
readonly type: {};
|
|
1712
|
+
readonly algebraicType: {
|
|
1713
|
+
tag: "Product";
|
|
1714
|
+
value: {
|
|
1715
|
+
elements: [];
|
|
1716
|
+
};
|
|
1717
|
+
};
|
|
1718
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
1719
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
1720
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
1721
|
+
};
|
|
1722
|
+
Extension: import("../..").StringBuilder;
|
|
1723
|
+
}>;
|
|
1724
|
+
}>;
|
|
1725
|
+
path: import("../..").StringBuilder;
|
|
1726
|
+
}>>;
|
|
1727
|
+
readonly ViewPrimaryKeys: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
1728
|
+
viewSourceName: import("../..").StringBuilder;
|
|
1729
|
+
columns: import("../..").ArrayBuilder<import("../..").StringBuilder>;
|
|
1730
|
+
}>>;
|
|
1335
1731
|
}>>;
|
|
1336
1732
|
}>;
|
|
1337
1733
|
}>;
|
|
@@ -1614,6 +2010,142 @@ export declare const RawModuleDefV10: import("../..").ProductBuilder<{
|
|
|
1614
2010
|
}>;
|
|
1615
2011
|
}>>;
|
|
1616
2012
|
}>;
|
|
2013
|
+
readonly HttpHandlers: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2014
|
+
sourceName: import("../..").StringBuilder;
|
|
2015
|
+
}>>;
|
|
2016
|
+
readonly HttpRoutes: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2017
|
+
handlerFunction: import("../..").StringBuilder;
|
|
2018
|
+
readonly method: import("../..").SumBuilder<{
|
|
2019
|
+
Any: {
|
|
2020
|
+
readonly type: {};
|
|
2021
|
+
readonly algebraicType: {
|
|
2022
|
+
tag: "Product";
|
|
2023
|
+
value: {
|
|
2024
|
+
elements: [];
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2028
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2029
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2030
|
+
};
|
|
2031
|
+
readonly Method: import("../..").SumBuilder<{
|
|
2032
|
+
Get: {
|
|
2033
|
+
readonly type: {};
|
|
2034
|
+
readonly algebraicType: {
|
|
2035
|
+
tag: "Product";
|
|
2036
|
+
value: {
|
|
2037
|
+
elements: [];
|
|
2038
|
+
};
|
|
2039
|
+
};
|
|
2040
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2041
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2042
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2043
|
+
};
|
|
2044
|
+
Head: {
|
|
2045
|
+
readonly type: {};
|
|
2046
|
+
readonly algebraicType: {
|
|
2047
|
+
tag: "Product";
|
|
2048
|
+
value: {
|
|
2049
|
+
elements: [];
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2053
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2054
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2055
|
+
};
|
|
2056
|
+
Post: {
|
|
2057
|
+
readonly type: {};
|
|
2058
|
+
readonly algebraicType: {
|
|
2059
|
+
tag: "Product";
|
|
2060
|
+
value: {
|
|
2061
|
+
elements: [];
|
|
2062
|
+
};
|
|
2063
|
+
};
|
|
2064
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2065
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2066
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2067
|
+
};
|
|
2068
|
+
Put: {
|
|
2069
|
+
readonly type: {};
|
|
2070
|
+
readonly algebraicType: {
|
|
2071
|
+
tag: "Product";
|
|
2072
|
+
value: {
|
|
2073
|
+
elements: [];
|
|
2074
|
+
};
|
|
2075
|
+
};
|
|
2076
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2077
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2078
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2079
|
+
};
|
|
2080
|
+
Delete: {
|
|
2081
|
+
readonly type: {};
|
|
2082
|
+
readonly algebraicType: {
|
|
2083
|
+
tag: "Product";
|
|
2084
|
+
value: {
|
|
2085
|
+
elements: [];
|
|
2086
|
+
};
|
|
2087
|
+
};
|
|
2088
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2089
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2090
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2091
|
+
};
|
|
2092
|
+
Connect: {
|
|
2093
|
+
readonly type: {};
|
|
2094
|
+
readonly algebraicType: {
|
|
2095
|
+
tag: "Product";
|
|
2096
|
+
value: {
|
|
2097
|
+
elements: [];
|
|
2098
|
+
};
|
|
2099
|
+
};
|
|
2100
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2101
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2102
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2103
|
+
};
|
|
2104
|
+
Options: {
|
|
2105
|
+
readonly type: {};
|
|
2106
|
+
readonly algebraicType: {
|
|
2107
|
+
tag: "Product";
|
|
2108
|
+
value: {
|
|
2109
|
+
elements: [];
|
|
2110
|
+
};
|
|
2111
|
+
};
|
|
2112
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2113
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2114
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2115
|
+
};
|
|
2116
|
+
Trace: {
|
|
2117
|
+
readonly type: {};
|
|
2118
|
+
readonly algebraicType: {
|
|
2119
|
+
tag: "Product";
|
|
2120
|
+
value: {
|
|
2121
|
+
elements: [];
|
|
2122
|
+
};
|
|
2123
|
+
};
|
|
2124
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2125
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2126
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2127
|
+
};
|
|
2128
|
+
Patch: {
|
|
2129
|
+
readonly type: {};
|
|
2130
|
+
readonly algebraicType: {
|
|
2131
|
+
tag: "Product";
|
|
2132
|
+
value: {
|
|
2133
|
+
elements: [];
|
|
2134
|
+
};
|
|
2135
|
+
};
|
|
2136
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2137
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2138
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2139
|
+
};
|
|
2140
|
+
Extension: import("../..").StringBuilder;
|
|
2141
|
+
}>;
|
|
2142
|
+
}>;
|
|
2143
|
+
path: import("../..").StringBuilder;
|
|
2144
|
+
}>>;
|
|
2145
|
+
readonly ViewPrimaryKeys: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2146
|
+
viewSourceName: import("../..").StringBuilder;
|
|
2147
|
+
columns: import("../..").ArrayBuilder<import("../..").StringBuilder>;
|
|
2148
|
+
}>>;
|
|
1617
2149
|
}>>;
|
|
1618
2150
|
}>;
|
|
1619
2151
|
export type RawModuleDefV10 = __Infer<typeof RawModuleDefV10>;
|
|
@@ -1894,6 +2426,142 @@ export declare const RawModuleDefV10Section: import("../..").SumBuilder<{
|
|
|
1894
2426
|
}>;
|
|
1895
2427
|
}>>;
|
|
1896
2428
|
}>;
|
|
2429
|
+
readonly HttpHandlers: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2430
|
+
sourceName: import("../..").StringBuilder;
|
|
2431
|
+
}>>;
|
|
2432
|
+
readonly HttpRoutes: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2433
|
+
handlerFunction: import("../..").StringBuilder;
|
|
2434
|
+
readonly method: import("../..").SumBuilder<{
|
|
2435
|
+
Any: {
|
|
2436
|
+
readonly type: {};
|
|
2437
|
+
readonly algebraicType: {
|
|
2438
|
+
tag: "Product";
|
|
2439
|
+
value: {
|
|
2440
|
+
elements: [];
|
|
2441
|
+
};
|
|
2442
|
+
};
|
|
2443
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2444
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2445
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2446
|
+
};
|
|
2447
|
+
readonly Method: import("../..").SumBuilder<{
|
|
2448
|
+
Get: {
|
|
2449
|
+
readonly type: {};
|
|
2450
|
+
readonly algebraicType: {
|
|
2451
|
+
tag: "Product";
|
|
2452
|
+
value: {
|
|
2453
|
+
elements: [];
|
|
2454
|
+
};
|
|
2455
|
+
};
|
|
2456
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2457
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2458
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2459
|
+
};
|
|
2460
|
+
Head: {
|
|
2461
|
+
readonly type: {};
|
|
2462
|
+
readonly algebraicType: {
|
|
2463
|
+
tag: "Product";
|
|
2464
|
+
value: {
|
|
2465
|
+
elements: [];
|
|
2466
|
+
};
|
|
2467
|
+
};
|
|
2468
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2469
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2470
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2471
|
+
};
|
|
2472
|
+
Post: {
|
|
2473
|
+
readonly type: {};
|
|
2474
|
+
readonly algebraicType: {
|
|
2475
|
+
tag: "Product";
|
|
2476
|
+
value: {
|
|
2477
|
+
elements: [];
|
|
2478
|
+
};
|
|
2479
|
+
};
|
|
2480
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2481
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2482
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2483
|
+
};
|
|
2484
|
+
Put: {
|
|
2485
|
+
readonly type: {};
|
|
2486
|
+
readonly algebraicType: {
|
|
2487
|
+
tag: "Product";
|
|
2488
|
+
value: {
|
|
2489
|
+
elements: [];
|
|
2490
|
+
};
|
|
2491
|
+
};
|
|
2492
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2493
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2494
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2495
|
+
};
|
|
2496
|
+
Delete: {
|
|
2497
|
+
readonly type: {};
|
|
2498
|
+
readonly algebraicType: {
|
|
2499
|
+
tag: "Product";
|
|
2500
|
+
value: {
|
|
2501
|
+
elements: [];
|
|
2502
|
+
};
|
|
2503
|
+
};
|
|
2504
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2505
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2506
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2507
|
+
};
|
|
2508
|
+
Connect: {
|
|
2509
|
+
readonly type: {};
|
|
2510
|
+
readonly algebraicType: {
|
|
2511
|
+
tag: "Product";
|
|
2512
|
+
value: {
|
|
2513
|
+
elements: [];
|
|
2514
|
+
};
|
|
2515
|
+
};
|
|
2516
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2517
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2518
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2519
|
+
};
|
|
2520
|
+
Options: {
|
|
2521
|
+
readonly type: {};
|
|
2522
|
+
readonly algebraicType: {
|
|
2523
|
+
tag: "Product";
|
|
2524
|
+
value: {
|
|
2525
|
+
elements: [];
|
|
2526
|
+
};
|
|
2527
|
+
};
|
|
2528
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2529
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2530
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2531
|
+
};
|
|
2532
|
+
Trace: {
|
|
2533
|
+
readonly type: {};
|
|
2534
|
+
readonly algebraicType: {
|
|
2535
|
+
tag: "Product";
|
|
2536
|
+
value: {
|
|
2537
|
+
elements: [];
|
|
2538
|
+
};
|
|
2539
|
+
};
|
|
2540
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2541
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2542
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2543
|
+
};
|
|
2544
|
+
Patch: {
|
|
2545
|
+
readonly type: {};
|
|
2546
|
+
readonly algebraicType: {
|
|
2547
|
+
tag: "Product";
|
|
2548
|
+
value: {
|
|
2549
|
+
elements: [];
|
|
2550
|
+
};
|
|
2551
|
+
};
|
|
2552
|
+
optional(): import("../..").OptionBuilder</*elided*/ any>;
|
|
2553
|
+
serialize(writer: import("../binary_writer").default, value: {}): void;
|
|
2554
|
+
deserialize(reader: import("../binary_reader").default): {};
|
|
2555
|
+
};
|
|
2556
|
+
Extension: import("../..").StringBuilder;
|
|
2557
|
+
}>;
|
|
2558
|
+
}>;
|
|
2559
|
+
path: import("../..").StringBuilder;
|
|
2560
|
+
}>>;
|
|
2561
|
+
readonly ViewPrimaryKeys: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|
|
2562
|
+
viewSourceName: import("../..").StringBuilder;
|
|
2563
|
+
columns: import("../..").ArrayBuilder<import("../..").StringBuilder>;
|
|
2564
|
+
}>>;
|
|
1897
2565
|
}>;
|
|
1898
2566
|
export type RawModuleDefV10Section = __Infer<typeof RawModuleDefV10Section>;
|
|
1899
2567
|
export declare const RawModuleDefV8: import("../..").ProductBuilder<{
|
|
@@ -2625,6 +3293,11 @@ export declare const RawViewDefV9: import("../..").ProductBuilder<{
|
|
|
2625
3293
|
readonly returnType: __TypeBuilder<__AlgebraicTypeType, __AlgebraicTypeType>;
|
|
2626
3294
|
}>;
|
|
2627
3295
|
export type RawViewDefV9 = __Infer<typeof RawViewDefV9>;
|
|
3296
|
+
export declare const RawViewPrimaryKeyDefV10: import("../..").ProductBuilder<{
|
|
3297
|
+
viewSourceName: import("../..").StringBuilder;
|
|
3298
|
+
columns: import("../..").ArrayBuilder<import("../..").StringBuilder>;
|
|
3299
|
+
}>;
|
|
3300
|
+
export type RawViewPrimaryKeyDefV10 = __Infer<typeof RawViewPrimaryKeyDefV10>;
|
|
2628
3301
|
export declare const ReducerDef: import("../..").ProductBuilder<{
|
|
2629
3302
|
name: import("../..").StringBuilder;
|
|
2630
3303
|
readonly args: import("../..").ArrayBuilder<import("../..").ProductBuilder<{
|