@@ -632,6 +632,12 @@ test('typegen: typescript', async () => {
632
632
user_name: string | null
633
633
user_status: Database["public"]["Enums"]["user_status"] | null
634
634
}
635
+ SetofOptions: {
636
+ from: "*"
637
+ to: "user_todos_summary_view"
638
+ isOneToOne: true
639
+ isSetofReturn: true
640
+ }
635
641
}
636
642
get_todos_by_matview: {
637
643
Args: { "": unknown }
@@ -685,6 +691,12 @@ test('typegen: typescript', async () => {
685
691
id: number
686
692
"user-id": number
687
693
}[]
694
+ SetofOptions: {
695
+ from: "*"
696
+ to: "todos"
697
+ isOneToOne: false
698
+ isSetofReturn: true
699
+ }
688
700
}
689
701
get_todos_setof_rows:
690
702
| {
@@ -785,6 +797,12 @@ test('typegen: typescript', async () => {
785
797
name: string | null
786
798
status: Database["public"]["Enums"]["user_status"] | null
787
799
}[]
800
+ SetofOptions: {
801
+ from: "*"
802
+ to: "users"
803
+ isOneToOne: false
804
+ isSetofReturn: true
805
+ }
788
806
}
789
807
| {
790
808
Args: { completed: boolean; todo_id: number }
@@ -837,6 +855,12 @@ test('typegen: typescript', async () => {
837
855
id: number
838
856
"user-id": number
839
857
}[]
858
+ SetofOptions: {
859
+ from: "*"
860
+ to: "todos"
861
+ isOneToOne: false
862
+ isSetofReturn: true
863
+ }
840
864
}
841
865
test_internal_query: { Args: never; Returns: undefined }
842
866
test_unnamed_row_composite: {
@@ -863,6 +887,12 @@ test('typegen: typescript', async () => {
863
887
id: number
864
888
"user-id": number
865
889
}[]
890
+ SetofOptions: {
891
+ from: "*"
892
+ to: "todos"
893
+ isOneToOne: false
894
+ isSetofReturn: true
895
+ }
866
896
}
867
897
| {
868
898
Args: { "": Database["public"]["Tables"]["todos"]["Row"] }
@@ -1712,6 +1742,12 @@ test('typegen w/ one-to-one relationships', async () => {
1712
1742
user_name: string | null
1713
1743
user_status: Database["public"]["Enums"]["user_status"] | null
1714
1744
}
1745
+ SetofOptions: {
1746
+ from: "*"
1747
+ to: "user_todos_summary_view"
1748
+ isOneToOne: true
1749
+ isSetofReturn: true
1750
+ }
1715
1751
}
1716
1752
get_todos_by_matview: {
1717
1753
Args: { "": unknown }
@@ -1765,6 +1801,12 @@ test('typegen w/ one-to-one relationships', async () => {
1765
1801
id: number
1766
1802
"user-id": number
1767
1803
}[]
1804
+ SetofOptions: {
1805
+ from: "*"
1806
+ to: "todos"
1807
+ isOneToOne: false
1808
+ isSetofReturn: true
1809
+ }
1768
1810
}
1769
1811
get_todos_setof_rows:
1770
1812
| {
@@ -1865,6 +1907,12 @@ test('typegen w/ one-to-one relationships', async () => {
1865
1907
name: string | null
1866
1908
status: Database["public"]["Enums"]["user_status"] | null
1867
1909
}[]
1910
+ SetofOptions: {
1911
+ from: "*"
1912
+ to: "users"
1913
+ isOneToOne: false
1914
+ isSetofReturn: true
1915
+ }
1868
1916
}
1869
1917
| {
1870
1918
Args: { completed: boolean; todo_id: number }
@@ -1917,6 +1965,12 @@ test('typegen w/ one-to-one relationships', async () => {
1917
1965
id: number
1918
1966
"user-id": number
1919
1967
}[]
1968
+ SetofOptions: {
1969
+ from: "*"
1970
+ to: "todos"
1971
+ isOneToOne: false
1972
+ isSetofReturn: true
1973
+ }
1920
1974
}
1921
1975
test_internal_query: { Args: never; Returns: undefined }
1922
1976
test_unnamed_row_composite: {
@@ -1943,6 +1997,12 @@ test('typegen w/ one-to-one relationships', async () => {
1943
1997
id: number
1944
1998
"user-id": number
1945
1999
}[]
2000
+ SetofOptions: {
2001
+ from: "*"
2002
+ to: "todos"
2003
+ isOneToOne: false
2004
+ isSetofReturn: true
2005
+ }
1946
2006
}
1947
2007
| {
1948
2008
Args: { "": Database["public"]["Tables"]["todos"]["Row"] }
@@ -2792,6 +2852,12 @@ test('typegen: typescript w/ one-to-one relationships', async () => {
2792
2852
user_name: string | null
2793
2853
user_status: Database["public"]["Enums"]["user_status"] | null
2794
2854
}
2855
+ SetofOptions: {
2856
+ from: "*"
2857
+ to: "user_todos_summary_view"
2858
+ isOneToOne: true
2859
+ isSetofReturn: true
2860
+ }
2795
2861
}
2796
2862
get_todos_by_matview: {
2797
2863
Args: { "": unknown }
@@ -2845,6 +2911,12 @@ test('typegen: typescript w/ one-to-one relationships', async () => {
2845
2911
id: number
2846
2912
"user-id": number
2847
2913
}[]
2914
+ SetofOptions: {
2915
+ from: "*"
2916
+ to: "todos"
2917
+ isOneToOne: false
2918
+ isSetofReturn: true
2919
+ }
2848
2920
}
2849
2921
get_todos_setof_rows:
2850
2922
| {
@@ -2945,6 +3017,12 @@ test('typegen: typescript w/ one-to-one relationships', async () => {
2945
3017
name: string | null
2946
3018
status: Database["public"]["Enums"]["user_status"] | null
2947
3019
}[]
3020
+ SetofOptions: {
3021
+ from: "*"
3022
+ to: "users"
3023
+ isOneToOne: false
3024
+ isSetofReturn: true
3025
+ }
2948
3026
}
2949
3027
| {
2950
3028
Args: { completed: boolean; todo_id: number }
@@ -2997,6 +3075,12 @@ test('typegen: typescript w/ one-to-one relationships', async () => {
2997
3075
id: number
2998
3076
"user-id": number
2999
3077
}[]
3078
+ SetofOptions: {
3079
+ from: "*"
3080
+ to: "todos"
3081
+ isOneToOne: false
3082
+ isSetofReturn: true
3083
+ }
3000
3084
}
3001
3085
test_internal_query: { Args: never; Returns: undefined }
3002
3086
test_unnamed_row_composite: {
@@ -3023,6 +3107,12 @@ test('typegen: typescript w/ one-to-one relationships', async () => {
3023
3107
id: number
3024
3108
"user-id": number
3025
3109
}[]
3110
+ SetofOptions: {
3111
+ from: "*"
3112
+ to: "todos"
3113
+ isOneToOne: false
3114
+ isSetofReturn: true
3115
+ }
3026
3116
}
3027
3117
| {
3028
3118
Args: { "": Database["public"]["Tables"]["todos"]["Row"] }
@@ -3877,6 +3967,12 @@ test('typegen: typescript w/ postgrestVersion', async () => {
3877
3967
user_name: string | null
3878
3968
user_status: Database["public"]["Enums"]["user_status"] | null
3879
3969
}
3970
+ SetofOptions: {
3971
+ from: "*"
3972
+ to: "user_todos_summary_view"
3973
+ isOneToOne: true
3974
+ isSetofReturn: true
3975
+ }
3880
3976
}
3881
3977
get_todos_by_matview: {
3882
3978
Args: { "": unknown }
@@ -3930,6 +4026,12 @@ test('typegen: typescript w/ postgrestVersion', async () => {
3930
4026
id: number
3931
4027
"user-id": number
3932
4028
}[]
4029
+ SetofOptions: {
4030
+ from: "*"
4031
+ to: "todos"
4032
+ isOneToOne: false
4033
+ isSetofReturn: true
4034
+ }
3933
4035
}
3934
4036
get_todos_setof_rows:
3935
4037
| {
@@ -4030,6 +4132,12 @@ test('typegen: typescript w/ postgrestVersion', async () => {
4030
4132
name: string | null
4031
4133
status: Database["public"]["Enums"]["user_status"] | null
4032
4134
}[]
4135
+ SetofOptions: {
4136
+ from: "*"
4137
+ to: "users"
4138
+ isOneToOne: false
4139
+ isSetofReturn: true
4140
+ }
4033
4141
}
4034
4142
| {
4035
4143
Args: { completed: boolean; todo_id: number }
@@ -4082,6 +4190,12 @@ test('typegen: typescript w/ postgrestVersion', async () => {
4082
4190
id: number
4083
4191
"user-id": number
4084
4192
}[]
4193
+ SetofOptions: {
4194
+ from: "*"
4195
+ to: "todos"
4196
+ isOneToOne: false
4197
+ isSetofReturn: true
4198
+ }
4085
4199
}
4086
4200
test_internal_query: { Args: never; Returns: undefined }
4087
4201
test_unnamed_row_composite: {
@@ -4108,6 +4222,12 @@ test('typegen: typescript w/ postgrestVersion', async () => {
4108
4222
id: number
4109
4223
"user-id": number
4110
4224
}[]
4225
+ SetofOptions: {
4226
+ from: "*"
4227
+ to: "todos"
4228
+ isOneToOne: false
4229
+ isSetofReturn: true
4230
+ }
4111
4231
}
4112
4232
| {
4113
4233
Args: { "": Database["public"]["Tables"]["todos"]["Row"] }
0 commit comments