@membranehq/sdk 0.9.6 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dts/agent/session.d.ts +14 -0
- package/dist/dts/config/index.d.ts +1 -0
- package/dist/dts/functions/base.d.ts +28 -0
- package/dist/dts/functions/function-types/graphql-api-mapping.d.ts +67 -0
- package/dist/dts/functions/function-types/index.d.ts +61 -0
- package/dist/dts/functions/function-types/javascript.d.ts +7 -0
- package/dist/dts/functions/function-types/mapping.d.ts +9 -0
- package/dist/dts/functions/function-types/operation-mapping.d.ts +17 -0
- package/dist/dts/functions/function-types/rest-api-mapping.d.ts +48 -0
- package/dist/dts/functions/index.d.ts +2 -0
- package/dist/dts/index.browser.d.ts +1 -0
- package/dist/dts/workspace-elements/base/actions/index.d.ts +1 -1
- package/dist/dts/workspace-elements/base/connectors/functions.d.ts +491 -0
- package/dist/dts/workspace-elements/base/connectors/types.d.ts +1476 -55
- package/dist/index.browser.d.mts +1721 -59
- package/dist/index.browser.d.ts +1721 -59
- package/dist/index.browser.js +196 -8
- package/dist/index.browser.js.map +1 -1
- package/dist/index.browser.mjs +174 -9
- package/dist/index.browser.mjs.map +1 -1
- package/dist/index.node.d.mts +1722 -59
- package/dist/index.node.d.ts +1722 -59
- package/dist/index.node.js +203 -8
- package/dist/index.node.js.map +1 -1
- package/dist/index.node.mjs +181 -9
- package/dist/index.node.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.browser.d.mts
CHANGED
|
@@ -522,8 +522,8 @@ declare const ActionExportProperties: z.ZodObject<{
|
|
|
522
522
|
meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
523
523
|
integrationUuid: z.ZodOptional<z.ZodString>;
|
|
524
524
|
parentUuid: z.ZodOptional<z.ZodString>;
|
|
525
|
-
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
526
525
|
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
526
|
+
inputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
527
527
|
customOutputSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
528
528
|
}, z.core.$strip>;
|
|
529
529
|
type ActionExportProperties = z.infer<typeof ActionExportProperties>;
|
|
@@ -1783,6 +1783,429 @@ declare enum ConnectorStatus {
|
|
|
1783
1783
|
beta = "beta",
|
|
1784
1784
|
planned = "planned"
|
|
1785
1785
|
}
|
|
1786
|
+
declare const ConnectorAuthWithFunctions: z.ZodObject<{
|
|
1787
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1788
|
+
proxy: "proxy";
|
|
1789
|
+
"integration-app-token": "integration-app-token";
|
|
1790
|
+
"membrane-token": "membrane-token";
|
|
1791
|
+
oauth2: "oauth2";
|
|
1792
|
+
oauth1: "oauth1";
|
|
1793
|
+
"client-credentials": "client-credentials";
|
|
1794
|
+
}>>;
|
|
1795
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1796
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
1797
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1798
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1799
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
1800
|
+
}, z.core.$strip>>;
|
|
1801
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
1802
|
+
type: z.ZodEnum<{
|
|
1803
|
+
mapping: "mapping";
|
|
1804
|
+
"operation-mapping": "operation-mapping";
|
|
1805
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1806
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1807
|
+
javascript: "javascript";
|
|
1808
|
+
}>;
|
|
1809
|
+
}, z.core.$loose>>;
|
|
1810
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
1811
|
+
type: z.ZodEnum<{
|
|
1812
|
+
mapping: "mapping";
|
|
1813
|
+
"operation-mapping": "operation-mapping";
|
|
1814
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1815
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1816
|
+
javascript: "javascript";
|
|
1817
|
+
}>;
|
|
1818
|
+
}, z.core.$loose>>;
|
|
1819
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
1820
|
+
type: z.ZodEnum<{
|
|
1821
|
+
mapping: "mapping";
|
|
1822
|
+
"operation-mapping": "operation-mapping";
|
|
1823
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1824
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1825
|
+
javascript: "javascript";
|
|
1826
|
+
}>;
|
|
1827
|
+
}, z.core.$loose>>;
|
|
1828
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
1829
|
+
type: z.ZodEnum<{
|
|
1830
|
+
mapping: "mapping";
|
|
1831
|
+
"operation-mapping": "operation-mapping";
|
|
1832
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1833
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1834
|
+
javascript: "javascript";
|
|
1835
|
+
}>;
|
|
1836
|
+
}, z.core.$loose>>;
|
|
1837
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
1838
|
+
type: z.ZodEnum<{
|
|
1839
|
+
mapping: "mapping";
|
|
1840
|
+
"operation-mapping": "operation-mapping";
|
|
1841
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1842
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1843
|
+
javascript: "javascript";
|
|
1844
|
+
}>;
|
|
1845
|
+
}, z.core.$loose>>;
|
|
1846
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
1847
|
+
type: z.ZodEnum<{
|
|
1848
|
+
mapping: "mapping";
|
|
1849
|
+
"operation-mapping": "operation-mapping";
|
|
1850
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1851
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1852
|
+
javascript: "javascript";
|
|
1853
|
+
}>;
|
|
1854
|
+
}, z.core.$loose>>;
|
|
1855
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
1856
|
+
type: z.ZodEnum<{
|
|
1857
|
+
mapping: "mapping";
|
|
1858
|
+
"operation-mapping": "operation-mapping";
|
|
1859
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1860
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1861
|
+
javascript: "javascript";
|
|
1862
|
+
}>;
|
|
1863
|
+
}, z.core.$loose>>;
|
|
1864
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
}, z.core.$strip>;
|
|
1866
|
+
type ConnectorAuthWithFunctions = z.infer<typeof ConnectorAuthWithFunctions>;
|
|
1867
|
+
declare const ConnectorOption: z.ZodObject<{
|
|
1868
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1869
|
+
proxy: "proxy";
|
|
1870
|
+
"integration-app-token": "integration-app-token";
|
|
1871
|
+
"membrane-token": "membrane-token";
|
|
1872
|
+
oauth2: "oauth2";
|
|
1873
|
+
oauth1: "oauth1";
|
|
1874
|
+
"client-credentials": "client-credentials";
|
|
1875
|
+
}>>;
|
|
1876
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1877
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
1878
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1879
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1880
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
1881
|
+
}, z.core.$strip>>;
|
|
1882
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
1883
|
+
type: z.ZodEnum<{
|
|
1884
|
+
mapping: "mapping";
|
|
1885
|
+
"operation-mapping": "operation-mapping";
|
|
1886
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1887
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1888
|
+
javascript: "javascript";
|
|
1889
|
+
}>;
|
|
1890
|
+
}, z.core.$loose>>;
|
|
1891
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
1892
|
+
type: z.ZodEnum<{
|
|
1893
|
+
mapping: "mapping";
|
|
1894
|
+
"operation-mapping": "operation-mapping";
|
|
1895
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1896
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1897
|
+
javascript: "javascript";
|
|
1898
|
+
}>;
|
|
1899
|
+
}, z.core.$loose>>;
|
|
1900
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
1901
|
+
type: z.ZodEnum<{
|
|
1902
|
+
mapping: "mapping";
|
|
1903
|
+
"operation-mapping": "operation-mapping";
|
|
1904
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1905
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1906
|
+
javascript: "javascript";
|
|
1907
|
+
}>;
|
|
1908
|
+
}, z.core.$loose>>;
|
|
1909
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
1910
|
+
type: z.ZodEnum<{
|
|
1911
|
+
mapping: "mapping";
|
|
1912
|
+
"operation-mapping": "operation-mapping";
|
|
1913
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1914
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1915
|
+
javascript: "javascript";
|
|
1916
|
+
}>;
|
|
1917
|
+
}, z.core.$loose>>;
|
|
1918
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
1919
|
+
type: z.ZodEnum<{
|
|
1920
|
+
mapping: "mapping";
|
|
1921
|
+
"operation-mapping": "operation-mapping";
|
|
1922
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1923
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1924
|
+
javascript: "javascript";
|
|
1925
|
+
}>;
|
|
1926
|
+
}, z.core.$loose>>;
|
|
1927
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
1928
|
+
type: z.ZodEnum<{
|
|
1929
|
+
mapping: "mapping";
|
|
1930
|
+
"operation-mapping": "operation-mapping";
|
|
1931
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1932
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1933
|
+
javascript: "javascript";
|
|
1934
|
+
}>;
|
|
1935
|
+
}, z.core.$loose>>;
|
|
1936
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
1937
|
+
type: z.ZodEnum<{
|
|
1938
|
+
mapping: "mapping";
|
|
1939
|
+
"operation-mapping": "operation-mapping";
|
|
1940
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1941
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1942
|
+
javascript: "javascript";
|
|
1943
|
+
}>;
|
|
1944
|
+
}, z.core.$loose>>;
|
|
1945
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
1946
|
+
title: z.ZodOptional<z.ZodString>;
|
|
1947
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1948
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
1949
|
+
}, z.core.$strip>;
|
|
1950
|
+
type ConnectorOption = z.infer<typeof ConnectorOption>;
|
|
1951
|
+
declare const ConnectorOptions: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1952
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
1953
|
+
proxy: "proxy";
|
|
1954
|
+
"integration-app-token": "integration-app-token";
|
|
1955
|
+
"membrane-token": "membrane-token";
|
|
1956
|
+
oauth2: "oauth2";
|
|
1957
|
+
oauth1: "oauth1";
|
|
1958
|
+
"client-credentials": "client-credentials";
|
|
1959
|
+
}>>;
|
|
1960
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1961
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
1962
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1963
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1964
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
1965
|
+
}, z.core.$strip>>;
|
|
1966
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
1967
|
+
type: z.ZodEnum<{
|
|
1968
|
+
mapping: "mapping";
|
|
1969
|
+
"operation-mapping": "operation-mapping";
|
|
1970
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1971
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1972
|
+
javascript: "javascript";
|
|
1973
|
+
}>;
|
|
1974
|
+
}, z.core.$loose>>;
|
|
1975
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
1976
|
+
type: z.ZodEnum<{
|
|
1977
|
+
mapping: "mapping";
|
|
1978
|
+
"operation-mapping": "operation-mapping";
|
|
1979
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1980
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1981
|
+
javascript: "javascript";
|
|
1982
|
+
}>;
|
|
1983
|
+
}, z.core.$loose>>;
|
|
1984
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
1985
|
+
type: z.ZodEnum<{
|
|
1986
|
+
mapping: "mapping";
|
|
1987
|
+
"operation-mapping": "operation-mapping";
|
|
1988
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1989
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1990
|
+
javascript: "javascript";
|
|
1991
|
+
}>;
|
|
1992
|
+
}, z.core.$loose>>;
|
|
1993
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
1994
|
+
type: z.ZodEnum<{
|
|
1995
|
+
mapping: "mapping";
|
|
1996
|
+
"operation-mapping": "operation-mapping";
|
|
1997
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
1998
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
1999
|
+
javascript: "javascript";
|
|
2000
|
+
}>;
|
|
2001
|
+
}, z.core.$loose>>;
|
|
2002
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2003
|
+
type: z.ZodEnum<{
|
|
2004
|
+
mapping: "mapping";
|
|
2005
|
+
"operation-mapping": "operation-mapping";
|
|
2006
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2007
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2008
|
+
javascript: "javascript";
|
|
2009
|
+
}>;
|
|
2010
|
+
}, z.core.$loose>>;
|
|
2011
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2012
|
+
type: z.ZodEnum<{
|
|
2013
|
+
mapping: "mapping";
|
|
2014
|
+
"operation-mapping": "operation-mapping";
|
|
2015
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2016
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2017
|
+
javascript: "javascript";
|
|
2018
|
+
}>;
|
|
2019
|
+
}, z.core.$loose>>;
|
|
2020
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2021
|
+
type: z.ZodEnum<{
|
|
2022
|
+
mapping: "mapping";
|
|
2023
|
+
"operation-mapping": "operation-mapping";
|
|
2024
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2025
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2026
|
+
javascript: "javascript";
|
|
2027
|
+
}>;
|
|
2028
|
+
}, z.core.$loose>>;
|
|
2029
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2030
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2031
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2032
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2033
|
+
}, z.core.$strip>>;
|
|
2034
|
+
type ConnectorOptions = z.infer<typeof ConnectorOptions>;
|
|
2035
|
+
declare const WritableConnectorVersionData: z.ZodObject<{
|
|
2036
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2037
|
+
proxy: "proxy";
|
|
2038
|
+
"integration-app-token": "integration-app-token";
|
|
2039
|
+
"membrane-token": "membrane-token";
|
|
2040
|
+
oauth2: "oauth2";
|
|
2041
|
+
oauth1: "oauth1";
|
|
2042
|
+
"client-credentials": "client-credentials";
|
|
2043
|
+
}>>;
|
|
2044
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2045
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2046
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2047
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2048
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2049
|
+
}, z.core.$strip>>;
|
|
2050
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2051
|
+
type: z.ZodEnum<{
|
|
2052
|
+
mapping: "mapping";
|
|
2053
|
+
"operation-mapping": "operation-mapping";
|
|
2054
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2055
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2056
|
+
javascript: "javascript";
|
|
2057
|
+
}>;
|
|
2058
|
+
}, z.core.$loose>>;
|
|
2059
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2060
|
+
type: z.ZodEnum<{
|
|
2061
|
+
mapping: "mapping";
|
|
2062
|
+
"operation-mapping": "operation-mapping";
|
|
2063
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2064
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2065
|
+
javascript: "javascript";
|
|
2066
|
+
}>;
|
|
2067
|
+
}, z.core.$loose>>;
|
|
2068
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2069
|
+
type: z.ZodEnum<{
|
|
2070
|
+
mapping: "mapping";
|
|
2071
|
+
"operation-mapping": "operation-mapping";
|
|
2072
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2073
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2074
|
+
javascript: "javascript";
|
|
2075
|
+
}>;
|
|
2076
|
+
}, z.core.$loose>>;
|
|
2077
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2078
|
+
type: z.ZodEnum<{
|
|
2079
|
+
mapping: "mapping";
|
|
2080
|
+
"operation-mapping": "operation-mapping";
|
|
2081
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2082
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2083
|
+
javascript: "javascript";
|
|
2084
|
+
}>;
|
|
2085
|
+
}, z.core.$loose>>;
|
|
2086
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2087
|
+
type: z.ZodEnum<{
|
|
2088
|
+
mapping: "mapping";
|
|
2089
|
+
"operation-mapping": "operation-mapping";
|
|
2090
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2091
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2092
|
+
javascript: "javascript";
|
|
2093
|
+
}>;
|
|
2094
|
+
}, z.core.$loose>>;
|
|
2095
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2096
|
+
type: z.ZodEnum<{
|
|
2097
|
+
mapping: "mapping";
|
|
2098
|
+
"operation-mapping": "operation-mapping";
|
|
2099
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2100
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2101
|
+
javascript: "javascript";
|
|
2102
|
+
}>;
|
|
2103
|
+
}, z.core.$loose>>;
|
|
2104
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2105
|
+
type: z.ZodEnum<{
|
|
2106
|
+
mapping: "mapping";
|
|
2107
|
+
"operation-mapping": "operation-mapping";
|
|
2108
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2109
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2110
|
+
javascript: "javascript";
|
|
2111
|
+
}>;
|
|
2112
|
+
}, z.core.$loose>>;
|
|
2113
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2114
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2115
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
2116
|
+
type: z.ZodEnum<{
|
|
2117
|
+
mapping: "mapping";
|
|
2118
|
+
"operation-mapping": "operation-mapping";
|
|
2119
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2120
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2121
|
+
javascript: "javascript";
|
|
2122
|
+
}>;
|
|
2123
|
+
}, z.core.$loose>>;
|
|
2124
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2125
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2126
|
+
proxy: "proxy";
|
|
2127
|
+
"integration-app-token": "integration-app-token";
|
|
2128
|
+
"membrane-token": "membrane-token";
|
|
2129
|
+
oauth2: "oauth2";
|
|
2130
|
+
oauth1: "oauth1";
|
|
2131
|
+
"client-credentials": "client-credentials";
|
|
2132
|
+
}>>;
|
|
2133
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2134
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2135
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2136
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2137
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2138
|
+
}, z.core.$strip>>;
|
|
2139
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2140
|
+
type: z.ZodEnum<{
|
|
2141
|
+
mapping: "mapping";
|
|
2142
|
+
"operation-mapping": "operation-mapping";
|
|
2143
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2144
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2145
|
+
javascript: "javascript";
|
|
2146
|
+
}>;
|
|
2147
|
+
}, z.core.$loose>>;
|
|
2148
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2149
|
+
type: z.ZodEnum<{
|
|
2150
|
+
mapping: "mapping";
|
|
2151
|
+
"operation-mapping": "operation-mapping";
|
|
2152
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2153
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2154
|
+
javascript: "javascript";
|
|
2155
|
+
}>;
|
|
2156
|
+
}, z.core.$loose>>;
|
|
2157
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2158
|
+
type: z.ZodEnum<{
|
|
2159
|
+
mapping: "mapping";
|
|
2160
|
+
"operation-mapping": "operation-mapping";
|
|
2161
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2162
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2163
|
+
javascript: "javascript";
|
|
2164
|
+
}>;
|
|
2165
|
+
}, z.core.$loose>>;
|
|
2166
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2167
|
+
type: z.ZodEnum<{
|
|
2168
|
+
mapping: "mapping";
|
|
2169
|
+
"operation-mapping": "operation-mapping";
|
|
2170
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2171
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2172
|
+
javascript: "javascript";
|
|
2173
|
+
}>;
|
|
2174
|
+
}, z.core.$loose>>;
|
|
2175
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2176
|
+
type: z.ZodEnum<{
|
|
2177
|
+
mapping: "mapping";
|
|
2178
|
+
"operation-mapping": "operation-mapping";
|
|
2179
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2180
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2181
|
+
javascript: "javascript";
|
|
2182
|
+
}>;
|
|
2183
|
+
}, z.core.$loose>>;
|
|
2184
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2185
|
+
type: z.ZodEnum<{
|
|
2186
|
+
mapping: "mapping";
|
|
2187
|
+
"operation-mapping": "operation-mapping";
|
|
2188
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2189
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2190
|
+
javascript: "javascript";
|
|
2191
|
+
}>;
|
|
2192
|
+
}, z.core.$loose>>;
|
|
2193
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2194
|
+
type: z.ZodEnum<{
|
|
2195
|
+
mapping: "mapping";
|
|
2196
|
+
"operation-mapping": "operation-mapping";
|
|
2197
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2198
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2199
|
+
javascript: "javascript";
|
|
2200
|
+
}>;
|
|
2201
|
+
}, z.core.$loose>>;
|
|
2202
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2203
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2204
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2205
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2206
|
+
}, z.core.$strip>>>;
|
|
2207
|
+
}, z.core.$strip>;
|
|
2208
|
+
type WritableConnectorVersionData = z.infer<typeof WritableConnectorVersionData>;
|
|
1786
2209
|
declare const ConnectorVersionData: z.ZodObject<{
|
|
1787
2210
|
baseUri: z.ZodString;
|
|
1788
2211
|
revision: z.ZodOptional<z.ZodString>;
|
|
@@ -1796,6 +2219,178 @@ declare const ConnectorVersionData: z.ZodObject<{
|
|
|
1796
2219
|
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
1797
2220
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1798
2221
|
version: z.ZodString;
|
|
2222
|
+
credentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2223
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2224
|
+
proxy: "proxy";
|
|
2225
|
+
"integration-app-token": "integration-app-token";
|
|
2226
|
+
"membrane-token": "membrane-token";
|
|
2227
|
+
oauth2: "oauth2";
|
|
2228
|
+
oauth1: "oauth1";
|
|
2229
|
+
"client-credentials": "client-credentials";
|
|
2230
|
+
}>>;
|
|
2231
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2232
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2233
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2234
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2235
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2236
|
+
}, z.core.$strip>>;
|
|
2237
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2238
|
+
type: z.ZodEnum<{
|
|
2239
|
+
mapping: "mapping";
|
|
2240
|
+
"operation-mapping": "operation-mapping";
|
|
2241
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2242
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2243
|
+
javascript: "javascript";
|
|
2244
|
+
}>;
|
|
2245
|
+
}, z.core.$loose>>;
|
|
2246
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2247
|
+
type: z.ZodEnum<{
|
|
2248
|
+
mapping: "mapping";
|
|
2249
|
+
"operation-mapping": "operation-mapping";
|
|
2250
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2251
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2252
|
+
javascript: "javascript";
|
|
2253
|
+
}>;
|
|
2254
|
+
}, z.core.$loose>>;
|
|
2255
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2256
|
+
type: z.ZodEnum<{
|
|
2257
|
+
mapping: "mapping";
|
|
2258
|
+
"operation-mapping": "operation-mapping";
|
|
2259
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2260
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2261
|
+
javascript: "javascript";
|
|
2262
|
+
}>;
|
|
2263
|
+
}, z.core.$loose>>;
|
|
2264
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2265
|
+
type: z.ZodEnum<{
|
|
2266
|
+
mapping: "mapping";
|
|
2267
|
+
"operation-mapping": "operation-mapping";
|
|
2268
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2269
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2270
|
+
javascript: "javascript";
|
|
2271
|
+
}>;
|
|
2272
|
+
}, z.core.$loose>>;
|
|
2273
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2274
|
+
type: z.ZodEnum<{
|
|
2275
|
+
mapping: "mapping";
|
|
2276
|
+
"operation-mapping": "operation-mapping";
|
|
2277
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2278
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2279
|
+
javascript: "javascript";
|
|
2280
|
+
}>;
|
|
2281
|
+
}, z.core.$loose>>;
|
|
2282
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2283
|
+
type: z.ZodEnum<{
|
|
2284
|
+
mapping: "mapping";
|
|
2285
|
+
"operation-mapping": "operation-mapping";
|
|
2286
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2287
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2288
|
+
javascript: "javascript";
|
|
2289
|
+
}>;
|
|
2290
|
+
}, z.core.$loose>>;
|
|
2291
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2292
|
+
type: z.ZodEnum<{
|
|
2293
|
+
mapping: "mapping";
|
|
2294
|
+
"operation-mapping": "operation-mapping";
|
|
2295
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2296
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2297
|
+
javascript: "javascript";
|
|
2298
|
+
}>;
|
|
2299
|
+
}, z.core.$loose>>;
|
|
2300
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2301
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2302
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
2303
|
+
type: z.ZodEnum<{
|
|
2304
|
+
mapping: "mapping";
|
|
2305
|
+
"operation-mapping": "operation-mapping";
|
|
2306
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2307
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2308
|
+
javascript: "javascript";
|
|
2309
|
+
}>;
|
|
2310
|
+
}, z.core.$loose>>;
|
|
2311
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2312
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2313
|
+
proxy: "proxy";
|
|
2314
|
+
"integration-app-token": "integration-app-token";
|
|
2315
|
+
"membrane-token": "membrane-token";
|
|
2316
|
+
oauth2: "oauth2";
|
|
2317
|
+
oauth1: "oauth1";
|
|
2318
|
+
"client-credentials": "client-credentials";
|
|
2319
|
+
}>>;
|
|
2320
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2321
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2322
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2323
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2324
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2325
|
+
}, z.core.$strip>>;
|
|
2326
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2327
|
+
type: z.ZodEnum<{
|
|
2328
|
+
mapping: "mapping";
|
|
2329
|
+
"operation-mapping": "operation-mapping";
|
|
2330
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2331
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2332
|
+
javascript: "javascript";
|
|
2333
|
+
}>;
|
|
2334
|
+
}, z.core.$loose>>;
|
|
2335
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2336
|
+
type: z.ZodEnum<{
|
|
2337
|
+
mapping: "mapping";
|
|
2338
|
+
"operation-mapping": "operation-mapping";
|
|
2339
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2340
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2341
|
+
javascript: "javascript";
|
|
2342
|
+
}>;
|
|
2343
|
+
}, z.core.$loose>>;
|
|
2344
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2345
|
+
type: z.ZodEnum<{
|
|
2346
|
+
mapping: "mapping";
|
|
2347
|
+
"operation-mapping": "operation-mapping";
|
|
2348
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2349
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2350
|
+
javascript: "javascript";
|
|
2351
|
+
}>;
|
|
2352
|
+
}, z.core.$loose>>;
|
|
2353
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2354
|
+
type: z.ZodEnum<{
|
|
2355
|
+
mapping: "mapping";
|
|
2356
|
+
"operation-mapping": "operation-mapping";
|
|
2357
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2358
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2359
|
+
javascript: "javascript";
|
|
2360
|
+
}>;
|
|
2361
|
+
}, z.core.$loose>>;
|
|
2362
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2363
|
+
type: z.ZodEnum<{
|
|
2364
|
+
mapping: "mapping";
|
|
2365
|
+
"operation-mapping": "operation-mapping";
|
|
2366
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2367
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2368
|
+
javascript: "javascript";
|
|
2369
|
+
}>;
|
|
2370
|
+
}, z.core.$loose>>;
|
|
2371
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2372
|
+
type: z.ZodEnum<{
|
|
2373
|
+
mapping: "mapping";
|
|
2374
|
+
"operation-mapping": "operation-mapping";
|
|
2375
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2376
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2377
|
+
javascript: "javascript";
|
|
2378
|
+
}>;
|
|
2379
|
+
}, z.core.$loose>>;
|
|
2380
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2381
|
+
type: z.ZodEnum<{
|
|
2382
|
+
mapping: "mapping";
|
|
2383
|
+
"operation-mapping": "operation-mapping";
|
|
2384
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2385
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2386
|
+
javascript: "javascript";
|
|
2387
|
+
}>;
|
|
2388
|
+
}, z.core.$loose>>;
|
|
2389
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2390
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2391
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2392
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2393
|
+
}, z.core.$strip>>>;
|
|
1799
2394
|
}, z.core.$strip>;
|
|
1800
2395
|
declare const ConnectorVersion: z.ZodObject<{
|
|
1801
2396
|
baseUri: z.ZodString;
|
|
@@ -1810,11 +2405,720 @@ declare const ConnectorVersion: z.ZodObject<{
|
|
|
1810
2405
|
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
1811
2406
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
1812
2407
|
version: z.ZodString;
|
|
2408
|
+
credentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2409
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2410
|
+
proxy: "proxy";
|
|
2411
|
+
"integration-app-token": "integration-app-token";
|
|
2412
|
+
"membrane-token": "membrane-token";
|
|
2413
|
+
oauth2: "oauth2";
|
|
2414
|
+
oauth1: "oauth1";
|
|
2415
|
+
"client-credentials": "client-credentials";
|
|
2416
|
+
}>>;
|
|
2417
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2418
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2419
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2420
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2421
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2422
|
+
}, z.core.$strip>>;
|
|
2423
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2424
|
+
type: z.ZodEnum<{
|
|
2425
|
+
mapping: "mapping";
|
|
2426
|
+
"operation-mapping": "operation-mapping";
|
|
2427
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2428
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2429
|
+
javascript: "javascript";
|
|
2430
|
+
}>;
|
|
2431
|
+
}, z.core.$loose>>;
|
|
2432
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2433
|
+
type: z.ZodEnum<{
|
|
2434
|
+
mapping: "mapping";
|
|
2435
|
+
"operation-mapping": "operation-mapping";
|
|
2436
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2437
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2438
|
+
javascript: "javascript";
|
|
2439
|
+
}>;
|
|
2440
|
+
}, z.core.$loose>>;
|
|
2441
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2442
|
+
type: z.ZodEnum<{
|
|
2443
|
+
mapping: "mapping";
|
|
2444
|
+
"operation-mapping": "operation-mapping";
|
|
2445
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2446
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2447
|
+
javascript: "javascript";
|
|
2448
|
+
}>;
|
|
2449
|
+
}, z.core.$loose>>;
|
|
2450
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2451
|
+
type: z.ZodEnum<{
|
|
2452
|
+
mapping: "mapping";
|
|
2453
|
+
"operation-mapping": "operation-mapping";
|
|
2454
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2455
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2456
|
+
javascript: "javascript";
|
|
2457
|
+
}>;
|
|
2458
|
+
}, z.core.$loose>>;
|
|
2459
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2460
|
+
type: z.ZodEnum<{
|
|
2461
|
+
mapping: "mapping";
|
|
2462
|
+
"operation-mapping": "operation-mapping";
|
|
2463
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2464
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2465
|
+
javascript: "javascript";
|
|
2466
|
+
}>;
|
|
2467
|
+
}, z.core.$loose>>;
|
|
2468
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2469
|
+
type: z.ZodEnum<{
|
|
2470
|
+
mapping: "mapping";
|
|
2471
|
+
"operation-mapping": "operation-mapping";
|
|
2472
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2473
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2474
|
+
javascript: "javascript";
|
|
2475
|
+
}>;
|
|
2476
|
+
}, z.core.$loose>>;
|
|
2477
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2478
|
+
type: z.ZodEnum<{
|
|
2479
|
+
mapping: "mapping";
|
|
2480
|
+
"operation-mapping": "operation-mapping";
|
|
2481
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2482
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2483
|
+
javascript: "javascript";
|
|
2484
|
+
}>;
|
|
2485
|
+
}, z.core.$loose>>;
|
|
2486
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2487
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2488
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
2489
|
+
type: z.ZodEnum<{
|
|
2490
|
+
mapping: "mapping";
|
|
2491
|
+
"operation-mapping": "operation-mapping";
|
|
2492
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2493
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2494
|
+
javascript: "javascript";
|
|
2495
|
+
}>;
|
|
2496
|
+
}, z.core.$loose>>;
|
|
2497
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2498
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2499
|
+
proxy: "proxy";
|
|
2500
|
+
"integration-app-token": "integration-app-token";
|
|
2501
|
+
"membrane-token": "membrane-token";
|
|
2502
|
+
oauth2: "oauth2";
|
|
2503
|
+
oauth1: "oauth1";
|
|
2504
|
+
"client-credentials": "client-credentials";
|
|
2505
|
+
}>>;
|
|
2506
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2507
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2508
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2509
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2510
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2511
|
+
}, z.core.$strip>>;
|
|
2512
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2513
|
+
type: z.ZodEnum<{
|
|
2514
|
+
mapping: "mapping";
|
|
2515
|
+
"operation-mapping": "operation-mapping";
|
|
2516
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2517
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2518
|
+
javascript: "javascript";
|
|
2519
|
+
}>;
|
|
2520
|
+
}, z.core.$loose>>;
|
|
2521
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2522
|
+
type: z.ZodEnum<{
|
|
2523
|
+
mapping: "mapping";
|
|
2524
|
+
"operation-mapping": "operation-mapping";
|
|
2525
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2526
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2527
|
+
javascript: "javascript";
|
|
2528
|
+
}>;
|
|
2529
|
+
}, z.core.$loose>>;
|
|
2530
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2531
|
+
type: z.ZodEnum<{
|
|
2532
|
+
mapping: "mapping";
|
|
2533
|
+
"operation-mapping": "operation-mapping";
|
|
2534
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2535
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2536
|
+
javascript: "javascript";
|
|
2537
|
+
}>;
|
|
2538
|
+
}, z.core.$loose>>;
|
|
2539
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2540
|
+
type: z.ZodEnum<{
|
|
2541
|
+
mapping: "mapping";
|
|
2542
|
+
"operation-mapping": "operation-mapping";
|
|
2543
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2544
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2545
|
+
javascript: "javascript";
|
|
2546
|
+
}>;
|
|
2547
|
+
}, z.core.$loose>>;
|
|
2548
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2549
|
+
type: z.ZodEnum<{
|
|
2550
|
+
mapping: "mapping";
|
|
2551
|
+
"operation-mapping": "operation-mapping";
|
|
2552
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2553
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2554
|
+
javascript: "javascript";
|
|
2555
|
+
}>;
|
|
2556
|
+
}, z.core.$loose>>;
|
|
2557
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2558
|
+
type: z.ZodEnum<{
|
|
2559
|
+
mapping: "mapping";
|
|
2560
|
+
"operation-mapping": "operation-mapping";
|
|
2561
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2562
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2563
|
+
javascript: "javascript";
|
|
2564
|
+
}>;
|
|
2565
|
+
}, z.core.$loose>>;
|
|
2566
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2567
|
+
type: z.ZodEnum<{
|
|
2568
|
+
mapping: "mapping";
|
|
2569
|
+
"operation-mapping": "operation-mapping";
|
|
2570
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2571
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2572
|
+
javascript: "javascript";
|
|
2573
|
+
}>;
|
|
2574
|
+
}, z.core.$loose>>;
|
|
2575
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2576
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2577
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2578
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2579
|
+
}, z.core.$strip>>>;
|
|
1813
2580
|
id: z.ZodString;
|
|
1814
2581
|
connectorId: z.ZodString;
|
|
1815
2582
|
changelog: z.ZodString;
|
|
1816
2583
|
}, z.core.$strip>;
|
|
1817
|
-
type ConnectorVersion = z.infer<typeof ConnectorVersion>;
|
|
2584
|
+
type ConnectorVersion = z.infer<typeof ConnectorVersion>;
|
|
2585
|
+
declare const WriteableConnectorFields: z.ZodObject<{
|
|
2586
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2587
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2588
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
2589
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
2590
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2591
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2592
|
+
proxy: "proxy";
|
|
2593
|
+
"integration-app-token": "integration-app-token";
|
|
2594
|
+
"membrane-token": "membrane-token";
|
|
2595
|
+
oauth2: "oauth2";
|
|
2596
|
+
oauth1: "oauth1";
|
|
2597
|
+
"client-credentials": "client-credentials";
|
|
2598
|
+
}>>;
|
|
2599
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2600
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2601
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2602
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2603
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2604
|
+
}, z.core.$strip>>;
|
|
2605
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2606
|
+
type: z.ZodEnum<{
|
|
2607
|
+
mapping: "mapping";
|
|
2608
|
+
"operation-mapping": "operation-mapping";
|
|
2609
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2610
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2611
|
+
javascript: "javascript";
|
|
2612
|
+
}>;
|
|
2613
|
+
}, z.core.$loose>>;
|
|
2614
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2615
|
+
type: z.ZodEnum<{
|
|
2616
|
+
mapping: "mapping";
|
|
2617
|
+
"operation-mapping": "operation-mapping";
|
|
2618
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2619
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2620
|
+
javascript: "javascript";
|
|
2621
|
+
}>;
|
|
2622
|
+
}, z.core.$loose>>;
|
|
2623
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2624
|
+
type: z.ZodEnum<{
|
|
2625
|
+
mapping: "mapping";
|
|
2626
|
+
"operation-mapping": "operation-mapping";
|
|
2627
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2628
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2629
|
+
javascript: "javascript";
|
|
2630
|
+
}>;
|
|
2631
|
+
}, z.core.$loose>>;
|
|
2632
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2633
|
+
type: z.ZodEnum<{
|
|
2634
|
+
mapping: "mapping";
|
|
2635
|
+
"operation-mapping": "operation-mapping";
|
|
2636
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2637
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2638
|
+
javascript: "javascript";
|
|
2639
|
+
}>;
|
|
2640
|
+
}, z.core.$loose>>;
|
|
2641
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2642
|
+
type: z.ZodEnum<{
|
|
2643
|
+
mapping: "mapping";
|
|
2644
|
+
"operation-mapping": "operation-mapping";
|
|
2645
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2646
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2647
|
+
javascript: "javascript";
|
|
2648
|
+
}>;
|
|
2649
|
+
}, z.core.$loose>>;
|
|
2650
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2651
|
+
type: z.ZodEnum<{
|
|
2652
|
+
mapping: "mapping";
|
|
2653
|
+
"operation-mapping": "operation-mapping";
|
|
2654
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2655
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2656
|
+
javascript: "javascript";
|
|
2657
|
+
}>;
|
|
2658
|
+
}, z.core.$loose>>;
|
|
2659
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2660
|
+
type: z.ZodEnum<{
|
|
2661
|
+
mapping: "mapping";
|
|
2662
|
+
"operation-mapping": "operation-mapping";
|
|
2663
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2664
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2665
|
+
javascript: "javascript";
|
|
2666
|
+
}>;
|
|
2667
|
+
}, z.core.$loose>>;
|
|
2668
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2669
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2670
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
2671
|
+
type: z.ZodEnum<{
|
|
2672
|
+
mapping: "mapping";
|
|
2673
|
+
"operation-mapping": "operation-mapping";
|
|
2674
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2675
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2676
|
+
javascript: "javascript";
|
|
2677
|
+
}>;
|
|
2678
|
+
}, z.core.$loose>>;
|
|
2679
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2680
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2681
|
+
proxy: "proxy";
|
|
2682
|
+
"integration-app-token": "integration-app-token";
|
|
2683
|
+
"membrane-token": "membrane-token";
|
|
2684
|
+
oauth2: "oauth2";
|
|
2685
|
+
oauth1: "oauth1";
|
|
2686
|
+
"client-credentials": "client-credentials";
|
|
2687
|
+
}>>;
|
|
2688
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2689
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2690
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2691
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2692
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2693
|
+
}, z.core.$strip>>;
|
|
2694
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2695
|
+
type: z.ZodEnum<{
|
|
2696
|
+
mapping: "mapping";
|
|
2697
|
+
"operation-mapping": "operation-mapping";
|
|
2698
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2699
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2700
|
+
javascript: "javascript";
|
|
2701
|
+
}>;
|
|
2702
|
+
}, z.core.$loose>>;
|
|
2703
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2704
|
+
type: z.ZodEnum<{
|
|
2705
|
+
mapping: "mapping";
|
|
2706
|
+
"operation-mapping": "operation-mapping";
|
|
2707
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2708
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2709
|
+
javascript: "javascript";
|
|
2710
|
+
}>;
|
|
2711
|
+
}, z.core.$loose>>;
|
|
2712
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2713
|
+
type: z.ZodEnum<{
|
|
2714
|
+
mapping: "mapping";
|
|
2715
|
+
"operation-mapping": "operation-mapping";
|
|
2716
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2717
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2718
|
+
javascript: "javascript";
|
|
2719
|
+
}>;
|
|
2720
|
+
}, z.core.$loose>>;
|
|
2721
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2722
|
+
type: z.ZodEnum<{
|
|
2723
|
+
mapping: "mapping";
|
|
2724
|
+
"operation-mapping": "operation-mapping";
|
|
2725
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2726
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2727
|
+
javascript: "javascript";
|
|
2728
|
+
}>;
|
|
2729
|
+
}, z.core.$loose>>;
|
|
2730
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2731
|
+
type: z.ZodEnum<{
|
|
2732
|
+
mapping: "mapping";
|
|
2733
|
+
"operation-mapping": "operation-mapping";
|
|
2734
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2735
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2736
|
+
javascript: "javascript";
|
|
2737
|
+
}>;
|
|
2738
|
+
}, z.core.$loose>>;
|
|
2739
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2740
|
+
type: z.ZodEnum<{
|
|
2741
|
+
mapping: "mapping";
|
|
2742
|
+
"operation-mapping": "operation-mapping";
|
|
2743
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2744
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2745
|
+
javascript: "javascript";
|
|
2746
|
+
}>;
|
|
2747
|
+
}, z.core.$loose>>;
|
|
2748
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2749
|
+
type: z.ZodEnum<{
|
|
2750
|
+
mapping: "mapping";
|
|
2751
|
+
"operation-mapping": "operation-mapping";
|
|
2752
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2753
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2754
|
+
javascript: "javascript";
|
|
2755
|
+
}>;
|
|
2756
|
+
}, z.core.$loose>>;
|
|
2757
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2758
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2759
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2760
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2761
|
+
}, z.core.$strip>>>;
|
|
2762
|
+
}, z.core.$strip>;
|
|
2763
|
+
declare const UpdateConnectorRequest: z.ZodObject<{
|
|
2764
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2765
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2766
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
2767
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
2768
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2769
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2770
|
+
proxy: "proxy";
|
|
2771
|
+
"integration-app-token": "integration-app-token";
|
|
2772
|
+
"membrane-token": "membrane-token";
|
|
2773
|
+
oauth2: "oauth2";
|
|
2774
|
+
oauth1: "oauth1";
|
|
2775
|
+
"client-credentials": "client-credentials";
|
|
2776
|
+
}>>;
|
|
2777
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2778
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2779
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2780
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2781
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2782
|
+
}, z.core.$strip>>;
|
|
2783
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2784
|
+
type: z.ZodEnum<{
|
|
2785
|
+
mapping: "mapping";
|
|
2786
|
+
"operation-mapping": "operation-mapping";
|
|
2787
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2788
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2789
|
+
javascript: "javascript";
|
|
2790
|
+
}>;
|
|
2791
|
+
}, z.core.$loose>>;
|
|
2792
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2793
|
+
type: z.ZodEnum<{
|
|
2794
|
+
mapping: "mapping";
|
|
2795
|
+
"operation-mapping": "operation-mapping";
|
|
2796
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2797
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2798
|
+
javascript: "javascript";
|
|
2799
|
+
}>;
|
|
2800
|
+
}, z.core.$loose>>;
|
|
2801
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2802
|
+
type: z.ZodEnum<{
|
|
2803
|
+
mapping: "mapping";
|
|
2804
|
+
"operation-mapping": "operation-mapping";
|
|
2805
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2806
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2807
|
+
javascript: "javascript";
|
|
2808
|
+
}>;
|
|
2809
|
+
}, z.core.$loose>>;
|
|
2810
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2811
|
+
type: z.ZodEnum<{
|
|
2812
|
+
mapping: "mapping";
|
|
2813
|
+
"operation-mapping": "operation-mapping";
|
|
2814
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2815
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2816
|
+
javascript: "javascript";
|
|
2817
|
+
}>;
|
|
2818
|
+
}, z.core.$loose>>;
|
|
2819
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2820
|
+
type: z.ZodEnum<{
|
|
2821
|
+
mapping: "mapping";
|
|
2822
|
+
"operation-mapping": "operation-mapping";
|
|
2823
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2824
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2825
|
+
javascript: "javascript";
|
|
2826
|
+
}>;
|
|
2827
|
+
}, z.core.$loose>>;
|
|
2828
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2829
|
+
type: z.ZodEnum<{
|
|
2830
|
+
mapping: "mapping";
|
|
2831
|
+
"operation-mapping": "operation-mapping";
|
|
2832
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2833
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2834
|
+
javascript: "javascript";
|
|
2835
|
+
}>;
|
|
2836
|
+
}, z.core.$loose>>;
|
|
2837
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2838
|
+
type: z.ZodEnum<{
|
|
2839
|
+
mapping: "mapping";
|
|
2840
|
+
"operation-mapping": "operation-mapping";
|
|
2841
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2842
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2843
|
+
javascript: "javascript";
|
|
2844
|
+
}>;
|
|
2845
|
+
}, z.core.$loose>>;
|
|
2846
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2847
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2848
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
2849
|
+
type: z.ZodEnum<{
|
|
2850
|
+
mapping: "mapping";
|
|
2851
|
+
"operation-mapping": "operation-mapping";
|
|
2852
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2853
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2854
|
+
javascript: "javascript";
|
|
2855
|
+
}>;
|
|
2856
|
+
}, z.core.$loose>>;
|
|
2857
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2858
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2859
|
+
proxy: "proxy";
|
|
2860
|
+
"integration-app-token": "integration-app-token";
|
|
2861
|
+
"membrane-token": "membrane-token";
|
|
2862
|
+
oauth2: "oauth2";
|
|
2863
|
+
oauth1: "oauth1";
|
|
2864
|
+
"client-credentials": "client-credentials";
|
|
2865
|
+
}>>;
|
|
2866
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2867
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2868
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2869
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2870
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2871
|
+
}, z.core.$strip>>;
|
|
2872
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2873
|
+
type: z.ZodEnum<{
|
|
2874
|
+
mapping: "mapping";
|
|
2875
|
+
"operation-mapping": "operation-mapping";
|
|
2876
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2877
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2878
|
+
javascript: "javascript";
|
|
2879
|
+
}>;
|
|
2880
|
+
}, z.core.$loose>>;
|
|
2881
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2882
|
+
type: z.ZodEnum<{
|
|
2883
|
+
mapping: "mapping";
|
|
2884
|
+
"operation-mapping": "operation-mapping";
|
|
2885
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2886
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2887
|
+
javascript: "javascript";
|
|
2888
|
+
}>;
|
|
2889
|
+
}, z.core.$loose>>;
|
|
2890
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2891
|
+
type: z.ZodEnum<{
|
|
2892
|
+
mapping: "mapping";
|
|
2893
|
+
"operation-mapping": "operation-mapping";
|
|
2894
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2895
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2896
|
+
javascript: "javascript";
|
|
2897
|
+
}>;
|
|
2898
|
+
}, z.core.$loose>>;
|
|
2899
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2900
|
+
type: z.ZodEnum<{
|
|
2901
|
+
mapping: "mapping";
|
|
2902
|
+
"operation-mapping": "operation-mapping";
|
|
2903
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2904
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2905
|
+
javascript: "javascript";
|
|
2906
|
+
}>;
|
|
2907
|
+
}, z.core.$loose>>;
|
|
2908
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2909
|
+
type: z.ZodEnum<{
|
|
2910
|
+
mapping: "mapping";
|
|
2911
|
+
"operation-mapping": "operation-mapping";
|
|
2912
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2913
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2914
|
+
javascript: "javascript";
|
|
2915
|
+
}>;
|
|
2916
|
+
}, z.core.$loose>>;
|
|
2917
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2918
|
+
type: z.ZodEnum<{
|
|
2919
|
+
mapping: "mapping";
|
|
2920
|
+
"operation-mapping": "operation-mapping";
|
|
2921
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2922
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2923
|
+
javascript: "javascript";
|
|
2924
|
+
}>;
|
|
2925
|
+
}, z.core.$loose>>;
|
|
2926
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
2927
|
+
type: z.ZodEnum<{
|
|
2928
|
+
mapping: "mapping";
|
|
2929
|
+
"operation-mapping": "operation-mapping";
|
|
2930
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2931
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2932
|
+
javascript: "javascript";
|
|
2933
|
+
}>;
|
|
2934
|
+
}, z.core.$loose>>;
|
|
2935
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
2936
|
+
title: z.ZodOptional<z.ZodString>;
|
|
2937
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2938
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
2939
|
+
}, z.core.$strip>>>;
|
|
2940
|
+
}, z.core.$strip>;
|
|
2941
|
+
type UpdateConnectorRequest = z.infer<typeof UpdateConnectorRequest>;
|
|
2942
|
+
declare const CreateConnectorRequest: z.ZodObject<{
|
|
2943
|
+
key: z.ZodOptional<z.ZodString>;
|
|
2944
|
+
logoUri: z.ZodOptional<z.ZodString>;
|
|
2945
|
+
appUuid: z.ZodOptional<z.ZodString>;
|
|
2946
|
+
categories: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2947
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
2948
|
+
proxy: "proxy";
|
|
2949
|
+
"integration-app-token": "integration-app-token";
|
|
2950
|
+
"membrane-token": "membrane-token";
|
|
2951
|
+
oauth2: "oauth2";
|
|
2952
|
+
oauth1: "oauth1";
|
|
2953
|
+
"client-credentials": "client-credentials";
|
|
2954
|
+
}>>;
|
|
2955
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2956
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
2957
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2958
|
+
description: z.ZodOptional<z.ZodString>;
|
|
2959
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
2960
|
+
}, z.core.$strip>>;
|
|
2961
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
2962
|
+
type: z.ZodEnum<{
|
|
2963
|
+
mapping: "mapping";
|
|
2964
|
+
"operation-mapping": "operation-mapping";
|
|
2965
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2966
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2967
|
+
javascript: "javascript";
|
|
2968
|
+
}>;
|
|
2969
|
+
}, z.core.$loose>>;
|
|
2970
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
2971
|
+
type: z.ZodEnum<{
|
|
2972
|
+
mapping: "mapping";
|
|
2973
|
+
"operation-mapping": "operation-mapping";
|
|
2974
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2975
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2976
|
+
javascript: "javascript";
|
|
2977
|
+
}>;
|
|
2978
|
+
}, z.core.$loose>>;
|
|
2979
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
2980
|
+
type: z.ZodEnum<{
|
|
2981
|
+
mapping: "mapping";
|
|
2982
|
+
"operation-mapping": "operation-mapping";
|
|
2983
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2984
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2985
|
+
javascript: "javascript";
|
|
2986
|
+
}>;
|
|
2987
|
+
}, z.core.$loose>>;
|
|
2988
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
2989
|
+
type: z.ZodEnum<{
|
|
2990
|
+
mapping: "mapping";
|
|
2991
|
+
"operation-mapping": "operation-mapping";
|
|
2992
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
2993
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
2994
|
+
javascript: "javascript";
|
|
2995
|
+
}>;
|
|
2996
|
+
}, z.core.$loose>>;
|
|
2997
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
2998
|
+
type: z.ZodEnum<{
|
|
2999
|
+
mapping: "mapping";
|
|
3000
|
+
"operation-mapping": "operation-mapping";
|
|
3001
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3002
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3003
|
+
javascript: "javascript";
|
|
3004
|
+
}>;
|
|
3005
|
+
}, z.core.$loose>>;
|
|
3006
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
3007
|
+
type: z.ZodEnum<{
|
|
3008
|
+
mapping: "mapping";
|
|
3009
|
+
"operation-mapping": "operation-mapping";
|
|
3010
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3011
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3012
|
+
javascript: "javascript";
|
|
3013
|
+
}>;
|
|
3014
|
+
}, z.core.$loose>>;
|
|
3015
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
3016
|
+
type: z.ZodEnum<{
|
|
3017
|
+
mapping: "mapping";
|
|
3018
|
+
"operation-mapping": "operation-mapping";
|
|
3019
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3020
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3021
|
+
javascript: "javascript";
|
|
3022
|
+
}>;
|
|
3023
|
+
}, z.core.$loose>>;
|
|
3024
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
3025
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
3026
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
3027
|
+
type: z.ZodEnum<{
|
|
3028
|
+
mapping: "mapping";
|
|
3029
|
+
"operation-mapping": "operation-mapping";
|
|
3030
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3031
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3032
|
+
javascript: "javascript";
|
|
3033
|
+
}>;
|
|
3034
|
+
}, z.core.$loose>>;
|
|
3035
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3036
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
3037
|
+
proxy: "proxy";
|
|
3038
|
+
"integration-app-token": "integration-app-token";
|
|
3039
|
+
"membrane-token": "membrane-token";
|
|
3040
|
+
oauth2: "oauth2";
|
|
3041
|
+
oauth1: "oauth1";
|
|
3042
|
+
"client-credentials": "client-credentials";
|
|
3043
|
+
}>>;
|
|
3044
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
3045
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
3046
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
3047
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3048
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
3049
|
+
}, z.core.$strip>>;
|
|
3050
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
3051
|
+
type: z.ZodEnum<{
|
|
3052
|
+
mapping: "mapping";
|
|
3053
|
+
"operation-mapping": "operation-mapping";
|
|
3054
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3055
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3056
|
+
javascript: "javascript";
|
|
3057
|
+
}>;
|
|
3058
|
+
}, z.core.$loose>>;
|
|
3059
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
3060
|
+
type: z.ZodEnum<{
|
|
3061
|
+
mapping: "mapping";
|
|
3062
|
+
"operation-mapping": "operation-mapping";
|
|
3063
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3064
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3065
|
+
javascript: "javascript";
|
|
3066
|
+
}>;
|
|
3067
|
+
}, z.core.$loose>>;
|
|
3068
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
3069
|
+
type: z.ZodEnum<{
|
|
3070
|
+
mapping: "mapping";
|
|
3071
|
+
"operation-mapping": "operation-mapping";
|
|
3072
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3073
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3074
|
+
javascript: "javascript";
|
|
3075
|
+
}>;
|
|
3076
|
+
}, z.core.$loose>>;
|
|
3077
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
3078
|
+
type: z.ZodEnum<{
|
|
3079
|
+
mapping: "mapping";
|
|
3080
|
+
"operation-mapping": "operation-mapping";
|
|
3081
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3082
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3083
|
+
javascript: "javascript";
|
|
3084
|
+
}>;
|
|
3085
|
+
}, z.core.$loose>>;
|
|
3086
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
3087
|
+
type: z.ZodEnum<{
|
|
3088
|
+
mapping: "mapping";
|
|
3089
|
+
"operation-mapping": "operation-mapping";
|
|
3090
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3091
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3092
|
+
javascript: "javascript";
|
|
3093
|
+
}>;
|
|
3094
|
+
}, z.core.$loose>>;
|
|
3095
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
3096
|
+
type: z.ZodEnum<{
|
|
3097
|
+
mapping: "mapping";
|
|
3098
|
+
"operation-mapping": "operation-mapping";
|
|
3099
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3100
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3101
|
+
javascript: "javascript";
|
|
3102
|
+
}>;
|
|
3103
|
+
}, z.core.$loose>>;
|
|
3104
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
3105
|
+
type: z.ZodEnum<{
|
|
3106
|
+
mapping: "mapping";
|
|
3107
|
+
"operation-mapping": "operation-mapping";
|
|
3108
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
3109
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
3110
|
+
javascript: "javascript";
|
|
3111
|
+
}>;
|
|
3112
|
+
}, z.core.$loose>>;
|
|
3113
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
3114
|
+
title: z.ZodOptional<z.ZodString>;
|
|
3115
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3116
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
3117
|
+
}, z.core.$strip>>>;
|
|
3118
|
+
name: z.ZodString;
|
|
3119
|
+
uuid: z.ZodOptional<z.ZodString>;
|
|
3120
|
+
}, z.core.$strip>;
|
|
3121
|
+
type CreateConnectorRequest = z.infer<typeof CreateConnectorRequest>;
|
|
1818
3122
|
declare const BaseConnector: z.ZodObject<{
|
|
1819
3123
|
id: z.ZodString;
|
|
1820
3124
|
key: z.ZodString;
|
|
@@ -1838,12 +3142,6 @@ declare const Connector: z.ZodObject<{
|
|
|
1838
3142
|
graphql: "graphql";
|
|
1839
3143
|
}>;
|
|
1840
3144
|
}, z.core.$strip>>;
|
|
1841
|
-
ui: z.ZodOptional<z.ZodObject<{
|
|
1842
|
-
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
1843
|
-
description: z.ZodOptional<z.ZodString>;
|
|
1844
|
-
helpUri: z.ZodOptional<z.ZodString>;
|
|
1845
|
-
test: z.ZodOptional<z.ZodBoolean>;
|
|
1846
|
-
}, z.core.$strip>>;
|
|
1847
3145
|
auth: z.ZodOptional<z.ZodIntersection<z.ZodUnion<readonly [z.ZodObject<{
|
|
1848
3146
|
title: z.ZodOptional<z.ZodString>;
|
|
1849
3147
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -2823,57 +4121,8 @@ declare const Connector: z.ZodObject<{
|
|
|
2823
4121
|
proxyKey: z.ZodString;
|
|
2824
4122
|
}, z.core.$strip>]>>>;
|
|
2825
4123
|
}, z.core.$strip>>>;
|
|
2826
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2827
4124
|
udm: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
2828
4125
|
operations: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
2829
|
-
test: z.ZodOptional<z.ZodUnion<readonly [z.ZodObject<{
|
|
2830
|
-
implementationType: z.ZodOptional<z.ZodEnum<typeof ConnectorMethodImplementationType>>;
|
|
2831
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2832
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2833
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2834
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2835
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2836
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2837
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2838
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2839
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2840
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.mapping>;
|
|
2841
|
-
mapping: z.ZodAny;
|
|
2842
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2843
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2844
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2845
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2846
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2847
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.operationMapping>;
|
|
2848
|
-
mapping: z.ZodAny;
|
|
2849
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2850
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2851
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2852
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2853
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2854
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.restApiMapping>;
|
|
2855
|
-
mapping: z.ZodAny;
|
|
2856
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2857
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2858
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2859
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2860
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2861
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.graphqlApiMapping>;
|
|
2862
|
-
mapping: z.ZodAny;
|
|
2863
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2864
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2865
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2866
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2867
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2868
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.javascript>;
|
|
2869
|
-
code: z.ZodString;
|
|
2870
|
-
}, z.core.$strip>, z.ZodObject<{
|
|
2871
|
-
filePath: z.ZodOptional<z.ZodString>;
|
|
2872
|
-
inheritedFromPath: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2873
|
-
isIncomplete: z.ZodOptional<z.ZodBoolean>;
|
|
2874
|
-
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
2875
|
-
implementationType: z.ZodLiteral<ConnectorMethodImplementationType.notSupported>;
|
|
2876
|
-
}, z.core.$strip>]>>;
|
|
2877
4126
|
knowledgeBaseUuid: z.ZodOptional<z.ZodString>;
|
|
2878
4127
|
workspaceId: z.ZodOptional<z.ZodString>;
|
|
2879
4128
|
data: z.ZodOptional<z.ZodAny>;
|
|
@@ -2902,6 +4151,178 @@ declare const Connector: z.ZodObject<{
|
|
|
2902
4151
|
hasData: z.ZodOptional<z.ZodBoolean>;
|
|
2903
4152
|
isReadOnly: z.ZodOptional<z.ZodBoolean>;
|
|
2904
4153
|
version: z.ZodString;
|
|
4154
|
+
credentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4155
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
4156
|
+
proxy: "proxy";
|
|
4157
|
+
"integration-app-token": "integration-app-token";
|
|
4158
|
+
"membrane-token": "membrane-token";
|
|
4159
|
+
oauth2: "oauth2";
|
|
4160
|
+
oauth1: "oauth1";
|
|
4161
|
+
"client-credentials": "client-credentials";
|
|
4162
|
+
}>>;
|
|
4163
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4164
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
4165
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4166
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4167
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
4168
|
+
}, z.core.$strip>>;
|
|
4169
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
4170
|
+
type: z.ZodEnum<{
|
|
4171
|
+
mapping: "mapping";
|
|
4172
|
+
"operation-mapping": "operation-mapping";
|
|
4173
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4174
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4175
|
+
javascript: "javascript";
|
|
4176
|
+
}>;
|
|
4177
|
+
}, z.core.$loose>>;
|
|
4178
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
4179
|
+
type: z.ZodEnum<{
|
|
4180
|
+
mapping: "mapping";
|
|
4181
|
+
"operation-mapping": "operation-mapping";
|
|
4182
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4183
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4184
|
+
javascript: "javascript";
|
|
4185
|
+
}>;
|
|
4186
|
+
}, z.core.$loose>>;
|
|
4187
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
4188
|
+
type: z.ZodEnum<{
|
|
4189
|
+
mapping: "mapping";
|
|
4190
|
+
"operation-mapping": "operation-mapping";
|
|
4191
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4192
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4193
|
+
javascript: "javascript";
|
|
4194
|
+
}>;
|
|
4195
|
+
}, z.core.$loose>>;
|
|
4196
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
4197
|
+
type: z.ZodEnum<{
|
|
4198
|
+
mapping: "mapping";
|
|
4199
|
+
"operation-mapping": "operation-mapping";
|
|
4200
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4201
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4202
|
+
javascript: "javascript";
|
|
4203
|
+
}>;
|
|
4204
|
+
}, z.core.$loose>>;
|
|
4205
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
4206
|
+
type: z.ZodEnum<{
|
|
4207
|
+
mapping: "mapping";
|
|
4208
|
+
"operation-mapping": "operation-mapping";
|
|
4209
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4210
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4211
|
+
javascript: "javascript";
|
|
4212
|
+
}>;
|
|
4213
|
+
}, z.core.$loose>>;
|
|
4214
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
4215
|
+
type: z.ZodEnum<{
|
|
4216
|
+
mapping: "mapping";
|
|
4217
|
+
"operation-mapping": "operation-mapping";
|
|
4218
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4219
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4220
|
+
javascript: "javascript";
|
|
4221
|
+
}>;
|
|
4222
|
+
}, z.core.$loose>>;
|
|
4223
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
4224
|
+
type: z.ZodEnum<{
|
|
4225
|
+
mapping: "mapping";
|
|
4226
|
+
"operation-mapping": "operation-mapping";
|
|
4227
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4228
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4229
|
+
javascript: "javascript";
|
|
4230
|
+
}>;
|
|
4231
|
+
}, z.core.$loose>>;
|
|
4232
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
4233
|
+
parametersSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4234
|
+
test: z.ZodOptional<z.ZodObject<{
|
|
4235
|
+
type: z.ZodEnum<{
|
|
4236
|
+
mapping: "mapping";
|
|
4237
|
+
"operation-mapping": "operation-mapping";
|
|
4238
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4239
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4240
|
+
javascript: "javascript";
|
|
4241
|
+
}>;
|
|
4242
|
+
}, z.core.$loose>>;
|
|
4243
|
+
options: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4244
|
+
type: z.ZodOptional<z.ZodEnum<{
|
|
4245
|
+
proxy: "proxy";
|
|
4246
|
+
"integration-app-token": "integration-app-token";
|
|
4247
|
+
"membrane-token": "membrane-token";
|
|
4248
|
+
oauth2: "oauth2";
|
|
4249
|
+
oauth1: "oauth1";
|
|
4250
|
+
"client-credentials": "client-credentials";
|
|
4251
|
+
}>>;
|
|
4252
|
+
customCredentialsSchema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4253
|
+
ui: z.ZodOptional<z.ZodObject<{
|
|
4254
|
+
schema: z.ZodOptional<z.ZodType<DataSchema, unknown, z.core.$ZodTypeInternals<DataSchema, unknown>>>;
|
|
4255
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4256
|
+
helpUri: z.ZodOptional<z.ZodString>;
|
|
4257
|
+
}, z.core.$strip>>;
|
|
4258
|
+
getCredentialsFromConnectionParameters: z.ZodOptional<z.ZodObject<{
|
|
4259
|
+
type: z.ZodEnum<{
|
|
4260
|
+
mapping: "mapping";
|
|
4261
|
+
"operation-mapping": "operation-mapping";
|
|
4262
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4263
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4264
|
+
javascript: "javascript";
|
|
4265
|
+
}>;
|
|
4266
|
+
}, z.core.$loose>>;
|
|
4267
|
+
refreshCredentials: z.ZodOptional<z.ZodObject<{
|
|
4268
|
+
type: z.ZodEnum<{
|
|
4269
|
+
mapping: "mapping";
|
|
4270
|
+
"operation-mapping": "operation-mapping";
|
|
4271
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4272
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4273
|
+
javascript: "javascript";
|
|
4274
|
+
}>;
|
|
4275
|
+
}, z.core.$loose>>;
|
|
4276
|
+
makeApiClient: z.ZodOptional<z.ZodObject<{
|
|
4277
|
+
type: z.ZodEnum<{
|
|
4278
|
+
mapping: "mapping";
|
|
4279
|
+
"operation-mapping": "operation-mapping";
|
|
4280
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4281
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4282
|
+
javascript: "javascript";
|
|
4283
|
+
}>;
|
|
4284
|
+
}, z.core.$loose>>;
|
|
4285
|
+
getOAuthConfig: z.ZodOptional<z.ZodObject<{
|
|
4286
|
+
type: z.ZodEnum<{
|
|
4287
|
+
mapping: "mapping";
|
|
4288
|
+
"operation-mapping": "operation-mapping";
|
|
4289
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4290
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4291
|
+
javascript: "javascript";
|
|
4292
|
+
}>;
|
|
4293
|
+
}, z.core.$loose>>;
|
|
4294
|
+
getTokenData: z.ZodOptional<z.ZodObject<{
|
|
4295
|
+
type: z.ZodEnum<{
|
|
4296
|
+
mapping: "mapping";
|
|
4297
|
+
"operation-mapping": "operation-mapping";
|
|
4298
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4299
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4300
|
+
javascript: "javascript";
|
|
4301
|
+
}>;
|
|
4302
|
+
}, z.core.$loose>>;
|
|
4303
|
+
getCredentialsFromAccessTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
4304
|
+
type: z.ZodEnum<{
|
|
4305
|
+
mapping: "mapping";
|
|
4306
|
+
"operation-mapping": "operation-mapping";
|
|
4307
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4308
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4309
|
+
javascript: "javascript";
|
|
4310
|
+
}>;
|
|
4311
|
+
}, z.core.$loose>>;
|
|
4312
|
+
getCredentialsFromRefreshTokenResponse: z.ZodOptional<z.ZodObject<{
|
|
4313
|
+
type: z.ZodEnum<{
|
|
4314
|
+
mapping: "mapping";
|
|
4315
|
+
"operation-mapping": "operation-mapping";
|
|
4316
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
4317
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
4318
|
+
javascript: "javascript";
|
|
4319
|
+
}>;
|
|
4320
|
+
}, z.core.$loose>>;
|
|
4321
|
+
proxyKey: z.ZodOptional<z.ZodString>;
|
|
4322
|
+
title: z.ZodOptional<z.ZodString>;
|
|
4323
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4324
|
+
enabled: z.ZodOptional<z.ZodAny>;
|
|
4325
|
+
}, z.core.$strip>>>;
|
|
2905
4326
|
}, z.core.$strip>;
|
|
2906
4327
|
type Connector = z.infer<typeof Connector>;
|
|
2907
4328
|
declare const MinimalConnector: z.ZodObject<{
|
|
@@ -14699,9 +16120,14 @@ declare enum AgentSessionStatus {
|
|
|
14699
16120
|
FAILED = "failed",
|
|
14700
16121
|
CANCELLED = "cancelled"
|
|
14701
16122
|
}
|
|
16123
|
+
declare enum AgentSessionState {
|
|
16124
|
+
BUSY = "busy",
|
|
16125
|
+
IDLE = "idle"
|
|
16126
|
+
}
|
|
14702
16127
|
declare const AgentSession: z.ZodObject<{
|
|
14703
16128
|
id: z.ZodString;
|
|
14704
16129
|
workspaceId: z.ZodString;
|
|
16130
|
+
userId: z.ZodOptional<z.ZodString>;
|
|
14705
16131
|
workspaceElementType: z.ZodEnum<typeof WorkspaceElementType>;
|
|
14706
16132
|
workspaceElementId: z.ZodString;
|
|
14707
16133
|
type: z.ZodString;
|
|
@@ -14719,6 +16145,7 @@ declare const AgentSession: z.ZodObject<{
|
|
|
14719
16145
|
logs: z.ZodOptional<z.ZodArray<z.ZodAny>>;
|
|
14720
16146
|
usage: z.ZodOptional<z.ZodNumber>;
|
|
14721
16147
|
summary: z.ZodOptional<z.ZodString>;
|
|
16148
|
+
state: z.ZodDefault<z.ZodEnum<typeof AgentSessionState>>;
|
|
14722
16149
|
}, z.core.$strip>;
|
|
14723
16150
|
type AgentSession = z.infer<typeof AgentSession>;
|
|
14724
16151
|
declare const CreateAgentSession: z.ZodObject<{
|
|
@@ -14726,6 +16153,7 @@ declare const CreateAgentSession: z.ZodObject<{
|
|
|
14726
16153
|
workspaceElementId: z.ZodOptional<z.ZodString>;
|
|
14727
16154
|
prompt: z.ZodString;
|
|
14728
16155
|
testCustomerId: z.ZodOptional<z.ZodString>;
|
|
16156
|
+
isExternal: z.ZodOptional<z.ZodBoolean>;
|
|
14729
16157
|
}, z.core.$strip>;
|
|
14730
16158
|
type CreateAgentSession = z.infer<typeof CreateAgentSession>;
|
|
14731
16159
|
declare const AgentSessionInputSchema: z.ZodObject<{
|
|
@@ -14733,9 +16161,243 @@ declare const AgentSessionInputSchema: z.ZodObject<{
|
|
|
14733
16161
|
synthetic: z.ZodOptional<z.ZodBoolean>;
|
|
14734
16162
|
}, z.core.$strip>;
|
|
14735
16163
|
type AgentSessionInput = z.infer<typeof AgentSessionInputSchema>;
|
|
16164
|
+
declare const PatchAgentSessionSchema: z.ZodObject<{
|
|
16165
|
+
state: z.ZodOptional<z.ZodEnum<typeof AgentSessionState>>;
|
|
16166
|
+
lastActivityAt: z.ZodOptional<z.ZodISODateTime>;
|
|
16167
|
+
summary: z.ZodOptional<z.ZodString>;
|
|
16168
|
+
status: z.ZodOptional<z.ZodEnum<typeof AgentSessionStatus>>;
|
|
16169
|
+
}, z.core.$strip>;
|
|
16170
|
+
type PatchAgentSession = z.infer<typeof PatchAgentSessionSchema>;
|
|
14736
16171
|
|
|
14737
16172
|
declare const zodBooleanCoercion: () => z.ZodPipe<z.ZodTransform<boolean, unknown>, z.ZodBoolean>;
|
|
14738
16173
|
|
|
16174
|
+
declare enum FunctionType {
|
|
16175
|
+
mapping = "mapping",
|
|
16176
|
+
operationMapping = "operation-mapping",
|
|
16177
|
+
restApiMapping = "rest-api-mapping",
|
|
16178
|
+
graphqlApiMapping = "graphql-api-mapping",
|
|
16179
|
+
javascript = "javascript"
|
|
16180
|
+
}
|
|
16181
|
+
declare const BaseFunctionDefinition: z.ZodObject<{
|
|
16182
|
+
type: z.ZodEnum<{
|
|
16183
|
+
mapping: FunctionType.mapping;
|
|
16184
|
+
"operation-mapping": FunctionType.operationMapping;
|
|
16185
|
+
"rest-api-mapping": FunctionType.restApiMapping;
|
|
16186
|
+
"graphql-api-mapping": FunctionType.graphqlApiMapping;
|
|
16187
|
+
javascript: FunctionType.javascript;
|
|
16188
|
+
}>;
|
|
16189
|
+
}, z.core.$strip>;
|
|
16190
|
+
type BaseFunctionDefinition = z.infer<typeof BaseFunctionDefinition>;
|
|
16191
|
+
declare const GenericFunctionDefinition: z.ZodObject<{
|
|
16192
|
+
type: z.ZodEnum<{
|
|
16193
|
+
mapping: "mapping";
|
|
16194
|
+
"operation-mapping": "operation-mapping";
|
|
16195
|
+
"rest-api-mapping": "rest-api-mapping";
|
|
16196
|
+
"graphql-api-mapping": "graphql-api-mapping";
|
|
16197
|
+
javascript: "javascript";
|
|
16198
|
+
}>;
|
|
16199
|
+
}, z.core.$loose>;
|
|
16200
|
+
type GenericFunctionDefinition = z.infer<typeof GenericFunctionDefinition>;
|
|
16201
|
+
|
|
16202
|
+
declare const MappingSchema: z.ZodAny;
|
|
16203
|
+
type MappingSchema = z.infer<typeof MappingSchema>;
|
|
16204
|
+
declare const MappingFunction: z.ZodObject<{
|
|
16205
|
+
type: z.ZodLiteral<FunctionType.mapping>;
|
|
16206
|
+
mapping: z.ZodAny;
|
|
16207
|
+
}, z.core.$strip>;
|
|
16208
|
+
type MappingFunction = z.infer<typeof MappingFunction>;
|
|
16209
|
+
|
|
16210
|
+
declare const OperationMappingSchema: z.ZodObject<{
|
|
16211
|
+
operationKey: z.ZodString;
|
|
16212
|
+
inputMapping: z.ZodOptional<z.ZodAny>;
|
|
16213
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
16214
|
+
}, z.core.$strip>;
|
|
16215
|
+
type OperationMappingSchema = z.infer<typeof OperationMappingSchema>;
|
|
16216
|
+
declare const OperationMappingFunction: z.ZodObject<{
|
|
16217
|
+
type: z.ZodLiteral<FunctionType.operationMapping>;
|
|
16218
|
+
mapping: z.ZodObject<{
|
|
16219
|
+
operationKey: z.ZodString;
|
|
16220
|
+
inputMapping: z.ZodOptional<z.ZodAny>;
|
|
16221
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
16222
|
+
}, z.core.$strip>;
|
|
16223
|
+
}, z.core.$strip>;
|
|
16224
|
+
type OperationMappingFunction = z.infer<typeof OperationMappingFunction>;
|
|
16225
|
+
|
|
16226
|
+
declare const RequestMappingSchema: z.ZodObject<{
|
|
16227
|
+
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
16228
|
+
query: z.ZodOptional<z.ZodAny>;
|
|
16229
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
16230
|
+
headers: z.ZodOptional<z.ZodAny>;
|
|
16231
|
+
}, z.core.$strip>;
|
|
16232
|
+
type RequestMappingSchema = z.infer<typeof RequestMappingSchema>;
|
|
16233
|
+
declare const RestApiMappingSchema: z.ZodObject<{
|
|
16234
|
+
path: z.ZodString;
|
|
16235
|
+
method: z.ZodString;
|
|
16236
|
+
requestMapping: z.ZodObject<{
|
|
16237
|
+
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
16238
|
+
query: z.ZodOptional<z.ZodAny>;
|
|
16239
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
16240
|
+
headers: z.ZodOptional<z.ZodAny>;
|
|
16241
|
+
}, z.core.$strip>;
|
|
16242
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16243
|
+
}, z.core.$strip>;
|
|
16244
|
+
type RestApiMappingSchema = z.infer<typeof RestApiMappingSchema>;
|
|
16245
|
+
declare const OpenapiMappingSchema: z.ZodObject<{
|
|
16246
|
+
path: z.ZodString;
|
|
16247
|
+
method: z.ZodString;
|
|
16248
|
+
requestMapping: z.ZodObject<{
|
|
16249
|
+
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
16250
|
+
query: z.ZodOptional<z.ZodAny>;
|
|
16251
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
16252
|
+
headers: z.ZodOptional<z.ZodAny>;
|
|
16253
|
+
}, z.core.$strip>;
|
|
16254
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16255
|
+
}, z.core.$strip>;
|
|
16256
|
+
type OpenapiMappingSchema = z.infer<typeof OpenapiMappingSchema>;
|
|
16257
|
+
declare const RestApiMappingFunction: z.ZodObject<{
|
|
16258
|
+
type: z.ZodLiteral<FunctionType.restApiMapping>;
|
|
16259
|
+
mapping: z.ZodObject<{
|
|
16260
|
+
path: z.ZodString;
|
|
16261
|
+
method: z.ZodString;
|
|
16262
|
+
requestMapping: z.ZodObject<{
|
|
16263
|
+
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
16264
|
+
query: z.ZodOptional<z.ZodAny>;
|
|
16265
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
16266
|
+
headers: z.ZodOptional<z.ZodAny>;
|
|
16267
|
+
}, z.core.$strip>;
|
|
16268
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16269
|
+
}, z.core.$strip>;
|
|
16270
|
+
}, z.core.$strip>;
|
|
16271
|
+
type RestApiMappingFunction = z.infer<typeof RestApiMappingFunction>;
|
|
16272
|
+
|
|
16273
|
+
declare const GraphQLFieldMappingSchema: z.ZodType<{
|
|
16274
|
+
field: string;
|
|
16275
|
+
args?: Record<string, any>;
|
|
16276
|
+
subFields?: Array<{
|
|
16277
|
+
field: string;
|
|
16278
|
+
args?: Record<string, any>;
|
|
16279
|
+
subFields?: any;
|
|
16280
|
+
}>;
|
|
16281
|
+
}>;
|
|
16282
|
+
type GraphQLFieldMappingSchema = z.infer<typeof GraphQLFieldMappingSchema>;
|
|
16283
|
+
declare const GraphQLApiMappingSchema: z.ZodObject<{
|
|
16284
|
+
path: z.ZodString;
|
|
16285
|
+
operationType: z.ZodEnum<{
|
|
16286
|
+
query: "query";
|
|
16287
|
+
mutation: "mutation";
|
|
16288
|
+
}>;
|
|
16289
|
+
requestMapping: z.ZodArray<z.ZodType<{
|
|
16290
|
+
field: string;
|
|
16291
|
+
args?: Record<string, any>;
|
|
16292
|
+
subFields?: Array<{
|
|
16293
|
+
field: string;
|
|
16294
|
+
args?: Record<string, any>;
|
|
16295
|
+
subFields?: any;
|
|
16296
|
+
}>;
|
|
16297
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
16298
|
+
field: string;
|
|
16299
|
+
args?: Record<string, any>;
|
|
16300
|
+
subFields?: Array<{
|
|
16301
|
+
field: string;
|
|
16302
|
+
args?: Record<string, any>;
|
|
16303
|
+
subFields?: any;
|
|
16304
|
+
}>;
|
|
16305
|
+
}, unknown>>>;
|
|
16306
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16307
|
+
}, z.core.$strip>;
|
|
16308
|
+
type GraphQLApiMappingSchema = z.infer<typeof GraphQLApiMappingSchema>;
|
|
16309
|
+
declare const GraphqlApiMappingFunction: z.ZodObject<{
|
|
16310
|
+
type: z.ZodLiteral<FunctionType.graphqlApiMapping>;
|
|
16311
|
+
mapping: z.ZodObject<{
|
|
16312
|
+
path: z.ZodString;
|
|
16313
|
+
operationType: z.ZodEnum<{
|
|
16314
|
+
query: "query";
|
|
16315
|
+
mutation: "mutation";
|
|
16316
|
+
}>;
|
|
16317
|
+
requestMapping: z.ZodArray<z.ZodType<{
|
|
16318
|
+
field: string;
|
|
16319
|
+
args?: Record<string, any>;
|
|
16320
|
+
subFields?: Array<{
|
|
16321
|
+
field: string;
|
|
16322
|
+
args?: Record<string, any>;
|
|
16323
|
+
subFields?: any;
|
|
16324
|
+
}>;
|
|
16325
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
16326
|
+
field: string;
|
|
16327
|
+
args?: Record<string, any>;
|
|
16328
|
+
subFields?: Array<{
|
|
16329
|
+
field: string;
|
|
16330
|
+
args?: Record<string, any>;
|
|
16331
|
+
subFields?: any;
|
|
16332
|
+
}>;
|
|
16333
|
+
}, unknown>>>;
|
|
16334
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16335
|
+
}, z.core.$strip>;
|
|
16336
|
+
}, z.core.$strip>;
|
|
16337
|
+
type GraphqlApiMappingFunction = z.infer<typeof GraphqlApiMappingFunction>;
|
|
16338
|
+
|
|
16339
|
+
declare const JavascriptFunction: z.ZodObject<{
|
|
16340
|
+
type: z.ZodLiteral<FunctionType.javascript>;
|
|
16341
|
+
code: z.ZodString;
|
|
16342
|
+
}, z.core.$strip>;
|
|
16343
|
+
type JavascriptFunction = z.infer<typeof JavascriptFunction>;
|
|
16344
|
+
|
|
16345
|
+
declare const FunctionDefinition: z.ZodUnion<readonly [z.ZodObject<{
|
|
16346
|
+
type: z.ZodLiteral<FunctionType.mapping>;
|
|
16347
|
+
mapping: z.ZodAny;
|
|
16348
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16349
|
+
type: z.ZodLiteral<FunctionType.operationMapping>;
|
|
16350
|
+
mapping: z.ZodObject<{
|
|
16351
|
+
operationKey: z.ZodString;
|
|
16352
|
+
inputMapping: z.ZodOptional<z.ZodAny>;
|
|
16353
|
+
outputMapping: z.ZodOptional<z.ZodAny>;
|
|
16354
|
+
}, z.core.$strip>;
|
|
16355
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16356
|
+
type: z.ZodLiteral<FunctionType.restApiMapping>;
|
|
16357
|
+
mapping: z.ZodObject<{
|
|
16358
|
+
path: z.ZodString;
|
|
16359
|
+
method: z.ZodString;
|
|
16360
|
+
requestMapping: z.ZodObject<{
|
|
16361
|
+
pathParameters: z.ZodOptional<z.ZodAny>;
|
|
16362
|
+
query: z.ZodOptional<z.ZodAny>;
|
|
16363
|
+
data: z.ZodOptional<z.ZodAny>;
|
|
16364
|
+
headers: z.ZodOptional<z.ZodAny>;
|
|
16365
|
+
}, z.core.$strip>;
|
|
16366
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16367
|
+
}, z.core.$strip>;
|
|
16368
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16369
|
+
type: z.ZodLiteral<FunctionType.graphqlApiMapping>;
|
|
16370
|
+
mapping: z.ZodObject<{
|
|
16371
|
+
path: z.ZodString;
|
|
16372
|
+
operationType: z.ZodEnum<{
|
|
16373
|
+
query: "query";
|
|
16374
|
+
mutation: "mutation";
|
|
16375
|
+
}>;
|
|
16376
|
+
requestMapping: z.ZodArray<z.ZodType<{
|
|
16377
|
+
field: string;
|
|
16378
|
+
args?: Record<string, any>;
|
|
16379
|
+
subFields?: Array<{
|
|
16380
|
+
field: string;
|
|
16381
|
+
args?: Record<string, any>;
|
|
16382
|
+
subFields?: any;
|
|
16383
|
+
}>;
|
|
16384
|
+
}, unknown, z.core.$ZodTypeInternals<{
|
|
16385
|
+
field: string;
|
|
16386
|
+
args?: Record<string, any>;
|
|
16387
|
+
subFields?: Array<{
|
|
16388
|
+
field: string;
|
|
16389
|
+
args?: Record<string, any>;
|
|
16390
|
+
subFields?: any;
|
|
16391
|
+
}>;
|
|
16392
|
+
}, unknown>>>;
|
|
16393
|
+
responseMapping: z.ZodOptional<z.ZodAny>;
|
|
16394
|
+
}, z.core.$strip>;
|
|
16395
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
16396
|
+
type: z.ZodLiteral<FunctionType.javascript>;
|
|
16397
|
+
code: z.ZodString;
|
|
16398
|
+
}, z.core.$strip>]>;
|
|
16399
|
+
type FunctionDefinition = z.infer<typeof FunctionDefinition>;
|
|
16400
|
+
|
|
14739
16401
|
interface OpenMembraneConfigurationOptions extends OpenConfigurationOptions {
|
|
14740
16402
|
}
|
|
14741
16403
|
declare class MembraneClient extends MembraneApiClient {
|
|
@@ -14788,5 +16450,5 @@ declare class MembraneClient extends MembraneApiClient {
|
|
|
14788
16450
|
connectionRequest(connectionId: string, uri: string, data?: any): Promise<any>;
|
|
14789
16451
|
}
|
|
14790
16452
|
|
|
14791
|
-
export { ACTIONS, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTablesQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OrgLimits, OrgLimitsType, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, ResetFlowInstanceOptions, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
14792
|
-
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgUser, OrgWorkspace, Package, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|
|
16453
|
+
export { ACTIONS, AccessDeniedError, AccountResponse, ActionAccessor, ActionApiResponse, ActionDependency, ActionDependencyType, ActionEditableProperties, ActionExportProperties, ActionInstanceAccessor, ActionInstanceApiResponse, ActionInstanceSetupError, ActionInstancesAccessor, ActionRunError, ActionRunLogRecordApiResponse, ActionRunLogStatus, ActionRunResponse, ActionType, ActionsAccessor, AgentSession, AgentSessionInputSchema, AgentSessionState, AgentSessionStatus, AlertSeverity, AlertStatus, AlertType, ApiRequestSpec, AppDataSchemaAccessor, AppDataSchemaApiResponse, AppDataSchemaEditableProperties, AppDataSchemaExportProperties, AppDataSchemaInstanceAccessor, AppDataSchemaInstanceApiResponse, AppDataSchemaInstancesAccessor, AppDataSchemasAccessor, AppEventLogRecordApiResponse, AppEventSubscriptionAccessor, AppEventSubscriptionApiResponse, AppEventSubscriptionsAccessor, AppEventTypeAccessor, AppEventTypeApiResponse, AppEventTypeEditableProperties, AppEventTypeExportProperties, AppEventTypesAccessor, AppSchema, AppliedToIntegrations, BackwardCompatibleDataSourceEditableProperties, BadRequestError, BadRequestErrorKey, BaseAction, BaseActionInstance, BaseActionRunLogRecord, BaseAppDataSchema, BaseAppDataSchemaInstance, BaseAppEventSubscription, BaseAppEventType, BaseConnection, BaseConnector, BaseCustomer, BaseDataLinkTable, BaseDataLinkTableInstance, BaseDataSource, BaseDataSourceInstance, BaseExternalEvent, BaseExternalEventLogRecord, BaseExternalEventPull, BaseExternalEventSubscription, BaseFieldMapping, BaseFieldMappingInstance, BaseFlow, BaseFlowInstance, BaseFlowRun, BaseFunctionDefinition, BaseIntegration, BaseIntegrationLevelMembraneInterface, BaseIntegrationLevelMembraneInterfaceEditableProperties, BaseIntegrationLevelMembraneInterfaceExportProperties, BaseIntegrationLevelMembraneInterfaceReadOnlyProperties, BaseMembraneInterface, BaseMembraneInterfaceEditableProperties, BaseMembraneInterfaceReadOnlyProperties, BasePackage, BaseScreen, BaseWorkspaceElement, CONNECTOR_AUTH_TYPES, CONNECTOR_CATEGORIES, CONNECTOR_DATA_DIR, CONNECTOR_DOCS_DIR, CONNECTOR_EVENTS_DIR, CONNECTOR_GLOBAL_WEBHOOKS_DIR, CONNECTOR_METHOD_IMPLEMENTATION_SUFFIXES, CONNECTOR_OPERATIONS_DIR, CONNECTOR_VERSION_DEVELOPMENT, CONNECTOR_VERSION_LATEST, CommonInstancesListQuery, CommonIntegrationOrConnectionQuery, CommonListElementsQuery, ConcurrencyError, ConcurrencyErrorKey, ConfigurationError, ConfigurationState, ConnectionAccessor, ConnectionApiResponse, ConnectionApiResponseWithSecrets, ConnectionDataCollectionAccessor, ConnectionError, ConnectionErrorKey, ConnectionLevelActionAccessor, ConnectionLevelActionsAccessor, ConnectionLevelDataSourceAccessor, ConnectionLevelDataSourcesAccessor, ConnectionLevelFieldMappingAccessor, ConnectionLevelFieldMappingsAccessor, ConnectionLevelFlowAccessor, ConnectionLevelFlowsAccessor, ConnectionMessagePayload, ConnectionOperationAccessor, ConnectionProxy, ConnectionRequest, ConnectionSelector, ConnectionSpec, ConnectionsAccessor, Connector, ConnectorAuth, ConnectorAuthClientCredentials, ConnectorAuthHandlerBase, ConnectorAuthIntegrationAppToken, ConnectorAuthMembraneToken, ConnectorAuthMethodTypes, ConnectorAuthOAuth1, ConnectorAuthOAuth2, ConnectorAuthProxy, ConnectorAuthSpec, ConnectorAuthWithFunctions, ConnectorDataCollectionEventImplementationType, ConnectorDataCollectionMethodKeys, ConnectorDataLocationTypes, ConnectorEventHandlerMethods, ConnectorEventImplementationType$1 as ConnectorEventImplementationType, ConnectorFileUpdateType, ConnectorMethodImplementation, ConnectorMethodImplementationBase, ConnectorMethodImplementationGraphqlApiMapping, ConnectorMethodImplementationJavascript, ConnectorMethodImplementationMapping, ConnectorMethodImplementationNotSupported, ConnectorMethodImplementationOperationMapping, ConnectorMethodImplementationRestApiMapping, ConnectorMethodImplementationType, ConnectorOperationMethodImplementationTypes, ConnectorOption, ConnectorOptions, ConnectorSpec, ConnectorStatus, ConnectorStatusValues, ConnectorUdmCollectionMapping, ConnectorUdmListItem, ConnectorUdmSpec, ConnectorUiSpec, ConnectorVersion, ConnectorVersionData, CreateActionInstanceRequest, CreateActionRequest, CreateAgentSession, CreateConnectionRequest, CreateConnectorRequest, CreateCustomerRequest, CreateDataLinkTableRequest, CreateDataSourceInstanceRequest, CreateDataSourceRequest, CreateFieldMappingRequest, CreateFlowNodeRequest, CreateFlowRequest, CreateFlowRunRequest, CreateIntegrationRequest, CreatePackageRequest, CustomCodeError, CustomerAccessor, CustomerApiResponse, CustomerLimits, CustomerSelector, CustomersAccessor, DATA_RECORD_SCHEMA, DEFAULT_FULL_SYNC_INTERVAL_SECONDS, DEFAULT_PULL_UPDATES_INTERVAL_SECONDS, DataBuilderFormulaType, DataCollectionCreateRequest, DataCollectionCreateResponse, DataCollectionCreateSpec, DataCollectionDeleteRequest, DataCollectionDeleteResponse, DataCollectionDeleteSpec, DataCollectionEventType, DataCollectionEventTypeSpec, DataCollectionEventsSpec, DataCollectionFindByIdRequest, DataCollectionFindByIdResponse, DataCollectionFindByIdSpec, DataCollectionFindRequest, DataCollectionFindResponse, DataCollectionFindSpec, DataCollectionListRequest, DataCollectionListResponse, DataCollectionListResponseDrilldown, DataCollectionListSpec, DataCollectionMatchRequest, DataCollectionMatchResponse, DataCollectionMatchSpec, DataCollectionMethodRequest, DataCollectionMethodSpec, DataCollectionSearchRequest, DataCollectionSearchResponse, DataCollectionSearchSpec, DataCollectionSpec, DataCollectionUdmSpec, DataCollectionUdmsSpec, DataCollectionUpdateRequest, DataCollectionUpdateResponse, DataCollectionUpdateSpec, DataFilterCondition, DataForm, DataLink, DataLinkDirection, DataLinkTableAccessor, DataLinkTableApiResponse, DataLinkTableConfig, DataLinkTableEditableProperties, DataLinkTableExportProperties, DataLinkTableInstanceAccessor, DataLinkTableInstanceApiResponse, DataLinkTableInstancesAccessor, DataLinkTablesAccessor, DataLocationMethodImplementationTypes, DataLocationPointer, DataLocationTypeCollection, DataLocatorStep, DataLocatorStepArrayItem, DataLocatorStepObjectProperty, DataLocatorStepType, DataRecordSchema, DataSchema, DataSourceAccessor, DataSourceApiResponse, DataSourceEditableProperties, DataSourceExportProperties, DataSourceInstanceAccessor, DataSourceInstanceApiResponse, DataSourceInstancesAccessor, DataSourceUnitConfig, DataSourcesAccessor, DependencyError, DownstreamFlowNodeRunSchema, EDITABLE_LIMITS, ElementAccessor, ElementInstanceAccessor, ElementInstanceListAccessor, ElementListAccessor, ElementsExportFields, EngineWorkspaceSettingsSchema, ErrorData, ErrorDataSchema, ErrorType, ExternalEvent, ExternalEventLogRecordApiResponse, ExternalEventLogStatus, ExternalEventPullApiResponse, ExternalEventPullStatus, ExternalEventSubscriptionAccessor, ExternalEventSubscriptionApiResponse, ExternalEventSubscriptionConfig, ExternalEventSubscriptionStatus, ExternalEventSubscriptionType, ExternalEventSubscriptionsAccessor, ExternalEventType, ExternalEventUnitConfig, FLOW_NODE_SPECS, FieldMappingAccessor, FieldMappingApiResponse, FieldMappingDirection, FieldMappingEditableProperties, FieldMappingExportProperties, FieldMappingInstanceAccessor, FieldMappingInstanceApiResponse, FieldMappingInstancesAccessor, FieldMappingUnitConfig, FieldMappingsAccessor, FindActionInstancesQuery, FindActionsQuery, FindConnectionsQuery, FindConnectionsResponse, FindCustomersQuery, FindDataLinkTablesQuery, FindDataSourceEventsQuery, FindDataSourceInstanceSyncsQuery, FindDataSourceInstancesQuery, FindDataSourceSyncsQuery, FindDataSourcesQuery, FindFieldMappingsQuery, FindFlowInstancesQuery, FindFlowRunsQuery, FindFlowRunsResponse, FindFlowsQuery, FindIntegrationLevelMembraneInterfaceQuery, FindIntegrationsQuery, FindPackagesQuery, FlowAccessor, FlowApiResponse, FlowEditableProperties, FlowExportProperties, FlowInstanceAccessor, FlowInstanceApiResponse, FlowInstanceNode, FlowInstanceNodeState, FlowInstanceSetupError, FlowInstancesAccessor, FlowNode, FlowNodeLink, FlowNodeRunOutputMetadataSchema, FlowNodeRunOutputSchema, FlowNodeRunOutputWithoutDownstreamRunsSchema, FlowNodeRunParametersSchema, FlowNodeRunRecordSchema, FlowNodeRunRecordWithoutOutputsDataSchema, FlowNodeRunResultSchema, FlowNodeRunStatus, FlowNodeSpec, FlowNodeType, FlowRunAccessor, FlowRunApiResponse, FlowRunError, FlowRunLaunchedBy, FlowRunLaunchedByApi, FlowRunLaunchedByTrigger, FlowRunNode, FlowRunNodeState, FlowRunState, FlowRunsAccessor, FlowsAccessor, Formula, FullPlatformUser, FunctionDefinition, FunctionType, GenericFunctionDefinition, GraphQLApiMappingSchema, GraphQLFieldMappingSchema, GraphqlApiMappingFunction, HTTP_REQUEST_SCHEMA, HandyScenarioTemplateElement, HttpRequestMethod, HttpRequestSpec, IncludeArchivedQuery, IncomingWebhooksState, InsufficientCreditsError, IntegrationAccessor, IntegrationApiResponse, MembraneClient as IntegrationAppClient, IntegrationAppError, IntegrationAuthOption, IntegrationAuthUi, IntegrationElementLevel, IntegrationElementType, IntegrationExportProperties, IntegrationLevelActionAccessor, IntegrationLevelActionsListAccessor, IntegrationLevelDataSourceAccessor, IntegrationLevelDataSourcesListAccessor, IntegrationLevelFieldMappingAccessor, IntegrationLevelFieldMappingsListAccessor, IntegrationLevelFlowAccessor, IntegrationLevelFlowsListAccessor, IntegrationLevelMembraneInterfaceSelectorQuery, IntegrationsAccessor, InternalError, InvalidLocatorError, JavascriptFunction, LimitUnits, ListActionInstancesForConnectionQuery, ListDataSourceInstancesForConnectionQuery, ListExternalEventLogRecordsQuery, ListExternalEventPullsQuery, ListExternalEventSubscriptionsQuery, ListFlowInstancesForConnectionQuery, LogRecordType, MEMBRANE_ELEMENT_CONFIG_FILE_NAME, MIN_FULL_SYNC_INTERVAL_SECONDS, MIN_PULL_UPDATES_INTERVAL_SECONDS, MappingFunction, MappingSchema, MembraneAgentKey, axios as MembraneAxiosInstance, MembraneClient, MembraneError, MinimalConnector, NotAuthenticatedError, NotFoundError, OAUTH1_CONFIG_SCHEMA, OAUTH_CONFIG_SCHEMA, OpenapiMappingSchema, OperationMappingFunction, OperationMappingSchema, OrgLimits, OrgLimitsType, OrgSchema, OrgUserRole, OrgUserStatus, OrgWorkspaceSchema, OrgWorkspaceUser, PARALLEL_EXECUTION_LIMITS, PackageAccessor, PackageApiResponse, PackageCalculatedProperties, PackageEditableProperties, PackageElement, PackageElementApi, PackageElementExport, PackageExportProperties, PackagesAccessor, PaginationQuery, PaginationResponse, ParallelExecutionLimits, PatchAgentSessionSchema, PlatformUserSchema, RATE_LIMITS, RateLimitExceededError, RateLimits, RequestMappingSchema, ResetFlowInstanceOptions, RestApiMappingFunction, RestApiMappingSchema, RunActionRequest, RunFlowApiRequest, ScenarioAccessor, ScenarioTemplate, ScenarioTemplateCategory, ScenarioTemplateElements, ScenariosAccessor, ScreenAccessor, ScreenApiResponse, ScreenBlock, ScreenBlockType, ScreenType, ScreensAccessor, SearchQuery, SelfAccessor, UDM, UNIFIED_DATA_MODELS, UnitRunError, UpdateActionInstanceRequest, UpdateActionRequest, UpdateConnectionRequest, UpdateConnectorRequest, UpdateCustomerRequest, UpdateDataLinkTableRequest, UpdateDataSourceInstanceRequest, UpdateDataSourceRequest, UpdateFieldMappingRequest, UpdateFlowRequest, UpdateIntegrationRequest, UpdatePackageRequest, UpstreamFlowNodeRunSchema, UsageType, UserAccessor, UsersAccessor, WORKSPACE_SIZE_LIMITS, WebhookTypeEnum, WorkspaceElementChangeType, WorkspaceElementDependencyType, WorkspaceElementSpecs, WorkspaceElementState, WorkspaceElementType, WorkspaceEventType, WorkspaceLimitsSchema, WorkspaceNotificationType, WorkspaceOnboardingStep, WorkspacePublicKey, WorkspaceSizeLimits, WorkspaceSyncEventType, WorkspaceType, WritableConnectorVersionData, WriteableConnectorFields, __resolveValue, addRequiredFieldsToSchema, addUdmFallbackFields, backwardCompatibleFilterMatch, buildData, buildDataSchema, buildValue, compareWorkspaceExports, compressDataSchema, createCompoundSchema, createFlowInstanceSchema, createObjectFromLocators, createOrUpdateConnection, createSchema, dataCollectionEventTypeToExternalEventType, dataLocationParametersMatch, doesMatchFilter, excludeFieldsFromSchema, excludeFieldsFromValue, excludeReadOnlyFieldsFromSchema, excludeWriteOnlyFieldsFromSchema, externalEventTypeToDataCollectionEventType, extractFieldLocator, extractMembraneErrorData, findUdmCollectionMapping, findUdmDefaultCollection, findUdmRootLocation, findValueLocators, generateExampleFromSchema, getActionInstanceVariableSchema, getActionRunTimeVariablesSchema, getAllEventMethodFilePaths, getBusinessDaysBetween, getChildNodeKeys, getDataCollectionCreateFields, getDataCollectionUpdateFields, getDataLocationMethodPath, getDownstreamNodeKeys, getElementSelector, getErrorFromData, getEventMethodFileKey, getFilterFieldValuesByLocator, getFlowInstanceNodeDependency, getFlowNode, getFlowNodeConfigTimeVariablesSchema, getFlowNodeDescription, getFlowNodeRunTimeVariablesSchema, getFlowNodeSpec, getFlowNodeTitle, getFormula$1 as getFormula, getFormulaLocators, getFormula as getFormula_internalDoNotUse, getFullNameForLocator, getFullTitleForLocator, getIconUriForLocator, getLocatorsFromData, getLocatorsFromSchema, getMembraneElementPath, getMissingRequiredFields, getNameComponentsForLocator, getNameForLocator, getNodeInputSchema, getOperatorsBySchema, getParentNodeKeys, getReferenceCollectionPathForSchema, getReferenceCollectionPointerForSchema, getRequiredFieldsFromSchema, getRootNodeKeys, getSchemaByLocator, getSchemaFromValue, getUpstreamNodeKeys, getValueAtLocator, getValueByLocator, getVariableLocators, getWritableFieldsSchema, hasCycles, hasFormulas$1 as hasFormulas, hasFormulas as hasFormulas_internalDoNotUse, injectFormulaCatalog, isBusinessDay, isDataActionType, isDataLocationMethodSupported, isFormula$1 as isFormula, isFormula as isFormula_internalDoNotUse, isMembraneError, isObject, isSameDataLocation, isSchemaEmpty, isStream, isValidLocator, locatorToField, locatorToSteps, locatorToString, makeDataLocationOperationPath, makeDataLocationPath, makeDataRecordSchema, makeObjectPropertyLocator, makeSchemaForLocator, mergeSchemas, mergeWithFormulas, nonEmptyObjectProperties, parseDataLocationPath, parseDate, parseMembraneElementPath, patchSchema, pickFieldsFromSchema, pickFieldsFromValue, populateSchemaTitles, processCopy, removeNonExistentVars, removeRequiredFieldsFromSchema, resolveFormulas, schemaAllowsCustomValue, schemaHasFixedValues, schemaHasProperties, schemaIsNumber, schemaIsScalar, schemaTypeFromValue, schemaWithTitle, setSchemaAtLocator, setValueAtLocator, stepsToLocator, streamToString, transformVariablesWith, transformVars, truncateData, unwrapSchema, unwrapSchemas, updateFlowInstanceSchema, updateImpliedSchema, valueToSchema, valueToString, walkSchema, wrapAnyOfSchema, zodBooleanCoercion };
|
|
16454
|
+
export type { Action, ActionInstance, ActionInstanceSelector, ActionRunLogRecord, ActionSelector, ActionSpec, AgentSessionInput, Alert, App, AppCategory, AppDataSchema, AppDataSchemaInstance, AppDataSchemaInstanceSelector, AppEvent, AppEventSubscription, AppEventSubscriptionCreateRequest, AppEventSubscriptionSelector, AppEventSubscriptionUpdateRequest, AppEventType, BaseElementInstance, CaseFormulaValue, CaseFormulaValueItem, ConfigurationStateResult, Connection, ConnectionUiSpec, ConnectorApiType, ConnectorAuthOAuth1Config, ConnectorAuthOAuth2Config, ConnectorAuthOAuthConfig, ConnectorAuthType, ConnectorDataCollection, ConnectorDataCollectionBase, ConnectorDataCollectionEvent, ConnectorDataCollectionEventCustomPull, ConnectorDataCollectionEventFullScan, ConnectorDataCollectionEventImplementationTypeKey, ConnectorDataCollectionEventPullLatestRecords, ConnectorDataCollectionEventType, ConnectorDataCollectionEventWebhook, ConnectorDataCollectionMethod, ConnectorEventGlobalWebhookGetEventSelectorResponse, ConnectorEventHandler, ConnectorEventListItem, ConnectorEventSpec, ConnectorGlobalWebhookHandleRequest, ConnectorGlobalWebhookHandleResponse, ConnectorGlobalWebhookHandler, ConnectorGlobalWebhookListItem, ConnectorGlobalWebhookSpec, ConnectorOperationHandler, ConnectorOperationMethod, CopilotActivityNotificationData, CreateAppDataSchemaInstanceRequest, CreateAppDataSchemaRequest, CreateAppEventSubscriptionRequest, CreateAppEventTypeRequest, CreateDataLinkRequest, CreateDataLinkTableInstanceRequest, CreateFieldMappingInstanceRequest, CreateFlowInstanceRequest, CreateScenarioTemplateRequest, CreateScreenRequest, CreateUserRequest, Customer, DataCollectionEvent, DataCollectionEventsRequest, DataCollectionEventsResponse, DataCollectionListItem, DataCollectionMixin, DataCollectionParseUnifiedFieldsRequest, DataCollectionParseUnifiedFieldsResponse, DataCollectionSubscribeRequest, DataCollectionSubscribeResponse, DataCollectionUnsubscribeRequest, DataCollectionUnsubscribeResponse, DataCollectionUpdateSubscriptionRequest, DataCollectionUpdateSubscriptionResponse, DataEventWebhookPayload, DataFilter, DataFormArgs, DataLinkInTableSelector, DataLinkSelector, DataLinkTable, DataLinkTableInstance, DataLinkTableInstanceSelector, DataLocator, DataRecord, DataSource, DataSourceInstance, DataSourceInstanceSelector, DataSourceSelector, DeleteDataLinkRequest, DownstreamFlowNodeRun, ElementInstanceFields, ElementInstanceSelector, ElementTemplateFields, EngineWorkspace, EngineWorkspaceSettings, EngineWorkspaceWithOrgData, ErrorConstructorArg, EvalOperator, ExternalEventApiResponse, ExternalEventCustomPullCollectEventsRequest, ExternalEventCustomPullCollectEventsResponse, ExternalEventCustomPullSubscribeResponse, ExternalEventLogRecord, ExternalEventPull, ExternalEventSubscription, ExternalEventWebhookHandleRequest, ExternalEventWebhookHandleResponse, ExternalEventWebhookRefreshRequest, ExternalEventWebhookRefreshResponse, ExternalEventWebhookSubscribeRequest, ExternalEventWebhookSubscribeResponse, ExternalEventWebhookUnsubscribeRequest, FieldMapping, FieldMappingInstance, FieldMappingInstanceSelector, FieldMappingSelector, FieldValueOption, FindAppDataSchemaInstancesQuery, FindAppDataSchemasQuery, FindAppEventSubscriptionsQuery, FindAppEventTypesQuery, FindAppEventsQuery, FindDataLinkQuery, FindDataLinkTableInstancesQuery, FindDataLinksInTableQuery, FindDataLinksQuery, FindDataLinksResponse, FindDataSourceInstancesResponse, FindExternalEventLogsQuery, FindExternalEventPullsQuery, FindExternalEventSubscriptionsQuery, FindFieldMappingInstancesQuery, FindIntegrationsResponse, FindScenarioTemplatesQuery, FindScreensQuery, FindUsersQuery, Flow, FlowInstance, FlowInstanceSelector, FlowNodeHandlerRunResponse, FlowNodeRunOutput, FlowNodeRunOutputMetadata, FlowNodeRunOutputWithoutDownstreamRuns, FlowNodeRunParameters, FlowNodeRunRecord, FlowNodeRunRecordWithoutOutputsData, FlowNodeRunResult, FlowRun, FlowSelector, GraphQLApiMapping, GraphQLFieldMapping, GraphqlApiClientInput, HandyScenarioTemplateElementApi, IWorkspaceUpdate, Integration, IntegrationAuthOptionLegacy, IntegrationElement, IntegrationElementInstance, IntegrationElementInstanceDependency, IntegrationSpecificElementSelector, ListDataSourcesForIntegrationQuery, ListFieldMappingInstancesForConnectionQuery, ListFieldMappingsForIntegrationQuery, ListFlowsForIntegrationQuery, LogRecord, LookupValue, MapFormulaValue, MappingItem, OpenActionConfigurationOptions, OpenDataSourceConfigurationOptions, OpenFieldMappingInstanceConfigurationOptions, OpenFlowInstanceConfigurationOptions, OpenFlowInstanceEditorOptions, OpenFlowRunEditorOptions, OpenNewConnectionOptions, OpenapiMapping, OperationListItem, OperationMapping, OperationRunRequest, OperationRunResponse, OperationSpec, Org, OrgUser, OrgWorkspace, Package, PatchAgentSession, PatchSchemaOption, PlatformUser, PullLatestRecordsEventOutput, ResolveFormulaParams, RestApiClientConstructorOptions, RestApiClientInput, RestApiClientOptions, RestApiClientOutput, RestApiClientOverride, RestApiClientResponseHandler, RestApiMapping, RunFlowOptions, Scenario, ScenarioTemplateElementOverride, ScenarioTemplateElementsApi, ScenarioTemplateIntegration, ScenarioTemplateKeyCollision, Screen, ScreenBlockApi, ScreenSelector, Self, UnifiedDataModel, UpdateAppDataSchemaInstanceRequest, UpdateAppDataSchemaRequest, UpdateAppEventSubscriptionRequest, UpdateAppEventTypeRequest, UpdateDataLinkTableInstanceRequest, UpdateFieldMappingInstanceRequest, UpdateFlowInstanceRequest, UpdateScenarioTemplateRequest, UpdateScreenRequest, UpdateUserRequest, UpstreamFlowNodeRun, UsageEntry, UsageWithCredits, User, UserSelector, UserWorkspaceSettings, ValueToSchemaOptions, Webhook, WebhookType, WithExecutionLogs, WorkspaceElementCalculateStateResult, WorkspaceElementChange, WorkspaceElementDependency, WorkspaceElementReference, WorkspaceElementSpec, WorkspaceElements, WorkspaceExport, WorkspaceExportComparison, WorkspaceExportComparisonOptions, WorkspaceExportComparisonResult, WorkspaceLimit, WorkspaceLimits, WorkspaceNotification, WorkspaceSyncEvent, WorkspaceUpdate, WorkspaceUser };
|