@vrplatform/graphql 1.1.5 → 1.1.7

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.
@@ -1654,496 +1654,6 @@ export interface account_updates {
1654
1654
  where: account_bool_exp;
1655
1655
  }
1656
1656
 
1657
- export interface action_aggregate_bool_exp {
1658
- bool_and?: InputMaybe<action_aggregate_bool_exp_bool_and>;
1659
- bool_or?: InputMaybe<action_aggregate_bool_exp_bool_or>;
1660
- count?: InputMaybe<action_aggregate_bool_exp_count>;
1661
- }
1662
-
1663
- export interface action_aggregate_bool_exp_bool_and {
1664
- arguments: action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns;
1665
- distinct?: InputMaybe<Scalars["Boolean"]>;
1666
- filter?: InputMaybe<action_bool_exp>;
1667
- predicate: Boolean_comparison_exp;
1668
- }
1669
-
1670
- export interface action_aggregate_bool_exp_bool_or {
1671
- arguments: action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns;
1672
- distinct?: InputMaybe<Scalars["Boolean"]>;
1673
- filter?: InputMaybe<action_bool_exp>;
1674
- predicate: Boolean_comparison_exp;
1675
- }
1676
-
1677
- export interface action_aggregate_bool_exp_count {
1678
- arguments?: InputMaybe<Array<action_select_column>>;
1679
- distinct?: InputMaybe<Scalars["Boolean"]>;
1680
- filter?: InputMaybe<action_bool_exp>;
1681
- predicate: Int_comparison_exp;
1682
- }
1683
-
1684
- /** order by aggregate values of table "core.action" */
1685
- export interface action_aggregate_order_by {
1686
- avg?: InputMaybe<action_avg_order_by>;
1687
- count?: InputMaybe<order_by>;
1688
- max?: InputMaybe<action_max_order_by>;
1689
- min?: InputMaybe<action_min_order_by>;
1690
- stddev?: InputMaybe<action_stddev_order_by>;
1691
- stddev_pop?: InputMaybe<action_stddev_pop_order_by>;
1692
- stddev_samp?: InputMaybe<action_stddev_samp_order_by>;
1693
- sum?: InputMaybe<action_sum_order_by>;
1694
- var_pop?: InputMaybe<action_var_pop_order_by>;
1695
- var_samp?: InputMaybe<action_var_samp_order_by>;
1696
- variance?: InputMaybe<action_variance_order_by>;
1697
- }
1698
-
1699
- /** append existing jsonb value of filtered columns with new jsonb value */
1700
- export interface action_append_input {
1701
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1702
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1703
- refs?: InputMaybe<Scalars["jsonb"]>;
1704
- }
1705
-
1706
- /** input type for inserting array relation for remote table "core.action" */
1707
- export interface action_arr_rel_insert_input {
1708
- data: Array<action_insert_input>;
1709
- /** upsert condition */
1710
- on_conflict?: InputMaybe<action_on_conflict>;
1711
- }
1712
-
1713
- /** order by avg() on columns of table "core.action" */
1714
- export interface action_avg_order_by {
1715
- jobIndex?: InputMaybe<order_by>;
1716
- }
1717
-
1718
- /** Boolean expression to filter rows from the table "core.action". All fields are combined with a logical 'AND'. */
1719
- export interface action_bool_exp {
1720
- _and?: InputMaybe<Array<action_bool_exp>>;
1721
- _not?: InputMaybe<action_bool_exp>;
1722
- _or?: InputMaybe<Array<action_bool_exp>>;
1723
- appId?: InputMaybe<String_comparison_exp>;
1724
- automationId?: InputMaybe<uuid_comparison_exp>;
1725
- changes?: InputMaybe<change_bool_exp>;
1726
- changes_aggregate?: InputMaybe<change_aggregate_bool_exp>;
1727
- connection?: InputMaybe<connection_bool_exp>;
1728
- connectionId?: InputMaybe<uuid_comparison_exp>;
1729
- createdAt?: InputMaybe<timestamptz_comparison_exp>;
1730
- id?: InputMaybe<uuid_comparison_exp>;
1731
- inputJson?: InputMaybe<jsonb_comparison_exp>;
1732
- isCurrent?: InputMaybe<Boolean_comparison_exp>;
1733
- jobId?: InputMaybe<uuid_comparison_exp>;
1734
- jobIndex?: InputMaybe<Int_comparison_exp>;
1735
- jobPageId?: InputMaybe<uuid_comparison_exp>;
1736
- jobPlanId?: InputMaybe<uuid_comparison_exp>;
1737
- objectId?: InputMaybe<uuid_comparison_exp>;
1738
- opId?: InputMaybe<uuid_comparison_exp>;
1739
- outputJson?: InputMaybe<jsonb_comparison_exp>;
1740
- previousActions?: InputMaybe<action_bool_exp>;
1741
- previousActions3?: InputMaybe<action_bool_exp>;
1742
- previousActions3_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1743
- previousActionsByType?: InputMaybe<action_bool_exp>;
1744
- previousActionsByType_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1745
- previousActions_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1746
- refs?: InputMaybe<jsonb_comparison_exp>;
1747
- schemaId?: InputMaybe<uuid_comparison_exp>;
1748
- source?: InputMaybe<source_bool_exp>;
1749
- sourceId?: InputMaybe<uuid_comparison_exp>;
1750
- status?: InputMaybe<String_comparison_exp>;
1751
- tenant?: InputMaybe<tenant_bool_exp>;
1752
- tenantId?: InputMaybe<uuid_comparison_exp>;
1753
- title?: InputMaybe<String_comparison_exp>;
1754
- type?: InputMaybe<String_comparison_exp>;
1755
- uniqueRef?: InputMaybe<String_comparison_exp>;
1756
- updatedAt?: InputMaybe<timestamptz_comparison_exp>;
1757
- }
1758
-
1759
- /** unique or primary key constraints on table "core.action" */
1760
- export type action_constraint =
1761
- /** unique or primary key constraint on columns "id" */
1762
- "action_pkey";
1763
-
1764
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
1765
- export interface action_delete_at_path_input {
1766
- inputJson?: InputMaybe<Array<Scalars["String"]>>;
1767
- outputJson?: InputMaybe<Array<Scalars["String"]>>;
1768
- refs?: InputMaybe<Array<Scalars["String"]>>;
1769
- }
1770
-
1771
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
1772
- export interface action_delete_elem_input {
1773
- inputJson?: InputMaybe<Scalars["Int"]>;
1774
- outputJson?: InputMaybe<Scalars["Int"]>;
1775
- refs?: InputMaybe<Scalars["Int"]>;
1776
- }
1777
-
1778
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
1779
- export interface action_delete_key_input {
1780
- inputJson?: InputMaybe<Scalars["String"]>;
1781
- outputJson?: InputMaybe<Scalars["String"]>;
1782
- refs?: InputMaybe<Scalars["String"]>;
1783
- }
1784
-
1785
- /** input type for incrementing numeric columns in table "core.action" */
1786
- export interface action_inc_input {
1787
- jobIndex?: InputMaybe<Scalars["Int"]>;
1788
- }
1789
-
1790
- /** input type for inserting data into table "core.action" */
1791
- export interface action_insert_input {
1792
- appId?: InputMaybe<Scalars["String"]>;
1793
- automationId?: InputMaybe<Scalars["uuid"]>;
1794
- changes?: InputMaybe<change_arr_rel_insert_input>;
1795
- connection?: InputMaybe<connection_obj_rel_insert_input>;
1796
- connectionId?: InputMaybe<Scalars["uuid"]>;
1797
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
1798
- id?: InputMaybe<Scalars["uuid"]>;
1799
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1800
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
1801
- jobId?: InputMaybe<Scalars["uuid"]>;
1802
- jobIndex?: InputMaybe<Scalars["Int"]>;
1803
- jobPageId?: InputMaybe<Scalars["uuid"]>;
1804
- jobPlanId?: InputMaybe<Scalars["uuid"]>;
1805
- objectId?: InputMaybe<Scalars["uuid"]>;
1806
- opId?: InputMaybe<Scalars["uuid"]>;
1807
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1808
- previousActions?: InputMaybe<action_arr_rel_insert_input>;
1809
- previousActions3?: InputMaybe<action_arr_rel_insert_input>;
1810
- previousActionsByType?: InputMaybe<action_arr_rel_insert_input>;
1811
- refs?: InputMaybe<Scalars["jsonb"]>;
1812
- schemaId?: InputMaybe<Scalars["uuid"]>;
1813
- source?: InputMaybe<source_obj_rel_insert_input>;
1814
- sourceId?: InputMaybe<Scalars["uuid"]>;
1815
- status?: InputMaybe<Scalars["String"]>;
1816
- tenant?: InputMaybe<tenant_obj_rel_insert_input>;
1817
- tenantId?: InputMaybe<Scalars["uuid"]>;
1818
- title?: InputMaybe<Scalars["String"]>;
1819
- type?: InputMaybe<Scalars["String"]>;
1820
- uniqueRef?: InputMaybe<Scalars["String"]>;
1821
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
1822
- }
1823
-
1824
- /** order by max() on columns of table "core.action" */
1825
- export interface action_max_order_by {
1826
- appId?: InputMaybe<order_by>;
1827
- automationId?: InputMaybe<order_by>;
1828
- connectionId?: InputMaybe<order_by>;
1829
- createdAt?: InputMaybe<order_by>;
1830
- id?: InputMaybe<order_by>;
1831
- jobId?: InputMaybe<order_by>;
1832
- jobIndex?: InputMaybe<order_by>;
1833
- jobPageId?: InputMaybe<order_by>;
1834
- jobPlanId?: InputMaybe<order_by>;
1835
- objectId?: InputMaybe<order_by>;
1836
- opId?: InputMaybe<order_by>;
1837
- schemaId?: InputMaybe<order_by>;
1838
- sourceId?: InputMaybe<order_by>;
1839
- status?: InputMaybe<order_by>;
1840
- tenantId?: InputMaybe<order_by>;
1841
- title?: InputMaybe<order_by>;
1842
- type?: InputMaybe<order_by>;
1843
- uniqueRef?: InputMaybe<order_by>;
1844
- updatedAt?: InputMaybe<order_by>;
1845
- }
1846
-
1847
- /** order by min() on columns of table "core.action" */
1848
- export interface action_min_order_by {
1849
- appId?: InputMaybe<order_by>;
1850
- automationId?: InputMaybe<order_by>;
1851
- connectionId?: InputMaybe<order_by>;
1852
- createdAt?: InputMaybe<order_by>;
1853
- id?: InputMaybe<order_by>;
1854
- jobId?: InputMaybe<order_by>;
1855
- jobIndex?: InputMaybe<order_by>;
1856
- jobPageId?: InputMaybe<order_by>;
1857
- jobPlanId?: InputMaybe<order_by>;
1858
- objectId?: InputMaybe<order_by>;
1859
- opId?: InputMaybe<order_by>;
1860
- schemaId?: InputMaybe<order_by>;
1861
- sourceId?: InputMaybe<order_by>;
1862
- status?: InputMaybe<order_by>;
1863
- tenantId?: InputMaybe<order_by>;
1864
- title?: InputMaybe<order_by>;
1865
- type?: InputMaybe<order_by>;
1866
- uniqueRef?: InputMaybe<order_by>;
1867
- updatedAt?: InputMaybe<order_by>;
1868
- }
1869
-
1870
- /** on_conflict condition type for table "core.action" */
1871
- export interface action_on_conflict {
1872
- constraint: action_constraint;
1873
- update_columns?: Array<action_update_column>;
1874
- where?: InputMaybe<action_bool_exp>;
1875
- }
1876
-
1877
- /** Ordering options when selecting data from "core.action". */
1878
- export interface action_order_by {
1879
- appId?: InputMaybe<order_by>;
1880
- automationId?: InputMaybe<order_by>;
1881
- changes_aggregate?: InputMaybe<change_aggregate_order_by>;
1882
- connection?: InputMaybe<connection_order_by>;
1883
- connectionId?: InputMaybe<order_by>;
1884
- createdAt?: InputMaybe<order_by>;
1885
- id?: InputMaybe<order_by>;
1886
- inputJson?: InputMaybe<order_by>;
1887
- isCurrent?: InputMaybe<order_by>;
1888
- jobId?: InputMaybe<order_by>;
1889
- jobIndex?: InputMaybe<order_by>;
1890
- jobPageId?: InputMaybe<order_by>;
1891
- jobPlanId?: InputMaybe<order_by>;
1892
- objectId?: InputMaybe<order_by>;
1893
- opId?: InputMaybe<order_by>;
1894
- outputJson?: InputMaybe<order_by>;
1895
- previousActions3_aggregate?: InputMaybe<action_aggregate_order_by>;
1896
- previousActionsByType_aggregate?: InputMaybe<action_aggregate_order_by>;
1897
- previousActions_aggregate?: InputMaybe<action_aggregate_order_by>;
1898
- refs?: InputMaybe<order_by>;
1899
- schemaId?: InputMaybe<order_by>;
1900
- source?: InputMaybe<source_order_by>;
1901
- sourceId?: InputMaybe<order_by>;
1902
- status?: InputMaybe<order_by>;
1903
- tenant?: InputMaybe<tenant_order_by>;
1904
- tenantId?: InputMaybe<order_by>;
1905
- title?: InputMaybe<order_by>;
1906
- type?: InputMaybe<order_by>;
1907
- uniqueRef?: InputMaybe<order_by>;
1908
- updatedAt?: InputMaybe<order_by>;
1909
- }
1910
-
1911
- /** primary key columns input for table: core.action */
1912
- export interface action_pk_columns_input {
1913
- id: Scalars["uuid"];
1914
- }
1915
-
1916
- /** prepend existing jsonb value of filtered columns with new jsonb value */
1917
- export interface action_prepend_input {
1918
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1919
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1920
- refs?: InputMaybe<Scalars["jsonb"]>;
1921
- }
1922
-
1923
- /** select columns of table "core.action" */
1924
- export type action_select_column =
1925
- /** column name */
1926
- | "appId"
1927
- /** column name */
1928
- | "automationId"
1929
- /** column name */
1930
- | "connectionId"
1931
- /** column name */
1932
- | "createdAt"
1933
- /** column name */
1934
- | "id"
1935
- /** column name */
1936
- | "inputJson"
1937
- /** column name */
1938
- | "isCurrent"
1939
- /** column name */
1940
- | "jobId"
1941
- /** column name */
1942
- | "jobIndex"
1943
- /** column name */
1944
- | "jobPageId"
1945
- /** column name */
1946
- | "jobPlanId"
1947
- /** column name */
1948
- | "objectId"
1949
- /** column name */
1950
- | "opId"
1951
- /** column name */
1952
- | "outputJson"
1953
- /** column name */
1954
- | "refs"
1955
- /** column name */
1956
- | "schemaId"
1957
- /** column name */
1958
- | "sourceId"
1959
- /** column name */
1960
- | "status"
1961
- /** column name */
1962
- | "tenantId"
1963
- /** column name */
1964
- | "title"
1965
- /** column name */
1966
- | "type"
1967
- /** column name */
1968
- | "uniqueRef"
1969
- /** column name */
1970
- | "updatedAt";
1971
-
1972
- /** select "action_aggregate_bool_exp_bool_and_arguments_columns" columns of table "core.action" */
1973
- export type action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns =
1974
- /** column name */
1975
- "isCurrent";
1976
-
1977
- /** select "action_aggregate_bool_exp_bool_or_arguments_columns" columns of table "core.action" */
1978
- export type action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns =
1979
- /** column name */
1980
- "isCurrent";
1981
-
1982
- /** input type for updating data in table "core.action" */
1983
- export interface action_set_input {
1984
- appId?: InputMaybe<Scalars["String"]>;
1985
- automationId?: InputMaybe<Scalars["uuid"]>;
1986
- connectionId?: InputMaybe<Scalars["uuid"]>;
1987
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
1988
- id?: InputMaybe<Scalars["uuid"]>;
1989
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1990
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
1991
- jobId?: InputMaybe<Scalars["uuid"]>;
1992
- jobIndex?: InputMaybe<Scalars["Int"]>;
1993
- jobPageId?: InputMaybe<Scalars["uuid"]>;
1994
- jobPlanId?: InputMaybe<Scalars["uuid"]>;
1995
- objectId?: InputMaybe<Scalars["uuid"]>;
1996
- opId?: InputMaybe<Scalars["uuid"]>;
1997
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1998
- refs?: InputMaybe<Scalars["jsonb"]>;
1999
- schemaId?: InputMaybe<Scalars["uuid"]>;
2000
- sourceId?: InputMaybe<Scalars["uuid"]>;
2001
- status?: InputMaybe<Scalars["String"]>;
2002
- tenantId?: InputMaybe<Scalars["uuid"]>;
2003
- title?: InputMaybe<Scalars["String"]>;
2004
- type?: InputMaybe<Scalars["String"]>;
2005
- uniqueRef?: InputMaybe<Scalars["String"]>;
2006
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
2007
- }
2008
-
2009
- /** order by stddev() on columns of table "core.action" */
2010
- export interface action_stddev_order_by {
2011
- jobIndex?: InputMaybe<order_by>;
2012
- }
2013
-
2014
- /** order by stddev_pop() on columns of table "core.action" */
2015
- export interface action_stddev_pop_order_by {
2016
- jobIndex?: InputMaybe<order_by>;
2017
- }
2018
-
2019
- /** order by stddev_samp() on columns of table "core.action" */
2020
- export interface action_stddev_samp_order_by {
2021
- jobIndex?: InputMaybe<order_by>;
2022
- }
2023
-
2024
- /** Streaming cursor of the table "action" */
2025
- export interface action_stream_cursor_input {
2026
- /** Stream column input with initial value */
2027
- initial_value: action_stream_cursor_value_input;
2028
- /** cursor ordering */
2029
- ordering?: InputMaybe<cursor_ordering>;
2030
- }
2031
-
2032
- /** Initial value of the column from where the streaming should start */
2033
- export interface action_stream_cursor_value_input {
2034
- appId?: InputMaybe<Scalars["String"]>;
2035
- automationId?: InputMaybe<Scalars["uuid"]>;
2036
- connectionId?: InputMaybe<Scalars["uuid"]>;
2037
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
2038
- id?: InputMaybe<Scalars["uuid"]>;
2039
- inputJson?: InputMaybe<Scalars["jsonb"]>;
2040
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
2041
- jobId?: InputMaybe<Scalars["uuid"]>;
2042
- jobIndex?: InputMaybe<Scalars["Int"]>;
2043
- jobPageId?: InputMaybe<Scalars["uuid"]>;
2044
- jobPlanId?: InputMaybe<Scalars["uuid"]>;
2045
- objectId?: InputMaybe<Scalars["uuid"]>;
2046
- opId?: InputMaybe<Scalars["uuid"]>;
2047
- outputJson?: InputMaybe<Scalars["jsonb"]>;
2048
- refs?: InputMaybe<Scalars["jsonb"]>;
2049
- schemaId?: InputMaybe<Scalars["uuid"]>;
2050
- sourceId?: InputMaybe<Scalars["uuid"]>;
2051
- status?: InputMaybe<Scalars["String"]>;
2052
- tenantId?: InputMaybe<Scalars["uuid"]>;
2053
- title?: InputMaybe<Scalars["String"]>;
2054
- type?: InputMaybe<Scalars["String"]>;
2055
- uniqueRef?: InputMaybe<Scalars["String"]>;
2056
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
2057
- }
2058
-
2059
- /** order by sum() on columns of table "core.action" */
2060
- export interface action_sum_order_by {
2061
- jobIndex?: InputMaybe<order_by>;
2062
- }
2063
-
2064
- /** update columns of table "core.action" */
2065
- export type action_update_column =
2066
- /** column name */
2067
- | "appId"
2068
- /** column name */
2069
- | "automationId"
2070
- /** column name */
2071
- | "connectionId"
2072
- /** column name */
2073
- | "createdAt"
2074
- /** column name */
2075
- | "id"
2076
- /** column name */
2077
- | "inputJson"
2078
- /** column name */
2079
- | "isCurrent"
2080
- /** column name */
2081
- | "jobId"
2082
- /** column name */
2083
- | "jobIndex"
2084
- /** column name */
2085
- | "jobPageId"
2086
- /** column name */
2087
- | "jobPlanId"
2088
- /** column name */
2089
- | "objectId"
2090
- /** column name */
2091
- | "opId"
2092
- /** column name */
2093
- | "outputJson"
2094
- /** column name */
2095
- | "refs"
2096
- /** column name */
2097
- | "schemaId"
2098
- /** column name */
2099
- | "sourceId"
2100
- /** column name */
2101
- | "status"
2102
- /** column name */
2103
- | "tenantId"
2104
- /** column name */
2105
- | "title"
2106
- /** column name */
2107
- | "type"
2108
- /** column name */
2109
- | "uniqueRef"
2110
- /** column name */
2111
- | "updatedAt";
2112
-
2113
- export interface action_updates {
2114
- /** append existing jsonb value of filtered columns with new jsonb value */
2115
- _append?: InputMaybe<action_append_input>;
2116
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
2117
- _delete_at_path?: InputMaybe<action_delete_at_path_input>;
2118
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
2119
- _delete_elem?: InputMaybe<action_delete_elem_input>;
2120
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
2121
- _delete_key?: InputMaybe<action_delete_key_input>;
2122
- /** increments the numeric columns with given value of the filtered values */
2123
- _inc?: InputMaybe<action_inc_input>;
2124
- /** prepend existing jsonb value of filtered columns with new jsonb value */
2125
- _prepend?: InputMaybe<action_prepend_input>;
2126
- /** sets the columns of the filtered rows to the given values */
2127
- _set?: InputMaybe<action_set_input>;
2128
- /** filter the rows which have to be updated */
2129
- where: action_bool_exp;
2130
- }
2131
-
2132
- /** order by var_pop() on columns of table "core.action" */
2133
- export interface action_var_pop_order_by {
2134
- jobIndex?: InputMaybe<order_by>;
2135
- }
2136
-
2137
- /** order by var_samp() on columns of table "core.action" */
2138
- export interface action_var_samp_order_by {
2139
- jobIndex?: InputMaybe<order_by>;
2140
- }
2141
-
2142
- /** order by variance() on columns of table "core.action" */
2143
- export interface action_variance_order_by {
2144
- jobIndex?: InputMaybe<order_by>;
2145
- }
2146
-
2147
1657
  /** Boolean expression to filter rows from the table "core.active_status". All fields are combined with a logical 'AND'. */
2148
1658
  export interface activeStatus_bool_exp {
2149
1659
  _and?: InputMaybe<Array<activeStatus_bool_exp>>;
@@ -21310,7 +20820,6 @@ export interface source_bool_exp {
21310
20820
  reservationId?: InputMaybe<uuid_comparison_exp>;
21311
20821
  reservations?: InputMaybe<reservation_bool_exp>;
21312
20822
  reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
21313
- schemaId?: InputMaybe<uuid_comparison_exp>;
21314
20823
  settings?: InputMaybe<setting_bool_exp>;
21315
20824
  settingsLeft?: InputMaybe<setting_bool_exp>;
21316
20825
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
@@ -21401,7 +20910,6 @@ export interface source_insert_input {
21401
20910
  reservation?: InputMaybe<reservation_obj_rel_insert_input>;
21402
20911
  reservationId?: InputMaybe<Scalars["uuid"]>;
21403
20912
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
21404
- schemaId?: InputMaybe<Scalars["uuid"]>;
21405
20913
  settings?: InputMaybe<setting_arr_rel_insert_input>;
21406
20914
  settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
21407
20915
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
@@ -21437,7 +20945,6 @@ export interface source_max_order_by {
21437
20945
  parentId?: InputMaybe<order_by>;
21438
20946
  remoteId?: InputMaybe<order_by>;
21439
20947
  reservationId?: InputMaybe<order_by>;
21440
- schemaId?: InputMaybe<order_by>;
21441
20948
  status?: InputMaybe<order_by>;
21442
20949
  tenantId?: InputMaybe<order_by>;
21443
20950
  transformType?: InputMaybe<order_by>;
@@ -21465,7 +20972,6 @@ export interface source_min_order_by {
21465
20972
  parentId?: InputMaybe<order_by>;
21466
20973
  remoteId?: InputMaybe<order_by>;
21467
20974
  reservationId?: InputMaybe<order_by>;
21468
- schemaId?: InputMaybe<order_by>;
21469
20975
  status?: InputMaybe<order_by>;
21470
20976
  tenantId?: InputMaybe<order_by>;
21471
20977
  transformType?: InputMaybe<order_by>;
@@ -21522,7 +21028,6 @@ export interface source_order_by {
21522
21028
  reservation?: InputMaybe<reservation_order_by>;
21523
21029
  reservationId?: InputMaybe<order_by>;
21524
21030
  reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
21525
- schemaId?: InputMaybe<order_by>;
21526
21031
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
21527
21032
  settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
21528
21033
  settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
@@ -21588,8 +21093,6 @@ export type source_select_column =
21588
21093
  /** column name */
21589
21094
  | "reservationId"
21590
21095
  /** column name */
21591
- | "schemaId"
21592
- /** column name */
21593
21096
  | "status"
21594
21097
  /** column name */
21595
21098
  | "tenantId"
@@ -21636,7 +21139,6 @@ export interface source_set_input {
21636
21139
  parentId?: InputMaybe<Scalars["uuid"]>;
21637
21140
  remoteId?: InputMaybe<Scalars["String"]>;
21638
21141
  reservationId?: InputMaybe<Scalars["uuid"]>;
21639
- schemaId?: InputMaybe<Scalars["uuid"]>;
21640
21142
  status?: InputMaybe<Scalars["String"]>;
21641
21143
  tenantId?: InputMaybe<Scalars["uuid"]>;
21642
21144
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21691,7 +21193,6 @@ export interface source_stream_cursor_value_input {
21691
21193
  parentId?: InputMaybe<Scalars["uuid"]>;
21692
21194
  remoteId?: InputMaybe<Scalars["String"]>;
21693
21195
  reservationId?: InputMaybe<Scalars["uuid"]>;
21694
- schemaId?: InputMaybe<Scalars["uuid"]>;
21695
21196
  status?: InputMaybe<Scalars["String"]>;
21696
21197
  tenantId?: InputMaybe<Scalars["uuid"]>;
21697
21198
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21743,8 +21244,6 @@ export type source_update_column =
21743
21244
  /** column name */
21744
21245
  | "reservationId"
21745
21246
  /** column name */
21746
- | "schemaId"
21747
- /** column name */
21748
21247
  | "status"
21749
21248
  /** column name */
21750
21249
  | "tenantId"
@@ -30485,511 +29984,6 @@ export declare const generatedSchema: {
30485
29984
  _set: { __type: "account_set_input" };
30486
29985
  where: { __type: "account_bool_exp!" };
30487
29986
  };
30488
- action: {
30489
- __typename: { __type: "String!" };
30490
- appId: { __type: "String" };
30491
- automationId: { __type: "uuid" };
30492
- changes: {
30493
- __type: "[change!]!";
30494
- __args: {
30495
- distinct_on: "[change_select_column!]";
30496
- limit: "Int";
30497
- offset: "Int";
30498
- order_by: "[change_order_by!]";
30499
- where: "change_bool_exp";
30500
- };
30501
- };
30502
- changes_aggregate: {
30503
- __type: "change_aggregate!";
30504
- __args: {
30505
- distinct_on: "[change_select_column!]";
30506
- limit: "Int";
30507
- offset: "Int";
30508
- order_by: "[change_order_by!]";
30509
- where: "change_bool_exp";
30510
- };
30511
- };
30512
- connection: { __type: "connection" };
30513
- connectionId: { __type: "uuid" };
30514
- createdAt: { __type: "timestamptz" };
30515
- id: { __type: "uuid!" };
30516
- inputJson: { __type: "jsonb"; __args: { path: "String" } };
30517
- isCurrent: { __type: "Boolean" };
30518
- jobId: { __type: "uuid" };
30519
- jobIndex: { __type: "Int" };
30520
- jobPageId: { __type: "uuid" };
30521
- jobPlanId: { __type: "uuid" };
30522
- objectId: { __type: "uuid" };
30523
- opId: { __type: "uuid" };
30524
- outputJson: { __type: "jsonb"; __args: { path: "String" } };
30525
- previousActions: {
30526
- __type: "[action!]!";
30527
- __args: {
30528
- distinct_on: "[action_select_column!]";
30529
- limit: "Int";
30530
- offset: "Int";
30531
- order_by: "[action_order_by!]";
30532
- where: "action_bool_exp";
30533
- };
30534
- };
30535
- previousActions3: {
30536
- __type: "[action!]!";
30537
- __args: {
30538
- distinct_on: "[action_select_column!]";
30539
- limit: "Int";
30540
- offset: "Int";
30541
- order_by: "[action_order_by!]";
30542
- where: "action_bool_exp";
30543
- };
30544
- };
30545
- previousActions3_aggregate: {
30546
- __type: "action_aggregate!";
30547
- __args: {
30548
- distinct_on: "[action_select_column!]";
30549
- limit: "Int";
30550
- offset: "Int";
30551
- order_by: "[action_order_by!]";
30552
- where: "action_bool_exp";
30553
- };
30554
- };
30555
- previousActionsByType: {
30556
- __type: "[action!]!";
30557
- __args: {
30558
- distinct_on: "[action_select_column!]";
30559
- limit: "Int";
30560
- offset: "Int";
30561
- order_by: "[action_order_by!]";
30562
- where: "action_bool_exp";
30563
- };
30564
- };
30565
- previousActionsByType_aggregate: {
30566
- __type: "action_aggregate!";
30567
- __args: {
30568
- distinct_on: "[action_select_column!]";
30569
- limit: "Int";
30570
- offset: "Int";
30571
- order_by: "[action_order_by!]";
30572
- where: "action_bool_exp";
30573
- };
30574
- };
30575
- previousActions_aggregate: {
30576
- __type: "action_aggregate!";
30577
- __args: {
30578
- distinct_on: "[action_select_column!]";
30579
- limit: "Int";
30580
- offset: "Int";
30581
- order_by: "[action_order_by!]";
30582
- where: "action_bool_exp";
30583
- };
30584
- };
30585
- refs: { __type: "jsonb"; __args: { path: "String" } };
30586
- schemaId: { __type: "uuid" };
30587
- source: { __type: "source" };
30588
- sourceId: { __type: "uuid" };
30589
- status: { __type: "String" };
30590
- tenant: { __type: "tenant" };
30591
- tenantId: { __type: "uuid" };
30592
- title: { __type: "String" };
30593
- type: { __type: "String" };
30594
- uniqueRef: { __type: "String" };
30595
- updatedAt: { __type: "timestamptz" };
30596
- };
30597
- action_aggregate: {
30598
- __typename: { __type: "String!" };
30599
- aggregate: { __type: "action_aggregate_fields" };
30600
- nodes: { __type: "[action!]!" };
30601
- };
30602
- action_aggregate_bool_exp: {
30603
- bool_and: { __type: "action_aggregate_bool_exp_bool_and" };
30604
- bool_or: { __type: "action_aggregate_bool_exp_bool_or" };
30605
- count: { __type: "action_aggregate_bool_exp_count" };
30606
- };
30607
- action_aggregate_bool_exp_bool_and: {
30608
- arguments: {
30609
- __type: "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns!";
30610
- };
30611
- distinct: { __type: "Boolean" };
30612
- filter: { __type: "action_bool_exp" };
30613
- predicate: { __type: "Boolean_comparison_exp!" };
30614
- };
30615
- action_aggregate_bool_exp_bool_or: {
30616
- arguments: {
30617
- __type: "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns!";
30618
- };
30619
- distinct: { __type: "Boolean" };
30620
- filter: { __type: "action_bool_exp" };
30621
- predicate: { __type: "Boolean_comparison_exp!" };
30622
- };
30623
- action_aggregate_bool_exp_count: {
30624
- arguments: { __type: "[action_select_column!]" };
30625
- distinct: { __type: "Boolean" };
30626
- filter: { __type: "action_bool_exp" };
30627
- predicate: { __type: "Int_comparison_exp!" };
30628
- };
30629
- action_aggregate_fields: {
30630
- __typename: { __type: "String!" };
30631
- avg: { __type: "action_avg_fields" };
30632
- count: {
30633
- __type: "Int!";
30634
- __args: { columns: "[action_select_column!]"; distinct: "Boolean" };
30635
- };
30636
- max: { __type: "action_max_fields" };
30637
- min: { __type: "action_min_fields" };
30638
- stddev: { __type: "action_stddev_fields" };
30639
- stddev_pop: { __type: "action_stddev_pop_fields" };
30640
- stddev_samp: { __type: "action_stddev_samp_fields" };
30641
- sum: { __type: "action_sum_fields" };
30642
- var_pop: { __type: "action_var_pop_fields" };
30643
- var_samp: { __type: "action_var_samp_fields" };
30644
- variance: { __type: "action_variance_fields" };
30645
- };
30646
- action_aggregate_order_by: {
30647
- avg: { __type: "action_avg_order_by" };
30648
- count: { __type: "order_by" };
30649
- max: { __type: "action_max_order_by" };
30650
- min: { __type: "action_min_order_by" };
30651
- stddev: { __type: "action_stddev_order_by" };
30652
- stddev_pop: { __type: "action_stddev_pop_order_by" };
30653
- stddev_samp: { __type: "action_stddev_samp_order_by" };
30654
- sum: { __type: "action_sum_order_by" };
30655
- var_pop: { __type: "action_var_pop_order_by" };
30656
- var_samp: { __type: "action_var_samp_order_by" };
30657
- variance: { __type: "action_variance_order_by" };
30658
- };
30659
- action_append_input: {
30660
- inputJson: { __type: "jsonb" };
30661
- outputJson: { __type: "jsonb" };
30662
- refs: { __type: "jsonb" };
30663
- };
30664
- action_arr_rel_insert_input: {
30665
- data: { __type: "[action_insert_input!]!" };
30666
- on_conflict: { __type: "action_on_conflict" };
30667
- };
30668
- action_avg_fields: {
30669
- __typename: { __type: "String!" };
30670
- jobIndex: { __type: "Float" };
30671
- };
30672
- action_avg_order_by: { jobIndex: { __type: "order_by" } };
30673
- action_bool_exp: {
30674
- _and: { __type: "[action_bool_exp!]" };
30675
- _not: { __type: "action_bool_exp" };
30676
- _or: { __type: "[action_bool_exp!]" };
30677
- appId: { __type: "String_comparison_exp" };
30678
- automationId: { __type: "uuid_comparison_exp" };
30679
- changes: { __type: "change_bool_exp" };
30680
- changes_aggregate: { __type: "change_aggregate_bool_exp" };
30681
- connection: { __type: "connection_bool_exp" };
30682
- connectionId: { __type: "uuid_comparison_exp" };
30683
- createdAt: { __type: "timestamptz_comparison_exp" };
30684
- id: { __type: "uuid_comparison_exp" };
30685
- inputJson: { __type: "jsonb_comparison_exp" };
30686
- isCurrent: { __type: "Boolean_comparison_exp" };
30687
- jobId: { __type: "uuid_comparison_exp" };
30688
- jobIndex: { __type: "Int_comparison_exp" };
30689
- jobPageId: { __type: "uuid_comparison_exp" };
30690
- jobPlanId: { __type: "uuid_comparison_exp" };
30691
- objectId: { __type: "uuid_comparison_exp" };
30692
- opId: { __type: "uuid_comparison_exp" };
30693
- outputJson: { __type: "jsonb_comparison_exp" };
30694
- previousActions: { __type: "action_bool_exp" };
30695
- previousActions3: { __type: "action_bool_exp" };
30696
- previousActions3_aggregate: { __type: "action_aggregate_bool_exp" };
30697
- previousActionsByType: { __type: "action_bool_exp" };
30698
- previousActionsByType_aggregate: { __type: "action_aggregate_bool_exp" };
30699
- previousActions_aggregate: { __type: "action_aggregate_bool_exp" };
30700
- refs: { __type: "jsonb_comparison_exp" };
30701
- schemaId: { __type: "uuid_comparison_exp" };
30702
- source: { __type: "source_bool_exp" };
30703
- sourceId: { __type: "uuid_comparison_exp" };
30704
- status: { __type: "String_comparison_exp" };
30705
- tenant: { __type: "tenant_bool_exp" };
30706
- tenantId: { __type: "uuid_comparison_exp" };
30707
- title: { __type: "String_comparison_exp" };
30708
- type: { __type: "String_comparison_exp" };
30709
- uniqueRef: { __type: "String_comparison_exp" };
30710
- updatedAt: { __type: "timestamptz_comparison_exp" };
30711
- };
30712
- action_delete_at_path_input: {
30713
- inputJson: { __type: "[String!]" };
30714
- outputJson: { __type: "[String!]" };
30715
- refs: { __type: "[String!]" };
30716
- };
30717
- action_delete_elem_input: {
30718
- inputJson: { __type: "Int" };
30719
- outputJson: { __type: "Int" };
30720
- refs: { __type: "Int" };
30721
- };
30722
- action_delete_key_input: {
30723
- inputJson: { __type: "String" };
30724
- outputJson: { __type: "String" };
30725
- refs: { __type: "String" };
30726
- };
30727
- action_inc_input: { jobIndex: { __type: "Int" } };
30728
- action_insert_input: {
30729
- appId: { __type: "String" };
30730
- automationId: { __type: "uuid" };
30731
- changes: { __type: "change_arr_rel_insert_input" };
30732
- connection: { __type: "connection_obj_rel_insert_input" };
30733
- connectionId: { __type: "uuid" };
30734
- createdAt: { __type: "timestamptz" };
30735
- id: { __type: "uuid" };
30736
- inputJson: { __type: "jsonb" };
30737
- isCurrent: { __type: "Boolean" };
30738
- jobId: { __type: "uuid" };
30739
- jobIndex: { __type: "Int" };
30740
- jobPageId: { __type: "uuid" };
30741
- jobPlanId: { __type: "uuid" };
30742
- objectId: { __type: "uuid" };
30743
- opId: { __type: "uuid" };
30744
- outputJson: { __type: "jsonb" };
30745
- previousActions: { __type: "action_arr_rel_insert_input" };
30746
- previousActions3: { __type: "action_arr_rel_insert_input" };
30747
- previousActionsByType: { __type: "action_arr_rel_insert_input" };
30748
- refs: { __type: "jsonb" };
30749
- schemaId: { __type: "uuid" };
30750
- source: { __type: "source_obj_rel_insert_input" };
30751
- sourceId: { __type: "uuid" };
30752
- status: { __type: "String" };
30753
- tenant: { __type: "tenant_obj_rel_insert_input" };
30754
- tenantId: { __type: "uuid" };
30755
- title: { __type: "String" };
30756
- type: { __type: "String" };
30757
- uniqueRef: { __type: "String" };
30758
- updatedAt: { __type: "timestamptz" };
30759
- };
30760
- action_max_fields: {
30761
- __typename: { __type: "String!" };
30762
- appId: { __type: "String" };
30763
- automationId: { __type: "uuid" };
30764
- connectionId: { __type: "uuid" };
30765
- createdAt: { __type: "timestamptz" };
30766
- id: { __type: "uuid" };
30767
- jobId: { __type: "uuid" };
30768
- jobIndex: { __type: "Int" };
30769
- jobPageId: { __type: "uuid" };
30770
- jobPlanId: { __type: "uuid" };
30771
- objectId: { __type: "uuid" };
30772
- opId: { __type: "uuid" };
30773
- schemaId: { __type: "uuid" };
30774
- sourceId: { __type: "uuid" };
30775
- status: { __type: "String" };
30776
- tenantId: { __type: "uuid" };
30777
- title: { __type: "String" };
30778
- type: { __type: "String" };
30779
- uniqueRef: { __type: "String" };
30780
- updatedAt: { __type: "timestamptz" };
30781
- };
30782
- action_max_order_by: {
30783
- appId: { __type: "order_by" };
30784
- automationId: { __type: "order_by" };
30785
- connectionId: { __type: "order_by" };
30786
- createdAt: { __type: "order_by" };
30787
- id: { __type: "order_by" };
30788
- jobId: { __type: "order_by" };
30789
- jobIndex: { __type: "order_by" };
30790
- jobPageId: { __type: "order_by" };
30791
- jobPlanId: { __type: "order_by" };
30792
- objectId: { __type: "order_by" };
30793
- opId: { __type: "order_by" };
30794
- schemaId: { __type: "order_by" };
30795
- sourceId: { __type: "order_by" };
30796
- status: { __type: "order_by" };
30797
- tenantId: { __type: "order_by" };
30798
- title: { __type: "order_by" };
30799
- type: { __type: "order_by" };
30800
- uniqueRef: { __type: "order_by" };
30801
- updatedAt: { __type: "order_by" };
30802
- };
30803
- action_min_fields: {
30804
- __typename: { __type: "String!" };
30805
- appId: { __type: "String" };
30806
- automationId: { __type: "uuid" };
30807
- connectionId: { __type: "uuid" };
30808
- createdAt: { __type: "timestamptz" };
30809
- id: { __type: "uuid" };
30810
- jobId: { __type: "uuid" };
30811
- jobIndex: { __type: "Int" };
30812
- jobPageId: { __type: "uuid" };
30813
- jobPlanId: { __type: "uuid" };
30814
- objectId: { __type: "uuid" };
30815
- opId: { __type: "uuid" };
30816
- schemaId: { __type: "uuid" };
30817
- sourceId: { __type: "uuid" };
30818
- status: { __type: "String" };
30819
- tenantId: { __type: "uuid" };
30820
- title: { __type: "String" };
30821
- type: { __type: "String" };
30822
- uniqueRef: { __type: "String" };
30823
- updatedAt: { __type: "timestamptz" };
30824
- };
30825
- action_min_order_by: {
30826
- appId: { __type: "order_by" };
30827
- automationId: { __type: "order_by" };
30828
- connectionId: { __type: "order_by" };
30829
- createdAt: { __type: "order_by" };
30830
- id: { __type: "order_by" };
30831
- jobId: { __type: "order_by" };
30832
- jobIndex: { __type: "order_by" };
30833
- jobPageId: { __type: "order_by" };
30834
- jobPlanId: { __type: "order_by" };
30835
- objectId: { __type: "order_by" };
30836
- opId: { __type: "order_by" };
30837
- schemaId: { __type: "order_by" };
30838
- sourceId: { __type: "order_by" };
30839
- status: { __type: "order_by" };
30840
- tenantId: { __type: "order_by" };
30841
- title: { __type: "order_by" };
30842
- type: { __type: "order_by" };
30843
- uniqueRef: { __type: "order_by" };
30844
- updatedAt: { __type: "order_by" };
30845
- };
30846
- action_mutation_response: {
30847
- __typename: { __type: "String!" };
30848
- affected_rows: { __type: "Int!" };
30849
- returning: { __type: "[action!]!" };
30850
- };
30851
- action_on_conflict: {
30852
- constraint: { __type: "action_constraint!" };
30853
- update_columns: { __type: "[action_update_column!]!" };
30854
- where: { __type: "action_bool_exp" };
30855
- };
30856
- action_order_by: {
30857
- appId: { __type: "order_by" };
30858
- automationId: { __type: "order_by" };
30859
- changes_aggregate: { __type: "change_aggregate_order_by" };
30860
- connection: { __type: "connection_order_by" };
30861
- connectionId: { __type: "order_by" };
30862
- createdAt: { __type: "order_by" };
30863
- id: { __type: "order_by" };
30864
- inputJson: { __type: "order_by" };
30865
- isCurrent: { __type: "order_by" };
30866
- jobId: { __type: "order_by" };
30867
- jobIndex: { __type: "order_by" };
30868
- jobPageId: { __type: "order_by" };
30869
- jobPlanId: { __type: "order_by" };
30870
- objectId: { __type: "order_by" };
30871
- opId: { __type: "order_by" };
30872
- outputJson: { __type: "order_by" };
30873
- previousActions3_aggregate: { __type: "action_aggregate_order_by" };
30874
- previousActionsByType_aggregate: { __type: "action_aggregate_order_by" };
30875
- previousActions_aggregate: { __type: "action_aggregate_order_by" };
30876
- refs: { __type: "order_by" };
30877
- schemaId: { __type: "order_by" };
30878
- source: { __type: "source_order_by" };
30879
- sourceId: { __type: "order_by" };
30880
- status: { __type: "order_by" };
30881
- tenant: { __type: "tenant_order_by" };
30882
- tenantId: { __type: "order_by" };
30883
- title: { __type: "order_by" };
30884
- type: { __type: "order_by" };
30885
- uniqueRef: { __type: "order_by" };
30886
- updatedAt: { __type: "order_by" };
30887
- };
30888
- action_pk_columns_input: { id: { __type: "uuid!" } };
30889
- action_prepend_input: {
30890
- inputJson: { __type: "jsonb" };
30891
- outputJson: { __type: "jsonb" };
30892
- refs: { __type: "jsonb" };
30893
- };
30894
- action_set_input: {
30895
- appId: { __type: "String" };
30896
- automationId: { __type: "uuid" };
30897
- connectionId: { __type: "uuid" };
30898
- createdAt: { __type: "timestamptz" };
30899
- id: { __type: "uuid" };
30900
- inputJson: { __type: "jsonb" };
30901
- isCurrent: { __type: "Boolean" };
30902
- jobId: { __type: "uuid" };
30903
- jobIndex: { __type: "Int" };
30904
- jobPageId: { __type: "uuid" };
30905
- jobPlanId: { __type: "uuid" };
30906
- objectId: { __type: "uuid" };
30907
- opId: { __type: "uuid" };
30908
- outputJson: { __type: "jsonb" };
30909
- refs: { __type: "jsonb" };
30910
- schemaId: { __type: "uuid" };
30911
- sourceId: { __type: "uuid" };
30912
- status: { __type: "String" };
30913
- tenantId: { __type: "uuid" };
30914
- title: { __type: "String" };
30915
- type: { __type: "String" };
30916
- uniqueRef: { __type: "String" };
30917
- updatedAt: { __type: "timestamptz" };
30918
- };
30919
- action_stddev_fields: {
30920
- __typename: { __type: "String!" };
30921
- jobIndex: { __type: "Float" };
30922
- };
30923
- action_stddev_order_by: { jobIndex: { __type: "order_by" } };
30924
- action_stddev_pop_fields: {
30925
- __typename: { __type: "String!" };
30926
- jobIndex: { __type: "Float" };
30927
- };
30928
- action_stddev_pop_order_by: { jobIndex: { __type: "order_by" } };
30929
- action_stddev_samp_fields: {
30930
- __typename: { __type: "String!" };
30931
- jobIndex: { __type: "Float" };
30932
- };
30933
- action_stddev_samp_order_by: { jobIndex: { __type: "order_by" } };
30934
- action_stream_cursor_input: {
30935
- initial_value: { __type: "action_stream_cursor_value_input!" };
30936
- ordering: { __type: "cursor_ordering" };
30937
- };
30938
- action_stream_cursor_value_input: {
30939
- appId: { __type: "String" };
30940
- automationId: { __type: "uuid" };
30941
- connectionId: { __type: "uuid" };
30942
- createdAt: { __type: "timestamptz" };
30943
- id: { __type: "uuid" };
30944
- inputJson: { __type: "jsonb" };
30945
- isCurrent: { __type: "Boolean" };
30946
- jobId: { __type: "uuid" };
30947
- jobIndex: { __type: "Int" };
30948
- jobPageId: { __type: "uuid" };
30949
- jobPlanId: { __type: "uuid" };
30950
- objectId: { __type: "uuid" };
30951
- opId: { __type: "uuid" };
30952
- outputJson: { __type: "jsonb" };
30953
- refs: { __type: "jsonb" };
30954
- schemaId: { __type: "uuid" };
30955
- sourceId: { __type: "uuid" };
30956
- status: { __type: "String" };
30957
- tenantId: { __type: "uuid" };
30958
- title: { __type: "String" };
30959
- type: { __type: "String" };
30960
- uniqueRef: { __type: "String" };
30961
- updatedAt: { __type: "timestamptz" };
30962
- };
30963
- action_sum_fields: {
30964
- __typename: { __type: "String!" };
30965
- jobIndex: { __type: "Int" };
30966
- };
30967
- action_sum_order_by: { jobIndex: { __type: "order_by" } };
30968
- action_updates: {
30969
- _append: { __type: "action_append_input" };
30970
- _delete_at_path: { __type: "action_delete_at_path_input" };
30971
- _delete_elem: { __type: "action_delete_elem_input" };
30972
- _delete_key: { __type: "action_delete_key_input" };
30973
- _inc: { __type: "action_inc_input" };
30974
- _prepend: { __type: "action_prepend_input" };
30975
- _set: { __type: "action_set_input" };
30976
- where: { __type: "action_bool_exp!" };
30977
- };
30978
- action_var_pop_fields: {
30979
- __typename: { __type: "String!" };
30980
- jobIndex: { __type: "Float" };
30981
- };
30982
- action_var_pop_order_by: { jobIndex: { __type: "order_by" } };
30983
- action_var_samp_fields: {
30984
- __typename: { __type: "String!" };
30985
- jobIndex: { __type: "Float" };
30986
- };
30987
- action_var_samp_order_by: { jobIndex: { __type: "order_by" } };
30988
- action_variance_fields: {
30989
- __typename: { __type: "String!" };
30990
- jobIndex: { __type: "Float" };
30991
- };
30992
- action_variance_order_by: { jobIndex: { __type: "order_by" } };
30993
29987
  activeStatus: {
30994
29988
  __typename: { __type: "String!" };
30995
29989
  name: { __type: "String!" };
@@ -42192,11 +41186,6 @@ export declare const generatedSchema: {
42192
41186
  __type: "account_mutation_response";
42193
41187
  __args: { where: "account_bool_exp!" };
42194
41188
  };
42195
- deleteAction: { __type: "action"; __args: { id: "uuid!" } };
42196
- deleteActions: {
42197
- __type: "action_mutation_response";
42198
- __args: { where: "action_bool_exp!" };
42199
- };
42200
41189
  deleteActiveStatus: { __type: "activeStatus"; __args: { name: "String!" } };
42201
41190
  deleteActiveStatuses: {
42202
41191
  __type: "activeStatus_mutation_response";
@@ -43122,20 +42111,6 @@ export declare const generatedSchema: {
43122
42111
  on_conflict: "account_on_conflict";
43123
42112
  };
43124
42113
  };
43125
- insertAction: {
43126
- __type: "action";
43127
- __args: {
43128
- object: "action_insert_input!";
43129
- on_conflict: "action_on_conflict";
43130
- };
43131
- };
43132
- insertActions: {
43133
- __type: "action_mutation_response";
43134
- __args: {
43135
- objects: "[action_insert_input!]!";
43136
- on_conflict: "action_on_conflict";
43137
- };
43138
- };
43139
42114
  insertActiveStatus: {
43140
42115
  __type: "activeStatus";
43141
42116
  __args: {
@@ -44878,32 +43853,6 @@ export declare const generatedSchema: {
44878
43853
  __type: "account_mutation_response";
44879
43854
  __args: { _set: "account_set_input"; where: "account_bool_exp!" };
44880
43855
  };
44881
- updateAction: {
44882
- __type: "action";
44883
- __args: {
44884
- _append: "action_append_input";
44885
- _delete_at_path: "action_delete_at_path_input";
44886
- _delete_elem: "action_delete_elem_input";
44887
- _delete_key: "action_delete_key_input";
44888
- _inc: "action_inc_input";
44889
- _prepend: "action_prepend_input";
44890
- _set: "action_set_input";
44891
- pk_columns: "action_pk_columns_input!";
44892
- };
44893
- };
44894
- updateActions: {
44895
- __type: "action_mutation_response";
44896
- __args: {
44897
- _append: "action_append_input";
44898
- _delete_at_path: "action_delete_at_path_input";
44899
- _delete_elem: "action_delete_elem_input";
44900
- _delete_key: "action_delete_key_input";
44901
- _inc: "action_inc_input";
44902
- _prepend: "action_prepend_input";
44903
- _set: "action_set_input";
44904
- where: "action_bool_exp!";
44905
- };
44906
- };
44907
43856
  updateActiveStatus: {
44908
43857
  __type: "activeStatus";
44909
43858
  __args: {
@@ -45702,10 +44651,6 @@ export declare const generatedSchema: {
45702
44651
  __type: "[account_mutation_response]";
45703
44652
  __args: { updates: "[account_updates!]!" };
45704
44653
  };
45705
- updateManyActions: {
45706
- __type: "[action_mutation_response]";
45707
- __args: { updates: "[action_updates!]!" };
45708
- };
45709
44654
  updateManyActiveStatuses: {
45710
44655
  __type: "[activeStatus_mutation_response]";
45711
44656
  __args: { updates: "[activeStatus_updates!]!" };
@@ -52561,17 +51506,6 @@ export declare const generatedSchema: {
52561
51506
  where: "account_bool_exp";
52562
51507
  };
52563
51508
  };
52564
- action: { __type: "action"; __args: { id: "uuid!" } };
52565
- actions: {
52566
- __type: "[action!]!";
52567
- __args: {
52568
- distinct_on: "[action_select_column!]";
52569
- limit: "Int";
52570
- offset: "Int";
52571
- order_by: "[action_order_by!]";
52572
- where: "action_bool_exp";
52573
- };
52574
- };
52575
51509
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
52576
51510
  activeStatusAggregate: {
52577
51511
  __type: "activeStatus_aggregate!";
@@ -52614,16 +51548,6 @@ export declare const generatedSchema: {
52614
51548
  };
52615
51549
  };
52616
51550
  address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
52617
- aggregateActions: {
52618
- __type: "action_aggregate!";
52619
- __args: {
52620
- distinct_on: "[action_select_column!]";
52621
- limit: "Int";
52622
- offset: "Int";
52623
- order_by: "[action_order_by!]";
52624
- where: "action_bool_exp";
52625
- };
52626
- };
52627
51551
  app: {
52628
51552
  __type: "[app!]!";
52629
51553
  __args: {
@@ -59288,7 +58212,6 @@ export declare const generatedSchema: {
59288
58212
  where: "reservation_bool_exp";
59289
58213
  };
59290
58214
  };
59291
- schemaId: { __type: "uuid" };
59292
58215
  settings: {
59293
58216
  __type: "[setting!]!";
59294
58217
  __args: {
@@ -59501,7 +58424,6 @@ export declare const generatedSchema: {
59501
58424
  reservationId: { __type: "uuid_comparison_exp" };
59502
58425
  reservations: { __type: "reservation_bool_exp" };
59503
58426
  reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
59504
- schemaId: { __type: "uuid_comparison_exp" };
59505
58427
  settings: { __type: "setting_bool_exp" };
59506
58428
  settingsLeft: { __type: "setting_bool_exp" };
59507
58429
  settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
@@ -59572,7 +58494,6 @@ export declare const generatedSchema: {
59572
58494
  reservation: { __type: "reservation_obj_rel_insert_input" };
59573
58495
  reservationId: { __type: "uuid" };
59574
58496
  reservations: { __type: "reservation_arr_rel_insert_input" };
59575
- schemaId: { __type: "uuid" };
59576
58497
  settings: { __type: "setting_arr_rel_insert_input" };
59577
58498
  settingsLeft: { __type: "setting_arr_rel_insert_input" };
59578
58499
  settingsRight: { __type: "setting_arr_rel_insert_input" };
@@ -59604,7 +58525,6 @@ export declare const generatedSchema: {
59604
58525
  parentId: { __type: "uuid" };
59605
58526
  remoteId: { __type: "String" };
59606
58527
  reservationId: { __type: "uuid" };
59607
- schemaId: { __type: "uuid" };
59608
58528
  status: { __type: "String" };
59609
58529
  tenantId: { __type: "uuid" };
59610
58530
  transformType: { __type: "String" };
@@ -59627,7 +58547,6 @@ export declare const generatedSchema: {
59627
58547
  parentId: { __type: "order_by" };
59628
58548
  remoteId: { __type: "order_by" };
59629
58549
  reservationId: { __type: "order_by" };
59630
- schemaId: { __type: "order_by" };
59631
58550
  status: { __type: "order_by" };
59632
58551
  tenantId: { __type: "order_by" };
59633
58552
  transformType: { __type: "order_by" };
@@ -59651,7 +58570,6 @@ export declare const generatedSchema: {
59651
58570
  parentId: { __type: "uuid" };
59652
58571
  remoteId: { __type: "String" };
59653
58572
  reservationId: { __type: "uuid" };
59654
- schemaId: { __type: "uuid" };
59655
58573
  status: { __type: "String" };
59656
58574
  tenantId: { __type: "uuid" };
59657
58575
  transformType: { __type: "String" };
@@ -59674,7 +58592,6 @@ export declare const generatedSchema: {
59674
58592
  parentId: { __type: "order_by" };
59675
58593
  remoteId: { __type: "order_by" };
59676
58594
  reservationId: { __type: "order_by" };
59677
- schemaId: { __type: "order_by" };
59678
58595
  status: { __type: "order_by" };
59679
58596
  tenantId: { __type: "order_by" };
59680
58597
  transformType: { __type: "order_by" };
@@ -59733,7 +58650,6 @@ export declare const generatedSchema: {
59733
58650
  reservation: { __type: "reservation_order_by" };
59734
58651
  reservationId: { __type: "order_by" };
59735
58652
  reservations_aggregate: { __type: "reservation_aggregate_order_by" };
59736
- schemaId: { __type: "order_by" };
59737
58653
  settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
59738
58654
  settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
59739
58655
  settings_aggregate: { __type: "setting_aggregate_order_by" };
@@ -59773,7 +58689,6 @@ export declare const generatedSchema: {
59773
58689
  parentId: { __type: "uuid" };
59774
58690
  remoteId: { __type: "String" };
59775
58691
  reservationId: { __type: "uuid" };
59776
- schemaId: { __type: "uuid" };
59777
58692
  status: { __type: "String" };
59778
58693
  tenantId: { __type: "uuid" };
59779
58694
  transformJson: { __type: "jsonb" };
@@ -59819,7 +58734,6 @@ export declare const generatedSchema: {
59819
58734
  parentId: { __type: "uuid" };
59820
58735
  remoteId: { __type: "String" };
59821
58736
  reservationId: { __type: "uuid" };
59822
- schemaId: { __type: "uuid" };
59823
58737
  status: { __type: "String" };
59824
58738
  tenantId: { __type: "uuid" };
59825
58739
  transformJson: { __type: "jsonb" };
@@ -61051,17 +59965,6 @@ export declare const generatedSchema: {
61051
59965
  where: "account_bool_exp";
61052
59966
  };
61053
59967
  };
61054
- action: { __type: "action"; __args: { id: "uuid!" } };
61055
- actions: {
61056
- __type: "[action!]!";
61057
- __args: {
61058
- distinct_on: "[action_select_column!]";
61059
- limit: "Int";
61060
- offset: "Int";
61061
- order_by: "[action_order_by!]";
61062
- where: "action_bool_exp";
61063
- };
61064
- };
61065
59968
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
61066
59969
  activeStatusAggregate: {
61067
59970
  __type: "activeStatus_aggregate!";
@@ -61120,16 +60023,6 @@ export declare const generatedSchema: {
61120
60023
  where: "address_bool_exp";
61121
60024
  };
61122
60025
  };
61123
- aggregateActions: {
61124
- __type: "action_aggregate!";
61125
- __args: {
61126
- distinct_on: "[action_select_column!]";
61127
- limit: "Int";
61128
- offset: "Int";
61129
- order_by: "[action_order_by!]";
61130
- where: "action_bool_exp";
61131
- };
61132
- };
61133
60026
  app: {
61134
60027
  __type: "[app!]!";
61135
60028
  __args: {
@@ -64102,14 +62995,6 @@ export declare const generatedSchema: {
64102
62995
  where: "store_mutation_log_bool_exp";
64103
62996
  };
64104
62997
  };
64105
- streamActions: {
64106
- __type: "[action!]!";
64107
- __args: {
64108
- batch_size: "Int!";
64109
- cursor: "[action_stream_cursor_input]!";
64110
- where: "action_bool_exp";
64111
- };
64112
- };
64113
62998
  sync: { __type: "sync"; __args: { id: "uuid!" } };
64114
62999
  syncAggregate: {
64115
63000
  __type: "sync_aggregate!";
@@ -73185,424 +72070,6 @@ export interface account_mutation_response {
73185
72070
  returning: Array<account>;
73186
72071
  }
73187
72072
 
73188
- /**
73189
- * columns and relationships of "core.action"
73190
- */
73191
- export interface action {
73192
- __typename?: "action";
73193
- appId?: Maybe<ScalarsEnums["String"]>;
73194
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73195
- /**
73196
- * An array relationship
73197
- */
73198
- changes: (args?: {
73199
- /**
73200
- * distinct select on columns
73201
- */
73202
- distinct_on?: Maybe<Array<change_select_column>>;
73203
- /**
73204
- * limit the number of rows returned
73205
- */
73206
- limit?: Maybe<Scalars["Int"]>;
73207
- /**
73208
- * skip the first n rows. Use only with order_by
73209
- */
73210
- offset?: Maybe<Scalars["Int"]>;
73211
- /**
73212
- * sort the rows by one or more columns
73213
- */
73214
- order_by?: Maybe<Array<change_order_by>>;
73215
- /**
73216
- * filter the rows returned
73217
- */
73218
- where?: Maybe<change_bool_exp>;
73219
- }) => Array<change>;
73220
- /**
73221
- * An aggregate relationship
73222
- */
73223
- changes_aggregate: (args?: {
73224
- /**
73225
- * distinct select on columns
73226
- */
73227
- distinct_on?: Maybe<Array<change_select_column>>;
73228
- /**
73229
- * limit the number of rows returned
73230
- */
73231
- limit?: Maybe<Scalars["Int"]>;
73232
- /**
73233
- * skip the first n rows. Use only with order_by
73234
- */
73235
- offset?: Maybe<Scalars["Int"]>;
73236
- /**
73237
- * sort the rows by one or more columns
73238
- */
73239
- order_by?: Maybe<Array<change_order_by>>;
73240
- /**
73241
- * filter the rows returned
73242
- */
73243
- where?: Maybe<change_bool_exp>;
73244
- }) => change_aggregate;
73245
- /**
73246
- * An object relationship
73247
- */
73248
- connection?: Maybe<connection>;
73249
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73250
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73251
- id: ScalarsEnums["uuid"];
73252
- inputJson: (args?: {
73253
- /**
73254
- * JSON select path
73255
- */
73256
- path?: Maybe<Scalars["String"]>;
73257
- }) => Maybe<ScalarsEnums["jsonb"]>;
73258
- isCurrent?: Maybe<ScalarsEnums["Boolean"]>;
73259
- jobId?: Maybe<ScalarsEnums["uuid"]>;
73260
- jobIndex?: Maybe<ScalarsEnums["Int"]>;
73261
- jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73262
- jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73263
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73264
- opId?: Maybe<ScalarsEnums["uuid"]>;
73265
- outputJson: (args?: {
73266
- /**
73267
- * JSON select path
73268
- */
73269
- path?: Maybe<Scalars["String"]>;
73270
- }) => Maybe<ScalarsEnums["jsonb"]>;
73271
- /**
73272
- * An array relationship
73273
- */
73274
- previousActions: (args?: {
73275
- /**
73276
- * distinct select on columns
73277
- */
73278
- distinct_on?: Maybe<Array<action_select_column>>;
73279
- /**
73280
- * limit the number of rows returned
73281
- */
73282
- limit?: Maybe<Scalars["Int"]>;
73283
- /**
73284
- * skip the first n rows. Use only with order_by
73285
- */
73286
- offset?: Maybe<Scalars["Int"]>;
73287
- /**
73288
- * sort the rows by one or more columns
73289
- */
73290
- order_by?: Maybe<Array<action_order_by>>;
73291
- /**
73292
- * filter the rows returned
73293
- */
73294
- where?: Maybe<action_bool_exp>;
73295
- }) => Array<action>;
73296
- /**
73297
- * An array relationship
73298
- */
73299
- previousActions3: (args?: {
73300
- /**
73301
- * distinct select on columns
73302
- */
73303
- distinct_on?: Maybe<Array<action_select_column>>;
73304
- /**
73305
- * limit the number of rows returned
73306
- */
73307
- limit?: Maybe<Scalars["Int"]>;
73308
- /**
73309
- * skip the first n rows. Use only with order_by
73310
- */
73311
- offset?: Maybe<Scalars["Int"]>;
73312
- /**
73313
- * sort the rows by one or more columns
73314
- */
73315
- order_by?: Maybe<Array<action_order_by>>;
73316
- /**
73317
- * filter the rows returned
73318
- */
73319
- where?: Maybe<action_bool_exp>;
73320
- }) => Array<action>;
73321
- /**
73322
- * An aggregate relationship
73323
- */
73324
- previousActions3_aggregate: (args?: {
73325
- /**
73326
- * distinct select on columns
73327
- */
73328
- distinct_on?: Maybe<Array<action_select_column>>;
73329
- /**
73330
- * limit the number of rows returned
73331
- */
73332
- limit?: Maybe<Scalars["Int"]>;
73333
- /**
73334
- * skip the first n rows. Use only with order_by
73335
- */
73336
- offset?: Maybe<Scalars["Int"]>;
73337
- /**
73338
- * sort the rows by one or more columns
73339
- */
73340
- order_by?: Maybe<Array<action_order_by>>;
73341
- /**
73342
- * filter the rows returned
73343
- */
73344
- where?: Maybe<action_bool_exp>;
73345
- }) => action_aggregate;
73346
- /**
73347
- * An array relationship
73348
- */
73349
- previousActionsByType: (args?: {
73350
- /**
73351
- * distinct select on columns
73352
- */
73353
- distinct_on?: Maybe<Array<action_select_column>>;
73354
- /**
73355
- * limit the number of rows returned
73356
- */
73357
- limit?: Maybe<Scalars["Int"]>;
73358
- /**
73359
- * skip the first n rows. Use only with order_by
73360
- */
73361
- offset?: Maybe<Scalars["Int"]>;
73362
- /**
73363
- * sort the rows by one or more columns
73364
- */
73365
- order_by?: Maybe<Array<action_order_by>>;
73366
- /**
73367
- * filter the rows returned
73368
- */
73369
- where?: Maybe<action_bool_exp>;
73370
- }) => Array<action>;
73371
- /**
73372
- * An aggregate relationship
73373
- */
73374
- previousActionsByType_aggregate: (args?: {
73375
- /**
73376
- * distinct select on columns
73377
- */
73378
- distinct_on?: Maybe<Array<action_select_column>>;
73379
- /**
73380
- * limit the number of rows returned
73381
- */
73382
- limit?: Maybe<Scalars["Int"]>;
73383
- /**
73384
- * skip the first n rows. Use only with order_by
73385
- */
73386
- offset?: Maybe<Scalars["Int"]>;
73387
- /**
73388
- * sort the rows by one or more columns
73389
- */
73390
- order_by?: Maybe<Array<action_order_by>>;
73391
- /**
73392
- * filter the rows returned
73393
- */
73394
- where?: Maybe<action_bool_exp>;
73395
- }) => action_aggregate;
73396
- /**
73397
- * An aggregate relationship
73398
- */
73399
- previousActions_aggregate: (args?: {
73400
- /**
73401
- * distinct select on columns
73402
- */
73403
- distinct_on?: Maybe<Array<action_select_column>>;
73404
- /**
73405
- * limit the number of rows returned
73406
- */
73407
- limit?: Maybe<Scalars["Int"]>;
73408
- /**
73409
- * skip the first n rows. Use only with order_by
73410
- */
73411
- offset?: Maybe<Scalars["Int"]>;
73412
- /**
73413
- * sort the rows by one or more columns
73414
- */
73415
- order_by?: Maybe<Array<action_order_by>>;
73416
- /**
73417
- * filter the rows returned
73418
- */
73419
- where?: Maybe<action_bool_exp>;
73420
- }) => action_aggregate;
73421
- refs: (args?: {
73422
- /**
73423
- * JSON select path
73424
- */
73425
- path?: Maybe<Scalars["String"]>;
73426
- }) => Maybe<ScalarsEnums["jsonb"]>;
73427
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
73428
- /**
73429
- * An object relationship
73430
- */
73431
- source?: Maybe<source>;
73432
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73433
- status?: Maybe<ScalarsEnums["String"]>;
73434
- /**
73435
- * An object relationship
73436
- */
73437
- tenant?: Maybe<tenant>;
73438
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73439
- title?: Maybe<ScalarsEnums["String"]>;
73440
- type?: Maybe<ScalarsEnums["String"]>;
73441
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73442
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73443
- }
73444
-
73445
- /**
73446
- * aggregated selection of "core.action"
73447
- */
73448
- export interface action_aggregate {
73449
- __typename?: "action_aggregate";
73450
- aggregate?: Maybe<action_aggregate_fields>;
73451
- nodes: Array<action>;
73452
- }
73453
-
73454
- /**
73455
- * aggregate fields of "core.action"
73456
- */
73457
- export interface action_aggregate_fields {
73458
- __typename?: "action_aggregate_fields";
73459
- avg?: Maybe<action_avg_fields>;
73460
- count: (args?: {
73461
- columns?: Maybe<Array<action_select_column>>;
73462
- distinct?: Maybe<Scalars["Boolean"]>;
73463
- }) => ScalarsEnums["Int"];
73464
- max?: Maybe<action_max_fields>;
73465
- min?: Maybe<action_min_fields>;
73466
- stddev?: Maybe<action_stddev_fields>;
73467
- stddev_pop?: Maybe<action_stddev_pop_fields>;
73468
- stddev_samp?: Maybe<action_stddev_samp_fields>;
73469
- sum?: Maybe<action_sum_fields>;
73470
- var_pop?: Maybe<action_var_pop_fields>;
73471
- var_samp?: Maybe<action_var_samp_fields>;
73472
- variance?: Maybe<action_variance_fields>;
73473
- }
73474
-
73475
- /**
73476
- * aggregate avg on columns
73477
- */
73478
- export interface action_avg_fields {
73479
- __typename?: "action_avg_fields";
73480
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73481
- }
73482
-
73483
- /**
73484
- * aggregate max on columns
73485
- */
73486
- export interface action_max_fields {
73487
- __typename?: "action_max_fields";
73488
- appId?: Maybe<ScalarsEnums["String"]>;
73489
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73490
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73491
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73492
- id?: Maybe<ScalarsEnums["uuid"]>;
73493
- jobId?: Maybe<ScalarsEnums["uuid"]>;
73494
- jobIndex?: Maybe<ScalarsEnums["Int"]>;
73495
- jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73496
- jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73497
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73498
- opId?: Maybe<ScalarsEnums["uuid"]>;
73499
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
73500
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73501
- status?: Maybe<ScalarsEnums["String"]>;
73502
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73503
- title?: Maybe<ScalarsEnums["String"]>;
73504
- type?: Maybe<ScalarsEnums["String"]>;
73505
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73506
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73507
- }
73508
-
73509
- /**
73510
- * aggregate min on columns
73511
- */
73512
- export interface action_min_fields {
73513
- __typename?: "action_min_fields";
73514
- appId?: Maybe<ScalarsEnums["String"]>;
73515
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73516
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73517
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73518
- id?: Maybe<ScalarsEnums["uuid"]>;
73519
- jobId?: Maybe<ScalarsEnums["uuid"]>;
73520
- jobIndex?: Maybe<ScalarsEnums["Int"]>;
73521
- jobPageId?: Maybe<ScalarsEnums["uuid"]>;
73522
- jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
73523
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73524
- opId?: Maybe<ScalarsEnums["uuid"]>;
73525
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
73526
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73527
- status?: Maybe<ScalarsEnums["String"]>;
73528
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73529
- title?: Maybe<ScalarsEnums["String"]>;
73530
- type?: Maybe<ScalarsEnums["String"]>;
73531
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73532
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73533
- }
73534
-
73535
- /**
73536
- * response of any mutation on the table "core.action"
73537
- */
73538
- export interface action_mutation_response {
73539
- __typename?: "action_mutation_response";
73540
- /**
73541
- * number of rows affected by the mutation
73542
- */
73543
- affected_rows: ScalarsEnums["Int"];
73544
- /**
73545
- * data from the rows affected by the mutation
73546
- */
73547
- returning: Array<action>;
73548
- }
73549
-
73550
- /**
73551
- * aggregate stddev on columns
73552
- */
73553
- export interface action_stddev_fields {
73554
- __typename?: "action_stddev_fields";
73555
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73556
- }
73557
-
73558
- /**
73559
- * aggregate stddev_pop on columns
73560
- */
73561
- export interface action_stddev_pop_fields {
73562
- __typename?: "action_stddev_pop_fields";
73563
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73564
- }
73565
-
73566
- /**
73567
- * aggregate stddev_samp on columns
73568
- */
73569
- export interface action_stddev_samp_fields {
73570
- __typename?: "action_stddev_samp_fields";
73571
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73572
- }
73573
-
73574
- /**
73575
- * aggregate sum on columns
73576
- */
73577
- export interface action_sum_fields {
73578
- __typename?: "action_sum_fields";
73579
- jobIndex?: Maybe<ScalarsEnums["Int"]>;
73580
- }
73581
-
73582
- /**
73583
- * aggregate var_pop on columns
73584
- */
73585
- export interface action_var_pop_fields {
73586
- __typename?: "action_var_pop_fields";
73587
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73588
- }
73589
-
73590
- /**
73591
- * aggregate var_samp on columns
73592
- */
73593
- export interface action_var_samp_fields {
73594
- __typename?: "action_var_samp_fields";
73595
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73596
- }
73597
-
73598
- /**
73599
- * aggregate variance on columns
73600
- */
73601
- export interface action_variance_fields {
73602
- __typename?: "action_variance_fields";
73603
- jobIndex?: Maybe<ScalarsEnums["Float"]>;
73604
- }
73605
-
73606
72073
  /**
73607
72074
  * enum table to track basic active/inactive status
73608
72075
  */
@@ -82954,10 +81421,6 @@ export interface Mutation {
82954
81421
  deleteAccounts: (args: {
82955
81422
  where: account_bool_exp;
82956
81423
  }) => Maybe<account_mutation_response>;
82957
- deleteAction: (args: { id: Scalars["uuid"] }) => Maybe<action>;
82958
- deleteActions: (args: {
82959
- where: action_bool_exp;
82960
- }) => Maybe<action_mutation_response>;
82961
81424
  deleteActiveStatus: (args: {
82962
81425
  name: Scalars["String"];
82963
81426
  }) => Maybe<activeStatus>;
@@ -83637,14 +82100,6 @@ export interface Mutation {
83637
82100
  objects: Array<account_insert_input>;
83638
82101
  on_conflict?: Maybe<account_on_conflict>;
83639
82102
  }) => Maybe<account_mutation_response>;
83640
- insertAction: (args: {
83641
- object: action_insert_input;
83642
- on_conflict?: Maybe<action_on_conflict>;
83643
- }) => Maybe<action>;
83644
- insertActions: (args: {
83645
- objects: Array<action_insert_input>;
83646
- on_conflict?: Maybe<action_on_conflict>;
83647
- }) => Maybe<action_mutation_response>;
83648
82103
  insertActiveStatus: (args: {
83649
82104
  object: activeStatus_insert_input;
83650
82105
  on_conflict?: Maybe<activeStatus_on_conflict>;
@@ -84660,26 +83115,6 @@ export interface Mutation {
84660
83115
  _set?: Maybe<account_set_input>;
84661
83116
  where: account_bool_exp;
84662
83117
  }) => Maybe<account_mutation_response>;
84663
- updateAction: (args: {
84664
- _append?: Maybe<action_append_input>;
84665
- _delete_at_path?: Maybe<action_delete_at_path_input>;
84666
- _delete_elem?: Maybe<action_delete_elem_input>;
84667
- _delete_key?: Maybe<action_delete_key_input>;
84668
- _inc?: Maybe<action_inc_input>;
84669
- _prepend?: Maybe<action_prepend_input>;
84670
- _set?: Maybe<action_set_input>;
84671
- pk_columns: action_pk_columns_input;
84672
- }) => Maybe<action>;
84673
- updateActions: (args: {
84674
- _append?: Maybe<action_append_input>;
84675
- _delete_at_path?: Maybe<action_delete_at_path_input>;
84676
- _delete_elem?: Maybe<action_delete_elem_input>;
84677
- _delete_key?: Maybe<action_delete_key_input>;
84678
- _inc?: Maybe<action_inc_input>;
84679
- _prepend?: Maybe<action_prepend_input>;
84680
- _set?: Maybe<action_set_input>;
84681
- where: action_bool_exp;
84682
- }) => Maybe<action_mutation_response>;
84683
83118
  updateActiveStatus: (args: {
84684
83119
  _set?: Maybe<activeStatus_set_input>;
84685
83120
  pk_columns: activeStatus_pk_columns_input;
@@ -85210,9 +83645,6 @@ export interface Mutation {
85210
83645
  updateManyAccounts: (args: {
85211
83646
  updates: Array<account_updates>;
85212
83647
  }) => Maybe<Array<Maybe<account_mutation_response>>>;
85213
- updateManyActions: (args: {
85214
- updates: Array<action_updates>;
85215
- }) => Maybe<Array<Maybe<action_mutation_response>>>;
85216
83648
  updateManyActiveStatuses: (args: {
85217
83649
  updates: Array<activeStatus_updates>;
85218
83650
  }) => Maybe<Array<Maybe<activeStatus_mutation_response>>>;
@@ -90950,14 +89382,6 @@ export interface Query {
90950
89382
  order_by?: Maybe<Array<account_order_by>>;
90951
89383
  where?: Maybe<account_bool_exp>;
90952
89384
  }) => Array<account>;
90953
- action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
90954
- actions: (args?: {
90955
- distinct_on?: Maybe<Array<action_select_column>>;
90956
- limit?: Maybe<Scalars["Int"]>;
90957
- offset?: Maybe<Scalars["Int"]>;
90958
- order_by?: Maybe<Array<action_order_by>>;
90959
- where?: Maybe<action_bool_exp>;
90960
- }) => Array<action>;
90961
89385
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
90962
89386
  activeStatusAggregate: (args?: {
90963
89387
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -90988,13 +89412,6 @@ export interface Query {
90988
89412
  where?: Maybe<address_bool_exp>;
90989
89413
  }) => address_aggregate;
90990
89414
  address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
90991
- aggregateActions: (args?: {
90992
- distinct_on?: Maybe<Array<action_select_column>>;
90993
- limit?: Maybe<Scalars["Int"]>;
90994
- offset?: Maybe<Scalars["Int"]>;
90995
- order_by?: Maybe<Array<action_order_by>>;
90996
- where?: Maybe<action_bool_exp>;
90997
- }) => action_aggregate;
90998
89415
  app: (args?: {
90999
89416
  distinct_on?: Maybe<Array<app_select_column>>;
91000
89417
  limit?: Maybe<Scalars["Int"]>;
@@ -96453,7 +94870,6 @@ export interface source {
96453
94870
  */
96454
94871
  where?: Maybe<reservation_bool_exp>;
96455
94872
  }) => reservation_aggregate;
96456
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
96457
94873
  /**
96458
94874
  * An array relationship
96459
94875
  */
@@ -96746,7 +95162,6 @@ export interface source_max_fields {
96746
95162
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96747
95163
  remoteId?: Maybe<ScalarsEnums["String"]>;
96748
95164
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96749
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
96750
95165
  status?: Maybe<ScalarsEnums["String"]>;
96751
95166
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96752
95167
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -96783,7 +95198,6 @@ export interface source_min_fields {
96783
95198
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96784
95199
  remoteId?: Maybe<ScalarsEnums["String"]>;
96785
95200
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96786
- schemaId?: Maybe<ScalarsEnums["uuid"]>;
96787
95201
  status?: Maybe<ScalarsEnums["String"]>;
96788
95202
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96789
95203
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -97719,14 +96133,6 @@ export interface Subscription {
97719
96133
  order_by?: Maybe<Array<account_order_by>>;
97720
96134
  where?: Maybe<account_bool_exp>;
97721
96135
  }) => Array<account>;
97722
- action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
97723
- actions: (args?: {
97724
- distinct_on?: Maybe<Array<action_select_column>>;
97725
- limit?: Maybe<Scalars["Int"]>;
97726
- offset?: Maybe<Scalars["Int"]>;
97727
- order_by?: Maybe<Array<action_order_by>>;
97728
- where?: Maybe<action_bool_exp>;
97729
- }) => Array<action>;
97730
96136
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
97731
96137
  activeStatusAggregate: (args?: {
97732
96138
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -97767,13 +96173,6 @@ export interface Subscription {
97767
96173
  cursor: Array<Maybe<address_stream_cursor_input>>;
97768
96174
  where?: Maybe<address_bool_exp>;
97769
96175
  }) => Array<address>;
97770
- aggregateActions: (args?: {
97771
- distinct_on?: Maybe<Array<action_select_column>>;
97772
- limit?: Maybe<Scalars["Int"]>;
97773
- offset?: Maybe<Scalars["Int"]>;
97774
- order_by?: Maybe<Array<action_order_by>>;
97775
- where?: Maybe<action_bool_exp>;
97776
- }) => action_aggregate;
97777
96176
  app: (args?: {
97778
96177
  distinct_on?: Maybe<Array<app_select_column>>;
97779
96178
  limit?: Maybe<Scalars["Int"]>;
@@ -99887,11 +98286,6 @@ export interface Subscription {
99887
98286
  cursor: Array<Maybe<store_mutation_log_stream_cursor_input>>;
99888
98287
  where?: Maybe<store_mutation_log_bool_exp>;
99889
98288
  }) => Array<store_mutation_log>;
99890
- streamActions: (args: {
99891
- batch_size: Scalars["Int"];
99892
- cursor: Array<Maybe<action_stream_cursor_input>>;
99893
- where?: Maybe<action_bool_exp>;
99894
- }) => Array<action>;
99895
98289
  sync: (args: { id: Scalars["uuid"] }) => Maybe<sync>;
99896
98290
  syncAggregate: (args?: {
99897
98291
  distinct_on?: Maybe<Array<sync_select_column>>;
@@ -106631,20 +105025,6 @@ export interface SchemaObjectTypes {
106631
105025
  account_max_fields: account_max_fields;
106632
105026
  account_min_fields: account_min_fields;
106633
105027
  account_mutation_response: account_mutation_response;
106634
- action: action;
106635
- action_aggregate: action_aggregate;
106636
- action_aggregate_fields: action_aggregate_fields;
106637
- action_avg_fields: action_avg_fields;
106638
- action_max_fields: action_max_fields;
106639
- action_min_fields: action_min_fields;
106640
- action_mutation_response: action_mutation_response;
106641
- action_stddev_fields: action_stddev_fields;
106642
- action_stddev_pop_fields: action_stddev_pop_fields;
106643
- action_stddev_samp_fields: action_stddev_samp_fields;
106644
- action_sum_fields: action_sum_fields;
106645
- action_var_pop_fields: action_var_pop_fields;
106646
- action_var_samp_fields: action_var_samp_fields;
106647
- action_variance_fields: action_variance_fields;
106648
105028
  activeStatus: activeStatus;
106649
105029
  activeStatus_aggregate: activeStatus_aggregate;
106650
105030
  activeStatus_aggregate_fields: activeStatus_aggregate_fields;
@@ -107717,20 +106097,6 @@ export type SchemaObjectTypesNames =
107717
106097
  | "account_max_fields"
107718
106098
  | "account_min_fields"
107719
106099
  | "account_mutation_response"
107720
- | "action"
107721
- | "action_aggregate"
107722
- | "action_aggregate_fields"
107723
- | "action_avg_fields"
107724
- | "action_max_fields"
107725
- | "action_min_fields"
107726
- | "action_mutation_response"
107727
- | "action_stddev_fields"
107728
- | "action_stddev_pop_fields"
107729
- | "action_stddev_samp_fields"
107730
- | "action_sum_fields"
107731
- | "action_var_pop_fields"
107732
- | "action_var_samp_fields"
107733
- | "action_variance_fields"
107734
106100
  | "activeStatus"
107735
106101
  | "activeStatus_aggregate"
107736
106102
  | "activeStatus_aggregate_fields"
@@ -108814,15 +107180,6 @@ export interface ScalarsEnums extends Scalars {
108814
107180
  account_constraint: account_constraint | undefined;
108815
107181
  account_select_column: account_select_column | undefined;
108816
107182
  account_update_column: account_update_column | undefined;
108817
- action_constraint: action_constraint | undefined;
108818
- action_select_column: action_select_column | undefined;
108819
- action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns:
108820
- | action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns
108821
- | undefined;
108822
- action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns:
108823
- | action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns
108824
- | undefined;
108825
- action_update_column: action_update_column | undefined;
108826
107183
  activeStatus_constraint: activeStatus_constraint | undefined;
108827
107184
  activeStatus_enum: activeStatus_enum | undefined;
108828
107185
  activeStatus_select_column: activeStatus_select_column | undefined;