@vrplatform/graphql 1.1.6 → 1.1.8

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>>;
@@ -19966,6 +19488,8 @@ export interface reservation_bool_exp {
19966
19488
 
19967
19489
  /** unique or primary key constraints on table "reservation" */
19968
19490
  export type reservation_constraint =
19491
+ /** unique or primary key constraint on columns "calculated_deduplication_ref" */
19492
+ | "reservation_calculated_deduplication_ref_key"
19969
19493
  /** unique or primary key constraint on columns "unique_ref", "connection_id" */
19970
19494
  | "reservation_connection_id_unique_ref_key"
19971
19495
  /** unique or primary key constraint on columns "id" */
@@ -21298,7 +20822,6 @@ export interface source_bool_exp {
21298
20822
  reservationId?: InputMaybe<uuid_comparison_exp>;
21299
20823
  reservations?: InputMaybe<reservation_bool_exp>;
21300
20824
  reservations_aggregate?: InputMaybe<reservation_aggregate_bool_exp>;
21301
- schema_id?: InputMaybe<uuid_comparison_exp>;
21302
20825
  settings?: InputMaybe<setting_bool_exp>;
21303
20826
  settingsLeft?: InputMaybe<setting_bool_exp>;
21304
20827
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_bool_exp>;
@@ -21389,7 +20912,6 @@ export interface source_insert_input {
21389
20912
  reservation?: InputMaybe<reservation_obj_rel_insert_input>;
21390
20913
  reservationId?: InputMaybe<Scalars["uuid"]>;
21391
20914
  reservations?: InputMaybe<reservation_arr_rel_insert_input>;
21392
- schema_id?: InputMaybe<Scalars["uuid"]>;
21393
20915
  settings?: InputMaybe<setting_arr_rel_insert_input>;
21394
20916
  settingsLeft?: InputMaybe<setting_arr_rel_insert_input>;
21395
20917
  settingsRight?: InputMaybe<setting_arr_rel_insert_input>;
@@ -21425,7 +20947,6 @@ export interface source_max_order_by {
21425
20947
  parentId?: InputMaybe<order_by>;
21426
20948
  remoteId?: InputMaybe<order_by>;
21427
20949
  reservationId?: InputMaybe<order_by>;
21428
- schema_id?: InputMaybe<order_by>;
21429
20950
  status?: InputMaybe<order_by>;
21430
20951
  tenantId?: InputMaybe<order_by>;
21431
20952
  transformType?: InputMaybe<order_by>;
@@ -21453,7 +20974,6 @@ export interface source_min_order_by {
21453
20974
  parentId?: InputMaybe<order_by>;
21454
20975
  remoteId?: InputMaybe<order_by>;
21455
20976
  reservationId?: InputMaybe<order_by>;
21456
- schema_id?: InputMaybe<order_by>;
21457
20977
  status?: InputMaybe<order_by>;
21458
20978
  tenantId?: InputMaybe<order_by>;
21459
20979
  transformType?: InputMaybe<order_by>;
@@ -21510,7 +21030,6 @@ export interface source_order_by {
21510
21030
  reservation?: InputMaybe<reservation_order_by>;
21511
21031
  reservationId?: InputMaybe<order_by>;
21512
21032
  reservations_aggregate?: InputMaybe<reservation_aggregate_order_by>;
21513
- schema_id?: InputMaybe<order_by>;
21514
21033
  settingsLeft_aggregate?: InputMaybe<setting_aggregate_order_by>;
21515
21034
  settingsRight_aggregate?: InputMaybe<setting_aggregate_order_by>;
21516
21035
  settings_aggregate?: InputMaybe<setting_aggregate_order_by>;
@@ -21576,8 +21095,6 @@ export type source_select_column =
21576
21095
  /** column name */
21577
21096
  | "reservationId"
21578
21097
  /** column name */
21579
- | "schema_id"
21580
- /** column name */
21581
21098
  | "status"
21582
21099
  /** column name */
21583
21100
  | "tenantId"
@@ -21624,7 +21141,6 @@ export interface source_set_input {
21624
21141
  parentId?: InputMaybe<Scalars["uuid"]>;
21625
21142
  remoteId?: InputMaybe<Scalars["String"]>;
21626
21143
  reservationId?: InputMaybe<Scalars["uuid"]>;
21627
- schema_id?: InputMaybe<Scalars["uuid"]>;
21628
21144
  status?: InputMaybe<Scalars["String"]>;
21629
21145
  tenantId?: InputMaybe<Scalars["uuid"]>;
21630
21146
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21679,7 +21195,6 @@ export interface source_stream_cursor_value_input {
21679
21195
  parentId?: InputMaybe<Scalars["uuid"]>;
21680
21196
  remoteId?: InputMaybe<Scalars["String"]>;
21681
21197
  reservationId?: InputMaybe<Scalars["uuid"]>;
21682
- schema_id?: InputMaybe<Scalars["uuid"]>;
21683
21198
  status?: InputMaybe<Scalars["String"]>;
21684
21199
  tenantId?: InputMaybe<Scalars["uuid"]>;
21685
21200
  transformJson?: InputMaybe<Scalars["jsonb"]>;
@@ -21731,8 +21246,6 @@ export type source_update_column =
21731
21246
  /** column name */
21732
21247
  | "reservationId"
21733
21248
  /** column name */
21734
- | "schema_id"
21735
- /** column name */
21736
21249
  | "status"
21737
21250
  /** column name */
21738
21251
  | "tenantId"
@@ -24132,6 +23645,7 @@ export interface tenant_bool_exp {
24132
23645
  billingPlan?: InputMaybe<String_comparison_exp>;
24133
23646
  billingSubscriptionStatus?: InputMaybe<String_comparison_exp>;
24134
23647
  billing_address_id?: InputMaybe<uuid_comparison_exp>;
23648
+ calculatedAnalyticsBillingStatus?: InputMaybe<String_comparison_exp>;
24135
23649
  calculatedBillingPartner?: InputMaybe<tenant_bool_exp>;
24136
23650
  calculatedBillingPartnerId?: InputMaybe<uuid_comparison_exp>;
24137
23651
  calculatedIsBillable?: InputMaybe<Boolean_comparison_exp>;
@@ -24467,6 +23981,7 @@ export interface tenant_order_by {
24467
23981
  billingPlan?: InputMaybe<order_by>;
24468
23982
  billingSubscriptionStatus?: InputMaybe<order_by>;
24469
23983
  billing_address_id?: InputMaybe<order_by>;
23984
+ calculatedAnalyticsBillingStatus?: InputMaybe<order_by>;
24470
23985
  calculatedBillingPartner?: InputMaybe<tenant_order_by>;
24471
23986
  calculatedBillingPartnerId?: InputMaybe<order_by>;
24472
23987
  calculatedIsBillable?: InputMaybe<order_by>;
@@ -30473,439 +29988,6 @@ export declare const generatedSchema: {
30473
29988
  _set: { __type: "account_set_input" };
30474
29989
  where: { __type: "account_bool_exp!" };
30475
29990
  };
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
29991
  activeStatus: {
30910
29992
  __typename: { __type: "String!" };
30911
29993
  name: { __type: "String!" };
@@ -42108,11 +41190,6 @@ export declare const generatedSchema: {
42108
41190
  __type: "account_mutation_response";
42109
41191
  __args: { where: "account_bool_exp!" };
42110
41192
  };
42111
- deleteAction: { __type: "action"; __args: { id: "uuid!" } };
42112
- deleteActions: {
42113
- __type: "action_mutation_response";
42114
- __args: { where: "action_bool_exp!" };
42115
- };
42116
41193
  deleteActiveStatus: { __type: "activeStatus"; __args: { name: "String!" } };
42117
41194
  deleteActiveStatuses: {
42118
41195
  __type: "activeStatus_mutation_response";
@@ -43038,20 +42115,6 @@ export declare const generatedSchema: {
43038
42115
  on_conflict: "account_on_conflict";
43039
42116
  };
43040
42117
  };
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
42118
  insertActiveStatus: {
43056
42119
  __type: "activeStatus";
43057
42120
  __args: {
@@ -44794,32 +43857,6 @@ export declare const generatedSchema: {
44794
43857
  __type: "account_mutation_response";
44795
43858
  __args: { _set: "account_set_input"; where: "account_bool_exp!" };
44796
43859
  };
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
43860
  updateActiveStatus: {
44824
43861
  __type: "activeStatus";
44825
43862
  __args: {
@@ -45618,10 +44655,6 @@ export declare const generatedSchema: {
45618
44655
  __type: "[account_mutation_response]";
45619
44656
  __args: { updates: "[account_updates!]!" };
45620
44657
  };
45621
- updateManyActions: {
45622
- __type: "[action_mutation_response]";
45623
- __args: { updates: "[action_updates!]!" };
45624
- };
45625
44658
  updateManyActiveStatuses: {
45626
44659
  __type: "[activeStatus_mutation_response]";
45627
44660
  __args: { updates: "[activeStatus_updates!]!" };
@@ -52477,17 +51510,6 @@ export declare const generatedSchema: {
52477
51510
  where: "account_bool_exp";
52478
51511
  };
52479
51512
  };
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
51513
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
52492
51514
  activeStatusAggregate: {
52493
51515
  __type: "activeStatus_aggregate!";
@@ -52530,16 +51552,6 @@ export declare const generatedSchema: {
52530
51552
  };
52531
51553
  };
52532
51554
  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
51555
  app: {
52544
51556
  __type: "[app!]!";
52545
51557
  __args: {
@@ -59204,7 +58216,6 @@ export declare const generatedSchema: {
59204
58216
  where: "reservation_bool_exp";
59205
58217
  };
59206
58218
  };
59207
- schema_id: { __type: "uuid" };
59208
58219
  settings: {
59209
58220
  __type: "[setting!]!";
59210
58221
  __args: {
@@ -59417,7 +58428,6 @@ export declare const generatedSchema: {
59417
58428
  reservationId: { __type: "uuid_comparison_exp" };
59418
58429
  reservations: { __type: "reservation_bool_exp" };
59419
58430
  reservations_aggregate: { __type: "reservation_aggregate_bool_exp" };
59420
- schema_id: { __type: "uuid_comparison_exp" };
59421
58431
  settings: { __type: "setting_bool_exp" };
59422
58432
  settingsLeft: { __type: "setting_bool_exp" };
59423
58433
  settingsLeft_aggregate: { __type: "setting_aggregate_bool_exp" };
@@ -59488,7 +58498,6 @@ export declare const generatedSchema: {
59488
58498
  reservation: { __type: "reservation_obj_rel_insert_input" };
59489
58499
  reservationId: { __type: "uuid" };
59490
58500
  reservations: { __type: "reservation_arr_rel_insert_input" };
59491
- schema_id: { __type: "uuid" };
59492
58501
  settings: { __type: "setting_arr_rel_insert_input" };
59493
58502
  settingsLeft: { __type: "setting_arr_rel_insert_input" };
59494
58503
  settingsRight: { __type: "setting_arr_rel_insert_input" };
@@ -59520,7 +58529,6 @@ export declare const generatedSchema: {
59520
58529
  parentId: { __type: "uuid" };
59521
58530
  remoteId: { __type: "String" };
59522
58531
  reservationId: { __type: "uuid" };
59523
- schema_id: { __type: "uuid" };
59524
58532
  status: { __type: "String" };
59525
58533
  tenantId: { __type: "uuid" };
59526
58534
  transformType: { __type: "String" };
@@ -59543,7 +58551,6 @@ export declare const generatedSchema: {
59543
58551
  parentId: { __type: "order_by" };
59544
58552
  remoteId: { __type: "order_by" };
59545
58553
  reservationId: { __type: "order_by" };
59546
- schema_id: { __type: "order_by" };
59547
58554
  status: { __type: "order_by" };
59548
58555
  tenantId: { __type: "order_by" };
59549
58556
  transformType: { __type: "order_by" };
@@ -59567,7 +58574,6 @@ export declare const generatedSchema: {
59567
58574
  parentId: { __type: "uuid" };
59568
58575
  remoteId: { __type: "String" };
59569
58576
  reservationId: { __type: "uuid" };
59570
- schema_id: { __type: "uuid" };
59571
58577
  status: { __type: "String" };
59572
58578
  tenantId: { __type: "uuid" };
59573
58579
  transformType: { __type: "String" };
@@ -59590,7 +58596,6 @@ export declare const generatedSchema: {
59590
58596
  parentId: { __type: "order_by" };
59591
58597
  remoteId: { __type: "order_by" };
59592
58598
  reservationId: { __type: "order_by" };
59593
- schema_id: { __type: "order_by" };
59594
58599
  status: { __type: "order_by" };
59595
58600
  tenantId: { __type: "order_by" };
59596
58601
  transformType: { __type: "order_by" };
@@ -59649,7 +58654,6 @@ export declare const generatedSchema: {
59649
58654
  reservation: { __type: "reservation_order_by" };
59650
58655
  reservationId: { __type: "order_by" };
59651
58656
  reservations_aggregate: { __type: "reservation_aggregate_order_by" };
59652
- schema_id: { __type: "order_by" };
59653
58657
  settingsLeft_aggregate: { __type: "setting_aggregate_order_by" };
59654
58658
  settingsRight_aggregate: { __type: "setting_aggregate_order_by" };
59655
58659
  settings_aggregate: { __type: "setting_aggregate_order_by" };
@@ -59689,7 +58693,6 @@ export declare const generatedSchema: {
59689
58693
  parentId: { __type: "uuid" };
59690
58694
  remoteId: { __type: "String" };
59691
58695
  reservationId: { __type: "uuid" };
59692
- schema_id: { __type: "uuid" };
59693
58696
  status: { __type: "String" };
59694
58697
  tenantId: { __type: "uuid" };
59695
58698
  transformJson: { __type: "jsonb" };
@@ -59735,7 +58738,6 @@ export declare const generatedSchema: {
59735
58738
  parentId: { __type: "uuid" };
59736
58739
  remoteId: { __type: "String" };
59737
58740
  reservationId: { __type: "uuid" };
59738
- schema_id: { __type: "uuid" };
59739
58741
  status: { __type: "String" };
59740
58742
  tenantId: { __type: "uuid" };
59741
58743
  transformJson: { __type: "jsonb" };
@@ -60967,17 +59969,6 @@ export declare const generatedSchema: {
60967
59969
  where: "account_bool_exp";
60968
59970
  };
60969
59971
  };
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
59972
  activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
60982
59973
  activeStatusAggregate: {
60983
59974
  __type: "activeStatus_aggregate!";
@@ -61036,16 +60027,6 @@ export declare const generatedSchema: {
61036
60027
  where: "address_bool_exp";
61037
60028
  };
61038
60029
  };
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
60030
  app: {
61050
60031
  __type: "[app!]!";
61051
60032
  __args: {
@@ -64018,14 +62999,6 @@ export declare const generatedSchema: {
64018
62999
  where: "store_mutation_log_bool_exp";
64019
63000
  };
64020
63001
  };
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
63002
  sync: { __type: "sync"; __args: { id: "uuid!" } };
64030
63003
  syncAggregate: {
64031
63004
  __type: "sync_aggregate!";
@@ -66027,6 +65000,7 @@ export declare const generatedSchema: {
66027
65000
  billingPlan: { __type: "String" };
66028
65001
  billingSubscriptionStatus: { __type: "String" };
66029
65002
  billing_address_id: { __type: "uuid" };
65003
+ calculatedAnalyticsBillingStatus: { __type: "String" };
66030
65004
  calculatedBillingPartner: { __type: "tenant" };
66031
65005
  calculatedBillingPartnerId: { __type: "uuid" };
66032
65006
  calculatedIsBillable: { __type: "Boolean" };
@@ -66659,6 +65633,7 @@ export declare const generatedSchema: {
66659
65633
  billingPlan: { __type: "String_comparison_exp" };
66660
65634
  billingSubscriptionStatus: { __type: "String_comparison_exp" };
66661
65635
  billing_address_id: { __type: "uuid_comparison_exp" };
65636
+ calculatedAnalyticsBillingStatus: { __type: "String_comparison_exp" };
66662
65637
  calculatedBillingPartner: { __type: "tenant_bool_exp" };
66663
65638
  calculatedBillingPartnerId: { __type: "uuid_comparison_exp" };
66664
65639
  calculatedIsBillable: { __type: "Boolean_comparison_exp" };
@@ -66878,6 +65853,7 @@ export declare const generatedSchema: {
66878
65853
  billingPlan: { __type: "String" };
66879
65854
  billingSubscriptionStatus: { __type: "String" };
66880
65855
  billing_address_id: { __type: "uuid" };
65856
+ calculatedAnalyticsBillingStatus: { __type: "String" };
66881
65857
  calculatedBillingPartnerId: { __type: "uuid" };
66882
65858
  calculatedStatus: { __type: "String" };
66883
65859
  cancelledAt: { __type: "date" };
@@ -66959,6 +65935,7 @@ export declare const generatedSchema: {
66959
65935
  billingPlan: { __type: "String" };
66960
65936
  billingSubscriptionStatus: { __type: "String" };
66961
65937
  billing_address_id: { __type: "uuid" };
65938
+ calculatedAnalyticsBillingStatus: { __type: "String" };
66962
65939
  calculatedBillingPartnerId: { __type: "uuid" };
66963
65940
  calculatedStatus: { __type: "String" };
66964
65941
  cancelledAt: { __type: "date" };
@@ -67060,6 +66037,7 @@ export declare const generatedSchema: {
67060
66037
  billingPlan: { __type: "order_by" };
67061
66038
  billingSubscriptionStatus: { __type: "order_by" };
67062
66039
  billing_address_id: { __type: "order_by" };
66040
+ calculatedAnalyticsBillingStatus: { __type: "order_by" };
67063
66041
  calculatedBillingPartner: { __type: "tenant_order_by" };
67064
66042
  calculatedBillingPartnerId: { __type: "order_by" };
67065
66043
  calculatedIsBillable: { __type: "order_by" };
@@ -73101,274 +72079,6 @@ export interface account_mutation_response {
73101
72079
  returning: Array<account>;
73102
72080
  }
73103
72081
 
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
72082
  /**
73373
72083
  * enum table to track basic active/inactive status
73374
72084
  */
@@ -82720,10 +81430,6 @@ export interface Mutation {
82720
81430
  deleteAccounts: (args: {
82721
81431
  where: account_bool_exp;
82722
81432
  }) => 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
81433
  deleteActiveStatus: (args: {
82728
81434
  name: Scalars["String"];
82729
81435
  }) => Maybe<activeStatus>;
@@ -83403,14 +82109,6 @@ export interface Mutation {
83403
82109
  objects: Array<account_insert_input>;
83404
82110
  on_conflict?: Maybe<account_on_conflict>;
83405
82111
  }) => 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
82112
  insertActiveStatus: (args: {
83415
82113
  object: activeStatus_insert_input;
83416
82114
  on_conflict?: Maybe<activeStatus_on_conflict>;
@@ -84426,26 +83124,6 @@ export interface Mutation {
84426
83124
  _set?: Maybe<account_set_input>;
84427
83125
  where: account_bool_exp;
84428
83126
  }) => 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
83127
  updateActiveStatus: (args: {
84450
83128
  _set?: Maybe<activeStatus_set_input>;
84451
83129
  pk_columns: activeStatus_pk_columns_input;
@@ -84976,9 +83654,6 @@ export interface Mutation {
84976
83654
  updateManyAccounts: (args: {
84977
83655
  updates: Array<account_updates>;
84978
83656
  }) => Maybe<Array<Maybe<account_mutation_response>>>;
84979
- updateManyActions: (args: {
84980
- updates: Array<action_updates>;
84981
- }) => Maybe<Array<Maybe<action_mutation_response>>>;
84982
83657
  updateManyActiveStatuses: (args: {
84983
83658
  updates: Array<activeStatus_updates>;
84984
83659
  }) => Maybe<Array<Maybe<activeStatus_mutation_response>>>;
@@ -90716,14 +89391,6 @@ export interface Query {
90716
89391
  order_by?: Maybe<Array<account_order_by>>;
90717
89392
  where?: Maybe<account_bool_exp>;
90718
89393
  }) => 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
89394
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
90728
89395
  activeStatusAggregate: (args?: {
90729
89396
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -90754,13 +89421,6 @@ export interface Query {
90754
89421
  where?: Maybe<address_bool_exp>;
90755
89422
  }) => address_aggregate;
90756
89423
  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
89424
  app: (args?: {
90765
89425
  distinct_on?: Maybe<Array<app_select_column>>;
90766
89426
  limit?: Maybe<Scalars["Int"]>;
@@ -96219,7 +94879,6 @@ export interface source {
96219
94879
  */
96220
94880
  where?: Maybe<reservation_bool_exp>;
96221
94881
  }) => reservation_aggregate;
96222
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96223
94882
  /**
96224
94883
  * An array relationship
96225
94884
  */
@@ -96512,7 +95171,6 @@ export interface source_max_fields {
96512
95171
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96513
95172
  remoteId?: Maybe<ScalarsEnums["String"]>;
96514
95173
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96515
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96516
95174
  status?: Maybe<ScalarsEnums["String"]>;
96517
95175
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96518
95176
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -96549,7 +95207,6 @@ export interface source_min_fields {
96549
95207
  parentId?: Maybe<ScalarsEnums["uuid"]>;
96550
95208
  remoteId?: Maybe<ScalarsEnums["String"]>;
96551
95209
  reservationId?: Maybe<ScalarsEnums["uuid"]>;
96552
- schema_id?: Maybe<ScalarsEnums["uuid"]>;
96553
95210
  status?: Maybe<ScalarsEnums["String"]>;
96554
95211
  tenantId?: Maybe<ScalarsEnums["uuid"]>;
96555
95212
  transformType?: Maybe<ScalarsEnums["String"]>;
@@ -97485,14 +96142,6 @@ export interface Subscription {
97485
96142
  order_by?: Maybe<Array<account_order_by>>;
97486
96143
  where?: Maybe<account_bool_exp>;
97487
96144
  }) => 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
96145
  activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
97497
96146
  activeStatusAggregate: (args?: {
97498
96147
  distinct_on?: Maybe<Array<activeStatus_select_column>>;
@@ -97533,13 +96182,6 @@ export interface Subscription {
97533
96182
  cursor: Array<Maybe<address_stream_cursor_input>>;
97534
96183
  where?: Maybe<address_bool_exp>;
97535
96184
  }) => 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
96185
  app: (args?: {
97544
96186
  distinct_on?: Maybe<Array<app_select_column>>;
97545
96187
  limit?: Maybe<Scalars["Int"]>;
@@ -99653,11 +98295,6 @@ export interface Subscription {
99653
98295
  cursor: Array<Maybe<store_mutation_log_stream_cursor_input>>;
99654
98296
  where?: Maybe<store_mutation_log_bool_exp>;
99655
98297
  }) => 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
98298
  sync: (args: { id: Scalars["uuid"] }) => Maybe<sync>;
99662
98299
  syncAggregate: (args?: {
99663
98300
  distinct_on?: Maybe<Array<sync_select_column>>;
@@ -101172,6 +99809,10 @@ export interface tenant {
101172
99809
  billingPlan?: Maybe<ScalarsEnums["String"]>;
101173
99810
  billingSubscriptionStatus?: Maybe<ScalarsEnums["String"]>;
101174
99811
  billing_address_id?: Maybe<ScalarsEnums["uuid"]>;
99812
+ /**
99813
+ * A computed field, executes function "tenant_calculated_analytics_billing_status"
99814
+ */
99815
+ calculatedAnalyticsBillingStatus?: Maybe<ScalarsEnums["String"]>;
101175
99816
  /**
101176
99817
  * An object relationship
101177
99818
  */
@@ -102504,6 +101145,10 @@ export interface tenant_max_fields {
102504
101145
  billingPlan?: Maybe<ScalarsEnums["String"]>;
102505
101146
  billingSubscriptionStatus?: Maybe<ScalarsEnums["String"]>;
102506
101147
  billing_address_id?: Maybe<ScalarsEnums["uuid"]>;
101148
+ /**
101149
+ * A computed field, executes function "tenant_calculated_analytics_billing_status"
101150
+ */
101151
+ calculatedAnalyticsBillingStatus?: Maybe<ScalarsEnums["String"]>;
102507
101152
  calculatedBillingPartnerId?: Maybe<ScalarsEnums["uuid"]>;
102508
101153
  calculatedStatus?: Maybe<ScalarsEnums["String"]>;
102509
101154
  /**
@@ -102552,6 +101197,10 @@ export interface tenant_min_fields {
102552
101197
  billingPlan?: Maybe<ScalarsEnums["String"]>;
102553
101198
  billingSubscriptionStatus?: Maybe<ScalarsEnums["String"]>;
102554
101199
  billing_address_id?: Maybe<ScalarsEnums["uuid"]>;
101200
+ /**
101201
+ * A computed field, executes function "tenant_calculated_analytics_billing_status"
101202
+ */
101203
+ calculatedAnalyticsBillingStatus?: Maybe<ScalarsEnums["String"]>;
102555
101204
  calculatedBillingPartnerId?: Maybe<ScalarsEnums["uuid"]>;
102556
101205
  calculatedStatus?: Maybe<ScalarsEnums["String"]>;
102557
101206
  /**
@@ -106397,20 +105046,6 @@ export interface SchemaObjectTypes {
106397
105046
  account_max_fields: account_max_fields;
106398
105047
  account_min_fields: account_min_fields;
106399
105048
  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
105049
  activeStatus: activeStatus;
106415
105050
  activeStatus_aggregate: activeStatus_aggregate;
106416
105051
  activeStatus_aggregate_fields: activeStatus_aggregate_fields;
@@ -107483,20 +106118,6 @@ export type SchemaObjectTypesNames =
107483
106118
  | "account_max_fields"
107484
106119
  | "account_min_fields"
107485
106120
  | "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
106121
  | "activeStatus"
107501
106122
  | "activeStatus_aggregate"
107502
106123
  | "activeStatus_aggregate_fields"
@@ -108580,15 +107201,6 @@ export interface ScalarsEnums extends Scalars {
108580
107201
  account_constraint: account_constraint | undefined;
108581
107202
  account_select_column: account_select_column | undefined;
108582
107203
  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
107204
  activeStatus_constraint: activeStatus_constraint | undefined;
108593
107205
  activeStatus_enum: activeStatus_enum | undefined;
108594
107206
  activeStatus_select_column: activeStatus_select_column | undefined;