@vrplatform/graphql 1.1.1 → 1.1.3
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.
- package/build/main/constants.d.ts +1 -1
- package/build/main/constants.js +1 -1
- package/build/main/gqty/schema.generated.d.ts +1619 -2004
- package/build/main/gqty/schema.generated.js +609 -762
- package/build/module/constants.d.ts +1 -1
- package/build/module/constants.js +1 -1
- package/build/module/gqty/schema.generated.d.ts +1619 -2004
- package/build/module/gqty/schema.generated.js +609 -762
- package/package.json +3 -3
- package/src/constants.ts +1 -1
- package/src/gqty/schema.generated.d.ts +1619 -2004
- package/src/gqty/schema.generated.js +613 -762
|
@@ -23,7 +23,6 @@ export interface Scalars {
|
|
|
23
23
|
bigint: number;
|
|
24
24
|
date: string;
|
|
25
25
|
effect_status: any;
|
|
26
|
-
float8: number;
|
|
27
26
|
json: any;
|
|
28
27
|
jsonb: any;
|
|
29
28
|
numeric: number;
|
|
@@ -1655,6 +1654,496 @@ export interface account_updates {
|
|
|
1655
1654
|
where: account_bool_exp;
|
|
1656
1655
|
}
|
|
1657
1656
|
|
|
1657
|
+
export interface action_aggregate_bool_exp {
|
|
1658
|
+
bool_and?: InputMaybe<action_aggregate_bool_exp_bool_and>;
|
|
1659
|
+
bool_or?: InputMaybe<action_aggregate_bool_exp_bool_or>;
|
|
1660
|
+
count?: InputMaybe<action_aggregate_bool_exp_count>;
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
export interface action_aggregate_bool_exp_bool_and {
|
|
1664
|
+
arguments: action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns;
|
|
1665
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
1666
|
+
filter?: InputMaybe<action_bool_exp>;
|
|
1667
|
+
predicate: Boolean_comparison_exp;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
export interface action_aggregate_bool_exp_bool_or {
|
|
1671
|
+
arguments: action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns;
|
|
1672
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
1673
|
+
filter?: InputMaybe<action_bool_exp>;
|
|
1674
|
+
predicate: Boolean_comparison_exp;
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
export interface action_aggregate_bool_exp_count {
|
|
1678
|
+
arguments?: InputMaybe<Array<action_select_column>>;
|
|
1679
|
+
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
1680
|
+
filter?: InputMaybe<action_bool_exp>;
|
|
1681
|
+
predicate: Int_comparison_exp;
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
/** order by aggregate values of table "core.action" */
|
|
1685
|
+
export interface action_aggregate_order_by {
|
|
1686
|
+
avg?: InputMaybe<action_avg_order_by>;
|
|
1687
|
+
count?: InputMaybe<order_by>;
|
|
1688
|
+
max?: InputMaybe<action_max_order_by>;
|
|
1689
|
+
min?: InputMaybe<action_min_order_by>;
|
|
1690
|
+
stddev?: InputMaybe<action_stddev_order_by>;
|
|
1691
|
+
stddev_pop?: InputMaybe<action_stddev_pop_order_by>;
|
|
1692
|
+
stddev_samp?: InputMaybe<action_stddev_samp_order_by>;
|
|
1693
|
+
sum?: InputMaybe<action_sum_order_by>;
|
|
1694
|
+
var_pop?: InputMaybe<action_var_pop_order_by>;
|
|
1695
|
+
var_samp?: InputMaybe<action_var_samp_order_by>;
|
|
1696
|
+
variance?: InputMaybe<action_variance_order_by>;
|
|
1697
|
+
}
|
|
1698
|
+
|
|
1699
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
1700
|
+
export interface action_append_input {
|
|
1701
|
+
inputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1702
|
+
outputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1703
|
+
refs?: InputMaybe<Scalars["jsonb"]>;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
/** input type for inserting array relation for remote table "core.action" */
|
|
1707
|
+
export interface action_arr_rel_insert_input {
|
|
1708
|
+
data: Array<action_insert_input>;
|
|
1709
|
+
/** upsert condition */
|
|
1710
|
+
on_conflict?: InputMaybe<action_on_conflict>;
|
|
1711
|
+
}
|
|
1712
|
+
|
|
1713
|
+
/** order by avg() on columns of table "core.action" */
|
|
1714
|
+
export interface action_avg_order_by {
|
|
1715
|
+
jobIndex?: InputMaybe<order_by>;
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1718
|
+
/** Boolean expression to filter rows from the table "core.action". All fields are combined with a logical 'AND'. */
|
|
1719
|
+
export interface action_bool_exp {
|
|
1720
|
+
_and?: InputMaybe<Array<action_bool_exp>>;
|
|
1721
|
+
_not?: InputMaybe<action_bool_exp>;
|
|
1722
|
+
_or?: InputMaybe<Array<action_bool_exp>>;
|
|
1723
|
+
appId?: InputMaybe<String_comparison_exp>;
|
|
1724
|
+
automationId?: InputMaybe<uuid_comparison_exp>;
|
|
1725
|
+
changes?: InputMaybe<change_bool_exp>;
|
|
1726
|
+
changes_aggregate?: InputMaybe<change_aggregate_bool_exp>;
|
|
1727
|
+
connection?: InputMaybe<connection_bool_exp>;
|
|
1728
|
+
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
1729
|
+
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
1730
|
+
id?: InputMaybe<uuid_comparison_exp>;
|
|
1731
|
+
inputJson?: InputMaybe<jsonb_comparison_exp>;
|
|
1732
|
+
isCurrent?: InputMaybe<Boolean_comparison_exp>;
|
|
1733
|
+
jobId?: InputMaybe<uuid_comparison_exp>;
|
|
1734
|
+
jobIndex?: InputMaybe<Int_comparison_exp>;
|
|
1735
|
+
jobPageId?: InputMaybe<uuid_comparison_exp>;
|
|
1736
|
+
jobPlanId?: InputMaybe<uuid_comparison_exp>;
|
|
1737
|
+
objectId?: InputMaybe<uuid_comparison_exp>;
|
|
1738
|
+
opId?: InputMaybe<uuid_comparison_exp>;
|
|
1739
|
+
outputJson?: InputMaybe<jsonb_comparison_exp>;
|
|
1740
|
+
previousActions?: InputMaybe<action_bool_exp>;
|
|
1741
|
+
previousActions3?: InputMaybe<action_bool_exp>;
|
|
1742
|
+
previousActions3_aggregate?: InputMaybe<action_aggregate_bool_exp>;
|
|
1743
|
+
previousActionsByType?: InputMaybe<action_bool_exp>;
|
|
1744
|
+
previousActionsByType_aggregate?: InputMaybe<action_aggregate_bool_exp>;
|
|
1745
|
+
previousActions_aggregate?: InputMaybe<action_aggregate_bool_exp>;
|
|
1746
|
+
refs?: InputMaybe<jsonb_comparison_exp>;
|
|
1747
|
+
schemaId?: InputMaybe<uuid_comparison_exp>;
|
|
1748
|
+
source?: InputMaybe<source_bool_exp>;
|
|
1749
|
+
sourceId?: InputMaybe<uuid_comparison_exp>;
|
|
1750
|
+
status?: InputMaybe<String_comparison_exp>;
|
|
1751
|
+
tenant?: InputMaybe<tenant_bool_exp>;
|
|
1752
|
+
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
1753
|
+
title?: InputMaybe<String_comparison_exp>;
|
|
1754
|
+
type?: InputMaybe<String_comparison_exp>;
|
|
1755
|
+
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
1756
|
+
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
1757
|
+
}
|
|
1758
|
+
|
|
1759
|
+
/** unique or primary key constraints on table "core.action" */
|
|
1760
|
+
export type action_constraint =
|
|
1761
|
+
/** unique or primary key constraint on columns "id" */
|
|
1762
|
+
"action_pkey";
|
|
1763
|
+
|
|
1764
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
1765
|
+
export interface action_delete_at_path_input {
|
|
1766
|
+
inputJson?: InputMaybe<Array<Scalars["String"]>>;
|
|
1767
|
+
outputJson?: InputMaybe<Array<Scalars["String"]>>;
|
|
1768
|
+
refs?: InputMaybe<Array<Scalars["String"]>>;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
1772
|
+
export interface action_delete_elem_input {
|
|
1773
|
+
inputJson?: InputMaybe<Scalars["Int"]>;
|
|
1774
|
+
outputJson?: InputMaybe<Scalars["Int"]>;
|
|
1775
|
+
refs?: InputMaybe<Scalars["Int"]>;
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1778
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
1779
|
+
export interface action_delete_key_input {
|
|
1780
|
+
inputJson?: InputMaybe<Scalars["String"]>;
|
|
1781
|
+
outputJson?: InputMaybe<Scalars["String"]>;
|
|
1782
|
+
refs?: InputMaybe<Scalars["String"]>;
|
|
1783
|
+
}
|
|
1784
|
+
|
|
1785
|
+
/** input type for incrementing numeric columns in table "core.action" */
|
|
1786
|
+
export interface action_inc_input {
|
|
1787
|
+
jobIndex?: InputMaybe<Scalars["Int"]>;
|
|
1788
|
+
}
|
|
1789
|
+
|
|
1790
|
+
/** input type for inserting data into table "core.action" */
|
|
1791
|
+
export interface action_insert_input {
|
|
1792
|
+
appId?: InputMaybe<Scalars["String"]>;
|
|
1793
|
+
automationId?: InputMaybe<Scalars["uuid"]>;
|
|
1794
|
+
changes?: InputMaybe<change_arr_rel_insert_input>;
|
|
1795
|
+
connection?: InputMaybe<connection_obj_rel_insert_input>;
|
|
1796
|
+
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
1797
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
1798
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
1799
|
+
inputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1800
|
+
isCurrent?: InputMaybe<Scalars["Boolean"]>;
|
|
1801
|
+
jobId?: InputMaybe<Scalars["uuid"]>;
|
|
1802
|
+
jobIndex?: InputMaybe<Scalars["Int"]>;
|
|
1803
|
+
jobPageId?: InputMaybe<Scalars["uuid"]>;
|
|
1804
|
+
jobPlanId?: InputMaybe<Scalars["uuid"]>;
|
|
1805
|
+
objectId?: InputMaybe<Scalars["uuid"]>;
|
|
1806
|
+
opId?: InputMaybe<Scalars["uuid"]>;
|
|
1807
|
+
outputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1808
|
+
previousActions?: InputMaybe<action_arr_rel_insert_input>;
|
|
1809
|
+
previousActions3?: InputMaybe<action_arr_rel_insert_input>;
|
|
1810
|
+
previousActionsByType?: InputMaybe<action_arr_rel_insert_input>;
|
|
1811
|
+
refs?: InputMaybe<Scalars["jsonb"]>;
|
|
1812
|
+
schemaId?: InputMaybe<Scalars["uuid"]>;
|
|
1813
|
+
source?: InputMaybe<source_obj_rel_insert_input>;
|
|
1814
|
+
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
1815
|
+
status?: InputMaybe<Scalars["String"]>;
|
|
1816
|
+
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
1817
|
+
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
1818
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
1819
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
1820
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
1821
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
/** order by max() on columns of table "core.action" */
|
|
1825
|
+
export interface action_max_order_by {
|
|
1826
|
+
appId?: InputMaybe<order_by>;
|
|
1827
|
+
automationId?: InputMaybe<order_by>;
|
|
1828
|
+
connectionId?: InputMaybe<order_by>;
|
|
1829
|
+
createdAt?: InputMaybe<order_by>;
|
|
1830
|
+
id?: InputMaybe<order_by>;
|
|
1831
|
+
jobId?: InputMaybe<order_by>;
|
|
1832
|
+
jobIndex?: InputMaybe<order_by>;
|
|
1833
|
+
jobPageId?: InputMaybe<order_by>;
|
|
1834
|
+
jobPlanId?: InputMaybe<order_by>;
|
|
1835
|
+
objectId?: InputMaybe<order_by>;
|
|
1836
|
+
opId?: InputMaybe<order_by>;
|
|
1837
|
+
schemaId?: InputMaybe<order_by>;
|
|
1838
|
+
sourceId?: InputMaybe<order_by>;
|
|
1839
|
+
status?: InputMaybe<order_by>;
|
|
1840
|
+
tenantId?: InputMaybe<order_by>;
|
|
1841
|
+
title?: InputMaybe<order_by>;
|
|
1842
|
+
type?: InputMaybe<order_by>;
|
|
1843
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
1844
|
+
updatedAt?: InputMaybe<order_by>;
|
|
1845
|
+
}
|
|
1846
|
+
|
|
1847
|
+
/** order by min() on columns of table "core.action" */
|
|
1848
|
+
export interface action_min_order_by {
|
|
1849
|
+
appId?: InputMaybe<order_by>;
|
|
1850
|
+
automationId?: InputMaybe<order_by>;
|
|
1851
|
+
connectionId?: InputMaybe<order_by>;
|
|
1852
|
+
createdAt?: InputMaybe<order_by>;
|
|
1853
|
+
id?: InputMaybe<order_by>;
|
|
1854
|
+
jobId?: InputMaybe<order_by>;
|
|
1855
|
+
jobIndex?: InputMaybe<order_by>;
|
|
1856
|
+
jobPageId?: InputMaybe<order_by>;
|
|
1857
|
+
jobPlanId?: InputMaybe<order_by>;
|
|
1858
|
+
objectId?: InputMaybe<order_by>;
|
|
1859
|
+
opId?: InputMaybe<order_by>;
|
|
1860
|
+
schemaId?: InputMaybe<order_by>;
|
|
1861
|
+
sourceId?: InputMaybe<order_by>;
|
|
1862
|
+
status?: InputMaybe<order_by>;
|
|
1863
|
+
tenantId?: InputMaybe<order_by>;
|
|
1864
|
+
title?: InputMaybe<order_by>;
|
|
1865
|
+
type?: InputMaybe<order_by>;
|
|
1866
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
1867
|
+
updatedAt?: InputMaybe<order_by>;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
/** on_conflict condition type for table "core.action" */
|
|
1871
|
+
export interface action_on_conflict {
|
|
1872
|
+
constraint: action_constraint;
|
|
1873
|
+
update_columns?: Array<action_update_column>;
|
|
1874
|
+
where?: InputMaybe<action_bool_exp>;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
/** Ordering options when selecting data from "core.action". */
|
|
1878
|
+
export interface action_order_by {
|
|
1879
|
+
appId?: InputMaybe<order_by>;
|
|
1880
|
+
automationId?: InputMaybe<order_by>;
|
|
1881
|
+
changes_aggregate?: InputMaybe<change_aggregate_order_by>;
|
|
1882
|
+
connection?: InputMaybe<connection_order_by>;
|
|
1883
|
+
connectionId?: InputMaybe<order_by>;
|
|
1884
|
+
createdAt?: InputMaybe<order_by>;
|
|
1885
|
+
id?: InputMaybe<order_by>;
|
|
1886
|
+
inputJson?: InputMaybe<order_by>;
|
|
1887
|
+
isCurrent?: InputMaybe<order_by>;
|
|
1888
|
+
jobId?: InputMaybe<order_by>;
|
|
1889
|
+
jobIndex?: InputMaybe<order_by>;
|
|
1890
|
+
jobPageId?: InputMaybe<order_by>;
|
|
1891
|
+
jobPlanId?: InputMaybe<order_by>;
|
|
1892
|
+
objectId?: InputMaybe<order_by>;
|
|
1893
|
+
opId?: InputMaybe<order_by>;
|
|
1894
|
+
outputJson?: InputMaybe<order_by>;
|
|
1895
|
+
previousActions3_aggregate?: InputMaybe<action_aggregate_order_by>;
|
|
1896
|
+
previousActionsByType_aggregate?: InputMaybe<action_aggregate_order_by>;
|
|
1897
|
+
previousActions_aggregate?: InputMaybe<action_aggregate_order_by>;
|
|
1898
|
+
refs?: InputMaybe<order_by>;
|
|
1899
|
+
schemaId?: InputMaybe<order_by>;
|
|
1900
|
+
source?: InputMaybe<source_order_by>;
|
|
1901
|
+
sourceId?: InputMaybe<order_by>;
|
|
1902
|
+
status?: InputMaybe<order_by>;
|
|
1903
|
+
tenant?: InputMaybe<tenant_order_by>;
|
|
1904
|
+
tenantId?: InputMaybe<order_by>;
|
|
1905
|
+
title?: InputMaybe<order_by>;
|
|
1906
|
+
type?: InputMaybe<order_by>;
|
|
1907
|
+
uniqueRef?: InputMaybe<order_by>;
|
|
1908
|
+
updatedAt?: InputMaybe<order_by>;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
/** primary key columns input for table: core.action */
|
|
1912
|
+
export interface action_pk_columns_input {
|
|
1913
|
+
id: Scalars["uuid"];
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
1917
|
+
export interface action_prepend_input {
|
|
1918
|
+
inputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1919
|
+
outputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1920
|
+
refs?: InputMaybe<Scalars["jsonb"]>;
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
/** select columns of table "core.action" */
|
|
1924
|
+
export type action_select_column =
|
|
1925
|
+
/** column name */
|
|
1926
|
+
| "appId"
|
|
1927
|
+
/** column name */
|
|
1928
|
+
| "automationId"
|
|
1929
|
+
/** column name */
|
|
1930
|
+
| "connectionId"
|
|
1931
|
+
/** column name */
|
|
1932
|
+
| "createdAt"
|
|
1933
|
+
/** column name */
|
|
1934
|
+
| "id"
|
|
1935
|
+
/** column name */
|
|
1936
|
+
| "inputJson"
|
|
1937
|
+
/** column name */
|
|
1938
|
+
| "isCurrent"
|
|
1939
|
+
/** column name */
|
|
1940
|
+
| "jobId"
|
|
1941
|
+
/** column name */
|
|
1942
|
+
| "jobIndex"
|
|
1943
|
+
/** column name */
|
|
1944
|
+
| "jobPageId"
|
|
1945
|
+
/** column name */
|
|
1946
|
+
| "jobPlanId"
|
|
1947
|
+
/** column name */
|
|
1948
|
+
| "objectId"
|
|
1949
|
+
/** column name */
|
|
1950
|
+
| "opId"
|
|
1951
|
+
/** column name */
|
|
1952
|
+
| "outputJson"
|
|
1953
|
+
/** column name */
|
|
1954
|
+
| "refs"
|
|
1955
|
+
/** column name */
|
|
1956
|
+
| "schemaId"
|
|
1957
|
+
/** column name */
|
|
1958
|
+
| "sourceId"
|
|
1959
|
+
/** column name */
|
|
1960
|
+
| "status"
|
|
1961
|
+
/** column name */
|
|
1962
|
+
| "tenantId"
|
|
1963
|
+
/** column name */
|
|
1964
|
+
| "title"
|
|
1965
|
+
/** column name */
|
|
1966
|
+
| "type"
|
|
1967
|
+
/** column name */
|
|
1968
|
+
| "uniqueRef"
|
|
1969
|
+
/** column name */
|
|
1970
|
+
| "updatedAt";
|
|
1971
|
+
|
|
1972
|
+
/** select "action_aggregate_bool_exp_bool_and_arguments_columns" columns of table "core.action" */
|
|
1973
|
+
export type action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns =
|
|
1974
|
+
/** column name */
|
|
1975
|
+
"isCurrent";
|
|
1976
|
+
|
|
1977
|
+
/** select "action_aggregate_bool_exp_bool_or_arguments_columns" columns of table "core.action" */
|
|
1978
|
+
export type action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns =
|
|
1979
|
+
/** column name */
|
|
1980
|
+
"isCurrent";
|
|
1981
|
+
|
|
1982
|
+
/** input type for updating data in table "core.action" */
|
|
1983
|
+
export interface action_set_input {
|
|
1984
|
+
appId?: InputMaybe<Scalars["String"]>;
|
|
1985
|
+
automationId?: InputMaybe<Scalars["uuid"]>;
|
|
1986
|
+
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
1987
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
1988
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
1989
|
+
inputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1990
|
+
isCurrent?: InputMaybe<Scalars["Boolean"]>;
|
|
1991
|
+
jobId?: InputMaybe<Scalars["uuid"]>;
|
|
1992
|
+
jobIndex?: InputMaybe<Scalars["Int"]>;
|
|
1993
|
+
jobPageId?: InputMaybe<Scalars["uuid"]>;
|
|
1994
|
+
jobPlanId?: InputMaybe<Scalars["uuid"]>;
|
|
1995
|
+
objectId?: InputMaybe<Scalars["uuid"]>;
|
|
1996
|
+
opId?: InputMaybe<Scalars["uuid"]>;
|
|
1997
|
+
outputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
1998
|
+
refs?: InputMaybe<Scalars["jsonb"]>;
|
|
1999
|
+
schemaId?: InputMaybe<Scalars["uuid"]>;
|
|
2000
|
+
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
2001
|
+
status?: InputMaybe<Scalars["String"]>;
|
|
2002
|
+
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
2003
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
2004
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
2005
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
2006
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
2007
|
+
}
|
|
2008
|
+
|
|
2009
|
+
/** order by stddev() on columns of table "core.action" */
|
|
2010
|
+
export interface action_stddev_order_by {
|
|
2011
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
/** order by stddev_pop() on columns of table "core.action" */
|
|
2015
|
+
export interface action_stddev_pop_order_by {
|
|
2016
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
/** order by stddev_samp() on columns of table "core.action" */
|
|
2020
|
+
export interface action_stddev_samp_order_by {
|
|
2021
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2022
|
+
}
|
|
2023
|
+
|
|
2024
|
+
/** Streaming cursor of the table "action" */
|
|
2025
|
+
export interface action_stream_cursor_input {
|
|
2026
|
+
/** Stream column input with initial value */
|
|
2027
|
+
initial_value: action_stream_cursor_value_input;
|
|
2028
|
+
/** cursor ordering */
|
|
2029
|
+
ordering?: InputMaybe<cursor_ordering>;
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
/** Initial value of the column from where the streaming should start */
|
|
2033
|
+
export interface action_stream_cursor_value_input {
|
|
2034
|
+
appId?: InputMaybe<Scalars["String"]>;
|
|
2035
|
+
automationId?: InputMaybe<Scalars["uuid"]>;
|
|
2036
|
+
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
2037
|
+
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
2038
|
+
id?: InputMaybe<Scalars["uuid"]>;
|
|
2039
|
+
inputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
2040
|
+
isCurrent?: InputMaybe<Scalars["Boolean"]>;
|
|
2041
|
+
jobId?: InputMaybe<Scalars["uuid"]>;
|
|
2042
|
+
jobIndex?: InputMaybe<Scalars["Int"]>;
|
|
2043
|
+
jobPageId?: InputMaybe<Scalars["uuid"]>;
|
|
2044
|
+
jobPlanId?: InputMaybe<Scalars["uuid"]>;
|
|
2045
|
+
objectId?: InputMaybe<Scalars["uuid"]>;
|
|
2046
|
+
opId?: InputMaybe<Scalars["uuid"]>;
|
|
2047
|
+
outputJson?: InputMaybe<Scalars["jsonb"]>;
|
|
2048
|
+
refs?: InputMaybe<Scalars["jsonb"]>;
|
|
2049
|
+
schemaId?: InputMaybe<Scalars["uuid"]>;
|
|
2050
|
+
sourceId?: InputMaybe<Scalars["uuid"]>;
|
|
2051
|
+
status?: InputMaybe<Scalars["String"]>;
|
|
2052
|
+
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
2053
|
+
title?: InputMaybe<Scalars["String"]>;
|
|
2054
|
+
type?: InputMaybe<Scalars["String"]>;
|
|
2055
|
+
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
2056
|
+
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
2057
|
+
}
|
|
2058
|
+
|
|
2059
|
+
/** order by sum() on columns of table "core.action" */
|
|
2060
|
+
export interface action_sum_order_by {
|
|
2061
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
/** update columns of table "core.action" */
|
|
2065
|
+
export type action_update_column =
|
|
2066
|
+
/** column name */
|
|
2067
|
+
| "appId"
|
|
2068
|
+
/** column name */
|
|
2069
|
+
| "automationId"
|
|
2070
|
+
/** column name */
|
|
2071
|
+
| "connectionId"
|
|
2072
|
+
/** column name */
|
|
2073
|
+
| "createdAt"
|
|
2074
|
+
/** column name */
|
|
2075
|
+
| "id"
|
|
2076
|
+
/** column name */
|
|
2077
|
+
| "inputJson"
|
|
2078
|
+
/** column name */
|
|
2079
|
+
| "isCurrent"
|
|
2080
|
+
/** column name */
|
|
2081
|
+
| "jobId"
|
|
2082
|
+
/** column name */
|
|
2083
|
+
| "jobIndex"
|
|
2084
|
+
/** column name */
|
|
2085
|
+
| "jobPageId"
|
|
2086
|
+
/** column name */
|
|
2087
|
+
| "jobPlanId"
|
|
2088
|
+
/** column name */
|
|
2089
|
+
| "objectId"
|
|
2090
|
+
/** column name */
|
|
2091
|
+
| "opId"
|
|
2092
|
+
/** column name */
|
|
2093
|
+
| "outputJson"
|
|
2094
|
+
/** column name */
|
|
2095
|
+
| "refs"
|
|
2096
|
+
/** column name */
|
|
2097
|
+
| "schemaId"
|
|
2098
|
+
/** column name */
|
|
2099
|
+
| "sourceId"
|
|
2100
|
+
/** column name */
|
|
2101
|
+
| "status"
|
|
2102
|
+
/** column name */
|
|
2103
|
+
| "tenantId"
|
|
2104
|
+
/** column name */
|
|
2105
|
+
| "title"
|
|
2106
|
+
/** column name */
|
|
2107
|
+
| "type"
|
|
2108
|
+
/** column name */
|
|
2109
|
+
| "uniqueRef"
|
|
2110
|
+
/** column name */
|
|
2111
|
+
| "updatedAt";
|
|
2112
|
+
|
|
2113
|
+
export interface action_updates {
|
|
2114
|
+
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
2115
|
+
_append?: InputMaybe<action_append_input>;
|
|
2116
|
+
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
2117
|
+
_delete_at_path?: InputMaybe<action_delete_at_path_input>;
|
|
2118
|
+
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
2119
|
+
_delete_elem?: InputMaybe<action_delete_elem_input>;
|
|
2120
|
+
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
2121
|
+
_delete_key?: InputMaybe<action_delete_key_input>;
|
|
2122
|
+
/** increments the numeric columns with given value of the filtered values */
|
|
2123
|
+
_inc?: InputMaybe<action_inc_input>;
|
|
2124
|
+
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
2125
|
+
_prepend?: InputMaybe<action_prepend_input>;
|
|
2126
|
+
/** sets the columns of the filtered rows to the given values */
|
|
2127
|
+
_set?: InputMaybe<action_set_input>;
|
|
2128
|
+
/** filter the rows which have to be updated */
|
|
2129
|
+
where: action_bool_exp;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
/** order by var_pop() on columns of table "core.action" */
|
|
2133
|
+
export interface action_var_pop_order_by {
|
|
2134
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2135
|
+
}
|
|
2136
|
+
|
|
2137
|
+
/** order by var_samp() on columns of table "core.action" */
|
|
2138
|
+
export interface action_var_samp_order_by {
|
|
2139
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
/** order by variance() on columns of table "core.action" */
|
|
2143
|
+
export interface action_variance_order_by {
|
|
2144
|
+
jobIndex?: InputMaybe<order_by>;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
1658
2147
|
/** Boolean expression to filter rows from the table "core.active_status". All fields are combined with a logical 'AND'. */
|
|
1659
2148
|
export interface activeStatus_bool_exp {
|
|
1660
2149
|
_and?: InputMaybe<Array<activeStatus_bool_exp>>;
|
|
@@ -5737,8 +6226,6 @@ export interface connection_bool_exp {
|
|
|
5737
6226
|
changes_aggregate?: InputMaybe<change_aggregate_bool_exp>;
|
|
5738
6227
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
5739
6228
|
credentials?: InputMaybe<jsonb_comparison_exp>;
|
|
5740
|
-
csvLines?: InputMaybe<csv_line_bool_exp>;
|
|
5741
|
-
csvLines_aggregate?: InputMaybe<csv_line_aggregate_bool_exp>;
|
|
5742
6229
|
disabled?: InputMaybe<Boolean_comparison_exp>;
|
|
5743
6230
|
fetchNext?: InputMaybe<timestamptz_comparison_exp>;
|
|
5744
6231
|
fetchStatus?: InputMaybe<syncStatus_enum_comparison_exp>;
|
|
@@ -5825,7 +6312,6 @@ export interface connection_insert_input {
|
|
|
5825
6312
|
changes?: InputMaybe<change_arr_rel_insert_input>;
|
|
5826
6313
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
5827
6314
|
credentials?: InputMaybe<Scalars["jsonb"]>;
|
|
5828
|
-
csvLines?: InputMaybe<csv_line_arr_rel_insert_input>;
|
|
5829
6315
|
disabled?: InputMaybe<Scalars["Boolean"]>;
|
|
5830
6316
|
fetchNext?: InputMaybe<Scalars["timestamptz"]>;
|
|
5831
6317
|
fetchStatus?: InputMaybe<syncStatus_enum>;
|
|
@@ -5915,7 +6401,6 @@ export interface connection_order_by {
|
|
|
5915
6401
|
changes_aggregate?: InputMaybe<change_aggregate_order_by>;
|
|
5916
6402
|
createdAt?: InputMaybe<order_by>;
|
|
5917
6403
|
credentials?: InputMaybe<order_by>;
|
|
5918
|
-
csvLines_aggregate?: InputMaybe<csv_line_aggregate_order_by>;
|
|
5919
6404
|
disabled?: InputMaybe<order_by>;
|
|
5920
6405
|
fetchNext?: InputMaybe<order_by>;
|
|
5921
6406
|
fetchStatus?: InputMaybe<order_by>;
|
|
@@ -6886,353 +7371,6 @@ export interface core_change_source_link_updates {
|
|
|
6886
7371
|
where: core_change_source_link_bool_exp;
|
|
6887
7372
|
}
|
|
6888
7373
|
|
|
6889
|
-
export interface csv_line_aggregate_bool_exp {
|
|
6890
|
-
count?: InputMaybe<csv_line_aggregate_bool_exp_count>;
|
|
6891
|
-
}
|
|
6892
|
-
|
|
6893
|
-
export interface csv_line_aggregate_bool_exp_count {
|
|
6894
|
-
arguments?: InputMaybe<Array<csv_line_select_column>>;
|
|
6895
|
-
distinct?: InputMaybe<Scalars["Boolean"]>;
|
|
6896
|
-
filter?: InputMaybe<csv_line_bool_exp>;
|
|
6897
|
-
predicate: Int_comparison_exp;
|
|
6898
|
-
}
|
|
6899
|
-
|
|
6900
|
-
/** order by aggregate values of table "csv_line" */
|
|
6901
|
-
export interface csv_line_aggregate_order_by {
|
|
6902
|
-
avg?: InputMaybe<csv_line_avg_order_by>;
|
|
6903
|
-
count?: InputMaybe<order_by>;
|
|
6904
|
-
max?: InputMaybe<csv_line_max_order_by>;
|
|
6905
|
-
min?: InputMaybe<csv_line_min_order_by>;
|
|
6906
|
-
stddev?: InputMaybe<csv_line_stddev_order_by>;
|
|
6907
|
-
stddev_pop?: InputMaybe<csv_line_stddev_pop_order_by>;
|
|
6908
|
-
stddev_samp?: InputMaybe<csv_line_stddev_samp_order_by>;
|
|
6909
|
-
sum?: InputMaybe<csv_line_sum_order_by>;
|
|
6910
|
-
var_pop?: InputMaybe<csv_line_var_pop_order_by>;
|
|
6911
|
-
var_samp?: InputMaybe<csv_line_var_samp_order_by>;
|
|
6912
|
-
variance?: InputMaybe<csv_line_variance_order_by>;
|
|
6913
|
-
}
|
|
6914
|
-
|
|
6915
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
6916
|
-
export interface csv_line_append_input {
|
|
6917
|
-
json?: InputMaybe<Scalars["jsonb"]>;
|
|
6918
|
-
}
|
|
6919
|
-
|
|
6920
|
-
/** input type for inserting array relation for remote table "csv_line" */
|
|
6921
|
-
export interface csv_line_arr_rel_insert_input {
|
|
6922
|
-
data: Array<csv_line_insert_input>;
|
|
6923
|
-
/** upsert condition */
|
|
6924
|
-
on_conflict?: InputMaybe<csv_line_on_conflict>;
|
|
6925
|
-
}
|
|
6926
|
-
|
|
6927
|
-
/** order by avg() on columns of table "csv_line" */
|
|
6928
|
-
export interface csv_line_avg_order_by {
|
|
6929
|
-
index?: InputMaybe<order_by>;
|
|
6930
|
-
}
|
|
6931
|
-
|
|
6932
|
-
/** Boolean expression to filter rows from the table "csv_line". All fields are combined with a logical 'AND'. */
|
|
6933
|
-
export interface csv_line_bool_exp {
|
|
6934
|
-
_and?: InputMaybe<Array<csv_line_bool_exp>>;
|
|
6935
|
-
_not?: InputMaybe<csv_line_bool_exp>;
|
|
6936
|
-
_or?: InputMaybe<Array<csv_line_bool_exp>>;
|
|
6937
|
-
connection?: InputMaybe<connection_bool_exp>;
|
|
6938
|
-
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
6939
|
-
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
6940
|
-
csv?: InputMaybe<String_comparison_exp>;
|
|
6941
|
-
date?: InputMaybe<timestamptz_comparison_exp>;
|
|
6942
|
-
file?: InputMaybe<file_storage_bool_exp>;
|
|
6943
|
-
fileId?: InputMaybe<uuid_comparison_exp>;
|
|
6944
|
-
fileUniqueRef?: InputMaybe<String_comparison_exp>;
|
|
6945
|
-
headers?: InputMaybe<String_comparison_exp>;
|
|
6946
|
-
id?: InputMaybe<uuid_comparison_exp>;
|
|
6947
|
-
index?: InputMaybe<Int_comparison_exp>;
|
|
6948
|
-
json?: InputMaybe<jsonb_comparison_exp>;
|
|
6949
|
-
tenant?: InputMaybe<tenant_bool_exp>;
|
|
6950
|
-
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
6951
|
-
type?: InputMaybe<String_comparison_exp>;
|
|
6952
|
-
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
6953
|
-
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
6954
|
-
}
|
|
6955
|
-
|
|
6956
|
-
/** unique or primary key constraints on table "csv_line" */
|
|
6957
|
-
export type csv_line_constraint =
|
|
6958
|
-
/** unique or primary key constraint on columns "unique_ref", "connection_id", "type" */
|
|
6959
|
-
| "csv_line_connection_id_type_unique_ref_key"
|
|
6960
|
-
/** unique or primary key constraint on columns "id" */
|
|
6961
|
-
| "csv_line_pkey";
|
|
6962
|
-
|
|
6963
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
6964
|
-
export interface csv_line_delete_at_path_input {
|
|
6965
|
-
json?: InputMaybe<Array<Scalars["String"]>>;
|
|
6966
|
-
}
|
|
6967
|
-
|
|
6968
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
6969
|
-
export interface csv_line_delete_elem_input {
|
|
6970
|
-
json?: InputMaybe<Scalars["Int"]>;
|
|
6971
|
-
}
|
|
6972
|
-
|
|
6973
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
6974
|
-
export interface csv_line_delete_key_input {
|
|
6975
|
-
json?: InputMaybe<Scalars["String"]>;
|
|
6976
|
-
}
|
|
6977
|
-
|
|
6978
|
-
/** input type for incrementing numeric columns in table "csv_line" */
|
|
6979
|
-
export interface csv_line_inc_input {
|
|
6980
|
-
index?: InputMaybe<Scalars["Int"]>;
|
|
6981
|
-
}
|
|
6982
|
-
|
|
6983
|
-
/** input type for inserting data into table "csv_line" */
|
|
6984
|
-
export interface csv_line_insert_input {
|
|
6985
|
-
connection?: InputMaybe<connection_obj_rel_insert_input>;
|
|
6986
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
6987
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
6988
|
-
csv?: InputMaybe<Scalars["String"]>;
|
|
6989
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
6990
|
-
file?: InputMaybe<file_storage_obj_rel_insert_input>;
|
|
6991
|
-
fileId?: InputMaybe<Scalars["uuid"]>;
|
|
6992
|
-
fileUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
6993
|
-
headers?: InputMaybe<Scalars["String"]>;
|
|
6994
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
6995
|
-
index?: InputMaybe<Scalars["Int"]>;
|
|
6996
|
-
json?: InputMaybe<Scalars["jsonb"]>;
|
|
6997
|
-
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
6998
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
6999
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
7000
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7001
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7002
|
-
}
|
|
7003
|
-
|
|
7004
|
-
/** order by max() on columns of table "csv_line" */
|
|
7005
|
-
export interface csv_line_max_order_by {
|
|
7006
|
-
connectionId?: InputMaybe<order_by>;
|
|
7007
|
-
createdAt?: InputMaybe<order_by>;
|
|
7008
|
-
csv?: InputMaybe<order_by>;
|
|
7009
|
-
date?: InputMaybe<order_by>;
|
|
7010
|
-
fileId?: InputMaybe<order_by>;
|
|
7011
|
-
fileUniqueRef?: InputMaybe<order_by>;
|
|
7012
|
-
headers?: InputMaybe<order_by>;
|
|
7013
|
-
id?: InputMaybe<order_by>;
|
|
7014
|
-
index?: InputMaybe<order_by>;
|
|
7015
|
-
tenantId?: InputMaybe<order_by>;
|
|
7016
|
-
type?: InputMaybe<order_by>;
|
|
7017
|
-
uniqueRef?: InputMaybe<order_by>;
|
|
7018
|
-
updatedAt?: InputMaybe<order_by>;
|
|
7019
|
-
}
|
|
7020
|
-
|
|
7021
|
-
/** order by min() on columns of table "csv_line" */
|
|
7022
|
-
export interface csv_line_min_order_by {
|
|
7023
|
-
connectionId?: InputMaybe<order_by>;
|
|
7024
|
-
createdAt?: InputMaybe<order_by>;
|
|
7025
|
-
csv?: InputMaybe<order_by>;
|
|
7026
|
-
date?: InputMaybe<order_by>;
|
|
7027
|
-
fileId?: InputMaybe<order_by>;
|
|
7028
|
-
fileUniqueRef?: InputMaybe<order_by>;
|
|
7029
|
-
headers?: InputMaybe<order_by>;
|
|
7030
|
-
id?: InputMaybe<order_by>;
|
|
7031
|
-
index?: InputMaybe<order_by>;
|
|
7032
|
-
tenantId?: InputMaybe<order_by>;
|
|
7033
|
-
type?: InputMaybe<order_by>;
|
|
7034
|
-
uniqueRef?: InputMaybe<order_by>;
|
|
7035
|
-
updatedAt?: InputMaybe<order_by>;
|
|
7036
|
-
}
|
|
7037
|
-
|
|
7038
|
-
/** on_conflict condition type for table "csv_line" */
|
|
7039
|
-
export interface csv_line_on_conflict {
|
|
7040
|
-
constraint: csv_line_constraint;
|
|
7041
|
-
update_columns?: Array<csv_line_update_column>;
|
|
7042
|
-
where?: InputMaybe<csv_line_bool_exp>;
|
|
7043
|
-
}
|
|
7044
|
-
|
|
7045
|
-
/** Ordering options when selecting data from "csv_line". */
|
|
7046
|
-
export interface csv_line_order_by {
|
|
7047
|
-
connection?: InputMaybe<connection_order_by>;
|
|
7048
|
-
connectionId?: InputMaybe<order_by>;
|
|
7049
|
-
createdAt?: InputMaybe<order_by>;
|
|
7050
|
-
csv?: InputMaybe<order_by>;
|
|
7051
|
-
date?: InputMaybe<order_by>;
|
|
7052
|
-
file?: InputMaybe<file_storage_order_by>;
|
|
7053
|
-
fileId?: InputMaybe<order_by>;
|
|
7054
|
-
fileUniqueRef?: InputMaybe<order_by>;
|
|
7055
|
-
headers?: InputMaybe<order_by>;
|
|
7056
|
-
id?: InputMaybe<order_by>;
|
|
7057
|
-
index?: InputMaybe<order_by>;
|
|
7058
|
-
json?: InputMaybe<order_by>;
|
|
7059
|
-
tenant?: InputMaybe<tenant_order_by>;
|
|
7060
|
-
tenantId?: InputMaybe<order_by>;
|
|
7061
|
-
type?: InputMaybe<order_by>;
|
|
7062
|
-
uniqueRef?: InputMaybe<order_by>;
|
|
7063
|
-
updatedAt?: InputMaybe<order_by>;
|
|
7064
|
-
}
|
|
7065
|
-
|
|
7066
|
-
/** primary key columns input for table: csv_line */
|
|
7067
|
-
export interface csv_line_pk_columns_input {
|
|
7068
|
-
id: Scalars["uuid"];
|
|
7069
|
-
}
|
|
7070
|
-
|
|
7071
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7072
|
-
export interface csv_line_prepend_input {
|
|
7073
|
-
json?: InputMaybe<Scalars["jsonb"]>;
|
|
7074
|
-
}
|
|
7075
|
-
|
|
7076
|
-
/** select columns of table "csv_line" */
|
|
7077
|
-
export type csv_line_select_column =
|
|
7078
|
-
/** column name */
|
|
7079
|
-
| "connectionId"
|
|
7080
|
-
/** column name */
|
|
7081
|
-
| "createdAt"
|
|
7082
|
-
/** column name */
|
|
7083
|
-
| "csv"
|
|
7084
|
-
/** column name */
|
|
7085
|
-
| "date"
|
|
7086
|
-
/** column name */
|
|
7087
|
-
| "fileId"
|
|
7088
|
-
/** column name */
|
|
7089
|
-
| "fileUniqueRef"
|
|
7090
|
-
/** column name */
|
|
7091
|
-
| "headers"
|
|
7092
|
-
/** column name */
|
|
7093
|
-
| "id"
|
|
7094
|
-
/** column name */
|
|
7095
|
-
| "index"
|
|
7096
|
-
/** column name */
|
|
7097
|
-
| "json"
|
|
7098
|
-
/** column name */
|
|
7099
|
-
| "tenantId"
|
|
7100
|
-
/** column name */
|
|
7101
|
-
| "type"
|
|
7102
|
-
/** column name */
|
|
7103
|
-
| "uniqueRef"
|
|
7104
|
-
/** column name */
|
|
7105
|
-
| "updatedAt";
|
|
7106
|
-
|
|
7107
|
-
/** input type for updating data in table "csv_line" */
|
|
7108
|
-
export interface csv_line_set_input {
|
|
7109
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
7110
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7111
|
-
csv?: InputMaybe<Scalars["String"]>;
|
|
7112
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
7113
|
-
fileId?: InputMaybe<Scalars["uuid"]>;
|
|
7114
|
-
fileUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7115
|
-
headers?: InputMaybe<Scalars["String"]>;
|
|
7116
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
7117
|
-
index?: InputMaybe<Scalars["Int"]>;
|
|
7118
|
-
json?: InputMaybe<Scalars["jsonb"]>;
|
|
7119
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7120
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
7121
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7122
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7123
|
-
}
|
|
7124
|
-
|
|
7125
|
-
/** order by stddev() on columns of table "csv_line" */
|
|
7126
|
-
export interface csv_line_stddev_order_by {
|
|
7127
|
-
index?: InputMaybe<order_by>;
|
|
7128
|
-
}
|
|
7129
|
-
|
|
7130
|
-
/** order by stddev_pop() on columns of table "csv_line" */
|
|
7131
|
-
export interface csv_line_stddev_pop_order_by {
|
|
7132
|
-
index?: InputMaybe<order_by>;
|
|
7133
|
-
}
|
|
7134
|
-
|
|
7135
|
-
/** order by stddev_samp() on columns of table "csv_line" */
|
|
7136
|
-
export interface csv_line_stddev_samp_order_by {
|
|
7137
|
-
index?: InputMaybe<order_by>;
|
|
7138
|
-
}
|
|
7139
|
-
|
|
7140
|
-
/** Streaming cursor of the table "csv_line" */
|
|
7141
|
-
export interface csv_line_stream_cursor_input {
|
|
7142
|
-
/** Stream column input with initial value */
|
|
7143
|
-
initial_value: csv_line_stream_cursor_value_input;
|
|
7144
|
-
/** cursor ordering */
|
|
7145
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
7146
|
-
}
|
|
7147
|
-
|
|
7148
|
-
/** Initial value of the column from where the streaming should start */
|
|
7149
|
-
export interface csv_line_stream_cursor_value_input {
|
|
7150
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
7151
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7152
|
-
csv?: InputMaybe<Scalars["String"]>;
|
|
7153
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
7154
|
-
fileId?: InputMaybe<Scalars["uuid"]>;
|
|
7155
|
-
fileUniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7156
|
-
headers?: InputMaybe<Scalars["String"]>;
|
|
7157
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
7158
|
-
index?: InputMaybe<Scalars["Int"]>;
|
|
7159
|
-
json?: InputMaybe<Scalars["jsonb"]>;
|
|
7160
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
7161
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
7162
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
7163
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
7164
|
-
}
|
|
7165
|
-
|
|
7166
|
-
/** order by sum() on columns of table "csv_line" */
|
|
7167
|
-
export interface csv_line_sum_order_by {
|
|
7168
|
-
index?: InputMaybe<order_by>;
|
|
7169
|
-
}
|
|
7170
|
-
|
|
7171
|
-
/** update columns of table "csv_line" */
|
|
7172
|
-
export type csv_line_update_column =
|
|
7173
|
-
/** column name */
|
|
7174
|
-
| "connectionId"
|
|
7175
|
-
/** column name */
|
|
7176
|
-
| "createdAt"
|
|
7177
|
-
/** column name */
|
|
7178
|
-
| "csv"
|
|
7179
|
-
/** column name */
|
|
7180
|
-
| "date"
|
|
7181
|
-
/** column name */
|
|
7182
|
-
| "fileId"
|
|
7183
|
-
/** column name */
|
|
7184
|
-
| "fileUniqueRef"
|
|
7185
|
-
/** column name */
|
|
7186
|
-
| "headers"
|
|
7187
|
-
/** column name */
|
|
7188
|
-
| "id"
|
|
7189
|
-
/** column name */
|
|
7190
|
-
| "index"
|
|
7191
|
-
/** column name */
|
|
7192
|
-
| "json"
|
|
7193
|
-
/** column name */
|
|
7194
|
-
| "tenantId"
|
|
7195
|
-
/** column name */
|
|
7196
|
-
| "type"
|
|
7197
|
-
/** column name */
|
|
7198
|
-
| "uniqueRef"
|
|
7199
|
-
/** column name */
|
|
7200
|
-
| "updatedAt";
|
|
7201
|
-
|
|
7202
|
-
export interface csv_line_updates {
|
|
7203
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
7204
|
-
_append?: InputMaybe<csv_line_append_input>;
|
|
7205
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
7206
|
-
_delete_at_path?: InputMaybe<csv_line_delete_at_path_input>;
|
|
7207
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
7208
|
-
_delete_elem?: InputMaybe<csv_line_delete_elem_input>;
|
|
7209
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
7210
|
-
_delete_key?: InputMaybe<csv_line_delete_key_input>;
|
|
7211
|
-
/** increments the numeric columns with given value of the filtered values */
|
|
7212
|
-
_inc?: InputMaybe<csv_line_inc_input>;
|
|
7213
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
7214
|
-
_prepend?: InputMaybe<csv_line_prepend_input>;
|
|
7215
|
-
/** sets the columns of the filtered rows to the given values */
|
|
7216
|
-
_set?: InputMaybe<csv_line_set_input>;
|
|
7217
|
-
/** filter the rows which have to be updated */
|
|
7218
|
-
where: csv_line_bool_exp;
|
|
7219
|
-
}
|
|
7220
|
-
|
|
7221
|
-
/** order by var_pop() on columns of table "csv_line" */
|
|
7222
|
-
export interface csv_line_var_pop_order_by {
|
|
7223
|
-
index?: InputMaybe<order_by>;
|
|
7224
|
-
}
|
|
7225
|
-
|
|
7226
|
-
/** order by var_samp() on columns of table "csv_line" */
|
|
7227
|
-
export interface csv_line_var_samp_order_by {
|
|
7228
|
-
index?: InputMaybe<order_by>;
|
|
7229
|
-
}
|
|
7230
|
-
|
|
7231
|
-
/** order by variance() on columns of table "csv_line" */
|
|
7232
|
-
export interface csv_line_variance_order_by {
|
|
7233
|
-
index?: InputMaybe<order_by>;
|
|
7234
|
-
}
|
|
7235
|
-
|
|
7236
7374
|
/** Boolean expression to filter rows from the table "currency". All fields are combined with a logical 'AND'. */
|
|
7237
7375
|
export interface currency_bool_exp {
|
|
7238
7376
|
_and?: InputMaybe<Array<currency_bool_exp>>;
|
|
@@ -9158,19 +9296,6 @@ export interface file_storage_updates {
|
|
|
9158
9296
|
where: file_storage_bool_exp;
|
|
9159
9297
|
}
|
|
9160
9298
|
|
|
9161
|
-
/** Boolean expression to compare columns of type "float8". All fields are combined with logical 'AND'. */
|
|
9162
|
-
export interface float8_comparison_exp {
|
|
9163
|
-
_eq?: InputMaybe<Scalars["float8"]>;
|
|
9164
|
-
_gt?: InputMaybe<Scalars["float8"]>;
|
|
9165
|
-
_gte?: InputMaybe<Scalars["float8"]>;
|
|
9166
|
-
_in?: InputMaybe<Array<Scalars["float8"]>>;
|
|
9167
|
-
_is_null?: InputMaybe<Scalars["Boolean"]>;
|
|
9168
|
-
_lt?: InputMaybe<Scalars["float8"]>;
|
|
9169
|
-
_lte?: InputMaybe<Scalars["float8"]>;
|
|
9170
|
-
_neq?: InputMaybe<Scalars["float8"]>;
|
|
9171
|
-
_nin?: InputMaybe<Array<Scalars["float8"]>>;
|
|
9172
|
-
}
|
|
9173
|
-
|
|
9174
9299
|
/** Boolean expression to filter rows from the logical model for "issueConnectionsNeedVersionUpgradeReturnType". All fields are combined with a logical 'AND'. */
|
|
9175
9300
|
export interface issueConnectionsNeedVersionUpgradeReturnType_bool_exp_bool_exp {
|
|
9176
9301
|
_and?: InputMaybe<
|
|
@@ -12525,219 +12650,6 @@ export interface listing_variance_order_by {
|
|
|
12525
12650
|
centTaxStartingBalance?: InputMaybe<order_by>;
|
|
12526
12651
|
}
|
|
12527
12652
|
|
|
12528
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
12529
|
-
export interface metric_append_input {
|
|
12530
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12531
|
-
}
|
|
12532
|
-
|
|
12533
|
-
/** Boolean expression to filter rows from the table "metric". All fields are combined with a logical 'AND'. */
|
|
12534
|
-
export interface metric_bool_exp {
|
|
12535
|
-
_and?: InputMaybe<Array<metric_bool_exp>>;
|
|
12536
|
-
_not?: InputMaybe<metric_bool_exp>;
|
|
12537
|
-
_or?: InputMaybe<Array<metric_bool_exp>>;
|
|
12538
|
-
connection?: InputMaybe<connection_bool_exp>;
|
|
12539
|
-
connectionId?: InputMaybe<uuid_comparison_exp>;
|
|
12540
|
-
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
12541
|
-
date?: InputMaybe<timestamptz_comparison_exp>;
|
|
12542
|
-
id?: InputMaybe<uuid_comparison_exp>;
|
|
12543
|
-
listingConnection?: InputMaybe<listing_connection_bool_exp>;
|
|
12544
|
-
listingConnectionId?: InputMaybe<uuid_comparison_exp>;
|
|
12545
|
-
metadata?: InputMaybe<jsonb_comparison_exp>;
|
|
12546
|
-
tenant?: InputMaybe<tenant_bool_exp>;
|
|
12547
|
-
tenantId?: InputMaybe<uuid_comparison_exp>;
|
|
12548
|
-
type?: InputMaybe<String_comparison_exp>;
|
|
12549
|
-
uniqueRef?: InputMaybe<String_comparison_exp>;
|
|
12550
|
-
updatedAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
12551
|
-
value?: InputMaybe<float8_comparison_exp>;
|
|
12552
|
-
}
|
|
12553
|
-
|
|
12554
|
-
/** unique or primary key constraints on table "metric" */
|
|
12555
|
-
export type metric_constraint =
|
|
12556
|
-
/** unique or primary key constraint on columns "unique_ref", "connection_id" */
|
|
12557
|
-
| "metric_connection_id_unique_ref_key"
|
|
12558
|
-
/** unique or primary key constraint on columns "id" */
|
|
12559
|
-
| "metric_pkey";
|
|
12560
|
-
|
|
12561
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
12562
|
-
export interface metric_delete_at_path_input {
|
|
12563
|
-
metadata?: InputMaybe<Array<Scalars["String"]>>;
|
|
12564
|
-
}
|
|
12565
|
-
|
|
12566
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
12567
|
-
export interface metric_delete_elem_input {
|
|
12568
|
-
metadata?: InputMaybe<Scalars["Int"]>;
|
|
12569
|
-
}
|
|
12570
|
-
|
|
12571
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
12572
|
-
export interface metric_delete_key_input {
|
|
12573
|
-
metadata?: InputMaybe<Scalars["String"]>;
|
|
12574
|
-
}
|
|
12575
|
-
|
|
12576
|
-
/** input type for incrementing numeric columns in table "metric" */
|
|
12577
|
-
export interface metric_inc_input {
|
|
12578
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12579
|
-
}
|
|
12580
|
-
|
|
12581
|
-
/** input type for inserting data into table "metric" */
|
|
12582
|
-
export interface metric_insert_input {
|
|
12583
|
-
connection?: InputMaybe<connection_obj_rel_insert_input>;
|
|
12584
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12585
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12586
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12587
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12588
|
-
listingConnection?: InputMaybe<listing_connection_obj_rel_insert_input>;
|
|
12589
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12590
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12591
|
-
tenant?: InputMaybe<tenant_obj_rel_insert_input>;
|
|
12592
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12593
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12594
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12595
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12596
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12597
|
-
}
|
|
12598
|
-
|
|
12599
|
-
/** on_conflict condition type for table "metric" */
|
|
12600
|
-
export interface metric_on_conflict {
|
|
12601
|
-
constraint: metric_constraint;
|
|
12602
|
-
update_columns?: Array<metric_update_column>;
|
|
12603
|
-
where?: InputMaybe<metric_bool_exp>;
|
|
12604
|
-
}
|
|
12605
|
-
|
|
12606
|
-
/** Ordering options when selecting data from "metric". */
|
|
12607
|
-
export interface metric_order_by {
|
|
12608
|
-
connection?: InputMaybe<connection_order_by>;
|
|
12609
|
-
connectionId?: InputMaybe<order_by>;
|
|
12610
|
-
createdAt?: InputMaybe<order_by>;
|
|
12611
|
-
date?: InputMaybe<order_by>;
|
|
12612
|
-
id?: InputMaybe<order_by>;
|
|
12613
|
-
listingConnection?: InputMaybe<listing_connection_order_by>;
|
|
12614
|
-
listingConnectionId?: InputMaybe<order_by>;
|
|
12615
|
-
metadata?: InputMaybe<order_by>;
|
|
12616
|
-
tenant?: InputMaybe<tenant_order_by>;
|
|
12617
|
-
tenantId?: InputMaybe<order_by>;
|
|
12618
|
-
type?: InputMaybe<order_by>;
|
|
12619
|
-
uniqueRef?: InputMaybe<order_by>;
|
|
12620
|
-
updatedAt?: InputMaybe<order_by>;
|
|
12621
|
-
value?: InputMaybe<order_by>;
|
|
12622
|
-
}
|
|
12623
|
-
|
|
12624
|
-
/** primary key columns input for table: metric */
|
|
12625
|
-
export interface metric_pk_columns_input {
|
|
12626
|
-
id: Scalars["uuid"];
|
|
12627
|
-
}
|
|
12628
|
-
|
|
12629
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
12630
|
-
export interface metric_prepend_input {
|
|
12631
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12632
|
-
}
|
|
12633
|
-
|
|
12634
|
-
/** select columns of table "metric" */
|
|
12635
|
-
export type metric_select_column =
|
|
12636
|
-
/** column name */
|
|
12637
|
-
| "connectionId"
|
|
12638
|
-
/** column name */
|
|
12639
|
-
| "createdAt"
|
|
12640
|
-
/** column name */
|
|
12641
|
-
| "date"
|
|
12642
|
-
/** column name */
|
|
12643
|
-
| "id"
|
|
12644
|
-
/** column name */
|
|
12645
|
-
| "listingConnectionId"
|
|
12646
|
-
/** column name */
|
|
12647
|
-
| "metadata"
|
|
12648
|
-
/** column name */
|
|
12649
|
-
| "tenantId"
|
|
12650
|
-
/** column name */
|
|
12651
|
-
| "type"
|
|
12652
|
-
/** column name */
|
|
12653
|
-
| "uniqueRef"
|
|
12654
|
-
/** column name */
|
|
12655
|
-
| "updatedAt"
|
|
12656
|
-
/** column name */
|
|
12657
|
-
| "value";
|
|
12658
|
-
|
|
12659
|
-
/** input type for updating data in table "metric" */
|
|
12660
|
-
export interface metric_set_input {
|
|
12661
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12662
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12663
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12664
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12665
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12666
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12667
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12668
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12669
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12670
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12671
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12672
|
-
}
|
|
12673
|
-
|
|
12674
|
-
/** Streaming cursor of the table "metric" */
|
|
12675
|
-
export interface metric_stream_cursor_input {
|
|
12676
|
-
/** Stream column input with initial value */
|
|
12677
|
-
initial_value: metric_stream_cursor_value_input;
|
|
12678
|
-
/** cursor ordering */
|
|
12679
|
-
ordering?: InputMaybe<cursor_ordering>;
|
|
12680
|
-
}
|
|
12681
|
-
|
|
12682
|
-
/** Initial value of the column from where the streaming should start */
|
|
12683
|
-
export interface metric_stream_cursor_value_input {
|
|
12684
|
-
connectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12685
|
-
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12686
|
-
date?: InputMaybe<Scalars["timestamptz"]>;
|
|
12687
|
-
id?: InputMaybe<Scalars["uuid"]>;
|
|
12688
|
-
listingConnectionId?: InputMaybe<Scalars["uuid"]>;
|
|
12689
|
-
metadata?: InputMaybe<Scalars["jsonb"]>;
|
|
12690
|
-
tenantId?: InputMaybe<Scalars["uuid"]>;
|
|
12691
|
-
type?: InputMaybe<Scalars["String"]>;
|
|
12692
|
-
uniqueRef?: InputMaybe<Scalars["String"]>;
|
|
12693
|
-
updatedAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
12694
|
-
value?: InputMaybe<Scalars["float8"]>;
|
|
12695
|
-
}
|
|
12696
|
-
|
|
12697
|
-
/** update columns of table "metric" */
|
|
12698
|
-
export type metric_update_column =
|
|
12699
|
-
/** column name */
|
|
12700
|
-
| "connectionId"
|
|
12701
|
-
/** column name */
|
|
12702
|
-
| "createdAt"
|
|
12703
|
-
/** column name */
|
|
12704
|
-
| "date"
|
|
12705
|
-
/** column name */
|
|
12706
|
-
| "id"
|
|
12707
|
-
/** column name */
|
|
12708
|
-
| "listingConnectionId"
|
|
12709
|
-
/** column name */
|
|
12710
|
-
| "metadata"
|
|
12711
|
-
/** column name */
|
|
12712
|
-
| "tenantId"
|
|
12713
|
-
/** column name */
|
|
12714
|
-
| "type"
|
|
12715
|
-
/** column name */
|
|
12716
|
-
| "uniqueRef"
|
|
12717
|
-
/** column name */
|
|
12718
|
-
| "updatedAt"
|
|
12719
|
-
/** column name */
|
|
12720
|
-
| "value";
|
|
12721
|
-
|
|
12722
|
-
export interface metric_updates {
|
|
12723
|
-
/** append existing jsonb value of filtered columns with new jsonb value */
|
|
12724
|
-
_append?: InputMaybe<metric_append_input>;
|
|
12725
|
-
/** delete the field or element with specified path (for JSON arrays, negative integers count from the end) */
|
|
12726
|
-
_delete_at_path?: InputMaybe<metric_delete_at_path_input>;
|
|
12727
|
-
/** delete the array element with specified index (negative integers count from the end). throws an error if top level container is not an array */
|
|
12728
|
-
_delete_elem?: InputMaybe<metric_delete_elem_input>;
|
|
12729
|
-
/** delete key/value pair or string element. key/value pairs are matched based on their key value */
|
|
12730
|
-
_delete_key?: InputMaybe<metric_delete_key_input>;
|
|
12731
|
-
/** increments the numeric columns with given value of the filtered values */
|
|
12732
|
-
_inc?: InputMaybe<metric_inc_input>;
|
|
12733
|
-
/** prepend existing jsonb value of filtered columns with new jsonb value */
|
|
12734
|
-
_prepend?: InputMaybe<metric_prepend_input>;
|
|
12735
|
-
/** sets the columns of the filtered rows to the given values */
|
|
12736
|
-
_set?: InputMaybe<metric_set_input>;
|
|
12737
|
-
/** filter the rows which have to be updated */
|
|
12738
|
-
where: metric_bool_exp;
|
|
12739
|
-
}
|
|
12740
|
-
|
|
12741
12653
|
/** Boolean expression to filter rows from the logical model for "metricsActiveListingCreatedReturnType". All fields are combined with a logical 'AND'. */
|
|
12742
12654
|
export interface metricsActiveListingCreatedReturnType_bool_exp_bool_exp {
|
|
12743
12655
|
_and?: InputMaybe<
|
|
@@ -24191,8 +24103,6 @@ export interface tenant_bool_exp {
|
|
|
24191
24103
|
connections?: InputMaybe<connection_bool_exp>;
|
|
24192
24104
|
connections_aggregate?: InputMaybe<connection_aggregate_bool_exp>;
|
|
24193
24105
|
createdAt?: InputMaybe<timestamptz_comparison_exp>;
|
|
24194
|
-
csvLines?: InputMaybe<csv_line_bool_exp>;
|
|
24195
|
-
csvLines_aggregate?: InputMaybe<csv_line_aggregate_bool_exp>;
|
|
24196
24106
|
defaultCurrency?: InputMaybe<currency_enum_comparison_exp>;
|
|
24197
24107
|
defaultRevenueRecognition?: InputMaybe<accountReservationRevRec_enum_comparison_exp>;
|
|
24198
24108
|
email?: InputMaybe<String_comparison_exp>;
|
|
@@ -24336,7 +24246,6 @@ export interface tenant_insert_input {
|
|
|
24336
24246
|
companyTaxCode?: InputMaybe<Scalars["String"]>;
|
|
24337
24247
|
connections?: InputMaybe<connection_arr_rel_insert_input>;
|
|
24338
24248
|
createdAt?: InputMaybe<Scalars["timestamptz"]>;
|
|
24339
|
-
csvLines?: InputMaybe<csv_line_arr_rel_insert_input>;
|
|
24340
24249
|
defaultCurrency?: InputMaybe<currency_enum>;
|
|
24341
24250
|
defaultRevenueRecognition?: InputMaybe<accountReservationRevRec_enum>;
|
|
24342
24251
|
email?: InputMaybe<Scalars["String"]>;
|
|
@@ -24526,7 +24435,6 @@ export interface tenant_order_by {
|
|
|
24526
24435
|
companyTaxCode?: InputMaybe<order_by>;
|
|
24527
24436
|
connections_aggregate?: InputMaybe<connection_aggregate_order_by>;
|
|
24528
24437
|
createdAt?: InputMaybe<order_by>;
|
|
24529
|
-
csvLines_aggregate?: InputMaybe<csv_line_aggregate_order_by>;
|
|
24530
24438
|
defaultCurrency?: InputMaybe<order_by>;
|
|
24531
24439
|
defaultRevenueRecognition?: InputMaybe<order_by>;
|
|
24532
24440
|
email?: InputMaybe<order_by>;
|
|
@@ -30517,6 +30425,511 @@ export declare const generatedSchema: {
|
|
|
30517
30425
|
_set: { __type: "account_set_input" };
|
|
30518
30426
|
where: { __type: "account_bool_exp!" };
|
|
30519
30427
|
};
|
|
30428
|
+
action: {
|
|
30429
|
+
__typename: { __type: "String!" };
|
|
30430
|
+
appId: { __type: "String" };
|
|
30431
|
+
automationId: { __type: "uuid" };
|
|
30432
|
+
changes: {
|
|
30433
|
+
__type: "[change!]!";
|
|
30434
|
+
__args: {
|
|
30435
|
+
distinct_on: "[change_select_column!]";
|
|
30436
|
+
limit: "Int";
|
|
30437
|
+
offset: "Int";
|
|
30438
|
+
order_by: "[change_order_by!]";
|
|
30439
|
+
where: "change_bool_exp";
|
|
30440
|
+
};
|
|
30441
|
+
};
|
|
30442
|
+
changes_aggregate: {
|
|
30443
|
+
__type: "change_aggregate!";
|
|
30444
|
+
__args: {
|
|
30445
|
+
distinct_on: "[change_select_column!]";
|
|
30446
|
+
limit: "Int";
|
|
30447
|
+
offset: "Int";
|
|
30448
|
+
order_by: "[change_order_by!]";
|
|
30449
|
+
where: "change_bool_exp";
|
|
30450
|
+
};
|
|
30451
|
+
};
|
|
30452
|
+
connection: { __type: "connection" };
|
|
30453
|
+
connectionId: { __type: "uuid" };
|
|
30454
|
+
createdAt: { __type: "timestamptz" };
|
|
30455
|
+
id: { __type: "uuid!" };
|
|
30456
|
+
inputJson: { __type: "jsonb"; __args: { path: "String" } };
|
|
30457
|
+
isCurrent: { __type: "Boolean" };
|
|
30458
|
+
jobId: { __type: "uuid" };
|
|
30459
|
+
jobIndex: { __type: "Int" };
|
|
30460
|
+
jobPageId: { __type: "uuid" };
|
|
30461
|
+
jobPlanId: { __type: "uuid" };
|
|
30462
|
+
objectId: { __type: "uuid" };
|
|
30463
|
+
opId: { __type: "uuid" };
|
|
30464
|
+
outputJson: { __type: "jsonb"; __args: { path: "String" } };
|
|
30465
|
+
previousActions: {
|
|
30466
|
+
__type: "[action!]!";
|
|
30467
|
+
__args: {
|
|
30468
|
+
distinct_on: "[action_select_column!]";
|
|
30469
|
+
limit: "Int";
|
|
30470
|
+
offset: "Int";
|
|
30471
|
+
order_by: "[action_order_by!]";
|
|
30472
|
+
where: "action_bool_exp";
|
|
30473
|
+
};
|
|
30474
|
+
};
|
|
30475
|
+
previousActions3: {
|
|
30476
|
+
__type: "[action!]!";
|
|
30477
|
+
__args: {
|
|
30478
|
+
distinct_on: "[action_select_column!]";
|
|
30479
|
+
limit: "Int";
|
|
30480
|
+
offset: "Int";
|
|
30481
|
+
order_by: "[action_order_by!]";
|
|
30482
|
+
where: "action_bool_exp";
|
|
30483
|
+
};
|
|
30484
|
+
};
|
|
30485
|
+
previousActions3_aggregate: {
|
|
30486
|
+
__type: "action_aggregate!";
|
|
30487
|
+
__args: {
|
|
30488
|
+
distinct_on: "[action_select_column!]";
|
|
30489
|
+
limit: "Int";
|
|
30490
|
+
offset: "Int";
|
|
30491
|
+
order_by: "[action_order_by!]";
|
|
30492
|
+
where: "action_bool_exp";
|
|
30493
|
+
};
|
|
30494
|
+
};
|
|
30495
|
+
previousActionsByType: {
|
|
30496
|
+
__type: "[action!]!";
|
|
30497
|
+
__args: {
|
|
30498
|
+
distinct_on: "[action_select_column!]";
|
|
30499
|
+
limit: "Int";
|
|
30500
|
+
offset: "Int";
|
|
30501
|
+
order_by: "[action_order_by!]";
|
|
30502
|
+
where: "action_bool_exp";
|
|
30503
|
+
};
|
|
30504
|
+
};
|
|
30505
|
+
previousActionsByType_aggregate: {
|
|
30506
|
+
__type: "action_aggregate!";
|
|
30507
|
+
__args: {
|
|
30508
|
+
distinct_on: "[action_select_column!]";
|
|
30509
|
+
limit: "Int";
|
|
30510
|
+
offset: "Int";
|
|
30511
|
+
order_by: "[action_order_by!]";
|
|
30512
|
+
where: "action_bool_exp";
|
|
30513
|
+
};
|
|
30514
|
+
};
|
|
30515
|
+
previousActions_aggregate: {
|
|
30516
|
+
__type: "action_aggregate!";
|
|
30517
|
+
__args: {
|
|
30518
|
+
distinct_on: "[action_select_column!]";
|
|
30519
|
+
limit: "Int";
|
|
30520
|
+
offset: "Int";
|
|
30521
|
+
order_by: "[action_order_by!]";
|
|
30522
|
+
where: "action_bool_exp";
|
|
30523
|
+
};
|
|
30524
|
+
};
|
|
30525
|
+
refs: { __type: "jsonb"; __args: { path: "String" } };
|
|
30526
|
+
schemaId: { __type: "uuid" };
|
|
30527
|
+
source: { __type: "source" };
|
|
30528
|
+
sourceId: { __type: "uuid" };
|
|
30529
|
+
status: { __type: "String" };
|
|
30530
|
+
tenant: { __type: "tenant" };
|
|
30531
|
+
tenantId: { __type: "uuid" };
|
|
30532
|
+
title: { __type: "String" };
|
|
30533
|
+
type: { __type: "String" };
|
|
30534
|
+
uniqueRef: { __type: "String" };
|
|
30535
|
+
updatedAt: { __type: "timestamptz" };
|
|
30536
|
+
};
|
|
30537
|
+
action_aggregate: {
|
|
30538
|
+
__typename: { __type: "String!" };
|
|
30539
|
+
aggregate: { __type: "action_aggregate_fields" };
|
|
30540
|
+
nodes: { __type: "[action!]!" };
|
|
30541
|
+
};
|
|
30542
|
+
action_aggregate_bool_exp: {
|
|
30543
|
+
bool_and: { __type: "action_aggregate_bool_exp_bool_and" };
|
|
30544
|
+
bool_or: { __type: "action_aggregate_bool_exp_bool_or" };
|
|
30545
|
+
count: { __type: "action_aggregate_bool_exp_count" };
|
|
30546
|
+
};
|
|
30547
|
+
action_aggregate_bool_exp_bool_and: {
|
|
30548
|
+
arguments: {
|
|
30549
|
+
__type: "action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns!";
|
|
30550
|
+
};
|
|
30551
|
+
distinct: { __type: "Boolean" };
|
|
30552
|
+
filter: { __type: "action_bool_exp" };
|
|
30553
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
30554
|
+
};
|
|
30555
|
+
action_aggregate_bool_exp_bool_or: {
|
|
30556
|
+
arguments: {
|
|
30557
|
+
__type: "action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns!";
|
|
30558
|
+
};
|
|
30559
|
+
distinct: { __type: "Boolean" };
|
|
30560
|
+
filter: { __type: "action_bool_exp" };
|
|
30561
|
+
predicate: { __type: "Boolean_comparison_exp!" };
|
|
30562
|
+
};
|
|
30563
|
+
action_aggregate_bool_exp_count: {
|
|
30564
|
+
arguments: { __type: "[action_select_column!]" };
|
|
30565
|
+
distinct: { __type: "Boolean" };
|
|
30566
|
+
filter: { __type: "action_bool_exp" };
|
|
30567
|
+
predicate: { __type: "Int_comparison_exp!" };
|
|
30568
|
+
};
|
|
30569
|
+
action_aggregate_fields: {
|
|
30570
|
+
__typename: { __type: "String!" };
|
|
30571
|
+
avg: { __type: "action_avg_fields" };
|
|
30572
|
+
count: {
|
|
30573
|
+
__type: "Int!";
|
|
30574
|
+
__args: { columns: "[action_select_column!]"; distinct: "Boolean" };
|
|
30575
|
+
};
|
|
30576
|
+
max: { __type: "action_max_fields" };
|
|
30577
|
+
min: { __type: "action_min_fields" };
|
|
30578
|
+
stddev: { __type: "action_stddev_fields" };
|
|
30579
|
+
stddev_pop: { __type: "action_stddev_pop_fields" };
|
|
30580
|
+
stddev_samp: { __type: "action_stddev_samp_fields" };
|
|
30581
|
+
sum: { __type: "action_sum_fields" };
|
|
30582
|
+
var_pop: { __type: "action_var_pop_fields" };
|
|
30583
|
+
var_samp: { __type: "action_var_samp_fields" };
|
|
30584
|
+
variance: { __type: "action_variance_fields" };
|
|
30585
|
+
};
|
|
30586
|
+
action_aggregate_order_by: {
|
|
30587
|
+
avg: { __type: "action_avg_order_by" };
|
|
30588
|
+
count: { __type: "order_by" };
|
|
30589
|
+
max: { __type: "action_max_order_by" };
|
|
30590
|
+
min: { __type: "action_min_order_by" };
|
|
30591
|
+
stddev: { __type: "action_stddev_order_by" };
|
|
30592
|
+
stddev_pop: { __type: "action_stddev_pop_order_by" };
|
|
30593
|
+
stddev_samp: { __type: "action_stddev_samp_order_by" };
|
|
30594
|
+
sum: { __type: "action_sum_order_by" };
|
|
30595
|
+
var_pop: { __type: "action_var_pop_order_by" };
|
|
30596
|
+
var_samp: { __type: "action_var_samp_order_by" };
|
|
30597
|
+
variance: { __type: "action_variance_order_by" };
|
|
30598
|
+
};
|
|
30599
|
+
action_append_input: {
|
|
30600
|
+
inputJson: { __type: "jsonb" };
|
|
30601
|
+
outputJson: { __type: "jsonb" };
|
|
30602
|
+
refs: { __type: "jsonb" };
|
|
30603
|
+
};
|
|
30604
|
+
action_arr_rel_insert_input: {
|
|
30605
|
+
data: { __type: "[action_insert_input!]!" };
|
|
30606
|
+
on_conflict: { __type: "action_on_conflict" };
|
|
30607
|
+
};
|
|
30608
|
+
action_avg_fields: {
|
|
30609
|
+
__typename: { __type: "String!" };
|
|
30610
|
+
jobIndex: { __type: "Float" };
|
|
30611
|
+
};
|
|
30612
|
+
action_avg_order_by: { jobIndex: { __type: "order_by" } };
|
|
30613
|
+
action_bool_exp: {
|
|
30614
|
+
_and: { __type: "[action_bool_exp!]" };
|
|
30615
|
+
_not: { __type: "action_bool_exp" };
|
|
30616
|
+
_or: { __type: "[action_bool_exp!]" };
|
|
30617
|
+
appId: { __type: "String_comparison_exp" };
|
|
30618
|
+
automationId: { __type: "uuid_comparison_exp" };
|
|
30619
|
+
changes: { __type: "change_bool_exp" };
|
|
30620
|
+
changes_aggregate: { __type: "change_aggregate_bool_exp" };
|
|
30621
|
+
connection: { __type: "connection_bool_exp" };
|
|
30622
|
+
connectionId: { __type: "uuid_comparison_exp" };
|
|
30623
|
+
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
30624
|
+
id: { __type: "uuid_comparison_exp" };
|
|
30625
|
+
inputJson: { __type: "jsonb_comparison_exp" };
|
|
30626
|
+
isCurrent: { __type: "Boolean_comparison_exp" };
|
|
30627
|
+
jobId: { __type: "uuid_comparison_exp" };
|
|
30628
|
+
jobIndex: { __type: "Int_comparison_exp" };
|
|
30629
|
+
jobPageId: { __type: "uuid_comparison_exp" };
|
|
30630
|
+
jobPlanId: { __type: "uuid_comparison_exp" };
|
|
30631
|
+
objectId: { __type: "uuid_comparison_exp" };
|
|
30632
|
+
opId: { __type: "uuid_comparison_exp" };
|
|
30633
|
+
outputJson: { __type: "jsonb_comparison_exp" };
|
|
30634
|
+
previousActions: { __type: "action_bool_exp" };
|
|
30635
|
+
previousActions3: { __type: "action_bool_exp" };
|
|
30636
|
+
previousActions3_aggregate: { __type: "action_aggregate_bool_exp" };
|
|
30637
|
+
previousActionsByType: { __type: "action_bool_exp" };
|
|
30638
|
+
previousActionsByType_aggregate: { __type: "action_aggregate_bool_exp" };
|
|
30639
|
+
previousActions_aggregate: { __type: "action_aggregate_bool_exp" };
|
|
30640
|
+
refs: { __type: "jsonb_comparison_exp" };
|
|
30641
|
+
schemaId: { __type: "uuid_comparison_exp" };
|
|
30642
|
+
source: { __type: "source_bool_exp" };
|
|
30643
|
+
sourceId: { __type: "uuid_comparison_exp" };
|
|
30644
|
+
status: { __type: "String_comparison_exp" };
|
|
30645
|
+
tenant: { __type: "tenant_bool_exp" };
|
|
30646
|
+
tenantId: { __type: "uuid_comparison_exp" };
|
|
30647
|
+
title: { __type: "String_comparison_exp" };
|
|
30648
|
+
type: { __type: "String_comparison_exp" };
|
|
30649
|
+
uniqueRef: { __type: "String_comparison_exp" };
|
|
30650
|
+
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
30651
|
+
};
|
|
30652
|
+
action_delete_at_path_input: {
|
|
30653
|
+
inputJson: { __type: "[String!]" };
|
|
30654
|
+
outputJson: { __type: "[String!]" };
|
|
30655
|
+
refs: { __type: "[String!]" };
|
|
30656
|
+
};
|
|
30657
|
+
action_delete_elem_input: {
|
|
30658
|
+
inputJson: { __type: "Int" };
|
|
30659
|
+
outputJson: { __type: "Int" };
|
|
30660
|
+
refs: { __type: "Int" };
|
|
30661
|
+
};
|
|
30662
|
+
action_delete_key_input: {
|
|
30663
|
+
inputJson: { __type: "String" };
|
|
30664
|
+
outputJson: { __type: "String" };
|
|
30665
|
+
refs: { __type: "String" };
|
|
30666
|
+
};
|
|
30667
|
+
action_inc_input: { jobIndex: { __type: "Int" } };
|
|
30668
|
+
action_insert_input: {
|
|
30669
|
+
appId: { __type: "String" };
|
|
30670
|
+
automationId: { __type: "uuid" };
|
|
30671
|
+
changes: { __type: "change_arr_rel_insert_input" };
|
|
30672
|
+
connection: { __type: "connection_obj_rel_insert_input" };
|
|
30673
|
+
connectionId: { __type: "uuid" };
|
|
30674
|
+
createdAt: { __type: "timestamptz" };
|
|
30675
|
+
id: { __type: "uuid" };
|
|
30676
|
+
inputJson: { __type: "jsonb" };
|
|
30677
|
+
isCurrent: { __type: "Boolean" };
|
|
30678
|
+
jobId: { __type: "uuid" };
|
|
30679
|
+
jobIndex: { __type: "Int" };
|
|
30680
|
+
jobPageId: { __type: "uuid" };
|
|
30681
|
+
jobPlanId: { __type: "uuid" };
|
|
30682
|
+
objectId: { __type: "uuid" };
|
|
30683
|
+
opId: { __type: "uuid" };
|
|
30684
|
+
outputJson: { __type: "jsonb" };
|
|
30685
|
+
previousActions: { __type: "action_arr_rel_insert_input" };
|
|
30686
|
+
previousActions3: { __type: "action_arr_rel_insert_input" };
|
|
30687
|
+
previousActionsByType: { __type: "action_arr_rel_insert_input" };
|
|
30688
|
+
refs: { __type: "jsonb" };
|
|
30689
|
+
schemaId: { __type: "uuid" };
|
|
30690
|
+
source: { __type: "source_obj_rel_insert_input" };
|
|
30691
|
+
sourceId: { __type: "uuid" };
|
|
30692
|
+
status: { __type: "String" };
|
|
30693
|
+
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
30694
|
+
tenantId: { __type: "uuid" };
|
|
30695
|
+
title: { __type: "String" };
|
|
30696
|
+
type: { __type: "String" };
|
|
30697
|
+
uniqueRef: { __type: "String" };
|
|
30698
|
+
updatedAt: { __type: "timestamptz" };
|
|
30699
|
+
};
|
|
30700
|
+
action_max_fields: {
|
|
30701
|
+
__typename: { __type: "String!" };
|
|
30702
|
+
appId: { __type: "String" };
|
|
30703
|
+
automationId: { __type: "uuid" };
|
|
30704
|
+
connectionId: { __type: "uuid" };
|
|
30705
|
+
createdAt: { __type: "timestamptz" };
|
|
30706
|
+
id: { __type: "uuid" };
|
|
30707
|
+
jobId: { __type: "uuid" };
|
|
30708
|
+
jobIndex: { __type: "Int" };
|
|
30709
|
+
jobPageId: { __type: "uuid" };
|
|
30710
|
+
jobPlanId: { __type: "uuid" };
|
|
30711
|
+
objectId: { __type: "uuid" };
|
|
30712
|
+
opId: { __type: "uuid" };
|
|
30713
|
+
schemaId: { __type: "uuid" };
|
|
30714
|
+
sourceId: { __type: "uuid" };
|
|
30715
|
+
status: { __type: "String" };
|
|
30716
|
+
tenantId: { __type: "uuid" };
|
|
30717
|
+
title: { __type: "String" };
|
|
30718
|
+
type: { __type: "String" };
|
|
30719
|
+
uniqueRef: { __type: "String" };
|
|
30720
|
+
updatedAt: { __type: "timestamptz" };
|
|
30721
|
+
};
|
|
30722
|
+
action_max_order_by: {
|
|
30723
|
+
appId: { __type: "order_by" };
|
|
30724
|
+
automationId: { __type: "order_by" };
|
|
30725
|
+
connectionId: { __type: "order_by" };
|
|
30726
|
+
createdAt: { __type: "order_by" };
|
|
30727
|
+
id: { __type: "order_by" };
|
|
30728
|
+
jobId: { __type: "order_by" };
|
|
30729
|
+
jobIndex: { __type: "order_by" };
|
|
30730
|
+
jobPageId: { __type: "order_by" };
|
|
30731
|
+
jobPlanId: { __type: "order_by" };
|
|
30732
|
+
objectId: { __type: "order_by" };
|
|
30733
|
+
opId: { __type: "order_by" };
|
|
30734
|
+
schemaId: { __type: "order_by" };
|
|
30735
|
+
sourceId: { __type: "order_by" };
|
|
30736
|
+
status: { __type: "order_by" };
|
|
30737
|
+
tenantId: { __type: "order_by" };
|
|
30738
|
+
title: { __type: "order_by" };
|
|
30739
|
+
type: { __type: "order_by" };
|
|
30740
|
+
uniqueRef: { __type: "order_by" };
|
|
30741
|
+
updatedAt: { __type: "order_by" };
|
|
30742
|
+
};
|
|
30743
|
+
action_min_fields: {
|
|
30744
|
+
__typename: { __type: "String!" };
|
|
30745
|
+
appId: { __type: "String" };
|
|
30746
|
+
automationId: { __type: "uuid" };
|
|
30747
|
+
connectionId: { __type: "uuid" };
|
|
30748
|
+
createdAt: { __type: "timestamptz" };
|
|
30749
|
+
id: { __type: "uuid" };
|
|
30750
|
+
jobId: { __type: "uuid" };
|
|
30751
|
+
jobIndex: { __type: "Int" };
|
|
30752
|
+
jobPageId: { __type: "uuid" };
|
|
30753
|
+
jobPlanId: { __type: "uuid" };
|
|
30754
|
+
objectId: { __type: "uuid" };
|
|
30755
|
+
opId: { __type: "uuid" };
|
|
30756
|
+
schemaId: { __type: "uuid" };
|
|
30757
|
+
sourceId: { __type: "uuid" };
|
|
30758
|
+
status: { __type: "String" };
|
|
30759
|
+
tenantId: { __type: "uuid" };
|
|
30760
|
+
title: { __type: "String" };
|
|
30761
|
+
type: { __type: "String" };
|
|
30762
|
+
uniqueRef: { __type: "String" };
|
|
30763
|
+
updatedAt: { __type: "timestamptz" };
|
|
30764
|
+
};
|
|
30765
|
+
action_min_order_by: {
|
|
30766
|
+
appId: { __type: "order_by" };
|
|
30767
|
+
automationId: { __type: "order_by" };
|
|
30768
|
+
connectionId: { __type: "order_by" };
|
|
30769
|
+
createdAt: { __type: "order_by" };
|
|
30770
|
+
id: { __type: "order_by" };
|
|
30771
|
+
jobId: { __type: "order_by" };
|
|
30772
|
+
jobIndex: { __type: "order_by" };
|
|
30773
|
+
jobPageId: { __type: "order_by" };
|
|
30774
|
+
jobPlanId: { __type: "order_by" };
|
|
30775
|
+
objectId: { __type: "order_by" };
|
|
30776
|
+
opId: { __type: "order_by" };
|
|
30777
|
+
schemaId: { __type: "order_by" };
|
|
30778
|
+
sourceId: { __type: "order_by" };
|
|
30779
|
+
status: { __type: "order_by" };
|
|
30780
|
+
tenantId: { __type: "order_by" };
|
|
30781
|
+
title: { __type: "order_by" };
|
|
30782
|
+
type: { __type: "order_by" };
|
|
30783
|
+
uniqueRef: { __type: "order_by" };
|
|
30784
|
+
updatedAt: { __type: "order_by" };
|
|
30785
|
+
};
|
|
30786
|
+
action_mutation_response: {
|
|
30787
|
+
__typename: { __type: "String!" };
|
|
30788
|
+
affected_rows: { __type: "Int!" };
|
|
30789
|
+
returning: { __type: "[action!]!" };
|
|
30790
|
+
};
|
|
30791
|
+
action_on_conflict: {
|
|
30792
|
+
constraint: { __type: "action_constraint!" };
|
|
30793
|
+
update_columns: { __type: "[action_update_column!]!" };
|
|
30794
|
+
where: { __type: "action_bool_exp" };
|
|
30795
|
+
};
|
|
30796
|
+
action_order_by: {
|
|
30797
|
+
appId: { __type: "order_by" };
|
|
30798
|
+
automationId: { __type: "order_by" };
|
|
30799
|
+
changes_aggregate: { __type: "change_aggregate_order_by" };
|
|
30800
|
+
connection: { __type: "connection_order_by" };
|
|
30801
|
+
connectionId: { __type: "order_by" };
|
|
30802
|
+
createdAt: { __type: "order_by" };
|
|
30803
|
+
id: { __type: "order_by" };
|
|
30804
|
+
inputJson: { __type: "order_by" };
|
|
30805
|
+
isCurrent: { __type: "order_by" };
|
|
30806
|
+
jobId: { __type: "order_by" };
|
|
30807
|
+
jobIndex: { __type: "order_by" };
|
|
30808
|
+
jobPageId: { __type: "order_by" };
|
|
30809
|
+
jobPlanId: { __type: "order_by" };
|
|
30810
|
+
objectId: { __type: "order_by" };
|
|
30811
|
+
opId: { __type: "order_by" };
|
|
30812
|
+
outputJson: { __type: "order_by" };
|
|
30813
|
+
previousActions3_aggregate: { __type: "action_aggregate_order_by" };
|
|
30814
|
+
previousActionsByType_aggregate: { __type: "action_aggregate_order_by" };
|
|
30815
|
+
previousActions_aggregate: { __type: "action_aggregate_order_by" };
|
|
30816
|
+
refs: { __type: "order_by" };
|
|
30817
|
+
schemaId: { __type: "order_by" };
|
|
30818
|
+
source: { __type: "source_order_by" };
|
|
30819
|
+
sourceId: { __type: "order_by" };
|
|
30820
|
+
status: { __type: "order_by" };
|
|
30821
|
+
tenant: { __type: "tenant_order_by" };
|
|
30822
|
+
tenantId: { __type: "order_by" };
|
|
30823
|
+
title: { __type: "order_by" };
|
|
30824
|
+
type: { __type: "order_by" };
|
|
30825
|
+
uniqueRef: { __type: "order_by" };
|
|
30826
|
+
updatedAt: { __type: "order_by" };
|
|
30827
|
+
};
|
|
30828
|
+
action_pk_columns_input: { id: { __type: "uuid!" } };
|
|
30829
|
+
action_prepend_input: {
|
|
30830
|
+
inputJson: { __type: "jsonb" };
|
|
30831
|
+
outputJson: { __type: "jsonb" };
|
|
30832
|
+
refs: { __type: "jsonb" };
|
|
30833
|
+
};
|
|
30834
|
+
action_set_input: {
|
|
30835
|
+
appId: { __type: "String" };
|
|
30836
|
+
automationId: { __type: "uuid" };
|
|
30837
|
+
connectionId: { __type: "uuid" };
|
|
30838
|
+
createdAt: { __type: "timestamptz" };
|
|
30839
|
+
id: { __type: "uuid" };
|
|
30840
|
+
inputJson: { __type: "jsonb" };
|
|
30841
|
+
isCurrent: { __type: "Boolean" };
|
|
30842
|
+
jobId: { __type: "uuid" };
|
|
30843
|
+
jobIndex: { __type: "Int" };
|
|
30844
|
+
jobPageId: { __type: "uuid" };
|
|
30845
|
+
jobPlanId: { __type: "uuid" };
|
|
30846
|
+
objectId: { __type: "uuid" };
|
|
30847
|
+
opId: { __type: "uuid" };
|
|
30848
|
+
outputJson: { __type: "jsonb" };
|
|
30849
|
+
refs: { __type: "jsonb" };
|
|
30850
|
+
schemaId: { __type: "uuid" };
|
|
30851
|
+
sourceId: { __type: "uuid" };
|
|
30852
|
+
status: { __type: "String" };
|
|
30853
|
+
tenantId: { __type: "uuid" };
|
|
30854
|
+
title: { __type: "String" };
|
|
30855
|
+
type: { __type: "String" };
|
|
30856
|
+
uniqueRef: { __type: "String" };
|
|
30857
|
+
updatedAt: { __type: "timestamptz" };
|
|
30858
|
+
};
|
|
30859
|
+
action_stddev_fields: {
|
|
30860
|
+
__typename: { __type: "String!" };
|
|
30861
|
+
jobIndex: { __type: "Float" };
|
|
30862
|
+
};
|
|
30863
|
+
action_stddev_order_by: { jobIndex: { __type: "order_by" } };
|
|
30864
|
+
action_stddev_pop_fields: {
|
|
30865
|
+
__typename: { __type: "String!" };
|
|
30866
|
+
jobIndex: { __type: "Float" };
|
|
30867
|
+
};
|
|
30868
|
+
action_stddev_pop_order_by: { jobIndex: { __type: "order_by" } };
|
|
30869
|
+
action_stddev_samp_fields: {
|
|
30870
|
+
__typename: { __type: "String!" };
|
|
30871
|
+
jobIndex: { __type: "Float" };
|
|
30872
|
+
};
|
|
30873
|
+
action_stddev_samp_order_by: { jobIndex: { __type: "order_by" } };
|
|
30874
|
+
action_stream_cursor_input: {
|
|
30875
|
+
initial_value: { __type: "action_stream_cursor_value_input!" };
|
|
30876
|
+
ordering: { __type: "cursor_ordering" };
|
|
30877
|
+
};
|
|
30878
|
+
action_stream_cursor_value_input: {
|
|
30879
|
+
appId: { __type: "String" };
|
|
30880
|
+
automationId: { __type: "uuid" };
|
|
30881
|
+
connectionId: { __type: "uuid" };
|
|
30882
|
+
createdAt: { __type: "timestamptz" };
|
|
30883
|
+
id: { __type: "uuid" };
|
|
30884
|
+
inputJson: { __type: "jsonb" };
|
|
30885
|
+
isCurrent: { __type: "Boolean" };
|
|
30886
|
+
jobId: { __type: "uuid" };
|
|
30887
|
+
jobIndex: { __type: "Int" };
|
|
30888
|
+
jobPageId: { __type: "uuid" };
|
|
30889
|
+
jobPlanId: { __type: "uuid" };
|
|
30890
|
+
objectId: { __type: "uuid" };
|
|
30891
|
+
opId: { __type: "uuid" };
|
|
30892
|
+
outputJson: { __type: "jsonb" };
|
|
30893
|
+
refs: { __type: "jsonb" };
|
|
30894
|
+
schemaId: { __type: "uuid" };
|
|
30895
|
+
sourceId: { __type: "uuid" };
|
|
30896
|
+
status: { __type: "String" };
|
|
30897
|
+
tenantId: { __type: "uuid" };
|
|
30898
|
+
title: { __type: "String" };
|
|
30899
|
+
type: { __type: "String" };
|
|
30900
|
+
uniqueRef: { __type: "String" };
|
|
30901
|
+
updatedAt: { __type: "timestamptz" };
|
|
30902
|
+
};
|
|
30903
|
+
action_sum_fields: {
|
|
30904
|
+
__typename: { __type: "String!" };
|
|
30905
|
+
jobIndex: { __type: "Int" };
|
|
30906
|
+
};
|
|
30907
|
+
action_sum_order_by: { jobIndex: { __type: "order_by" } };
|
|
30908
|
+
action_updates: {
|
|
30909
|
+
_append: { __type: "action_append_input" };
|
|
30910
|
+
_delete_at_path: { __type: "action_delete_at_path_input" };
|
|
30911
|
+
_delete_elem: { __type: "action_delete_elem_input" };
|
|
30912
|
+
_delete_key: { __type: "action_delete_key_input" };
|
|
30913
|
+
_inc: { __type: "action_inc_input" };
|
|
30914
|
+
_prepend: { __type: "action_prepend_input" };
|
|
30915
|
+
_set: { __type: "action_set_input" };
|
|
30916
|
+
where: { __type: "action_bool_exp!" };
|
|
30917
|
+
};
|
|
30918
|
+
action_var_pop_fields: {
|
|
30919
|
+
__typename: { __type: "String!" };
|
|
30920
|
+
jobIndex: { __type: "Float" };
|
|
30921
|
+
};
|
|
30922
|
+
action_var_pop_order_by: { jobIndex: { __type: "order_by" } };
|
|
30923
|
+
action_var_samp_fields: {
|
|
30924
|
+
__typename: { __type: "String!" };
|
|
30925
|
+
jobIndex: { __type: "Float" };
|
|
30926
|
+
};
|
|
30927
|
+
action_var_samp_order_by: { jobIndex: { __type: "order_by" } };
|
|
30928
|
+
action_variance_fields: {
|
|
30929
|
+
__typename: { __type: "String!" };
|
|
30930
|
+
jobIndex: { __type: "Float" };
|
|
30931
|
+
};
|
|
30932
|
+
action_variance_order_by: { jobIndex: { __type: "order_by" } };
|
|
30520
30933
|
activeStatus: {
|
|
30521
30934
|
__typename: { __type: "String!" };
|
|
30522
30935
|
name: { __type: "String!" };
|
|
@@ -34507,26 +34920,6 @@ export declare const generatedSchema: {
|
|
|
34507
34920
|
};
|
|
34508
34921
|
createdAt: { __type: "timestamptz!" };
|
|
34509
34922
|
credentials: { __type: "jsonb"; __args: { path: "String" } };
|
|
34510
|
-
csvLines: {
|
|
34511
|
-
__type: "[csv_line!]!";
|
|
34512
|
-
__args: {
|
|
34513
|
-
distinct_on: "[csv_line_select_column!]";
|
|
34514
|
-
limit: "Int";
|
|
34515
|
-
offset: "Int";
|
|
34516
|
-
order_by: "[csv_line_order_by!]";
|
|
34517
|
-
where: "csv_line_bool_exp";
|
|
34518
|
-
};
|
|
34519
|
-
};
|
|
34520
|
-
csvLines_aggregate: {
|
|
34521
|
-
__type: "csv_line_aggregate!";
|
|
34522
|
-
__args: {
|
|
34523
|
-
distinct_on: "[csv_line_select_column!]";
|
|
34524
|
-
limit: "Int";
|
|
34525
|
-
offset: "Int";
|
|
34526
|
-
order_by: "[csv_line_order_by!]";
|
|
34527
|
-
where: "csv_line_bool_exp";
|
|
34528
|
-
};
|
|
34529
|
-
};
|
|
34530
34923
|
disabled: { __type: "Boolean" };
|
|
34531
34924
|
fetchNext: { __type: "timestamptz" };
|
|
34532
34925
|
fetchStatus: { __type: "syncStatus_enum!" };
|
|
@@ -34859,8 +35252,6 @@ export declare const generatedSchema: {
|
|
|
34859
35252
|
changes_aggregate: { __type: "change_aggregate_bool_exp" };
|
|
34860
35253
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
34861
35254
|
credentials: { __type: "jsonb_comparison_exp" };
|
|
34862
|
-
csvLines: { __type: "csv_line_bool_exp" };
|
|
34863
|
-
csvLines_aggregate: { __type: "csv_line_aggregate_bool_exp" };
|
|
34864
35255
|
disabled: { __type: "Boolean_comparison_exp" };
|
|
34865
35256
|
fetchNext: { __type: "timestamptz_comparison_exp" };
|
|
34866
35257
|
fetchStatus: { __type: "syncStatus_enum_comparison_exp" };
|
|
@@ -34930,7 +35321,6 @@ export declare const generatedSchema: {
|
|
|
34930
35321
|
changes: { __type: "change_arr_rel_insert_input" };
|
|
34931
35322
|
createdAt: { __type: "timestamptz" };
|
|
34932
35323
|
credentials: { __type: "jsonb" };
|
|
34933
|
-
csvLines: { __type: "csv_line_arr_rel_insert_input" };
|
|
34934
35324
|
disabled: { __type: "Boolean" };
|
|
34935
35325
|
fetchNext: { __type: "timestamptz" };
|
|
34936
35326
|
fetchStatus: { __type: "syncStatus_enum" };
|
|
@@ -35048,7 +35438,6 @@ export declare const generatedSchema: {
|
|
|
35048
35438
|
changes_aggregate: { __type: "change_aggregate_order_by" };
|
|
35049
35439
|
createdAt: { __type: "order_by" };
|
|
35050
35440
|
credentials: { __type: "order_by" };
|
|
35051
|
-
csvLines_aggregate: { __type: "csv_line_aggregate_order_by" };
|
|
35052
35441
|
disabled: { __type: "order_by" };
|
|
35053
35442
|
fetchNext: { __type: "order_by" };
|
|
35054
35443
|
fetchStatus: { __type: "order_by" };
|
|
@@ -35904,299 +36293,6 @@ export declare const generatedSchema: {
|
|
|
35904
36293
|
_set: { __type: "core_change_source_link_set_input" };
|
|
35905
36294
|
where: { __type: "core_change_source_link_bool_exp!" };
|
|
35906
36295
|
};
|
|
35907
|
-
csv_line: {
|
|
35908
|
-
__typename: { __type: "String!" };
|
|
35909
|
-
connection: { __type: "connection!" };
|
|
35910
|
-
connectionId: { __type: "uuid!" };
|
|
35911
|
-
createdAt: { __type: "timestamptz" };
|
|
35912
|
-
csv: { __type: "String!" };
|
|
35913
|
-
date: { __type: "timestamptz!" };
|
|
35914
|
-
file: { __type: "file_storage" };
|
|
35915
|
-
fileId: { __type: "uuid" };
|
|
35916
|
-
fileUniqueRef: { __type: "String" };
|
|
35917
|
-
headers: { __type: "String" };
|
|
35918
|
-
id: { __type: "uuid!" };
|
|
35919
|
-
index: { __type: "Int" };
|
|
35920
|
-
json: { __type: "jsonb"; __args: { path: "String" } };
|
|
35921
|
-
tenant: { __type: "tenant!" };
|
|
35922
|
-
tenantId: { __type: "uuid!" };
|
|
35923
|
-
type: { __type: "String!" };
|
|
35924
|
-
uniqueRef: { __type: "String!" };
|
|
35925
|
-
updatedAt: { __type: "timestamptz" };
|
|
35926
|
-
};
|
|
35927
|
-
csv_line_aggregate: {
|
|
35928
|
-
__typename: { __type: "String!" };
|
|
35929
|
-
aggregate: { __type: "csv_line_aggregate_fields" };
|
|
35930
|
-
nodes: { __type: "[csv_line!]!" };
|
|
35931
|
-
};
|
|
35932
|
-
csv_line_aggregate_bool_exp: {
|
|
35933
|
-
count: { __type: "csv_line_aggregate_bool_exp_count" };
|
|
35934
|
-
};
|
|
35935
|
-
csv_line_aggregate_bool_exp_count: {
|
|
35936
|
-
arguments: { __type: "[csv_line_select_column!]" };
|
|
35937
|
-
distinct: { __type: "Boolean" };
|
|
35938
|
-
filter: { __type: "csv_line_bool_exp" };
|
|
35939
|
-
predicate: { __type: "Int_comparison_exp!" };
|
|
35940
|
-
};
|
|
35941
|
-
csv_line_aggregate_fields: {
|
|
35942
|
-
__typename: { __type: "String!" };
|
|
35943
|
-
avg: { __type: "csv_line_avg_fields" };
|
|
35944
|
-
count: {
|
|
35945
|
-
__type: "Int!";
|
|
35946
|
-
__args: { columns: "[csv_line_select_column!]"; distinct: "Boolean" };
|
|
35947
|
-
};
|
|
35948
|
-
max: { __type: "csv_line_max_fields" };
|
|
35949
|
-
min: { __type: "csv_line_min_fields" };
|
|
35950
|
-
stddev: { __type: "csv_line_stddev_fields" };
|
|
35951
|
-
stddev_pop: { __type: "csv_line_stddev_pop_fields" };
|
|
35952
|
-
stddev_samp: { __type: "csv_line_stddev_samp_fields" };
|
|
35953
|
-
sum: { __type: "csv_line_sum_fields" };
|
|
35954
|
-
var_pop: { __type: "csv_line_var_pop_fields" };
|
|
35955
|
-
var_samp: { __type: "csv_line_var_samp_fields" };
|
|
35956
|
-
variance: { __type: "csv_line_variance_fields" };
|
|
35957
|
-
};
|
|
35958
|
-
csv_line_aggregate_order_by: {
|
|
35959
|
-
avg: { __type: "csv_line_avg_order_by" };
|
|
35960
|
-
count: { __type: "order_by" };
|
|
35961
|
-
max: { __type: "csv_line_max_order_by" };
|
|
35962
|
-
min: { __type: "csv_line_min_order_by" };
|
|
35963
|
-
stddev: { __type: "csv_line_stddev_order_by" };
|
|
35964
|
-
stddev_pop: { __type: "csv_line_stddev_pop_order_by" };
|
|
35965
|
-
stddev_samp: { __type: "csv_line_stddev_samp_order_by" };
|
|
35966
|
-
sum: { __type: "csv_line_sum_order_by" };
|
|
35967
|
-
var_pop: { __type: "csv_line_var_pop_order_by" };
|
|
35968
|
-
var_samp: { __type: "csv_line_var_samp_order_by" };
|
|
35969
|
-
variance: { __type: "csv_line_variance_order_by" };
|
|
35970
|
-
};
|
|
35971
|
-
csv_line_append_input: { json: { __type: "jsonb" } };
|
|
35972
|
-
csv_line_arr_rel_insert_input: {
|
|
35973
|
-
data: { __type: "[csv_line_insert_input!]!" };
|
|
35974
|
-
on_conflict: { __type: "csv_line_on_conflict" };
|
|
35975
|
-
};
|
|
35976
|
-
csv_line_avg_fields: {
|
|
35977
|
-
__typename: { __type: "String!" };
|
|
35978
|
-
index: { __type: "Float" };
|
|
35979
|
-
};
|
|
35980
|
-
csv_line_avg_order_by: { index: { __type: "order_by" } };
|
|
35981
|
-
csv_line_bool_exp: {
|
|
35982
|
-
_and: { __type: "[csv_line_bool_exp!]" };
|
|
35983
|
-
_not: { __type: "csv_line_bool_exp" };
|
|
35984
|
-
_or: { __type: "[csv_line_bool_exp!]" };
|
|
35985
|
-
connection: { __type: "connection_bool_exp" };
|
|
35986
|
-
connectionId: { __type: "uuid_comparison_exp" };
|
|
35987
|
-
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
35988
|
-
csv: { __type: "String_comparison_exp" };
|
|
35989
|
-
date: { __type: "timestamptz_comparison_exp" };
|
|
35990
|
-
file: { __type: "file_storage_bool_exp" };
|
|
35991
|
-
fileId: { __type: "uuid_comparison_exp" };
|
|
35992
|
-
fileUniqueRef: { __type: "String_comparison_exp" };
|
|
35993
|
-
headers: { __type: "String_comparison_exp" };
|
|
35994
|
-
id: { __type: "uuid_comparison_exp" };
|
|
35995
|
-
index: { __type: "Int_comparison_exp" };
|
|
35996
|
-
json: { __type: "jsonb_comparison_exp" };
|
|
35997
|
-
tenant: { __type: "tenant_bool_exp" };
|
|
35998
|
-
tenantId: { __type: "uuid_comparison_exp" };
|
|
35999
|
-
type: { __type: "String_comparison_exp" };
|
|
36000
|
-
uniqueRef: { __type: "String_comparison_exp" };
|
|
36001
|
-
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
36002
|
-
};
|
|
36003
|
-
csv_line_delete_at_path_input: { json: { __type: "[String!]" } };
|
|
36004
|
-
csv_line_delete_elem_input: { json: { __type: "Int" } };
|
|
36005
|
-
csv_line_delete_key_input: { json: { __type: "String" } };
|
|
36006
|
-
csv_line_inc_input: { index: { __type: "Int" } };
|
|
36007
|
-
csv_line_insert_input: {
|
|
36008
|
-
connection: { __type: "connection_obj_rel_insert_input" };
|
|
36009
|
-
connectionId: { __type: "uuid" };
|
|
36010
|
-
createdAt: { __type: "timestamptz" };
|
|
36011
|
-
csv: { __type: "String" };
|
|
36012
|
-
date: { __type: "timestamptz" };
|
|
36013
|
-
file: { __type: "file_storage_obj_rel_insert_input" };
|
|
36014
|
-
fileId: { __type: "uuid" };
|
|
36015
|
-
fileUniqueRef: { __type: "String" };
|
|
36016
|
-
headers: { __type: "String" };
|
|
36017
|
-
id: { __type: "uuid" };
|
|
36018
|
-
index: { __type: "Int" };
|
|
36019
|
-
json: { __type: "jsonb" };
|
|
36020
|
-
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
36021
|
-
tenantId: { __type: "uuid" };
|
|
36022
|
-
type: { __type: "String" };
|
|
36023
|
-
uniqueRef: { __type: "String" };
|
|
36024
|
-
updatedAt: { __type: "timestamptz" };
|
|
36025
|
-
};
|
|
36026
|
-
csv_line_max_fields: {
|
|
36027
|
-
__typename: { __type: "String!" };
|
|
36028
|
-
connectionId: { __type: "uuid" };
|
|
36029
|
-
createdAt: { __type: "timestamptz" };
|
|
36030
|
-
csv: { __type: "String" };
|
|
36031
|
-
date: { __type: "timestamptz" };
|
|
36032
|
-
fileId: { __type: "uuid" };
|
|
36033
|
-
fileUniqueRef: { __type: "String" };
|
|
36034
|
-
headers: { __type: "String" };
|
|
36035
|
-
id: { __type: "uuid" };
|
|
36036
|
-
index: { __type: "Int" };
|
|
36037
|
-
tenantId: { __type: "uuid" };
|
|
36038
|
-
type: { __type: "String" };
|
|
36039
|
-
uniqueRef: { __type: "String" };
|
|
36040
|
-
updatedAt: { __type: "timestamptz" };
|
|
36041
|
-
};
|
|
36042
|
-
csv_line_max_order_by: {
|
|
36043
|
-
connectionId: { __type: "order_by" };
|
|
36044
|
-
createdAt: { __type: "order_by" };
|
|
36045
|
-
csv: { __type: "order_by" };
|
|
36046
|
-
date: { __type: "order_by" };
|
|
36047
|
-
fileId: { __type: "order_by" };
|
|
36048
|
-
fileUniqueRef: { __type: "order_by" };
|
|
36049
|
-
headers: { __type: "order_by" };
|
|
36050
|
-
id: { __type: "order_by" };
|
|
36051
|
-
index: { __type: "order_by" };
|
|
36052
|
-
tenantId: { __type: "order_by" };
|
|
36053
|
-
type: { __type: "order_by" };
|
|
36054
|
-
uniqueRef: { __type: "order_by" };
|
|
36055
|
-
updatedAt: { __type: "order_by" };
|
|
36056
|
-
};
|
|
36057
|
-
csv_line_min_fields: {
|
|
36058
|
-
__typename: { __type: "String!" };
|
|
36059
|
-
connectionId: { __type: "uuid" };
|
|
36060
|
-
createdAt: { __type: "timestamptz" };
|
|
36061
|
-
csv: { __type: "String" };
|
|
36062
|
-
date: { __type: "timestamptz" };
|
|
36063
|
-
fileId: { __type: "uuid" };
|
|
36064
|
-
fileUniqueRef: { __type: "String" };
|
|
36065
|
-
headers: { __type: "String" };
|
|
36066
|
-
id: { __type: "uuid" };
|
|
36067
|
-
index: { __type: "Int" };
|
|
36068
|
-
tenantId: { __type: "uuid" };
|
|
36069
|
-
type: { __type: "String" };
|
|
36070
|
-
uniqueRef: { __type: "String" };
|
|
36071
|
-
updatedAt: { __type: "timestamptz" };
|
|
36072
|
-
};
|
|
36073
|
-
csv_line_min_order_by: {
|
|
36074
|
-
connectionId: { __type: "order_by" };
|
|
36075
|
-
createdAt: { __type: "order_by" };
|
|
36076
|
-
csv: { __type: "order_by" };
|
|
36077
|
-
date: { __type: "order_by" };
|
|
36078
|
-
fileId: { __type: "order_by" };
|
|
36079
|
-
fileUniqueRef: { __type: "order_by" };
|
|
36080
|
-
headers: { __type: "order_by" };
|
|
36081
|
-
id: { __type: "order_by" };
|
|
36082
|
-
index: { __type: "order_by" };
|
|
36083
|
-
tenantId: { __type: "order_by" };
|
|
36084
|
-
type: { __type: "order_by" };
|
|
36085
|
-
uniqueRef: { __type: "order_by" };
|
|
36086
|
-
updatedAt: { __type: "order_by" };
|
|
36087
|
-
};
|
|
36088
|
-
csv_line_mutation_response: {
|
|
36089
|
-
__typename: { __type: "String!" };
|
|
36090
|
-
affected_rows: { __type: "Int!" };
|
|
36091
|
-
returning: { __type: "[csv_line!]!" };
|
|
36092
|
-
};
|
|
36093
|
-
csv_line_on_conflict: {
|
|
36094
|
-
constraint: { __type: "csv_line_constraint!" };
|
|
36095
|
-
update_columns: { __type: "[csv_line_update_column!]!" };
|
|
36096
|
-
where: { __type: "csv_line_bool_exp" };
|
|
36097
|
-
};
|
|
36098
|
-
csv_line_order_by: {
|
|
36099
|
-
connection: { __type: "connection_order_by" };
|
|
36100
|
-
connectionId: { __type: "order_by" };
|
|
36101
|
-
createdAt: { __type: "order_by" };
|
|
36102
|
-
csv: { __type: "order_by" };
|
|
36103
|
-
date: { __type: "order_by" };
|
|
36104
|
-
file: { __type: "file_storage_order_by" };
|
|
36105
|
-
fileId: { __type: "order_by" };
|
|
36106
|
-
fileUniqueRef: { __type: "order_by" };
|
|
36107
|
-
headers: { __type: "order_by" };
|
|
36108
|
-
id: { __type: "order_by" };
|
|
36109
|
-
index: { __type: "order_by" };
|
|
36110
|
-
json: { __type: "order_by" };
|
|
36111
|
-
tenant: { __type: "tenant_order_by" };
|
|
36112
|
-
tenantId: { __type: "order_by" };
|
|
36113
|
-
type: { __type: "order_by" };
|
|
36114
|
-
uniqueRef: { __type: "order_by" };
|
|
36115
|
-
updatedAt: { __type: "order_by" };
|
|
36116
|
-
};
|
|
36117
|
-
csv_line_pk_columns_input: { id: { __type: "uuid!" } };
|
|
36118
|
-
csv_line_prepend_input: { json: { __type: "jsonb" } };
|
|
36119
|
-
csv_line_set_input: {
|
|
36120
|
-
connectionId: { __type: "uuid" };
|
|
36121
|
-
createdAt: { __type: "timestamptz" };
|
|
36122
|
-
csv: { __type: "String" };
|
|
36123
|
-
date: { __type: "timestamptz" };
|
|
36124
|
-
fileId: { __type: "uuid" };
|
|
36125
|
-
fileUniqueRef: { __type: "String" };
|
|
36126
|
-
headers: { __type: "String" };
|
|
36127
|
-
id: { __type: "uuid" };
|
|
36128
|
-
index: { __type: "Int" };
|
|
36129
|
-
json: { __type: "jsonb" };
|
|
36130
|
-
tenantId: { __type: "uuid" };
|
|
36131
|
-
type: { __type: "String" };
|
|
36132
|
-
uniqueRef: { __type: "String" };
|
|
36133
|
-
updatedAt: { __type: "timestamptz" };
|
|
36134
|
-
};
|
|
36135
|
-
csv_line_stddev_fields: {
|
|
36136
|
-
__typename: { __type: "String!" };
|
|
36137
|
-
index: { __type: "Float" };
|
|
36138
|
-
};
|
|
36139
|
-
csv_line_stddev_order_by: { index: { __type: "order_by" } };
|
|
36140
|
-
csv_line_stddev_pop_fields: {
|
|
36141
|
-
__typename: { __type: "String!" };
|
|
36142
|
-
index: { __type: "Float" };
|
|
36143
|
-
};
|
|
36144
|
-
csv_line_stddev_pop_order_by: { index: { __type: "order_by" } };
|
|
36145
|
-
csv_line_stddev_samp_fields: {
|
|
36146
|
-
__typename: { __type: "String!" };
|
|
36147
|
-
index: { __type: "Float" };
|
|
36148
|
-
};
|
|
36149
|
-
csv_line_stddev_samp_order_by: { index: { __type: "order_by" } };
|
|
36150
|
-
csv_line_stream_cursor_input: {
|
|
36151
|
-
initial_value: { __type: "csv_line_stream_cursor_value_input!" };
|
|
36152
|
-
ordering: { __type: "cursor_ordering" };
|
|
36153
|
-
};
|
|
36154
|
-
csv_line_stream_cursor_value_input: {
|
|
36155
|
-
connectionId: { __type: "uuid" };
|
|
36156
|
-
createdAt: { __type: "timestamptz" };
|
|
36157
|
-
csv: { __type: "String" };
|
|
36158
|
-
date: { __type: "timestamptz" };
|
|
36159
|
-
fileId: { __type: "uuid" };
|
|
36160
|
-
fileUniqueRef: { __type: "String" };
|
|
36161
|
-
headers: { __type: "String" };
|
|
36162
|
-
id: { __type: "uuid" };
|
|
36163
|
-
index: { __type: "Int" };
|
|
36164
|
-
json: { __type: "jsonb" };
|
|
36165
|
-
tenantId: { __type: "uuid" };
|
|
36166
|
-
type: { __type: "String" };
|
|
36167
|
-
uniqueRef: { __type: "String" };
|
|
36168
|
-
updatedAt: { __type: "timestamptz" };
|
|
36169
|
-
};
|
|
36170
|
-
csv_line_sum_fields: {
|
|
36171
|
-
__typename: { __type: "String!" };
|
|
36172
|
-
index: { __type: "Int" };
|
|
36173
|
-
};
|
|
36174
|
-
csv_line_sum_order_by: { index: { __type: "order_by" } };
|
|
36175
|
-
csv_line_updates: {
|
|
36176
|
-
_append: { __type: "csv_line_append_input" };
|
|
36177
|
-
_delete_at_path: { __type: "csv_line_delete_at_path_input" };
|
|
36178
|
-
_delete_elem: { __type: "csv_line_delete_elem_input" };
|
|
36179
|
-
_delete_key: { __type: "csv_line_delete_key_input" };
|
|
36180
|
-
_inc: { __type: "csv_line_inc_input" };
|
|
36181
|
-
_prepend: { __type: "csv_line_prepend_input" };
|
|
36182
|
-
_set: { __type: "csv_line_set_input" };
|
|
36183
|
-
where: { __type: "csv_line_bool_exp!" };
|
|
36184
|
-
};
|
|
36185
|
-
csv_line_var_pop_fields: {
|
|
36186
|
-
__typename: { __type: "String!" };
|
|
36187
|
-
index: { __type: "Float" };
|
|
36188
|
-
};
|
|
36189
|
-
csv_line_var_pop_order_by: { index: { __type: "order_by" } };
|
|
36190
|
-
csv_line_var_samp_fields: {
|
|
36191
|
-
__typename: { __type: "String!" };
|
|
36192
|
-
index: { __type: "Float" };
|
|
36193
|
-
};
|
|
36194
|
-
csv_line_var_samp_order_by: { index: { __type: "order_by" } };
|
|
36195
|
-
csv_line_variance_fields: {
|
|
36196
|
-
__typename: { __type: "String!" };
|
|
36197
|
-
index: { __type: "Float" };
|
|
36198
|
-
};
|
|
36199
|
-
csv_line_variance_order_by: { index: { __type: "order_by" } };
|
|
36200
36296
|
currency: { __typename: { __type: "String!" }; name: { __type: "String!" } };
|
|
36201
36297
|
currency_aggregate: {
|
|
36202
36298
|
__typename: { __type: "String!" };
|
|
@@ -37689,17 +37785,6 @@ export declare const generatedSchema: {
|
|
|
37689
37785
|
_set: { __type: "file_storage_set_input" };
|
|
37690
37786
|
where: { __type: "file_storage_bool_exp!" };
|
|
37691
37787
|
};
|
|
37692
|
-
float8_comparison_exp: {
|
|
37693
|
-
_eq: { __type: "float8" };
|
|
37694
|
-
_gt: { __type: "float8" };
|
|
37695
|
-
_gte: { __type: "float8" };
|
|
37696
|
-
_in: { __type: "[float8!]" };
|
|
37697
|
-
_is_null: { __type: "Boolean" };
|
|
37698
|
-
_lt: { __type: "float8" };
|
|
37699
|
-
_lte: { __type: "float8" };
|
|
37700
|
-
_neq: { __type: "float8" };
|
|
37701
|
-
_nin: { __type: "[float8!]" };
|
|
37702
|
-
};
|
|
37703
37788
|
issueConnectionsNeedVersionUpgradeReturnType: {
|
|
37704
37789
|
__typename: { __type: "String!" };
|
|
37705
37790
|
appIcon: { __type: "String!" };
|
|
@@ -41319,211 +41404,6 @@ export declare const generatedSchema: {
|
|
|
41319
41404
|
centExpenseReserve: { __type: "order_by" };
|
|
41320
41405
|
centTaxStartingBalance: { __type: "order_by" };
|
|
41321
41406
|
};
|
|
41322
|
-
metric: {
|
|
41323
|
-
__typename: { __type: "String!" };
|
|
41324
|
-
connection: { __type: "connection!" };
|
|
41325
|
-
connectionId: { __type: "uuid!" };
|
|
41326
|
-
createdAt: { __type: "timestamptz!" };
|
|
41327
|
-
date: { __type: "timestamptz!" };
|
|
41328
|
-
id: { __type: "uuid!" };
|
|
41329
|
-
listingConnection: { __type: "listing_connection" };
|
|
41330
|
-
listingConnectionId: { __type: "uuid" };
|
|
41331
|
-
metadata: { __type: "jsonb!"; __args: { path: "String" } };
|
|
41332
|
-
tenant: { __type: "tenant!" };
|
|
41333
|
-
tenantId: { __type: "uuid!" };
|
|
41334
|
-
type: { __type: "String!" };
|
|
41335
|
-
uniqueRef: { __type: "String" };
|
|
41336
|
-
updatedAt: { __type: "timestamptz!" };
|
|
41337
|
-
value: { __type: "float8" };
|
|
41338
|
-
};
|
|
41339
|
-
metric_aggregate: {
|
|
41340
|
-
__typename: { __type: "String!" };
|
|
41341
|
-
aggregate: { __type: "metric_aggregate_fields" };
|
|
41342
|
-
nodes: { __type: "[metric!]!" };
|
|
41343
|
-
};
|
|
41344
|
-
metric_aggregate_fields: {
|
|
41345
|
-
__typename: { __type: "String!" };
|
|
41346
|
-
avg: { __type: "metric_avg_fields" };
|
|
41347
|
-
count: {
|
|
41348
|
-
__type: "Int!";
|
|
41349
|
-
__args: { columns: "[metric_select_column!]"; distinct: "Boolean" };
|
|
41350
|
-
};
|
|
41351
|
-
max: { __type: "metric_max_fields" };
|
|
41352
|
-
min: { __type: "metric_min_fields" };
|
|
41353
|
-
stddev: { __type: "metric_stddev_fields" };
|
|
41354
|
-
stddev_pop: { __type: "metric_stddev_pop_fields" };
|
|
41355
|
-
stddev_samp: { __type: "metric_stddev_samp_fields" };
|
|
41356
|
-
sum: { __type: "metric_sum_fields" };
|
|
41357
|
-
var_pop: { __type: "metric_var_pop_fields" };
|
|
41358
|
-
var_samp: { __type: "metric_var_samp_fields" };
|
|
41359
|
-
variance: { __type: "metric_variance_fields" };
|
|
41360
|
-
};
|
|
41361
|
-
metric_append_input: { metadata: { __type: "jsonb" } };
|
|
41362
|
-
metric_avg_fields: {
|
|
41363
|
-
__typename: { __type: "String!" };
|
|
41364
|
-
value: { __type: "Float" };
|
|
41365
|
-
};
|
|
41366
|
-
metric_bool_exp: {
|
|
41367
|
-
_and: { __type: "[metric_bool_exp!]" };
|
|
41368
|
-
_not: { __type: "metric_bool_exp" };
|
|
41369
|
-
_or: { __type: "[metric_bool_exp!]" };
|
|
41370
|
-
connection: { __type: "connection_bool_exp" };
|
|
41371
|
-
connectionId: { __type: "uuid_comparison_exp" };
|
|
41372
|
-
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
41373
|
-
date: { __type: "timestamptz_comparison_exp" };
|
|
41374
|
-
id: { __type: "uuid_comparison_exp" };
|
|
41375
|
-
listingConnection: { __type: "listing_connection_bool_exp" };
|
|
41376
|
-
listingConnectionId: { __type: "uuid_comparison_exp" };
|
|
41377
|
-
metadata: { __type: "jsonb_comparison_exp" };
|
|
41378
|
-
tenant: { __type: "tenant_bool_exp" };
|
|
41379
|
-
tenantId: { __type: "uuid_comparison_exp" };
|
|
41380
|
-
type: { __type: "String_comparison_exp" };
|
|
41381
|
-
uniqueRef: { __type: "String_comparison_exp" };
|
|
41382
|
-
updatedAt: { __type: "timestamptz_comparison_exp" };
|
|
41383
|
-
value: { __type: "float8_comparison_exp" };
|
|
41384
|
-
};
|
|
41385
|
-
metric_delete_at_path_input: { metadata: { __type: "[String!]" } };
|
|
41386
|
-
metric_delete_elem_input: { metadata: { __type: "Int" } };
|
|
41387
|
-
metric_delete_key_input: { metadata: { __type: "String" } };
|
|
41388
|
-
metric_inc_input: { value: { __type: "float8" } };
|
|
41389
|
-
metric_insert_input: {
|
|
41390
|
-
connection: { __type: "connection_obj_rel_insert_input" };
|
|
41391
|
-
connectionId: { __type: "uuid" };
|
|
41392
|
-
createdAt: { __type: "timestamptz" };
|
|
41393
|
-
date: { __type: "timestamptz" };
|
|
41394
|
-
id: { __type: "uuid" };
|
|
41395
|
-
listingConnection: { __type: "listing_connection_obj_rel_insert_input" };
|
|
41396
|
-
listingConnectionId: { __type: "uuid" };
|
|
41397
|
-
metadata: { __type: "jsonb" };
|
|
41398
|
-
tenant: { __type: "tenant_obj_rel_insert_input" };
|
|
41399
|
-
tenantId: { __type: "uuid" };
|
|
41400
|
-
type: { __type: "String" };
|
|
41401
|
-
uniqueRef: { __type: "String" };
|
|
41402
|
-
updatedAt: { __type: "timestamptz" };
|
|
41403
|
-
value: { __type: "float8" };
|
|
41404
|
-
};
|
|
41405
|
-
metric_max_fields: {
|
|
41406
|
-
__typename: { __type: "String!" };
|
|
41407
|
-
connectionId: { __type: "uuid" };
|
|
41408
|
-
createdAt: { __type: "timestamptz" };
|
|
41409
|
-
date: { __type: "timestamptz" };
|
|
41410
|
-
id: { __type: "uuid" };
|
|
41411
|
-
listingConnectionId: { __type: "uuid" };
|
|
41412
|
-
tenantId: { __type: "uuid" };
|
|
41413
|
-
type: { __type: "String" };
|
|
41414
|
-
uniqueRef: { __type: "String" };
|
|
41415
|
-
updatedAt: { __type: "timestamptz" };
|
|
41416
|
-
value: { __type: "float8" };
|
|
41417
|
-
};
|
|
41418
|
-
metric_min_fields: {
|
|
41419
|
-
__typename: { __type: "String!" };
|
|
41420
|
-
connectionId: { __type: "uuid" };
|
|
41421
|
-
createdAt: { __type: "timestamptz" };
|
|
41422
|
-
date: { __type: "timestamptz" };
|
|
41423
|
-
id: { __type: "uuid" };
|
|
41424
|
-
listingConnectionId: { __type: "uuid" };
|
|
41425
|
-
tenantId: { __type: "uuid" };
|
|
41426
|
-
type: { __type: "String" };
|
|
41427
|
-
uniqueRef: { __type: "String" };
|
|
41428
|
-
updatedAt: { __type: "timestamptz" };
|
|
41429
|
-
value: { __type: "float8" };
|
|
41430
|
-
};
|
|
41431
|
-
metric_mutation_response: {
|
|
41432
|
-
__typename: { __type: "String!" };
|
|
41433
|
-
affected_rows: { __type: "Int!" };
|
|
41434
|
-
returning: { __type: "[metric!]!" };
|
|
41435
|
-
};
|
|
41436
|
-
metric_on_conflict: {
|
|
41437
|
-
constraint: { __type: "metric_constraint!" };
|
|
41438
|
-
update_columns: { __type: "[metric_update_column!]!" };
|
|
41439
|
-
where: { __type: "metric_bool_exp" };
|
|
41440
|
-
};
|
|
41441
|
-
metric_order_by: {
|
|
41442
|
-
connection: { __type: "connection_order_by" };
|
|
41443
|
-
connectionId: { __type: "order_by" };
|
|
41444
|
-
createdAt: { __type: "order_by" };
|
|
41445
|
-
date: { __type: "order_by" };
|
|
41446
|
-
id: { __type: "order_by" };
|
|
41447
|
-
listingConnection: { __type: "listing_connection_order_by" };
|
|
41448
|
-
listingConnectionId: { __type: "order_by" };
|
|
41449
|
-
metadata: { __type: "order_by" };
|
|
41450
|
-
tenant: { __type: "tenant_order_by" };
|
|
41451
|
-
tenantId: { __type: "order_by" };
|
|
41452
|
-
type: { __type: "order_by" };
|
|
41453
|
-
uniqueRef: { __type: "order_by" };
|
|
41454
|
-
updatedAt: { __type: "order_by" };
|
|
41455
|
-
value: { __type: "order_by" };
|
|
41456
|
-
};
|
|
41457
|
-
metric_pk_columns_input: { id: { __type: "uuid!" } };
|
|
41458
|
-
metric_prepend_input: { metadata: { __type: "jsonb" } };
|
|
41459
|
-
metric_set_input: {
|
|
41460
|
-
connectionId: { __type: "uuid" };
|
|
41461
|
-
createdAt: { __type: "timestamptz" };
|
|
41462
|
-
date: { __type: "timestamptz" };
|
|
41463
|
-
id: { __type: "uuid" };
|
|
41464
|
-
listingConnectionId: { __type: "uuid" };
|
|
41465
|
-
metadata: { __type: "jsonb" };
|
|
41466
|
-
tenantId: { __type: "uuid" };
|
|
41467
|
-
type: { __type: "String" };
|
|
41468
|
-
uniqueRef: { __type: "String" };
|
|
41469
|
-
updatedAt: { __type: "timestamptz" };
|
|
41470
|
-
value: { __type: "float8" };
|
|
41471
|
-
};
|
|
41472
|
-
metric_stddev_fields: {
|
|
41473
|
-
__typename: { __type: "String!" };
|
|
41474
|
-
value: { __type: "Float" };
|
|
41475
|
-
};
|
|
41476
|
-
metric_stddev_pop_fields: {
|
|
41477
|
-
__typename: { __type: "String!" };
|
|
41478
|
-
value: { __type: "Float" };
|
|
41479
|
-
};
|
|
41480
|
-
metric_stddev_samp_fields: {
|
|
41481
|
-
__typename: { __type: "String!" };
|
|
41482
|
-
value: { __type: "Float" };
|
|
41483
|
-
};
|
|
41484
|
-
metric_stream_cursor_input: {
|
|
41485
|
-
initial_value: { __type: "metric_stream_cursor_value_input!" };
|
|
41486
|
-
ordering: { __type: "cursor_ordering" };
|
|
41487
|
-
};
|
|
41488
|
-
metric_stream_cursor_value_input: {
|
|
41489
|
-
connectionId: { __type: "uuid" };
|
|
41490
|
-
createdAt: { __type: "timestamptz" };
|
|
41491
|
-
date: { __type: "timestamptz" };
|
|
41492
|
-
id: { __type: "uuid" };
|
|
41493
|
-
listingConnectionId: { __type: "uuid" };
|
|
41494
|
-
metadata: { __type: "jsonb" };
|
|
41495
|
-
tenantId: { __type: "uuid" };
|
|
41496
|
-
type: { __type: "String" };
|
|
41497
|
-
uniqueRef: { __type: "String" };
|
|
41498
|
-
updatedAt: { __type: "timestamptz" };
|
|
41499
|
-
value: { __type: "float8" };
|
|
41500
|
-
};
|
|
41501
|
-
metric_sum_fields: {
|
|
41502
|
-
__typename: { __type: "String!" };
|
|
41503
|
-
value: { __type: "float8" };
|
|
41504
|
-
};
|
|
41505
|
-
metric_updates: {
|
|
41506
|
-
_append: { __type: "metric_append_input" };
|
|
41507
|
-
_delete_at_path: { __type: "metric_delete_at_path_input" };
|
|
41508
|
-
_delete_elem: { __type: "metric_delete_elem_input" };
|
|
41509
|
-
_delete_key: { __type: "metric_delete_key_input" };
|
|
41510
|
-
_inc: { __type: "metric_inc_input" };
|
|
41511
|
-
_prepend: { __type: "metric_prepend_input" };
|
|
41512
|
-
_set: { __type: "metric_set_input" };
|
|
41513
|
-
where: { __type: "metric_bool_exp!" };
|
|
41514
|
-
};
|
|
41515
|
-
metric_var_pop_fields: {
|
|
41516
|
-
__typename: { __type: "String!" };
|
|
41517
|
-
value: { __type: "Float" };
|
|
41518
|
-
};
|
|
41519
|
-
metric_var_samp_fields: {
|
|
41520
|
-
__typename: { __type: "String!" };
|
|
41521
|
-
value: { __type: "Float" };
|
|
41522
|
-
};
|
|
41523
|
-
metric_variance_fields: {
|
|
41524
|
-
__typename: { __type: "String!" };
|
|
41525
|
-
value: { __type: "Float" };
|
|
41526
|
-
};
|
|
41527
41407
|
metricsActiveListingCreatedReturnType: {
|
|
41528
41408
|
__typename: { __type: "String!" };
|
|
41529
41409
|
created: { __type: "bigint" };
|
|
@@ -42252,6 +42132,11 @@ export declare const generatedSchema: {
|
|
|
42252
42132
|
__type: "account_mutation_response";
|
|
42253
42133
|
__args: { where: "account_bool_exp!" };
|
|
42254
42134
|
};
|
|
42135
|
+
deleteAction: { __type: "action"; __args: { id: "uuid!" } };
|
|
42136
|
+
deleteActions: {
|
|
42137
|
+
__type: "action_mutation_response";
|
|
42138
|
+
__args: { where: "action_bool_exp!" };
|
|
42139
|
+
};
|
|
42255
42140
|
deleteActiveStatus: { __type: "activeStatus"; __args: { name: "String!" } };
|
|
42256
42141
|
deleteActiveStatuses: {
|
|
42257
42142
|
__type: "activeStatus_mutation_response";
|
|
@@ -42381,11 +42266,6 @@ export declare const generatedSchema: {
|
|
|
42381
42266
|
__type: "contact_mutation_response";
|
|
42382
42267
|
__args: { where: "contact_bool_exp!" };
|
|
42383
42268
|
};
|
|
42384
|
-
deleteCsvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
|
|
42385
|
-
deleteCsvLines: {
|
|
42386
|
-
__type: "csv_line_mutation_response";
|
|
42387
|
-
__args: { where: "csv_line_bool_exp!" };
|
|
42388
|
-
};
|
|
42389
42269
|
deleteEmailTemplate: { __type: "emailTemplate"; __args: { id: "uuid!" } };
|
|
42390
42270
|
deleteEmailTemplateType: {
|
|
42391
42271
|
__type: "emailTemplateType";
|
|
@@ -42560,11 +42440,6 @@ export declare const generatedSchema: {
|
|
|
42560
42440
|
__type: "listing_mutation_response";
|
|
42561
42441
|
__args: { where: "listing_bool_exp!" };
|
|
42562
42442
|
};
|
|
42563
|
-
deleteMetric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
42564
|
-
deleteMetrics: {
|
|
42565
|
-
__type: "metric_mutation_response";
|
|
42566
|
-
__args: { where: "metric_bool_exp!" };
|
|
42567
|
-
};
|
|
42568
42443
|
deleteMonitorConnection: {
|
|
42569
42444
|
__type: "monitorConnection";
|
|
42570
42445
|
__args: { id: "uuid!" };
|
|
@@ -43187,6 +43062,20 @@ export declare const generatedSchema: {
|
|
|
43187
43062
|
on_conflict: "account_on_conflict";
|
|
43188
43063
|
};
|
|
43189
43064
|
};
|
|
43065
|
+
insertAction: {
|
|
43066
|
+
__type: "action";
|
|
43067
|
+
__args: {
|
|
43068
|
+
object: "action_insert_input!";
|
|
43069
|
+
on_conflict: "action_on_conflict";
|
|
43070
|
+
};
|
|
43071
|
+
};
|
|
43072
|
+
insertActions: {
|
|
43073
|
+
__type: "action_mutation_response";
|
|
43074
|
+
__args: {
|
|
43075
|
+
objects: "[action_insert_input!]!";
|
|
43076
|
+
on_conflict: "action_on_conflict";
|
|
43077
|
+
};
|
|
43078
|
+
};
|
|
43190
43079
|
insertActiveStatus: {
|
|
43191
43080
|
__type: "activeStatus";
|
|
43192
43081
|
__args: {
|
|
@@ -43467,20 +43356,6 @@ export declare const generatedSchema: {
|
|
|
43467
43356
|
on_conflict: "contact_on_conflict";
|
|
43468
43357
|
};
|
|
43469
43358
|
};
|
|
43470
|
-
insertCsvLine: {
|
|
43471
|
-
__type: "csv_line";
|
|
43472
|
-
__args: {
|
|
43473
|
-
object: "csv_line_insert_input!";
|
|
43474
|
-
on_conflict: "csv_line_on_conflict";
|
|
43475
|
-
};
|
|
43476
|
-
};
|
|
43477
|
-
insertCsvLines: {
|
|
43478
|
-
__type: "csv_line_mutation_response";
|
|
43479
|
-
__args: {
|
|
43480
|
-
objects: "[csv_line_insert_input!]!";
|
|
43481
|
-
on_conflict: "csv_line_on_conflict";
|
|
43482
|
-
};
|
|
43483
|
-
};
|
|
43484
43359
|
insertEmailTemplate: {
|
|
43485
43360
|
__type: "emailTemplate";
|
|
43486
43361
|
__args: {
|
|
@@ -43789,20 +43664,6 @@ export declare const generatedSchema: {
|
|
|
43789
43664
|
on_conflict: "listing_on_conflict";
|
|
43790
43665
|
};
|
|
43791
43666
|
};
|
|
43792
|
-
insertMetric: {
|
|
43793
|
-
__type: "metric";
|
|
43794
|
-
__args: {
|
|
43795
|
-
object: "metric_insert_input!";
|
|
43796
|
-
on_conflict: "metric_on_conflict";
|
|
43797
|
-
};
|
|
43798
|
-
};
|
|
43799
|
-
insertMetrics: {
|
|
43800
|
-
__type: "metric_mutation_response";
|
|
43801
|
-
__args: {
|
|
43802
|
-
objects: "[metric_insert_input!]!";
|
|
43803
|
-
on_conflict: "metric_on_conflict";
|
|
43804
|
-
};
|
|
43805
|
-
};
|
|
43806
43667
|
insertMonitorConnection: {
|
|
43807
43668
|
__type: "monitorConnection";
|
|
43808
43669
|
__args: {
|
|
@@ -44957,6 +44818,32 @@ export declare const generatedSchema: {
|
|
|
44957
44818
|
__type: "account_mutation_response";
|
|
44958
44819
|
__args: { _set: "account_set_input"; where: "account_bool_exp!" };
|
|
44959
44820
|
};
|
|
44821
|
+
updateAction: {
|
|
44822
|
+
__type: "action";
|
|
44823
|
+
__args: {
|
|
44824
|
+
_append: "action_append_input";
|
|
44825
|
+
_delete_at_path: "action_delete_at_path_input";
|
|
44826
|
+
_delete_elem: "action_delete_elem_input";
|
|
44827
|
+
_delete_key: "action_delete_key_input";
|
|
44828
|
+
_inc: "action_inc_input";
|
|
44829
|
+
_prepend: "action_prepend_input";
|
|
44830
|
+
_set: "action_set_input";
|
|
44831
|
+
pk_columns: "action_pk_columns_input!";
|
|
44832
|
+
};
|
|
44833
|
+
};
|
|
44834
|
+
updateActions: {
|
|
44835
|
+
__type: "action_mutation_response";
|
|
44836
|
+
__args: {
|
|
44837
|
+
_append: "action_append_input";
|
|
44838
|
+
_delete_at_path: "action_delete_at_path_input";
|
|
44839
|
+
_delete_elem: "action_delete_elem_input";
|
|
44840
|
+
_delete_key: "action_delete_key_input";
|
|
44841
|
+
_inc: "action_inc_input";
|
|
44842
|
+
_prepend: "action_prepend_input";
|
|
44843
|
+
_set: "action_set_input";
|
|
44844
|
+
where: "action_bool_exp!";
|
|
44845
|
+
};
|
|
44846
|
+
};
|
|
44960
44847
|
updateActiveStatus: {
|
|
44961
44848
|
__type: "activeStatus";
|
|
44962
44849
|
__args: {
|
|
@@ -45321,36 +45208,6 @@ export declare const generatedSchema: {
|
|
|
45321
45208
|
where: "contact_bool_exp!";
|
|
45322
45209
|
};
|
|
45323
45210
|
};
|
|
45324
|
-
updateCsvLine: {
|
|
45325
|
-
__type: "csv_line";
|
|
45326
|
-
__args: {
|
|
45327
|
-
_append: "csv_line_append_input";
|
|
45328
|
-
_delete_at_path: "csv_line_delete_at_path_input";
|
|
45329
|
-
_delete_elem: "csv_line_delete_elem_input";
|
|
45330
|
-
_delete_key: "csv_line_delete_key_input";
|
|
45331
|
-
_inc: "csv_line_inc_input";
|
|
45332
|
-
_prepend: "csv_line_prepend_input";
|
|
45333
|
-
_set: "csv_line_set_input";
|
|
45334
|
-
pk_columns: "csv_line_pk_columns_input!";
|
|
45335
|
-
};
|
|
45336
|
-
};
|
|
45337
|
-
updateCsvLineBatch: {
|
|
45338
|
-
__type: "[csv_line_mutation_response]";
|
|
45339
|
-
__args: { updates: "[csv_line_updates!]!" };
|
|
45340
|
-
};
|
|
45341
|
-
updateCsvLines: {
|
|
45342
|
-
__type: "csv_line_mutation_response";
|
|
45343
|
-
__args: {
|
|
45344
|
-
_append: "csv_line_append_input";
|
|
45345
|
-
_delete_at_path: "csv_line_delete_at_path_input";
|
|
45346
|
-
_delete_elem: "csv_line_delete_elem_input";
|
|
45347
|
-
_delete_key: "csv_line_delete_key_input";
|
|
45348
|
-
_inc: "csv_line_inc_input";
|
|
45349
|
-
_prepend: "csv_line_prepend_input";
|
|
45350
|
-
_set: "csv_line_set_input";
|
|
45351
|
-
where: "csv_line_bool_exp!";
|
|
45352
|
-
};
|
|
45353
|
-
};
|
|
45354
45211
|
updateEmailTemplate: {
|
|
45355
45212
|
__type: "emailTemplate";
|
|
45356
45213
|
__args: {
|
|
@@ -45785,6 +45642,10 @@ export declare const generatedSchema: {
|
|
|
45785
45642
|
__type: "[account_mutation_response]";
|
|
45786
45643
|
__args: { updates: "[account_updates!]!" };
|
|
45787
45644
|
};
|
|
45645
|
+
updateManyActions: {
|
|
45646
|
+
__type: "[action_mutation_response]";
|
|
45647
|
+
__args: { updates: "[action_updates!]!" };
|
|
45648
|
+
};
|
|
45788
45649
|
updateManyActiveStatuses: {
|
|
45789
45650
|
__type: "[activeStatus_mutation_response]";
|
|
45790
45651
|
__args: { updates: "[activeStatus_updates!]!" };
|
|
@@ -46037,32 +45898,6 @@ export declare const generatedSchema: {
|
|
|
46037
45898
|
__type: "[user_company_user_mutation_response]";
|
|
46038
45899
|
__args: { updates: "[user_company_user_updates!]!" };
|
|
46039
45900
|
};
|
|
46040
|
-
updateMetric: {
|
|
46041
|
-
__type: "metric";
|
|
46042
|
-
__args: {
|
|
46043
|
-
_append: "metric_append_input";
|
|
46044
|
-
_delete_at_path: "metric_delete_at_path_input";
|
|
46045
|
-
_delete_elem: "metric_delete_elem_input";
|
|
46046
|
-
_delete_key: "metric_delete_key_input";
|
|
46047
|
-
_inc: "metric_inc_input";
|
|
46048
|
-
_prepend: "metric_prepend_input";
|
|
46049
|
-
_set: "metric_set_input";
|
|
46050
|
-
pk_columns: "metric_pk_columns_input!";
|
|
46051
|
-
};
|
|
46052
|
-
};
|
|
46053
|
-
updateMetrics: {
|
|
46054
|
-
__type: "metric_mutation_response";
|
|
46055
|
-
__args: {
|
|
46056
|
-
_append: "metric_append_input";
|
|
46057
|
-
_delete_at_path: "metric_delete_at_path_input";
|
|
46058
|
-
_delete_elem: "metric_delete_elem_input";
|
|
46059
|
-
_delete_key: "metric_delete_key_input";
|
|
46060
|
-
_inc: "metric_inc_input";
|
|
46061
|
-
_prepend: "metric_prepend_input";
|
|
46062
|
-
_set: "metric_set_input";
|
|
46063
|
-
where: "metric_bool_exp!";
|
|
46064
|
-
};
|
|
46065
|
-
};
|
|
46066
45901
|
updateMonitorConnection: {
|
|
46067
45902
|
__type: "monitorConnection";
|
|
46068
45903
|
__args: {
|
|
@@ -47070,10 +46905,6 @@ export declare const generatedSchema: {
|
|
|
47070
46905
|
__type: "[listing_status_mutation_response]";
|
|
47071
46906
|
__args: { updates: "[listing_status_updates!]!" };
|
|
47072
46907
|
};
|
|
47073
|
-
update_metric_many: {
|
|
47074
|
-
__type: "[metric_mutation_response]";
|
|
47075
|
-
__args: { updates: "[metric_updates!]!" };
|
|
47076
|
-
};
|
|
47077
46908
|
update_owner_pms_status: {
|
|
47078
46909
|
__type: "owner_pms_status_mutation_response";
|
|
47079
46910
|
__args: {
|
|
@@ -52589,6 +52420,17 @@ export declare const generatedSchema: {
|
|
|
52589
52420
|
where: "account_bool_exp";
|
|
52590
52421
|
};
|
|
52591
52422
|
};
|
|
52423
|
+
action: { __type: "action"; __args: { id: "uuid!" } };
|
|
52424
|
+
actions: {
|
|
52425
|
+
__type: "[action!]!";
|
|
52426
|
+
__args: {
|
|
52427
|
+
distinct_on: "[action_select_column!]";
|
|
52428
|
+
limit: "Int";
|
|
52429
|
+
offset: "Int";
|
|
52430
|
+
order_by: "[action_order_by!]";
|
|
52431
|
+
where: "action_bool_exp";
|
|
52432
|
+
};
|
|
52433
|
+
};
|
|
52592
52434
|
activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
|
|
52593
52435
|
activeStatusAggregate: {
|
|
52594
52436
|
__type: "activeStatus_aggregate!";
|
|
@@ -52631,6 +52473,16 @@ export declare const generatedSchema: {
|
|
|
52631
52473
|
};
|
|
52632
52474
|
};
|
|
52633
52475
|
address_by_pk: { __type: "address"; __args: { id: "uuid!" } };
|
|
52476
|
+
aggregateActions: {
|
|
52477
|
+
__type: "action_aggregate!";
|
|
52478
|
+
__args: {
|
|
52479
|
+
distinct_on: "[action_select_column!]";
|
|
52480
|
+
limit: "Int";
|
|
52481
|
+
offset: "Int";
|
|
52482
|
+
order_by: "[action_order_by!]";
|
|
52483
|
+
where: "action_bool_exp";
|
|
52484
|
+
};
|
|
52485
|
+
};
|
|
52634
52486
|
app: {
|
|
52635
52487
|
__type: "[app!]!";
|
|
52636
52488
|
__args: {
|
|
@@ -53173,27 +53025,6 @@ export declare const generatedSchema: {
|
|
|
53173
53025
|
__type: "core_change_source_link";
|
|
53174
53026
|
__args: { id: "uuid!" };
|
|
53175
53027
|
};
|
|
53176
|
-
csvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
|
|
53177
|
-
csvLineAggregate: {
|
|
53178
|
-
__type: "csv_line_aggregate!";
|
|
53179
|
-
__args: {
|
|
53180
|
-
distinct_on: "[csv_line_select_column!]";
|
|
53181
|
-
limit: "Int";
|
|
53182
|
-
offset: "Int";
|
|
53183
|
-
order_by: "[csv_line_order_by!]";
|
|
53184
|
-
where: "csv_line_bool_exp";
|
|
53185
|
-
};
|
|
53186
|
-
};
|
|
53187
|
-
csvLines: {
|
|
53188
|
-
__type: "[csv_line!]!";
|
|
53189
|
-
__args: {
|
|
53190
|
-
distinct_on: "[csv_line_select_column!]";
|
|
53191
|
-
limit: "Int";
|
|
53192
|
-
offset: "Int";
|
|
53193
|
-
order_by: "[csv_line_order_by!]";
|
|
53194
|
-
where: "csv_line_bool_exp";
|
|
53195
|
-
};
|
|
53196
|
-
};
|
|
53197
53028
|
currency: {
|
|
53198
53029
|
__type: "[currency!]!";
|
|
53199
53030
|
__args: {
|
|
@@ -53920,27 +53751,6 @@ export declare const generatedSchema: {
|
|
|
53920
53751
|
where: "listing_bool_exp";
|
|
53921
53752
|
};
|
|
53922
53753
|
};
|
|
53923
|
-
metric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
53924
|
-
metricAggregate: {
|
|
53925
|
-
__type: "metric_aggregate!";
|
|
53926
|
-
__args: {
|
|
53927
|
-
distinct_on: "[metric_select_column!]";
|
|
53928
|
-
limit: "Int";
|
|
53929
|
-
offset: "Int";
|
|
53930
|
-
order_by: "[metric_order_by!]";
|
|
53931
|
-
where: "metric_bool_exp";
|
|
53932
|
-
};
|
|
53933
|
-
};
|
|
53934
|
-
metrics: {
|
|
53935
|
-
__type: "[metric!]!";
|
|
53936
|
-
__args: {
|
|
53937
|
-
distinct_on: "[metric_select_column!]";
|
|
53938
|
-
limit: "Int";
|
|
53939
|
-
offset: "Int";
|
|
53940
|
-
order_by: "[metric_order_by!]";
|
|
53941
|
-
where: "metric_bool_exp";
|
|
53942
|
-
};
|
|
53943
|
-
};
|
|
53944
53754
|
metricsActiveListingCreated: {
|
|
53945
53755
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
53946
53756
|
__args: {
|
|
@@ -61100,6 +60910,17 @@ export declare const generatedSchema: {
|
|
|
61100
60910
|
where: "account_bool_exp";
|
|
61101
60911
|
};
|
|
61102
60912
|
};
|
|
60913
|
+
action: { __type: "action"; __args: { id: "uuid!" } };
|
|
60914
|
+
actions: {
|
|
60915
|
+
__type: "[action!]!";
|
|
60916
|
+
__args: {
|
|
60917
|
+
distinct_on: "[action_select_column!]";
|
|
60918
|
+
limit: "Int";
|
|
60919
|
+
offset: "Int";
|
|
60920
|
+
order_by: "[action_order_by!]";
|
|
60921
|
+
where: "action_bool_exp";
|
|
60922
|
+
};
|
|
60923
|
+
};
|
|
61103
60924
|
activeStatus: { __type: "activeStatus"; __args: { name: "String!" } };
|
|
61104
60925
|
activeStatusAggregate: {
|
|
61105
60926
|
__type: "activeStatus_aggregate!";
|
|
@@ -61158,6 +60979,16 @@ export declare const generatedSchema: {
|
|
|
61158
60979
|
where: "address_bool_exp";
|
|
61159
60980
|
};
|
|
61160
60981
|
};
|
|
60982
|
+
aggregateActions: {
|
|
60983
|
+
__type: "action_aggregate!";
|
|
60984
|
+
__args: {
|
|
60985
|
+
distinct_on: "[action_select_column!]";
|
|
60986
|
+
limit: "Int";
|
|
60987
|
+
offset: "Int";
|
|
60988
|
+
order_by: "[action_order_by!]";
|
|
60989
|
+
where: "action_bool_exp";
|
|
60990
|
+
};
|
|
60991
|
+
};
|
|
61161
60992
|
app: {
|
|
61162
60993
|
__type: "[app!]!";
|
|
61163
60994
|
__args: {
|
|
@@ -61892,35 +61723,6 @@ export declare const generatedSchema: {
|
|
|
61892
61723
|
where: "core_change_source_link_bool_exp";
|
|
61893
61724
|
};
|
|
61894
61725
|
};
|
|
61895
|
-
csvLine: { __type: "csv_line"; __args: { id: "uuid!" } };
|
|
61896
|
-
csvLineAggregate: {
|
|
61897
|
-
__type: "csv_line_aggregate!";
|
|
61898
|
-
__args: {
|
|
61899
|
-
distinct_on: "[csv_line_select_column!]";
|
|
61900
|
-
limit: "Int";
|
|
61901
|
-
offset: "Int";
|
|
61902
|
-
order_by: "[csv_line_order_by!]";
|
|
61903
|
-
where: "csv_line_bool_exp";
|
|
61904
|
-
};
|
|
61905
|
-
};
|
|
61906
|
-
csvLineStream: {
|
|
61907
|
-
__type: "[csv_line!]!";
|
|
61908
|
-
__args: {
|
|
61909
|
-
batch_size: "Int!";
|
|
61910
|
-
cursor: "[csv_line_stream_cursor_input]!";
|
|
61911
|
-
where: "csv_line_bool_exp";
|
|
61912
|
-
};
|
|
61913
|
-
};
|
|
61914
|
-
csvLines: {
|
|
61915
|
-
__type: "[csv_line!]!";
|
|
61916
|
-
__args: {
|
|
61917
|
-
distinct_on: "[csv_line_select_column!]";
|
|
61918
|
-
limit: "Int";
|
|
61919
|
-
offset: "Int";
|
|
61920
|
-
order_by: "[csv_line_order_by!]";
|
|
61921
|
-
where: "csv_line_bool_exp";
|
|
61922
|
-
};
|
|
61923
|
-
};
|
|
61924
61726
|
currency: {
|
|
61925
61727
|
__type: "[currency!]!";
|
|
61926
61728
|
__args: {
|
|
@@ -62887,35 +62689,6 @@ export declare const generatedSchema: {
|
|
|
62887
62689
|
where: "listing_bool_exp";
|
|
62888
62690
|
};
|
|
62889
62691
|
};
|
|
62890
|
-
metric: { __type: "metric"; __args: { id: "uuid!" } };
|
|
62891
|
-
metricAggregate: {
|
|
62892
|
-
__type: "metric_aggregate!";
|
|
62893
|
-
__args: {
|
|
62894
|
-
distinct_on: "[metric_select_column!]";
|
|
62895
|
-
limit: "Int";
|
|
62896
|
-
offset: "Int";
|
|
62897
|
-
order_by: "[metric_order_by!]";
|
|
62898
|
-
where: "metric_bool_exp";
|
|
62899
|
-
};
|
|
62900
|
-
};
|
|
62901
|
-
metric_stream: {
|
|
62902
|
-
__type: "[metric!]!";
|
|
62903
|
-
__args: {
|
|
62904
|
-
batch_size: "Int!";
|
|
62905
|
-
cursor: "[metric_stream_cursor_input]!";
|
|
62906
|
-
where: "metric_bool_exp";
|
|
62907
|
-
};
|
|
62908
|
-
};
|
|
62909
|
-
metrics: {
|
|
62910
|
-
__type: "[metric!]!";
|
|
62911
|
-
__args: {
|
|
62912
|
-
distinct_on: "[metric_select_column!]";
|
|
62913
|
-
limit: "Int";
|
|
62914
|
-
offset: "Int";
|
|
62915
|
-
order_by: "[metric_order_by!]";
|
|
62916
|
-
where: "metric_bool_exp";
|
|
62917
|
-
};
|
|
62918
|
-
};
|
|
62919
62692
|
metricsActiveListingCreated: {
|
|
62920
62693
|
__type: "[metricsActiveListingCreatedReturnType!]!";
|
|
62921
62694
|
__args: {
|
|
@@ -64188,6 +63961,14 @@ export declare const generatedSchema: {
|
|
|
64188
63961
|
where: "store_mutation_log_bool_exp";
|
|
64189
63962
|
};
|
|
64190
63963
|
};
|
|
63964
|
+
streamActions: {
|
|
63965
|
+
__type: "[action!]!";
|
|
63966
|
+
__args: {
|
|
63967
|
+
batch_size: "Int!";
|
|
63968
|
+
cursor: "[action_stream_cursor_input]!";
|
|
63969
|
+
where: "action_bool_exp";
|
|
63970
|
+
};
|
|
63971
|
+
};
|
|
64191
63972
|
sync: { __type: "sync"; __args: { id: "uuid!" } };
|
|
64192
63973
|
syncAggregate: {
|
|
64193
63974
|
__type: "sync_aggregate!";
|
|
@@ -66262,26 +66043,6 @@ export declare const generatedSchema: {
|
|
|
66262
66043
|
};
|
|
66263
66044
|
};
|
|
66264
66045
|
createdAt: { __type: "timestamptz!" };
|
|
66265
|
-
csvLines: {
|
|
66266
|
-
__type: "[csv_line!]!";
|
|
66267
|
-
__args: {
|
|
66268
|
-
distinct_on: "[csv_line_select_column!]";
|
|
66269
|
-
limit: "Int";
|
|
66270
|
-
offset: "Int";
|
|
66271
|
-
order_by: "[csv_line_order_by!]";
|
|
66272
|
-
where: "csv_line_bool_exp";
|
|
66273
|
-
};
|
|
66274
|
-
};
|
|
66275
|
-
csvLines_aggregate: {
|
|
66276
|
-
__type: "csv_line_aggregate!";
|
|
66277
|
-
__args: {
|
|
66278
|
-
distinct_on: "[csv_line_select_column!]";
|
|
66279
|
-
limit: "Int";
|
|
66280
|
-
offset: "Int";
|
|
66281
|
-
order_by: "[csv_line_order_by!]";
|
|
66282
|
-
where: "csv_line_bool_exp";
|
|
66283
|
-
};
|
|
66284
|
-
};
|
|
66285
66046
|
defaultCurrency: { __type: "currency_enum" };
|
|
66286
66047
|
defaultRevenueRecognition: { __type: "accountReservationRevRec_enum" };
|
|
66287
66048
|
email: { __type: "String" };
|
|
@@ -66860,8 +66621,6 @@ export declare const generatedSchema: {
|
|
|
66860
66621
|
connections: { __type: "connection_bool_exp" };
|
|
66861
66622
|
connections_aggregate: { __type: "connection_aggregate_bool_exp" };
|
|
66862
66623
|
createdAt: { __type: "timestamptz_comparison_exp" };
|
|
66863
|
-
csvLines: { __type: "csv_line_bool_exp" };
|
|
66864
|
-
csvLines_aggregate: { __type: "csv_line_aggregate_bool_exp" };
|
|
66865
66624
|
defaultCurrency: { __type: "currency_enum_comparison_exp" };
|
|
66866
66625
|
defaultRevenueRecognition: {
|
|
66867
66626
|
__type: "accountReservationRevRec_enum_comparison_exp";
|
|
@@ -66997,7 +66756,6 @@ export declare const generatedSchema: {
|
|
|
66997
66756
|
companyTaxCode: { __type: "String" };
|
|
66998
66757
|
connections: { __type: "connection_arr_rel_insert_input" };
|
|
66999
66758
|
createdAt: { __type: "timestamptz" };
|
|
67000
|
-
csvLines: { __type: "csv_line_arr_rel_insert_input" };
|
|
67001
66759
|
defaultCurrency: { __type: "currency_enum" };
|
|
67002
66760
|
defaultRevenueRecognition: { __type: "accountReservationRevRec_enum" };
|
|
67003
66761
|
email: { __type: "String" };
|
|
@@ -67261,7 +67019,6 @@ export declare const generatedSchema: {
|
|
|
67261
67019
|
companyTaxCode: { __type: "order_by" };
|
|
67262
67020
|
connections_aggregate: { __type: "connection_aggregate_order_by" };
|
|
67263
67021
|
createdAt: { __type: "order_by" };
|
|
67264
|
-
csvLines_aggregate: { __type: "csv_line_aggregate_order_by" };
|
|
67265
67022
|
defaultCurrency: { __type: "order_by" };
|
|
67266
67023
|
defaultRevenueRecognition: { __type: "order_by" };
|
|
67267
67024
|
email: { __type: "order_by" };
|
|
@@ -73287,6 +73044,424 @@ export interface account_mutation_response {
|
|
|
73287
73044
|
returning: Array<account>;
|
|
73288
73045
|
}
|
|
73289
73046
|
|
|
73047
|
+
/**
|
|
73048
|
+
* columns and relationships of "core.action"
|
|
73049
|
+
*/
|
|
73050
|
+
export interface action {
|
|
73051
|
+
__typename?: "action";
|
|
73052
|
+
appId?: Maybe<ScalarsEnums["String"]>;
|
|
73053
|
+
automationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73054
|
+
/**
|
|
73055
|
+
* An array relationship
|
|
73056
|
+
*/
|
|
73057
|
+
changes: (args?: {
|
|
73058
|
+
/**
|
|
73059
|
+
* distinct select on columns
|
|
73060
|
+
*/
|
|
73061
|
+
distinct_on?: Maybe<Array<change_select_column>>;
|
|
73062
|
+
/**
|
|
73063
|
+
* limit the number of rows returned
|
|
73064
|
+
*/
|
|
73065
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73066
|
+
/**
|
|
73067
|
+
* skip the first n rows. Use only with order_by
|
|
73068
|
+
*/
|
|
73069
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73070
|
+
/**
|
|
73071
|
+
* sort the rows by one or more columns
|
|
73072
|
+
*/
|
|
73073
|
+
order_by?: Maybe<Array<change_order_by>>;
|
|
73074
|
+
/**
|
|
73075
|
+
* filter the rows returned
|
|
73076
|
+
*/
|
|
73077
|
+
where?: Maybe<change_bool_exp>;
|
|
73078
|
+
}) => Array<change>;
|
|
73079
|
+
/**
|
|
73080
|
+
* An aggregate relationship
|
|
73081
|
+
*/
|
|
73082
|
+
changes_aggregate: (args?: {
|
|
73083
|
+
/**
|
|
73084
|
+
* distinct select on columns
|
|
73085
|
+
*/
|
|
73086
|
+
distinct_on?: Maybe<Array<change_select_column>>;
|
|
73087
|
+
/**
|
|
73088
|
+
* limit the number of rows returned
|
|
73089
|
+
*/
|
|
73090
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73091
|
+
/**
|
|
73092
|
+
* skip the first n rows. Use only with order_by
|
|
73093
|
+
*/
|
|
73094
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73095
|
+
/**
|
|
73096
|
+
* sort the rows by one or more columns
|
|
73097
|
+
*/
|
|
73098
|
+
order_by?: Maybe<Array<change_order_by>>;
|
|
73099
|
+
/**
|
|
73100
|
+
* filter the rows returned
|
|
73101
|
+
*/
|
|
73102
|
+
where?: Maybe<change_bool_exp>;
|
|
73103
|
+
}) => change_aggregate;
|
|
73104
|
+
/**
|
|
73105
|
+
* An object relationship
|
|
73106
|
+
*/
|
|
73107
|
+
connection?: Maybe<connection>;
|
|
73108
|
+
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73109
|
+
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73110
|
+
id: ScalarsEnums["uuid"];
|
|
73111
|
+
inputJson: (args?: {
|
|
73112
|
+
/**
|
|
73113
|
+
* JSON select path
|
|
73114
|
+
*/
|
|
73115
|
+
path?: Maybe<Scalars["String"]>;
|
|
73116
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
73117
|
+
isCurrent?: Maybe<ScalarsEnums["Boolean"]>;
|
|
73118
|
+
jobId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73119
|
+
jobIndex?: Maybe<ScalarsEnums["Int"]>;
|
|
73120
|
+
jobPageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73121
|
+
jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73122
|
+
objectId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73123
|
+
opId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73124
|
+
outputJson: (args?: {
|
|
73125
|
+
/**
|
|
73126
|
+
* JSON select path
|
|
73127
|
+
*/
|
|
73128
|
+
path?: Maybe<Scalars["String"]>;
|
|
73129
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
73130
|
+
/**
|
|
73131
|
+
* An array relationship
|
|
73132
|
+
*/
|
|
73133
|
+
previousActions: (args?: {
|
|
73134
|
+
/**
|
|
73135
|
+
* distinct select on columns
|
|
73136
|
+
*/
|
|
73137
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73138
|
+
/**
|
|
73139
|
+
* limit the number of rows returned
|
|
73140
|
+
*/
|
|
73141
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73142
|
+
/**
|
|
73143
|
+
* skip the first n rows. Use only with order_by
|
|
73144
|
+
*/
|
|
73145
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73146
|
+
/**
|
|
73147
|
+
* sort the rows by one or more columns
|
|
73148
|
+
*/
|
|
73149
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73150
|
+
/**
|
|
73151
|
+
* filter the rows returned
|
|
73152
|
+
*/
|
|
73153
|
+
where?: Maybe<action_bool_exp>;
|
|
73154
|
+
}) => Array<action>;
|
|
73155
|
+
/**
|
|
73156
|
+
* An array relationship
|
|
73157
|
+
*/
|
|
73158
|
+
previousActions3: (args?: {
|
|
73159
|
+
/**
|
|
73160
|
+
* distinct select on columns
|
|
73161
|
+
*/
|
|
73162
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73163
|
+
/**
|
|
73164
|
+
* limit the number of rows returned
|
|
73165
|
+
*/
|
|
73166
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73167
|
+
/**
|
|
73168
|
+
* skip the first n rows. Use only with order_by
|
|
73169
|
+
*/
|
|
73170
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73171
|
+
/**
|
|
73172
|
+
* sort the rows by one or more columns
|
|
73173
|
+
*/
|
|
73174
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73175
|
+
/**
|
|
73176
|
+
* filter the rows returned
|
|
73177
|
+
*/
|
|
73178
|
+
where?: Maybe<action_bool_exp>;
|
|
73179
|
+
}) => Array<action>;
|
|
73180
|
+
/**
|
|
73181
|
+
* An aggregate relationship
|
|
73182
|
+
*/
|
|
73183
|
+
previousActions3_aggregate: (args?: {
|
|
73184
|
+
/**
|
|
73185
|
+
* distinct select on columns
|
|
73186
|
+
*/
|
|
73187
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73188
|
+
/**
|
|
73189
|
+
* limit the number of rows returned
|
|
73190
|
+
*/
|
|
73191
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73192
|
+
/**
|
|
73193
|
+
* skip the first n rows. Use only with order_by
|
|
73194
|
+
*/
|
|
73195
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73196
|
+
/**
|
|
73197
|
+
* sort the rows by one or more columns
|
|
73198
|
+
*/
|
|
73199
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73200
|
+
/**
|
|
73201
|
+
* filter the rows returned
|
|
73202
|
+
*/
|
|
73203
|
+
where?: Maybe<action_bool_exp>;
|
|
73204
|
+
}) => action_aggregate;
|
|
73205
|
+
/**
|
|
73206
|
+
* An array relationship
|
|
73207
|
+
*/
|
|
73208
|
+
previousActionsByType: (args?: {
|
|
73209
|
+
/**
|
|
73210
|
+
* distinct select on columns
|
|
73211
|
+
*/
|
|
73212
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73213
|
+
/**
|
|
73214
|
+
* limit the number of rows returned
|
|
73215
|
+
*/
|
|
73216
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73217
|
+
/**
|
|
73218
|
+
* skip the first n rows. Use only with order_by
|
|
73219
|
+
*/
|
|
73220
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73221
|
+
/**
|
|
73222
|
+
* sort the rows by one or more columns
|
|
73223
|
+
*/
|
|
73224
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73225
|
+
/**
|
|
73226
|
+
* filter the rows returned
|
|
73227
|
+
*/
|
|
73228
|
+
where?: Maybe<action_bool_exp>;
|
|
73229
|
+
}) => Array<action>;
|
|
73230
|
+
/**
|
|
73231
|
+
* An aggregate relationship
|
|
73232
|
+
*/
|
|
73233
|
+
previousActionsByType_aggregate: (args?: {
|
|
73234
|
+
/**
|
|
73235
|
+
* distinct select on columns
|
|
73236
|
+
*/
|
|
73237
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73238
|
+
/**
|
|
73239
|
+
* limit the number of rows returned
|
|
73240
|
+
*/
|
|
73241
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73242
|
+
/**
|
|
73243
|
+
* skip the first n rows. Use only with order_by
|
|
73244
|
+
*/
|
|
73245
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73246
|
+
/**
|
|
73247
|
+
* sort the rows by one or more columns
|
|
73248
|
+
*/
|
|
73249
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73250
|
+
/**
|
|
73251
|
+
* filter the rows returned
|
|
73252
|
+
*/
|
|
73253
|
+
where?: Maybe<action_bool_exp>;
|
|
73254
|
+
}) => action_aggregate;
|
|
73255
|
+
/**
|
|
73256
|
+
* An aggregate relationship
|
|
73257
|
+
*/
|
|
73258
|
+
previousActions_aggregate: (args?: {
|
|
73259
|
+
/**
|
|
73260
|
+
* distinct select on columns
|
|
73261
|
+
*/
|
|
73262
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
73263
|
+
/**
|
|
73264
|
+
* limit the number of rows returned
|
|
73265
|
+
*/
|
|
73266
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
73267
|
+
/**
|
|
73268
|
+
* skip the first n rows. Use only with order_by
|
|
73269
|
+
*/
|
|
73270
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
73271
|
+
/**
|
|
73272
|
+
* sort the rows by one or more columns
|
|
73273
|
+
*/
|
|
73274
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
73275
|
+
/**
|
|
73276
|
+
* filter the rows returned
|
|
73277
|
+
*/
|
|
73278
|
+
where?: Maybe<action_bool_exp>;
|
|
73279
|
+
}) => action_aggregate;
|
|
73280
|
+
refs: (args?: {
|
|
73281
|
+
/**
|
|
73282
|
+
* JSON select path
|
|
73283
|
+
*/
|
|
73284
|
+
path?: Maybe<Scalars["String"]>;
|
|
73285
|
+
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
73286
|
+
schemaId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73287
|
+
/**
|
|
73288
|
+
* An object relationship
|
|
73289
|
+
*/
|
|
73290
|
+
source?: Maybe<source>;
|
|
73291
|
+
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73292
|
+
status?: Maybe<ScalarsEnums["String"]>;
|
|
73293
|
+
/**
|
|
73294
|
+
* An object relationship
|
|
73295
|
+
*/
|
|
73296
|
+
tenant?: Maybe<tenant>;
|
|
73297
|
+
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73298
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
73299
|
+
type?: Maybe<ScalarsEnums["String"]>;
|
|
73300
|
+
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
73301
|
+
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73302
|
+
}
|
|
73303
|
+
|
|
73304
|
+
/**
|
|
73305
|
+
* aggregated selection of "core.action"
|
|
73306
|
+
*/
|
|
73307
|
+
export interface action_aggregate {
|
|
73308
|
+
__typename?: "action_aggregate";
|
|
73309
|
+
aggregate?: Maybe<action_aggregate_fields>;
|
|
73310
|
+
nodes: Array<action>;
|
|
73311
|
+
}
|
|
73312
|
+
|
|
73313
|
+
/**
|
|
73314
|
+
* aggregate fields of "core.action"
|
|
73315
|
+
*/
|
|
73316
|
+
export interface action_aggregate_fields {
|
|
73317
|
+
__typename?: "action_aggregate_fields";
|
|
73318
|
+
avg?: Maybe<action_avg_fields>;
|
|
73319
|
+
count: (args?: {
|
|
73320
|
+
columns?: Maybe<Array<action_select_column>>;
|
|
73321
|
+
distinct?: Maybe<Scalars["Boolean"]>;
|
|
73322
|
+
}) => ScalarsEnums["Int"];
|
|
73323
|
+
max?: Maybe<action_max_fields>;
|
|
73324
|
+
min?: Maybe<action_min_fields>;
|
|
73325
|
+
stddev?: Maybe<action_stddev_fields>;
|
|
73326
|
+
stddev_pop?: Maybe<action_stddev_pop_fields>;
|
|
73327
|
+
stddev_samp?: Maybe<action_stddev_samp_fields>;
|
|
73328
|
+
sum?: Maybe<action_sum_fields>;
|
|
73329
|
+
var_pop?: Maybe<action_var_pop_fields>;
|
|
73330
|
+
var_samp?: Maybe<action_var_samp_fields>;
|
|
73331
|
+
variance?: Maybe<action_variance_fields>;
|
|
73332
|
+
}
|
|
73333
|
+
|
|
73334
|
+
/**
|
|
73335
|
+
* aggregate avg on columns
|
|
73336
|
+
*/
|
|
73337
|
+
export interface action_avg_fields {
|
|
73338
|
+
__typename?: "action_avg_fields";
|
|
73339
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73340
|
+
}
|
|
73341
|
+
|
|
73342
|
+
/**
|
|
73343
|
+
* aggregate max on columns
|
|
73344
|
+
*/
|
|
73345
|
+
export interface action_max_fields {
|
|
73346
|
+
__typename?: "action_max_fields";
|
|
73347
|
+
appId?: Maybe<ScalarsEnums["String"]>;
|
|
73348
|
+
automationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73349
|
+
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73350
|
+
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73351
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
73352
|
+
jobId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73353
|
+
jobIndex?: Maybe<ScalarsEnums["Int"]>;
|
|
73354
|
+
jobPageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73355
|
+
jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73356
|
+
objectId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73357
|
+
opId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73358
|
+
schemaId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73359
|
+
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73360
|
+
status?: Maybe<ScalarsEnums["String"]>;
|
|
73361
|
+
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73362
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
73363
|
+
type?: Maybe<ScalarsEnums["String"]>;
|
|
73364
|
+
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
73365
|
+
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73366
|
+
}
|
|
73367
|
+
|
|
73368
|
+
/**
|
|
73369
|
+
* aggregate min on columns
|
|
73370
|
+
*/
|
|
73371
|
+
export interface action_min_fields {
|
|
73372
|
+
__typename?: "action_min_fields";
|
|
73373
|
+
appId?: Maybe<ScalarsEnums["String"]>;
|
|
73374
|
+
automationId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73375
|
+
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73376
|
+
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73377
|
+
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
73378
|
+
jobId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73379
|
+
jobIndex?: Maybe<ScalarsEnums["Int"]>;
|
|
73380
|
+
jobPageId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73381
|
+
jobPlanId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73382
|
+
objectId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73383
|
+
opId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73384
|
+
schemaId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73385
|
+
sourceId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73386
|
+
status?: Maybe<ScalarsEnums["String"]>;
|
|
73387
|
+
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
73388
|
+
title?: Maybe<ScalarsEnums["String"]>;
|
|
73389
|
+
type?: Maybe<ScalarsEnums["String"]>;
|
|
73390
|
+
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
73391
|
+
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
73392
|
+
}
|
|
73393
|
+
|
|
73394
|
+
/**
|
|
73395
|
+
* response of any mutation on the table "core.action"
|
|
73396
|
+
*/
|
|
73397
|
+
export interface action_mutation_response {
|
|
73398
|
+
__typename?: "action_mutation_response";
|
|
73399
|
+
/**
|
|
73400
|
+
* number of rows affected by the mutation
|
|
73401
|
+
*/
|
|
73402
|
+
affected_rows: ScalarsEnums["Int"];
|
|
73403
|
+
/**
|
|
73404
|
+
* data from the rows affected by the mutation
|
|
73405
|
+
*/
|
|
73406
|
+
returning: Array<action>;
|
|
73407
|
+
}
|
|
73408
|
+
|
|
73409
|
+
/**
|
|
73410
|
+
* aggregate stddev on columns
|
|
73411
|
+
*/
|
|
73412
|
+
export interface action_stddev_fields {
|
|
73413
|
+
__typename?: "action_stddev_fields";
|
|
73414
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73415
|
+
}
|
|
73416
|
+
|
|
73417
|
+
/**
|
|
73418
|
+
* aggregate stddev_pop on columns
|
|
73419
|
+
*/
|
|
73420
|
+
export interface action_stddev_pop_fields {
|
|
73421
|
+
__typename?: "action_stddev_pop_fields";
|
|
73422
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73423
|
+
}
|
|
73424
|
+
|
|
73425
|
+
/**
|
|
73426
|
+
* aggregate stddev_samp on columns
|
|
73427
|
+
*/
|
|
73428
|
+
export interface action_stddev_samp_fields {
|
|
73429
|
+
__typename?: "action_stddev_samp_fields";
|
|
73430
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73431
|
+
}
|
|
73432
|
+
|
|
73433
|
+
/**
|
|
73434
|
+
* aggregate sum on columns
|
|
73435
|
+
*/
|
|
73436
|
+
export interface action_sum_fields {
|
|
73437
|
+
__typename?: "action_sum_fields";
|
|
73438
|
+
jobIndex?: Maybe<ScalarsEnums["Int"]>;
|
|
73439
|
+
}
|
|
73440
|
+
|
|
73441
|
+
/**
|
|
73442
|
+
* aggregate var_pop on columns
|
|
73443
|
+
*/
|
|
73444
|
+
export interface action_var_pop_fields {
|
|
73445
|
+
__typename?: "action_var_pop_fields";
|
|
73446
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73447
|
+
}
|
|
73448
|
+
|
|
73449
|
+
/**
|
|
73450
|
+
* aggregate var_samp on columns
|
|
73451
|
+
*/
|
|
73452
|
+
export interface action_var_samp_fields {
|
|
73453
|
+
__typename?: "action_var_samp_fields";
|
|
73454
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73455
|
+
}
|
|
73456
|
+
|
|
73457
|
+
/**
|
|
73458
|
+
* aggregate variance on columns
|
|
73459
|
+
*/
|
|
73460
|
+
export interface action_variance_fields {
|
|
73461
|
+
__typename?: "action_variance_fields";
|
|
73462
|
+
jobIndex?: Maybe<ScalarsEnums["Float"]>;
|
|
73463
|
+
}
|
|
73464
|
+
|
|
73290
73465
|
/**
|
|
73291
73466
|
* enum table to track basic active/inactive status
|
|
73292
73467
|
*/
|
|
@@ -76655,56 +76830,6 @@ export interface connection {
|
|
|
76655
76830
|
*/
|
|
76656
76831
|
path?: Maybe<Scalars["String"]>;
|
|
76657
76832
|
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
76658
|
-
/**
|
|
76659
|
-
* An array relationship
|
|
76660
|
-
*/
|
|
76661
|
-
csvLines: (args?: {
|
|
76662
|
-
/**
|
|
76663
|
-
* distinct select on columns
|
|
76664
|
-
*/
|
|
76665
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
76666
|
-
/**
|
|
76667
|
-
* limit the number of rows returned
|
|
76668
|
-
*/
|
|
76669
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
76670
|
-
/**
|
|
76671
|
-
* skip the first n rows. Use only with order_by
|
|
76672
|
-
*/
|
|
76673
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
76674
|
-
/**
|
|
76675
|
-
* sort the rows by one or more columns
|
|
76676
|
-
*/
|
|
76677
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
76678
|
-
/**
|
|
76679
|
-
* filter the rows returned
|
|
76680
|
-
*/
|
|
76681
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
76682
|
-
}) => Array<csv_line>;
|
|
76683
|
-
/**
|
|
76684
|
-
* An aggregate relationship
|
|
76685
|
-
*/
|
|
76686
|
-
csvLines_aggregate: (args?: {
|
|
76687
|
-
/**
|
|
76688
|
-
* distinct select on columns
|
|
76689
|
-
*/
|
|
76690
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
76691
|
-
/**
|
|
76692
|
-
* limit the number of rows returned
|
|
76693
|
-
*/
|
|
76694
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
76695
|
-
/**
|
|
76696
|
-
* skip the first n rows. Use only with order_by
|
|
76697
|
-
*/
|
|
76698
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
76699
|
-
/**
|
|
76700
|
-
* sort the rows by one or more columns
|
|
76701
|
-
*/
|
|
76702
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
76703
|
-
/**
|
|
76704
|
-
* filter the rows returned
|
|
76705
|
-
*/
|
|
76706
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
76707
|
-
}) => csv_line_aggregate;
|
|
76708
76833
|
disabled?: Maybe<ScalarsEnums["Boolean"]>;
|
|
76709
76834
|
fetchNext?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
76710
76835
|
fetchStatus: ScalarsEnums["syncStatus_enum"];
|
|
@@ -78096,193 +78221,6 @@ export interface core_change_source_link_mutation_response {
|
|
|
78096
78221
|
returning: Array<core_change_source_link>;
|
|
78097
78222
|
}
|
|
78098
78223
|
|
|
78099
|
-
/**
|
|
78100
|
-
* columns and relationships of "csv_line"
|
|
78101
|
-
*/
|
|
78102
|
-
export interface csv_line {
|
|
78103
|
-
__typename?: "csv_line";
|
|
78104
|
-
/**
|
|
78105
|
-
* An object relationship
|
|
78106
|
-
*/
|
|
78107
|
-
connection: connection;
|
|
78108
|
-
connectionId: ScalarsEnums["uuid"];
|
|
78109
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78110
|
-
csv: ScalarsEnums["String"];
|
|
78111
|
-
date: ScalarsEnums["timestamptz"];
|
|
78112
|
-
/**
|
|
78113
|
-
* An object relationship
|
|
78114
|
-
*/
|
|
78115
|
-
file?: Maybe<file_storage>;
|
|
78116
|
-
fileId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78117
|
-
fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
78118
|
-
headers?: Maybe<ScalarsEnums["String"]>;
|
|
78119
|
-
id: ScalarsEnums["uuid"];
|
|
78120
|
-
index?: Maybe<ScalarsEnums["Int"]>;
|
|
78121
|
-
json: (args?: {
|
|
78122
|
-
/**
|
|
78123
|
-
* JSON select path
|
|
78124
|
-
*/
|
|
78125
|
-
path?: Maybe<Scalars["String"]>;
|
|
78126
|
-
}) => Maybe<ScalarsEnums["jsonb"]>;
|
|
78127
|
-
/**
|
|
78128
|
-
* An object relationship
|
|
78129
|
-
*/
|
|
78130
|
-
tenant: tenant;
|
|
78131
|
-
tenantId: ScalarsEnums["uuid"];
|
|
78132
|
-
type: ScalarsEnums["String"];
|
|
78133
|
-
uniqueRef: ScalarsEnums["String"];
|
|
78134
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78135
|
-
}
|
|
78136
|
-
|
|
78137
|
-
/**
|
|
78138
|
-
* aggregated selection of "csv_line"
|
|
78139
|
-
*/
|
|
78140
|
-
export interface csv_line_aggregate {
|
|
78141
|
-
__typename?: "csv_line_aggregate";
|
|
78142
|
-
aggregate?: Maybe<csv_line_aggregate_fields>;
|
|
78143
|
-
nodes: Array<csv_line>;
|
|
78144
|
-
}
|
|
78145
|
-
|
|
78146
|
-
/**
|
|
78147
|
-
* aggregate fields of "csv_line"
|
|
78148
|
-
*/
|
|
78149
|
-
export interface csv_line_aggregate_fields {
|
|
78150
|
-
__typename?: "csv_line_aggregate_fields";
|
|
78151
|
-
avg?: Maybe<csv_line_avg_fields>;
|
|
78152
|
-
count: (args?: {
|
|
78153
|
-
columns?: Maybe<Array<csv_line_select_column>>;
|
|
78154
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
78155
|
-
}) => ScalarsEnums["Int"];
|
|
78156
|
-
max?: Maybe<csv_line_max_fields>;
|
|
78157
|
-
min?: Maybe<csv_line_min_fields>;
|
|
78158
|
-
stddev?: Maybe<csv_line_stddev_fields>;
|
|
78159
|
-
stddev_pop?: Maybe<csv_line_stddev_pop_fields>;
|
|
78160
|
-
stddev_samp?: Maybe<csv_line_stddev_samp_fields>;
|
|
78161
|
-
sum?: Maybe<csv_line_sum_fields>;
|
|
78162
|
-
var_pop?: Maybe<csv_line_var_pop_fields>;
|
|
78163
|
-
var_samp?: Maybe<csv_line_var_samp_fields>;
|
|
78164
|
-
variance?: Maybe<csv_line_variance_fields>;
|
|
78165
|
-
}
|
|
78166
|
-
|
|
78167
|
-
/**
|
|
78168
|
-
* aggregate avg on columns
|
|
78169
|
-
*/
|
|
78170
|
-
export interface csv_line_avg_fields {
|
|
78171
|
-
__typename?: "csv_line_avg_fields";
|
|
78172
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78173
|
-
}
|
|
78174
|
-
|
|
78175
|
-
/**
|
|
78176
|
-
* aggregate max on columns
|
|
78177
|
-
*/
|
|
78178
|
-
export interface csv_line_max_fields {
|
|
78179
|
-
__typename?: "csv_line_max_fields";
|
|
78180
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78181
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78182
|
-
csv?: Maybe<ScalarsEnums["String"]>;
|
|
78183
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78184
|
-
fileId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78185
|
-
fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
78186
|
-
headers?: Maybe<ScalarsEnums["String"]>;
|
|
78187
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78188
|
-
index?: Maybe<ScalarsEnums["Int"]>;
|
|
78189
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78190
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
78191
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
78192
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78193
|
-
}
|
|
78194
|
-
|
|
78195
|
-
/**
|
|
78196
|
-
* aggregate min on columns
|
|
78197
|
-
*/
|
|
78198
|
-
export interface csv_line_min_fields {
|
|
78199
|
-
__typename?: "csv_line_min_fields";
|
|
78200
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78201
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78202
|
-
csv?: Maybe<ScalarsEnums["String"]>;
|
|
78203
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78204
|
-
fileId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78205
|
-
fileUniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
78206
|
-
headers?: Maybe<ScalarsEnums["String"]>;
|
|
78207
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
78208
|
-
index?: Maybe<ScalarsEnums["Int"]>;
|
|
78209
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
78210
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
78211
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
78212
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
78213
|
-
}
|
|
78214
|
-
|
|
78215
|
-
/**
|
|
78216
|
-
* response of any mutation on the table "csv_line"
|
|
78217
|
-
*/
|
|
78218
|
-
export interface csv_line_mutation_response {
|
|
78219
|
-
__typename?: "csv_line_mutation_response";
|
|
78220
|
-
/**
|
|
78221
|
-
* number of rows affected by the mutation
|
|
78222
|
-
*/
|
|
78223
|
-
affected_rows: ScalarsEnums["Int"];
|
|
78224
|
-
/**
|
|
78225
|
-
* data from the rows affected by the mutation
|
|
78226
|
-
*/
|
|
78227
|
-
returning: Array<csv_line>;
|
|
78228
|
-
}
|
|
78229
|
-
|
|
78230
|
-
/**
|
|
78231
|
-
* aggregate stddev on columns
|
|
78232
|
-
*/
|
|
78233
|
-
export interface csv_line_stddev_fields {
|
|
78234
|
-
__typename?: "csv_line_stddev_fields";
|
|
78235
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78236
|
-
}
|
|
78237
|
-
|
|
78238
|
-
/**
|
|
78239
|
-
* aggregate stddev_pop on columns
|
|
78240
|
-
*/
|
|
78241
|
-
export interface csv_line_stddev_pop_fields {
|
|
78242
|
-
__typename?: "csv_line_stddev_pop_fields";
|
|
78243
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78244
|
-
}
|
|
78245
|
-
|
|
78246
|
-
/**
|
|
78247
|
-
* aggregate stddev_samp on columns
|
|
78248
|
-
*/
|
|
78249
|
-
export interface csv_line_stddev_samp_fields {
|
|
78250
|
-
__typename?: "csv_line_stddev_samp_fields";
|
|
78251
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78252
|
-
}
|
|
78253
|
-
|
|
78254
|
-
/**
|
|
78255
|
-
* aggregate sum on columns
|
|
78256
|
-
*/
|
|
78257
|
-
export interface csv_line_sum_fields {
|
|
78258
|
-
__typename?: "csv_line_sum_fields";
|
|
78259
|
-
index?: Maybe<ScalarsEnums["Int"]>;
|
|
78260
|
-
}
|
|
78261
|
-
|
|
78262
|
-
/**
|
|
78263
|
-
* aggregate var_pop on columns
|
|
78264
|
-
*/
|
|
78265
|
-
export interface csv_line_var_pop_fields {
|
|
78266
|
-
__typename?: "csv_line_var_pop_fields";
|
|
78267
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78268
|
-
}
|
|
78269
|
-
|
|
78270
|
-
/**
|
|
78271
|
-
* aggregate var_samp on columns
|
|
78272
|
-
*/
|
|
78273
|
-
export interface csv_line_var_samp_fields {
|
|
78274
|
-
__typename?: "csv_line_var_samp_fields";
|
|
78275
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78276
|
-
}
|
|
78277
|
-
|
|
78278
|
-
/**
|
|
78279
|
-
* aggregate variance on columns
|
|
78280
|
-
*/
|
|
78281
|
-
export interface csv_line_variance_fields {
|
|
78282
|
-
__typename?: "csv_line_variance_fields";
|
|
78283
|
-
index?: Maybe<ScalarsEnums["Float"]>;
|
|
78284
|
-
}
|
|
78285
|
-
|
|
78286
78224
|
/**
|
|
78287
78225
|
* columns and relationships of "currency"
|
|
78288
78226
|
*/
|
|
@@ -82541,184 +82479,6 @@ export interface listing_variance_fields {
|
|
|
82541
82479
|
centTaxStartingBalance?: Maybe<ScalarsEnums["Float"]>;
|
|
82542
82480
|
}
|
|
82543
82481
|
|
|
82544
|
-
/**
|
|
82545
|
-
* columns and relationships of "metric"
|
|
82546
|
-
*/
|
|
82547
|
-
export interface metric {
|
|
82548
|
-
__typename?: "metric";
|
|
82549
|
-
/**
|
|
82550
|
-
* An object relationship
|
|
82551
|
-
*/
|
|
82552
|
-
connection: connection;
|
|
82553
|
-
connectionId: ScalarsEnums["uuid"];
|
|
82554
|
-
createdAt: ScalarsEnums["timestamptz"];
|
|
82555
|
-
date: ScalarsEnums["timestamptz"];
|
|
82556
|
-
id: ScalarsEnums["uuid"];
|
|
82557
|
-
/**
|
|
82558
|
-
* An object relationship
|
|
82559
|
-
*/
|
|
82560
|
-
listingConnection?: Maybe<listing_connection>;
|
|
82561
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82562
|
-
metadata: (args?: {
|
|
82563
|
-
/**
|
|
82564
|
-
* JSON select path
|
|
82565
|
-
*/
|
|
82566
|
-
path?: Maybe<Scalars["String"]>;
|
|
82567
|
-
}) => ScalarsEnums["jsonb"];
|
|
82568
|
-
/**
|
|
82569
|
-
* An object relationship
|
|
82570
|
-
*/
|
|
82571
|
-
tenant: tenant;
|
|
82572
|
-
tenantId: ScalarsEnums["uuid"];
|
|
82573
|
-
type: ScalarsEnums["String"];
|
|
82574
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
82575
|
-
updatedAt: ScalarsEnums["timestamptz"];
|
|
82576
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
82577
|
-
}
|
|
82578
|
-
|
|
82579
|
-
/**
|
|
82580
|
-
* aggregated selection of "metric"
|
|
82581
|
-
*/
|
|
82582
|
-
export interface metric_aggregate {
|
|
82583
|
-
__typename?: "metric_aggregate";
|
|
82584
|
-
aggregate?: Maybe<metric_aggregate_fields>;
|
|
82585
|
-
nodes: Array<metric>;
|
|
82586
|
-
}
|
|
82587
|
-
|
|
82588
|
-
/**
|
|
82589
|
-
* aggregate fields of "metric"
|
|
82590
|
-
*/
|
|
82591
|
-
export interface metric_aggregate_fields {
|
|
82592
|
-
__typename?: "metric_aggregate_fields";
|
|
82593
|
-
avg?: Maybe<metric_avg_fields>;
|
|
82594
|
-
count: (args?: {
|
|
82595
|
-
columns?: Maybe<Array<metric_select_column>>;
|
|
82596
|
-
distinct?: Maybe<Scalars["Boolean"]>;
|
|
82597
|
-
}) => ScalarsEnums["Int"];
|
|
82598
|
-
max?: Maybe<metric_max_fields>;
|
|
82599
|
-
min?: Maybe<metric_min_fields>;
|
|
82600
|
-
stddev?: Maybe<metric_stddev_fields>;
|
|
82601
|
-
stddev_pop?: Maybe<metric_stddev_pop_fields>;
|
|
82602
|
-
stddev_samp?: Maybe<metric_stddev_samp_fields>;
|
|
82603
|
-
sum?: Maybe<metric_sum_fields>;
|
|
82604
|
-
var_pop?: Maybe<metric_var_pop_fields>;
|
|
82605
|
-
var_samp?: Maybe<metric_var_samp_fields>;
|
|
82606
|
-
variance?: Maybe<metric_variance_fields>;
|
|
82607
|
-
}
|
|
82608
|
-
|
|
82609
|
-
/**
|
|
82610
|
-
* aggregate avg on columns
|
|
82611
|
-
*/
|
|
82612
|
-
export interface metric_avg_fields {
|
|
82613
|
-
__typename?: "metric_avg_fields";
|
|
82614
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82615
|
-
}
|
|
82616
|
-
|
|
82617
|
-
/**
|
|
82618
|
-
* aggregate max on columns
|
|
82619
|
-
*/
|
|
82620
|
-
export interface metric_max_fields {
|
|
82621
|
-
__typename?: "metric_max_fields";
|
|
82622
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82623
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82624
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82625
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
82626
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82627
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82628
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
82629
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
82630
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82631
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
82632
|
-
}
|
|
82633
|
-
|
|
82634
|
-
/**
|
|
82635
|
-
* aggregate min on columns
|
|
82636
|
-
*/
|
|
82637
|
-
export interface metric_min_fields {
|
|
82638
|
-
__typename?: "metric_min_fields";
|
|
82639
|
-
connectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82640
|
-
createdAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82641
|
-
date?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82642
|
-
id?: Maybe<ScalarsEnums["uuid"]>;
|
|
82643
|
-
listingConnectionId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82644
|
-
tenantId?: Maybe<ScalarsEnums["uuid"]>;
|
|
82645
|
-
type?: Maybe<ScalarsEnums["String"]>;
|
|
82646
|
-
uniqueRef?: Maybe<ScalarsEnums["String"]>;
|
|
82647
|
-
updatedAt?: Maybe<ScalarsEnums["timestamptz"]>;
|
|
82648
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
82649
|
-
}
|
|
82650
|
-
|
|
82651
|
-
/**
|
|
82652
|
-
* response of any mutation on the table "metric"
|
|
82653
|
-
*/
|
|
82654
|
-
export interface metric_mutation_response {
|
|
82655
|
-
__typename?: "metric_mutation_response";
|
|
82656
|
-
/**
|
|
82657
|
-
* number of rows affected by the mutation
|
|
82658
|
-
*/
|
|
82659
|
-
affected_rows: ScalarsEnums["Int"];
|
|
82660
|
-
/**
|
|
82661
|
-
* data from the rows affected by the mutation
|
|
82662
|
-
*/
|
|
82663
|
-
returning: Array<metric>;
|
|
82664
|
-
}
|
|
82665
|
-
|
|
82666
|
-
/**
|
|
82667
|
-
* aggregate stddev on columns
|
|
82668
|
-
*/
|
|
82669
|
-
export interface metric_stddev_fields {
|
|
82670
|
-
__typename?: "metric_stddev_fields";
|
|
82671
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82672
|
-
}
|
|
82673
|
-
|
|
82674
|
-
/**
|
|
82675
|
-
* aggregate stddev_pop on columns
|
|
82676
|
-
*/
|
|
82677
|
-
export interface metric_stddev_pop_fields {
|
|
82678
|
-
__typename?: "metric_stddev_pop_fields";
|
|
82679
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82680
|
-
}
|
|
82681
|
-
|
|
82682
|
-
/**
|
|
82683
|
-
* aggregate stddev_samp on columns
|
|
82684
|
-
*/
|
|
82685
|
-
export interface metric_stddev_samp_fields {
|
|
82686
|
-
__typename?: "metric_stddev_samp_fields";
|
|
82687
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82688
|
-
}
|
|
82689
|
-
|
|
82690
|
-
/**
|
|
82691
|
-
* aggregate sum on columns
|
|
82692
|
-
*/
|
|
82693
|
-
export interface metric_sum_fields {
|
|
82694
|
-
__typename?: "metric_sum_fields";
|
|
82695
|
-
value?: Maybe<ScalarsEnums["float8"]>;
|
|
82696
|
-
}
|
|
82697
|
-
|
|
82698
|
-
/**
|
|
82699
|
-
* aggregate var_pop on columns
|
|
82700
|
-
*/
|
|
82701
|
-
export interface metric_var_pop_fields {
|
|
82702
|
-
__typename?: "metric_var_pop_fields";
|
|
82703
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82704
|
-
}
|
|
82705
|
-
|
|
82706
|
-
/**
|
|
82707
|
-
* aggregate var_samp on columns
|
|
82708
|
-
*/
|
|
82709
|
-
export interface metric_var_samp_fields {
|
|
82710
|
-
__typename?: "metric_var_samp_fields";
|
|
82711
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82712
|
-
}
|
|
82713
|
-
|
|
82714
|
-
/**
|
|
82715
|
-
* aggregate variance on columns
|
|
82716
|
-
*/
|
|
82717
|
-
export interface metric_variance_fields {
|
|
82718
|
-
__typename?: "metric_variance_fields";
|
|
82719
|
-
value?: Maybe<ScalarsEnums["Float"]>;
|
|
82720
|
-
}
|
|
82721
|
-
|
|
82722
82482
|
export interface metricsActiveListingCreatedReturnType {
|
|
82723
82483
|
__typename?: "metricsActiveListingCreatedReturnType";
|
|
82724
82484
|
created?: Maybe<ScalarsEnums["bigint"]>;
|
|
@@ -83053,6 +82813,10 @@ export interface Mutation {
|
|
|
83053
82813
|
deleteAccounts: (args: {
|
|
83054
82814
|
where: account_bool_exp;
|
|
83055
82815
|
}) => Maybe<account_mutation_response>;
|
|
82816
|
+
deleteAction: (args: { id: Scalars["uuid"] }) => Maybe<action>;
|
|
82817
|
+
deleteActions: (args: {
|
|
82818
|
+
where: action_bool_exp;
|
|
82819
|
+
}) => Maybe<action_mutation_response>;
|
|
83056
82820
|
deleteActiveStatus: (args: {
|
|
83057
82821
|
name: Scalars["String"];
|
|
83058
82822
|
}) => Maybe<activeStatus>;
|
|
@@ -83155,10 +82919,6 @@ export interface Mutation {
|
|
|
83155
82919
|
deleteContacts: (args: {
|
|
83156
82920
|
where: contact_bool_exp;
|
|
83157
82921
|
}) => Maybe<contact_mutation_response>;
|
|
83158
|
-
deleteCsvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
|
|
83159
|
-
deleteCsvLines: (args: {
|
|
83160
|
-
where: csv_line_bool_exp;
|
|
83161
|
-
}) => Maybe<csv_line_mutation_response>;
|
|
83162
82922
|
deleteEmailTemplate: (args: { id: Scalars["uuid"] }) => Maybe<emailTemplate>;
|
|
83163
82923
|
deleteEmailTemplateType: (args: {
|
|
83164
82924
|
name: Scalars["String"];
|
|
@@ -83291,10 +83051,6 @@ export interface Mutation {
|
|
|
83291
83051
|
deleteListings: (args: {
|
|
83292
83052
|
where: listing_bool_exp;
|
|
83293
83053
|
}) => Maybe<listing_mutation_response>;
|
|
83294
|
-
deleteMetric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
83295
|
-
deleteMetrics: (args: {
|
|
83296
|
-
where: metric_bool_exp;
|
|
83297
|
-
}) => Maybe<metric_mutation_response>;
|
|
83298
83054
|
deleteMonitorConnection: (args: {
|
|
83299
83055
|
id: Scalars["uuid"];
|
|
83300
83056
|
}) => Maybe<monitorConnection>;
|
|
@@ -83740,6 +83496,14 @@ export interface Mutation {
|
|
|
83740
83496
|
objects: Array<account_insert_input>;
|
|
83741
83497
|
on_conflict?: Maybe<account_on_conflict>;
|
|
83742
83498
|
}) => Maybe<account_mutation_response>;
|
|
83499
|
+
insertAction: (args: {
|
|
83500
|
+
object: action_insert_input;
|
|
83501
|
+
on_conflict?: Maybe<action_on_conflict>;
|
|
83502
|
+
}) => Maybe<action>;
|
|
83503
|
+
insertActions: (args: {
|
|
83504
|
+
objects: Array<action_insert_input>;
|
|
83505
|
+
on_conflict?: Maybe<action_on_conflict>;
|
|
83506
|
+
}) => Maybe<action_mutation_response>;
|
|
83743
83507
|
insertActiveStatus: (args: {
|
|
83744
83508
|
object: activeStatus_insert_input;
|
|
83745
83509
|
on_conflict?: Maybe<activeStatus_on_conflict>;
|
|
@@ -83900,14 +83664,6 @@ export interface Mutation {
|
|
|
83900
83664
|
objects: Array<contact_insert_input>;
|
|
83901
83665
|
on_conflict?: Maybe<contact_on_conflict>;
|
|
83902
83666
|
}) => Maybe<contact_mutation_response>;
|
|
83903
|
-
insertCsvLine: (args: {
|
|
83904
|
-
object: csv_line_insert_input;
|
|
83905
|
-
on_conflict?: Maybe<csv_line_on_conflict>;
|
|
83906
|
-
}) => Maybe<csv_line>;
|
|
83907
|
-
insertCsvLines: (args: {
|
|
83908
|
-
objects: Array<csv_line_insert_input>;
|
|
83909
|
-
on_conflict?: Maybe<csv_line_on_conflict>;
|
|
83910
|
-
}) => Maybe<csv_line_mutation_response>;
|
|
83911
83667
|
insertEmailTemplate: (args: {
|
|
83912
83668
|
object: emailTemplate_insert_input;
|
|
83913
83669
|
on_conflict?: Maybe<emailTemplate_on_conflict>;
|
|
@@ -84084,14 +83840,6 @@ export interface Mutation {
|
|
|
84084
83840
|
objects: Array<listing_insert_input>;
|
|
84085
83841
|
on_conflict?: Maybe<listing_on_conflict>;
|
|
84086
83842
|
}) => Maybe<listing_mutation_response>;
|
|
84087
|
-
insertMetric: (args: {
|
|
84088
|
-
object: metric_insert_input;
|
|
84089
|
-
on_conflict?: Maybe<metric_on_conflict>;
|
|
84090
|
-
}) => Maybe<metric>;
|
|
84091
|
-
insertMetrics: (args: {
|
|
84092
|
-
objects: Array<metric_insert_input>;
|
|
84093
|
-
on_conflict?: Maybe<metric_on_conflict>;
|
|
84094
|
-
}) => Maybe<metric_mutation_response>;
|
|
84095
83843
|
insertMonitorConnection: (args: {
|
|
84096
83844
|
object: monitorConnection_insert_input;
|
|
84097
83845
|
on_conflict?: Maybe<monitorConnection_on_conflict>;
|
|
@@ -84771,6 +84519,26 @@ export interface Mutation {
|
|
|
84771
84519
|
_set?: Maybe<account_set_input>;
|
|
84772
84520
|
where: account_bool_exp;
|
|
84773
84521
|
}) => Maybe<account_mutation_response>;
|
|
84522
|
+
updateAction: (args: {
|
|
84523
|
+
_append?: Maybe<action_append_input>;
|
|
84524
|
+
_delete_at_path?: Maybe<action_delete_at_path_input>;
|
|
84525
|
+
_delete_elem?: Maybe<action_delete_elem_input>;
|
|
84526
|
+
_delete_key?: Maybe<action_delete_key_input>;
|
|
84527
|
+
_inc?: Maybe<action_inc_input>;
|
|
84528
|
+
_prepend?: Maybe<action_prepend_input>;
|
|
84529
|
+
_set?: Maybe<action_set_input>;
|
|
84530
|
+
pk_columns: action_pk_columns_input;
|
|
84531
|
+
}) => Maybe<action>;
|
|
84532
|
+
updateActions: (args: {
|
|
84533
|
+
_append?: Maybe<action_append_input>;
|
|
84534
|
+
_delete_at_path?: Maybe<action_delete_at_path_input>;
|
|
84535
|
+
_delete_elem?: Maybe<action_delete_elem_input>;
|
|
84536
|
+
_delete_key?: Maybe<action_delete_key_input>;
|
|
84537
|
+
_inc?: Maybe<action_inc_input>;
|
|
84538
|
+
_prepend?: Maybe<action_prepend_input>;
|
|
84539
|
+
_set?: Maybe<action_set_input>;
|
|
84540
|
+
where: action_bool_exp;
|
|
84541
|
+
}) => Maybe<action_mutation_response>;
|
|
84774
84542
|
updateActiveStatus: (args: {
|
|
84775
84543
|
_set?: Maybe<activeStatus_set_input>;
|
|
84776
84544
|
pk_columns: activeStatus_pk_columns_input;
|
|
@@ -85020,29 +84788,6 @@ export interface Mutation {
|
|
|
85020
84788
|
_set?: Maybe<contact_set_input>;
|
|
85021
84789
|
where: contact_bool_exp;
|
|
85022
84790
|
}) => Maybe<contact_mutation_response>;
|
|
85023
|
-
updateCsvLine: (args: {
|
|
85024
|
-
_append?: Maybe<csv_line_append_input>;
|
|
85025
|
-
_delete_at_path?: Maybe<csv_line_delete_at_path_input>;
|
|
85026
|
-
_delete_elem?: Maybe<csv_line_delete_elem_input>;
|
|
85027
|
-
_delete_key?: Maybe<csv_line_delete_key_input>;
|
|
85028
|
-
_inc?: Maybe<csv_line_inc_input>;
|
|
85029
|
-
_prepend?: Maybe<csv_line_prepend_input>;
|
|
85030
|
-
_set?: Maybe<csv_line_set_input>;
|
|
85031
|
-
pk_columns: csv_line_pk_columns_input;
|
|
85032
|
-
}) => Maybe<csv_line>;
|
|
85033
|
-
updateCsvLineBatch: (args: {
|
|
85034
|
-
updates: Array<csv_line_updates>;
|
|
85035
|
-
}) => Maybe<Array<Maybe<csv_line_mutation_response>>>;
|
|
85036
|
-
updateCsvLines: (args: {
|
|
85037
|
-
_append?: Maybe<csv_line_append_input>;
|
|
85038
|
-
_delete_at_path?: Maybe<csv_line_delete_at_path_input>;
|
|
85039
|
-
_delete_elem?: Maybe<csv_line_delete_elem_input>;
|
|
85040
|
-
_delete_key?: Maybe<csv_line_delete_key_input>;
|
|
85041
|
-
_inc?: Maybe<csv_line_inc_input>;
|
|
85042
|
-
_prepend?: Maybe<csv_line_prepend_input>;
|
|
85043
|
-
_set?: Maybe<csv_line_set_input>;
|
|
85044
|
-
where: csv_line_bool_exp;
|
|
85045
|
-
}) => Maybe<csv_line_mutation_response>;
|
|
85046
84791
|
updateEmailTemplate: (args: {
|
|
85047
84792
|
_append?: Maybe<emailTemplate_append_input>;
|
|
85048
84793
|
_delete_at_path?: Maybe<emailTemplate_delete_at_path_input>;
|
|
@@ -85324,6 +85069,9 @@ export interface Mutation {
|
|
|
85324
85069
|
updateManyAccounts: (args: {
|
|
85325
85070
|
updates: Array<account_updates>;
|
|
85326
85071
|
}) => Maybe<Array<Maybe<account_mutation_response>>>;
|
|
85072
|
+
updateManyActions: (args: {
|
|
85073
|
+
updates: Array<action_updates>;
|
|
85074
|
+
}) => Maybe<Array<Maybe<action_mutation_response>>>;
|
|
85327
85075
|
updateManyActiveStatuses: (args: {
|
|
85328
85076
|
updates: Array<activeStatus_updates>;
|
|
85329
85077
|
}) => Maybe<Array<Maybe<activeStatus_mutation_response>>>;
|
|
@@ -85519,26 +85267,6 @@ export interface Mutation {
|
|
|
85519
85267
|
updateManyUserCompanyUsers: (args: {
|
|
85520
85268
|
updates: Array<user_company_user_updates>;
|
|
85521
85269
|
}) => Maybe<Array<Maybe<user_company_user_mutation_response>>>;
|
|
85522
|
-
updateMetric: (args: {
|
|
85523
|
-
_append?: Maybe<metric_append_input>;
|
|
85524
|
-
_delete_at_path?: Maybe<metric_delete_at_path_input>;
|
|
85525
|
-
_delete_elem?: Maybe<metric_delete_elem_input>;
|
|
85526
|
-
_delete_key?: Maybe<metric_delete_key_input>;
|
|
85527
|
-
_inc?: Maybe<metric_inc_input>;
|
|
85528
|
-
_prepend?: Maybe<metric_prepend_input>;
|
|
85529
|
-
_set?: Maybe<metric_set_input>;
|
|
85530
|
-
pk_columns: metric_pk_columns_input;
|
|
85531
|
-
}) => Maybe<metric>;
|
|
85532
|
-
updateMetrics: (args: {
|
|
85533
|
-
_append?: Maybe<metric_append_input>;
|
|
85534
|
-
_delete_at_path?: Maybe<metric_delete_at_path_input>;
|
|
85535
|
-
_delete_elem?: Maybe<metric_delete_elem_input>;
|
|
85536
|
-
_delete_key?: Maybe<metric_delete_key_input>;
|
|
85537
|
-
_inc?: Maybe<metric_inc_input>;
|
|
85538
|
-
_prepend?: Maybe<metric_prepend_input>;
|
|
85539
|
-
_set?: Maybe<metric_set_input>;
|
|
85540
|
-
where: metric_bool_exp;
|
|
85541
|
-
}) => Maybe<metric_mutation_response>;
|
|
85542
85270
|
updateMonitorConnection: (args: {
|
|
85543
85271
|
_inc?: Maybe<monitorConnection_inc_input>;
|
|
85544
85272
|
_set?: Maybe<monitorConnection_set_input>;
|
|
@@ -86240,9 +85968,6 @@ export interface Mutation {
|
|
|
86240
85968
|
update_listing_status_many: (args: {
|
|
86241
85969
|
updates: Array<listing_status_updates>;
|
|
86242
85970
|
}) => Maybe<Array<Maybe<listing_status_mutation_response>>>;
|
|
86243
|
-
update_metric_many: (args: {
|
|
86244
|
-
updates: Array<metric_updates>;
|
|
86245
|
-
}) => Maybe<Array<Maybe<metric_mutation_response>>>;
|
|
86246
85971
|
update_owner_pms_status: (args: {
|
|
86247
85972
|
_set?: Maybe<owner_pms_status_set_input>;
|
|
86248
85973
|
where: owner_pms_status_bool_exp;
|
|
@@ -91051,6 +90776,14 @@ export interface Query {
|
|
|
91051
90776
|
order_by?: Maybe<Array<account_order_by>>;
|
|
91052
90777
|
where?: Maybe<account_bool_exp>;
|
|
91053
90778
|
}) => Array<account>;
|
|
90779
|
+
action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
|
|
90780
|
+
actions: (args?: {
|
|
90781
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
90782
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90783
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90784
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
90785
|
+
where?: Maybe<action_bool_exp>;
|
|
90786
|
+
}) => Array<action>;
|
|
91054
90787
|
activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
|
|
91055
90788
|
activeStatusAggregate: (args?: {
|
|
91056
90789
|
distinct_on?: Maybe<Array<activeStatus_select_column>>;
|
|
@@ -91081,6 +90814,13 @@ export interface Query {
|
|
|
91081
90814
|
where?: Maybe<address_bool_exp>;
|
|
91082
90815
|
}) => address_aggregate;
|
|
91083
90816
|
address_by_pk: (args: { id: Scalars["uuid"] }) => Maybe<address>;
|
|
90817
|
+
aggregateActions: (args?: {
|
|
90818
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
90819
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
90820
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
90821
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
90822
|
+
where?: Maybe<action_bool_exp>;
|
|
90823
|
+
}) => action_aggregate;
|
|
91084
90824
|
app: (args?: {
|
|
91085
90825
|
distinct_on?: Maybe<Array<app_select_column>>;
|
|
91086
90826
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -91469,21 +91209,6 @@ export interface Query {
|
|
|
91469
91209
|
core_change_source_link_by_pk: (args: {
|
|
91470
91210
|
id: Scalars["uuid"];
|
|
91471
91211
|
}) => Maybe<core_change_source_link>;
|
|
91472
|
-
csvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
|
|
91473
|
-
csvLineAggregate: (args?: {
|
|
91474
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
91475
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91476
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91477
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
91478
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
91479
|
-
}) => csv_line_aggregate;
|
|
91480
|
-
csvLines: (args?: {
|
|
91481
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
91482
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
91483
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
91484
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
91485
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
91486
|
-
}) => Array<csv_line>;
|
|
91487
91212
|
currency: (args?: {
|
|
91488
91213
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
91489
91214
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -92020,21 +91745,6 @@ export interface Query {
|
|
|
92020
91745
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
92021
91746
|
where?: Maybe<listing_bool_exp>;
|
|
92022
91747
|
}) => Array<listing>;
|
|
92023
|
-
metric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
92024
|
-
metricAggregate: (args?: {
|
|
92025
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
92026
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92027
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92028
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
92029
|
-
where?: Maybe<metric_bool_exp>;
|
|
92030
|
-
}) => metric_aggregate;
|
|
92031
|
-
metrics: (args?: {
|
|
92032
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
92033
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
92034
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
92035
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
92036
|
-
where?: Maybe<metric_bool_exp>;
|
|
92037
|
-
}) => Array<metric>;
|
|
92038
91748
|
metricsActiveListingCreated: (args: {
|
|
92039
91749
|
args: metricsActiveListingCreated_arguments;
|
|
92040
91750
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -97835,6 +97545,14 @@ export interface Subscription {
|
|
|
97835
97545
|
order_by?: Maybe<Array<account_order_by>>;
|
|
97836
97546
|
where?: Maybe<account_bool_exp>;
|
|
97837
97547
|
}) => Array<account>;
|
|
97548
|
+
action: (args: { id: Scalars["uuid"] }) => Maybe<action>;
|
|
97549
|
+
actions: (args?: {
|
|
97550
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
97551
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97552
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97553
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
97554
|
+
where?: Maybe<action_bool_exp>;
|
|
97555
|
+
}) => Array<action>;
|
|
97838
97556
|
activeStatus: (args: { name: Scalars["String"] }) => Maybe<activeStatus>;
|
|
97839
97557
|
activeStatusAggregate: (args?: {
|
|
97840
97558
|
distinct_on?: Maybe<Array<activeStatus_select_column>>;
|
|
@@ -97875,6 +97593,13 @@ export interface Subscription {
|
|
|
97875
97593
|
cursor: Array<Maybe<address_stream_cursor_input>>;
|
|
97876
97594
|
where?: Maybe<address_bool_exp>;
|
|
97877
97595
|
}) => Array<address>;
|
|
97596
|
+
aggregateActions: (args?: {
|
|
97597
|
+
distinct_on?: Maybe<Array<action_select_column>>;
|
|
97598
|
+
limit?: Maybe<Scalars["Int"]>;
|
|
97599
|
+
offset?: Maybe<Scalars["Int"]>;
|
|
97600
|
+
order_by?: Maybe<Array<action_order_by>>;
|
|
97601
|
+
where?: Maybe<action_bool_exp>;
|
|
97602
|
+
}) => action_aggregate;
|
|
97878
97603
|
app: (args?: {
|
|
97879
97604
|
distinct_on?: Maybe<Array<app_select_column>>;
|
|
97880
97605
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -98383,26 +98108,6 @@ export interface Subscription {
|
|
|
98383
98108
|
cursor: Array<Maybe<core_change_source_link_stream_cursor_input>>;
|
|
98384
98109
|
where?: Maybe<core_change_source_link_bool_exp>;
|
|
98385
98110
|
}) => Array<core_change_source_link>;
|
|
98386
|
-
csvLine: (args: { id: Scalars["uuid"] }) => Maybe<csv_line>;
|
|
98387
|
-
csvLineAggregate: (args?: {
|
|
98388
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
98389
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98390
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98391
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
98392
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
98393
|
-
}) => csv_line_aggregate;
|
|
98394
|
-
csvLineStream: (args: {
|
|
98395
|
-
batch_size: Scalars["Int"];
|
|
98396
|
-
cursor: Array<Maybe<csv_line_stream_cursor_input>>;
|
|
98397
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
98398
|
-
}) => Array<csv_line>;
|
|
98399
|
-
csvLines: (args?: {
|
|
98400
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
98401
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
98402
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
98403
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
98404
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
98405
|
-
}) => Array<csv_line>;
|
|
98406
98111
|
currency: (args?: {
|
|
98407
98112
|
distinct_on?: Maybe<Array<currency_select_column>>;
|
|
98408
98113
|
limit?: Maybe<Scalars["Int"]>;
|
|
@@ -99095,26 +98800,6 @@ export interface Subscription {
|
|
|
99095
98800
|
order_by?: Maybe<Array<listing_order_by>>;
|
|
99096
98801
|
where?: Maybe<listing_bool_exp>;
|
|
99097
98802
|
}) => Array<listing>;
|
|
99098
|
-
metric: (args: { id: Scalars["uuid"] }) => Maybe<metric>;
|
|
99099
|
-
metricAggregate: (args?: {
|
|
99100
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
99101
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99102
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99103
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
99104
|
-
where?: Maybe<metric_bool_exp>;
|
|
99105
|
-
}) => metric_aggregate;
|
|
99106
|
-
metric_stream: (args: {
|
|
99107
|
-
batch_size: Scalars["Int"];
|
|
99108
|
-
cursor: Array<Maybe<metric_stream_cursor_input>>;
|
|
99109
|
-
where?: Maybe<metric_bool_exp>;
|
|
99110
|
-
}) => Array<metric>;
|
|
99111
|
-
metrics: (args?: {
|
|
99112
|
-
distinct_on?: Maybe<Array<metric_select_column>>;
|
|
99113
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
99114
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
99115
|
-
order_by?: Maybe<Array<metric_order_by>>;
|
|
99116
|
-
where?: Maybe<metric_bool_exp>;
|
|
99117
|
-
}) => Array<metric>;
|
|
99118
98803
|
metricsActiveListingCreated: (args: {
|
|
99119
98804
|
args: metricsActiveListingCreated_arguments;
|
|
99120
98805
|
distinct_on?: Maybe<Array<metricsActiveListingCreatedReturnType_enum_name>>;
|
|
@@ -100028,6 +99713,11 @@ export interface Subscription {
|
|
|
100028
99713
|
cursor: Array<Maybe<store_mutation_log_stream_cursor_input>>;
|
|
100029
99714
|
where?: Maybe<store_mutation_log_bool_exp>;
|
|
100030
99715
|
}) => Array<store_mutation_log>;
|
|
99716
|
+
streamActions: (args: {
|
|
99717
|
+
batch_size: Scalars["Int"];
|
|
99718
|
+
cursor: Array<Maybe<action_stream_cursor_input>>;
|
|
99719
|
+
where?: Maybe<action_bool_exp>;
|
|
99720
|
+
}) => Array<action>;
|
|
100031
99721
|
sync: (args: { id: Scalars["uuid"] }) => Maybe<sync>;
|
|
100032
99722
|
syncAggregate: (args?: {
|
|
100033
99723
|
distinct_on?: Maybe<Array<sync_select_column>>;
|
|
@@ -101714,56 +101404,6 @@ export interface tenant {
|
|
|
101714
101404
|
where?: Maybe<connection_bool_exp>;
|
|
101715
101405
|
}) => connection_aggregate;
|
|
101716
101406
|
createdAt: ScalarsEnums["timestamptz"];
|
|
101717
|
-
/**
|
|
101718
|
-
* An array relationship
|
|
101719
|
-
*/
|
|
101720
|
-
csvLines: (args?: {
|
|
101721
|
-
/**
|
|
101722
|
-
* distinct select on columns
|
|
101723
|
-
*/
|
|
101724
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
101725
|
-
/**
|
|
101726
|
-
* limit the number of rows returned
|
|
101727
|
-
*/
|
|
101728
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
101729
|
-
/**
|
|
101730
|
-
* skip the first n rows. Use only with order_by
|
|
101731
|
-
*/
|
|
101732
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
101733
|
-
/**
|
|
101734
|
-
* sort the rows by one or more columns
|
|
101735
|
-
*/
|
|
101736
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
101737
|
-
/**
|
|
101738
|
-
* filter the rows returned
|
|
101739
|
-
*/
|
|
101740
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
101741
|
-
}) => Array<csv_line>;
|
|
101742
|
-
/**
|
|
101743
|
-
* An aggregate relationship
|
|
101744
|
-
*/
|
|
101745
|
-
csvLines_aggregate: (args?: {
|
|
101746
|
-
/**
|
|
101747
|
-
* distinct select on columns
|
|
101748
|
-
*/
|
|
101749
|
-
distinct_on?: Maybe<Array<csv_line_select_column>>;
|
|
101750
|
-
/**
|
|
101751
|
-
* limit the number of rows returned
|
|
101752
|
-
*/
|
|
101753
|
-
limit?: Maybe<Scalars["Int"]>;
|
|
101754
|
-
/**
|
|
101755
|
-
* skip the first n rows. Use only with order_by
|
|
101756
|
-
*/
|
|
101757
|
-
offset?: Maybe<Scalars["Int"]>;
|
|
101758
|
-
/**
|
|
101759
|
-
* sort the rows by one or more columns
|
|
101760
|
-
*/
|
|
101761
|
-
order_by?: Maybe<Array<csv_line_order_by>>;
|
|
101762
|
-
/**
|
|
101763
|
-
* filter the rows returned
|
|
101764
|
-
*/
|
|
101765
|
-
where?: Maybe<csv_line_bool_exp>;
|
|
101766
|
-
}) => csv_line_aggregate;
|
|
101767
101407
|
defaultCurrency?: Maybe<ScalarsEnums["currency_enum"]>;
|
|
101768
101408
|
defaultRevenueRecognition?: Maybe<
|
|
101769
101409
|
ScalarsEnums["accountReservationRevRec_enum"]
|
|
@@ -106817,6 +106457,20 @@ export interface SchemaObjectTypes {
|
|
|
106817
106457
|
account_max_fields: account_max_fields;
|
|
106818
106458
|
account_min_fields: account_min_fields;
|
|
106819
106459
|
account_mutation_response: account_mutation_response;
|
|
106460
|
+
action: action;
|
|
106461
|
+
action_aggregate: action_aggregate;
|
|
106462
|
+
action_aggregate_fields: action_aggregate_fields;
|
|
106463
|
+
action_avg_fields: action_avg_fields;
|
|
106464
|
+
action_max_fields: action_max_fields;
|
|
106465
|
+
action_min_fields: action_min_fields;
|
|
106466
|
+
action_mutation_response: action_mutation_response;
|
|
106467
|
+
action_stddev_fields: action_stddev_fields;
|
|
106468
|
+
action_stddev_pop_fields: action_stddev_pop_fields;
|
|
106469
|
+
action_stddev_samp_fields: action_stddev_samp_fields;
|
|
106470
|
+
action_sum_fields: action_sum_fields;
|
|
106471
|
+
action_var_pop_fields: action_var_pop_fields;
|
|
106472
|
+
action_var_samp_fields: action_var_samp_fields;
|
|
106473
|
+
action_variance_fields: action_variance_fields;
|
|
106820
106474
|
activeStatus: activeStatus;
|
|
106821
106475
|
activeStatus_aggregate: activeStatus_aggregate;
|
|
106822
106476
|
activeStatus_aggregate_fields: activeStatus_aggregate_fields;
|
|
@@ -107006,20 +106660,6 @@ export interface SchemaObjectTypes {
|
|
|
107006
106660
|
core_change_source_link_max_fields: core_change_source_link_max_fields;
|
|
107007
106661
|
core_change_source_link_min_fields: core_change_source_link_min_fields;
|
|
107008
106662
|
core_change_source_link_mutation_response: core_change_source_link_mutation_response;
|
|
107009
|
-
csv_line: csv_line;
|
|
107010
|
-
csv_line_aggregate: csv_line_aggregate;
|
|
107011
|
-
csv_line_aggregate_fields: csv_line_aggregate_fields;
|
|
107012
|
-
csv_line_avg_fields: csv_line_avg_fields;
|
|
107013
|
-
csv_line_max_fields: csv_line_max_fields;
|
|
107014
|
-
csv_line_min_fields: csv_line_min_fields;
|
|
107015
|
-
csv_line_mutation_response: csv_line_mutation_response;
|
|
107016
|
-
csv_line_stddev_fields: csv_line_stddev_fields;
|
|
107017
|
-
csv_line_stddev_pop_fields: csv_line_stddev_pop_fields;
|
|
107018
|
-
csv_line_stddev_samp_fields: csv_line_stddev_samp_fields;
|
|
107019
|
-
csv_line_sum_fields: csv_line_sum_fields;
|
|
107020
|
-
csv_line_var_pop_fields: csv_line_var_pop_fields;
|
|
107021
|
-
csv_line_var_samp_fields: csv_line_var_samp_fields;
|
|
107022
|
-
csv_line_variance_fields: csv_line_variance_fields;
|
|
107023
106663
|
currency: currency;
|
|
107024
106664
|
currency_aggregate: currency_aggregate;
|
|
107025
106665
|
currency_aggregate_fields: currency_aggregate_fields;
|
|
@@ -107219,20 +106859,6 @@ export interface SchemaObjectTypes {
|
|
|
107219
106859
|
listing_var_pop_fields: listing_var_pop_fields;
|
|
107220
106860
|
listing_var_samp_fields: listing_var_samp_fields;
|
|
107221
106861
|
listing_variance_fields: listing_variance_fields;
|
|
107222
|
-
metric: metric;
|
|
107223
|
-
metric_aggregate: metric_aggregate;
|
|
107224
|
-
metric_aggregate_fields: metric_aggregate_fields;
|
|
107225
|
-
metric_avg_fields: metric_avg_fields;
|
|
107226
|
-
metric_max_fields: metric_max_fields;
|
|
107227
|
-
metric_min_fields: metric_min_fields;
|
|
107228
|
-
metric_mutation_response: metric_mutation_response;
|
|
107229
|
-
metric_stddev_fields: metric_stddev_fields;
|
|
107230
|
-
metric_stddev_pop_fields: metric_stddev_pop_fields;
|
|
107231
|
-
metric_stddev_samp_fields: metric_stddev_samp_fields;
|
|
107232
|
-
metric_sum_fields: metric_sum_fields;
|
|
107233
|
-
metric_var_pop_fields: metric_var_pop_fields;
|
|
107234
|
-
metric_var_samp_fields: metric_var_samp_fields;
|
|
107235
|
-
metric_variance_fields: metric_variance_fields;
|
|
107236
106862
|
metricsActiveListingCreatedReturnType: metricsActiveListingCreatedReturnType;
|
|
107237
106863
|
metricsBankRecordBalancesReturnType: metricsBankRecordBalancesReturnType;
|
|
107238
106864
|
metricsCurrenciesReturnType: metricsCurrenciesReturnType;
|
|
@@ -107917,6 +107543,20 @@ export type SchemaObjectTypesNames =
|
|
|
107917
107543
|
| "account_max_fields"
|
|
107918
107544
|
| "account_min_fields"
|
|
107919
107545
|
| "account_mutation_response"
|
|
107546
|
+
| "action"
|
|
107547
|
+
| "action_aggregate"
|
|
107548
|
+
| "action_aggregate_fields"
|
|
107549
|
+
| "action_avg_fields"
|
|
107550
|
+
| "action_max_fields"
|
|
107551
|
+
| "action_min_fields"
|
|
107552
|
+
| "action_mutation_response"
|
|
107553
|
+
| "action_stddev_fields"
|
|
107554
|
+
| "action_stddev_pop_fields"
|
|
107555
|
+
| "action_stddev_samp_fields"
|
|
107556
|
+
| "action_sum_fields"
|
|
107557
|
+
| "action_var_pop_fields"
|
|
107558
|
+
| "action_var_samp_fields"
|
|
107559
|
+
| "action_variance_fields"
|
|
107920
107560
|
| "activeStatus"
|
|
107921
107561
|
| "activeStatus_aggregate"
|
|
107922
107562
|
| "activeStatus_aggregate_fields"
|
|
@@ -108106,20 +107746,6 @@ export type SchemaObjectTypesNames =
|
|
|
108106
107746
|
| "core_change_source_link_max_fields"
|
|
108107
107747
|
| "core_change_source_link_min_fields"
|
|
108108
107748
|
| "core_change_source_link_mutation_response"
|
|
108109
|
-
| "csv_line"
|
|
108110
|
-
| "csv_line_aggregate"
|
|
108111
|
-
| "csv_line_aggregate_fields"
|
|
108112
|
-
| "csv_line_avg_fields"
|
|
108113
|
-
| "csv_line_max_fields"
|
|
108114
|
-
| "csv_line_min_fields"
|
|
108115
|
-
| "csv_line_mutation_response"
|
|
108116
|
-
| "csv_line_stddev_fields"
|
|
108117
|
-
| "csv_line_stddev_pop_fields"
|
|
108118
|
-
| "csv_line_stddev_samp_fields"
|
|
108119
|
-
| "csv_line_sum_fields"
|
|
108120
|
-
| "csv_line_var_pop_fields"
|
|
108121
|
-
| "csv_line_var_samp_fields"
|
|
108122
|
-
| "csv_line_variance_fields"
|
|
108123
107749
|
| "currency"
|
|
108124
107750
|
| "currency_aggregate"
|
|
108125
107751
|
| "currency_aggregate_fields"
|
|
@@ -108319,20 +107945,6 @@ export type SchemaObjectTypesNames =
|
|
|
108319
107945
|
| "listing_var_pop_fields"
|
|
108320
107946
|
| "listing_var_samp_fields"
|
|
108321
107947
|
| "listing_variance_fields"
|
|
108322
|
-
| "metric"
|
|
108323
|
-
| "metric_aggregate"
|
|
108324
|
-
| "metric_aggregate_fields"
|
|
108325
|
-
| "metric_avg_fields"
|
|
108326
|
-
| "metric_max_fields"
|
|
108327
|
-
| "metric_min_fields"
|
|
108328
|
-
| "metric_mutation_response"
|
|
108329
|
-
| "metric_stddev_fields"
|
|
108330
|
-
| "metric_stddev_pop_fields"
|
|
108331
|
-
| "metric_stddev_samp_fields"
|
|
108332
|
-
| "metric_sum_fields"
|
|
108333
|
-
| "metric_var_pop_fields"
|
|
108334
|
-
| "metric_var_samp_fields"
|
|
108335
|
-
| "metric_variance_fields"
|
|
108336
107948
|
| "metricsActiveListingCreatedReturnType"
|
|
108337
107949
|
| "metricsBankRecordBalancesReturnType"
|
|
108338
107950
|
| "metricsCurrenciesReturnType"
|
|
@@ -109028,6 +108640,15 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109028
108640
|
account_constraint: account_constraint | undefined;
|
|
109029
108641
|
account_select_column: account_select_column | undefined;
|
|
109030
108642
|
account_update_column: account_update_column | undefined;
|
|
108643
|
+
action_constraint: action_constraint | undefined;
|
|
108644
|
+
action_select_column: action_select_column | undefined;
|
|
108645
|
+
action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns:
|
|
108646
|
+
| action_select_column_action_aggregate_bool_exp_bool_and_arguments_columns
|
|
108647
|
+
| undefined;
|
|
108648
|
+
action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns:
|
|
108649
|
+
| action_select_column_action_aggregate_bool_exp_bool_or_arguments_columns
|
|
108650
|
+
| undefined;
|
|
108651
|
+
action_update_column: action_update_column | undefined;
|
|
109031
108652
|
activeStatus_constraint: activeStatus_constraint | undefined;
|
|
109032
108653
|
activeStatus_enum: activeStatus_enum | undefined;
|
|
109033
108654
|
activeStatus_select_column: activeStatus_select_column | undefined;
|
|
@@ -109176,9 +108797,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109176
108797
|
core_change_source_link_update_column:
|
|
109177
108798
|
| core_change_source_link_update_column
|
|
109178
108799
|
| undefined;
|
|
109179
|
-
csv_line_constraint: csv_line_constraint | undefined;
|
|
109180
|
-
csv_line_select_column: csv_line_select_column | undefined;
|
|
109181
|
-
csv_line_update_column: csv_line_update_column | undefined;
|
|
109182
108800
|
currency_constraint: currency_constraint | undefined;
|
|
109183
108801
|
currency_enum: currency_enum | undefined;
|
|
109184
108802
|
currency_select_column: currency_select_column | undefined;
|
|
@@ -109354,9 +108972,6 @@ export interface ScalarsEnums extends Scalars {
|
|
|
109354
108972
|
listing_status_select_column: listing_status_select_column | undefined;
|
|
109355
108973
|
listing_status_update_column: listing_status_update_column | undefined;
|
|
109356
108974
|
listing_update_column: listing_update_column | undefined;
|
|
109357
|
-
metric_constraint: metric_constraint | undefined;
|
|
109358
|
-
metric_select_column: metric_select_column | undefined;
|
|
109359
|
-
metric_update_column: metric_update_column | undefined;
|
|
109360
108975
|
metricsActiveListingCreatedReturnType_enum_name:
|
|
109361
108976
|
| metricsActiveListingCreatedReturnType_enum_name
|
|
109362
108977
|
| undefined;
|