@vrplatform/graphql 1.1.6 → 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,484 +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
- job_index?: 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
- connection?: InputMaybe<connection_bool_exp>;
1726
- connectionId?: InputMaybe<uuid_comparison_exp>;
1727
- createdAt?: InputMaybe<timestamptz_comparison_exp>;
1728
- id?: InputMaybe<uuid_comparison_exp>;
1729
- inputJson?: InputMaybe<jsonb_comparison_exp>;
1730
- isCurrent?: InputMaybe<Boolean_comparison_exp>;
1731
- job_id?: InputMaybe<uuid_comparison_exp>;
1732
- job_index?: InputMaybe<Int_comparison_exp>;
1733
- job_page_id?: InputMaybe<uuid_comparison_exp>;
1734
- job_plan_id?: InputMaybe<uuid_comparison_exp>;
1735
- objectId?: InputMaybe<uuid_comparison_exp>;
1736
- op_id?: InputMaybe<uuid_comparison_exp>;
1737
- outputJson?: InputMaybe<jsonb_comparison_exp>;
1738
- previousActionsByType?: InputMaybe<action_bool_exp>;
1739
- previousActionsByType_aggregate?: InputMaybe<action_aggregate_bool_exp>;
1740
- refs?: InputMaybe<jsonb_comparison_exp>;
1741
- schema_id?: InputMaybe<uuid_comparison_exp>;
1742
- source?: InputMaybe<source_bool_exp>;
1743
- sourceId?: InputMaybe<uuid_comparison_exp>;
1744
- status?: InputMaybe<String_comparison_exp>;
1745
- tenant?: InputMaybe<tenant_bool_exp>;
1746
- tenantId?: InputMaybe<uuid_comparison_exp>;
1747
- title?: InputMaybe<String_comparison_exp>;
1748
- type?: InputMaybe<String_comparison_exp>;
1749
- uniqueRef?: InputMaybe<String_comparison_exp>;
1750
- updatedAt?: InputMaybe<timestamptz_comparison_exp>;
1751
- }
1752
-
1753
- /** unique or primary key constraints on table "core.action" */
1754
- export type action_constraint =
1755
- /** unique or primary key constraint on columns "id" */
1756
- "action_pkey";
1757
-
1758
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
1759
- export interface action_delete_at_path_input {
1760
- inputJson?: InputMaybe<Array<Scalars["String"]>>;
1761
- outputJson?: InputMaybe<Array<Scalars["String"]>>;
1762
- refs?: InputMaybe<Array<Scalars["String"]>>;
1763
- }
1764
-
1765
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
1766
- export interface action_delete_elem_input {
1767
- inputJson?: InputMaybe<Scalars["Int"]>;
1768
- outputJson?: InputMaybe<Scalars["Int"]>;
1769
- refs?: InputMaybe<Scalars["Int"]>;
1770
- }
1771
-
1772
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
1773
- export interface action_delete_key_input {
1774
- inputJson?: InputMaybe<Scalars["String"]>;
1775
- outputJson?: InputMaybe<Scalars["String"]>;
1776
- refs?: InputMaybe<Scalars["String"]>;
1777
- }
1778
-
1779
- /** input type for incrementing numeric columns in table "core.action" */
1780
- export interface action_inc_input {
1781
- job_index?: InputMaybe<Scalars["Int"]>;
1782
- }
1783
-
1784
- /** input type for inserting data into table "core.action" */
1785
- export interface action_insert_input {
1786
- appId?: InputMaybe<Scalars["String"]>;
1787
- automationId?: InputMaybe<Scalars["uuid"]>;
1788
- connection?: InputMaybe<connection_obj_rel_insert_input>;
1789
- connectionId?: InputMaybe<Scalars["uuid"]>;
1790
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
1791
- id?: InputMaybe<Scalars["uuid"]>;
1792
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1793
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
1794
- job_id?: InputMaybe<Scalars["uuid"]>;
1795
- job_index?: InputMaybe<Scalars["Int"]>;
1796
- job_page_id?: InputMaybe<Scalars["uuid"]>;
1797
- job_plan_id?: InputMaybe<Scalars["uuid"]>;
1798
- objectId?: InputMaybe<Scalars["uuid"]>;
1799
- op_id?: InputMaybe<Scalars["uuid"]>;
1800
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1801
- previousActionsByType?: InputMaybe<action_arr_rel_insert_input>;
1802
- refs?: InputMaybe<Scalars["jsonb"]>;
1803
- schema_id?: InputMaybe<Scalars["uuid"]>;
1804
- source?: InputMaybe<source_obj_rel_insert_input>;
1805
- sourceId?: InputMaybe<Scalars["uuid"]>;
1806
- status?: InputMaybe<Scalars["String"]>;
1807
- tenant?: InputMaybe<tenant_obj_rel_insert_input>;
1808
- tenantId?: InputMaybe<Scalars["uuid"]>;
1809
- title?: InputMaybe<Scalars["String"]>;
1810
- type?: InputMaybe<Scalars["String"]>;
1811
- uniqueRef?: InputMaybe<Scalars["String"]>;
1812
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
1813
- }
1814
-
1815
- /** order by max() on columns of table "core.action" */
1816
- export interface action_max_order_by {
1817
- appId?: InputMaybe<order_by>;
1818
- automationId?: InputMaybe<order_by>;
1819
- connectionId?: InputMaybe<order_by>;
1820
- createdAt?: InputMaybe<order_by>;
1821
- id?: InputMaybe<order_by>;
1822
- job_id?: InputMaybe<order_by>;
1823
- job_index?: InputMaybe<order_by>;
1824
- job_page_id?: InputMaybe<order_by>;
1825
- job_plan_id?: InputMaybe<order_by>;
1826
- objectId?: InputMaybe<order_by>;
1827
- op_id?: InputMaybe<order_by>;
1828
- schema_id?: InputMaybe<order_by>;
1829
- sourceId?: InputMaybe<order_by>;
1830
- status?: InputMaybe<order_by>;
1831
- tenantId?: InputMaybe<order_by>;
1832
- title?: InputMaybe<order_by>;
1833
- type?: InputMaybe<order_by>;
1834
- uniqueRef?: InputMaybe<order_by>;
1835
- updatedAt?: InputMaybe<order_by>;
1836
- }
1837
-
1838
- /** order by min() on columns of table "core.action" */
1839
- export interface action_min_order_by {
1840
- appId?: InputMaybe<order_by>;
1841
- automationId?: InputMaybe<order_by>;
1842
- connectionId?: InputMaybe<order_by>;
1843
- createdAt?: InputMaybe<order_by>;
1844
- id?: InputMaybe<order_by>;
1845
- job_id?: InputMaybe<order_by>;
1846
- job_index?: InputMaybe<order_by>;
1847
- job_page_id?: InputMaybe<order_by>;
1848
- job_plan_id?: InputMaybe<order_by>;
1849
- objectId?: InputMaybe<order_by>;
1850
- op_id?: InputMaybe<order_by>;
1851
- schema_id?: InputMaybe<order_by>;
1852
- sourceId?: InputMaybe<order_by>;
1853
- status?: InputMaybe<order_by>;
1854
- tenantId?: InputMaybe<order_by>;
1855
- title?: InputMaybe<order_by>;
1856
- type?: InputMaybe<order_by>;
1857
- uniqueRef?: InputMaybe<order_by>;
1858
- updatedAt?: InputMaybe<order_by>;
1859
- }
1860
-
1861
- /** on_conflict condition type for table "core.action" */
1862
- export interface action_on_conflict {
1863
- constraint: action_constraint;
1864
- update_columns?: Array<action_update_column>;
1865
- where?: InputMaybe<action_bool_exp>;
1866
- }
1867
-
1868
- /** Ordering options when selecting data from "core.action". */
1869
- export interface action_order_by {
1870
- appId?: InputMaybe<order_by>;
1871
- automationId?: InputMaybe<order_by>;
1872
- connection?: InputMaybe<connection_order_by>;
1873
- connectionId?: InputMaybe<order_by>;
1874
- createdAt?: InputMaybe<order_by>;
1875
- id?: InputMaybe<order_by>;
1876
- inputJson?: InputMaybe<order_by>;
1877
- isCurrent?: InputMaybe<order_by>;
1878
- job_id?: InputMaybe<order_by>;
1879
- job_index?: InputMaybe<order_by>;
1880
- job_page_id?: InputMaybe<order_by>;
1881
- job_plan_id?: InputMaybe<order_by>;
1882
- objectId?: InputMaybe<order_by>;
1883
- op_id?: InputMaybe<order_by>;
1884
- outputJson?: InputMaybe<order_by>;
1885
- previousActionsByType_aggregate?: InputMaybe<action_aggregate_order_by>;
1886
- refs?: InputMaybe<order_by>;
1887
- schema_id?: InputMaybe<order_by>;
1888
- source?: InputMaybe<source_order_by>;
1889
- sourceId?: InputMaybe<order_by>;
1890
- status?: InputMaybe<order_by>;
1891
- tenant?: InputMaybe<tenant_order_by>;
1892
- tenantId?: InputMaybe<order_by>;
1893
- title?: InputMaybe<order_by>;
1894
- type?: InputMaybe<order_by>;
1895
- uniqueRef?: InputMaybe<order_by>;
1896
- updatedAt?: InputMaybe<order_by>;
1897
- }
1898
-
1899
- /** primary key columns input for table: core.action */
1900
- export interface action_pk_columns_input {
1901
- id: Scalars["uuid"];
1902
- }
1903
-
1904
- /** prepend existing jsonb value of filtered columns with new jsonb value */
1905
- export interface action_prepend_input {
1906
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1907
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1908
- refs?: InputMaybe<Scalars["jsonb"]>;
1909
- }
1910
-
1911
- /** select columns of table "core.action" */
1912
- export type action_select_column =
1913
- /** column name */
1914
- | "appId"
1915
- /** column name */
1916
- | "automationId"
1917
- /** column name */
1918
- | "connectionId"
1919
- /** column name */
1920
- | "createdAt"
1921
- /** column name */
1922
- | "id"
1923
- /** column name */
1924
- | "inputJson"
1925
- /** column name */
1926
- | "isCurrent"
1927
- /** column name */
1928
- | "job_id"
1929
- /** column name */
1930
- | "job_index"
1931
- /** column name */
1932
- | "job_page_id"
1933
- /** column name */
1934
- | "job_plan_id"
1935
- /** column name */
1936
- | "objectId"
1937
- /** column name */
1938
- | "op_id"
1939
- /** column name */
1940
- | "outputJson"
1941
- /** column name */
1942
- | "refs"
1943
- /** column name */
1944
- | "schema_id"
1945
- /** column name */
1946
- | "sourceId"
1947
- /** column name */
1948
- | "status"
1949
- /** column name */
1950
- | "tenantId"
1951
- /** column name */
1952
- | "title"
1953
- /** column name */
1954
- | "type"
1955
- /** column name */
1956
- | "uniqueRef"
1957
- /** column name */
1958
- | "updatedAt";
1959
-
1960
- /** select "action_aggregate_bool_exp_bool_and_arguments_columns" columns of table "core.action" */
1961
- export type action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns =
1962
- /** column name */
1963
- "isCurrent";
1964
-
1965
- /** select "action_aggregate_bool_exp_bool_or_arguments_columns" columns of table "core.action" */
1966
- export type action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns =
1967
- /** column name */
1968
- "isCurrent";
1969
-
1970
- /** input type for updating data in table "core.action" */
1971
- export interface action_set_input {
1972
- appId?: InputMaybe<Scalars["String"]>;
1973
- automationId?: InputMaybe<Scalars["uuid"]>;
1974
- connectionId?: InputMaybe<Scalars["uuid"]>;
1975
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
1976
- id?: InputMaybe<Scalars["uuid"]>;
1977
- inputJson?: InputMaybe<Scalars["jsonb"]>;
1978
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
1979
- job_id?: InputMaybe<Scalars["uuid"]>;
1980
- job_index?: InputMaybe<Scalars["Int"]>;
1981
- job_page_id?: InputMaybe<Scalars["uuid"]>;
1982
- job_plan_id?: InputMaybe<Scalars["uuid"]>;
1983
- objectId?: InputMaybe<Scalars["uuid"]>;
1984
- op_id?: InputMaybe<Scalars["uuid"]>;
1985
- outputJson?: InputMaybe<Scalars["jsonb"]>;
1986
- refs?: InputMaybe<Scalars["jsonb"]>;
1987
- schema_id?: InputMaybe<Scalars["uuid"]>;
1988
- sourceId?: InputMaybe<Scalars["uuid"]>;
1989
- status?: InputMaybe<Scalars["String"]>;
1990
- tenantId?: InputMaybe<Scalars["uuid"]>;
1991
- title?: InputMaybe<Scalars["String"]>;
1992
- type?: InputMaybe<Scalars["String"]>;
1993
- uniqueRef?: InputMaybe<Scalars["String"]>;
1994
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
1995
- }
1996
-
1997
- /** order by stddev() on columns of table "core.action" */
1998
- export interface action_stddev_order_by {
1999
- job_index?: InputMaybe<order_by>;
2000
- }
2001
-
2002
- /** order by stddev_pop() on columns of table "core.action" */
2003
- export interface action_stddev_pop_order_by {
2004
- job_index?: InputMaybe<order_by>;
2005
- }
2006
-
2007
- /** order by stddev_samp() on columns of table "core.action" */
2008
- export interface action_stddev_samp_order_by {
2009
- job_index?: InputMaybe<order_by>;
2010
- }
2011
-
2012
- /** Streaming cursor of the table "action" */
2013
- export interface action_stream_cursor_input {
2014
- /** Stream column input with initial value */
2015
- initial_value: action_stream_cursor_value_input;
2016
- /** cursor ordering */
2017
- ordering?: InputMaybe<cursor_ordering>;
2018
- }
2019
-
2020
- /** Initial value of the column from where the streaming should start */
2021
- export interface action_stream_cursor_value_input {
2022
- appId?: InputMaybe<Scalars["String"]>;
2023
- automationId?: InputMaybe<Scalars["uuid"]>;
2024
- connectionId?: InputMaybe<Scalars["uuid"]>;
2025
- createdAt?: InputMaybe<Scalars["timestamptz"]>;
2026
- id?: InputMaybe<Scalars["uuid"]>;
2027
- inputJson?: InputMaybe<Scalars["jsonb"]>;
2028
- isCurrent?: InputMaybe<Scalars["Boolean"]>;
2029
- job_id?: InputMaybe<Scalars["uuid"]>;
2030
- job_index?: InputMaybe<Scalars["Int"]>;
2031
- job_page_id?: InputMaybe<Scalars["uuid"]>;
2032
- job_plan_id?: InputMaybe<Scalars["uuid"]>;
2033
- objectId?: InputMaybe<Scalars["uuid"]>;
2034
- op_id?: InputMaybe<Scalars["uuid"]>;
2035
- outputJson?: InputMaybe<Scalars["jsonb"]>;
2036
- refs?: InputMaybe<Scalars["jsonb"]>;
2037
- schema_id?: InputMaybe<Scalars["uuid"]>;
2038
- sourceId?: InputMaybe<Scalars["uuid"]>;
2039
- status?: InputMaybe<Scalars["String"]>;
2040
- tenantId?: InputMaybe<Scalars["uuid"]>;
2041
- title?: InputMaybe<Scalars["String"]>;
2042
- type?: InputMaybe<Scalars["String"]>;
2043
- uniqueRef?: InputMaybe<Scalars["String"]>;
2044
- updatedAt?: InputMaybe<Scalars["timestamptz"]>;
2045
- }
2046
-
2047
- /** order by sum() on columns of table "core.action" */
2048
- export interface action_sum_order_by {
2049
- job_index?: InputMaybe<order_by>;
2050
- }
2051
-
2052
- /** update columns of table "core.action" */
2053
- export type action_update_column =
2054
- /** column name */
2055
- | "appId"
2056
- /** column name */
2057
- | "automationId"
2058
- /** column name */
2059
- | "connectionId"
2060
- /** column name */
2061
- | "createdAt"
2062
- /** column name */
2063
- | "id"
2064
- /** column name */
2065
- | "inputJson"
2066
- /** column name */
2067
- | "isCurrent"
2068
- /** column name */
2069
- | "job_id"
2070
- /** column name */
2071
- | "job_index"
2072
- /** column name */
2073
- | "job_page_id"
2074
- /** column name */
2075
- | "job_plan_id"
2076
- /** column name */
2077
- | "objectId"
2078
- /** column name */
2079
- | "op_id"
2080
- /** column name */
2081
- | "outputJson"
2082
- /** column name */
2083
- | "refs"
2084
- /** column name */
2085
- | "schema_id"
2086
- /** column name */
2087
- | "sourceId"
2088
- /** column name */
2089
- | "status"
2090
- /** column name */
2091
- | "tenantId"
2092
- /** column name */
2093
- | "title"
2094
- /** column name */
2095
- | "type"
2096
- /** column name */
2097
- | "uniqueRef"
2098
- /** column name */
2099
- | "updatedAt";
2100
-
2101
- export interface action_updates {
2102
- /** append existing jsonb value of filtered columns with new jsonb value */
2103
- _append?: InputMaybe<action_append_input>;
2104
- /** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
2105
- _delete_at_path?: InputMaybe<action_delete_at_path_input>;
2106
- /** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
2107
- _delete_elem?: InputMaybe<action_delete_elem_input>;
2108
- /** delete key/value pair or string element. key/value pairs are matched based on their key value */
2109
- _delete_key?: InputMaybe<action_delete_key_input>;
2110
- /** increments the numeric columns with given value of the filtered values */
2111
- _inc?: InputMaybe<action_inc_input>;
2112
- /** prepend existing jsonb value of filtered columns with new jsonb value */
2113
- _prepend?: InputMaybe<action_prepend_input>;
2114
- /** sets the columns of the filtered rows to the given values */
2115
- _set?: InputMaybe<action_set_input>;
2116
- /** filter the rows which have to be updated */
2117
- where: action_bool_exp;
2118
- }
2119
-
2120
- /** order by var_pop() on columns of table "core.action" */
2121
- export interface action_var_pop_order_by {
2122
- job_index?: InputMaybe<order_by>;
2123
- }
2124
-
2125
- /** order by var_samp() on columns of table "core.action" */
2126
- export interface action_var_samp_order_by {
2127
- job_index?: InputMaybe<order_by>;
2128
- }
2129
-
2130
- /** order by variance() on columns of table "core.action" */
2131
- export interface action_variance_order_by {
2132
- job_index?: InputMaybe<order_by>;
2133
- }
2134
-
2135
1657
  /** Boolean expression to filter rows from the table "core.active_status". All fields are combined with a logical 'AND'. */
2136
1658
  export interface activeStatus_bool_exp {
2137
1659
  _and?: InputMaybe<Array<activeStatus_bool_exp>>;
@@ -21298,7 +20820,6 @@ export interface source_bool_exp {
21298
20820
  reservationId?: InputMaybe<uuid_comparison_exp>;
21299
20821
  reservations?: InputMaybe<reservation_bool_exp>;
21300
20822
  reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
21301
- schema_id?: InputMaybe<uuid_comparison_exp>;
21302
20823
  settings?: InputMaybe<setting_bool_exp>;
21303
20824
  settingsLeft?: InputMaybe<setting_bool_exp>;
21304
20825
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
@@ -21389,7 +20910,6 @@ export interface source_insert_input {
21389
20910
  reservation?: InputMaybe<reservation_obj_rel_insert_input>;
21390
20911
  reservationId?: InputMaybe<Scalars["uuid"]>;
21391
20912
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
21392
- schema_id?: InputMaybe<Scalars["uuid"]>;
21393
20913
  settings?: InputMaybe<setting_arr_rel_insert_input>;
21394
20914
  settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
21395
20915
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
@@ -21425,7 +20945,6 @@ export interface source_max_order_by {
21425
20945
  parentId?: InputMaybe<order_by>;
21426
20946
  remoteId?: InputMaybe<order_by>;
21427
20947
  reservationId?: InputMaybe<order_by>;
21428
- schema_id?: InputMaybe<order_by>;
21429
20948
  status?: InputMaybe<order_by>;
21430
20949
  tenantId?: InputMaybe<order_by>;
21431
20950
  transformType?: InputMaybe<order_by>;
@@ -21453,7 +20972,6 @@ export interface source_min_order_by {
21453
20972
  parentId?: InputMaybe<order_by>;
21454
20973
  remoteId?: InputMaybe<order_by>;
21455
20974
  reservationId?: InputMaybe<order_by>;
21456
- schema_id?: InputMaybe<order_by>;
21457
20975
  status?: InputMaybe<order_by>;
21458
20976
  tenantId?: InputMaybe<order_by>;
21459
20977
  transformType?: InputMaybe<order_by>;
@@ -21510,7 +21028,6 @@ export interface source_order_by {
21510
21028
  reservation?: InputMaybe<reservation_order_by>;
21511
21029
  reservationId?: InputMaybe<order_by>;
21512
21030
  reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
21513
- schema_id?: InputMaybe<order_by>;
21514
21031
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
21515
21032
  settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
21516
21033
  settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
@@ -21576,8 +21093,6 @@ export type source_select_column =
21576
21093
  /** column name */
21577
21094
  | "reservationId"
21578
21095
  /** column name */
21579
- | "schema_id"
21580
- /** column name */
21581
21096
  | "status"
21582
21097
  /** column name */
21583
21098
  | "tenantId"
@@ -21624,7 +21139,6 @@ export interface source_set_input {
21624
21139
  parentId?: InputMaybe<Scalars["uuid"]>;
21625
21140
  remoteId?: InputMaybe<Scalars["String"]>;
21626
21141
  reservationId?: InputMaybe<Scalars["uuid"]>;
21627
- schema_id?: InputMaybe<Scalars["uuid"]>;
21628
21142
  status?: InputMaybe<Scalars["String"]>;
21629
21143
  tenantId?: InputMaybe<Scalars["uuid"]>;
21630
21144
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21679,7 +21193,6 @@ export interface source_stream_cursor_value_input {
21679
21193
  parentId?: InputMaybe<Scalars["uuid"]>;
21680
21194
  remoteId?: InputMaybe<Scalars["String"]>;
21681
21195
  reservationId?: InputMaybe<Scalars["uuid"]>;
21682
- schema_id?: InputMaybe<Scalars["uuid"]>;
21683
21196
  status?: InputMaybe<Scalars["String"]>;
21684
21197
  tenantId?: InputMaybe<Scalars["uuid"]>;
21685
21198
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21731,8 +21244,6 @@ export type source_update_column =
21731
21244
  /** column name */
21732
21245
  | "reservationId"
21733
21246
  /** column name */
21734
- | "schema_id"
21735
- /** column name */
21736
21247
  | "status"
21737
21248
  /** column name */
21738
21249
  | "tenantId"
@@ -30473,439 +29984,6 @@ export declare const generatedSchema: {
30473
29984
  _set: { __type: "account_set_input" };
30474
29985
  where: { __type: "account_bool_exp!" };
30475
29986
  };
30476
- action: {
30477
- __typename: { __type: "String!" };
30478
- appId: { __type: "String" };
30479
- automationId: { __type: "uuid" };
30480
- connection: { __type: "connection" };
30481
- connectionId: { __type: "uuid" };
30482
- createdAt: { __type: "timestamptz" };
30483
- id: { __type: "uuid!" };
30484
- inputJson: { __type: "jsonb"; __args: { path: "String" } };
30485
- isCurrent: { __type: "Boolean" };
30486
- job_id: { __type: "uuid" };
30487
- job_index: { __type: "Int" };
30488
- job_page_id: { __type: "uuid" };
30489
- job_plan_id: { __type: "uuid" };
30490
- objectId: { __type: "uuid" };
30491
- op_id: { __type: "uuid" };
30492
- outputJson: { __type: "jsonb"; __args: { path: "String" } };
30493
- previousActionsByType: {
30494
- __type: "[action!]!";
30495
- __args: {
30496
- distinct_on: "[action_select_column!]";
30497
- limit: "Int";
30498
- offset: "Int";
30499
- order_by: "[action_order_by!]";
30500
- where: "action_bool_exp";
30501
- };
30502
- };
30503
- previousActionsByType_aggregate: {
30504
- __type: "action_aggregate!";
30505
- __args: {
30506
- distinct_on: "[action_select_column!]";
30507
- limit: "Int";
30508
- offset: "Int";
30509
- order_by: "[action_order_by!]";
30510
- where: "action_bool_exp";
30511
- };
30512
- };
30513
- refs: { __type: "jsonb"; __args: { path: "String" } };
30514
- schema_id: { __type: "uuid" };
30515
- source: { __type: "source" };
30516
- sourceId: { __type: "uuid" };
30517
- status: { __type: "String" };
30518
- tenant: { __type: "tenant" };
30519
- tenantId: { __type: "uuid" };
30520
- title: { __type: "String" };
30521
- type: { __type: "String" };
30522
- uniqueRef: { __type: "String" };
30523
- updatedAt: { __type: "timestamptz" };
30524
- };
30525
- action_aggregate: {
30526
- __typename: { __type: "String!" };
30527
- aggregate: { __type: "action_aggregate_fields" };
30528
- nodes: { __type: "[action!]!" };
30529
- };
30530
- action_aggregate_bool_exp: {
30531
- bool_and: { __type: "action_aggregate_bool_exp_bool_and" };
30532
- bool_or: { __type: "action_aggregate_bool_exp_bool_or" };
30533
- count: { __type: "action_aggregate_bool_exp_count" };
30534
- };
30535
- action_aggregate_bool_exp_bool_and: {
30536
- arguments: {
30537
- __type: "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns!";
30538
- };
30539
- distinct: { __type: "Boolean" };
30540
- filter: { __type: "action_bool_exp" };
30541
- predicate: { __type: "Boolean_comparison_exp!" };
30542
- };
30543
- action_aggregate_bool_exp_bool_or: {
30544
- arguments: {
30545
- __type: "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns!";
30546
- };
30547
- distinct: { __type: "Boolean" };
30548
- filter: { __type: "action_bool_exp" };
30549
- predicate: { __type: "Boolean_comparison_exp!" };
30550
- };
30551
- action_aggregate_bool_exp_count: {
30552
- arguments: { __type: "[action_select_column!]" };
30553
- distinct: { __type: "Boolean" };
30554
- filter: { __type: "action_bool_exp" };
30555
- predicate: { __type: "Int_comparison_exp!" };
30556
- };
30557
- action_aggregate_fields: {
30558
- __typename: { __type: "String!" };
30559
- avg: { __type: "action_avg_fields" };
30560
- count: {
30561
- __type: "Int!";
30562
- __args: { columns: "[action_select_column!]"; distinct: "Boolean" };
30563
- };
30564
- max: { __type: "action_max_fields" };
30565
- min: { __type: "action_min_fields" };
30566
- stddev: { __type: "action_stddev_fields" };
30567
- stddev_pop: { __type: "action_stddev_pop_fields" };
30568
- stddev_samp: { __type: "action_stddev_samp_fields" };
30569
- sum: { __type: "action_sum_fields" };
30570
- var_pop: { __type: "action_var_pop_fields" };
30571
- var_samp: { __type: "action_var_samp_fields" };
30572
- variance: { __type: "action_variance_fields" };
30573
- };
30574
- action_aggregate_order_by: {
30575
- avg: { __type: "action_avg_order_by" };
30576
- count: { __type: "order_by" };
30577
- max: { __type: "action_max_order_by" };
30578
- min: { __type: "action_min_order_by" };
30579
- stddev: { __type: "action_stddev_order_by" };
30580
- stddev_pop: { __type: "action_stddev_pop_order_by" };
30581
- stddev_samp: { __type: "action_stddev_samp_order_by" };
30582
- sum: { __type: "action_sum_order_by" };
30583
- var_pop: { __type: "action_var_pop_order_by" };
30584
- var_samp: { __type: "action_var_samp_order_by" };
30585
- variance: { __type: "action_variance_order_by" };
30586
- };
30587
- action_append_input: {
30588
- inputJson: { __type: "jsonb" };
30589
- outputJson: { __type: "jsonb" };
30590
- refs: { __type: "jsonb" };
30591
- };
30592
- action_arr_rel_insert_input: {
30593
- data: { __type: "[action_insert_input!]!" };
30594
- on_conflict: { __type: "action_on_conflict" };
30595
- };
30596
- action_avg_fields: {
30597
- __typename: { __type: "String!" };
30598
- job_index: { __type: "Float" };
30599
- };
30600
- action_avg_order_by: { job_index: { __type: "order_by" } };
30601
- action_bool_exp: {
30602
- _and: { __type: "[action_bool_exp!]" };
30603
- _not: { __type: "action_bool_exp" };
30604
- _or: { __type: "[action_bool_exp!]" };
30605
- appId: { __type: "String_comparison_exp" };
30606
- automationId: { __type: "uuid_comparison_exp" };
30607
- connection: { __type: "connection_bool_exp" };
30608
- connectionId: { __type: "uuid_comparison_exp" };
30609
- createdAt: { __type: "timestamptz_comparison_exp" };
30610
- id: { __type: "uuid_comparison_exp" };
30611
- inputJson: { __type: "jsonb_comparison_exp" };
30612
- isCurrent: { __type: "Boolean_comparison_exp" };
30613
- job_id: { __type: "uuid_comparison_exp" };
30614
- job_index: { __type: "Int_comparison_exp" };
30615
- job_page_id: { __type: "uuid_comparison_exp" };
30616
- job_plan_id: { __type: "uuid_comparison_exp" };
30617
- objectId: { __type: "uuid_comparison_exp" };
30618
- op_id: { __type: "uuid_comparison_exp" };
30619
- outputJson: { __type: "jsonb_comparison_exp" };
30620
- previousActionsByType: { __type: "action_bool_exp" };
30621
- previousActionsByType_aggregate: { __type: "action_aggregate_bool_exp" };
30622
- refs: { __type: "jsonb_comparison_exp" };
30623
- schema_id: { __type: "uuid_comparison_exp" };
30624
- source: { __type: "source_bool_exp" };
30625
- sourceId: { __type: "uuid_comparison_exp" };
30626
- status: { __type: "String_comparison_exp" };
30627
- tenant: { __type: "tenant_bool_exp" };
30628
- tenantId: { __type: "uuid_comparison_exp" };
30629
- title: { __type: "String_comparison_exp" };
30630
- type: { __type: "String_comparison_exp" };
30631
- uniqueRef: { __type: "String_comparison_exp" };
30632
- updatedAt: { __type: "timestamptz_comparison_exp" };
30633
- };
30634
- action_delete_at_path_input: {
30635
- inputJson: { __type: "[String!]" };
30636
- outputJson: { __type: "[String!]" };
30637
- refs: { __type: "[String!]" };
30638
- };
30639
- action_delete_elem_input: {
30640
- inputJson: { __type: "Int" };
30641
- outputJson: { __type: "Int" };
30642
- refs: { __type: "Int" };
30643
- };
30644
- action_delete_key_input: {
30645
- inputJson: { __type: "String" };
30646
- outputJson: { __type: "String" };
30647
- refs: { __type: "String" };
30648
- };
30649
- action_inc_input: { job_index: { __type: "Int" } };
30650
- action_insert_input: {
30651
- appId: { __type: "String" };
30652
- automationId: { __type: "uuid" };
30653
- connection: { __type: "connection_obj_rel_insert_input" };
30654
- connectionId: { __type: "uuid" };
30655
- createdAt: { __type: "timestamptz" };
30656
- id: { __type: "uuid" };
30657
- inputJson: { __type: "jsonb" };
30658
- isCurrent: { __type: "Boolean" };
30659
- job_id: { __type: "uuid" };
30660
- job_index: { __type: "Int" };
30661
- job_page_id: { __type: "uuid" };
30662
- job_plan_id: { __type: "uuid" };
30663
- objectId: { __type: "uuid" };
30664
- op_id: { __type: "uuid" };
30665
- outputJson: { __type: "jsonb" };
30666
- previousActionsByType: { __type: "action_arr_rel_insert_input" };
30667
- refs: { __type: "jsonb" };
30668
- schema_id: { __type: "uuid" };
30669
- source: { __type: "source_obj_rel_insert_input" };
30670
- sourceId: { __type: "uuid" };
30671
- status: { __type: "String" };
30672
- tenant: { __type: "tenant_obj_rel_insert_input" };
30673
- tenantId: { __type: "uuid" };
30674
- title: { __type: "String" };
30675
- type: { __type: "String" };
30676
- uniqueRef: { __type: "String" };
30677
- updatedAt: { __type: "timestamptz" };
30678
- };
30679
- action_max_fields: {
30680
- __typename: { __type: "String!" };
30681
- appId: { __type: "String" };
30682
- automationId: { __type: "uuid" };
30683
- connectionId: { __type: "uuid" };
30684
- createdAt: { __type: "timestamptz" };
30685
- id: { __type: "uuid" };
30686
- job_id: { __type: "uuid" };
30687
- job_index: { __type: "Int" };
30688
- job_page_id: { __type: "uuid" };
30689
- job_plan_id: { __type: "uuid" };
30690
- objectId: { __type: "uuid" };
30691
- op_id: { __type: "uuid" };
30692
- schema_id: { __type: "uuid" };
30693
- sourceId: { __type: "uuid" };
30694
- status: { __type: "String" };
30695
- tenantId: { __type: "uuid" };
30696
- title: { __type: "String" };
30697
- type: { __type: "String" };
30698
- uniqueRef: { __type: "String" };
30699
- updatedAt: { __type: "timestamptz" };
30700
- };
30701
- action_max_order_by: {
30702
- appId: { __type: "order_by" };
30703
- automationId: { __type: "order_by" };
30704
- connectionId: { __type: "order_by" };
30705
- createdAt: { __type: "order_by" };
30706
- id: { __type: "order_by" };
30707
- job_id: { __type: "order_by" };
30708
- job_index: { __type: "order_by" };
30709
- job_page_id: { __type: "order_by" };
30710
- job_plan_id: { __type: "order_by" };
30711
- objectId: { __type: "order_by" };
30712
- op_id: { __type: "order_by" };
30713
- schema_id: { __type: "order_by" };
30714
- sourceId: { __type: "order_by" };
30715
- status: { __type: "order_by" };
30716
- tenantId: { __type: "order_by" };
30717
- title: { __type: "order_by" };
30718
- type: { __type: "order_by" };
30719
- uniqueRef: { __type: "order_by" };
30720
- updatedAt: { __type: "order_by" };
30721
- };
30722
- action_min_fields: {
30723
- __typename: { __type: "String!" };
30724
- appId: { __type: "String" };
30725
- automationId: { __type: "uuid" };
30726
- connectionId: { __type: "uuid" };
30727
- createdAt: { __type: "timestamptz" };
30728
- id: { __type: "uuid" };
30729
- job_id: { __type: "uuid" };
30730
- job_index: { __type: "Int" };
30731
- job_page_id: { __type: "uuid" };
30732
- job_plan_id: { __type: "uuid" };
30733
- objectId: { __type: "uuid" };
30734
- op_id: { __type: "uuid" };
30735
- schema_id: { __type: "uuid" };
30736
- sourceId: { __type: "uuid" };
30737
- status: { __type: "String" };
30738
- tenantId: { __type: "uuid" };
30739
- title: { __type: "String" };
30740
- type: { __type: "String" };
30741
- uniqueRef: { __type: "String" };
30742
- updatedAt: { __type: "timestamptz" };
30743
- };
30744
- action_min_order_by: {
30745
- appId: { __type: "order_by" };
30746
- automationId: { __type: "order_by" };
30747
- connectionId: { __type: "order_by" };
30748
- createdAt: { __type: "order_by" };
30749
- id: { __type: "order_by" };
30750
- job_id: { __type: "order_by" };
30751
- job_index: { __type: "order_by" };
30752
- job_page_id: { __type: "order_by" };
30753
- job_plan_id: { __type: "order_by" };
30754
- objectId: { __type: "order_by" };
30755
- op_id: { __type: "order_by" };
30756
- schema_id: { __type: "order_by" };
30757
- sourceId: { __type: "order_by" };
30758
- status: { __type: "order_by" };
30759
- tenantId: { __type: "order_by" };
30760
- title: { __type: "order_by" };
30761
- type: { __type: "order_by" };
30762
- uniqueRef: { __type: "order_by" };
30763
- updatedAt: { __type: "order_by" };
30764
- };
30765
- action_mutation_response: {
30766
- __typename: { __type: "String!" };
30767
- affected_rows: { __type: "Int!" };
30768
- returning: { __type: "[action!]!" };
30769
- };
30770
- action_on_conflict: {
30771
- constraint: { __type: "action_constraint!" };
30772
- update_columns: { __type: "[action_update_column!]!" };
30773
- where: { __type: "action_bool_exp" };
30774
- };
30775
- action_order_by: {
30776
- appId: { __type: "order_by" };
30777
- automationId: { __type: "order_by" };
30778
- connection: { __type: "connection_order_by" };
30779
- connectionId: { __type: "order_by" };
30780
- createdAt: { __type: "order_by" };
30781
- id: { __type: "order_by" };
30782
- inputJson: { __type: "order_by" };
30783
- isCurrent: { __type: "order_by" };
30784
- job_id: { __type: "order_by" };
30785
- job_index: { __type: "order_by" };
30786
- job_page_id: { __type: "order_by" };
30787
- job_plan_id: { __type: "order_by" };
30788
- objectId: { __type: "order_by" };
30789
- op_id: { __type: "order_by" };
30790
- outputJson: { __type: "order_by" };
30791
- previousActionsByType_aggregate: { __type: "action_aggregate_order_by" };
30792
- refs: { __type: "order_by" };
30793
- schema_id: { __type: "order_by" };
30794
- source: { __type: "source_order_by" };
30795
- sourceId: { __type: "order_by" };
30796
- status: { __type: "order_by" };
30797
- tenant: { __type: "tenant_order_by" };
30798
- tenantId: { __type: "order_by" };
30799
- title: { __type: "order_by" };
30800
- type: { __type: "order_by" };
30801
- uniqueRef: { __type: "order_by" };
30802
- updatedAt: { __type: "order_by" };
30803
- };
30804
- action_pk_columns_input: { id: { __type: "uuid!" } };
30805
- action_prepend_input: {
30806
- inputJson: { __type: "jsonb" };
30807
- outputJson: { __type: "jsonb" };
30808
- refs: { __type: "jsonb" };
30809
- };
30810
- action_set_input: {
30811
- appId: { __type: "String" };
30812
- automationId: { __type: "uuid" };
30813
- connectionId: { __type: "uuid" };
30814
- createdAt: { __type: "timestamptz" };
30815
- id: { __type: "uuid" };
30816
- inputJson: { __type: "jsonb" };
30817
- isCurrent: { __type: "Boolean" };
30818
- job_id: { __type: "uuid" };
30819
- job_index: { __type: "Int" };
30820
- job_page_id: { __type: "uuid" };
30821
- job_plan_id: { __type: "uuid" };
30822
- objectId: { __type: "uuid" };
30823
- op_id: { __type: "uuid" };
30824
- outputJson: { __type: "jsonb" };
30825
- refs: { __type: "jsonb" };
30826
- schema_id: { __type: "uuid" };
30827
- sourceId: { __type: "uuid" };
30828
- status: { __type: "String" };
30829
- tenantId: { __type: "uuid" };
30830
- title: { __type: "String" };
30831
- type: { __type: "String" };
30832
- uniqueRef: { __type: "String" };
30833
- updatedAt: { __type: "timestamptz" };
30834
- };
30835
- action_stddev_fields: {
30836
- __typename: { __type: "String!" };
30837
- job_index: { __type: "Float" };
30838
- };
30839
- action_stddev_order_by: { job_index: { __type: "order_by" } };
30840
- action_stddev_pop_fields: {
30841
- __typename: { __type: "String!" };
30842
- job_index: { __type: "Float" };
30843
- };
30844
- action_stddev_pop_order_by: { job_index: { __type: "order_by" } };
30845
- action_stddev_samp_fields: {
30846
- __typename: { __type: "String!" };
30847
- job_index: { __type: "Float" };
30848
- };
30849
- action_stddev_samp_order_by: { job_index: { __type: "order_by" } };
30850
- action_stream_cursor_input: {
30851
- initial_value: { __type: "action_stream_cursor_value_input!" };
30852
- ordering: { __type: "cursor_ordering" };
30853
- };
30854
- action_stream_cursor_value_input: {
30855
- appId: { __type: "String" };
30856
- automationId: { __type: "uuid" };
30857
- connectionId: { __type: "uuid" };
30858
- createdAt: { __type: "timestamptz" };
30859
- id: { __type: "uuid" };
30860
- inputJson: { __type: "jsonb" };
30861
- isCurrent: { __type: "Boolean" };
30862
- job_id: { __type: "uuid" };
30863
- job_index: { __type: "Int" };
30864
- job_page_id: { __type: "uuid" };
30865
- job_plan_id: { __type: "uuid" };
30866
- objectId: { __type: "uuid" };
30867
- op_id: { __type: "uuid" };
30868
- outputJson: { __type: "jsonb" };
30869
- refs: { __type: "jsonb" };
30870
- schema_id: { __type: "uuid" };
30871
- sourceId: { __type: "uuid" };
30872
- status: { __type: "String" };
30873
- tenantId: { __type: "uuid" };
30874
- title: { __type: "String" };
30875
- type: { __type: "String" };
30876
- uniqueRef: { __type: "String" };
30877
- updatedAt: { __type: "timestamptz" };
30878
- };
30879
- action_sum_fields: {
30880
- __typename: { __type: "String!" };
30881
- job_index: { __type: "Int" };
30882
- };
30883
- action_sum_order_by: { job_index: { __type: "order_by" } };
30884
- action_updates: {
30885
- _append: { __type: "action_append_input" };
30886
- _delete_at_path: { __type: "action_delete_at_path_input" };
30887
- _delete_elem: { __type: "action_delete_elem_input" };
30888
- _delete_key: { __type: "action_delete_key_input" };
30889
- _inc: { __type: "action_inc_input" };
30890
- _prepend: { __type: "action_prepend_input" };
30891
- _set: { __type: "action_set_input" };
30892
- where: { __type: "action_bool_exp!" };
30893
- };
30894
- action_var_pop_fields: {
30895
- __typename: { __type: "String!" };
30896
- job_index: { __type: "Float" };
30897
- };
30898
- action_var_pop_order_by: { job_index: { __type: "order_by" } };
30899
- action_var_samp_fields: {
30900
- __typename: { __type: "String!" };
30901
- job_index: { __type: "Float" };
30902
- };
30903
- action_var_samp_order_by: { job_index: { __type: "order_by" } };
30904
- action_variance_fields: {
30905
- __typename: { __type: "String!" };
30906
- job_index: { __type: "Float" };
30907
- };
30908
- action_variance_order_by: { job_index: { __type: "order_by" } };
30909
29987
  activeStatus: {
30910
29988
  __typename: { __type: "String!" };
30911
29989
  name: { __type: "String!" };
@@ -42108,11 +41186,6 @@ export declare const generatedSchema: {
42108
41186
  __type: "account_mutation_response";
42109
41187
  __args: { where: "account_bool_exp!" };
42110
41188
  };
42111
- deleteAction: { __type: "action"; __args: { id: "uuid!" } };
42112
- deleteActions: {
42113
- __type: "action_mutation_response";
42114
- __args: { where: "action_bool_exp!" };
42115
- };
42116
41189
  deleteActiveStatus: { __type: "activeStatus"; __args: { name: "String!" } };
42117
41190
  deleteActiveStatuses: {
42118
41191
  __type: "activeStatus_mutation_response";
@@ -43038,20 +42111,6 @@ export declare const generatedSchema: {
43038
42111
  on_conflict: "account_on_conflict";
43039
42112
  };
43040
42113
  };
43041
- insertAction: {
43042
- __type: "action";
43043
- __args: {
43044
- object: "action_insert_input!";
43045
- on_conflict: "action_on_conflict";
43046
- };
43047
- };
43048
- insertActions: {
43049
- __type: "action_mutation_response";
43050
- __args: {
43051
- objects: "[action_insert_input!]!";
43052
- on_conflict: "action_on_conflict";
43053
- };
43054
- };
43055
42114
  insertActiveStatus: {
43056
42115
  __type: "activeStatus";
43057
42116
  __args: {
@@ -44794,32 +43853,6 @@ export declare const generatedSchema: {
44794
43853
  __type: "account_mutation_response";
44795
43854
  __args: { _set: "account_set_input"; where: "account_bool_exp!" };
44796
43855
  };
44797
- updateAction: {
44798
- __type: "action";
44799
- __args: {
44800
- _append: "action_append_input";
44801
- _delete_at_path: "action_delete_at_path_input";
44802
- _delete_elem: "action_delete_elem_input";
44803
- _delete_key: "action_delete_key_input";
44804
- _inc: "action_inc_input";
44805
- _prepend: "action_prepend_input";
44806
- _set: "action_set_input";
44807
- pk_columns: "action_pk_columns_input!";
44808
- };
44809
- };
44810
- updateActions: {
44811
- __type: "action_mutation_response";
44812
- __args: {
44813
- _append: "action_append_input";
44814
- _delete_at_path: "action_delete_at_path_input";
44815
- _delete_elem: "action_delete_elem_input";
44816
- _delete_key: "action_delete_key_input";
44817
- _inc: "action_inc_input";
44818
- _prepend: "action_prepend_input";
44819
- _set: "action_set_input";
44820
- where: "action_bool_exp!";
44821
- };
44822
- };
44823
43856
  updateActiveStatus: {
44824
43857
  __type: "activeStatus";
44825
43858
  __args: {
@@ -45618,10 +44651,6 @@ export declare const generatedSchema: {
45618
44651
  __type: "[account_mutation_response]";
45619
44652
  __args: { updates: "[account_updates!]!" };
45620
44653
  };
45621
- updateManyActions: {
45622
- __type: "[action_mutation_response]";
45623
- __args: { updates: "[action_updates!]!" };
45624
- };
45625
44654
  updateManyActiveStatuses: {
45626
44655
  __type: "[activeStatus_mutation_response]";
45627
44656
  __args: { updates: "[activeStatus_updates!]!" };
@@ -52477,17 +51506,6 @@ export declare const generatedSchema: {
52477
51506
  where: "account_bool_exp";
52478
51507
  };
52479
51508
  };
52480
- action: { __type: "action"; __args: { id: "uuid!" } };
52481
- actions: {
52482
- __type: "[action!]!";
52483
- __args: {
52484
- distinct_on: "[action_select_column!]";
52485
- limit: "Int";
52486
- offset: "Int";
52487
- order_by: "[action_order_by!]";
52488
- where: "action_bool_exp";
52489
- };
52490
- };
52491
51509
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
52492
51510
  activeStatusAggregate: {
52493
51511
  __type: "activeStatus_aggregate!";
@@ -52530,16 +51548,6 @@ export declare const generatedSchema: {
52530
51548
  };
52531
51549
  };
52532
51550
  address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
52533
- aggregateActions: {
52534
- __type: "action_aggregate!";
52535
- __args: {
52536
- distinct_on: "[action_select_column!]";
52537
- limit: "Int";
52538
- offset: "Int";
52539
- order_by: "[action_order_by!]";
52540
- where: "action_bool_exp";
52541
- };
52542
- };
52543
51551
  app: {
52544
51552
  __type: "[app!]!";
52545
51553
  __args: {
@@ -59204,7 +58212,6 @@ export declare const generatedSchema: {
59204
58212
  where: "reservation_bool_exp";
59205
58213
  };
59206
58214
  };
59207
- schema_id: { __type: "uuid" };
59208
58215
  settings: {
59209
58216
  __type: "[setting!]!";
59210
58217
  __args: {
@@ -59417,7 +58424,6 @@ export declare const generatedSchema: {
59417
58424
  reservationId: { __type: "uuid_comparison_exp" };
59418
58425
  reservations: { __type: "reservation_bool_exp" };
59419
58426
  reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
59420
- schema_id: { __type: "uuid_comparison_exp" };
59421
58427
  settings: { __type: "setting_bool_exp" };
59422
58428
  settingsLeft: { __type: "setting_bool_exp" };
59423
58429
  settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
@@ -59488,7 +58494,6 @@ export declare const generatedSchema: {
59488
58494
  reservation: { __type: "reservation_obj_rel_insert_input" };
59489
58495
  reservationId: { __type: "uuid" };
59490
58496
  reservations: { __type: "reservation_arr_rel_insert_input" };
59491
- schema_id: { __type: "uuid" };
59492
58497
  settings: { __type: "setting_arr_rel_insert_input" };
59493
58498
  settingsLeft: { __type: "setting_arr_rel_insert_input" };
59494
58499
  settingsRight: { __type: "setting_arr_rel_insert_input" };
@@ -59520,7 +58525,6 @@ export declare const generatedSchema: {
59520
58525
  parentId: { __type: "uuid" };
59521
58526
  remoteId: { __type: "String" };
59522
58527
  reservationId: { __type: "uuid" };
59523
- schema_id: { __type: "uuid" };
59524
58528
  status: { __type: "String" };
59525
58529
  tenantId: { __type: "uuid" };
59526
58530
  transformType: { __type: "String" };
@@ -59543,7 +58547,6 @@ export declare const generatedSchema: {
59543
58547
  parentId: { __type: "order_by" };
59544
58548
  remoteId: { __type: "order_by" };
59545
58549
  reservationId: { __type: "order_by" };
59546
- schema_id: { __type: "order_by" };
59547
58550
  status: { __type: "order_by" };
59548
58551
  tenantId: { __type: "order_by" };
59549
58552
  transformType: { __type: "order_by" };
@@ -59567,7 +58570,6 @@ export declare const generatedSchema: {
59567
58570
  parentId: { __type: "uuid" };
59568
58571
  remoteId: { __type: "String" };
59569
58572
  reservationId: { __type: "uuid" };
59570
- schema_id: { __type: "uuid" };
59571
58573
  status: { __type: "String" };
59572
58574
  tenantId: { __type: "uuid" };
59573
58575
  transformType: { __type: "String" };
@@ -59590,7 +58592,6 @@ export declare const generatedSchema: {
59590
58592
  parentId: { __type: "order_by" };
59591
58593
  remoteId: { __type: "order_by" };
59592
58594
  reservationId: { __type: "order_by" };
59593
- schema_id: { __type: "order_by" };
59594
58595
  status: { __type: "order_by" };
59595
58596
  tenantId: { __type: "order_by" };
59596
58597
  transformType: { __type: "order_by" };
@@ -59649,7 +58650,6 @@ export declare const generatedSchema: {
59649
58650
  reservation: { __type: "reservation_order_by" };
59650
58651
  reservationId: { __type: "order_by" };
59651
58652
  reservations_aggregate: { __type: "reservation_aggregate_order_by" };
59652
- schema_id: { __type: "order_by" };
59653
58653
  settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
59654
58654
  settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
59655
58655
  settings_aggregate: { __type: "setting_aggregate_order_by" };
@@ -59689,7 +58689,6 @@ export declare const generatedSchema: {
59689
58689
  parentId: { __type: "uuid" };
59690
58690
  remoteId: { __type: "String" };
59691
58691
  reservationId: { __type: "uuid" };
59692
- schema_id: { __type: "uuid" };
59693
58692
  status: { __type: "String" };
59694
58693
  tenantId: { __type: "uuid" };
59695
58694
  transformJson: { __type: "jsonb" };
@@ -59735,7 +58734,6 @@ export declare const generatedSchema: {
59735
58734
  parentId: { __type: "uuid" };
59736
58735
  remoteId: { __type: "String" };
59737
58736
  reservationId: { __type: "uuid" };
59738
- schema_id: { __type: "uuid" };
59739
58737
  status: { __type: "String" };
59740
58738
  tenantId: { __type: "uuid" };
59741
58739
  transformJson: { __type: "jsonb" };
@@ -60967,17 +59965,6 @@ export declare const generatedSchema: {
60967
59965
  where: "account_bool_exp";
60968
59966
  };
60969
59967
  };
60970
- action: { __type: "action"; __args: { id: "uuid!" } };
60971
- actions: {
60972
- __type: "[action!]!";
60973
- __args: {
60974
- distinct_on: "[action_select_column!]";
60975
- limit: "Int";
60976
- offset: "Int";
60977
- order_by: "[action_order_by!]";
60978
- where: "action_bool_exp";
60979
- };
60980
- };
60981
59968
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
60982
59969
  activeStatusAggregate: {
60983
59970
  __type: "activeStatus_aggregate!";
@@ -61036,16 +60023,6 @@ export declare const generatedSchema: {
61036
60023
  where: "address_bool_exp";
61037
60024
  };
61038
60025
  };
61039
- aggregateActions: {
61040
- __type: "action_aggregate!";
61041
- __args: {
61042
- distinct_on: "[action_select_column!]";
61043
- limit: "Int";
61044
- offset: "Int";
61045
- order_by: "[action_order_by!]";
61046
- where: "action_bool_exp";
61047
- };
61048
- };
61049
60026
  app: {
61050
60027
  __type: "[app!]!";
61051
60028
  __args: {
@@ -64018,14 +62995,6 @@ export declare const generatedSchema: {
64018
62995
  where: "store_mutation_log_bool_exp";
64019
62996
  };
64020
62997
  };
64021
- streamActions: {
64022
- __type: "[action!]!";
64023
- __args: {
64024
- batch_size: "Int!";
64025
- cursor: "[action_stream_cursor_input]!";
64026
- where: "action_bool_exp";
64027
- };
64028
- };
64029
62998
  sync: { __type: "sync"; __args: { id: "uuid!" } };
64030
62999
  syncAggregate: {
64031
63000
  __type: "sync_aggregate!";
@@ -73101,274 +72070,6 @@ export interface account_mutation_response {
73101
72070
  returning: Array<account>;
73102
72071
  }
73103
72072
 
73104
- /**
73105
- * columns and relationships of "core.action"
73106
- */
73107
- export interface action {
73108
- __typename?: "action";
73109
- appId?: Maybe<ScalarsEnums["String"]>;
73110
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73111
- /**
73112
- * An object relationship
73113
- */
73114
- connection?: Maybe<connection>;
73115
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73116
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73117
- id: ScalarsEnums["uuid"];
73118
- inputJson: (args?: {
73119
- /**
73120
- * JSON select path
73121
- */
73122
- path?: Maybe<Scalars["String"]>;
73123
- }) => Maybe<ScalarsEnums["jsonb"]>;
73124
- isCurrent?: Maybe<ScalarsEnums["Boolean"]>;
73125
- job_id?: Maybe<ScalarsEnums["uuid"]>;
73126
- job_index?: Maybe<ScalarsEnums["Int"]>;
73127
- job_page_id?: Maybe<ScalarsEnums["uuid"]>;
73128
- job_plan_id?: Maybe<ScalarsEnums["uuid"]>;
73129
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73130
- op_id?: Maybe<ScalarsEnums["uuid"]>;
73131
- outputJson: (args?: {
73132
- /**
73133
- * JSON select path
73134
- */
73135
- path?: Maybe<Scalars["String"]>;
73136
- }) => Maybe<ScalarsEnums["jsonb"]>;
73137
- /**
73138
- * An array relationship
73139
- */
73140
- previousActionsByType: (args?: {
73141
- /**
73142
- * distinct select on columns
73143
- */
73144
- distinct_on?: Maybe<Array<action_select_column>>;
73145
- /**
73146
- * limit the number of rows returned
73147
- */
73148
- limit?: Maybe<Scalars["Int"]>;
73149
- /**
73150
- * skip the first n rows. Use only with order_by
73151
- */
73152
- offset?: Maybe<Scalars["Int"]>;
73153
- /**
73154
- * sort the rows by one or more columns
73155
- */
73156
- order_by?: Maybe<Array<action_order_by>>;
73157
- /**
73158
- * filter the rows returned
73159
- */
73160
- where?: Maybe<action_bool_exp>;
73161
- }) => Array<action>;
73162
- /**
73163
- * An aggregate relationship
73164
- */
73165
- previousActionsByType_aggregate: (args?: {
73166
- /**
73167
- * distinct select on columns
73168
- */
73169
- distinct_on?: Maybe<Array<action_select_column>>;
73170
- /**
73171
- * limit the number of rows returned
73172
- */
73173
- limit?: Maybe<Scalars["Int"]>;
73174
- /**
73175
- * skip the first n rows. Use only with order_by
73176
- */
73177
- offset?: Maybe<Scalars["Int"]>;
73178
- /**
73179
- * sort the rows by one or more columns
73180
- */
73181
- order_by?: Maybe<Array<action_order_by>>;
73182
- /**
73183
- * filter the rows returned
73184
- */
73185
- where?: Maybe<action_bool_exp>;
73186
- }) => action_aggregate;
73187
- refs: (args?: {
73188
- /**
73189
- * JSON select path
73190
- */
73191
- path?: Maybe<Scalars["String"]>;
73192
- }) => Maybe<ScalarsEnums["jsonb"]>;
73193
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
73194
- /**
73195
- * An object relationship
73196
- */
73197
- source?: Maybe<source>;
73198
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73199
- status?: Maybe<ScalarsEnums["String"]>;
73200
- /**
73201
- * An object relationship
73202
- */
73203
- tenant?: Maybe<tenant>;
73204
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73205
- title?: Maybe<ScalarsEnums["String"]>;
73206
- type?: Maybe<ScalarsEnums["String"]>;
73207
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73208
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73209
- }
73210
-
73211
- /**
73212
- * aggregated selection of "core.action"
73213
- */
73214
- export interface action_aggregate {
73215
- __typename?: "action_aggregate";
73216
- aggregate?: Maybe<action_aggregate_fields>;
73217
- nodes: Array<action>;
73218
- }
73219
-
73220
- /**
73221
- * aggregate fields of "core.action"
73222
- */
73223
- export interface action_aggregate_fields {
73224
- __typename?: "action_aggregate_fields";
73225
- avg?: Maybe<action_avg_fields>;
73226
- count: (args?: {
73227
- columns?: Maybe<Array<action_select_column>>;
73228
- distinct?: Maybe<Scalars["Boolean"]>;
73229
- }) => ScalarsEnums["Int"];
73230
- max?: Maybe<action_max_fields>;
73231
- min?: Maybe<action_min_fields>;
73232
- stddev?: Maybe<action_stddev_fields>;
73233
- stddev_pop?: Maybe<action_stddev_pop_fields>;
73234
- stddev_samp?: Maybe<action_stddev_samp_fields>;
73235
- sum?: Maybe<action_sum_fields>;
73236
- var_pop?: Maybe<action_var_pop_fields>;
73237
- var_samp?: Maybe<action_var_samp_fields>;
73238
- variance?: Maybe<action_variance_fields>;
73239
- }
73240
-
73241
- /**
73242
- * aggregate avg on columns
73243
- */
73244
- export interface action_avg_fields {
73245
- __typename?: "action_avg_fields";
73246
- job_index?: Maybe<ScalarsEnums["Float"]>;
73247
- }
73248
-
73249
- /**
73250
- * aggregate max on columns
73251
- */
73252
- export interface action_max_fields {
73253
- __typename?: "action_max_fields";
73254
- appId?: Maybe<ScalarsEnums["String"]>;
73255
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73256
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73257
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73258
- id?: Maybe<ScalarsEnums["uuid"]>;
73259
- job_id?: Maybe<ScalarsEnums["uuid"]>;
73260
- job_index?: Maybe<ScalarsEnums["Int"]>;
73261
- job_page_id?: Maybe<ScalarsEnums["uuid"]>;
73262
- job_plan_id?: Maybe<ScalarsEnums["uuid"]>;
73263
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73264
- op_id?: Maybe<ScalarsEnums["uuid"]>;
73265
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
73266
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73267
- status?: Maybe<ScalarsEnums["String"]>;
73268
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73269
- title?: Maybe<ScalarsEnums["String"]>;
73270
- type?: Maybe<ScalarsEnums["String"]>;
73271
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73272
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73273
- }
73274
-
73275
- /**
73276
- * aggregate min on columns
73277
- */
73278
- export interface action_min_fields {
73279
- __typename?: "action_min_fields";
73280
- appId?: Maybe<ScalarsEnums["String"]>;
73281
- automationId?: Maybe<ScalarsEnums["uuid"]>;
73282
- connectionId?: Maybe<ScalarsEnums["uuid"]>;
73283
- createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
73284
- id?: Maybe<ScalarsEnums["uuid"]>;
73285
- job_id?: Maybe<ScalarsEnums["uuid"]>;
73286
- job_index?: Maybe<ScalarsEnums["Int"]>;
73287
- job_page_id?: Maybe<ScalarsEnums["uuid"]>;
73288
- job_plan_id?: Maybe<ScalarsEnums["uuid"]>;
73289
- objectId?: Maybe<ScalarsEnums["uuid"]>;
73290
- op_id?: Maybe<ScalarsEnums["uuid"]>;
73291
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
73292
- sourceId?: Maybe<ScalarsEnums["uuid"]>;
73293
- status?: Maybe<ScalarsEnums["String"]>;
73294
- tenantId?: Maybe<ScalarsEnums["uuid"]>;
73295
- title?: Maybe<ScalarsEnums["String"]>;
73296
- type?: Maybe<ScalarsEnums["String"]>;
73297
- uniqueRef?: Maybe<ScalarsEnums["String"]>;
73298
- updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
73299
- }
73300
-
73301
- /**
73302
- * response of any mutation on the table "core.action"
73303
- */
73304
- export interface action_mutation_response {
73305
- __typename?: "action_mutation_response";
73306
- /**
73307
- * number of rows affected by the mutation
73308
- */
73309
- affected_rows: ScalarsEnums["Int"];
73310
- /**
73311
- * data from the rows affected by the mutation
73312
- */
73313
- returning: Array<action>;
73314
- }
73315
-
73316
- /**
73317
- * aggregate stddev on columns
73318
- */
73319
- export interface action_stddev_fields {
73320
- __typename?: "action_stddev_fields";
73321
- job_index?: Maybe<ScalarsEnums["Float"]>;
73322
- }
73323
-
73324
- /**
73325
- * aggregate stddev_pop on columns
73326
- */
73327
- export interface action_stddev_pop_fields {
73328
- __typename?: "action_stddev_pop_fields";
73329
- job_index?: Maybe<ScalarsEnums["Float"]>;
73330
- }
73331
-
73332
- /**
73333
- * aggregate stddev_samp on columns
73334
- */
73335
- export interface action_stddev_samp_fields {
73336
- __typename?: "action_stddev_samp_fields";
73337
- job_index?: Maybe<ScalarsEnums["Float"]>;
73338
- }
73339
-
73340
- /**
73341
- * aggregate sum on columns
73342
- */
73343
- export interface action_sum_fields {
73344
- __typename?: "action_sum_fields";
73345
- job_index?: Maybe<ScalarsEnums["Int"]>;
73346
- }
73347
-
73348
- /**
73349
- * aggregate var_pop on columns
73350
- */
73351
- export interface action_var_pop_fields {
73352
- __typename?: "action_var_pop_fields";
73353
- job_index?: Maybe<ScalarsEnums["Float"]>;
73354
- }
73355
-
73356
- /**
73357
- * aggregate var_samp on columns
73358
- */
73359
- export interface action_var_samp_fields {
73360
- __typename?: "action_var_samp_fields";
73361
- job_index?: Maybe<ScalarsEnums["Float"]>;
73362
- }
73363
-
73364
- /**
73365
- * aggregate variance on columns
73366
- */
73367
- export interface action_variance_fields {
73368
- __typename?: "action_variance_fields";
73369
- job_index?: Maybe<ScalarsEnums["Float"]>;
73370
- }
73371
-
73372
72073
  /**
73373
72074
  * enum table to track basic active/inactive status
73374
72075
  */
@@ -82720,10 +81421,6 @@ export interface Mutation {
82720
81421
  deleteAccounts: (args: {
82721
81422
  where: account_bool_exp;
82722
81423
  }) => Maybe<account_mutation_response>;
82723
- deleteAction: (args: { id: Scalars["uuid"] }) => Maybe<action>;
82724
- deleteActions: (args: {
82725
- where: action_bool_exp;
82726
- }) => Maybe<action_mutation_response>;
82727
81424
  deleteActiveStatus: (args: {
82728
81425
  name: Scalars["String"];
82729
81426
  }) => Maybe<activeStatus>;
@@ -83403,14 +82100,6 @@ export interface Mutation {
83403
82100
  objects: Array<account_insert_input>;
83404
82101
  on_conflict?: Maybe<account_on_conflict>;
83405
82102
  }) => Maybe<account_mutation_response>;
83406
- insertAction: (args: {
83407
- object: action_insert_input;
83408
- on_conflict?: Maybe<action_on_conflict>;
83409
- }) => Maybe<action>;
83410
- insertActions: (args: {
83411
- objects: Array<action_insert_input>;
83412
- on_conflict?: Maybe<action_on_conflict>;
83413
- }) => Maybe<action_mutation_response>;
83414
82103
  insertActiveStatus: (args: {
83415
82104
  object: activeStatus_insert_input;
83416
82105
  on_conflict?: Maybe<activeStatus_on_conflict>;
@@ -84426,26 +83115,6 @@ export interface Mutation {
84426
83115
  _set?: Maybe<account_set_input>;
84427
83116
  where: account_bool_exp;
84428
83117
  }) => Maybe<account_mutation_response>;
84429
- updateAction: (args: {
84430
- _append?: Maybe<action_append_input>;
84431
- _delete_at_path?: Maybe<action_delete_at_path_input>;
84432
- _delete_elem?: Maybe<action_delete_elem_input>;
84433
- _delete_key?: Maybe<action_delete_key_input>;
84434
- _inc?: Maybe<action_inc_input>;
84435
- _prepend?: Maybe<action_prepend_input>;
84436
- _set?: Maybe<action_set_input>;
84437
- pk_columns: action_pk_columns_input;
84438
- }) => Maybe<action>;
84439
- updateActions: (args: {
84440
- _append?: Maybe<action_append_input>;
84441
- _delete_at_path?: Maybe<action_delete_at_path_input>;
84442
- _delete_elem?: Maybe<action_delete_elem_input>;
84443
- _delete_key?: Maybe<action_delete_key_input>;
84444
- _inc?: Maybe<action_inc_input>;
84445
- _prepend?: Maybe<action_prepend_input>;
84446
- _set?: Maybe<action_set_input>;
84447
- where: action_bool_exp;
84448
- }) => Maybe<action_mutation_response>;
84449
83118
  updateActiveStatus: (args: {
84450
83119
  _set?: Maybe<activeStatus_set_input>;
84451
83120
  pk_columns: activeStatus_pk_columns_input;
@@ -84976,9 +83645,6 @@ export interface Mutation {
84976
83645
  updateManyAccounts: (args: {
84977
83646
  updates: Array<account_updates>;
84978
83647
  }) => Maybe<Array<Maybe<account_mutation_response>>>;
84979
- updateManyActions: (args: {
84980
- updates: Array<action_updates>;
84981
- }) => Maybe<Array<Maybe<action_mutation_response>>>;
84982
83648
  updateManyActiveStatuses: (args: {
84983
83649
  updates: Array<activeStatus_updates>;
84984
83650
  }) => Maybe<Array<Maybe<activeStatus_mutation_response>>>;
@@ -90716,14 +89382,6 @@ export interface Query {
90716
89382
  order_by?: Maybe<Array<account_order_by>>;
90717
89383
  where?: Maybe<account_bool_exp>;
90718
89384
  }) => Array<account>;
90719
- action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
90720
- actions: (args?: {
90721
- distinct_on?: Maybe<Array<action_select_column>>;
90722
- limit?: Maybe<Scalars["Int"]>;
90723
- offset?: Maybe<Scalars["Int"]>;
90724
- order_by?: Maybe<Array<action_order_by>>;
90725
- where?: Maybe<action_bool_exp>;
90726
- }) => Array<action>;
90727
89385
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
90728
89386
  activeStatusAggregate: (args?: {
90729
89387
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -90754,13 +89412,6 @@ export interface Query {
90754
89412
  where?: Maybe<address_bool_exp>;
90755
89413
  }) => address_aggregate;
90756
89414
  address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
90757
- aggregateActions: (args?: {
90758
- distinct_on?: Maybe<Array<action_select_column>>;
90759
- limit?: Maybe<Scalars["Int"]>;
90760
- offset?: Maybe<Scalars["Int"]>;
90761
- order_by?: Maybe<Array<action_order_by>>;
90762
- where?: Maybe<action_bool_exp>;
90763
- }) => action_aggregate;
90764
89415
  app: (args?: {
90765
89416
  distinct_on?: Maybe<Array<app_select_column>>;
90766
89417
  limit?: Maybe<Scalars["Int"]>;
@@ -96219,7 +94870,6 @@ export interface source {
96219
94870
  */
96220
94871
  where?: Maybe<reservation_bool_exp>;
96221
94872
  }) => reservation_aggregate;
96222
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96223
94873
  /**
96224
94874
  * An array relationship
96225
94875
  */
@@ -96512,7 +95162,6 @@ export interface source_max_fields {
96512
95162
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96513
95163
  remoteId?: Maybe<ScalarsEnums["String"]>;
96514
95164
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96515
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96516
95165
  status?: Maybe<ScalarsEnums["String"]>;
96517
95166
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96518
95167
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -96549,7 +95198,6 @@ export interface source_min_fields {
96549
95198
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96550
95199
  remoteId?: Maybe<ScalarsEnums["String"]>;
96551
95200
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96552
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96553
95201
  status?: Maybe<ScalarsEnums["String"]>;
96554
95202
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96555
95203
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -97485,14 +96133,6 @@ export interface Subscription {
97485
96133
  order_by?: Maybe<Array<account_order_by>>;
97486
96134
  where?: Maybe<account_bool_exp>;
97487
96135
  }) => Array<account>;
97488
- action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
97489
- actions: (args?: {
97490
- distinct_on?: Maybe<Array<action_select_column>>;
97491
- limit?: Maybe<Scalars["Int"]>;
97492
- offset?: Maybe<Scalars["Int"]>;
97493
- order_by?: Maybe<Array<action_order_by>>;
97494
- where?: Maybe<action_bool_exp>;
97495
- }) => Array<action>;
97496
96136
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
97497
96137
  activeStatusAggregate: (args?: {
97498
96138
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -97533,13 +96173,6 @@ export interface Subscription {
97533
96173
  cursor: Array<Maybe<address_stream_cursor_input>>;
97534
96174
  where?: Maybe<address_bool_exp>;
97535
96175
  }) => Array<address>;
97536
- aggregateActions: (args?: {
97537
- distinct_on?: Maybe<Array<action_select_column>>;
97538
- limit?: Maybe<Scalars["Int"]>;
97539
- offset?: Maybe<Scalars["Int"]>;
97540
- order_by?: Maybe<Array<action_order_by>>;
97541
- where?: Maybe<action_bool_exp>;
97542
- }) => action_aggregate;
97543
96176
  app: (args?: {
97544
96177
  distinct_on?: Maybe<Array<app_select_column>>;
97545
96178
  limit?: Maybe<Scalars["Int"]>;
@@ -99653,11 +98286,6 @@ export interface Subscription {
99653
98286
  cursor: Array<Maybe<store_mutation_log_stream_cursor_input>>;
99654
98287
  where?: Maybe<store_mutation_log_bool_exp>;
99655
98288
  }) => Array<store_mutation_log>;
99656
- streamActions: (args: {
99657
- batch_size: Scalars["Int"];
99658
- cursor: Array<Maybe<action_stream_cursor_input>>;
99659
- where?: Maybe<action_bool_exp>;
99660
- }) => Array<action>;
99661
98289
  sync: (args: { id: Scalars["uuid"] }) => Maybe<sync>;
99662
98290
  syncAggregate: (args?: {
99663
98291
  distinct_on?: Maybe<Array<sync_select_column>>;
@@ -106397,20 +105025,6 @@ export interface SchemaObjectTypes {
106397
105025
  account_max_fields: account_max_fields;
106398
105026
  account_min_fields: account_min_fields;
106399
105027
  account_mutation_response: account_mutation_response;
106400
- action: action;
106401
- action_aggregate: action_aggregate;
106402
- action_aggregate_fields: action_aggregate_fields;
106403
- action_avg_fields: action_avg_fields;
106404
- action_max_fields: action_max_fields;
106405
- action_min_fields: action_min_fields;
106406
- action_mutation_response: action_mutation_response;
106407
- action_stddev_fields: action_stddev_fields;
106408
- action_stddev_pop_fields: action_stddev_pop_fields;
106409
- action_stddev_samp_fields: action_stddev_samp_fields;
106410
- action_sum_fields: action_sum_fields;
106411
- action_var_pop_fields: action_var_pop_fields;
106412
- action_var_samp_fields: action_var_samp_fields;
106413
- action_variance_fields: action_variance_fields;
106414
105028
  activeStatus: activeStatus;
106415
105029
  activeStatus_aggregate: activeStatus_aggregate;
106416
105030
  activeStatus_aggregate_fields: activeStatus_aggregate_fields;
@@ -107483,20 +106097,6 @@ export type SchemaObjectTypesNames =
107483
106097
  | "account_max_fields"
107484
106098
  | "account_min_fields"
107485
106099
  | "account_mutation_response"
107486
- | "action"
107487
- | "action_aggregate"
107488
- | "action_aggregate_fields"
107489
- | "action_avg_fields"
107490
- | "action_max_fields"
107491
- | "action_min_fields"
107492
- | "action_mutation_response"
107493
- | "action_stddev_fields"
107494
- | "action_stddev_pop_fields"
107495
- | "action_stddev_samp_fields"
107496
- | "action_sum_fields"
107497
- | "action_var_pop_fields"
107498
- | "action_var_samp_fields"
107499
- | "action_variance_fields"
107500
106100
  | "activeStatus"
107501
106101
  | "activeStatus_aggregate"
107502
106102
  | "activeStatus_aggregate_fields"
@@ -108580,15 +107180,6 @@ export interface ScalarsEnums extends Scalars {
108580
107180
  account_constraint: account_constraint | undefined;
108581
107181
  account_select_column: account_select_column | undefined;
108582
107182
  account_update_column: account_update_column | undefined;
108583
- action_constraint: action_constraint | undefined;
108584
- action_select_column: action_select_column | undefined;
108585
- action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns:
108586
- | action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns
108587
- | undefined;
108588
- action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns:
108589
- | action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns
108590
- | undefined;
108591
- action_update_column: action_update_column | undefined;
108592
107183
  activeStatus_constraint: activeStatus_constraint | undefined;
108593
107184
  activeStatus_enum: activeStatus_enum | undefined;
108594
107185
  activeStatus_select_column: activeStatus_select_column | undefined;