@epilot/app-client 0.13.2 → 0.13.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/openapi.d.ts +28 -8
- package/dist/openapi.json +601 -164
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1676,6 +1676,10 @@ declare namespace Components {
|
|
|
1676
1676
|
/**
|
|
1677
1677
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
1678
1678
|
*/
|
|
1679
|
+
data_path?: string;
|
|
1680
|
+
/**
|
|
1681
|
+
* Deprecated. Use `data_path` instead.
|
|
1682
|
+
*/
|
|
1679
1683
|
dataPath?: string;
|
|
1680
1684
|
/**
|
|
1681
1685
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -1684,7 +1688,7 @@ declare namespace Components {
|
|
|
1684
1688
|
* example:
|
|
1685
1689
|
* error.message
|
|
1686
1690
|
*/
|
|
1687
|
-
|
|
1691
|
+
error_message_path?: string;
|
|
1688
1692
|
};
|
|
1689
1693
|
/**
|
|
1690
1694
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1760,7 +1764,7 @@ declare namespace Components {
|
|
|
1760
1764
|
* example:
|
|
1761
1765
|
* error.message
|
|
1762
1766
|
*/
|
|
1763
|
-
|
|
1767
|
+
error_message_path?: string;
|
|
1764
1768
|
};
|
|
1765
1769
|
/**
|
|
1766
1770
|
* Mode of contract assignment. See hook description for mode details.
|
|
@@ -1843,6 +1847,10 @@ declare namespace Components {
|
|
|
1843
1847
|
/**
|
|
1844
1848
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
1845
1849
|
*/
|
|
1850
|
+
data_path?: string;
|
|
1851
|
+
/**
|
|
1852
|
+
* Deprecated. Use `data_path` instead.
|
|
1853
|
+
*/
|
|
1846
1854
|
dataPath?: string;
|
|
1847
1855
|
/**
|
|
1848
1856
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -1851,7 +1859,7 @@ declare namespace Components {
|
|
|
1851
1859
|
* example:
|
|
1852
1860
|
* error.message
|
|
1853
1861
|
*/
|
|
1854
|
-
|
|
1862
|
+
error_message_path?: string;
|
|
1855
1863
|
};
|
|
1856
1864
|
/**
|
|
1857
1865
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1918,7 +1926,7 @@ declare namespace Components {
|
|
|
1918
1926
|
* example:
|
|
1919
1927
|
* error.message
|
|
1920
1928
|
*/
|
|
1921
|
-
|
|
1929
|
+
error_message_path?: string;
|
|
1922
1930
|
};
|
|
1923
1931
|
/**
|
|
1924
1932
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1982,6 +1990,10 @@ declare namespace Components {
|
|
|
1982
1990
|
* example:
|
|
1983
1991
|
* data.results
|
|
1984
1992
|
*/
|
|
1993
|
+
data_path?: string;
|
|
1994
|
+
/**
|
|
1995
|
+
* Deprecated. Use `data_path` instead.
|
|
1996
|
+
*/
|
|
1985
1997
|
dataPath?: string;
|
|
1986
1998
|
/**
|
|
1987
1999
|
* Counter identifier(s) used to match against the meter's counters.
|
|
@@ -2022,7 +2034,7 @@ declare namespace Components {
|
|
|
2022
2034
|
* example:
|
|
2023
2035
|
* error.message
|
|
2024
2036
|
*/
|
|
2025
|
-
|
|
2037
|
+
error_message_path?: string;
|
|
2026
2038
|
};
|
|
2027
2039
|
/**
|
|
2028
2040
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2083,6 +2095,10 @@ declare namespace Components {
|
|
|
2083
2095
|
/**
|
|
2084
2096
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
2085
2097
|
*/
|
|
2098
|
+
data_path?: string;
|
|
2099
|
+
/**
|
|
2100
|
+
* Deprecated. Use `data_path` instead.
|
|
2101
|
+
*/
|
|
2086
2102
|
dataPath?: string;
|
|
2087
2103
|
/**
|
|
2088
2104
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -2091,7 +2107,7 @@ declare namespace Components {
|
|
|
2091
2107
|
* example:
|
|
2092
2108
|
* error.message
|
|
2093
2109
|
*/
|
|
2094
|
-
|
|
2110
|
+
error_message_path?: string;
|
|
2095
2111
|
};
|
|
2096
2112
|
/**
|
|
2097
2113
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2159,7 +2175,7 @@ declare namespace Components {
|
|
|
2159
2175
|
* example:
|
|
2160
2176
|
* error.message
|
|
2161
2177
|
*/
|
|
2162
|
-
|
|
2178
|
+
error_message_path?: string;
|
|
2163
2179
|
};
|
|
2164
2180
|
/**
|
|
2165
2181
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2229,6 +2245,10 @@ declare namespace Components {
|
|
|
2229
2245
|
/**
|
|
2230
2246
|
* Optional path to the metadata object in the response. If omitted, the metadata is assumed to be on the top level.
|
|
2231
2247
|
*/
|
|
2248
|
+
data_path?: string;
|
|
2249
|
+
/**
|
|
2250
|
+
* Deprecated. Use `data_path` instead.
|
|
2251
|
+
*/
|
|
2232
2252
|
dataPath?: string;
|
|
2233
2253
|
/**
|
|
2234
2254
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -2237,7 +2257,7 @@ declare namespace Components {
|
|
|
2237
2257
|
* example:
|
|
2238
2258
|
* error.message
|
|
2239
2259
|
*/
|
|
2240
|
-
|
|
2260
|
+
error_message_path?: string;
|
|
2241
2261
|
};
|
|
2242
2262
|
/**
|
|
2243
2263
|
* Deprecated. Prefer `secure_proxy` instead.
|