@vrplatform/graphql 1.1.1 → 1.1.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.
@@ -1655,6 +1655,496 @@ export interface account_updates {
1655
1655
  where: account_bool_exp;
1656
1656
  }
1657
1657
 
1658
+ export interface action_aggregate_bool_exp {
1659
+ bool_and?: InputMaybe<action_aggregate_bool_exp_bool_and>;
1660
+ bool_or?: InputMaybe<action_aggregate_bool_exp_bool_or>;
1661
+ count?: InputMaybe<action_aggregate_bool_exp_count>;
1662
+ }
1663
+
1664
+ export interface action_aggregate_bool_exp_bool_and {
1665
+ arguments: action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns;
1666
+ distinct?: InputMaybe<Scalars["Boolean"]>;
1667
+ filter?: InputMaybe<action_bool_exp>;
1668
+ predicate: Boolean_comparison_exp;
1669
+ }
1670
+
1671
+ export interface action_aggregate_bool_exp_bool_or {
1672
+ arguments: action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns;
1673
+ distinct?: InputMaybe<Scalars["Boolean"]>;
1674
+ filter?: InputMaybe<action_bool_exp>;
1675
+ predicate: Boolean_comparison_exp;
1676
+ }
1677
+
1678
+ export interface action_aggregate_bool_exp_count {
1679
+ arguments?: InputMaybe<Array<action_select_column>>;
1680
+ distinct?: InputMaybe<Scalars["Boolean"]>;
1681
+ filter?: InputMaybe<action_bool_exp>;
1682
+ predicate: Int_comparison_exp;
1683
+ }
1684
+
1685
+ /** order by aggregate values of table "core.action" */
1686
+ export interface action_aggregate_order_by {
1687
+ avg?: InputMaybe<action_avg_order_by>;
1688
+ count?: InputMaybe<order_by>;
1689
+ max?: InputMaybe<action_max_order_by>;
1690
+ min?: InputMaybe<action_min_order_by>;
1691
+ stddev?: InputMaybe<action_stddev_order_by>;
1692
+ stddev_pop?: InputMaybe<action_stddev_pop_order_by>;
1693
+ stddev_samp?: InputMaybe<action_stddev_samp_order_by>;
1694
+ sum?: InputMaybe<action_sum_order_by>;
1695
+ var_pop?: InputMaybe<action_var_pop_order_by>;
1696
+ var_samp?: InputMaybe<action_var_samp_order_by>;
1697
+ variance?: InputMaybe<action_variance_order_by>;
1698
+ }
1699
+
1700
+ /** append existing jsonb value of filtered columns with new jsonb value */
1701
+ export interface action_append_input {
1702
+ inputJson?: InputMaybe<Scalars["jsonb"]>;
1703
+ outputJson?: InputMaybe<Scalars["jsonb"]>;
1704
+ refs?: InputMaybe<Scalars["jsonb"]>;
1705
+ }
1706
+
1707
+ /** input type for inserting array relation for remote table "core.action" */
1708
+ export interface action_arr_rel_insert_input {
1709
+ data: Array<action_insert_input>;
1710
+ /** upsert condition */
1711
+ on_conflict?: InputMaybe<action_on_conflict>;
1712
+ }
1713
+
1714
+ /** order by avg() on columns of table "core.action" */
1715
+ export interface action_avg_order_by {
1716
+ jobIndex?: InputMaybe<order_by>;
1717
+ }
1718
+
1719
+ /** Boolean expression to filter rows from the table "core.action". All fields are combined with a logical 'AND'. */
1720
+ export interface action_bool_exp {
1721
+ _and?: InputMaybe<Array<action_bool_exp>>;
1722
+ _not?: InputMaybe<action_bool_exp>;
1723
+ _or?: InputMaybe<Array<action_bool_exp>>;
1724
+ appId?: InputMaybe<String_comparison_exp>;
1725
+ automationId?: InputMaybe<uuid_comparison_exp>;
1726
+ changes?: InputMaybe<change_bool_exp>;
1727
+ changes_aggregate?: InputMaybe<change_aggregate_bool_exp>;
1728
+ connection?: InputMaybe<connection_bool_exp>;
1729
+ connectionId?: InputMaybe<uuid_comparison_exp>;
1730
+ createdAt?: InputMaybe<timestamptz_comparison_exp>;
1731
+ id?: InputMaybe<uuid_comparison_exp>;
1732
+ inputJson?: InputMaybe<jsonb_comparison_exp>;
1733
+ isCurrent?: InputMaybe<Boolean_comparison_exp>;
1734
+ jobId?: InputMaybe<uuid_comparison_exp>;
1735
+ jobIndex?: InputMaybe<Int_comparison_exp>;
1736
+ jobPageId?: InputMaybe<uuid_comparison_exp>;
1737
+ jobPlanId?: InputMaybe<uuid_comparison_exp>;
1738
+ objectId?: InputMaybe<uuid_comparison_exp>;
1739
+ opId?: InputMaybe<uuid_comparison_exp>;
1740
+ outputJson?: InputMaybe<jsonb_comparison_exp>;
1741
+ previousActions?: InputMaybe<action_bool_exp>;
1742
+ previousActions3?: InputMaybe<action_bool_exp>;
1743
+ previousActions3_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1744
+ previousActionsByType?: InputMaybe<action_bool_exp>;
1745
+ previousActionsByType_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1746
+ previousActions_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1747
+ refs?: InputMaybe<jsonb_comparison_exp>;
1748
+ schemaId?: InputMaybe<uuid_comparison_exp>;
1749
+ source?: InputMaybe<source_bool_exp>;
1750
+ sourceId?: InputMaybe<uuid_comparison_exp>;
1751
+ status?: InputMaybe<String_comparison_exp>;
1752
+ tenant?: InputMaybe<tenant_bool_exp>;
1753
+ tenantId?: InputMaybe<uuid_comparison_exp>;
1754
+ title?: InputMaybe<String_comparison_exp>;
1755
+ type?: InputMaybe<String_comparison_exp>;
1756
+ uniqueRef?: InputMaybe<String_comparison_exp>;
1757
+ updatedAt?: InputMaybe<timestamptz_comparison_exp>;
1758
+ }
1759
+
1760
+ /** unique or primary key constraints on table "core.action" */
1761
+ export type action_constraint =
1762
+ /** unique or primary key constraint on columns "id" */
1763
+ "action_pkey";
1764
+
1765
+ /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
1766
+ export interface action_delete_at_path_input {
1767
+ inputJson?: InputMaybe<Array<Scalars["String"]>>;
1768
+ outputJson?: InputMaybe<Array<Scalars["String"]>>;
1769
+ refs?: InputMaybe<Array<Scalars["String"]>>;
1770
+ }
1771
+
1772
+ /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
1773
+ export interface action_delete_elem_input {
1774
+ inputJson?: InputMaybe<Scalars["Int"]>;
1775
+ outputJson?: InputMaybe<Scalars["Int"]>;
1776
+ refs?: InputMaybe<Scalars["Int"]>;
1777
+ }
1778
+
1779
+ /** delete key/value pair or string element. key/value pairs are matched based on their key value */
1780
+ export interface action_delete_key_input {
1781
+ inputJson?: InputMaybe<Scalars["String"]>;
1782
+ outputJson?: InputMaybe<Scalars["String"]>;
1783
+ refs?: InputMaybe<Scalars["String"]>;
1784
+ }
1785
+
1786
+ /** input type for incrementing numeric columns in table "core.action" */
1787
+ export interface action_inc_input {
1788
+ jobIndex?: InputMaybe<Scalars["Int"]>;
1789
+ }
1790
+
1791
+ /** input type for inserting data into table "core.action" */
1792
+ export interface action_insert_input {
1793
+ appId?: InputMaybe<Scalars["String"]>;
1794
+ automationId?: InputMaybe<Scalars["uuid"]>;
1795
+ changes?: InputMaybe<change_arr_rel_insert_input>;
1796
+ connection?: InputMaybe<connection_obj_rel_insert_input>;
1797
+ connectionId?: InputMaybe<Scalars["uuid"]>;
1798
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
1799
+ id?: InputMaybe<Scalars["uuid"]>;
1800
+ inputJson?: InputMaybe<Scalars["jsonb"]>;
1801
+ isCurrent?: InputMaybe<Scalars["Boolean"]>;
1802
+ jobId?: InputMaybe<Scalars["uuid"]>;
1803
+ jobIndex?: InputMaybe<Scalars["Int"]>;
1804
+ jobPageId?: InputMaybe<Scalars["uuid"]>;
1805
+ jobPlanId?: InputMaybe<Scalars["uuid"]>;
1806
+ objectId?: InputMaybe<Scalars["uuid"]>;
1807
+ opId?: InputMaybe<Scalars["uuid"]>;
1808
+ outputJson?: InputMaybe<Scalars["jsonb"]>;
1809
+ previousActions?: InputMaybe<action_arr_rel_insert_input>;
1810
+ previousActions3?: InputMaybe<action_arr_rel_insert_input>;
1811
+ previousActionsByType?: InputMaybe<action_arr_rel_insert_input>;
1812
+ refs?: InputMaybe<Scalars["jsonb"]>;
1813
+ schemaId?: InputMaybe<Scalars["uuid"]>;
1814
+ source?: InputMaybe<source_obj_rel_insert_input>;
1815
+ sourceId?: InputMaybe<Scalars["uuid"]>;
1816
+ status?: InputMaybe<Scalars["String"]>;
1817
+ tenant?: InputMaybe<tenant_obj_rel_insert_input>;
1818
+ tenantId?: InputMaybe<Scalars["uuid"]>;
1819
+ title?: InputMaybe<Scalars["String"]>;
1820
+ type?: InputMaybe<Scalars["String"]>;
1821
+ uniqueRef?: InputMaybe<Scalars["String"]>;
1822
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
1823
+ }
1824
+
1825
+ /** order by max() on columns of table "core.action" */
1826
+ export interface action_max_order_by {
1827
+ appId?: InputMaybe<order_by>;
1828
+ automationId?: InputMaybe<order_by>;
1829
+ connectionId?: InputMaybe<order_by>;
1830
+ createdAt?: InputMaybe<order_by>;
1831
+ id?: InputMaybe<order_by>;
1832
+ jobId?: InputMaybe<order_by>;
1833
+ jobIndex?: InputMaybe<order_by>;
1834
+ jobPageId?: InputMaybe<order_by>;
1835
+ jobPlanId?: InputMaybe<order_by>;
1836
+ objectId?: InputMaybe<order_by>;
1837
+ opId?: InputMaybe<order_by>;
1838
+ schemaId?: InputMaybe<order_by>;
1839
+ sourceId?: InputMaybe<order_by>;
1840
+ status?: InputMaybe<order_by>;
1841
+ tenantId?: InputMaybe<order_by>;
1842
+ title?: InputMaybe<order_by>;
1843
+ type?: InputMaybe<order_by>;
1844
+ uniqueRef?: InputMaybe<order_by>;
1845
+ updatedAt?: InputMaybe<order_by>;
1846
+ }
1847
+
1848
+ /** order by min() on columns of table "core.action" */
1849
+ export interface action_min_order_by {
1850
+ appId?: InputMaybe<order_by>;
1851
+ automationId?: InputMaybe<order_by>;
1852
+ connectionId?: InputMaybe<order_by>;
1853
+ createdAt?: InputMaybe<order_by>;
1854
+ id?: InputMaybe<order_by>;
1855
+ jobId?: InputMaybe<order_by>;
1856
+ jobIndex?: InputMaybe<order_by>;
1857
+ jobPageId?: InputMaybe<order_by>;
1858
+ jobPlanId?: InputMaybe<order_by>;
1859
+ objectId?: InputMaybe<order_by>;
1860
+ opId?: InputMaybe<order_by>;
1861
+ schemaId?: InputMaybe<order_by>;
1862
+ sourceId?: InputMaybe<order_by>;
1863
+ status?: InputMaybe<order_by>;
1864
+ tenantId?: InputMaybe<order_by>;
1865
+ title?: InputMaybe<order_by>;
1866
+ type?: InputMaybe<order_by>;
1867
+ uniqueRef?: InputMaybe<order_by>;
1868
+ updatedAt?: InputMaybe<order_by>;
1869
+ }
1870
+
1871
+ /** on_conflict condition type for table "core.action" */
1872
+ export interface action_on_conflict {
1873
+ constraint: action_constraint;
1874
+ update_columns?: Array<action_update_column>;
1875
+ where?: InputMaybe<action_bool_exp>;
1876
+ }
1877
+
1878
+ /** Ordering options when selecting data from "core.action". */
1879
+ export interface action_order_by {
1880
+ appId?: InputMaybe<order_by>;
1881
+ automationId?: InputMaybe<order_by>;
1882
+ changes_aggregate?: InputMaybe<change_aggregate_order_by>;
1883
+ connection?: InputMaybe<connection_order_by>;
1884
+ connectionId?: InputMaybe<order_by>;
1885
+ createdAt?: InputMaybe<order_by>;
1886
+ id?: InputMaybe<order_by>;
1887
+ inputJson?: InputMaybe<order_by>;
1888
+ isCurrent?: InputMaybe<order_by>;
1889
+ jobId?: InputMaybe<order_by>;
1890
+ jobIndex?: InputMaybe<order_by>;
1891
+ jobPageId?: InputMaybe<order_by>;
1892
+ jobPlanId?: InputMaybe<order_by>;
1893
+ objectId?: InputMaybe<order_by>;
1894
+ opId?: InputMaybe<order_by>;
1895
+ outputJson?: InputMaybe<order_by>;
1896
+ previousActions3_aggregate?: InputMaybe<action_aggregate_order_by>;
1897
+ previousActionsByType_aggregate?: InputMaybe<action_aggregate_order_by>;
1898
+ previousActions_aggregate?: InputMaybe<action_aggregate_order_by>;
1899
+ refs?: InputMaybe<order_by>;
1900
+ schemaId?: InputMaybe<order_by>;
1901
+ source?: InputMaybe<source_order_by>;
1902
+ sourceId?: InputMaybe<order_by>;
1903
+ status?: InputMaybe<order_by>;
1904
+ tenant?: InputMaybe<tenant_order_by>;
1905
+ tenantId?: InputMaybe<order_by>;
1906
+ title?: InputMaybe<order_by>;
1907
+ type?: InputMaybe<order_by>;
1908
+ uniqueRef?: InputMaybe<order_by>;
1909
+ updatedAt?: InputMaybe<order_by>;
1910
+ }
1911
+
1912
+ /** primary key columns input for table: core.action */
1913
+ export interface action_pk_columns_input {
1914
+ id: Scalars["uuid"];
1915
+ }
1916
+
1917
+ /** prepend existing jsonb value of filtered columns with new jsonb value */
1918
+ export interface action_prepend_input {
1919
+ inputJson?: InputMaybe<Scalars["jsonb"]>;
1920
+ outputJson?: InputMaybe<Scalars["jsonb"]>;
1921
+ refs?: InputMaybe<Scalars["jsonb"]>;
1922
+ }
1923
+
1924
+ /** select columns of table "core.action" */
1925
+ export type action_select_column =
1926
+ /** column name */
1927
+ | "appId"
1928
+ /** column name */
1929
+ | "automationId"
1930
+ /** column name */
1931
+ | "connectionId"
1932
+ /** column name */
1933
+ | "createdAt"
1934
+ /** column name */
1935
+ | "id"
1936
+ /** column name */
1937
+ | "inputJson"
1938
+ /** column name */
1939
+ | "isCurrent"
1940
+ /** column name */
1941
+ | "jobId"
1942
+ /** column name */
1943
+ | "jobIndex"
1944
+ /** column name */
1945
+ | "jobPageId"
1946
+ /** column name */
1947
+ | "jobPlanId"
1948
+ /** column name */
1949
+ | "objectId"
1950
+ /** column name */
1951
+ | "opId"
1952
+ /** column name */
1953
+ | "outputJson"
1954
+ /** column name */
1955
+ | "refs"
1956
+ /** column name */
1957
+ | "schemaId"
1958
+ /** column name */
1959
+ | "sourceId"
1960
+ /** column name */
1961
+ | "status"
1962
+ /** column name */
1963
+ | "tenantId"
1964
+ /** column name */
1965
+ | "title"
1966
+ /** column name */
1967
+ | "type"
1968
+ /** column name */
1969
+ | "uniqueRef"
1970
+ /** column name */
1971
+ | "updatedAt";
1972
+
1973
+ /** select "action_aggregate_bool_exp_bool_and_arguments_columns" columns of table "core.action" */
1974
+ export type action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns =
1975
+ /** column name */
1976
+ "isCurrent";
1977
+
1978
+ /** select "action_aggregate_bool_exp_bool_or_arguments_columns" columns of table "core.action" */
1979
+ export type action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns =
1980
+ /** column name */
1981
+ "isCurrent";
1982
+
1983
+ /** input type for updating data in table "core.action" */
1984
+ export interface action_set_input {
1985
+ appId?: InputMaybe<Scalars["String"]>;
1986
+ automationId?: InputMaybe<Scalars["uuid"]>;
1987
+ connectionId?: InputMaybe<Scalars["uuid"]>;
1988
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
1989
+ id?: InputMaybe<Scalars["uuid"]>;
1990
+ inputJson?: InputMaybe<Scalars["jsonb"]>;
1991
+ isCurrent?: InputMaybe<Scalars["Boolean"]>;
1992
+ jobId?: InputMaybe<Scalars["uuid"]>;
1993
+ jobIndex?: InputMaybe<Scalars["Int"]>;
1994
+ jobPageId?: InputMaybe<Scalars["uuid"]>;
1995
+ jobPlanId?: InputMaybe<Scalars["uuid"]>;
1996
+ objectId?: InputMaybe<Scalars["uuid"]>;
1997
+ opId?: InputMaybe<Scalars["uuid"]>;
1998
+ outputJson?: InputMaybe<Scalars["jsonb"]>;
1999
+ refs?: InputMaybe<Scalars["jsonb"]>;
2000
+ schemaId?: InputMaybe<Scalars["uuid"]>;
2001
+ sourceId?: InputMaybe<Scalars["uuid"]>;
2002
+ status?: InputMaybe<Scalars["String"]>;
2003
+ tenantId?: InputMaybe<Scalars["uuid"]>;
2004
+ title?: InputMaybe<Scalars["String"]>;
2005
+ type?: InputMaybe<Scalars["String"]>;
2006
+ uniqueRef?: InputMaybe<Scalars["String"]>;
2007
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
2008
+ }
2009
+
2010
+ /** order by stddev() on columns of table "core.action" */
2011
+ export interface action_stddev_order_by {
2012
+ jobIndex?: InputMaybe<order_by>;
2013
+ }
2014
+
2015
+ /** order by stddev_pop() on columns of table "core.action" */
2016
+ export interface action_stddev_pop_order_by {
2017
+ jobIndex?: InputMaybe<order_by>;
2018
+ }
2019
+
2020
+ /** order by stddev_samp() on columns of table "core.action" */
2021
+ export interface action_stddev_samp_order_by {
2022
+ jobIndex?: InputMaybe<order_by>;
2023
+ }
2024
+
2025
+ /** Streaming cursor of the table "action" */
2026
+ export interface action_stream_cursor_input {
2027
+ /** Stream column input with initial value */
2028
+ initial_value: action_stream_cursor_value_input;
2029
+ /** cursor ordering */
2030
+ ordering?: InputMaybe<cursor_ordering>;
2031
+ }
2032
+
2033
+ /** Initial value of the column from where the streaming should start */
2034
+ export interface action_stream_cursor_value_input {
2035
+ appId?: InputMaybe<Scalars["String"]>;
2036
+ automationId?: InputMaybe<Scalars["uuid"]>;
2037
+ connectionId?: InputMaybe<Scalars["uuid"]>;
2038
+ createdAt?: InputMaybe<Scalars["timestamptz"]>;
2039
+ id?: InputMaybe<Scalars["uuid"]>;
2040
+ inputJson?: InputMaybe<Scalars["jsonb"]>;
2041
+ isCurrent?: InputMaybe<Scalars["Boolean"]>;
2042
+ jobId?: InputMaybe<Scalars["uuid"]>;
2043
+ jobIndex?: InputMaybe<Scalars["Int"]>;
2044
+ jobPageId?: InputMaybe<Scalars["uuid"]>;
2045
+ jobPlanId?: InputMaybe<Scalars["uuid"]>;
2046
+ objectId?: InputMaybe<Scalars["uuid"]>;
2047
+ opId?: InputMaybe<Scalars["uuid"]>;
2048
+ outputJson?: InputMaybe<Scalars["jsonb"]>;
2049
+ refs?: InputMaybe<Scalars["jsonb"]>;
2050
+ schemaId?: InputMaybe<Scalars["uuid"]>;
2051
+ sourceId?: InputMaybe<Scalars["uuid"]>;
2052
+ status?: InputMaybe<Scalars["String"]>;
2053
+ tenantId?: InputMaybe<Scalars["uuid"]>;
2054
+ title?: InputMaybe<Scalars["String"]>;
2055
+ type?: InputMaybe<Scalars["String"]>;
2056
+ uniqueRef?: InputMaybe<Scalars["String"]>;
2057
+ updatedAt?: InputMaybe<Scalars["timestamptz"]>;
2058
+ }
2059
+
2060
+ /** order by sum() on columns of table "core.action" */
2061
+ export interface action_sum_order_by {
2062
+ jobIndex?: InputMaybe<order_by>;
2063
+ }
2064
+
2065
+ /** update columns of table "core.action" */
2066
+ export type action_update_column =
2067
+ /** column name */
2068
+ | "appId"
2069
+ /** column name */
2070
+ | "automationId"
2071
+ /** column name */
2072
+ | "connectionId"
2073
+ /** column name */
2074
+ | "createdAt"
2075
+ /** column name */
2076
+ | "id"
2077
+ /** column name */
2078
+ | "inputJson"
2079
+ /** column name */
2080
+ | "isCurrent"
2081
+ /** column name */
2082
+ | "jobId"
2083
+ /** column name */
2084
+ | "jobIndex"
2085
+ /** column name */
2086
+ | "jobPageId"
2087
+ /** column name */
2088
+ | "jobPlanId"
2089
+ /** column name */
2090
+ | "objectId"
2091
+ /** column name */
2092
+ | "opId"
2093
+ /** column name */
2094
+ | "outputJson"
2095
+ /** column name */
2096
+ | "refs"
2097
+ /** column name */
2098
+ | "schemaId"
2099
+ /** column name */
2100
+ | "sourceId"
2101
+ /** column name */
2102
+ | "status"
2103
+ /** column name */
2104
+ | "tenantId"
2105
+ /** column name */
2106
+ | "title"
2107
+ /** column name */
2108
+ | "type"
2109
+ /** column name */
2110
+ | "uniqueRef"
2111
+ /** column name */
2112
+ | "updatedAt";
2113
+
2114
+ export interface action_updates {
2115
+ /** append existing jsonb value of filtered columns with new jsonb value */
2116
+ _append?: InputMaybe<action_append_input>;
2117
+ /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
2118
+ _delete_at_path?: InputMaybe<action_delete_at_path_input>;
2119
+ /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
2120
+ _delete_elem?: InputMaybe<action_delete_elem_input>;
2121
+ /** delete key/value pair or string element. key/value pairs are matched based on their key value */
2122
+ _delete_key?: InputMaybe<action_delete_key_input>;
2123
+ /** increments the numeric columns with given value of the filtered values */
2124
+ _inc?: InputMaybe<action_inc_input>;
2125
+ /** prepend existing jsonb value of filtered columns with new jsonb value */
2126
+ _prepend?: InputMaybe<action_prepend_input>;
2127
+ /** sets the columns of the filtered rows to the given values */
2128
+ _set?: InputMaybe<action_set_input>;
2129
+ /** filter the rows which have to be updated */
2130
+ where: action_bool_exp;
2131
+ }
2132
+
2133
+ /** order by var_pop() on columns of table "core.action" */
2134
+ export interface action_var_pop_order_by {
2135
+ jobIndex?: InputMaybe<order_by>;
2136
+ }
2137
+
2138
+ /** order by var_samp() on columns of table "core.action" */
2139
+ export interface action_var_samp_order_by {
2140
+ jobIndex?: InputMaybe<order_by>;
2141
+ }
2142
+
2143
+ /** order by variance() on columns of table "core.action" */
2144
+ export interface action_variance_order_by {
2145
+ jobIndex?: InputMaybe<order_by>;
2146
+ }
2147
+
1658
2148
  /** Boolean expression to filter rows from the table "core.active_status". All fields are combined with a logical 'AND'. */
1659
2149
  export interface activeStatus_bool_exp {
1660
2150
  _and?: InputMaybe<Array<activeStatus_bool_exp>>;
@@ -5737,8 +6227,6 @@ export interface connection_bool_exp {
5737
6227
  changes_aggregate?: InputMaybe<change_aggregate_bool_exp>;
5738
6228
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
5739
6229
  credentials?: InputMaybe<jsonb_comparison_exp>;
5740
- csvLines?: InputMaybe<csv_line_bool_exp>;
5741
- csvLines_aggregate?: InputMaybe<csv_line_aggregate_bool_exp>;
5742
6230
  disabled?: InputMaybe<Boolean_comparison_exp>;
5743
6231
  fetchNext?: InputMaybe<timestamptz_comparison_exp>;
5744
6232
  fetchStatus?: InputMaybe<syncStatus_enum_comparison_exp>;
@@ -5825,7 +6313,6 @@ export interface connection_insert_input {
5825
6313
  changes?: InputMaybe<change_arr_rel_insert_input>;
5826
6314
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
5827
6315
  credentials?: InputMaybe<Scalars["jsonb"]>;
5828
- csvLines?: InputMaybe<csv_line_arr_rel_insert_input>;
5829
6316
  disabled?: InputMaybe<Scalars["Boolean"]>;
5830
6317
  fetchNext?: InputMaybe<Scalars["timestamptz"]>;
5831
6318
  fetchStatus?: InputMaybe<syncStatus_enum>;
@@ -5915,7 +6402,6 @@ export interface connection_order_by {
5915
6402
  changes_aggregate?: InputMaybe<change_aggregate_order_by>;
5916
6403
  createdAt?: InputMaybe<order_by>;
5917
6404
  credentials?: InputMaybe<order_by>;
5918
- csvLines_aggregate?: InputMaybe<csv_line_aggregate_order_by>;
5919
6405
  disabled?: InputMaybe<order_by>;
5920
6406
  fetchNext?: InputMaybe<order_by>;
5921
6407
  fetchStatus?: InputMaybe<order_by>;
@@ -6886,353 +7372,6 @@ export interface core_change_source_link_updates {
6886
7372
  where: core_change_source_link_bool_exp;
6887
7373
  }
6888
7374
 
6889
- export interface csv_line_aggregate_bool_exp {
6890
- count?: InputMaybe<csv_line_aggregate_bool_exp_count>;
6891
- }
6892
-
6893
- export interface csv_line_aggregate_bool_exp_count {
6894
- arguments?: InputMaybe<Array<csv_line_select_column>>;
6895
- distinct?: InputMaybe<Scalars["Boolean"]>;
6896
- filter?: InputMaybe<csv_line_bool_exp>;
6897
- predicate: Int_comparison_exp;
6898
- }
6899
-
6900
- /** order by aggregate values of table "csv_line" */
6901
- export interface csv_line_aggregate_order_by {
6902
- avg?: InputMaybe<csv_line_avg_order_by>;
6903
- count?: InputMaybe<order_by>;
6904
- max?: InputMaybe<csv_line_max_order_by>;
6905
- min?: InputMaybe<csv_line_min_order_by>;
6906
- stddev?: InputMaybe<csv_line_stddev_order_by>;
6907
- stddev_pop?: InputMaybe<csv_line_stddev_pop_order_by>;
6908
- stddev_samp?: InputMaybe<csv_line_stddev_samp_order_by>;
6909
- sum?: InputMaybe<csv_line_sum_order_by>;
6910
- var_pop?: InputMaybe<csv_line_var_pop_order_by>;
6911
- var_samp?: InputMaybe<csv_line_var_samp_order_by>;
6912
- variance?: InputMaybe<csv_line_variance_order_by>;
6913
- }
6914
-
6915
- /** append existing jsonb value of filtered columns with new jsonb value */
6916
- export interface csv_line_append_input {
6917
- json?: InputMaybe<Scalars["jsonb"]>;
6918
- }
6919
-
6920
- /** input type for inserting array relation for remote table "csv_line" */
6921
- export interface csv_line_arr_rel_insert_input {
6922
- data: Array<csv_line_insert_input>;
6923
- /** upsert condition */
6924
- on_conflict?: InputMaybe<csv_line_on_conflict>;
6925
- }
6926
-
6927
- /** order by avg() on columns of table "csv_line" */
6928
- export interface csv_line_avg_order_by {
6929
- index?: InputMaybe<order_by>;
6930
- }
6931
-
6932
- /** Boolean expression to filter rows from the table "csv_line". All fields are combined with a logical 'AND'. */
6933
- export interface csv_line_bool_exp {
6934
- _and?: InputMaybe<Array<csv_line_bool_exp>>;
6935
- _not?: InputMaybe<csv_line_bool_exp>;
6936
- _or?: InputMaybe<Array<csv_line_bool_exp>>;
6937
- connection?: InputMaybe<connection_bool_exp>;
6938
- connectionId?: InputMaybe<uuid_comparison_exp>;
6939
- createdAt?: InputMaybe<timestamptz_comparison_exp>;
6940
- csv?: InputMaybe<String_comparison_exp>;
6941
- date?: InputMaybe<timestamptz_comparison_exp>;
6942
- file?: InputMaybe<file_storage_bool_exp>;
6943
- fileId?: InputMaybe<uuid_comparison_exp>;
6944
- fileUniqueRef?: InputMaybe<String_comparison_exp>;
6945
- headers?: InputMaybe<String_comparison_exp>;
6946
- id?: InputMaybe<uuid_comparison_exp>;
6947
- index?: InputMaybe<Int_comparison_exp>;
6948
- json?: InputMaybe<jsonb_comparison_exp>;
6949
- tenant?: InputMaybe<tenant_bool_exp>;
6950
- tenantId?: InputMaybe<uuid_comparison_exp>;
6951
- type?: InputMaybe<String_comparison_exp>;
6952
- uniqueRef?: InputMaybe<String_comparison_exp>;
6953
- updatedAt?: InputMaybe<timestamptz_comparison_exp>;
6954
- }
6955
-
6956
- /** unique or primary key constraints on table "csv_line" */
6957
- export type csv_line_constraint =
6958
- /** unique or primary key constraint on columns "unique_ref", "connection_id", "type" */
6959
- | "csv_line_connection_id_type_unique_ref_key"
6960
- /** unique or primary key constraint on columns "id" */
6961
- | "csv_line_pkey";
6962
-
6963
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
6964
- export interface csv_line_delete_at_path_input {
6965
- json?: InputMaybe<Array<Scalars["String"]>>;
6966
- }
6967
-
6968
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
6969
- export interface csv_line_delete_elem_input {
6970
- json?: InputMaybe<Scalars["Int"]>;
6971
- }
6972
-
6973
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
6974
- export interface csv_line_delete_key_input {
6975
- json?: InputMaybe<Scalars["String"]>;
6976
- }
6977
-
6978
- /** input type for incrementing numeric columns in table "csv_line" */
6979
- export interface csv_line_inc_input {
6980
- index?: InputMaybe<Scalars["Int"]>;
6981
- }
6982
-
6983
- /** input type for inserting data into table "csv_line" */
6984
- export interface csv_line_insert_input {
6985
- connection?: InputMaybe<connection_obj_rel_insert_input>;
6986
- connectionId?: InputMaybe<Scalars["uuid"]>;
6987
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
6988
- csv?: InputMaybe<Scalars["String"]>;
6989
- date?: InputMaybe<Scalars["timestamptz"]>;
6990
- file?: InputMaybe<file_storage_obj_rel_insert_input>;
6991
- fileId?: InputMaybe<Scalars["uuid"]>;
6992
- fileUniqueRef?: InputMaybe<Scalars["String"]>;
6993
- headers?: InputMaybe<Scalars["String"]>;
6994
- id?: InputMaybe<Scalars["uuid"]>;
6995
- index?: InputMaybe<Scalars["Int"]>;
6996
- json?: InputMaybe<Scalars["jsonb"]>;
6997
- tenant?: InputMaybe<tenant_obj_rel_insert_input>;
6998
- tenantId?: InputMaybe<Scalars["uuid"]>;
6999
- type?: InputMaybe<Scalars["String"]>;
7000
- uniqueRef?: InputMaybe<Scalars["String"]>;
7001
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7002
- }
7003
-
7004
- /** order by max() on columns of table "csv_line" */
7005
- export interface csv_line_max_order_by {
7006
- connectionId?: InputMaybe<order_by>;
7007
- createdAt?: InputMaybe<order_by>;
7008
- csv?: InputMaybe<order_by>;
7009
- date?: InputMaybe<order_by>;
7010
- fileId?: InputMaybe<order_by>;
7011
- fileUniqueRef?: InputMaybe<order_by>;
7012
- headers?: InputMaybe<order_by>;
7013
- id?: InputMaybe<order_by>;
7014
- index?: InputMaybe<order_by>;
7015
- tenantId?: InputMaybe<order_by>;
7016
- type?: InputMaybe<order_by>;
7017
- uniqueRef?: InputMaybe<order_by>;
7018
- updatedAt?: InputMaybe<order_by>;
7019
- }
7020
-
7021
- /** order by min() on columns of table "csv_line" */
7022
- export interface csv_line_min_order_by {
7023
- connectionId?: InputMaybe<order_by>;
7024
- createdAt?: InputMaybe<order_by>;
7025
- csv?: InputMaybe<order_by>;
7026
- date?: InputMaybe<order_by>;
7027
- fileId?: InputMaybe<order_by>;
7028
- fileUniqueRef?: InputMaybe<order_by>;
7029
- headers?: InputMaybe<order_by>;
7030
- id?: InputMaybe<order_by>;
7031
- index?: InputMaybe<order_by>;
7032
- tenantId?: InputMaybe<order_by>;
7033
- type?: InputMaybe<order_by>;
7034
- uniqueRef?: InputMaybe<order_by>;
7035
- updatedAt?: InputMaybe<order_by>;
7036
- }
7037
-
7038
- /** on_conflict condition type for table "csv_line" */
7039
- export interface csv_line_on_conflict {
7040
- constraint: csv_line_constraint;
7041
- update_columns?: Array<csv_line_update_column>;
7042
- where?: InputMaybe<csv_line_bool_exp>;
7043
- }
7044
-
7045
- /** Ordering options when selecting data from "csv_line". */
7046
- export interface csv_line_order_by {
7047
- connection?: InputMaybe<connection_order_by>;
7048
- connectionId?: InputMaybe<order_by>;
7049
- createdAt?: InputMaybe<order_by>;
7050
- csv?: InputMaybe<order_by>;
7051
- date?: InputMaybe<order_by>;
7052
- file?: InputMaybe<file_storage_order_by>;
7053
- fileId?: InputMaybe<order_by>;
7054
- fileUniqueRef?: InputMaybe<order_by>;
7055
- headers?: InputMaybe<order_by>;
7056
- id?: InputMaybe<order_by>;
7057
- index?: InputMaybe<order_by>;
7058
- json?: InputMaybe<order_by>;
7059
- tenant?: InputMaybe<tenant_order_by>;
7060
- tenantId?: InputMaybe<order_by>;
7061
- type?: InputMaybe<order_by>;
7062
- uniqueRef?: InputMaybe<order_by>;
7063
- updatedAt?: InputMaybe<order_by>;
7064
- }
7065
-
7066
- /** primary key columns input for table: csv_line */
7067
- export interface csv_line_pk_columns_input {
7068
- id: Scalars["uuid"];
7069
- }
7070
-
7071
- /** prepend existing jsonb value of filtered columns with new jsonb value */
7072
- export interface csv_line_prepend_input {
7073
- json?: InputMaybe<Scalars["jsonb"]>;
7074
- }
7075
-
7076
- /** select columns of table "csv_line" */
7077
- export type csv_line_select_column =
7078
- /** column name */
7079
- | "connectionId"
7080
- /** column name */
7081
- | "createdAt"
7082
- /** column name */
7083
- | "csv"
7084
- /** column name */
7085
- | "date"
7086
- /** column name */
7087
- | "fileId"
7088
- /** column name */
7089
- | "fileUniqueRef"
7090
- /** column name */
7091
- | "headers"
7092
- /** column name */
7093
- | "id"
7094
- /** column name */
7095
- | "index"
7096
- /** column name */
7097
- | "json"
7098
- /** column name */
7099
- | "tenantId"
7100
- /** column name */
7101
- | "type"
7102
- /** column name */
7103
- | "uniqueRef"
7104
- /** column name */
7105
- | "updatedAt";
7106
-
7107
- /** input type for updating data in table "csv_line" */
7108
- export interface csv_line_set_input {
7109
- connectionId?: InputMaybe<Scalars["uuid"]>;
7110
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
7111
- csv?: InputMaybe<Scalars["String"]>;
7112
- date?: InputMaybe<Scalars["timestamptz"]>;
7113
- fileId?: InputMaybe<Scalars["uuid"]>;
7114
- fileUniqueRef?: InputMaybe<Scalars["String"]>;
7115
- headers?: InputMaybe<Scalars["String"]>;
7116
- id?: InputMaybe<Scalars["uuid"]>;
7117
- index?: InputMaybe<Scalars["Int"]>;
7118
- json?: InputMaybe<Scalars["jsonb"]>;
7119
- tenantId?: InputMaybe<Scalars["uuid"]>;
7120
- type?: InputMaybe<Scalars["String"]>;
7121
- uniqueRef?: InputMaybe<Scalars["String"]>;
7122
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7123
- }
7124
-
7125
- /** order by stddev() on columns of table "csv_line" */
7126
- export interface csv_line_stddev_order_by {
7127
- index?: InputMaybe<order_by>;
7128
- }
7129
-
7130
- /** order by stddev_pop() on columns of table "csv_line" */
7131
- export interface csv_line_stddev_pop_order_by {
7132
- index?: InputMaybe<order_by>;
7133
- }
7134
-
7135
- /** order by stddev_samp() on columns of table "csv_line" */
7136
- export interface csv_line_stddev_samp_order_by {
7137
- index?: InputMaybe<order_by>;
7138
- }
7139
-
7140
- /** Streaming cursor of the table "csv_line" */
7141
- export interface csv_line_stream_cursor_input {
7142
- /** Stream column input with initial value */
7143
- initial_value: csv_line_stream_cursor_value_input;
7144
- /** cursor ordering */
7145
- ordering?: InputMaybe<cursor_ordering>;
7146
- }
7147
-
7148
- /** Initial value of the column from where the streaming should start */
7149
- export interface csv_line_stream_cursor_value_input {
7150
- connectionId?: InputMaybe<Scalars["uuid"]>;
7151
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
7152
- csv?: InputMaybe<Scalars["String"]>;
7153
- date?: InputMaybe<Scalars["timestamptz"]>;
7154
- fileId?: InputMaybe<Scalars["uuid"]>;
7155
- fileUniqueRef?: InputMaybe<Scalars["String"]>;
7156
- headers?: InputMaybe<Scalars["String"]>;
7157
- id?: InputMaybe<Scalars["uuid"]>;
7158
- index?: InputMaybe<Scalars["Int"]>;
7159
- json?: InputMaybe<Scalars["jsonb"]>;
7160
- tenantId?: InputMaybe<Scalars["uuid"]>;
7161
- type?: InputMaybe<Scalars["String"]>;
7162
- uniqueRef?: InputMaybe<Scalars["String"]>;
7163
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
7164
- }
7165
-
7166
- /** order by sum() on columns of table "csv_line" */
7167
- export interface csv_line_sum_order_by {
7168
- index?: InputMaybe<order_by>;
7169
- }
7170
-
7171
- /** update columns of table "csv_line" */
7172
- export type csv_line_update_column =
7173
- /** column name */
7174
- | "connectionId"
7175
- /** column name */
7176
- | "createdAt"
7177
- /** column name */
7178
- | "csv"
7179
- /** column name */
7180
- | "date"
7181
- /** column name */
7182
- | "fileId"
7183
- /** column name */
7184
- | "fileUniqueRef"
7185
- /** column name */
7186
- | "headers"
7187
- /** column name */
7188
- | "id"
7189
- /** column name */
7190
- | "index"
7191
- /** column name */
7192
- | "json"
7193
- /** column name */
7194
- | "tenantId"
7195
- /** column name */
7196
- | "type"
7197
- /** column name */
7198
- | "uniqueRef"
7199
- /** column name */
7200
- | "updatedAt";
7201
-
7202
- export interface csv_line_updates {
7203
- /** append existing jsonb value of filtered columns with new jsonb value */
7204
- _append?: InputMaybe<csv_line_append_input>;
7205
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
7206
- _delete_at_path?: InputMaybe<csv_line_delete_at_path_input>;
7207
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
7208
- _delete_elem?: InputMaybe<csv_line_delete_elem_input>;
7209
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
7210
- _delete_key?: InputMaybe<csv_line_delete_key_input>;
7211
- /** increments the numeric columns with given value of the filtered values */
7212
- _inc?: InputMaybe<csv_line_inc_input>;
7213
- /** prepend existing jsonb value of filtered columns with new jsonb value */
7214
- _prepend?: InputMaybe<csv_line_prepend_input>;
7215
- /** sets the columns of the filtered rows to the given values */
7216
- _set?: InputMaybe<csv_line_set_input>;
7217
- /** filter the rows which have to be updated */
7218
- where: csv_line_bool_exp;
7219
- }
7220
-
7221
- /** order by var_pop() on columns of table "csv_line" */
7222
- export interface csv_line_var_pop_order_by {
7223
- index?: InputMaybe<order_by>;
7224
- }
7225
-
7226
- /** order by var_samp() on columns of table "csv_line" */
7227
- export interface csv_line_var_samp_order_by {
7228
- index?: InputMaybe<order_by>;
7229
- }
7230
-
7231
- /** order by variance() on columns of table "csv_line" */
7232
- export interface csv_line_variance_order_by {
7233
- index?: InputMaybe<order_by>;
7234
- }
7235
-
7236
7375
  /** Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'. */
7237
7376
  export interface currency_bool_exp {
7238
7377
  _and?: InputMaybe<Array<currency_bool_exp>>;
@@ -24191,8 +24330,6 @@ export interface tenant_bool_exp {
24191
24330
  connections?: InputMaybe<connection_bool_exp>;
24192
24331
  connections_aggregate?: InputMaybe<connection_aggregate_bool_exp>;
24193
24332
  createdAt?: InputMaybe<timestamptz_comparison_exp>;
24194
- csvLines?: InputMaybe<csv_line_bool_exp>;
24195
- csvLines_aggregate?: InputMaybe<csv_line_aggregate_bool_exp>;
24196
24333
  defaultCurrency?: InputMaybe<currency_enum_comparison_exp>;
24197
24334
  defaultRevenueRecognition?: InputMaybe<accountReservationRevRec_enum_comparison_exp>;
24198
24335
  email?: InputMaybe<String_comparison_exp>;
@@ -24336,7 +24473,6 @@ export interface tenant_insert_input {
24336
24473
  companyTaxCode?: InputMaybe<Scalars["String"]>;
24337
24474
  connections?: InputMaybe<connection_arr_rel_insert_input>;
24338
24475
  createdAt?: InputMaybe<Scalars["timestamptz"]>;
24339
- csvLines?: InputMaybe<csv_line_arr_rel_insert_input>;
24340
24476
  defaultCurrency?: InputMaybe<currency_enum>;
24341
24477
  defaultRevenueRecognition?: InputMaybe<accountReservationRevRec_enum>;
24342
24478
  email?: InputMaybe<Scalars["String"]>;
@@ -24526,7 +24662,6 @@ export interface tenant_order_by {
24526
24662
  companyTaxCode?: InputMaybe<order_by>;
24527
24663
  connections_aggregate?: InputMaybe<connection_aggregate_order_by>;
24528
24664
  createdAt?: InputMaybe<order_by>;
24529
- csvLines_aggregate?: InputMaybe<csv_line_aggregate_order_by>;
24530
24665
  defaultCurrency?: InputMaybe<order_by>;
24531
24666
  defaultRevenueRecognition?: InputMaybe<order_by>;
24532
24667
  email?: InputMaybe<order_by>;
@@ -30517,6 +30652,511 @@ export declare const generatedSchema: {
30517
30652
  _set: { __type: "account_set_input" };
30518
30653
  where: { __type: "account_bool_exp!" };
30519
30654
  };
30655
+ action: {
30656
+ __typename: { __type: "String!" };
30657
+ appId: { __type: "String" };
30658
+ automationId: { __type: "uuid" };
30659
+ changes: {
30660
+ __type: "[change!]!";
30661
+ __args: {
30662
+ distinct_on: "[change_select_column!]";
30663
+ limit: "Int";
30664
+ offset: "Int";
30665
+ order_by: "[change_order_by!]";
30666
+ where: "change_bool_exp";
30667
+ };
30668
+ };
30669
+ changes_aggregate: {
30670
+ __type: "change_aggregate!";
30671
+ __args: {
30672
+ distinct_on: "[change_select_column!]";
30673
+ limit: "Int";
30674
+ offset: "Int";
30675
+ order_by: "[change_order_by!]";
30676
+ where: "change_bool_exp";
30677
+ };
30678
+ };
30679
+ connection: { __type: "connection" };
30680
+ connectionId: { __type: "uuid" };
30681
+ createdAt: { __type: "timestamptz" };
30682
+ id: { __type: "uuid!" };
30683
+ inputJson: { __type: "jsonb"; __args: { path: "String" } };
30684
+ isCurrent: { __type: "Boolean" };
30685
+ jobId: { __type: "uuid" };
30686
+ jobIndex: { __type: "Int" };
30687
+ jobPageId: { __type: "uuid" };
30688
+ jobPlanId: { __type: "uuid" };
30689
+ objectId: { __type: "uuid" };
30690
+ opId: { __type: "uuid" };
30691
+ outputJson: { __type: "jsonb"; __args: { path: "String" } };
30692
+ previousActions: {
30693
+ __type: "[action!]!";
30694
+ __args: {
30695
+ distinct_on: "[action_select_column!]";
30696
+ limit: "Int";
30697
+ offset: "Int";
30698
+ order_by: "[action_order_by!]";
30699
+ where: "action_bool_exp";
30700
+ };
30701
+ };
30702
+ previousActions3: {
30703
+ __type: "[action!]!";
30704
+ __args: {
30705
+ distinct_on: "[action_select_column!]";
30706
+ limit: "Int";
30707
+ offset: "Int";
30708
+ order_by: "[action_order_by!]";
30709
+ where: "action_bool_exp";
30710
+ };
30711
+ };
30712
+ previousActions3_aggregate: {
30713
+ __type: "action_aggregate!";
30714
+ __args: {
30715
+ distinct_on: "[action_select_column!]";
30716
+ limit: "Int";
30717
+ offset: "Int";
30718
+ order_by: "[action_order_by!]";
30719
+ where: "action_bool_exp";
30720
+ };
30721
+ };
30722
+ previousActionsByType: {
30723
+ __type: "[action!]!";
30724
+ __args: {
30725
+ distinct_on: "[action_select_column!]";
30726
+ limit: "Int";
30727
+ offset: "Int";
30728
+ order_by: "[action_order_by!]";
30729
+ where: "action_bool_exp";
30730
+ };
30731
+ };
30732
+ previousActionsByType_aggregate: {
30733
+ __type: "action_aggregate!";
30734
+ __args: {
30735
+ distinct_on: "[action_select_column!]";
30736
+ limit: "Int";
30737
+ offset: "Int";
30738
+ order_by: "[action_order_by!]";
30739
+ where: "action_bool_exp";
30740
+ };
30741
+ };
30742
+ previousActions_aggregate: {
30743
+ __type: "action_aggregate!";
30744
+ __args: {
30745
+ distinct_on: "[action_select_column!]";
30746
+ limit: "Int";
30747
+ offset: "Int";
30748
+ order_by: "[action_order_by!]";
30749
+ where: "action_bool_exp";
30750
+ };
30751
+ };
30752
+ refs: { __type: "jsonb"; __args: { path: "String" } };
30753
+ schemaId: { __type: "uuid" };
30754
+ source: { __type: "source" };
30755
+ sourceId: { __type: "uuid" };
30756
+ status: { __type: "String" };
30757
+ tenant: { __type: "tenant" };
30758
+ tenantId: { __type: "uuid" };
30759
+ title: { __type: "String" };
30760
+ type: { __type: "String" };
30761
+ uniqueRef: { __type: "String" };
30762
+ updatedAt: { __type: "timestamptz" };
30763
+ };
30764
+ action_aggregate: {
30765
+ __typename: { __type: "String!" };
30766
+ aggregate: { __type: "action_aggregate_fields" };
30767
+ nodes: { __type: "[action!]!" };
30768
+ };
30769
+ action_aggregate_bool_exp: {
30770
+ bool_and: { __type: "action_aggregate_bool_exp_bool_and" };
30771
+ bool_or: { __type: "action_aggregate_bool_exp_bool_or" };
30772
+ count: { __type: "action_aggregate_bool_exp_count" };
30773
+ };
30774
+ action_aggregate_bool_exp_bool_and: {
30775
+ arguments: {
30776
+ __type: "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns!";
30777
+ };
30778
+ distinct: { __type: "Boolean" };
30779
+ filter: { __type: "action_bool_exp" };
30780
+ predicate: { __type: "Boolean_comparison_exp!" };
30781
+ };
30782
+ action_aggregate_bool_exp_bool_or: {
30783
+ arguments: {
30784
+ __type: "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns!";
30785
+ };
30786
+ distinct: { __type: "Boolean" };
30787
+ filter: { __type: "action_bool_exp" };
30788
+ predicate: { __type: "Boolean_comparison_exp!" };
30789
+ };
30790
+ action_aggregate_bool_exp_count: {
30791
+ arguments: { __type: "[action_select_column!]" };
30792
+ distinct: { __type: "Boolean" };
30793
+ filter: { __type: "action_bool_exp" };
30794
+ predicate: { __type: "Int_comparison_exp!" };
30795
+ };
30796
+ action_aggregate_fields: {
30797
+ __typename: { __type: "String!" };
30798
+ avg: { __type: "action_avg_fields" };
30799
+ count: {
30800
+ __type: "Int!";
30801
+ __args: { columns: "[action_select_column!]"; distinct: "Boolean" };
30802
+ };
30803
+ max: { __type: "action_max_fields" };
30804
+ min: { __type: "action_min_fields" };
30805
+ stddev: { __type: "action_stddev_fields" };
30806
+ stddev_pop: { __type: "action_stddev_pop_fields" };
30807
+ stddev_samp: { __type: "action_stddev_samp_fields" };
30808
+ sum: { __type: "action_sum_fields" };
30809
+ var_pop: { __type: "action_var_pop_fields" };
30810
+ var_samp: { __type: "action_var_samp_fields" };
30811
+ variance: { __type: "action_variance_fields" };
30812
+ };
30813
+ action_aggregate_order_by: {
30814
+ avg: { __type: "action_avg_order_by" };
30815
+ count: { __type: "order_by" };
30816
+ max: { __type: "action_max_order_by" };
30817
+ min: { __type: "action_min_order_by" };
30818
+ stddev: { __type: "action_stddev_order_by" };
30819
+ stddev_pop: { __type: "action_stddev_pop_order_by" };
30820
+ stddev_samp: { __type: "action_stddev_samp_order_by" };
30821
+ sum: { __type: "action_sum_order_by" };
30822
+ var_pop: { __type: "action_var_pop_order_by" };
30823
+ var_samp: { __type: "action_var_samp_order_by" };
30824
+ variance: { __type: "action_variance_order_by" };
30825
+ };
30826
+ action_append_input: {
30827
+ inputJson: { __type: "jsonb" };
30828
+ outputJson: { __type: "jsonb" };
30829
+ refs: { __type: "jsonb" };
30830
+ };
30831
+ action_arr_rel_insert_input: {
30832
+ data: { __type: "[action_insert_input!]!" };
30833
+ on_conflict: { __type: "action_on_conflict" };
30834
+ };
30835
+ action_avg_fields: {
30836
+ __typename: { __type: "String!" };
30837
+ jobIndex: { __type: "Float" };
30838
+ };
30839
+ action_avg_order_by: { jobIndex: { __type: "order_by" } };
30840
+ action_bool_exp: {
30841
+ _and: { __type: "[action_bool_exp!]" };
30842
+ _not: { __type: "action_bool_exp" };
30843
+ _or: { __type: "[action_bool_exp!]" };
30844
+ appId: { __type: "String_comparison_exp" };
30845
+ automationId: { __type: "uuid_comparison_exp" };
30846
+ changes: { __type: "change_bool_exp" };
30847
+ changes_aggregate: { __type: "change_aggregate_bool_exp" };
30848
+ connection: { __type: "connection_bool_exp" };
30849
+ connectionId: { __type: "uuid_comparison_exp" };
30850
+ createdAt: { __type: "timestamptz_comparison_exp" };
30851
+ id: { __type: "uuid_comparison_exp" };
30852
+ inputJson: { __type: "jsonb_comparison_exp" };
30853
+ isCurrent: { __type: "Boolean_comparison_exp" };
30854
+ jobId: { __type: "uuid_comparison_exp" };
30855
+ jobIndex: { __type: "Int_comparison_exp" };
30856
+ jobPageId: { __type: "uuid_comparison_exp" };
30857
+ jobPlanId: { __type: "uuid_comparison_exp" };
30858
+ objectId: { __type: "uuid_comparison_exp" };
30859
+ opId: { __type: "uuid_comparison_exp" };
30860
+ outputJson: { __type: "jsonb_comparison_exp" };
30861
+ previousActions: { __type: "action_bool_exp" };
30862
+ previousActions3: { __type: "action_bool_exp" };
30863
+ previousActions3_aggregate: { __type: "action_aggregate_bool_exp" };
30864
+ previousActionsByType: { __type: "action_bool_exp" };
30865
+ previousActionsByType_aggregate: { __type: "action_aggregate_bool_exp" };
30866
+ previousActions_aggregate: { __type: "action_aggregate_bool_exp" };
30867
+ refs: { __type: "jsonb_comparison_exp" };
30868
+ schemaId: { __type: "uuid_comparison_exp" };
30869
+ source: { __type: "source_bool_exp" };
30870
+ sourceId: { __type: "uuid_comparison_exp" };
30871
+ status: { __type: "String_comparison_exp" };
30872
+ tenant: { __type: "tenant_bool_exp" };
30873
+ tenantId: { __type: "uuid_comparison_exp" };
30874
+ title: { __type: "String_comparison_exp" };
30875
+ type: { __type: "String_comparison_exp" };
30876
+ uniqueRef: { __type: "String_comparison_exp" };
30877
+ updatedAt: { __type: "timestamptz_comparison_exp" };
30878
+ };
30879
+ action_delete_at_path_input: {
30880
+ inputJson: { __type: "[String!]" };
30881
+ outputJson: { __type: "[String!]" };
30882
+ refs: { __type: "[String!]" };
30883
+ };
30884
+ action_delete_elem_input: {
30885
+ inputJson: { __type: "Int" };
30886
+ outputJson: { __type: "Int" };
30887
+ refs: { __type: "Int" };
30888
+ };
30889
+ action_delete_key_input: {
30890
+ inputJson: { __type: "String" };
30891
+ outputJson: { __type: "String" };
30892
+ refs: { __type: "String" };
30893
+ };
30894
+ action_inc_input: { jobIndex: { __type: "Int" } };
30895
+ action_insert_input: {
30896
+ appId: { __type: "String" };
30897
+ automationId: { __type: "uuid" };
30898
+ changes: { __type: "change_arr_rel_insert_input" };
30899
+ connection: { __type: "connection_obj_rel_insert_input" };
30900
+ connectionId: { __type: "uuid" };
30901
+ createdAt: { __type: "timestamptz" };
30902
+ id: { __type: "uuid" };
30903
+ inputJson: { __type: "jsonb" };
30904
+ isCurrent: { __type: "Boolean" };
30905
+ jobId: { __type: "uuid" };
30906
+ jobIndex: { __type: "Int" };
30907
+ jobPageId: { __type: "uuid" };
30908
+ jobPlanId: { __type: "uuid" };
30909
+ objectId: { __type: "uuid" };
30910
+ opId: { __type: "uuid" };
30911
+ outputJson: { __type: "jsonb" };
30912
+ previousActions: { __type: "action_arr_rel_insert_input" };
30913
+ previousActions3: { __type: "action_arr_rel_insert_input" };
30914
+ previousActionsByType: { __type: "action_arr_rel_insert_input" };
30915
+ refs: { __type: "jsonb" };
30916
+ schemaId: { __type: "uuid" };
30917
+ source: { __type: "source_obj_rel_insert_input" };
30918
+ sourceId: { __type: "uuid" };
30919
+ status: { __type: "String" };
30920
+ tenant: { __type: "tenant_obj_rel_insert_input" };
30921
+ tenantId: { __type: "uuid" };
30922
+ title: { __type: "String" };
30923
+ type: { __type: "String" };
30924
+ uniqueRef: { __type: "String" };
30925
+ updatedAt: { __type: "timestamptz" };
30926
+ };
30927
+ action_max_fields: {
30928
+ __typename: { __type: "String!" };
30929
+ appId: { __type: "String" };
30930
+ automationId: { __type: "uuid" };
30931
+ connectionId: { __type: "uuid" };
30932
+ createdAt: { __type: "timestamptz" };
30933
+ id: { __type: "uuid" };
30934
+ jobId: { __type: "uuid" };
30935
+ jobIndex: { __type: "Int" };
30936
+ jobPageId: { __type: "uuid" };
30937
+ jobPlanId: { __type: "uuid" };
30938
+ objectId: { __type: "uuid" };
30939
+ opId: { __type: "uuid" };
30940
+ schemaId: { __type: "uuid" };
30941
+ sourceId: { __type: "uuid" };
30942
+ status: { __type: "String" };
30943
+ tenantId: { __type: "uuid" };
30944
+ title: { __type: "String" };
30945
+ type: { __type: "String" };
30946
+ uniqueRef: { __type: "String" };
30947
+ updatedAt: { __type: "timestamptz" };
30948
+ };
30949
+ action_max_order_by: {
30950
+ appId: { __type: "order_by" };
30951
+ automationId: { __type: "order_by" };
30952
+ connectionId: { __type: "order_by" };
30953
+ createdAt: { __type: "order_by" };
30954
+ id: { __type: "order_by" };
30955
+ jobId: { __type: "order_by" };
30956
+ jobIndex: { __type: "order_by" };
30957
+ jobPageId: { __type: "order_by" };
30958
+ jobPlanId: { __type: "order_by" };
30959
+ objectId: { __type: "order_by" };
30960
+ opId: { __type: "order_by" };
30961
+ schemaId: { __type: "order_by" };
30962
+ sourceId: { __type: "order_by" };
30963
+ status: { __type: "order_by" };
30964
+ tenantId: { __type: "order_by" };
30965
+ title: { __type: "order_by" };
30966
+ type: { __type: "order_by" };
30967
+ uniqueRef: { __type: "order_by" };
30968
+ updatedAt: { __type: "order_by" };
30969
+ };
30970
+ action_min_fields: {
30971
+ __typename: { __type: "String!" };
30972
+ appId: { __type: "String" };
30973
+ automationId: { __type: "uuid" };
30974
+ connectionId: { __type: "uuid" };
30975
+ createdAt: { __type: "timestamptz" };
30976
+ id: { __type: "uuid" };
30977
+ jobId: { __type: "uuid" };
30978
+ jobIndex: { __type: "Int" };
30979
+ jobPageId: { __type: "uuid" };
30980
+ jobPlanId: { __type: "uuid" };
30981
+ objectId: { __type: "uuid" };
30982
+ opId: { __type: "uuid" };
30983
+ schemaId: { __type: "uuid" };
30984
+ sourceId: { __type: "uuid" };
30985
+ status: { __type: "String" };
30986
+ tenantId: { __type: "uuid" };
30987
+ title: { __type: "String" };
30988
+ type: { __type: "String" };
30989
+ uniqueRef: { __type: "String" };
30990
+ updatedAt: { __type: "timestamptz" };
30991
+ };
30992
+ action_min_order_by: {
30993
+ appId: { __type: "order_by" };
30994
+ automationId: { __type: "order_by" };
30995
+ connectionId: { __type: "order_by" };
30996
+ createdAt: { __type: "order_by" };
30997
+ id: { __type: "order_by" };
30998
+ jobId: { __type: "order_by" };
30999
+ jobIndex: { __type: "order_by" };
31000
+ jobPageId: { __type: "order_by" };
31001
+ jobPlanId: { __type: "order_by" };
31002
+ objectId: { __type: "order_by" };
31003
+ opId: { __type: "order_by" };
31004
+ schemaId: { __type: "order_by" };
31005
+ sourceId: { __type: "order_by" };
31006
+ status: { __type: "order_by" };
31007
+ tenantId: { __type: "order_by" };
31008
+ title: { __type: "order_by" };
31009
+ type: { __type: "order_by" };
31010
+ uniqueRef: { __type: "order_by" };
31011
+ updatedAt: { __type: "order_by" };
31012
+ };
31013
+ action_mutation_response: {
31014
+ __typename: { __type: "String!" };
31015
+ affected_rows: { __type: "Int!" };
31016
+ returning: { __type: "[action!]!" };
31017
+ };
31018
+ action_on_conflict: {
31019
+ constraint: { __type: "action_constraint!" };
31020
+ update_columns: { __type: "[action_update_column!]!" };
31021
+ where: { __type: "action_bool_exp" };
31022
+ };
31023
+ action_order_by: {
31024
+ appId: { __type: "order_by" };
31025
+ automationId: { __type: "order_by" };
31026
+ changes_aggregate: { __type: "change_aggregate_order_by" };
31027
+ connection: { __type: "connection_order_by" };
31028
+ connectionId: { __type: "order_by" };
31029
+ createdAt: { __type: "order_by" };
31030
+ id: { __type: "order_by" };
31031
+ inputJson: { __type: "order_by" };
31032
+ isCurrent: { __type: "order_by" };
31033
+ jobId: { __type: "order_by" };
31034
+ jobIndex: { __type: "order_by" };
31035
+ jobPageId: { __type: "order_by" };
31036
+ jobPlanId: { __type: "order_by" };
31037
+ objectId: { __type: "order_by" };
31038
+ opId: { __type: "order_by" };
31039
+ outputJson: { __type: "order_by" };
31040
+ previousActions3_aggregate: { __type: "action_aggregate_order_by" };
31041
+ previousActionsByType_aggregate: { __type: "action_aggregate_order_by" };
31042
+ previousActions_aggregate: { __type: "action_aggregate_order_by" };
31043
+ refs: { __type: "order_by" };
31044
+ schemaId: { __type: "order_by" };
31045
+ source: { __type: "source_order_by" };
31046
+ sourceId: { __type: "order_by" };
31047
+ status: { __type: "order_by" };
31048
+ tenant: { __type: "tenant_order_by" };
31049
+ tenantId: { __type: "order_by" };
31050
+ title: { __type: "order_by" };
31051
+ type: { __type: "order_by" };
31052
+ uniqueRef: { __type: "order_by" };
31053
+ updatedAt: { __type: "order_by" };
31054
+ };
31055
+ action_pk_columns_input: { id: { __type: "uuid!" } };
31056
+ action_prepend_input: {
31057
+ inputJson: { __type: "jsonb" };
31058
+ outputJson: { __type: "jsonb" };
31059
+ refs: { __type: "jsonb" };
31060
+ };
31061
+ action_set_input: {
31062
+ appId: { __type: "String" };
31063
+ automationId: { __type: "uuid" };
31064
+ connectionId: { __type: "uuid" };
31065
+ createdAt: { __type: "timestamptz" };
31066
+ id: { __type: "uuid" };
31067
+ inputJson: { __type: "jsonb" };
31068
+ isCurrent: { __type: "Boolean" };
31069
+ jobId: { __type: "uuid" };
31070
+ jobIndex: { __type: "Int" };
31071
+ jobPageId: { __type: "uuid" };
31072
+ jobPlanId: { __type: "uuid" };
31073
+ objectId: { __type: "uuid" };
31074
+ opId: { __type: "uuid" };
31075
+ outputJson: { __type: "jsonb" };
31076
+ refs: { __type: "jsonb" };
31077
+ schemaId: { __type: "uuid" };
31078
+ sourceId: { __type: "uuid" };
31079
+ status: { __type: "String" };
31080
+ tenantId: { __type: "uuid" };
31081
+ title: { __type: "String" };
31082
+ type: { __type: "String" };
31083
+ uniqueRef: { __type: "String" };
31084
+ updatedAt: { __type: "timestamptz" };
31085
+ };
31086
+ action_stddev_fields: {
31087
+ __typename: { __type: "String!" };
31088
+ jobIndex: { __type: "Float" };
31089
+ };
31090
+ action_stddev_order_by: { jobIndex: { __type: "order_by" } };
31091
+ action_stddev_pop_fields: {
31092
+ __typename: { __type: "String!" };
31093
+ jobIndex: { __type: "Float" };
31094
+ };
31095
+ action_stddev_pop_order_by: { jobIndex: { __type: "order_by" } };
31096
+ action_stddev_samp_fields: {
31097
+ __typename: { __type: "String!" };
31098
+ jobIndex: { __type: "Float" };
31099
+ };
31100
+ action_stddev_samp_order_by: { jobIndex: { __type: "order_by" } };
31101
+ action_stream_cursor_input: {
31102
+ initial_value: { __type: "action_stream_cursor_value_input!" };
31103
+ ordering: { __type: "cursor_ordering" };
31104
+ };
31105
+ action_stream_cursor_value_input: {
31106
+ appId: { __type: "String" };
31107
+ automationId: { __type: "uuid" };
31108
+ connectionId: { __type: "uuid" };
31109
+ createdAt: { __type: "timestamptz" };
31110
+ id: { __type: "uuid" };
31111
+ inputJson: { __type: "jsonb" };
31112
+ isCurrent: { __type: "Boolean" };
31113
+ jobId: { __type: "uuid" };
31114
+ jobIndex: { __type: "Int" };
31115
+ jobPageId: { __type: "uuid" };
31116
+ jobPlanId: { __type: "uuid" };
31117
+ objectId: { __type: "uuid" };
31118
+ opId: { __type: "uuid" };
31119
+ outputJson: { __type: "jsonb" };
31120
+ refs: { __type: "jsonb" };
31121
+ schemaId: { __type: "uuid" };
31122
+ sourceId: { __type: "uuid" };
31123
+ status: { __type: "String" };
31124
+ tenantId: { __type: "uuid" };
31125
+ title: { __type: "String" };
31126
+ type: { __type: "String" };
31127
+ uniqueRef: { __type: "String" };
31128
+ updatedAt: { __type: "timestamptz" };
31129
+ };
31130
+ action_sum_fields: {
31131
+ __typename: { __type: "String!" };
31132
+ jobIndex: { __type: "Int" };
31133
+ };
31134
+ action_sum_order_by: { jobIndex: { __type: "order_by" } };
31135
+ action_updates: {
31136
+ _append: { __type: "action_append_input" };
31137
+ _delete_at_path: { __type: "action_delete_at_path_input" };
31138
+ _delete_elem: { __type: "action_delete_elem_input" };
31139
+ _delete_key: { __type: "action_delete_key_input" };
31140
+ _inc: { __type: "action_inc_input" };
31141
+ _prepend: { __type: "action_prepend_input" };
31142
+ _set: { __type: "action_set_input" };
31143
+ where: { __type: "action_bool_exp!" };
31144
+ };
31145
+ action_var_pop_fields: {
31146
+ __typename: { __type: "String!" };
31147
+ jobIndex: { __type: "Float" };
31148
+ };
31149
+ action_var_pop_order_by: { jobIndex: { __type: "order_by" } };
31150
+ action_var_samp_fields: {
31151
+ __typename: { __type: "String!" };
31152
+ jobIndex: { __type: "Float" };
31153
+ };
31154
+ action_var_samp_order_by: { jobIndex: { __type: "order_by" } };
31155
+ action_variance_fields: {
31156
+ __typename: { __type: "String!" };
31157
+ jobIndex: { __type: "Float" };
31158
+ };
31159
+ action_variance_order_by: { jobIndex: { __type: "order_by" } };
30520
31160
  activeStatus: {
30521
31161
  __typename: { __type: "String!" };
30522
31162
  name: { __type: "String!" };
@@ -34507,26 +35147,6 @@ export declare const generatedSchema: {
34507
35147
  };
34508
35148
  createdAt: { __type: "timestamptz!" };
34509
35149
  credentials: { __type: "jsonb"; __args: { path: "String" } };
34510
- csvLines: {
34511
- __type: "[csv_line!]!";
34512
- __args: {
34513
- distinct_on: "[csv_line_select_column!]";
34514
- limit: "Int";
34515
- offset: "Int";
34516
- order_by: "[csv_line_order_by!]";
34517
- where: "csv_line_bool_exp";
34518
- };
34519
- };
34520
- csvLines_aggregate: {
34521
- __type: "csv_line_aggregate!";
34522
- __args: {
34523
- distinct_on: "[csv_line_select_column!]";
34524
- limit: "Int";
34525
- offset: "Int";
34526
- order_by: "[csv_line_order_by!]";
34527
- where: "csv_line_bool_exp";
34528
- };
34529
- };
34530
35150
  disabled: { __type: "Boolean" };
34531
35151
  fetchNext: { __type: "timestamptz" };
34532
35152
  fetchStatus: { __type: "syncStatus_enum!" };
@@ -34859,8 +35479,6 @@ export declare const generatedSchema: {
34859
35479
  changes_aggregate: { __type: "change_aggregate_bool_exp" };
34860
35480
  createdAt: { __type: "timestamptz_comparison_exp" };
34861
35481
  credentials: { __type: "jsonb_comparison_exp" };
34862
- csvLines: { __type: "csv_line_bool_exp" };
34863
- csvLines_aggregate: { __type: "csv_line_aggregate_bool_exp" };
34864
35482
  disabled: { __type: "Boolean_comparison_exp" };
34865
35483
  fetchNext: { __type: "timestamptz_comparison_exp" };
34866
35484
  fetchStatus: { __type: "syncStatus_enum_comparison_exp" };
@@ -34930,7 +35548,6 @@ export declare const generatedSchema: {
34930
35548
  changes: { __type: "change_arr_rel_insert_input" };
34931
35549
  createdAt: { __type: "timestamptz" };
34932
35550
  credentials: { __type: "jsonb" };
34933
- csvLines: { __type: "csv_line_arr_rel_insert_input" };
34934
35551
  disabled: { __type: "Boolean" };
34935
35552
  fetchNext: { __type: "timestamptz" };
34936
35553
  fetchStatus: { __type: "syncStatus_enum" };
@@ -35048,7 +35665,6 @@ export declare const generatedSchema: {
35048
35665
  changes_aggregate: { __type: "change_aggregate_order_by" };
35049
35666
  createdAt: { __type: "order_by" };
35050
35667
  credentials: { __type: "order_by" };
35051
- csvLines_aggregate: { __type: "csv_line_aggregate_order_by" };
35052
35668
  disabled: { __type: "order_by" };
35053
35669
  fetchNext: { __type: "order_by" };
35054
35670
  fetchStatus: { __type: "order_by" };
@@ -35904,299 +36520,6 @@ export declare const generatedSchema: {
35904
36520
  _set: { __type: "core_change_source_link_set_input" };
35905
36521
  where: { __type: "core_change_source_link_bool_exp!" };
35906
36522
  };
35907
- csv_line: {
35908
- __typename: { __type: "String!" };
35909
- connection: { __type: "connection!" };
35910
- connectionId: { __type: "uuid!" };
35911
- createdAt: { __type: "timestamptz" };
35912
- csv: { __type: "String!" };
35913
- date: { __type: "timestamptz!" };
35914
- file: { __type: "file_storage" };
35915
- fileId: { __type: "uuid" };
35916
- fileUniqueRef: { __type: "String" };
35917
- headers: { __type: "String" };
35918
- id: { __type: "uuid!" };
35919
- index: { __type: "Int" };
35920
- json: { __type: "jsonb"; __args: { path: "String" } };
35921
- tenant: { __type: "tenant!" };
35922
- tenantId: { __type: "uuid!" };
35923
- type: { __type: "String!" };
35924
- uniqueRef: { __type: "String!" };
35925
- updatedAt: { __type: "timestamptz" };
35926
- };
35927
- csv_line_aggregate: {
35928
- __typename: { __type: "String!" };
35929
- aggregate: { __type: "csv_line_aggregate_fields" };
35930
- nodes: { __type: "[csv_line!]!" };
35931
- };
35932
- csv_line_aggregate_bool_exp: {
35933
- count: { __type: "csv_line_aggregate_bool_exp_count" };
35934
- };
35935
- csv_line_aggregate_bool_exp_count: {
35936
- arguments: { __type: "[csv_line_select_column!]" };
35937
- distinct: { __type: "Boolean" };
35938
- filter: { __type: "csv_line_bool_exp" };
35939
- predicate: { __type: "Int_comparison_exp!" };
35940
- };
35941
- csv_line_aggregate_fields: {
35942
- __typename: { __type: "String!" };
35943
- avg: { __type: "csv_line_avg_fields" };
35944
- count: {
35945
- __type: "Int!";
35946
- __args: { columns: "[csv_line_select_column!]"; distinct: "Boolean" };
35947
- };
35948
- max: { __type: "csv_line_max_fields" };
35949
- min: { __type: "csv_line_min_fields" };
35950
- stddev: { __type: "csv_line_stddev_fields" };
35951
- stddev_pop: { __type: "csv_line_stddev_pop_fields" };
35952
- stddev_samp: { __type: "csv_line_stddev_samp_fields" };
35953
- sum: { __type: "csv_line_sum_fields" };
35954
- var_pop: { __type: "csv_line_var_pop_fields" };
35955
- var_samp: { __type: "csv_line_var_samp_fields" };
35956
- variance: { __type: "csv_line_variance_fields" };
35957
- };
35958
- csv_line_aggregate_order_by: {
35959
- avg: { __type: "csv_line_avg_order_by" };
35960
- count: { __type: "order_by" };
35961
- max: { __type: "csv_line_max_order_by" };
35962
- min: { __type: "csv_line_min_order_by" };
35963
- stddev: { __type: "csv_line_stddev_order_by" };
35964
- stddev_pop: { __type: "csv_line_stddev_pop_order_by" };
35965
- stddev_samp: { __type: "csv_line_stddev_samp_order_by" };
35966
- sum: { __type: "csv_line_sum_order_by" };
35967
- var_pop: { __type: "csv_line_var_pop_order_by" };
35968
- var_samp: { __type: "csv_line_var_samp_order_by" };
35969
- variance: { __type: "csv_line_variance_order_by" };
35970
- };
35971
- csv_line_append_input: { json: { __type: "jsonb" } };
35972
- csv_line_arr_rel_insert_input: {
35973
- data: { __type: "[csv_line_insert_input!]!" };
35974
- on_conflict: { __type: "csv_line_on_conflict" };
35975
- };
35976
- csv_line_avg_fields: {
35977
- __typename: { __type: "String!" };
35978
- index: { __type: "Float" };
35979
- };
35980
- csv_line_avg_order_by: { index: { __type: "order_by" } };
35981
- csv_line_bool_exp: {
35982
- _and: { __type: "[csv_line_bool_exp!]" };
35983
- _not: { __type: "csv_line_bool_exp" };
35984
- _or: { __type: "[csv_line_bool_exp!]" };
35985
- connection: { __type: "connection_bool_exp" };
35986
- connectionId: { __type: "uuid_comparison_exp" };
35987
- createdAt: { __type: "timestamptz_comparison_exp" };
35988
- csv: { __type: "String_comparison_exp" };
35989
- date: { __type: "timestamptz_comparison_exp" };
35990
- file: { __type: "file_storage_bool_exp" };
35991
- fileId: { __type: "uuid_comparison_exp" };
35992
- fileUniqueRef: { __type: "String_comparison_exp" };
35993
- headers: { __type: "String_comparison_exp" };
35994
- id: { __type: "uuid_comparison_exp" };
35995
- index: { __type: "Int_comparison_exp" };
35996
- json: { __type: "jsonb_comparison_exp" };
35997
- tenant: { __type: "tenant_bool_exp" };
35998
- tenantId: { __type: "uuid_comparison_exp" };
35999
- type: { __type: "String_comparison_exp" };
36000
- uniqueRef: { __type: "String_comparison_exp" };
36001
- updatedAt: { __type: "timestamptz_comparison_exp" };
36002
- };
36003
- csv_line_delete_at_path_input: { json: { __type: "[String!]" } };
36004
- csv_line_delete_elem_input: { json: { __type: "Int" } };
36005
- csv_line_delete_key_input: { json: { __type: "String" } };
36006
- csv_line_inc_input: { index: { __type: "Int" } };
36007
- csv_line_insert_input: {
36008
- connection: { __type: "connection_obj_rel_insert_input" };
36009
- connectionId: { __type: "uuid" };
36010
- createdAt: { __type: "timestamptz" };
36011
- csv: { __type: "String" };
36012
- date: { __type: "timestamptz" };
36013
- file: { __type: "file_storage_obj_rel_insert_input" };
36014
- fileId: { __type: "uuid" };
36015
- fileUniqueRef: { __type: "String" };
36016
- headers: { __type: "String" };
36017
- id: { __type: "uuid" };
36018
- index: { __type: "Int" };
36019
- json: { __type: "jsonb" };
36020
- tenant: { __type: "tenant_obj_rel_insert_input" };
36021
- tenantId: { __type: "uuid" };
36022
- type: { __type: "String" };
36023
- uniqueRef: { __type: "String" };
36024
- updatedAt: { __type: "timestamptz" };
36025
- };
36026
- csv_line_max_fields: {
36027
- __typename: { __type: "String!" };
36028
- connectionId: { __type: "uuid" };
36029
- createdAt: { __type: "timestamptz" };
36030
- csv: { __type: "String" };
36031
- date: { __type: "timestamptz" };
36032
- fileId: { __type: "uuid" };
36033
- fileUniqueRef: { __type: "String" };
36034
- headers: { __type: "String" };
36035
- id: { __type: "uuid" };
36036
- index: { __type: "Int" };
36037
- tenantId: { __type: "uuid" };
36038
- type: { __type: "String" };
36039
- uniqueRef: { __type: "String" };
36040
- updatedAt: { __type: "timestamptz" };
36041
- };
36042
- csv_line_max_order_by: {
36043
- connectionId: { __type: "order_by" };
36044
- createdAt: { __type: "order_by" };
36045
- csv: { __type: "order_by" };
36046
- date: { __type: "order_by" };
36047
- fileId: { __type: "order_by" };
36048
- fileUniqueRef: { __type: "order_by" };
36049
- headers: { __type: "order_by" };
36050
- id: { __type: "order_by" };
36051
- index: { __type: "order_by" };
36052
- tenantId: { __type: "order_by" };
36053
- type: { __type: "order_by" };
36054
- uniqueRef: { __type: "order_by" };
36055
- updatedAt: { __type: "order_by" };
36056
- };
36057
- csv_line_min_fields: {
36058
- __typename: { __type: "String!" };
36059
- connectionId: { __type: "uuid" };
36060
- createdAt: { __type: "timestamptz" };
36061
- csv: { __type: "String" };
36062
- date: { __type: "timestamptz" };
36063
- fileId: { __type: "uuid" };
36064
- fileUniqueRef: { __type: "String" };
36065
- headers: { __type: "String" };
36066
- id: { __type: "uuid" };
36067
- index: { __type: "Int" };
36068
- tenantId: { __type: "uuid" };
36069
- type: { __type: "String" };
36070
- uniqueRef: { __type: "String" };
36071
- updatedAt: { __type: "timestamptz" };
36072
- };
36073
- csv_line_min_order_by: {
36074
- connectionId: { __type: "order_by" };
36075
- createdAt: { __type: "order_by" };
36076
- csv: { __type: "order_by" };
36077
- date: { __type: "order_by" };
36078
- fileId: { __type: "order_by" };
36079
- fileUniqueRef: { __type: "order_by" };
36080
- headers: { __type: "order_by" };
36081
- id: { __type: "order_by" };
36082
- index: { __type: "order_by" };
36083
- tenantId: { __type: "order_by" };
36084
- type: { __type: "order_by" };
36085
- uniqueRef: { __type: "order_by" };
36086
- updatedAt: { __type: "order_by" };
36087
- };
36088
- csv_line_mutation_response: {
36089
- __typename: { __type: "String!" };
36090
- affected_rows: { __type: "Int!" };
36091
- returning: { __type: "[csv_line!]!" };
36092
- };
36093
- csv_line_on_conflict: {
36094
- constraint: { __type: "csv_line_constraint!" };
36095
- update_columns: { __type: "[csv_line_update_column!]!" };
36096
- where: { __type: "csv_line_bool_exp" };
36097
- };
36098
- csv_line_order_by: {
36099
- connection: { __type: "connection_order_by" };
36100
- connectionId: { __type: "order_by" };
36101
- createdAt: { __type: "order_by" };
36102
- csv: { __type: "order_by" };
36103
- date: { __type: "order_by" };
36104
- file: { __type: "file_storage_order_by" };
36105
- fileId: { __type: "order_by" };
36106
- fileUniqueRef: { __type: "order_by" };
36107
- headers: { __type: "order_by" };
36108
- id: { __type: "order_by" };
36109
- index: { __type: "order_by" };
36110
- json: { __type: "order_by" };
36111
- tenant: { __type: "tenant_order_by" };
36112
- tenantId: { __type: "order_by" };
36113
- type: { __type: "order_by" };
36114
- uniqueRef: { __type: "order_by" };
36115
- updatedAt: { __type: "order_by" };
36116
- };
36117
- csv_line_pk_columns_input: { id: { __type: "uuid!" } };
36118
- csv_line_prepend_input: { json: { __type: "jsonb" } };
36119
- csv_line_set_input: {
36120
- connectionId: { __type: "uuid" };
36121
- createdAt: { __type: "timestamptz" };
36122
- csv: { __type: "String" };
36123
- date: { __type: "timestamptz" };
36124
- fileId: { __type: "uuid" };
36125
- fileUniqueRef: { __type: "String" };
36126
- headers: { __type: "String" };
36127
- id: { __type: "uuid" };
36128
- index: { __type: "Int" };
36129
- json: { __type: "jsonb" };
36130
- tenantId: { __type: "uuid" };
36131
- type: { __type: "String" };
36132
- uniqueRef: { __type: "String" };
36133
- updatedAt: { __type: "timestamptz" };
36134
- };
36135
- csv_line_stddev_fields: {
36136
- __typename: { __type: "String!" };
36137
- index: { __type: "Float" };
36138
- };
36139
- csv_line_stddev_order_by: { index: { __type: "order_by" } };
36140
- csv_line_stddev_pop_fields: {
36141
- __typename: { __type: "String!" };
36142
- index: { __type: "Float" };
36143
- };
36144
- csv_line_stddev_pop_order_by: { index: { __type: "order_by" } };
36145
- csv_line_stddev_samp_fields: {
36146
- __typename: { __type: "String!" };
36147
- index: { __type: "Float" };
36148
- };
36149
- csv_line_stddev_samp_order_by: { index: { __type: "order_by" } };
36150
- csv_line_stream_cursor_input: {
36151
- initial_value: { __type: "csv_line_stream_cursor_value_input!" };
36152
- ordering: { __type: "cursor_ordering" };
36153
- };
36154
- csv_line_stream_cursor_value_input: {
36155
- connectionId: { __type: "uuid" };
36156
- createdAt: { __type: "timestamptz" };
36157
- csv: { __type: "String" };
36158
- date: { __type: "timestamptz" };
36159
- fileId: { __type: "uuid" };
36160
- fileUniqueRef: { __type: "String" };
36161
- headers: { __type: "String" };
36162
- id: { __type: "uuid" };
36163
- index: { __type: "Int" };
36164
- json: { __type: "jsonb" };
36165
- tenantId: { __type: "uuid" };
36166
- type: { __type: "String" };
36167
- uniqueRef: { __type: "String" };
36168
- updatedAt: { __type: "timestamptz" };
36169
- };
36170
- csv_line_sum_fields: {
36171
- __typename: { __type: "String!" };
36172
- index: { __type: "Int" };
36173
- };
36174
- csv_line_sum_order_by: { index: { __type: "order_by" } };
36175
- csv_line_updates: {
36176
- _append: { __type: "csv_line_append_input" };
36177
- _delete_at_path: { __type: "csv_line_delete_at_path_input" };
36178
- _delete_elem: { __type: "csv_line_delete_elem_input" };
36179
- _delete_key: { __type: "csv_line_delete_key_input" };
36180
- _inc: { __type: "csv_line_inc_input" };
36181
- _prepend: { __type: "csv_line_prepend_input" };
36182
- _set: { __type: "csv_line_set_input" };
36183
- where: { __type: "csv_line_bool_exp!" };
36184
- };
36185
- csv_line_var_pop_fields: {
36186
- __typename: { __type: "String!" };
36187
- index: { __type: "Float" };
36188
- };
36189
- csv_line_var_pop_order_by: { index: { __type: "order_by" } };
36190
- csv_line_var_samp_fields: {
36191
- __typename: { __type: "String!" };
36192
- index: { __type: "Float" };
36193
- };
36194
- csv_line_var_samp_order_by: { index: { __type: "order_by" } };
36195
- csv_line_variance_fields: {
36196
- __typename: { __type: "String!" };
36197
- index: { __type: "Float" };
36198
- };
36199
- csv_line_variance_order_by: { index: { __type: "order_by" } };
36200
36523
  currency: { __typename: { __type: "String!" }; name: { __type: "String!" } };
36201
36524
  currency_aggregate: {
36202
36525
  __typename: { __type: "String!" };
@@ -42252,6 +42575,11 @@ export declare const generatedSchema: {
42252
42575
  __type: "account_mutation_response";
42253
42576
  __args: { where: "account_bool_exp!" };
42254
42577
  };
42578
+ deleteAction: { __type: "action"; __args: { id: "uuid!" } };
42579
+ deleteActions: {
42580
+ __type: "action_mutation_response";
42581
+ __args: { where: "action_bool_exp!" };
42582
+ };
42255
42583
  deleteActiveStatus: { __type: "activeStatus"; __args: { name: "String!" } };
42256
42584
  deleteActiveStatuses: {
42257
42585
  __type: "activeStatus_mutation_response";
@@ -42381,11 +42709,6 @@ export declare const generatedSchema: {
42381
42709
  __type: "contact_mutation_response";
42382
42710
  __args: { where: "contact_bool_exp!" };
42383
42711
  };
42384
- deleteCsvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
42385
- deleteCsvLines: {
42386
- __type: "csv_line_mutation_response";
42387
- __args: { where: "csv_line_bool_exp!" };
42388
- };
42389
42712
  deleteEmailTemplate: { __type: "emailTemplate"; __args: { id: "uuid!" } };
42390
42713
  deleteEmailTemplateType: {
42391
42714
  __type: "emailTemplateType";
@@ -43187,6 +43510,20 @@ export declare const generatedSchema: {
43187
43510
  on_conflict: "account_on_conflict";
43188
43511
  };
43189
43512
  };
43513
+ insertAction: {
43514
+ __type: "action";
43515
+ __args: {
43516
+ object: "action_insert_input!";
43517
+ on_conflict: "action_on_conflict";
43518
+ };
43519
+ };
43520
+ insertActions: {
43521
+ __type: "action_mutation_response";
43522
+ __args: {
43523
+ objects: "[action_insert_input!]!";
43524
+ on_conflict: "action_on_conflict";
43525
+ };
43526
+ };
43190
43527
  insertActiveStatus: {
43191
43528
  __type: "activeStatus";
43192
43529
  __args: {
@@ -43467,20 +43804,6 @@ export declare const generatedSchema: {
43467
43804
  on_conflict: "contact_on_conflict";
43468
43805
  };
43469
43806
  };
43470
- insertCsvLine: {
43471
- __type: "csv_line";
43472
- __args: {
43473
- object: "csv_line_insert_input!";
43474
- on_conflict: "csv_line_on_conflict";
43475
- };
43476
- };
43477
- insertCsvLines: {
43478
- __type: "csv_line_mutation_response";
43479
- __args: {
43480
- objects: "[csv_line_insert_input!]!";
43481
- on_conflict: "csv_line_on_conflict";
43482
- };
43483
- };
43484
43807
  insertEmailTemplate: {
43485
43808
  __type: "emailTemplate";
43486
43809
  __args: {
@@ -44957,6 +45280,32 @@ export declare const generatedSchema: {
44957
45280
  __type: "account_mutation_response";
44958
45281
  __args: { _set: "account_set_input"; where: "account_bool_exp!" };
44959
45282
  };
45283
+ updateAction: {
45284
+ __type: "action";
45285
+ __args: {
45286
+ _append: "action_append_input";
45287
+ _delete_at_path: "action_delete_at_path_input";
45288
+ _delete_elem: "action_delete_elem_input";
45289
+ _delete_key: "action_delete_key_input";
45290
+ _inc: "action_inc_input";
45291
+ _prepend: "action_prepend_input";
45292
+ _set: "action_set_input";
45293
+ pk_columns: "action_pk_columns_input!";
45294
+ };
45295
+ };
45296
+ updateActions: {
45297
+ __type: "action_mutation_response";
45298
+ __args: {
45299
+ _append: "action_append_input";
45300
+ _delete_at_path: "action_delete_at_path_input";
45301
+ _delete_elem: "action_delete_elem_input";
45302
+ _delete_key: "action_delete_key_input";
45303
+ _inc: "action_inc_input";
45304
+ _prepend: "action_prepend_input";
45305
+ _set: "action_set_input";
45306
+ where: "action_bool_exp!";
45307
+ };
45308
+ };
44960
45309
  updateActiveStatus: {
44961
45310
  __type: "activeStatus";
44962
45311
  __args: {
@@ -45321,36 +45670,6 @@ export declare const generatedSchema: {
45321
45670
  where: "contact_bool_exp!";
45322
45671
  };
45323
45672
  };
45324
- updateCsvLine: {
45325
- __type: "csv_line";
45326
- __args: {
45327
- _append: "csv_line_append_input";
45328
- _delete_at_path: "csv_line_delete_at_path_input";
45329
- _delete_elem: "csv_line_delete_elem_input";
45330
- _delete_key: "csv_line_delete_key_input";
45331
- _inc: "csv_line_inc_input";
45332
- _prepend: "csv_line_prepend_input";
45333
- _set: "csv_line_set_input";
45334
- pk_columns: "csv_line_pk_columns_input!";
45335
- };
45336
- };
45337
- updateCsvLineBatch: {
45338
- __type: "[csv_line_mutation_response]";
45339
- __args: { updates: "[csv_line_updates!]!" };
45340
- };
45341
- updateCsvLines: {
45342
- __type: "csv_line_mutation_response";
45343
- __args: {
45344
- _append: "csv_line_append_input";
45345
- _delete_at_path: "csv_line_delete_at_path_input";
45346
- _delete_elem: "csv_line_delete_elem_input";
45347
- _delete_key: "csv_line_delete_key_input";
45348
- _inc: "csv_line_inc_input";
45349
- _prepend: "csv_line_prepend_input";
45350
- _set: "csv_line_set_input";
45351
- where: "csv_line_bool_exp!";
45352
- };
45353
- };
45354
45673
  updateEmailTemplate: {
45355
45674
  __type: "emailTemplate";
45356
45675
  __args: {
@@ -45785,6 +46104,10 @@ export declare const generatedSchema: {
45785
46104
  __type: "[account_mutation_response]";
45786
46105
  __args: { updates: "[account_updates!]!" };
45787
46106
  };
46107
+ updateManyActions: {
46108
+ __type: "[action_mutation_response]";
46109
+ __args: { updates: "[action_updates!]!" };
46110
+ };
45788
46111
  updateManyActiveStatuses: {
45789
46112
  __type: "[activeStatus_mutation_response]";
45790
46113
  __args: { updates: "[activeStatus_updates!]!" };
@@ -52589,6 +52912,17 @@ export declare const generatedSchema: {
52589
52912
  where: "account_bool_exp";
52590
52913
  };
52591
52914
  };
52915
+ action: { __type: "action"; __args: { id: "uuid!" } };
52916
+ actions: {
52917
+ __type: "[action!]!";
52918
+ __args: {
52919
+ distinct_on: "[action_select_column!]";
52920
+ limit: "Int";
52921
+ offset: "Int";
52922
+ order_by: "[action_order_by!]";
52923
+ where: "action_bool_exp";
52924
+ };
52925
+ };
52592
52926
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
52593
52927
  activeStatusAggregate: {
52594
52928
  __type: "activeStatus_aggregate!";
@@ -52631,6 +52965,16 @@ export declare const generatedSchema: {
52631
52965
  };
52632
52966
  };
52633
52967
  address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
52968
+ aggregateActions: {
52969
+ __type: "action_aggregate!";
52970
+ __args: {
52971
+ distinct_on: "[action_select_column!]";
52972
+ limit: "Int";
52973
+ offset: "Int";
52974
+ order_by: "[action_order_by!]";
52975
+ where: "action_bool_exp";
52976
+ };
52977
+ };
52634
52978
  app: {
52635
52979
  __type: "[app!]!";
52636
52980
  __args: {
@@ -53173,27 +53517,6 @@ export declare const generatedSchema: {
53173
53517
  __type: "core_change_source_link";
53174
53518
  __args: { id: "uuid!" };
53175
53519
  };
53176
- csvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
53177
- csvLineAggregate: {
53178
- __type: "csv_line_aggregate!";
53179
- __args: {
53180
- distinct_on: "[csv_line_select_column!]";
53181
- limit: "Int";
53182
- offset: "Int";
53183
- order_by: "[csv_line_order_by!]";
53184
- where: "csv_line_bool_exp";
53185
- };
53186
- };
53187
- csvLines: {
53188
- __type: "[csv_line!]!";
53189
- __args: {
53190
- distinct_on: "[csv_line_select_column!]";
53191
- limit: "Int";
53192
- offset: "Int";
53193
- order_by: "[csv_line_order_by!]";
53194
- where: "csv_line_bool_exp";
53195
- };
53196
- };
53197
53520
  currency: {
53198
53521
  __type: "[currency!]!";
53199
53522
  __args: {
@@ -61100,6 +61423,17 @@ export declare const generatedSchema: {
61100
61423
  where: "account_bool_exp";
61101
61424
  };
61102
61425
  };
61426
+ action: { __type: "action"; __args: { id: "uuid!" } };
61427
+ actions: {
61428
+ __type: "[action!]!";
61429
+ __args: {
61430
+ distinct_on: "[action_select_column!]";
61431
+ limit: "Int";
61432
+ offset: "Int";
61433
+ order_by: "[action_order_by!]";
61434
+ where: "action_bool_exp";
61435
+ };
61436
+ };
61103
61437
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
61104
61438
  activeStatusAggregate: {
61105
61439
  __type: "activeStatus_aggregate!";
@@ -61158,6 +61492,16 @@ export declare const generatedSchema: {
61158
61492
  where: "address_bool_exp";
61159
61493
  };
61160
61494
  };
61495
+ aggregateActions: {
61496
+ __type: "action_aggregate!";
61497
+ __args: {
61498
+ distinct_on: "[action_select_column!]";
61499
+ limit: "Int";
61500
+ offset: "Int";
61501
+ order_by: "[action_order_by!]";
61502
+ where: "action_bool_exp";
61503
+ };
61504
+ };
61161
61505
  app: {
61162
61506
  __type: "[app!]!";
61163
61507
  __args: {
@@ -61892,35 +62236,6 @@ export declare const generatedSchema: {
61892
62236
  where: "core_change_source_link_bool_exp";
61893
62237
  };
61894
62238
  };
61895
- csvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
61896
- csvLineAggregate: {
61897
- __type: "csv_line_aggregate!";
61898
- __args: {
61899
- distinct_on: "[csv_line_select_column!]";
61900
- limit: "Int";
61901
- offset: "Int";
61902
- order_by: "[csv_line_order_by!]";
61903
- where: "csv_line_bool_exp";
61904
- };
61905
- };
61906
- csvLineStream: {
61907
- __type: "[csv_line!]!";
61908
- __args: {
61909
- batch_size: "Int!";
61910
- cursor: "[csv_line_stream_cursor_input]!";
61911
- where: "csv_line_bool_exp";
61912
- };
61913
- };
61914
- csvLines: {
61915
- __type: "[csv_line!]!";
61916
- __args: {
61917
- distinct_on: "[csv_line_select_column!]";
61918
- limit: "Int";
61919
- offset: "Int";
61920
- order_by: "[csv_line_order_by!]";
61921
- where: "csv_line_bool_exp";
61922
- };
61923
- };
61924
62239
  currency: {
61925
62240
  __type: "[currency!]!";
61926
62241
  __args: {
@@ -64188,6 +64503,14 @@ export declare const generatedSchema: {
64188
64503
  where: "store_mutation_log_bool_exp";
64189
64504
  };
64190
64505
  };
64506
+ streamActions: {
64507
+ __type: "[action!]!";
64508
+ __args: {
64509
+ batch_size: "Int!";
64510
+ cursor: "[action_stream_cursor_input]!";
64511
+ where: "action_bool_exp";
64512
+ };
64513
+ };
64191
64514
  sync: { __type: "sync"; __args: { id: "uuid!" } };
64192
64515
  syncAggregate: {
64193
64516
  __type: "sync_aggregate!";
@@ -66262,26 +66585,6 @@ export declare const generatedSchema: {
66262
66585
  };
66263
66586
  };
66264
66587
  createdAt: { __type: "timestamptz!" };
66265
- csvLines: {
66266
- __type: "[csv_line!]!";
66267
- __args: {
66268
- distinct_on: "[csv_line_select_column!]";
66269
- limit: "Int";
66270
- offset: "Int";
66271
- order_by: "[csv_line_order_by!]";
66272
- where: "csv_line_bool_exp";
66273
- };
66274
- };
66275
- csvLines_aggregate: {
66276
- __type: "csv_line_aggregate!";
66277
- __args: {
66278
- distinct_on: "[csv_line_select_column!]";
66279
- limit: "Int";
66280
- offset: "Int";
66281
- order_by: "[csv_line_order_by!]";
66282
- where: "csv_line_bool_exp";
66283
- };
66284
- };
66285
66588
  defaultCurrency: { __type: "currency_enum" };
66286
66589
  defaultRevenueRecognition: { __type: "accountReservationRevRec_enum" };
66287
66590
  email: { __type: "String" };
@@ -66860,8 +67163,6 @@ export declare const generatedSchema: {
66860
67163
  connections: { __type: "connection_bool_exp" };
66861
67164
  connections_aggregate: { __type: "connection_aggregate_bool_exp" };
66862
67165
  createdAt: { __type: "timestamptz_comparison_exp" };
66863
- csvLines: { __type: "csv_line_bool_exp" };
66864
- csvLines_aggregate: { __type: "csv_line_aggregate_bool_exp" };
66865
67166
  defaultCurrency: { __type: "currency_enum_comparison_exp" };
66866
67167
  defaultRevenueRecognition: {
66867
67168
  __type: "accountReservationRevRec_enum_comparison_exp";
@@ -66997,7 +67298,6 @@ export declare const generatedSchema: {
66997
67298
  companyTaxCode: { __type: "String" };
66998
67299
  connections: { __type: "connection_arr_rel_insert_input" };
66999
67300
  createdAt: { __type: "timestamptz" };
67000
- csvLines: { __type: "csv_line_arr_rel_insert_input" };
67001
67301
  defaultCurrency: { __type: "currency_enum" };
67002
67302
  defaultRevenueRecognition: { __type: "accountReservationRevRec_enum" };
67003
67303
  email: { __type: "String" };
@@ -67261,7 +67561,6 @@ export declare const generatedSchema: {
67261
67561
  companyTaxCode: { __type: "order_by" };
67262
67562
  connections_aggregate: { __type: "connection_aggregate_order_by" };
67263
67563
  createdAt: { __type: "order_by" };
67264
- csvLines_aggregate: { __type: "csv_line_aggregate_order_by" };
67265
67564
  defaultCurrency: { __type: "order_by" };
67266
67565
  defaultRevenueRecognition: { __type: "order_by" };
67267
67566
  email: { __type: "order_by" };
@@ -73287,6 +73586,424 @@ export interface account_mutation_response {
73287
73586
  returning: Array<account>;
73288
73587
  }
73289
73588
 
73589
+ /**
73590
+ * columns and relationships of "core.action"
73591
+ */
73592
+ export interface action {
73593
+ __typename?: "action";
73594
+ appId?: Maybe<ScalarsEnums["String"]>;
73595
+ automationId?: Maybe<ScalarsEnums["uuid"]>;
73596
+ /**
73597
+ * An array relationship
73598
+ */
73599
+ changes: (args?: {
73600
+ /**
73601
+ * distinct select on columns
73602
+ */
73603
+ distinct_on?: Maybe<Array<change_select_column>>;
73604
+ /**
73605
+ * limit the number of rows returned
73606
+ */
73607
+ limit?: Maybe<Scalars["Int"]>;
73608
+ /**
73609
+ * skip the first n rows. Use only with order_by
73610
+ */
73611
+ offset?: Maybe<Scalars["Int"]>;
73612
+ /**
73613
+ * sort the rows by one or more columns
73614
+ */
73615
+ order_by?: Maybe<Array<change_order_by>>;
73616
+ /**
73617
+ * filter the rows returned
73618
+ */
73619
+ where?: Maybe<change_bool_exp>;
73620
+ }) => Array<change>;
73621
+ /**
73622
+ * An aggregate relationship
73623
+ */
73624
+ changes_aggregate: (args?: {
73625
+ /**
73626
+ * distinct select on columns
73627
+ */
73628
+ distinct_on?: Maybe<Array<change_select_column>>;
73629
+ /**
73630
+ * limit the number of rows returned
73631
+ */
73632
+ limit?: Maybe<Scalars["Int"]>;
73633
+ /**
73634
+ * skip the first n rows. Use only with order_by
73635
+ */
73636
+ offset?: Maybe<Scalars["Int"]>;
73637
+ /**
73638
+ * sort the rows by one or more columns
73639
+ */
73640
+ order_by?: Maybe<Array<change_order_by>>;
73641
+ /**
73642
+ * filter the rows returned
73643
+ */
73644
+ where?: Maybe<change_bool_exp>;
73645
+ }) => change_aggregate;
73646
+ /**
73647
+ * An object relationship
73648
+ */
73649
+ connection?: Maybe<connection>;
73650
+ connectionId?: Maybe<ScalarsEnums["uuid"]>;
73651
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73652
+ id: ScalarsEnums["uuid"];
73653
+ inputJson: (args?: {
73654
+ /**
73655
+ * JSON select path
73656
+ */
73657
+ path?: Maybe<Scalars["String"]>;
73658
+ }) => Maybe<ScalarsEnums["jsonb"]>;
73659
+ isCurrent?: Maybe<ScalarsEnums["Boolean"]>;
73660
+ jobId?: Maybe<ScalarsEnums["uuid"]>;
73661
+ jobIndex?: Maybe<ScalarsEnums["Int"]>;
73662
+ jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73663
+ jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73664
+ objectId?: Maybe<ScalarsEnums["uuid"]>;
73665
+ opId?: Maybe<ScalarsEnums["uuid"]>;
73666
+ outputJson: (args?: {
73667
+ /**
73668
+ * JSON select path
73669
+ */
73670
+ path?: Maybe<Scalars["String"]>;
73671
+ }) => Maybe<ScalarsEnums["jsonb"]>;
73672
+ /**
73673
+ * An array relationship
73674
+ */
73675
+ previousActions: (args?: {
73676
+ /**
73677
+ * distinct select on columns
73678
+ */
73679
+ distinct_on?: Maybe<Array<action_select_column>>;
73680
+ /**
73681
+ * limit the number of rows returned
73682
+ */
73683
+ limit?: Maybe<Scalars["Int"]>;
73684
+ /**
73685
+ * skip the first n rows. Use only with order_by
73686
+ */
73687
+ offset?: Maybe<Scalars["Int"]>;
73688
+ /**
73689
+ * sort the rows by one or more columns
73690
+ */
73691
+ order_by?: Maybe<Array<action_order_by>>;
73692
+ /**
73693
+ * filter the rows returned
73694
+ */
73695
+ where?: Maybe<action_bool_exp>;
73696
+ }) => Array<action>;
73697
+ /**
73698
+ * An array relationship
73699
+ */
73700
+ previousActions3: (args?: {
73701
+ /**
73702
+ * distinct select on columns
73703
+ */
73704
+ distinct_on?: Maybe<Array<action_select_column>>;
73705
+ /**
73706
+ * limit the number of rows returned
73707
+ */
73708
+ limit?: Maybe<Scalars["Int"]>;
73709
+ /**
73710
+ * skip the first n rows. Use only with order_by
73711
+ */
73712
+ offset?: Maybe<Scalars["Int"]>;
73713
+ /**
73714
+ * sort the rows by one or more columns
73715
+ */
73716
+ order_by?: Maybe<Array<action_order_by>>;
73717
+ /**
73718
+ * filter the rows returned
73719
+ */
73720
+ where?: Maybe<action_bool_exp>;
73721
+ }) => Array<action>;
73722
+ /**
73723
+ * An aggregate relationship
73724
+ */
73725
+ previousActions3_aggregate: (args?: {
73726
+ /**
73727
+ * distinct select on columns
73728
+ */
73729
+ distinct_on?: Maybe<Array<action_select_column>>;
73730
+ /**
73731
+ * limit the number of rows returned
73732
+ */
73733
+ limit?: Maybe<Scalars["Int"]>;
73734
+ /**
73735
+ * skip the first n rows. Use only with order_by
73736
+ */
73737
+ offset?: Maybe<Scalars["Int"]>;
73738
+ /**
73739
+ * sort the rows by one or more columns
73740
+ */
73741
+ order_by?: Maybe<Array<action_order_by>>;
73742
+ /**
73743
+ * filter the rows returned
73744
+ */
73745
+ where?: Maybe<action_bool_exp>;
73746
+ }) => action_aggregate;
73747
+ /**
73748
+ * An array relationship
73749
+ */
73750
+ previousActionsByType: (args?: {
73751
+ /**
73752
+ * distinct select on columns
73753
+ */
73754
+ distinct_on?: Maybe<Array<action_select_column>>;
73755
+ /**
73756
+ * limit the number of rows returned
73757
+ */
73758
+ limit?: Maybe<Scalars["Int"]>;
73759
+ /**
73760
+ * skip the first n rows. Use only with order_by
73761
+ */
73762
+ offset?: Maybe<Scalars["Int"]>;
73763
+ /**
73764
+ * sort the rows by one or more columns
73765
+ */
73766
+ order_by?: Maybe<Array<action_order_by>>;
73767
+ /**
73768
+ * filter the rows returned
73769
+ */
73770
+ where?: Maybe<action_bool_exp>;
73771
+ }) => Array<action>;
73772
+ /**
73773
+ * An aggregate relationship
73774
+ */
73775
+ previousActionsByType_aggregate: (args?: {
73776
+ /**
73777
+ * distinct select on columns
73778
+ */
73779
+ distinct_on?: Maybe<Array<action_select_column>>;
73780
+ /**
73781
+ * limit the number of rows returned
73782
+ */
73783
+ limit?: Maybe<Scalars["Int"]>;
73784
+ /**
73785
+ * skip the first n rows. Use only with order_by
73786
+ */
73787
+ offset?: Maybe<Scalars["Int"]>;
73788
+ /**
73789
+ * sort the rows by one or more columns
73790
+ */
73791
+ order_by?: Maybe<Array<action_order_by>>;
73792
+ /**
73793
+ * filter the rows returned
73794
+ */
73795
+ where?: Maybe<action_bool_exp>;
73796
+ }) => action_aggregate;
73797
+ /**
73798
+ * An aggregate relationship
73799
+ */
73800
+ previousActions_aggregate: (args?: {
73801
+ /**
73802
+ * distinct select on columns
73803
+ */
73804
+ distinct_on?: Maybe<Array<action_select_column>>;
73805
+ /**
73806
+ * limit the number of rows returned
73807
+ */
73808
+ limit?: Maybe<Scalars["Int"]>;
73809
+ /**
73810
+ * skip the first n rows. Use only with order_by
73811
+ */
73812
+ offset?: Maybe<Scalars["Int"]>;
73813
+ /**
73814
+ * sort the rows by one or more columns
73815
+ */
73816
+ order_by?: Maybe<Array<action_order_by>>;
73817
+ /**
73818
+ * filter the rows returned
73819
+ */
73820
+ where?: Maybe<action_bool_exp>;
73821
+ }) => action_aggregate;
73822
+ refs: (args?: {
73823
+ /**
73824
+ * JSON select path
73825
+ */
73826
+ path?: Maybe<Scalars["String"]>;
73827
+ }) => Maybe<ScalarsEnums["jsonb"]>;
73828
+ schemaId?: Maybe<ScalarsEnums["uuid"]>;
73829
+ /**
73830
+ * An object relationship
73831
+ */
73832
+ source?: Maybe<source>;
73833
+ sourceId?: Maybe<ScalarsEnums["uuid"]>;
73834
+ status?: Maybe<ScalarsEnums["String"]>;
73835
+ /**
73836
+ * An object relationship
73837
+ */
73838
+ tenant?: Maybe<tenant>;
73839
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
73840
+ title?: Maybe<ScalarsEnums["String"]>;
73841
+ type?: Maybe<ScalarsEnums["String"]>;
73842
+ uniqueRef?: Maybe<ScalarsEnums["String"]>;
73843
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73844
+ }
73845
+
73846
+ /**
73847
+ * aggregated selection of "core.action"
73848
+ */
73849
+ export interface action_aggregate {
73850
+ __typename?: "action_aggregate";
73851
+ aggregate?: Maybe<action_aggregate_fields>;
73852
+ nodes: Array<action>;
73853
+ }
73854
+
73855
+ /**
73856
+ * aggregate fields of "core.action"
73857
+ */
73858
+ export interface action_aggregate_fields {
73859
+ __typename?: "action_aggregate_fields";
73860
+ avg?: Maybe<action_avg_fields>;
73861
+ count: (args?: {
73862
+ columns?: Maybe<Array<action_select_column>>;
73863
+ distinct?: Maybe<Scalars["Boolean"]>;
73864
+ }) => ScalarsEnums["Int"];
73865
+ max?: Maybe<action_max_fields>;
73866
+ min?: Maybe<action_min_fields>;
73867
+ stddev?: Maybe<action_stddev_fields>;
73868
+ stddev_pop?: Maybe<action_stddev_pop_fields>;
73869
+ stddev_samp?: Maybe<action_stddev_samp_fields>;
73870
+ sum?: Maybe<action_sum_fields>;
73871
+ var_pop?: Maybe<action_var_pop_fields>;
73872
+ var_samp?: Maybe<action_var_samp_fields>;
73873
+ variance?: Maybe<action_variance_fields>;
73874
+ }
73875
+
73876
+ /**
73877
+ * aggregate avg on columns
73878
+ */
73879
+ export interface action_avg_fields {
73880
+ __typename?: "action_avg_fields";
73881
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73882
+ }
73883
+
73884
+ /**
73885
+ * aggregate max on columns
73886
+ */
73887
+ export interface action_max_fields {
73888
+ __typename?: "action_max_fields";
73889
+ appId?: Maybe<ScalarsEnums["String"]>;
73890
+ automationId?: Maybe<ScalarsEnums["uuid"]>;
73891
+ connectionId?: Maybe<ScalarsEnums["uuid"]>;
73892
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73893
+ id?: Maybe<ScalarsEnums["uuid"]>;
73894
+ jobId?: Maybe<ScalarsEnums["uuid"]>;
73895
+ jobIndex?: Maybe<ScalarsEnums["Int"]>;
73896
+ jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73897
+ jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73898
+ objectId?: Maybe<ScalarsEnums["uuid"]>;
73899
+ opId?: Maybe<ScalarsEnums["uuid"]>;
73900
+ schemaId?: Maybe<ScalarsEnums["uuid"]>;
73901
+ sourceId?: Maybe<ScalarsEnums["uuid"]>;
73902
+ status?: Maybe<ScalarsEnums["String"]>;
73903
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
73904
+ title?: Maybe<ScalarsEnums["String"]>;
73905
+ type?: Maybe<ScalarsEnums["String"]>;
73906
+ uniqueRef?: Maybe<ScalarsEnums["String"]>;
73907
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73908
+ }
73909
+
73910
+ /**
73911
+ * aggregate min on columns
73912
+ */
73913
+ export interface action_min_fields {
73914
+ __typename?: "action_min_fields";
73915
+ appId?: Maybe<ScalarsEnums["String"]>;
73916
+ automationId?: Maybe<ScalarsEnums["uuid"]>;
73917
+ connectionId?: Maybe<ScalarsEnums["uuid"]>;
73918
+ createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73919
+ id?: Maybe<ScalarsEnums["uuid"]>;
73920
+ jobId?: Maybe<ScalarsEnums["uuid"]>;
73921
+ jobIndex?: Maybe<ScalarsEnums["Int"]>;
73922
+ jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73923
+ jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73924
+ objectId?: Maybe<ScalarsEnums["uuid"]>;
73925
+ opId?: Maybe<ScalarsEnums["uuid"]>;
73926
+ schemaId?: Maybe<ScalarsEnums["uuid"]>;
73927
+ sourceId?: Maybe<ScalarsEnums["uuid"]>;
73928
+ status?: Maybe<ScalarsEnums["String"]>;
73929
+ tenantId?: Maybe<ScalarsEnums["uuid"]>;
73930
+ title?: Maybe<ScalarsEnums["String"]>;
73931
+ type?: Maybe<ScalarsEnums["String"]>;
73932
+ uniqueRef?: Maybe<ScalarsEnums["String"]>;
73933
+ updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73934
+ }
73935
+
73936
+ /**
73937
+ * response of any mutation on the table "core.action"
73938
+ */
73939
+ export interface action_mutation_response {
73940
+ __typename?: "action_mutation_response";
73941
+ /**
73942
+ * number of rows affected by the mutation
73943
+ */
73944
+ affected_rows: ScalarsEnums["Int"];
73945
+ /**
73946
+ * data from the rows affected by the mutation
73947
+ */
73948
+ returning: Array<action>;
73949
+ }
73950
+
73951
+ /**
73952
+ * aggregate stddev on columns
73953
+ */
73954
+ export interface action_stddev_fields {
73955
+ __typename?: "action_stddev_fields";
73956
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73957
+ }
73958
+
73959
+ /**
73960
+ * aggregate stddev_pop on columns
73961
+ */
73962
+ export interface action_stddev_pop_fields {
73963
+ __typename?: "action_stddev_pop_fields";
73964
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73965
+ }
73966
+
73967
+ /**
73968
+ * aggregate stddev_samp on columns
73969
+ */
73970
+ export interface action_stddev_samp_fields {
73971
+ __typename?: "action_stddev_samp_fields";
73972
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73973
+ }
73974
+
73975
+ /**
73976
+ * aggregate sum on columns
73977
+ */
73978
+ export interface action_sum_fields {
73979
+ __typename?: "action_sum_fields";
73980
+ jobIndex?: Maybe<ScalarsEnums["Int"]>;
73981
+ }
73982
+
73983
+ /**
73984
+ * aggregate var_pop on columns
73985
+ */
73986
+ export interface action_var_pop_fields {
73987
+ __typename?: "action_var_pop_fields";
73988
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73989
+ }
73990
+
73991
+ /**
73992
+ * aggregate var_samp on columns
73993
+ */
73994
+ export interface action_var_samp_fields {
73995
+ __typename?: "action_var_samp_fields";
73996
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
73997
+ }
73998
+
73999
+ /**
74000
+ * aggregate variance on columns
74001
+ */
74002
+ export interface action_variance_fields {
74003
+ __typename?: "action_variance_fields";
74004
+ jobIndex?: Maybe<ScalarsEnums["Float"]>;
74005
+ }
74006
+
73290
74007
  /**
73291
74008
  * enum table to track basic active/inactive status
73292
74009
  */
@@ -76655,56 +77372,6 @@ export interface connection {
76655
77372
  */
76656
77373
  path?: Maybe<Scalars["String"]>;
76657
77374
  }) => Maybe<ScalarsEnums["jsonb"]>;
76658
- /**
76659
- * An array relationship
76660
- */
76661
- csvLines: (args?: {
76662
- /**
76663
- * distinct select on columns
76664
- */
76665
- distinct_on?: Maybe<Array<csv_line_select_column>>;
76666
- /**
76667
- * limit the number of rows returned
76668
- */
76669
- limit?: Maybe<Scalars["Int"]>;
76670
- /**
76671
- * skip the first n rows. Use only with order_by
76672
- */
76673
- offset?: Maybe<Scalars["Int"]>;
76674
- /**
76675
- * sort the rows by one or more columns
76676
- */
76677
- order_by?: Maybe<Array<csv_line_order_by>>;
76678
- /**
76679
- * filter the rows returned
76680
- */
76681
- where?: Maybe<csv_line_bool_exp>;
76682
- }) => Array<csv_line>;
76683
- /**
76684
- * An aggregate relationship
76685
- */
76686
- csvLines_aggregate: (args?: {
76687
- /**
76688
- * distinct select on columns
76689
- */
76690
- distinct_on?: Maybe<Array<csv_line_select_column>>;
76691
- /**
76692
- * limit the number of rows returned
76693
- */
76694
- limit?: Maybe<Scalars["Int"]>;
76695
- /**
76696
- * skip the first n rows. Use only with order_by
76697
- */
76698
- offset?: Maybe<Scalars["Int"]>;
76699
- /**
76700
- * sort the rows by one or more columns
76701
- */
76702
- order_by?: Maybe<Array<csv_line_order_by>>;
76703
- /**
76704
- * filter the rows returned
76705
- */
76706
- where?: Maybe<csv_line_bool_exp>;
76707
- }) => csv_line_aggregate;
76708
77375
  disabled?: Maybe<ScalarsEnums["Boolean"]>;
76709
77376
  fetchNext?: Maybe<ScalarsEnums["timestamptz"]>;
76710
77377
  fetchStatus: ScalarsEnums["syncStatus_enum"];
@@ -78096,193 +78763,6 @@ export interface core_change_source_link_mutation_response {
78096
78763
  returning: Array<core_change_source_link>;
78097
78764
  }
78098
78765
 
78099
- /**
78100
- * columns and relationships of "csv_line"
78101
- */
78102
- export interface csv_line {
78103
- __typename?: "csv_line";
78104
- /**
78105
- * An object relationship
78106
- */
78107
- connection: connection;
78108
- connectionId: ScalarsEnums["uuid"];
78109
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
78110
- csv: ScalarsEnums["String"];
78111
- date: ScalarsEnums["timestamptz"];
78112
- /**
78113
- * An object relationship
78114
- */
78115
- file?: Maybe<file_storage>;
78116
- fileId?: Maybe<ScalarsEnums["uuid"]>;
78117
- fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
78118
- headers?: Maybe<ScalarsEnums["String"]>;
78119
- id: ScalarsEnums["uuid"];
78120
- index?: Maybe<ScalarsEnums["Int"]>;
78121
- json: (args?: {
78122
- /**
78123
- * JSON select path
78124
- */
78125
- path?: Maybe<Scalars["String"]>;
78126
- }) => Maybe<ScalarsEnums["jsonb"]>;
78127
- /**
78128
- * An object relationship
78129
- */
78130
- tenant: tenant;
78131
- tenantId: ScalarsEnums["uuid"];
78132
- type: ScalarsEnums["String"];
78133
- uniqueRef: ScalarsEnums["String"];
78134
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
78135
- }
78136
-
78137
- /**
78138
- * aggregated selection of "csv_line"
78139
- */
78140
- export interface csv_line_aggregate {
78141
- __typename?: "csv_line_aggregate";
78142
- aggregate?: Maybe<csv_line_aggregate_fields>;
78143
- nodes: Array<csv_line>;
78144
- }
78145
-
78146
- /**
78147
- * aggregate fields of "csv_line"
78148
- */
78149
- export interface csv_line_aggregate_fields {
78150
- __typename?: "csv_line_aggregate_fields";
78151
- avg?: Maybe<csv_line_avg_fields>;
78152
- count: (args?: {
78153
- columns?: Maybe<Array<csv_line_select_column>>;
78154
- distinct?: Maybe<Scalars["Boolean"]>;
78155
- }) => ScalarsEnums["Int"];
78156
- max?: Maybe<csv_line_max_fields>;
78157
- min?: Maybe<csv_line_min_fields>;
78158
- stddev?: Maybe<csv_line_stddev_fields>;
78159
- stddev_pop?: Maybe<csv_line_stddev_pop_fields>;
78160
- stddev_samp?: Maybe<csv_line_stddev_samp_fields>;
78161
- sum?: Maybe<csv_line_sum_fields>;
78162
- var_pop?: Maybe<csv_line_var_pop_fields>;
78163
- var_samp?: Maybe<csv_line_var_samp_fields>;
78164
- variance?: Maybe<csv_line_variance_fields>;
78165
- }
78166
-
78167
- /**
78168
- * aggregate avg on columns
78169
- */
78170
- export interface csv_line_avg_fields {
78171
- __typename?: "csv_line_avg_fields";
78172
- index?: Maybe<ScalarsEnums["Float"]>;
78173
- }
78174
-
78175
- /**
78176
- * aggregate max on columns
78177
- */
78178
- export interface csv_line_max_fields {
78179
- __typename?: "csv_line_max_fields";
78180
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
78181
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
78182
- csv?: Maybe<ScalarsEnums["String"]>;
78183
- date?: Maybe<ScalarsEnums["timestamptz"]>;
78184
- fileId?: Maybe<ScalarsEnums["uuid"]>;
78185
- fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
78186
- headers?: Maybe<ScalarsEnums["String"]>;
78187
- id?: Maybe<ScalarsEnums["uuid"]>;
78188
- index?: Maybe<ScalarsEnums["Int"]>;
78189
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
78190
- type?: Maybe<ScalarsEnums["String"]>;
78191
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
78192
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
78193
- }
78194
-
78195
- /**
78196
- * aggregate min on columns
78197
- */
78198
- export interface csv_line_min_fields {
78199
- __typename?: "csv_line_min_fields";
78200
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
78201
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
78202
- csv?: Maybe<ScalarsEnums["String"]>;
78203
- date?: Maybe<ScalarsEnums["timestamptz"]>;
78204
- fileId?: Maybe<ScalarsEnums["uuid"]>;
78205
- fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
78206
- headers?: Maybe<ScalarsEnums["String"]>;
78207
- id?: Maybe<ScalarsEnums["uuid"]>;
78208
- index?: Maybe<ScalarsEnums["Int"]>;
78209
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
78210
- type?: Maybe<ScalarsEnums["String"]>;
78211
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
78212
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
78213
- }
78214
-
78215
- /**
78216
- * response of any mutation on the table "csv_line"
78217
- */
78218
- export interface csv_line_mutation_response {
78219
- __typename?: "csv_line_mutation_response";
78220
- /**
78221
- * number of rows affected by the mutation
78222
- */
78223
- affected_rows: ScalarsEnums["Int"];
78224
- /**
78225
- * data from the rows affected by the mutation
78226
- */
78227
- returning: Array<csv_line>;
78228
- }
78229
-
78230
- /**
78231
- * aggregate stddev on columns
78232
- */
78233
- export interface csv_line_stddev_fields {
78234
- __typename?: "csv_line_stddev_fields";
78235
- index?: Maybe<ScalarsEnums["Float"]>;
78236
- }
78237
-
78238
- /**
78239
- * aggregate stddev_pop on columns
78240
- */
78241
- export interface csv_line_stddev_pop_fields {
78242
- __typename?: "csv_line_stddev_pop_fields";
78243
- index?: Maybe<ScalarsEnums["Float"]>;
78244
- }
78245
-
78246
- /**
78247
- * aggregate stddev_samp on columns
78248
- */
78249
- export interface csv_line_stddev_samp_fields {
78250
- __typename?: "csv_line_stddev_samp_fields";
78251
- index?: Maybe<ScalarsEnums["Float"]>;
78252
- }
78253
-
78254
- /**
78255
- * aggregate sum on columns
78256
- */
78257
- export interface csv_line_sum_fields {
78258
- __typename?: "csv_line_sum_fields";
78259
- index?: Maybe<ScalarsEnums["Int"]>;
78260
- }
78261
-
78262
- /**
78263
- * aggregate var_pop on columns
78264
- */
78265
- export interface csv_line_var_pop_fields {
78266
- __typename?: "csv_line_var_pop_fields";
78267
- index?: Maybe<ScalarsEnums["Float"]>;
78268
- }
78269
-
78270
- /**
78271
- * aggregate var_samp on columns
78272
- */
78273
- export interface csv_line_var_samp_fields {
78274
- __typename?: "csv_line_var_samp_fields";
78275
- index?: Maybe<ScalarsEnums["Float"]>;
78276
- }
78277
-
78278
- /**
78279
- * aggregate variance on columns
78280
- */
78281
- export interface csv_line_variance_fields {
78282
- __typename?: "csv_line_variance_fields";
78283
- index?: Maybe<ScalarsEnums["Float"]>;
78284
- }
78285
-
78286
78766
  /**
78287
78767
  * columns and relationships of "currency"
78288
78768
  */
@@ -83053,6 +83533,10 @@ export interface Mutation {
83053
83533
  deleteAccounts: (args: {
83054
83534
  where: account_bool_exp;
83055
83535
  }) => Maybe<account_mutation_response>;
83536
+ deleteAction: (args: { id: Scalars["uuid"] }) => Maybe<action>;
83537
+ deleteActions: (args: {
83538
+ where: action_bool_exp;
83539
+ }) => Maybe<action_mutation_response>;
83056
83540
  deleteActiveStatus: (args: {
83057
83541
  name: Scalars["String"];
83058
83542
  }) => Maybe<activeStatus>;
@@ -83155,10 +83639,6 @@ export interface Mutation {
83155
83639
  deleteContacts: (args: {
83156
83640
  where: contact_bool_exp;
83157
83641
  }) => Maybe<contact_mutation_response>;
83158
- deleteCsvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
83159
- deleteCsvLines: (args: {
83160
- where: csv_line_bool_exp;
83161
- }) => Maybe<csv_line_mutation_response>;
83162
83642
  deleteEmailTemplate: (args: { id: Scalars["uuid"] }) => Maybe<emailTemplate>;
83163
83643
  deleteEmailTemplateType: (args: {
83164
83644
  name: Scalars["String"];
@@ -83740,6 +84220,14 @@ export interface Mutation {
83740
84220
  objects: Array<account_insert_input>;
83741
84221
  on_conflict?: Maybe<account_on_conflict>;
83742
84222
  }) => Maybe<account_mutation_response>;
84223
+ insertAction: (args: {
84224
+ object: action_insert_input;
84225
+ on_conflict?: Maybe<action_on_conflict>;
84226
+ }) => Maybe<action>;
84227
+ insertActions: (args: {
84228
+ objects: Array<action_insert_input>;
84229
+ on_conflict?: Maybe<action_on_conflict>;
84230
+ }) => Maybe<action_mutation_response>;
83743
84231
  insertActiveStatus: (args: {
83744
84232
  object: activeStatus_insert_input;
83745
84233
  on_conflict?: Maybe<activeStatus_on_conflict>;
@@ -83900,14 +84388,6 @@ export interface Mutation {
83900
84388
  objects: Array<contact_insert_input>;
83901
84389
  on_conflict?: Maybe<contact_on_conflict>;
83902
84390
  }) => Maybe<contact_mutation_response>;
83903
- insertCsvLine: (args: {
83904
- object: csv_line_insert_input;
83905
- on_conflict?: Maybe<csv_line_on_conflict>;
83906
- }) => Maybe<csv_line>;
83907
- insertCsvLines: (args: {
83908
- objects: Array<csv_line_insert_input>;
83909
- on_conflict?: Maybe<csv_line_on_conflict>;
83910
- }) => Maybe<csv_line_mutation_response>;
83911
84391
  insertEmailTemplate: (args: {
83912
84392
  object: emailTemplate_insert_input;
83913
84393
  on_conflict?: Maybe<emailTemplate_on_conflict>;
@@ -84771,6 +85251,26 @@ export interface Mutation {
84771
85251
  _set?: Maybe<account_set_input>;
84772
85252
  where: account_bool_exp;
84773
85253
  }) => Maybe<account_mutation_response>;
85254
+ updateAction: (args: {
85255
+ _append?: Maybe<action_append_input>;
85256
+ _delete_at_path?: Maybe<action_delete_at_path_input>;
85257
+ _delete_elem?: Maybe<action_delete_elem_input>;
85258
+ _delete_key?: Maybe<action_delete_key_input>;
85259
+ _inc?: Maybe<action_inc_input>;
85260
+ _prepend?: Maybe<action_prepend_input>;
85261
+ _set?: Maybe<action_set_input>;
85262
+ pk_columns: action_pk_columns_input;
85263
+ }) => Maybe<action>;
85264
+ updateActions: (args: {
85265
+ _append?: Maybe<action_append_input>;
85266
+ _delete_at_path?: Maybe<action_delete_at_path_input>;
85267
+ _delete_elem?: Maybe<action_delete_elem_input>;
85268
+ _delete_key?: Maybe<action_delete_key_input>;
85269
+ _inc?: Maybe<action_inc_input>;
85270
+ _prepend?: Maybe<action_prepend_input>;
85271
+ _set?: Maybe<action_set_input>;
85272
+ where: action_bool_exp;
85273
+ }) => Maybe<action_mutation_response>;
84774
85274
  updateActiveStatus: (args: {
84775
85275
  _set?: Maybe<activeStatus_set_input>;
84776
85276
  pk_columns: activeStatus_pk_columns_input;
@@ -85020,29 +85520,6 @@ export interface Mutation {
85020
85520
  _set?: Maybe<contact_set_input>;
85021
85521
  where: contact_bool_exp;
85022
85522
  }) => Maybe<contact_mutation_response>;
85023
- updateCsvLine: (args: {
85024
- _append?: Maybe<csv_line_append_input>;
85025
- _delete_at_path?: Maybe<csv_line_delete_at_path_input>;
85026
- _delete_elem?: Maybe<csv_line_delete_elem_input>;
85027
- _delete_key?: Maybe<csv_line_delete_key_input>;
85028
- _inc?: Maybe<csv_line_inc_input>;
85029
- _prepend?: Maybe<csv_line_prepend_input>;
85030
- _set?: Maybe<csv_line_set_input>;
85031
- pk_columns: csv_line_pk_columns_input;
85032
- }) => Maybe<csv_line>;
85033
- updateCsvLineBatch: (args: {
85034
- updates: Array<csv_line_updates>;
85035
- }) => Maybe<Array<Maybe<csv_line_mutation_response>>>;
85036
- updateCsvLines: (args: {
85037
- _append?: Maybe<csv_line_append_input>;
85038
- _delete_at_path?: Maybe<csv_line_delete_at_path_input>;
85039
- _delete_elem?: Maybe<csv_line_delete_elem_input>;
85040
- _delete_key?: Maybe<csv_line_delete_key_input>;
85041
- _inc?: Maybe<csv_line_inc_input>;
85042
- _prepend?: Maybe<csv_line_prepend_input>;
85043
- _set?: Maybe<csv_line_set_input>;
85044
- where: csv_line_bool_exp;
85045
- }) => Maybe<csv_line_mutation_response>;
85046
85523
  updateEmailTemplate: (args: {
85047
85524
  _append?: Maybe<emailTemplate_append_input>;
85048
85525
  _delete_at_path?: Maybe<emailTemplate_delete_at_path_input>;
@@ -85324,6 +85801,9 @@ export interface Mutation {
85324
85801
  updateManyAccounts: (args: {
85325
85802
  updates: Array<account_updates>;
85326
85803
  }) => Maybe<Array<Maybe<account_mutation_response>>>;
85804
+ updateManyActions: (args: {
85805
+ updates: Array<action_updates>;
85806
+ }) => Maybe<Array<Maybe<action_mutation_response>>>;
85327
85807
  updateManyActiveStatuses: (args: {
85328
85808
  updates: Array<activeStatus_updates>;
85329
85809
  }) => Maybe<Array<Maybe<activeStatus_mutation_response>>>;
@@ -91051,6 +91531,14 @@ export interface Query {
91051
91531
  order_by?: Maybe<Array<account_order_by>>;
91052
91532
  where?: Maybe<account_bool_exp>;
91053
91533
  }) => Array<account>;
91534
+ action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
91535
+ actions: (args?: {
91536
+ distinct_on?: Maybe<Array<action_select_column>>;
91537
+ limit?: Maybe<Scalars["Int"]>;
91538
+ offset?: Maybe<Scalars["Int"]>;
91539
+ order_by?: Maybe<Array<action_order_by>>;
91540
+ where?: Maybe<action_bool_exp>;
91541
+ }) => Array<action>;
91054
91542
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
91055
91543
  activeStatusAggregate: (args?: {
91056
91544
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -91081,6 +91569,13 @@ export interface Query {
91081
91569
  where?: Maybe<address_bool_exp>;
91082
91570
  }) => address_aggregate;
91083
91571
  address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
91572
+ aggregateActions: (args?: {
91573
+ distinct_on?: Maybe<Array<action_select_column>>;
91574
+ limit?: Maybe<Scalars["Int"]>;
91575
+ offset?: Maybe<Scalars["Int"]>;
91576
+ order_by?: Maybe<Array<action_order_by>>;
91577
+ where?: Maybe<action_bool_exp>;
91578
+ }) => action_aggregate;
91084
91579
  app: (args?: {
91085
91580
  distinct_on?: Maybe<Array<app_select_column>>;
91086
91581
  limit?: Maybe<Scalars["Int"]>;
@@ -91469,21 +91964,6 @@ export interface Query {
91469
91964
  core_change_source_link_by_pk: (args: {
91470
91965
  id: Scalars["uuid"];
91471
91966
  }) => Maybe<core_change_source_link>;
91472
- csvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
91473
- csvLineAggregate: (args?: {
91474
- distinct_on?: Maybe<Array<csv_line_select_column>>;
91475
- limit?: Maybe<Scalars["Int"]>;
91476
- offset?: Maybe<Scalars["Int"]>;
91477
- order_by?: Maybe<Array<csv_line_order_by>>;
91478
- where?: Maybe<csv_line_bool_exp>;
91479
- }) => csv_line_aggregate;
91480
- csvLines: (args?: {
91481
- distinct_on?: Maybe<Array<csv_line_select_column>>;
91482
- limit?: Maybe<Scalars["Int"]>;
91483
- offset?: Maybe<Scalars["Int"]>;
91484
- order_by?: Maybe<Array<csv_line_order_by>>;
91485
- where?: Maybe<csv_line_bool_exp>;
91486
- }) => Array<csv_line>;
91487
91967
  currency: (args?: {
91488
91968
  distinct_on?: Maybe<Array<currency_select_column>>;
91489
91969
  limit?: Maybe<Scalars["Int"]>;
@@ -97835,6 +98315,14 @@ export interface Subscription {
97835
98315
  order_by?: Maybe<Array<account_order_by>>;
97836
98316
  where?: Maybe<account_bool_exp>;
97837
98317
  }) => Array<account>;
98318
+ action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
98319
+ actions: (args?: {
98320
+ distinct_on?: Maybe<Array<action_select_column>>;
98321
+ limit?: Maybe<Scalars["Int"]>;
98322
+ offset?: Maybe<Scalars["Int"]>;
98323
+ order_by?: Maybe<Array<action_order_by>>;
98324
+ where?: Maybe<action_bool_exp>;
98325
+ }) => Array<action>;
97838
98326
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
97839
98327
  activeStatusAggregate: (args?: {
97840
98328
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -97875,6 +98363,13 @@ export interface Subscription {
97875
98363
  cursor: Array<Maybe<address_stream_cursor_input>>;
97876
98364
  where?: Maybe<address_bool_exp>;
97877
98365
  }) => Array<address>;
98366
+ aggregateActions: (args?: {
98367
+ distinct_on?: Maybe<Array<action_select_column>>;
98368
+ limit?: Maybe<Scalars["Int"]>;
98369
+ offset?: Maybe<Scalars["Int"]>;
98370
+ order_by?: Maybe<Array<action_order_by>>;
98371
+ where?: Maybe<action_bool_exp>;
98372
+ }) => action_aggregate;
97878
98373
  app: (args?: {
97879
98374
  distinct_on?: Maybe<Array<app_select_column>>;
97880
98375
  limit?: Maybe<Scalars["Int"]>;
@@ -98383,26 +98878,6 @@ export interface Subscription {
98383
98878
  cursor: Array<Maybe<core_change_source_link_stream_cursor_input>>;
98384
98879
  where?: Maybe<core_change_source_link_bool_exp>;
98385
98880
  }) => Array<core_change_source_link>;
98386
- csvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
98387
- csvLineAggregate: (args?: {
98388
- distinct_on?: Maybe<Array<csv_line_select_column>>;
98389
- limit?: Maybe<Scalars["Int"]>;
98390
- offset?: Maybe<Scalars["Int"]>;
98391
- order_by?: Maybe<Array<csv_line_order_by>>;
98392
- where?: Maybe<csv_line_bool_exp>;
98393
- }) => csv_line_aggregate;
98394
- csvLineStream: (args: {
98395
- batch_size: Scalars["Int"];
98396
- cursor: Array<Maybe<csv_line_stream_cursor_input>>;
98397
- where?: Maybe<csv_line_bool_exp>;
98398
- }) => Array<csv_line>;
98399
- csvLines: (args?: {
98400
- distinct_on?: Maybe<Array<csv_line_select_column>>;
98401
- limit?: Maybe<Scalars["Int"]>;
98402
- offset?: Maybe<Scalars["Int"]>;
98403
- order_by?: Maybe<Array<csv_line_order_by>>;
98404
- where?: Maybe<csv_line_bool_exp>;
98405
- }) => Array<csv_line>;
98406
98881
  currency: (args?: {
98407
98882
  distinct_on?: Maybe<Array<currency_select_column>>;
98408
98883
  limit?: Maybe<Scalars["Int"]>;
@@ -100028,6 +100503,11 @@ export interface Subscription {
100028
100503
  cursor: Array<Maybe<store_mutation_log_stream_cursor_input>>;
100029
100504
  where?: Maybe<store_mutation_log_bool_exp>;
100030
100505
  }) => Array<store_mutation_log>;
100506
+ streamActions: (args: {
100507
+ batch_size: Scalars["Int"];
100508
+ cursor: Array<Maybe<action_stream_cursor_input>>;
100509
+ where?: Maybe<action_bool_exp>;
100510
+ }) => Array<action>;
100031
100511
  sync: (args: { id: Scalars["uuid"] }) => Maybe<sync>;
100032
100512
  syncAggregate: (args?: {
100033
100513
  distinct_on?: Maybe<Array<sync_select_column>>;
@@ -101714,56 +102194,6 @@ export interface tenant {
101714
102194
  where?: Maybe<connection_bool_exp>;
101715
102195
  }) => connection_aggregate;
101716
102196
  createdAt: ScalarsEnums["timestamptz"];
101717
- /**
101718
- * An array relationship
101719
- */
101720
- csvLines: (args?: {
101721
- /**
101722
- * distinct select on columns
101723
- */
101724
- distinct_on?: Maybe<Array<csv_line_select_column>>;
101725
- /**
101726
- * limit the number of rows returned
101727
- */
101728
- limit?: Maybe<Scalars["Int"]>;
101729
- /**
101730
- * skip the first n rows. Use only with order_by
101731
- */
101732
- offset?: Maybe<Scalars["Int"]>;
101733
- /**
101734
- * sort the rows by one or more columns
101735
- */
101736
- order_by?: Maybe<Array<csv_line_order_by>>;
101737
- /**
101738
- * filter the rows returned
101739
- */
101740
- where?: Maybe<csv_line_bool_exp>;
101741
- }) => Array<csv_line>;
101742
- /**
101743
- * An aggregate relationship
101744
- */
101745
- csvLines_aggregate: (args?: {
101746
- /**
101747
- * distinct select on columns
101748
- */
101749
- distinct_on?: Maybe<Array<csv_line_select_column>>;
101750
- /**
101751
- * limit the number of rows returned
101752
- */
101753
- limit?: Maybe<Scalars["Int"]>;
101754
- /**
101755
- * skip the first n rows. Use only with order_by
101756
- */
101757
- offset?: Maybe<Scalars["Int"]>;
101758
- /**
101759
- * sort the rows by one or more columns
101760
- */
101761
- order_by?: Maybe<Array<csv_line_order_by>>;
101762
- /**
101763
- * filter the rows returned
101764
- */
101765
- where?: Maybe<csv_line_bool_exp>;
101766
- }) => csv_line_aggregate;
101767
102197
  defaultCurrency?: Maybe<ScalarsEnums["currency_enum"]>;
101768
102198
  defaultRevenueRecognition?: Maybe<
101769
102199
  ScalarsEnums["accountReservationRevRec_enum"]
@@ -106817,6 +107247,20 @@ export interface SchemaObjectTypes {
106817
107247
  account_max_fields: account_max_fields;
106818
107248
  account_min_fields: account_min_fields;
106819
107249
  account_mutation_response: account_mutation_response;
107250
+ action: action;
107251
+ action_aggregate: action_aggregate;
107252
+ action_aggregate_fields: action_aggregate_fields;
107253
+ action_avg_fields: action_avg_fields;
107254
+ action_max_fields: action_max_fields;
107255
+ action_min_fields: action_min_fields;
107256
+ action_mutation_response: action_mutation_response;
107257
+ action_stddev_fields: action_stddev_fields;
107258
+ action_stddev_pop_fields: action_stddev_pop_fields;
107259
+ action_stddev_samp_fields: action_stddev_samp_fields;
107260
+ action_sum_fields: action_sum_fields;
107261
+ action_var_pop_fields: action_var_pop_fields;
107262
+ action_var_samp_fields: action_var_samp_fields;
107263
+ action_variance_fields: action_variance_fields;
106820
107264
  activeStatus: activeStatus;
106821
107265
  activeStatus_aggregate: activeStatus_aggregate;
106822
107266
  activeStatus_aggregate_fields: activeStatus_aggregate_fields;
@@ -107006,20 +107450,6 @@ export interface SchemaObjectTypes {
107006
107450
  core_change_source_link_max_fields: core_change_source_link_max_fields;
107007
107451
  core_change_source_link_min_fields: core_change_source_link_min_fields;
107008
107452
  core_change_source_link_mutation_response: core_change_source_link_mutation_response;
107009
- csv_line: csv_line;
107010
- csv_line_aggregate: csv_line_aggregate;
107011
- csv_line_aggregate_fields: csv_line_aggregate_fields;
107012
- csv_line_avg_fields: csv_line_avg_fields;
107013
- csv_line_max_fields: csv_line_max_fields;
107014
- csv_line_min_fields: csv_line_min_fields;
107015
- csv_line_mutation_response: csv_line_mutation_response;
107016
- csv_line_stddev_fields: csv_line_stddev_fields;
107017
- csv_line_stddev_pop_fields: csv_line_stddev_pop_fields;
107018
- csv_line_stddev_samp_fields: csv_line_stddev_samp_fields;
107019
- csv_line_sum_fields: csv_line_sum_fields;
107020
- csv_line_var_pop_fields: csv_line_var_pop_fields;
107021
- csv_line_var_samp_fields: csv_line_var_samp_fields;
107022
- csv_line_variance_fields: csv_line_variance_fields;
107023
107453
  currency: currency;
107024
107454
  currency_aggregate: currency_aggregate;
107025
107455
  currency_aggregate_fields: currency_aggregate_fields;
@@ -107917,6 +108347,20 @@ export type SchemaObjectTypesNames =
107917
108347
  | "account_max_fields"
107918
108348
  | "account_min_fields"
107919
108349
  | "account_mutation_response"
108350
+ | "action"
108351
+ | "action_aggregate"
108352
+ | "action_aggregate_fields"
108353
+ | "action_avg_fields"
108354
+ | "action_max_fields"
108355
+ | "action_min_fields"
108356
+ | "action_mutation_response"
108357
+ | "action_stddev_fields"
108358
+ | "action_stddev_pop_fields"
108359
+ | "action_stddev_samp_fields"
108360
+ | "action_sum_fields"
108361
+ | "action_var_pop_fields"
108362
+ | "action_var_samp_fields"
108363
+ | "action_variance_fields"
107920
108364
  | "activeStatus"
107921
108365
  | "activeStatus_aggregate"
107922
108366
  | "activeStatus_aggregate_fields"
@@ -108106,20 +108550,6 @@ export type SchemaObjectTypesNames =
108106
108550
  | "core_change_source_link_max_fields"
108107
108551
  | "core_change_source_link_min_fields"
108108
108552
  | "core_change_source_link_mutation_response"
108109
- | "csv_line"
108110
- | "csv_line_aggregate"
108111
- | "csv_line_aggregate_fields"
108112
- | "csv_line_avg_fields"
108113
- | "csv_line_max_fields"
108114
- | "csv_line_min_fields"
108115
- | "csv_line_mutation_response"
108116
- | "csv_line_stddev_fields"
108117
- | "csv_line_stddev_pop_fields"
108118
- | "csv_line_stddev_samp_fields"
108119
- | "csv_line_sum_fields"
108120
- | "csv_line_var_pop_fields"
108121
- | "csv_line_var_samp_fields"
108122
- | "csv_line_variance_fields"
108123
108553
  | "currency"
108124
108554
  | "currency_aggregate"
108125
108555
  | "currency_aggregate_fields"
@@ -109028,6 +109458,15 @@ export interface ScalarsEnums extends Scalars {
109028
109458
  account_constraint: account_constraint | undefined;
109029
109459
  account_select_column: account_select_column | undefined;
109030
109460
  account_update_column: account_update_column | undefined;
109461
+ action_constraint: action_constraint | undefined;
109462
+ action_select_column: action_select_column | undefined;
109463
+ action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns:
109464
+ | action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns
109465
+ | undefined;
109466
+ action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns:
109467
+ | action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns
109468
+ | undefined;
109469
+ action_update_column: action_update_column | undefined;
109031
109470
  activeStatus_constraint: activeStatus_constraint | undefined;
109032
109471
  activeStatus_enum: activeStatus_enum | undefined;
109033
109472
  activeStatus_select_column: activeStatus_select_column | undefined;
@@ -109176,9 +109615,6 @@ export interface ScalarsEnums extends Scalars {
109176
109615
  core_change_source_link_update_column:
109177
109616
  | core_change_source_link_update_column
109178
109617
  | undefined;
109179
- csv_line_constraint: csv_line_constraint | undefined;
109180
- csv_line_select_column: csv_line_select_column | undefined;
109181
- csv_line_update_column: csv_line_update_column | undefined;
109182
109618
  currency_constraint: currency_constraint | undefined;
109183
109619
  currency_enum: currency_enum | undefined;
109184
109620
  currency_select_column: currency_select_column | undefined;