@epilot/app-client 0.13.2 → 0.13.4
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 +277 -9
- package/dist/openapi.json +947 -179
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1595,7 +1595,32 @@ declare namespace Components {
|
|
|
1595
1595
|
* The portal looks up this hook implicitly per extension (one `visualizationMetadata` hook per extension) — there is no need for a data-retrieval hook to reference it explicitly.
|
|
1596
1596
|
*
|
|
1597
1597
|
*/
|
|
1598
|
-
PortalExtensionHookVisualizationMetadata
|
|
1598
|
+
PortalExtensionHookVisualizationMetadata | /**
|
|
1599
|
+
* Hook that replaces the built-in change email functionality for portal users. When configured, the portal does not change the user's login email itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the email change (most likely by sending the user instructions to confirm the new email address).
|
|
1600
|
+
* The expected response http status code to the call is:
|
|
1601
|
+
* - 2xx if the request was accepted
|
|
1602
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
1603
|
+
*
|
|
1604
|
+
*/
|
|
1605
|
+
PortalExtensionHookChangeEmail | /**
|
|
1606
|
+
* Hook that replaces the built-in change password functionality for portal users. When configured, the portal does not change the user's password itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the password change (most likely by sending the user instructions to complete the process).
|
|
1607
|
+
* The expected response http status code to the call is:
|
|
1608
|
+
* - 2xx if the request was accepted
|
|
1609
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
1610
|
+
*
|
|
1611
|
+
*/
|
|
1612
|
+
PortalExtensionHookChangePassword | /**
|
|
1613
|
+
* Hook that replaces the built-in delete account functionality for portal users. When configured, the portal does not delete the user itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the deletion.
|
|
1614
|
+
* The `deletion_mode` controls what the portal does after the call:
|
|
1615
|
+
* - `synchronous`: The third-party system deletes the user immediately. The portal waits for a successful (2xx) response and then also deletes the corresponding epilot Cognito user.
|
|
1616
|
+
* - `asynchronous`: The third-party system handles deletion out-of-band. The portal does not delete anything immediately; cleanup is expected to happen later (e.g. via the user deletion API or webhooks).
|
|
1617
|
+
*
|
|
1618
|
+
* The expected response http status code to the call is:
|
|
1619
|
+
* - 2xx if the request was accepted
|
|
1620
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
1621
|
+
*
|
|
1622
|
+
*/
|
|
1623
|
+
PortalExtensionHookDeleteAccount)[];
|
|
1599
1624
|
links?: {
|
|
1600
1625
|
/**
|
|
1601
1626
|
* Identifier of the link. Should not change between updates.
|
|
@@ -1625,6 +1650,150 @@ declare namespace Components {
|
|
|
1625
1650
|
};
|
|
1626
1651
|
}[];
|
|
1627
1652
|
}
|
|
1653
|
+
/**
|
|
1654
|
+
* Hook that replaces the built-in change email functionality for portal users. When configured, the portal does not change the user's login email itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the email change (most likely by sending the user instructions to confirm the new email address).
|
|
1655
|
+
* The expected response http status code to the call is:
|
|
1656
|
+
* - 2xx if the request was accepted
|
|
1657
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
1658
|
+
*
|
|
1659
|
+
*/
|
|
1660
|
+
export interface PortalExtensionHookChangeEmail {
|
|
1661
|
+
/**
|
|
1662
|
+
* Identifier of the hook. Should not change between updates.
|
|
1663
|
+
*/
|
|
1664
|
+
id: string; // ^[a-zA-Z0-9_-]+$
|
|
1665
|
+
name?: TranslatedString;
|
|
1666
|
+
type: "changeEmail";
|
|
1667
|
+
/**
|
|
1668
|
+
* Whether the portal user must confirm their current password before the change email request is handed over to the third-party system. When true, the portal collects and verifies the current password before calling the hook.
|
|
1669
|
+
*
|
|
1670
|
+
*/
|
|
1671
|
+
require_password_confirmation?: boolean;
|
|
1672
|
+
/**
|
|
1673
|
+
* Optional explanation shown to the user in the change email confirmation dialog.
|
|
1674
|
+
*/
|
|
1675
|
+
explanation?: {
|
|
1676
|
+
[name: string]: string;
|
|
1677
|
+
/**
|
|
1678
|
+
* Explanation of the functionality shown to the end user.
|
|
1679
|
+
* example:
|
|
1680
|
+
* You will receive an email with instructions to confirm your new email address.
|
|
1681
|
+
*/
|
|
1682
|
+
en: string;
|
|
1683
|
+
};
|
|
1684
|
+
auth?: PortalExtensionAuthBlock;
|
|
1685
|
+
call: {
|
|
1686
|
+
/**
|
|
1687
|
+
* HTTP method to use for the call
|
|
1688
|
+
*/
|
|
1689
|
+
method?: string;
|
|
1690
|
+
/**
|
|
1691
|
+
* URL to call. Supports variable interpolation.
|
|
1692
|
+
*/
|
|
1693
|
+
url: string;
|
|
1694
|
+
/**
|
|
1695
|
+
* Parameters to append to the URL. Supports variable interpolation.
|
|
1696
|
+
*/
|
|
1697
|
+
params?: {
|
|
1698
|
+
[name: string]: string;
|
|
1699
|
+
};
|
|
1700
|
+
/**
|
|
1701
|
+
* Headers to use. Supports variable interpolation.
|
|
1702
|
+
*/
|
|
1703
|
+
headers: {
|
|
1704
|
+
[name: string]: string;
|
|
1705
|
+
};
|
|
1706
|
+
/**
|
|
1707
|
+
* Optional JSON body to use for the call. Defaults to an object with the requested new email and portal user context, e.g. `{"new_email": "...", "old_email": "...", "portal_user_id": "..."}`. The requested new email is available as `{{Input.new_email}}` and the current account email as `{{Input.old_email}}`. Supports variable interpolation.
|
|
1708
|
+
*/
|
|
1709
|
+
body?: {
|
|
1710
|
+
[key: string]: any;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
resolved?: {
|
|
1714
|
+
/**
|
|
1715
|
+
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
1716
|
+
* If specified and the path resolves to a string, that message is forwarded to the end user instead of a generic error.
|
|
1717
|
+
*
|
|
1718
|
+
* example:
|
|
1719
|
+
* error.message
|
|
1720
|
+
*/
|
|
1721
|
+
error_message_path?: string;
|
|
1722
|
+
};
|
|
1723
|
+
secure_proxy?: /* If set, requests are routed through the ERP Integration secure proxy. Mutually exclusive with use_static_ips. */ PortalExtensionSecureProxy;
|
|
1724
|
+
}
|
|
1725
|
+
/**
|
|
1726
|
+
* Hook that replaces the built-in change password functionality for portal users. When configured, the portal does not change the user's password itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the password change (most likely by sending the user instructions to complete the process).
|
|
1727
|
+
* The expected response http status code to the call is:
|
|
1728
|
+
* - 2xx if the request was accepted
|
|
1729
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
1730
|
+
*
|
|
1731
|
+
*/
|
|
1732
|
+
export interface PortalExtensionHookChangePassword {
|
|
1733
|
+
/**
|
|
1734
|
+
* Identifier of the hook. Should not change between updates.
|
|
1735
|
+
*/
|
|
1736
|
+
id: string; // ^[a-zA-Z0-9_-]+$
|
|
1737
|
+
name?: TranslatedString;
|
|
1738
|
+
type: "changePassword";
|
|
1739
|
+
/**
|
|
1740
|
+
* Whether the portal user must provide a new password. When false, the portal only asks the user to confirm (showing the configured explanation) and no new password is collected; the third-party system is expected to handle the password change. When true, the portal collects a new password and passes it to the third-party system as `{{Input.new_password}}`.
|
|
1741
|
+
*
|
|
1742
|
+
*/
|
|
1743
|
+
require_new_password?: boolean;
|
|
1744
|
+
/**
|
|
1745
|
+
* Optional explanation shown to the user in the change password confirmation dialog.
|
|
1746
|
+
*/
|
|
1747
|
+
explanation?: {
|
|
1748
|
+
[name: string]: string;
|
|
1749
|
+
/**
|
|
1750
|
+
* Explanation of the functionality shown to the end user.
|
|
1751
|
+
* example:
|
|
1752
|
+
* You will receive an email with instructions to reset your password.
|
|
1753
|
+
*/
|
|
1754
|
+
en: string;
|
|
1755
|
+
};
|
|
1756
|
+
auth?: PortalExtensionAuthBlock;
|
|
1757
|
+
call: {
|
|
1758
|
+
/**
|
|
1759
|
+
* HTTP method to use for the call
|
|
1760
|
+
*/
|
|
1761
|
+
method?: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* URL to call. Supports variable interpolation.
|
|
1764
|
+
*/
|
|
1765
|
+
url: string;
|
|
1766
|
+
/**
|
|
1767
|
+
* Parameters to append to the URL. Supports variable interpolation.
|
|
1768
|
+
*/
|
|
1769
|
+
params?: {
|
|
1770
|
+
[name: string]: string;
|
|
1771
|
+
};
|
|
1772
|
+
/**
|
|
1773
|
+
* Headers to use. Supports variable interpolation.
|
|
1774
|
+
*/
|
|
1775
|
+
headers: {
|
|
1776
|
+
[name: string]: string;
|
|
1777
|
+
};
|
|
1778
|
+
/**
|
|
1779
|
+
* Optional JSON body to use for the call. Defaults to an object with portal user context (and the new password as `{{Input.new_password}}` when `require_new_password` is true). Supports variable interpolation.
|
|
1780
|
+
*/
|
|
1781
|
+
body?: {
|
|
1782
|
+
[key: string]: any;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
resolved?: {
|
|
1786
|
+
/**
|
|
1787
|
+
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
1788
|
+
* If specified and the path resolves to a string, that message is forwarded to the end user instead of a generic error.
|
|
1789
|
+
*
|
|
1790
|
+
* example:
|
|
1791
|
+
* error.message
|
|
1792
|
+
*/
|
|
1793
|
+
error_message_path?: string;
|
|
1794
|
+
};
|
|
1795
|
+
secure_proxy?: /* If set, requests are routed through the ERP Integration secure proxy. Mutually exclusive with use_static_ips. */ PortalExtensionSecureProxy;
|
|
1796
|
+
}
|
|
1628
1797
|
/**
|
|
1629
1798
|
* Hook that will allow using the specified source as data for consumption visualizations. This hook is triggered to fetch the data. Format of the request and response has to follow the following specification: TBD. The expected response to the call is:
|
|
1630
1799
|
* - 200 with the time series data
|
|
@@ -1676,6 +1845,10 @@ declare namespace Components {
|
|
|
1676
1845
|
/**
|
|
1677
1846
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
1678
1847
|
*/
|
|
1848
|
+
data_path?: string;
|
|
1849
|
+
/**
|
|
1850
|
+
* Deprecated. Use `data_path` instead.
|
|
1851
|
+
*/
|
|
1679
1852
|
dataPath?: string;
|
|
1680
1853
|
/**
|
|
1681
1854
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -1684,7 +1857,7 @@ declare namespace Components {
|
|
|
1684
1857
|
* example:
|
|
1685
1858
|
* error.message
|
|
1686
1859
|
*/
|
|
1687
|
-
|
|
1860
|
+
error_message_path?: string;
|
|
1688
1861
|
};
|
|
1689
1862
|
/**
|
|
1690
1863
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1760,7 +1933,7 @@ declare namespace Components {
|
|
|
1760
1933
|
* example:
|
|
1761
1934
|
* error.message
|
|
1762
1935
|
*/
|
|
1763
|
-
|
|
1936
|
+
error_message_path?: string;
|
|
1764
1937
|
};
|
|
1765
1938
|
/**
|
|
1766
1939
|
* Mode of contract assignment. See hook description for mode details.
|
|
@@ -1843,6 +2016,10 @@ declare namespace Components {
|
|
|
1843
2016
|
/**
|
|
1844
2017
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
1845
2018
|
*/
|
|
2019
|
+
data_path?: string;
|
|
2020
|
+
/**
|
|
2021
|
+
* Deprecated. Use `data_path` instead.
|
|
2022
|
+
*/
|
|
1846
2023
|
dataPath?: string;
|
|
1847
2024
|
/**
|
|
1848
2025
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -1851,7 +2028,7 @@ declare namespace Components {
|
|
|
1851
2028
|
* example:
|
|
1852
2029
|
* error.message
|
|
1853
2030
|
*/
|
|
1854
|
-
|
|
2031
|
+
error_message_path?: string;
|
|
1855
2032
|
};
|
|
1856
2033
|
/**
|
|
1857
2034
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1918,7 +2095,7 @@ declare namespace Components {
|
|
|
1918
2095
|
* example:
|
|
1919
2096
|
* error.message
|
|
1920
2097
|
*/
|
|
1921
|
-
|
|
2098
|
+
error_message_path?: string;
|
|
1922
2099
|
};
|
|
1923
2100
|
/**
|
|
1924
2101
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -1928,6 +2105,82 @@ declare namespace Components {
|
|
|
1928
2105
|
use_static_ips?: boolean;
|
|
1929
2106
|
secure_proxy?: /* If set, requests are routed through the ERP Integration secure proxy. Mutually exclusive with use_static_ips. */ PortalExtensionSecureProxy;
|
|
1930
2107
|
}
|
|
2108
|
+
/**
|
|
2109
|
+
* Hook that replaces the built-in delete account functionality for portal users. When configured, the portal does not delete the user itself. Instead, this hook makes an HTTP call to the third-party system, which is expected to handle the deletion.
|
|
2110
|
+
* The `deletion_mode` controls what the portal does after the call:
|
|
2111
|
+
* - `synchronous`: The third-party system deletes the user immediately. The portal waits for a successful (2xx) response and then also deletes the corresponding epilot Cognito user.
|
|
2112
|
+
* - `asynchronous`: The third-party system handles deletion out-of-band. The portal does not delete anything immediately; cleanup is expected to happen later (e.g. via the user deletion API or webhooks).
|
|
2113
|
+
*
|
|
2114
|
+
* The expected response http status code to the call is:
|
|
2115
|
+
* - 2xx if the request was accepted
|
|
2116
|
+
* - non-2xx if the request failed (optionally with a human-readable message resolved via `resolved.error_message_path`)
|
|
2117
|
+
*
|
|
2118
|
+
*/
|
|
2119
|
+
export interface PortalExtensionHookDeleteAccount {
|
|
2120
|
+
/**
|
|
2121
|
+
* Identifier of the hook. Should not change between updates.
|
|
2122
|
+
*/
|
|
2123
|
+
id: string; // ^[a-zA-Z0-9_-]+$
|
|
2124
|
+
name?: TranslatedString;
|
|
2125
|
+
type: "deleteAccount";
|
|
2126
|
+
/**
|
|
2127
|
+
* Controls how the account deletion is handled. `synchronous` waits for the third-party system to respond and then also deletes the epilot user. `asynchronous` hands the deletion over entirely to the third-party system and the portal does not delete anything immediately.
|
|
2128
|
+
*
|
|
2129
|
+
*/
|
|
2130
|
+
deletion_mode?: "synchronous" | "asynchronous";
|
|
2131
|
+
/**
|
|
2132
|
+
* Optional explanation shown to the user in the delete account confirmation dialog.
|
|
2133
|
+
*/
|
|
2134
|
+
explanation?: {
|
|
2135
|
+
[name: string]: string;
|
|
2136
|
+
/**
|
|
2137
|
+
* Explanation of the functionality shown to the end user.
|
|
2138
|
+
* example:
|
|
2139
|
+
* Your account deletion will be processed by our system. This may take a few days.
|
|
2140
|
+
*/
|
|
2141
|
+
en: string;
|
|
2142
|
+
};
|
|
2143
|
+
auth?: PortalExtensionAuthBlock;
|
|
2144
|
+
call: {
|
|
2145
|
+
/**
|
|
2146
|
+
* HTTP method to use for the call
|
|
2147
|
+
*/
|
|
2148
|
+
method?: string;
|
|
2149
|
+
/**
|
|
2150
|
+
* URL to call. Supports variable interpolation.
|
|
2151
|
+
*/
|
|
2152
|
+
url: string;
|
|
2153
|
+
/**
|
|
2154
|
+
* Parameters to append to the URL. Supports variable interpolation.
|
|
2155
|
+
*/
|
|
2156
|
+
params?: {
|
|
2157
|
+
[name: string]: string;
|
|
2158
|
+
};
|
|
2159
|
+
/**
|
|
2160
|
+
* Headers to use. Supports variable interpolation.
|
|
2161
|
+
*/
|
|
2162
|
+
headers: {
|
|
2163
|
+
[name: string]: string;
|
|
2164
|
+
};
|
|
2165
|
+
/**
|
|
2166
|
+
* Optional JSON body to use for the call. Defaults to an object with portal user context, e.g. `{"portal_user_id": "...", "email": "..."}`. Supports variable interpolation.
|
|
2167
|
+
*/
|
|
2168
|
+
body?: {
|
|
2169
|
+
[key: string]: any;
|
|
2170
|
+
};
|
|
2171
|
+
};
|
|
2172
|
+
resolved?: {
|
|
2173
|
+
/**
|
|
2174
|
+
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
2175
|
+
* If specified and the path resolves to a string, that message is forwarded to the end user instead of a generic error.
|
|
2176
|
+
*
|
|
2177
|
+
* example:
|
|
2178
|
+
* error.message
|
|
2179
|
+
*/
|
|
2180
|
+
error_message_path?: string;
|
|
2181
|
+
};
|
|
2182
|
+
secure_proxy?: /* If set, requests are routed through the ERP Integration secure proxy. Mutually exclusive with use_static_ips. */ PortalExtensionSecureProxy;
|
|
2183
|
+
}
|
|
1931
2184
|
/**
|
|
1932
2185
|
* Hook that checks the plausibility of meter readings before they are saved. This hook makes a POST call whenever a user is trying to save a meter reading. The expected response to the call is:
|
|
1933
2186
|
* - 200:
|
|
@@ -1982,6 +2235,10 @@ declare namespace Components {
|
|
|
1982
2235
|
* example:
|
|
1983
2236
|
* data.results
|
|
1984
2237
|
*/
|
|
2238
|
+
data_path?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
* Deprecated. Use `data_path` instead.
|
|
2241
|
+
*/
|
|
1985
2242
|
dataPath?: string;
|
|
1986
2243
|
/**
|
|
1987
2244
|
* Counter identifier(s) used to match against the meter's counters.
|
|
@@ -2022,7 +2279,7 @@ declare namespace Components {
|
|
|
2022
2279
|
* example:
|
|
2023
2280
|
* error.message
|
|
2024
2281
|
*/
|
|
2025
|
-
|
|
2282
|
+
error_message_path?: string;
|
|
2026
2283
|
};
|
|
2027
2284
|
/**
|
|
2028
2285
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2083,6 +2340,10 @@ declare namespace Components {
|
|
|
2083
2340
|
/**
|
|
2084
2341
|
* Optional path to the data (array) in the response. If omitted, the data is assumed to be on the top level.
|
|
2085
2342
|
*/
|
|
2343
|
+
data_path?: string;
|
|
2344
|
+
/**
|
|
2345
|
+
* Deprecated. Use `data_path` instead.
|
|
2346
|
+
*/
|
|
2086
2347
|
dataPath?: string;
|
|
2087
2348
|
/**
|
|
2088
2349
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -2091,7 +2352,7 @@ declare namespace Components {
|
|
|
2091
2352
|
* example:
|
|
2092
2353
|
* error.message
|
|
2093
2354
|
*/
|
|
2094
|
-
|
|
2355
|
+
error_message_path?: string;
|
|
2095
2356
|
};
|
|
2096
2357
|
/**
|
|
2097
2358
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2159,7 +2420,7 @@ declare namespace Components {
|
|
|
2159
2420
|
* example:
|
|
2160
2421
|
* error.message
|
|
2161
2422
|
*/
|
|
2162
|
-
|
|
2423
|
+
error_message_path?: string;
|
|
2163
2424
|
};
|
|
2164
2425
|
/**
|
|
2165
2426
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -2229,6 +2490,10 @@ declare namespace Components {
|
|
|
2229
2490
|
/**
|
|
2230
2491
|
* Optional path to the metadata object in the response. If omitted, the metadata is assumed to be on the top level.
|
|
2231
2492
|
*/
|
|
2493
|
+
data_path?: string;
|
|
2494
|
+
/**
|
|
2495
|
+
* Deprecated. Use `data_path` instead.
|
|
2496
|
+
*/
|
|
2232
2497
|
dataPath?: string;
|
|
2233
2498
|
/**
|
|
2234
2499
|
* Optional path to a human-readable error message in the third-party response body, used when the call fails (non-2xx status).
|
|
@@ -2237,7 +2502,7 @@ declare namespace Components {
|
|
|
2237
2502
|
* example:
|
|
2238
2503
|
* error.message
|
|
2239
2504
|
*/
|
|
2240
|
-
|
|
2505
|
+
error_message_path?: string;
|
|
2241
2506
|
};
|
|
2242
2507
|
/**
|
|
2243
2508
|
* Deprecated. Prefer `secure_proxy` instead.
|
|
@@ -3817,10 +4082,13 @@ export type PortalBlockSurfaceConfig = Components.Schemas.PortalBlockSurfaceConf
|
|
|
3817
4082
|
export type PortalExtensionAuthBlock = Components.Schemas.PortalExtensionAuthBlock;
|
|
3818
4083
|
export type PortalExtensionComponent = Components.Schemas.PortalExtensionComponent;
|
|
3819
4084
|
export type PortalExtensionConfig = Components.Schemas.PortalExtensionConfig;
|
|
4085
|
+
export type PortalExtensionHookChangeEmail = Components.Schemas.PortalExtensionHookChangeEmail;
|
|
4086
|
+
export type PortalExtensionHookChangePassword = Components.Schemas.PortalExtensionHookChangePassword;
|
|
3820
4087
|
export type PortalExtensionHookConsumptionDataRetrieval = Components.Schemas.PortalExtensionHookConsumptionDataRetrieval;
|
|
3821
4088
|
export type PortalExtensionHookContractIdentification = Components.Schemas.PortalExtensionHookContractIdentification;
|
|
3822
4089
|
export type PortalExtensionHookCostDataRetrieval = Components.Schemas.PortalExtensionHookCostDataRetrieval;
|
|
3823
4090
|
export type PortalExtensionHookDataExport = Components.Schemas.PortalExtensionHookDataExport;
|
|
4091
|
+
export type PortalExtensionHookDeleteAccount = Components.Schemas.PortalExtensionHookDeleteAccount;
|
|
3824
4092
|
export type PortalExtensionHookMeterReadingPlausibilityCheck = Components.Schemas.PortalExtensionHookMeterReadingPlausibilityCheck;
|
|
3825
4093
|
export type PortalExtensionHookPriceDataRetrieval = Components.Schemas.PortalExtensionHookPriceDataRetrieval;
|
|
3826
4094
|
export type PortalExtensionHookRegistrationIdentifiersCheck = Components.Schemas.PortalExtensionHookRegistrationIdentifiersCheck;
|