fusio-sdk 5.1.16 → 5.1.17
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/index.cjs +434 -289
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +78 -1
- package/dist/index.d.ts +78 -1
- package/dist/index.js +429 -285
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -33,6 +33,7 @@ __export(index_exports, {
|
|
|
33
33
|
BackendDashboardTag: () => BackendDashboardTag,
|
|
34
34
|
BackendDatabaseTag: () => BackendDatabaseTag,
|
|
35
35
|
BackendEventTag: () => BackendEventTag,
|
|
36
|
+
BackendFirewallTag: () => BackendFirewallTag,
|
|
36
37
|
BackendFormTag: () => BackendFormTag,
|
|
37
38
|
BackendGeneratorTag: () => BackendGeneratorTag,
|
|
38
39
|
BackendIdentityTag: () => BackendIdentityTag,
|
|
@@ -1749,17 +1750,17 @@ var BackendEventTag = class extends import_sdkgen_client26.TagAbstract {
|
|
|
1749
1750
|
}
|
|
1750
1751
|
};
|
|
1751
1752
|
|
|
1752
|
-
// src/
|
|
1753
|
+
// src/BackendFirewallTag.ts
|
|
1753
1754
|
var import_sdkgen_client28 = require("sdkgen-client");
|
|
1754
1755
|
var import_sdkgen_client29 = require("sdkgen-client");
|
|
1755
|
-
var
|
|
1756
|
+
var BackendFirewallTag = class extends import_sdkgen_client28.TagAbstract {
|
|
1756
1757
|
/**
|
|
1757
1758
|
* @returns {Promise<CommonMessage>}
|
|
1758
1759
|
* @throws {CommonMessageException}
|
|
1759
1760
|
* @throws {ClientException}
|
|
1760
1761
|
*/
|
|
1761
1762
|
async create(payload) {
|
|
1762
|
-
const url = this.parser.url("/backend/
|
|
1763
|
+
const url = this.parser.url("/backend/firewall", {});
|
|
1763
1764
|
let request = {
|
|
1764
1765
|
url,
|
|
1765
1766
|
method: "POST",
|
|
@@ -1779,6 +1780,143 @@ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1779
1780
|
}
|
|
1780
1781
|
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1781
1782
|
}
|
|
1783
|
+
/**
|
|
1784
|
+
* @returns {Promise<CommonMessage>}
|
|
1785
|
+
* @throws {CommonMessageException}
|
|
1786
|
+
* @throws {ClientException}
|
|
1787
|
+
*/
|
|
1788
|
+
async delete(firewallId) {
|
|
1789
|
+
const url = this.parser.url("/backend/firewall/$firewall_id<[0-9]+|^~>", {
|
|
1790
|
+
"firewall_id": firewallId
|
|
1791
|
+
});
|
|
1792
|
+
let request = {
|
|
1793
|
+
url,
|
|
1794
|
+
method: "DELETE",
|
|
1795
|
+
headers: {},
|
|
1796
|
+
params: this.parser.query({}, [])
|
|
1797
|
+
};
|
|
1798
|
+
const response = await this.httpClient.request(request);
|
|
1799
|
+
if (response.ok) {
|
|
1800
|
+
return await response.json();
|
|
1801
|
+
}
|
|
1802
|
+
const statusCode = response.status;
|
|
1803
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1804
|
+
throw new CommonMessageException(await response.json());
|
|
1805
|
+
}
|
|
1806
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1807
|
+
}
|
|
1808
|
+
/**
|
|
1809
|
+
* @returns {Promise<BackendFirewall>}
|
|
1810
|
+
* @throws {CommonMessageException}
|
|
1811
|
+
* @throws {ClientException}
|
|
1812
|
+
*/
|
|
1813
|
+
async get(firewallId) {
|
|
1814
|
+
const url = this.parser.url("/backend/firewall/$firewall_id<[0-9]+|^~>", {
|
|
1815
|
+
"firewall_id": firewallId
|
|
1816
|
+
});
|
|
1817
|
+
let request = {
|
|
1818
|
+
url,
|
|
1819
|
+
method: "GET",
|
|
1820
|
+
headers: {},
|
|
1821
|
+
params: this.parser.query({}, [])
|
|
1822
|
+
};
|
|
1823
|
+
const response = await this.httpClient.request(request);
|
|
1824
|
+
if (response.ok) {
|
|
1825
|
+
return await response.json();
|
|
1826
|
+
}
|
|
1827
|
+
const statusCode = response.status;
|
|
1828
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1829
|
+
throw new CommonMessageException(await response.json());
|
|
1830
|
+
}
|
|
1831
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1832
|
+
}
|
|
1833
|
+
/**
|
|
1834
|
+
* @returns {Promise<BackendFirewallCollection>}
|
|
1835
|
+
* @throws {CommonMessageException}
|
|
1836
|
+
* @throws {ClientException}
|
|
1837
|
+
*/
|
|
1838
|
+
async getAll(startIndex, count, search) {
|
|
1839
|
+
const url = this.parser.url("/backend/firewall", {});
|
|
1840
|
+
let request = {
|
|
1841
|
+
url,
|
|
1842
|
+
method: "GET",
|
|
1843
|
+
headers: {},
|
|
1844
|
+
params: this.parser.query({
|
|
1845
|
+
"startIndex": startIndex,
|
|
1846
|
+
"count": count,
|
|
1847
|
+
"search": search
|
|
1848
|
+
}, [])
|
|
1849
|
+
};
|
|
1850
|
+
const response = await this.httpClient.request(request);
|
|
1851
|
+
if (response.ok) {
|
|
1852
|
+
return await response.json();
|
|
1853
|
+
}
|
|
1854
|
+
const statusCode = response.status;
|
|
1855
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1856
|
+
throw new CommonMessageException(await response.json());
|
|
1857
|
+
}
|
|
1858
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1859
|
+
}
|
|
1860
|
+
/**
|
|
1861
|
+
* @returns {Promise<CommonMessage>}
|
|
1862
|
+
* @throws {CommonMessageException}
|
|
1863
|
+
* @throws {ClientException}
|
|
1864
|
+
*/
|
|
1865
|
+
async update(firewallId, payload) {
|
|
1866
|
+
const url = this.parser.url("/backend/firewall/$firewall_id<[0-9]+|^~>", {
|
|
1867
|
+
"firewall_id": firewallId
|
|
1868
|
+
});
|
|
1869
|
+
let request = {
|
|
1870
|
+
url,
|
|
1871
|
+
method: "PUT",
|
|
1872
|
+
headers: {
|
|
1873
|
+
"Content-Type": "application/json"
|
|
1874
|
+
},
|
|
1875
|
+
params: this.parser.query({}, []),
|
|
1876
|
+
data: payload
|
|
1877
|
+
};
|
|
1878
|
+
const response = await this.httpClient.request(request);
|
|
1879
|
+
if (response.ok) {
|
|
1880
|
+
return await response.json();
|
|
1881
|
+
}
|
|
1882
|
+
const statusCode = response.status;
|
|
1883
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1884
|
+
throw new CommonMessageException(await response.json());
|
|
1885
|
+
}
|
|
1886
|
+
throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1887
|
+
}
|
|
1888
|
+
};
|
|
1889
|
+
|
|
1890
|
+
// src/BackendFormTag.ts
|
|
1891
|
+
var import_sdkgen_client30 = require("sdkgen-client");
|
|
1892
|
+
var import_sdkgen_client31 = require("sdkgen-client");
|
|
1893
|
+
var BackendFormTag = class extends import_sdkgen_client30.TagAbstract {
|
|
1894
|
+
/**
|
|
1895
|
+
* @returns {Promise<CommonMessage>}
|
|
1896
|
+
* @throws {CommonMessageException}
|
|
1897
|
+
* @throws {ClientException}
|
|
1898
|
+
*/
|
|
1899
|
+
async create(payload) {
|
|
1900
|
+
const url = this.parser.url("/backend/form", {});
|
|
1901
|
+
let request = {
|
|
1902
|
+
url,
|
|
1903
|
+
method: "POST",
|
|
1904
|
+
headers: {
|
|
1905
|
+
"Content-Type": "application/json"
|
|
1906
|
+
},
|
|
1907
|
+
params: this.parser.query({}, []),
|
|
1908
|
+
data: payload
|
|
1909
|
+
};
|
|
1910
|
+
const response = await this.httpClient.request(request);
|
|
1911
|
+
if (response.ok) {
|
|
1912
|
+
return await response.json();
|
|
1913
|
+
}
|
|
1914
|
+
const statusCode = response.status;
|
|
1915
|
+
if (statusCode >= 0 && statusCode <= 999) {
|
|
1916
|
+
throw new CommonMessageException(await response.json());
|
|
1917
|
+
}
|
|
1918
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1919
|
+
}
|
|
1782
1920
|
/**
|
|
1783
1921
|
* @returns {Promise<CommonMessage>}
|
|
1784
1922
|
* @throws {CommonMessageException}
|
|
@@ -1802,7 +1940,7 @@ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1802
1940
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1803
1941
|
throw new CommonMessageException(await response.json());
|
|
1804
1942
|
}
|
|
1805
|
-
throw new
|
|
1943
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1806
1944
|
}
|
|
1807
1945
|
/**
|
|
1808
1946
|
* @returns {Promise<BackendForm>}
|
|
@@ -1827,7 +1965,7 @@ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1827
1965
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1828
1966
|
throw new CommonMessageException(await response.json());
|
|
1829
1967
|
}
|
|
1830
|
-
throw new
|
|
1968
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1831
1969
|
}
|
|
1832
1970
|
/**
|
|
1833
1971
|
* @returns {Promise<BackendFormCollection>}
|
|
@@ -1854,7 +1992,7 @@ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1854
1992
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1855
1993
|
throw new CommonMessageException(await response.json());
|
|
1856
1994
|
}
|
|
1857
|
-
throw new
|
|
1995
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1858
1996
|
}
|
|
1859
1997
|
/**
|
|
1860
1998
|
* @returns {Promise<CommonMessage>}
|
|
@@ -1882,14 +2020,14 @@ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
|
|
|
1882
2020
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1883
2021
|
throw new CommonMessageException(await response.json());
|
|
1884
2022
|
}
|
|
1885
|
-
throw new
|
|
2023
|
+
throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1886
2024
|
}
|
|
1887
2025
|
};
|
|
1888
2026
|
|
|
1889
2027
|
// src/BackendGeneratorTag.ts
|
|
1890
|
-
var
|
|
1891
|
-
var
|
|
1892
|
-
var BackendGeneratorTag = class extends
|
|
2028
|
+
var import_sdkgen_client32 = require("sdkgen-client");
|
|
2029
|
+
var import_sdkgen_client33 = require("sdkgen-client");
|
|
2030
|
+
var BackendGeneratorTag = class extends import_sdkgen_client32.TagAbstract {
|
|
1893
2031
|
/**
|
|
1894
2032
|
* @returns {Promise<CommonMessage>}
|
|
1895
2033
|
* @throws {CommonMessageException}
|
|
@@ -1916,7 +2054,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
1916
2054
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1917
2055
|
throw new CommonMessageException(await response.json());
|
|
1918
2056
|
}
|
|
1919
|
-
throw new
|
|
2057
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1920
2058
|
}
|
|
1921
2059
|
/**
|
|
1922
2060
|
* @returns {Promise<BackendGeneratorProviderChangelog>}
|
|
@@ -1944,7 +2082,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
1944
2082
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1945
2083
|
throw new CommonMessageException(await response.json());
|
|
1946
2084
|
}
|
|
1947
|
-
throw new
|
|
2085
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1948
2086
|
}
|
|
1949
2087
|
/**
|
|
1950
2088
|
* @returns {Promise<BackendGeneratorIndexProviders>}
|
|
@@ -1967,7 +2105,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
1967
2105
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1968
2106
|
throw new CommonMessageException(await response.json());
|
|
1969
2107
|
}
|
|
1970
|
-
throw new
|
|
2108
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1971
2109
|
}
|
|
1972
2110
|
/**
|
|
1973
2111
|
* @returns {Promise<CommonFormContainer>}
|
|
@@ -1992,14 +2130,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client30.TagAbstract {
|
|
|
1992
2130
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
1993
2131
|
throw new CommonMessageException(await response.json());
|
|
1994
2132
|
}
|
|
1995
|
-
throw new
|
|
2133
|
+
throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
1996
2134
|
}
|
|
1997
2135
|
};
|
|
1998
2136
|
|
|
1999
2137
|
// src/BackendIdentityTag.ts
|
|
2000
|
-
var
|
|
2001
|
-
var
|
|
2002
|
-
var BackendIdentityTag = class extends
|
|
2138
|
+
var import_sdkgen_client34 = require("sdkgen-client");
|
|
2139
|
+
var import_sdkgen_client35 = require("sdkgen-client");
|
|
2140
|
+
var BackendIdentityTag = class extends import_sdkgen_client34.TagAbstract {
|
|
2003
2141
|
/**
|
|
2004
2142
|
* @returns {Promise<CommonMessage>}
|
|
2005
2143
|
* @throws {CommonMessageException}
|
|
@@ -2024,7 +2162,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2024
2162
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2025
2163
|
throw new CommonMessageException(await response.json());
|
|
2026
2164
|
}
|
|
2027
|
-
throw new
|
|
2165
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2028
2166
|
}
|
|
2029
2167
|
/**
|
|
2030
2168
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2049,7 +2187,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2049
2187
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2050
2188
|
throw new CommonMessageException(await response.json());
|
|
2051
2189
|
}
|
|
2052
|
-
throw new
|
|
2190
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2053
2191
|
}
|
|
2054
2192
|
/**
|
|
2055
2193
|
* @returns {Promise<BackendIdentity>}
|
|
@@ -2074,7 +2212,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2074
2212
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2075
2213
|
throw new CommonMessageException(await response.json());
|
|
2076
2214
|
}
|
|
2077
|
-
throw new
|
|
2215
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2078
2216
|
}
|
|
2079
2217
|
/**
|
|
2080
2218
|
* @returns {Promise<BackendIdentityCollection>}
|
|
@@ -2101,7 +2239,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2101
2239
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2102
2240
|
throw new CommonMessageException(await response.json());
|
|
2103
2241
|
}
|
|
2104
|
-
throw new
|
|
2242
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2105
2243
|
}
|
|
2106
2244
|
/**
|
|
2107
2245
|
* @returns {Promise<BackendIdentityIndex>}
|
|
@@ -2124,7 +2262,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2124
2262
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2125
2263
|
throw new CommonMessageException(await response.json());
|
|
2126
2264
|
}
|
|
2127
|
-
throw new
|
|
2265
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2128
2266
|
}
|
|
2129
2267
|
/**
|
|
2130
2268
|
* @returns {Promise<CommonFormContainer>}
|
|
@@ -2149,7 +2287,7 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2149
2287
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2150
2288
|
throw new CommonMessageException(await response.json());
|
|
2151
2289
|
}
|
|
2152
|
-
throw new
|
|
2290
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2153
2291
|
}
|
|
2154
2292
|
/**
|
|
2155
2293
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2177,14 +2315,14 @@ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
|
|
|
2177
2315
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2178
2316
|
throw new CommonMessageException(await response.json());
|
|
2179
2317
|
}
|
|
2180
|
-
throw new
|
|
2318
|
+
throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2181
2319
|
}
|
|
2182
2320
|
};
|
|
2183
2321
|
|
|
2184
2322
|
// src/BackendLogTag.ts
|
|
2185
|
-
var
|
|
2186
|
-
var
|
|
2187
|
-
var BackendLogTag = class extends
|
|
2323
|
+
var import_sdkgen_client36 = require("sdkgen-client");
|
|
2324
|
+
var import_sdkgen_client37 = require("sdkgen-client");
|
|
2325
|
+
var BackendLogTag = class extends import_sdkgen_client36.TagAbstract {
|
|
2188
2326
|
/**
|
|
2189
2327
|
* @returns {Promise<BackendLog>}
|
|
2190
2328
|
* @throws {CommonMessageException}
|
|
@@ -2208,7 +2346,7 @@ var BackendLogTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2208
2346
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2209
2347
|
throw new CommonMessageException(await response.json());
|
|
2210
2348
|
}
|
|
2211
|
-
throw new
|
|
2349
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2212
2350
|
}
|
|
2213
2351
|
/**
|
|
2214
2352
|
* @returns {Promise<BackendLogCollection>}
|
|
@@ -2246,7 +2384,7 @@ var BackendLogTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2246
2384
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2247
2385
|
throw new CommonMessageException(await response.json());
|
|
2248
2386
|
}
|
|
2249
|
-
throw new
|
|
2387
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2250
2388
|
}
|
|
2251
2389
|
/**
|
|
2252
2390
|
* @returns {Promise<BackendLogErrorCollection>}
|
|
@@ -2273,7 +2411,7 @@ var BackendLogTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2273
2411
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2274
2412
|
throw new CommonMessageException(await response.json());
|
|
2275
2413
|
}
|
|
2276
|
-
throw new
|
|
2414
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2277
2415
|
}
|
|
2278
2416
|
/**
|
|
2279
2417
|
* @returns {Promise<BackendLogError>}
|
|
@@ -2298,14 +2436,14 @@ var BackendLogTag = class extends import_sdkgen_client34.TagAbstract {
|
|
|
2298
2436
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2299
2437
|
throw new CommonMessageException(await response.json());
|
|
2300
2438
|
}
|
|
2301
|
-
throw new
|
|
2439
|
+
throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2302
2440
|
}
|
|
2303
2441
|
};
|
|
2304
2442
|
|
|
2305
2443
|
// src/BackendMarketplaceActionTag.ts
|
|
2306
|
-
var
|
|
2307
|
-
var
|
|
2308
|
-
var BackendMarketplaceActionTag = class extends
|
|
2444
|
+
var import_sdkgen_client38 = require("sdkgen-client");
|
|
2445
|
+
var import_sdkgen_client39 = require("sdkgen-client");
|
|
2446
|
+
var BackendMarketplaceActionTag = class extends import_sdkgen_client38.TagAbstract {
|
|
2309
2447
|
/**
|
|
2310
2448
|
* @returns {Promise<MarketplaceAction>}
|
|
2311
2449
|
* @throws {CommonMessageException}
|
|
@@ -2330,7 +2468,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client36.TagAbstra
|
|
|
2330
2468
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2331
2469
|
throw new CommonMessageException(await response.json());
|
|
2332
2470
|
}
|
|
2333
|
-
throw new
|
|
2471
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2334
2472
|
}
|
|
2335
2473
|
/**
|
|
2336
2474
|
* @returns {Promise<MarketplaceActionCollection>}
|
|
@@ -2356,7 +2494,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client36.TagAbstra
|
|
|
2356
2494
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2357
2495
|
throw new CommonMessageException(await response.json());
|
|
2358
2496
|
}
|
|
2359
|
-
throw new
|
|
2497
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2360
2498
|
}
|
|
2361
2499
|
/**
|
|
2362
2500
|
* @returns {Promise<MarketplaceMessage>}
|
|
@@ -2382,7 +2520,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client36.TagAbstra
|
|
|
2382
2520
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2383
2521
|
throw new CommonMessageException(await response.json());
|
|
2384
2522
|
}
|
|
2385
|
-
throw new
|
|
2523
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2386
2524
|
}
|
|
2387
2525
|
/**
|
|
2388
2526
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2408,14 +2546,14 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client36.TagAbstra
|
|
|
2408
2546
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2409
2547
|
throw new CommonMessageException(await response.json());
|
|
2410
2548
|
}
|
|
2411
|
-
throw new
|
|
2549
|
+
throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2412
2550
|
}
|
|
2413
2551
|
};
|
|
2414
2552
|
|
|
2415
2553
|
// src/BackendMarketplaceAppTag.ts
|
|
2416
|
-
var
|
|
2417
|
-
var
|
|
2418
|
-
var BackendMarketplaceAppTag = class extends
|
|
2554
|
+
var import_sdkgen_client40 = require("sdkgen-client");
|
|
2555
|
+
var import_sdkgen_client41 = require("sdkgen-client");
|
|
2556
|
+
var BackendMarketplaceAppTag = class extends import_sdkgen_client40.TagAbstract {
|
|
2419
2557
|
/**
|
|
2420
2558
|
* @returns {Promise<MarketplaceApp>}
|
|
2421
2559
|
* @throws {CommonMessageException}
|
|
@@ -2440,7 +2578,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client38.TagAbstract
|
|
|
2440
2578
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2441
2579
|
throw new CommonMessageException(await response.json());
|
|
2442
2580
|
}
|
|
2443
|
-
throw new
|
|
2581
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2444
2582
|
}
|
|
2445
2583
|
/**
|
|
2446
2584
|
* @returns {Promise<MarketplaceAppCollection>}
|
|
@@ -2466,7 +2604,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client38.TagAbstract
|
|
|
2466
2604
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2467
2605
|
throw new CommonMessageException(await response.json());
|
|
2468
2606
|
}
|
|
2469
|
-
throw new
|
|
2607
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2470
2608
|
}
|
|
2471
2609
|
/**
|
|
2472
2610
|
* @returns {Promise<MarketplaceMessage>}
|
|
@@ -2492,7 +2630,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client38.TagAbstract
|
|
|
2492
2630
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2493
2631
|
throw new CommonMessageException(await response.json());
|
|
2494
2632
|
}
|
|
2495
|
-
throw new
|
|
2633
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2496
2634
|
}
|
|
2497
2635
|
/**
|
|
2498
2636
|
* @returns {Promise<MarketplaceMessage>}
|
|
@@ -2518,13 +2656,13 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client38.TagAbstract
|
|
|
2518
2656
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2519
2657
|
throw new CommonMessageException(await response.json());
|
|
2520
2658
|
}
|
|
2521
|
-
throw new
|
|
2659
|
+
throw new import_sdkgen_client41.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2522
2660
|
}
|
|
2523
2661
|
};
|
|
2524
2662
|
|
|
2525
2663
|
// src/BackendMarketplaceTag.ts
|
|
2526
|
-
var
|
|
2527
|
-
var BackendMarketplaceTag = class extends
|
|
2664
|
+
var import_sdkgen_client42 = require("sdkgen-client");
|
|
2665
|
+
var BackendMarketplaceTag = class extends import_sdkgen_client42.TagAbstract {
|
|
2528
2666
|
action() {
|
|
2529
2667
|
return new BackendMarketplaceActionTag(
|
|
2530
2668
|
this.httpClient,
|
|
@@ -2540,9 +2678,9 @@ var BackendMarketplaceTag = class extends import_sdkgen_client40.TagAbstract {
|
|
|
2540
2678
|
};
|
|
2541
2679
|
|
|
2542
2680
|
// src/BackendOperationTag.ts
|
|
2543
|
-
var
|
|
2544
|
-
var
|
|
2545
|
-
var BackendOperationTag = class extends
|
|
2681
|
+
var import_sdkgen_client43 = require("sdkgen-client");
|
|
2682
|
+
var import_sdkgen_client44 = require("sdkgen-client");
|
|
2683
|
+
var BackendOperationTag = class extends import_sdkgen_client43.TagAbstract {
|
|
2546
2684
|
/**
|
|
2547
2685
|
* @returns {Promise<CommonMessage>}
|
|
2548
2686
|
* @throws {CommonMessageException}
|
|
@@ -2567,7 +2705,7 @@ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
|
|
|
2567
2705
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2568
2706
|
throw new CommonMessageException(await response.json());
|
|
2569
2707
|
}
|
|
2570
|
-
throw new
|
|
2708
|
+
throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2571
2709
|
}
|
|
2572
2710
|
/**
|
|
2573
2711
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2592,7 +2730,7 @@ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
|
|
|
2592
2730
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2593
2731
|
throw new CommonMessageException(await response.json());
|
|
2594
2732
|
}
|
|
2595
|
-
throw new
|
|
2733
|
+
throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2596
2734
|
}
|
|
2597
2735
|
/**
|
|
2598
2736
|
* @returns {Promise<BackendOperation>}
|
|
@@ -2617,7 +2755,7 @@ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
|
|
|
2617
2755
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2618
2756
|
throw new CommonMessageException(await response.json());
|
|
2619
2757
|
}
|
|
2620
|
-
throw new
|
|
2758
|
+
throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2621
2759
|
}
|
|
2622
2760
|
/**
|
|
2623
2761
|
* @returns {Promise<BackendOperationCollection>}
|
|
@@ -2644,7 +2782,7 @@ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
|
|
|
2644
2782
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2645
2783
|
throw new CommonMessageException(await response.json());
|
|
2646
2784
|
}
|
|
2647
|
-
throw new
|
|
2785
|
+
throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2648
2786
|
}
|
|
2649
2787
|
/**
|
|
2650
2788
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2672,14 +2810,14 @@ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
|
|
|
2672
2810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2673
2811
|
throw new CommonMessageException(await response.json());
|
|
2674
2812
|
}
|
|
2675
|
-
throw new
|
|
2813
|
+
throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2676
2814
|
}
|
|
2677
2815
|
};
|
|
2678
2816
|
|
|
2679
2817
|
// src/BackendPageTag.ts
|
|
2680
|
-
var
|
|
2681
|
-
var
|
|
2682
|
-
var BackendPageTag = class extends
|
|
2818
|
+
var import_sdkgen_client45 = require("sdkgen-client");
|
|
2819
|
+
var import_sdkgen_client46 = require("sdkgen-client");
|
|
2820
|
+
var BackendPageTag = class extends import_sdkgen_client45.TagAbstract {
|
|
2683
2821
|
/**
|
|
2684
2822
|
* @returns {Promise<CommonMessage>}
|
|
2685
2823
|
* @throws {CommonMessageException}
|
|
@@ -2704,7 +2842,7 @@ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
|
|
|
2704
2842
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2705
2843
|
throw new CommonMessageException(await response.json());
|
|
2706
2844
|
}
|
|
2707
|
-
throw new
|
|
2845
|
+
throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2708
2846
|
}
|
|
2709
2847
|
/**
|
|
2710
2848
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2729,7 +2867,7 @@ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
|
|
|
2729
2867
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2730
2868
|
throw new CommonMessageException(await response.json());
|
|
2731
2869
|
}
|
|
2732
|
-
throw new
|
|
2870
|
+
throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2733
2871
|
}
|
|
2734
2872
|
/**
|
|
2735
2873
|
* @returns {Promise<BackendPage>}
|
|
@@ -2754,7 +2892,7 @@ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
|
|
|
2754
2892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2755
2893
|
throw new CommonMessageException(await response.json());
|
|
2756
2894
|
}
|
|
2757
|
-
throw new
|
|
2895
|
+
throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2758
2896
|
}
|
|
2759
2897
|
/**
|
|
2760
2898
|
* @returns {Promise<BackendPageCollection>}
|
|
@@ -2781,7 +2919,7 @@ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
|
|
|
2781
2919
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2782
2920
|
throw new CommonMessageException(await response.json());
|
|
2783
2921
|
}
|
|
2784
|
-
throw new
|
|
2922
|
+
throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2785
2923
|
}
|
|
2786
2924
|
/**
|
|
2787
2925
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2809,14 +2947,14 @@ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
|
|
|
2809
2947
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2810
2948
|
throw new CommonMessageException(await response.json());
|
|
2811
2949
|
}
|
|
2812
|
-
throw new
|
|
2950
|
+
throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2813
2951
|
}
|
|
2814
2952
|
};
|
|
2815
2953
|
|
|
2816
2954
|
// src/BackendPlanTag.ts
|
|
2817
|
-
var
|
|
2818
|
-
var
|
|
2819
|
-
var BackendPlanTag = class extends
|
|
2955
|
+
var import_sdkgen_client47 = require("sdkgen-client");
|
|
2956
|
+
var import_sdkgen_client48 = require("sdkgen-client");
|
|
2957
|
+
var BackendPlanTag = class extends import_sdkgen_client47.TagAbstract {
|
|
2820
2958
|
/**
|
|
2821
2959
|
* @returns {Promise<CommonMessage>}
|
|
2822
2960
|
* @throws {CommonMessageException}
|
|
@@ -2841,7 +2979,7 @@ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
|
|
|
2841
2979
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2842
2980
|
throw new CommonMessageException(await response.json());
|
|
2843
2981
|
}
|
|
2844
|
-
throw new
|
|
2982
|
+
throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2845
2983
|
}
|
|
2846
2984
|
/**
|
|
2847
2985
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2866,7 +3004,7 @@ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
|
|
|
2866
3004
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2867
3005
|
throw new CommonMessageException(await response.json());
|
|
2868
3006
|
}
|
|
2869
|
-
throw new
|
|
3007
|
+
throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2870
3008
|
}
|
|
2871
3009
|
/**
|
|
2872
3010
|
* @returns {Promise<BackendPlan>}
|
|
@@ -2891,7 +3029,7 @@ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
|
|
|
2891
3029
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2892
3030
|
throw new CommonMessageException(await response.json());
|
|
2893
3031
|
}
|
|
2894
|
-
throw new
|
|
3032
|
+
throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2895
3033
|
}
|
|
2896
3034
|
/**
|
|
2897
3035
|
* @returns {Promise<BackendPlanCollection>}
|
|
@@ -2918,7 +3056,7 @@ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
|
|
|
2918
3056
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2919
3057
|
throw new CommonMessageException(await response.json());
|
|
2920
3058
|
}
|
|
2921
|
-
throw new
|
|
3059
|
+
throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2922
3060
|
}
|
|
2923
3061
|
/**
|
|
2924
3062
|
* @returns {Promise<CommonMessage>}
|
|
@@ -2946,14 +3084,14 @@ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
|
|
|
2946
3084
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2947
3085
|
throw new CommonMessageException(await response.json());
|
|
2948
3086
|
}
|
|
2949
|
-
throw new
|
|
3087
|
+
throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2950
3088
|
}
|
|
2951
3089
|
};
|
|
2952
3090
|
|
|
2953
3091
|
// src/BackendRateTag.ts
|
|
2954
|
-
var
|
|
2955
|
-
var
|
|
2956
|
-
var BackendRateTag = class extends
|
|
3092
|
+
var import_sdkgen_client49 = require("sdkgen-client");
|
|
3093
|
+
var import_sdkgen_client50 = require("sdkgen-client");
|
|
3094
|
+
var BackendRateTag = class extends import_sdkgen_client49.TagAbstract {
|
|
2957
3095
|
/**
|
|
2958
3096
|
* @returns {Promise<CommonMessage>}
|
|
2959
3097
|
* @throws {CommonMessageException}
|
|
@@ -2978,7 +3116,7 @@ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
|
|
|
2978
3116
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
2979
3117
|
throw new CommonMessageException(await response.json());
|
|
2980
3118
|
}
|
|
2981
|
-
throw new
|
|
3119
|
+
throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
2982
3120
|
}
|
|
2983
3121
|
/**
|
|
2984
3122
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3003,7 +3141,7 @@ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
|
|
|
3003
3141
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3004
3142
|
throw new CommonMessageException(await response.json());
|
|
3005
3143
|
}
|
|
3006
|
-
throw new
|
|
3144
|
+
throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3007
3145
|
}
|
|
3008
3146
|
/**
|
|
3009
3147
|
* @returns {Promise<BackendRate>}
|
|
@@ -3028,7 +3166,7 @@ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
|
|
|
3028
3166
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3029
3167
|
throw new CommonMessageException(await response.json());
|
|
3030
3168
|
}
|
|
3031
|
-
throw new
|
|
3169
|
+
throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3032
3170
|
}
|
|
3033
3171
|
/**
|
|
3034
3172
|
* @returns {Promise<BackendRateCollection>}
|
|
@@ -3055,7 +3193,7 @@ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
|
|
|
3055
3193
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3056
3194
|
throw new CommonMessageException(await response.json());
|
|
3057
3195
|
}
|
|
3058
|
-
throw new
|
|
3196
|
+
throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3059
3197
|
}
|
|
3060
3198
|
/**
|
|
3061
3199
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3083,14 +3221,14 @@ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
|
|
|
3083
3221
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3084
3222
|
throw new CommonMessageException(await response.json());
|
|
3085
3223
|
}
|
|
3086
|
-
throw new
|
|
3224
|
+
throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3087
3225
|
}
|
|
3088
3226
|
};
|
|
3089
3227
|
|
|
3090
3228
|
// src/BackendRoleTag.ts
|
|
3091
|
-
var
|
|
3092
|
-
var
|
|
3093
|
-
var BackendRoleTag = class extends
|
|
3229
|
+
var import_sdkgen_client51 = require("sdkgen-client");
|
|
3230
|
+
var import_sdkgen_client52 = require("sdkgen-client");
|
|
3231
|
+
var BackendRoleTag = class extends import_sdkgen_client51.TagAbstract {
|
|
3094
3232
|
/**
|
|
3095
3233
|
* @returns {Promise<CommonMessage>}
|
|
3096
3234
|
* @throws {CommonMessageException}
|
|
@@ -3115,7 +3253,7 @@ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
|
|
|
3115
3253
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3116
3254
|
throw new CommonMessageException(await response.json());
|
|
3117
3255
|
}
|
|
3118
|
-
throw new
|
|
3256
|
+
throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3119
3257
|
}
|
|
3120
3258
|
/**
|
|
3121
3259
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3140,7 +3278,7 @@ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
|
|
|
3140
3278
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3141
3279
|
throw new CommonMessageException(await response.json());
|
|
3142
3280
|
}
|
|
3143
|
-
throw new
|
|
3281
|
+
throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3144
3282
|
}
|
|
3145
3283
|
/**
|
|
3146
3284
|
* @returns {Promise<BackendRole>}
|
|
@@ -3165,7 +3303,7 @@ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
|
|
|
3165
3303
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3166
3304
|
throw new CommonMessageException(await response.json());
|
|
3167
3305
|
}
|
|
3168
|
-
throw new
|
|
3306
|
+
throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3169
3307
|
}
|
|
3170
3308
|
/**
|
|
3171
3309
|
* @returns {Promise<BackendRoleCollection>}
|
|
@@ -3192,7 +3330,7 @@ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
|
|
|
3192
3330
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3193
3331
|
throw new CommonMessageException(await response.json());
|
|
3194
3332
|
}
|
|
3195
|
-
throw new
|
|
3333
|
+
throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3196
3334
|
}
|
|
3197
3335
|
/**
|
|
3198
3336
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3220,14 +3358,14 @@ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
|
|
|
3220
3358
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3221
3359
|
throw new CommonMessageException(await response.json());
|
|
3222
3360
|
}
|
|
3223
|
-
throw new
|
|
3361
|
+
throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3224
3362
|
}
|
|
3225
3363
|
};
|
|
3226
3364
|
|
|
3227
3365
|
// src/BackendSchemaTag.ts
|
|
3228
|
-
var
|
|
3229
|
-
var
|
|
3230
|
-
var BackendSchemaTag = class extends
|
|
3366
|
+
var import_sdkgen_client53 = require("sdkgen-client");
|
|
3367
|
+
var import_sdkgen_client54 = require("sdkgen-client");
|
|
3368
|
+
var BackendSchemaTag = class extends import_sdkgen_client53.TagAbstract {
|
|
3231
3369
|
/**
|
|
3232
3370
|
* @returns {Promise<CommonMessage>}
|
|
3233
3371
|
* @throws {CommonMessageException}
|
|
@@ -3252,7 +3390,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3252
3390
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3253
3391
|
throw new CommonMessageException(await response.json());
|
|
3254
3392
|
}
|
|
3255
|
-
throw new
|
|
3393
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3256
3394
|
}
|
|
3257
3395
|
/**
|
|
3258
3396
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3277,7 +3415,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3277
3415
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3278
3416
|
throw new CommonMessageException(await response.json());
|
|
3279
3417
|
}
|
|
3280
|
-
throw new
|
|
3418
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3281
3419
|
}
|
|
3282
3420
|
/**
|
|
3283
3421
|
* @returns {Promise<BackendSchema>}
|
|
@@ -3302,7 +3440,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3302
3440
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3303
3441
|
throw new CommonMessageException(await response.json());
|
|
3304
3442
|
}
|
|
3305
|
-
throw new
|
|
3443
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3306
3444
|
}
|
|
3307
3445
|
/**
|
|
3308
3446
|
* @returns {Promise<BackendSchemaCollection>}
|
|
@@ -3329,7 +3467,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3329
3467
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3330
3468
|
throw new CommonMessageException(await response.json());
|
|
3331
3469
|
}
|
|
3332
|
-
throw new
|
|
3470
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3333
3471
|
}
|
|
3334
3472
|
/**
|
|
3335
3473
|
* @returns {Promise<BackendSchemaPreviewResponse>}
|
|
@@ -3354,7 +3492,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3354
3492
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3355
3493
|
throw new CommonMessageException(await response.json());
|
|
3356
3494
|
}
|
|
3357
|
-
throw new
|
|
3495
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3358
3496
|
}
|
|
3359
3497
|
/**
|
|
3360
3498
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3382,7 +3520,7 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3382
3520
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3383
3521
|
throw new CommonMessageException(await response.json());
|
|
3384
3522
|
}
|
|
3385
|
-
throw new
|
|
3523
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3386
3524
|
}
|
|
3387
3525
|
/**
|
|
3388
3526
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3410,14 +3548,14 @@ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
|
|
|
3410
3548
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3411
3549
|
throw new CommonMessageException(await response.json());
|
|
3412
3550
|
}
|
|
3413
|
-
throw new
|
|
3551
|
+
throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3414
3552
|
}
|
|
3415
3553
|
};
|
|
3416
3554
|
|
|
3417
3555
|
// src/BackendScopeTag.ts
|
|
3418
|
-
var
|
|
3419
|
-
var
|
|
3420
|
-
var BackendScopeTag = class extends
|
|
3556
|
+
var import_sdkgen_client55 = require("sdkgen-client");
|
|
3557
|
+
var import_sdkgen_client56 = require("sdkgen-client");
|
|
3558
|
+
var BackendScopeTag = class extends import_sdkgen_client55.TagAbstract {
|
|
3421
3559
|
/**
|
|
3422
3560
|
* @returns {Promise<CommonMessage>}
|
|
3423
3561
|
* @throws {CommonMessageException}
|
|
@@ -3442,7 +3580,7 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3442
3580
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3443
3581
|
throw new CommonMessageException(await response.json());
|
|
3444
3582
|
}
|
|
3445
|
-
throw new
|
|
3583
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3446
3584
|
}
|
|
3447
3585
|
/**
|
|
3448
3586
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3467,7 +3605,7 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3467
3605
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3468
3606
|
throw new CommonMessageException(await response.json());
|
|
3469
3607
|
}
|
|
3470
|
-
throw new
|
|
3608
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3471
3609
|
}
|
|
3472
3610
|
/**
|
|
3473
3611
|
* @returns {Promise<BackendScope>}
|
|
@@ -3492,7 +3630,7 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3492
3630
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3493
3631
|
throw new CommonMessageException(await response.json());
|
|
3494
3632
|
}
|
|
3495
|
-
throw new
|
|
3633
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3496
3634
|
}
|
|
3497
3635
|
/**
|
|
3498
3636
|
* @returns {Promise<BackendScopeCollection>}
|
|
@@ -3519,7 +3657,7 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3519
3657
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3520
3658
|
throw new CommonMessageException(await response.json());
|
|
3521
3659
|
}
|
|
3522
|
-
throw new
|
|
3660
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3523
3661
|
}
|
|
3524
3662
|
/**
|
|
3525
3663
|
* @returns {Promise<BackendScopeCategories>}
|
|
@@ -3542,7 +3680,7 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3542
3680
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3543
3681
|
throw new CommonMessageException(await response.json());
|
|
3544
3682
|
}
|
|
3545
|
-
throw new
|
|
3683
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3546
3684
|
}
|
|
3547
3685
|
/**
|
|
3548
3686
|
* @returns {Promise<CommonMessage>}
|
|
@@ -3570,14 +3708,14 @@ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
|
|
|
3570
3708
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3571
3709
|
throw new CommonMessageException(await response.json());
|
|
3572
3710
|
}
|
|
3573
|
-
throw new
|
|
3711
|
+
throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3574
3712
|
}
|
|
3575
3713
|
};
|
|
3576
3714
|
|
|
3577
3715
|
// src/BackendSdkTag.ts
|
|
3578
|
-
var
|
|
3579
|
-
var
|
|
3580
|
-
var BackendSdkTag = class extends
|
|
3716
|
+
var import_sdkgen_client57 = require("sdkgen-client");
|
|
3717
|
+
var import_sdkgen_client58 = require("sdkgen-client");
|
|
3718
|
+
var BackendSdkTag = class extends import_sdkgen_client57.TagAbstract {
|
|
3581
3719
|
/**
|
|
3582
3720
|
* @returns {Promise<BackendSdkMessage>}
|
|
3583
3721
|
* @throws {CommonMessageException}
|
|
@@ -3602,7 +3740,7 @@ var BackendSdkTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3602
3740
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3603
3741
|
throw new CommonMessageException(await response.json());
|
|
3604
3742
|
}
|
|
3605
|
-
throw new
|
|
3743
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3606
3744
|
}
|
|
3607
3745
|
/**
|
|
3608
3746
|
* @returns {Promise<BackendSdkResponse>}
|
|
@@ -3625,14 +3763,14 @@ var BackendSdkTag = class extends import_sdkgen_client55.TagAbstract {
|
|
|
3625
3763
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3626
3764
|
throw new CommonMessageException(await response.json());
|
|
3627
3765
|
}
|
|
3628
|
-
throw new
|
|
3766
|
+
throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3629
3767
|
}
|
|
3630
3768
|
};
|
|
3631
3769
|
|
|
3632
3770
|
// src/BackendStatisticTag.ts
|
|
3633
|
-
var
|
|
3634
|
-
var
|
|
3635
|
-
var BackendStatisticTag = class extends
|
|
3771
|
+
var import_sdkgen_client59 = require("sdkgen-client");
|
|
3772
|
+
var import_sdkgen_client60 = require("sdkgen-client");
|
|
3773
|
+
var BackendStatisticTag = class extends import_sdkgen_client59.TagAbstract {
|
|
3636
3774
|
/**
|
|
3637
3775
|
* @returns {Promise<BackendStatisticChart>}
|
|
3638
3776
|
* @throws {CommonMessageException}
|
|
@@ -3669,7 +3807,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3669
3807
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3670
3808
|
throw new CommonMessageException(await response.json());
|
|
3671
3809
|
}
|
|
3672
|
-
throw new
|
|
3810
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3673
3811
|
}
|
|
3674
3812
|
/**
|
|
3675
3813
|
* @returns {Promise<BackendStatisticCount>}
|
|
@@ -3707,7 +3845,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3707
3845
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3708
3846
|
throw new CommonMessageException(await response.json());
|
|
3709
3847
|
}
|
|
3710
|
-
throw new
|
|
3848
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3711
3849
|
}
|
|
3712
3850
|
/**
|
|
3713
3851
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3745,7 +3883,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3745
3883
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3746
3884
|
throw new CommonMessageException(await response.json());
|
|
3747
3885
|
}
|
|
3748
|
-
throw new
|
|
3886
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3749
3887
|
}
|
|
3750
3888
|
/**
|
|
3751
3889
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3783,7 +3921,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3783
3921
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3784
3922
|
throw new CommonMessageException(await response.json());
|
|
3785
3923
|
}
|
|
3786
|
-
throw new
|
|
3924
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3787
3925
|
}
|
|
3788
3926
|
/**
|
|
3789
3927
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3821,7 +3959,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3821
3959
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3822
3960
|
throw new CommonMessageException(await response.json());
|
|
3823
3961
|
}
|
|
3824
|
-
throw new
|
|
3962
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3825
3963
|
}
|
|
3826
3964
|
/**
|
|
3827
3965
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3859,7 +3997,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3859
3997
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3860
3998
|
throw new CommonMessageException(await response.json());
|
|
3861
3999
|
}
|
|
3862
|
-
throw new
|
|
4000
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3863
4001
|
}
|
|
3864
4002
|
/**
|
|
3865
4003
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3897,7 +4035,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3897
4035
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3898
4036
|
throw new CommonMessageException(await response.json());
|
|
3899
4037
|
}
|
|
3900
|
-
throw new
|
|
4038
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3901
4039
|
}
|
|
3902
4040
|
/**
|
|
3903
4041
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3935,7 +4073,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3935
4073
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3936
4074
|
throw new CommonMessageException(await response.json());
|
|
3937
4075
|
}
|
|
3938
|
-
throw new
|
|
4076
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3939
4077
|
}
|
|
3940
4078
|
/**
|
|
3941
4079
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3973,7 +4111,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3973
4111
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3974
4112
|
throw new CommonMessageException(await response.json());
|
|
3975
4113
|
}
|
|
3976
|
-
throw new
|
|
4114
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
3977
4115
|
}
|
|
3978
4116
|
/**
|
|
3979
4117
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -3996,7 +4134,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
3996
4134
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
3997
4135
|
throw new CommonMessageException(await response.json());
|
|
3998
4136
|
}
|
|
3999
|
-
throw new
|
|
4137
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4000
4138
|
}
|
|
4001
4139
|
/**
|
|
4002
4140
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -4034,7 +4172,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
4034
4172
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4035
4173
|
throw new CommonMessageException(await response.json());
|
|
4036
4174
|
}
|
|
4037
|
-
throw new
|
|
4175
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4038
4176
|
}
|
|
4039
4177
|
/**
|
|
4040
4178
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -4072,7 +4210,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
4072
4210
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4073
4211
|
throw new CommonMessageException(await response.json());
|
|
4074
4212
|
}
|
|
4075
|
-
throw new
|
|
4213
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4076
4214
|
}
|
|
4077
4215
|
/**
|
|
4078
4216
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -4110,7 +4248,7 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
4110
4248
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4111
4249
|
throw new CommonMessageException(await response.json());
|
|
4112
4250
|
}
|
|
4113
|
-
throw new
|
|
4251
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4114
4252
|
}
|
|
4115
4253
|
/**
|
|
4116
4254
|
* @returns {Promise<BackendStatisticChart>}
|
|
@@ -4148,17 +4286,17 @@ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
|
|
|
4148
4286
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4149
4287
|
throw new CommonMessageException(await response.json());
|
|
4150
4288
|
}
|
|
4151
|
-
throw new
|
|
4289
|
+
throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4152
4290
|
}
|
|
4153
4291
|
};
|
|
4154
4292
|
|
|
4155
4293
|
// src/BackendTag.ts
|
|
4156
|
-
var
|
|
4294
|
+
var import_sdkgen_client75 = require("sdkgen-client");
|
|
4157
4295
|
|
|
4158
4296
|
// src/BackendTenantTag.ts
|
|
4159
|
-
var
|
|
4160
|
-
var
|
|
4161
|
-
var BackendTenantTag = class extends
|
|
4297
|
+
var import_sdkgen_client61 = require("sdkgen-client");
|
|
4298
|
+
var import_sdkgen_client62 = require("sdkgen-client");
|
|
4299
|
+
var BackendTenantTag = class extends import_sdkgen_client61.TagAbstract {
|
|
4162
4300
|
/**
|
|
4163
4301
|
* @returns {Promise<CommonMessage>}
|
|
4164
4302
|
* @throws {CommonMessageException}
|
|
@@ -4182,7 +4320,7 @@ var BackendTenantTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
4182
4320
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4183
4321
|
throw new CommonMessageException(await response.json());
|
|
4184
4322
|
}
|
|
4185
|
-
throw new
|
|
4323
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4186
4324
|
}
|
|
4187
4325
|
/**
|
|
4188
4326
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4207,14 +4345,14 @@ var BackendTenantTag = class extends import_sdkgen_client59.TagAbstract {
|
|
|
4207
4345
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4208
4346
|
throw new CommonMessageException(await response.json());
|
|
4209
4347
|
}
|
|
4210
|
-
throw new
|
|
4348
|
+
throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4211
4349
|
}
|
|
4212
4350
|
};
|
|
4213
4351
|
|
|
4214
4352
|
// src/BackendTestTag.ts
|
|
4215
|
-
var
|
|
4216
|
-
var
|
|
4217
|
-
var BackendTestTag = class extends
|
|
4353
|
+
var import_sdkgen_client63 = require("sdkgen-client");
|
|
4354
|
+
var import_sdkgen_client64 = require("sdkgen-client");
|
|
4355
|
+
var BackendTestTag = class extends import_sdkgen_client63.TagAbstract {
|
|
4218
4356
|
/**
|
|
4219
4357
|
* @returns {Promise<BackendTest>}
|
|
4220
4358
|
* @throws {CommonMessageException}
|
|
@@ -4238,7 +4376,7 @@ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4238
4376
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4239
4377
|
throw new CommonMessageException(await response.json());
|
|
4240
4378
|
}
|
|
4241
|
-
throw new
|
|
4379
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4242
4380
|
}
|
|
4243
4381
|
/**
|
|
4244
4382
|
* @returns {Promise<BackendTestCollection>}
|
|
@@ -4265,7 +4403,7 @@ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4265
4403
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4266
4404
|
throw new CommonMessageException(await response.json());
|
|
4267
4405
|
}
|
|
4268
|
-
throw new
|
|
4406
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4269
4407
|
}
|
|
4270
4408
|
/**
|
|
4271
4409
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4288,7 +4426,7 @@ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4288
4426
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4289
4427
|
throw new CommonMessageException(await response.json());
|
|
4290
4428
|
}
|
|
4291
|
-
throw new
|
|
4429
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4292
4430
|
}
|
|
4293
4431
|
/**
|
|
4294
4432
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4311,7 +4449,7 @@ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4311
4449
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4312
4450
|
throw new CommonMessageException(await response.json());
|
|
4313
4451
|
}
|
|
4314
|
-
throw new
|
|
4452
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4315
4453
|
}
|
|
4316
4454
|
/**
|
|
4317
4455
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4339,14 +4477,14 @@ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
|
|
|
4339
4477
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4340
4478
|
throw new CommonMessageException(await response.json());
|
|
4341
4479
|
}
|
|
4342
|
-
throw new
|
|
4480
|
+
throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4343
4481
|
}
|
|
4344
4482
|
};
|
|
4345
4483
|
|
|
4346
4484
|
// src/BackendTokenTag.ts
|
|
4347
|
-
var
|
|
4348
|
-
var
|
|
4349
|
-
var BackendTokenTag = class extends
|
|
4485
|
+
var import_sdkgen_client65 = require("sdkgen-client");
|
|
4486
|
+
var import_sdkgen_client66 = require("sdkgen-client");
|
|
4487
|
+
var BackendTokenTag = class extends import_sdkgen_client65.TagAbstract {
|
|
4350
4488
|
/**
|
|
4351
4489
|
* @returns {Promise<BackendToken>}
|
|
4352
4490
|
* @throws {CommonMessageException}
|
|
@@ -4370,7 +4508,7 @@ var BackendTokenTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4370
4508
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4371
4509
|
throw new CommonMessageException(await response.json());
|
|
4372
4510
|
}
|
|
4373
|
-
throw new
|
|
4511
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4374
4512
|
}
|
|
4375
4513
|
/**
|
|
4376
4514
|
* @returns {Promise<BackendTokenCollection>}
|
|
@@ -4404,14 +4542,14 @@ var BackendTokenTag = class extends import_sdkgen_client63.TagAbstract {
|
|
|
4404
4542
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4405
4543
|
throw new CommonMessageException(await response.json());
|
|
4406
4544
|
}
|
|
4407
|
-
throw new
|
|
4545
|
+
throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4408
4546
|
}
|
|
4409
4547
|
};
|
|
4410
4548
|
|
|
4411
4549
|
// src/BackendTransactionTag.ts
|
|
4412
|
-
var
|
|
4413
|
-
var
|
|
4414
|
-
var BackendTransactionTag = class extends
|
|
4550
|
+
var import_sdkgen_client67 = require("sdkgen-client");
|
|
4551
|
+
var import_sdkgen_client68 = require("sdkgen-client");
|
|
4552
|
+
var BackendTransactionTag = class extends import_sdkgen_client67.TagAbstract {
|
|
4415
4553
|
/**
|
|
4416
4554
|
* @returns {Promise<BackendTransaction>}
|
|
4417
4555
|
* @throws {CommonMessageException}
|
|
@@ -4435,7 +4573,7 @@ var BackendTransactionTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4435
4573
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4436
4574
|
throw new CommonMessageException(await response.json());
|
|
4437
4575
|
}
|
|
4438
|
-
throw new
|
|
4576
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4439
4577
|
}
|
|
4440
4578
|
/**
|
|
4441
4579
|
* @returns {Promise<BackendTransactionCollection>}
|
|
@@ -4469,14 +4607,14 @@ var BackendTransactionTag = class extends import_sdkgen_client65.TagAbstract {
|
|
|
4469
4607
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4470
4608
|
throw new CommonMessageException(await response.json());
|
|
4471
4609
|
}
|
|
4472
|
-
throw new
|
|
4610
|
+
throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4473
4611
|
}
|
|
4474
4612
|
};
|
|
4475
4613
|
|
|
4476
4614
|
// src/BackendTrashTag.ts
|
|
4477
|
-
var
|
|
4478
|
-
var
|
|
4479
|
-
var BackendTrashTag = class extends
|
|
4615
|
+
var import_sdkgen_client69 = require("sdkgen-client");
|
|
4616
|
+
var import_sdkgen_client70 = require("sdkgen-client");
|
|
4617
|
+
var BackendTrashTag = class extends import_sdkgen_client69.TagAbstract {
|
|
4480
4618
|
/**
|
|
4481
4619
|
* @returns {Promise<BackendTrashDataCollection>}
|
|
4482
4620
|
* @throws {CommonMessageException}
|
|
@@ -4504,7 +4642,7 @@ var BackendTrashTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4504
4642
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4505
4643
|
throw new CommonMessageException(await response.json());
|
|
4506
4644
|
}
|
|
4507
|
-
throw new
|
|
4645
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4508
4646
|
}
|
|
4509
4647
|
/**
|
|
4510
4648
|
* @returns {Promise<BackendTrashTypes>}
|
|
@@ -4527,7 +4665,7 @@ var BackendTrashTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4527
4665
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4528
4666
|
throw new CommonMessageException(await response.json());
|
|
4529
4667
|
}
|
|
4530
|
-
throw new
|
|
4668
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4531
4669
|
}
|
|
4532
4670
|
/**
|
|
4533
4671
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4555,14 +4693,14 @@ var BackendTrashTag = class extends import_sdkgen_client67.TagAbstract {
|
|
|
4555
4693
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4556
4694
|
throw new CommonMessageException(await response.json());
|
|
4557
4695
|
}
|
|
4558
|
-
throw new
|
|
4696
|
+
throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4559
4697
|
}
|
|
4560
4698
|
};
|
|
4561
4699
|
|
|
4562
4700
|
// src/BackendUserTag.ts
|
|
4563
|
-
var
|
|
4564
|
-
var
|
|
4565
|
-
var BackendUserTag = class extends
|
|
4701
|
+
var import_sdkgen_client71 = require("sdkgen-client");
|
|
4702
|
+
var import_sdkgen_client72 = require("sdkgen-client");
|
|
4703
|
+
var BackendUserTag = class extends import_sdkgen_client71.TagAbstract {
|
|
4566
4704
|
/**
|
|
4567
4705
|
* @returns {Promise<CommonMessage>}
|
|
4568
4706
|
* @throws {CommonMessageException}
|
|
@@ -4587,7 +4725,7 @@ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4587
4725
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4588
4726
|
throw new CommonMessageException(await response.json());
|
|
4589
4727
|
}
|
|
4590
|
-
throw new
|
|
4728
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4591
4729
|
}
|
|
4592
4730
|
/**
|
|
4593
4731
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4612,7 +4750,7 @@ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4612
4750
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4613
4751
|
throw new CommonMessageException(await response.json());
|
|
4614
4752
|
}
|
|
4615
|
-
throw new
|
|
4753
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4616
4754
|
}
|
|
4617
4755
|
/**
|
|
4618
4756
|
* @returns {Promise<BackendUser>}
|
|
@@ -4637,7 +4775,7 @@ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4637
4775
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4638
4776
|
throw new CommonMessageException(await response.json());
|
|
4639
4777
|
}
|
|
4640
|
-
throw new
|
|
4778
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4641
4779
|
}
|
|
4642
4780
|
/**
|
|
4643
4781
|
* @returns {Promise<BackendUserCollection>}
|
|
@@ -4664,7 +4802,7 @@ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4664
4802
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4665
4803
|
throw new CommonMessageException(await response.json());
|
|
4666
4804
|
}
|
|
4667
|
-
throw new
|
|
4805
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4668
4806
|
}
|
|
4669
4807
|
/**
|
|
4670
4808
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4692,14 +4830,14 @@ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
|
|
|
4692
4830
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4693
4831
|
throw new CommonMessageException(await response.json());
|
|
4694
4832
|
}
|
|
4695
|
-
throw new
|
|
4833
|
+
throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4696
4834
|
}
|
|
4697
4835
|
};
|
|
4698
4836
|
|
|
4699
4837
|
// src/BackendWebhookTag.ts
|
|
4700
|
-
var
|
|
4701
|
-
var
|
|
4702
|
-
var BackendWebhookTag = class extends
|
|
4838
|
+
var import_sdkgen_client73 = require("sdkgen-client");
|
|
4839
|
+
var import_sdkgen_client74 = require("sdkgen-client");
|
|
4840
|
+
var BackendWebhookTag = class extends import_sdkgen_client73.TagAbstract {
|
|
4703
4841
|
/**
|
|
4704
4842
|
* @returns {Promise<CommonMessage>}
|
|
4705
4843
|
* @throws {CommonMessageException}
|
|
@@ -4724,7 +4862,7 @@ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
4724
4862
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4725
4863
|
throw new CommonMessageException(await response.json());
|
|
4726
4864
|
}
|
|
4727
|
-
throw new
|
|
4865
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4728
4866
|
}
|
|
4729
4867
|
/**
|
|
4730
4868
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4749,7 +4887,7 @@ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
4749
4887
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4750
4888
|
throw new CommonMessageException(await response.json());
|
|
4751
4889
|
}
|
|
4752
|
-
throw new
|
|
4890
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4753
4891
|
}
|
|
4754
4892
|
/**
|
|
4755
4893
|
* @returns {Promise<BackendWebhook>}
|
|
@@ -4774,7 +4912,7 @@ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
4774
4912
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4775
4913
|
throw new CommonMessageException(await response.json());
|
|
4776
4914
|
}
|
|
4777
|
-
throw new
|
|
4915
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4778
4916
|
}
|
|
4779
4917
|
/**
|
|
4780
4918
|
* @returns {Promise<BackendWebhookCollection>}
|
|
@@ -4801,7 +4939,7 @@ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
4801
4939
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4802
4940
|
throw new CommonMessageException(await response.json());
|
|
4803
4941
|
}
|
|
4804
|
-
throw new
|
|
4942
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4805
4943
|
}
|
|
4806
4944
|
/**
|
|
4807
4945
|
* @returns {Promise<CommonMessage>}
|
|
@@ -4829,12 +4967,12 @@ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
|
|
|
4829
4967
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
4830
4968
|
throw new CommonMessageException(await response.json());
|
|
4831
4969
|
}
|
|
4832
|
-
throw new
|
|
4970
|
+
throw new import_sdkgen_client74.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
4833
4971
|
}
|
|
4834
4972
|
};
|
|
4835
4973
|
|
|
4836
4974
|
// src/BackendTag.ts
|
|
4837
|
-
var BackendTag = class extends
|
|
4975
|
+
var BackendTag = class extends import_sdkgen_client75.TagAbstract {
|
|
4838
4976
|
account() {
|
|
4839
4977
|
return new BackendAccountTag(
|
|
4840
4978
|
this.httpClient,
|
|
@@ -4907,6 +5045,12 @@ var BackendTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
4907
5045
|
this.parser
|
|
4908
5046
|
);
|
|
4909
5047
|
}
|
|
5048
|
+
firewall() {
|
|
5049
|
+
return new BackendFirewallTag(
|
|
5050
|
+
this.httpClient,
|
|
5051
|
+
this.parser
|
|
5052
|
+
);
|
|
5053
|
+
}
|
|
4910
5054
|
form() {
|
|
4911
5055
|
return new BackendFormTag(
|
|
4912
5056
|
this.httpClient,
|
|
@@ -5036,16 +5180,16 @@ var BackendTag = class extends import_sdkgen_client73.TagAbstract {
|
|
|
5036
5180
|
};
|
|
5037
5181
|
|
|
5038
5182
|
// src/Client.ts
|
|
5039
|
-
var
|
|
5040
|
-
var
|
|
5183
|
+
var import_sdkgen_client112 = require("sdkgen-client");
|
|
5184
|
+
var import_sdkgen_client113 = require("sdkgen-client");
|
|
5041
5185
|
|
|
5042
5186
|
// src/ConsumerTag.ts
|
|
5043
|
-
var
|
|
5187
|
+
var import_sdkgen_client104 = require("sdkgen-client");
|
|
5044
5188
|
|
|
5045
5189
|
// src/ConsumerAccountTag.ts
|
|
5046
|
-
var
|
|
5047
|
-
var
|
|
5048
|
-
var ConsumerAccountTag = class extends
|
|
5190
|
+
var import_sdkgen_client76 = require("sdkgen-client");
|
|
5191
|
+
var import_sdkgen_client77 = require("sdkgen-client");
|
|
5192
|
+
var ConsumerAccountTag = class extends import_sdkgen_client76.TagAbstract {
|
|
5049
5193
|
/**
|
|
5050
5194
|
* @returns {Promise<CommonMessage>}
|
|
5051
5195
|
* @throws {CommonMessageException}
|
|
@@ -5070,7 +5214,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5070
5214
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5071
5215
|
throw new CommonMessageException(await response.json());
|
|
5072
5216
|
}
|
|
5073
|
-
throw new
|
|
5217
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5074
5218
|
}
|
|
5075
5219
|
/**
|
|
5076
5220
|
* @returns {Promise<ConsumerAuthorizeResponse>}
|
|
@@ -5096,7 +5240,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5096
5240
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5097
5241
|
throw new CommonMessageException(await response.json());
|
|
5098
5242
|
}
|
|
5099
|
-
throw new
|
|
5243
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5100
5244
|
}
|
|
5101
5245
|
/**
|
|
5102
5246
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5122,7 +5266,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5122
5266
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5123
5267
|
throw new CommonMessageException(await response.json());
|
|
5124
5268
|
}
|
|
5125
|
-
throw new
|
|
5269
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5126
5270
|
}
|
|
5127
5271
|
/**
|
|
5128
5272
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5148,7 +5292,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5148
5292
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5149
5293
|
throw new CommonMessageException(await response.json());
|
|
5150
5294
|
}
|
|
5151
|
-
throw new
|
|
5295
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5152
5296
|
}
|
|
5153
5297
|
/**
|
|
5154
5298
|
* @returns {Promise<ConsumerUserAccount>}
|
|
@@ -5171,7 +5315,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5171
5315
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5172
5316
|
throw new CommonMessageException(await response.json());
|
|
5173
5317
|
}
|
|
5174
|
-
throw new
|
|
5318
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5175
5319
|
}
|
|
5176
5320
|
/**
|
|
5177
5321
|
* @returns {Promise<ConsumerAuthorizeMeta>}
|
|
@@ -5194,7 +5338,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5194
5338
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5195
5339
|
throw new CommonMessageException(await response.json());
|
|
5196
5340
|
}
|
|
5197
|
-
throw new
|
|
5341
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5198
5342
|
}
|
|
5199
5343
|
/**
|
|
5200
5344
|
* @returns {Promise<ConsumerUserJWT>}
|
|
@@ -5220,7 +5364,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5220
5364
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5221
5365
|
throw new CommonMessageException(await response.json());
|
|
5222
5366
|
}
|
|
5223
|
-
throw new
|
|
5367
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5224
5368
|
}
|
|
5225
5369
|
/**
|
|
5226
5370
|
* @returns {Promise<ConsumerUserJWT>}
|
|
@@ -5246,7 +5390,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5246
5390
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5247
5391
|
throw new CommonMessageException(await response.json());
|
|
5248
5392
|
}
|
|
5249
|
-
throw new
|
|
5393
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5250
5394
|
}
|
|
5251
5395
|
/**
|
|
5252
5396
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5272,7 +5416,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5272
5416
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5273
5417
|
throw new CommonMessageException(await response.json());
|
|
5274
5418
|
}
|
|
5275
|
-
throw new
|
|
5419
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5276
5420
|
}
|
|
5277
5421
|
/**
|
|
5278
5422
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5298,7 +5442,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5298
5442
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5299
5443
|
throw new CommonMessageException(await response.json());
|
|
5300
5444
|
}
|
|
5301
|
-
throw new
|
|
5445
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5302
5446
|
}
|
|
5303
5447
|
/**
|
|
5304
5448
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5324,14 +5468,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
|
|
|
5324
5468
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5325
5469
|
throw new CommonMessageException(await response.json());
|
|
5326
5470
|
}
|
|
5327
|
-
throw new
|
|
5471
|
+
throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5328
5472
|
}
|
|
5329
5473
|
};
|
|
5330
5474
|
|
|
5331
5475
|
// src/ConsumerAppTag.ts
|
|
5332
|
-
var
|
|
5333
|
-
var
|
|
5334
|
-
var ConsumerAppTag = class extends
|
|
5476
|
+
var import_sdkgen_client78 = require("sdkgen-client");
|
|
5477
|
+
var import_sdkgen_client79 = require("sdkgen-client");
|
|
5478
|
+
var ConsumerAppTag = class extends import_sdkgen_client78.TagAbstract {
|
|
5335
5479
|
/**
|
|
5336
5480
|
* @returns {Promise<CommonMessage>}
|
|
5337
5481
|
* @throws {CommonMessageException}
|
|
@@ -5356,7 +5500,7 @@ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
|
|
|
5356
5500
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5357
5501
|
throw new CommonMessageException(await response.json());
|
|
5358
5502
|
}
|
|
5359
|
-
throw new
|
|
5503
|
+
throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5360
5504
|
}
|
|
5361
5505
|
/**
|
|
5362
5506
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5381,7 +5525,7 @@ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
|
|
|
5381
5525
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5382
5526
|
throw new CommonMessageException(await response.json());
|
|
5383
5527
|
}
|
|
5384
|
-
throw new
|
|
5528
|
+
throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5385
5529
|
}
|
|
5386
5530
|
/**
|
|
5387
5531
|
* @returns {Promise<ConsumerApp>}
|
|
@@ -5406,7 +5550,7 @@ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
|
|
|
5406
5550
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5407
5551
|
throw new CommonMessageException(await response.json());
|
|
5408
5552
|
}
|
|
5409
|
-
throw new
|
|
5553
|
+
throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5410
5554
|
}
|
|
5411
5555
|
/**
|
|
5412
5556
|
* @returns {Promise<ConsumerAppCollection>}
|
|
@@ -5433,7 +5577,7 @@ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
|
|
|
5433
5577
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5434
5578
|
throw new CommonMessageException(await response.json());
|
|
5435
5579
|
}
|
|
5436
|
-
throw new
|
|
5580
|
+
throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5437
5581
|
}
|
|
5438
5582
|
/**
|
|
5439
5583
|
* @returns {Promise<CommonMessage>}
|
|
@@ -5461,14 +5605,14 @@ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
|
|
|
5461
5605
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5462
5606
|
throw new CommonMessageException(await response.json());
|
|
5463
5607
|
}
|
|
5464
|
-
throw new
|
|
5608
|
+
throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5465
5609
|
}
|
|
5466
5610
|
};
|
|
5467
5611
|
|
|
5468
5612
|
// src/ConsumerEventTag.ts
|
|
5469
|
-
var
|
|
5470
|
-
var
|
|
5471
|
-
var ConsumerEventTag = class extends
|
|
5613
|
+
var import_sdkgen_client80 = require("sdkgen-client");
|
|
5614
|
+
var import_sdkgen_client81 = require("sdkgen-client");
|
|
5615
|
+
var ConsumerEventTag = class extends import_sdkgen_client80.TagAbstract {
|
|
5472
5616
|
/**
|
|
5473
5617
|
* @returns {Promise<ConsumerEvent>}
|
|
5474
5618
|
* @throws {CommonMessageException}
|
|
@@ -5492,7 +5636,7 @@ var ConsumerEventTag = class extends import_sdkgen_client78.TagAbstract {
|
|
|
5492
5636
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5493
5637
|
throw new CommonMessageException(await response.json());
|
|
5494
5638
|
}
|
|
5495
|
-
throw new
|
|
5639
|
+
throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5496
5640
|
}
|
|
5497
5641
|
/**
|
|
5498
5642
|
* @returns {Promise<ConsumerEventCollection>}
|
|
@@ -5519,14 +5663,14 @@ var ConsumerEventTag = class extends import_sdkgen_client78.TagAbstract {
|
|
|
5519
5663
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5520
5664
|
throw new CommonMessageException(await response.json());
|
|
5521
5665
|
}
|
|
5522
|
-
throw new
|
|
5666
|
+
throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5523
5667
|
}
|
|
5524
5668
|
};
|
|
5525
5669
|
|
|
5526
5670
|
// src/ConsumerFormTag.ts
|
|
5527
|
-
var
|
|
5528
|
-
var
|
|
5529
|
-
var ConsumerFormTag = class extends
|
|
5671
|
+
var import_sdkgen_client82 = require("sdkgen-client");
|
|
5672
|
+
var import_sdkgen_client83 = require("sdkgen-client");
|
|
5673
|
+
var ConsumerFormTag = class extends import_sdkgen_client82.TagAbstract {
|
|
5530
5674
|
/**
|
|
5531
5675
|
* @returns {Promise<ConsumerForm>}
|
|
5532
5676
|
* @throws {CommonMessageException}
|
|
@@ -5550,7 +5694,7 @@ var ConsumerFormTag = class extends import_sdkgen_client80.TagAbstract {
|
|
|
5550
5694
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5551
5695
|
throw new CommonMessageException(await response.json());
|
|
5552
5696
|
}
|
|
5553
|
-
throw new
|
|
5697
|
+
throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5554
5698
|
}
|
|
5555
5699
|
/**
|
|
5556
5700
|
* @returns {Promise<ConsumerFormCollection>}
|
|
@@ -5577,14 +5721,14 @@ var ConsumerFormTag = class extends import_sdkgen_client80.TagAbstract {
|
|
|
5577
5721
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5578
5722
|
throw new CommonMessageException(await response.json());
|
|
5579
5723
|
}
|
|
5580
|
-
throw new
|
|
5724
|
+
throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5581
5725
|
}
|
|
5582
5726
|
};
|
|
5583
5727
|
|
|
5584
5728
|
// src/ConsumerGrantTag.ts
|
|
5585
|
-
var
|
|
5586
|
-
var
|
|
5587
|
-
var ConsumerGrantTag = class extends
|
|
5729
|
+
var import_sdkgen_client84 = require("sdkgen-client");
|
|
5730
|
+
var import_sdkgen_client85 = require("sdkgen-client");
|
|
5731
|
+
var ConsumerGrantTag = class extends import_sdkgen_client84.TagAbstract {
|
|
5588
5732
|
/**
|
|
5589
5733
|
* @returns {Promise<CommonMessage>}
|
|
5590
5734
|
* @throws {CommonMessageException}
|
|
@@ -5608,7 +5752,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client82.TagAbstract {
|
|
|
5608
5752
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5609
5753
|
throw new CommonMessageException(await response.json());
|
|
5610
5754
|
}
|
|
5611
|
-
throw new
|
|
5755
|
+
throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5612
5756
|
}
|
|
5613
5757
|
/**
|
|
5614
5758
|
* @returns {Promise<ConsumerGrantCollection>}
|
|
@@ -5635,14 +5779,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client82.TagAbstract {
|
|
|
5635
5779
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5636
5780
|
throw new CommonMessageException(await response.json());
|
|
5637
5781
|
}
|
|
5638
|
-
throw new
|
|
5782
|
+
throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5639
5783
|
}
|
|
5640
5784
|
};
|
|
5641
5785
|
|
|
5642
5786
|
// src/ConsumerIdentityTag.ts
|
|
5643
|
-
var
|
|
5644
|
-
var
|
|
5645
|
-
var ConsumerIdentityTag = class extends
|
|
5787
|
+
var import_sdkgen_client86 = require("sdkgen-client");
|
|
5788
|
+
var import_sdkgen_client87 = require("sdkgen-client");
|
|
5789
|
+
var ConsumerIdentityTag = class extends import_sdkgen_client86.TagAbstract {
|
|
5646
5790
|
/**
|
|
5647
5791
|
* @returns {Promise<Passthru>}
|
|
5648
5792
|
* @throws {CommonMessageException}
|
|
@@ -5666,7 +5810,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client84.TagAbstract {
|
|
|
5666
5810
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5667
5811
|
throw new CommonMessageException(await response.json());
|
|
5668
5812
|
}
|
|
5669
|
-
throw new
|
|
5813
|
+
throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5670
5814
|
}
|
|
5671
5815
|
/**
|
|
5672
5816
|
* @returns {Promise<ConsumerIdentityCollection>}
|
|
@@ -5692,7 +5836,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client84.TagAbstract {
|
|
|
5692
5836
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5693
5837
|
throw new CommonMessageException(await response.json());
|
|
5694
5838
|
}
|
|
5695
|
-
throw new
|
|
5839
|
+
throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5696
5840
|
}
|
|
5697
5841
|
/**
|
|
5698
5842
|
* @returns {Promise<Passthru>}
|
|
@@ -5717,14 +5861,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client84.TagAbstract {
|
|
|
5717
5861
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5718
5862
|
throw new CommonMessageException(await response.json());
|
|
5719
5863
|
}
|
|
5720
|
-
throw new
|
|
5864
|
+
throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5721
5865
|
}
|
|
5722
5866
|
};
|
|
5723
5867
|
|
|
5724
5868
|
// src/ConsumerLogTag.ts
|
|
5725
|
-
var
|
|
5726
|
-
var
|
|
5727
|
-
var ConsumerLogTag = class extends
|
|
5869
|
+
var import_sdkgen_client88 = require("sdkgen-client");
|
|
5870
|
+
var import_sdkgen_client89 = require("sdkgen-client");
|
|
5871
|
+
var ConsumerLogTag = class extends import_sdkgen_client88.TagAbstract {
|
|
5728
5872
|
/**
|
|
5729
5873
|
* @returns {Promise<ConsumerLog>}
|
|
5730
5874
|
* @throws {CommonMessageException}
|
|
@@ -5748,7 +5892,7 @@ var ConsumerLogTag = class extends import_sdkgen_client86.TagAbstract {
|
|
|
5748
5892
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5749
5893
|
throw new CommonMessageException(await response.json());
|
|
5750
5894
|
}
|
|
5751
|
-
throw new
|
|
5895
|
+
throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5752
5896
|
}
|
|
5753
5897
|
/**
|
|
5754
5898
|
* @returns {Promise<ConsumerLogCollection>}
|
|
@@ -5775,14 +5919,14 @@ var ConsumerLogTag = class extends import_sdkgen_client86.TagAbstract {
|
|
|
5775
5919
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5776
5920
|
throw new CommonMessageException(await response.json());
|
|
5777
5921
|
}
|
|
5778
|
-
throw new
|
|
5922
|
+
throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5779
5923
|
}
|
|
5780
5924
|
};
|
|
5781
5925
|
|
|
5782
5926
|
// src/ConsumerPageTag.ts
|
|
5783
|
-
var
|
|
5784
|
-
var
|
|
5785
|
-
var ConsumerPageTag = class extends
|
|
5927
|
+
var import_sdkgen_client90 = require("sdkgen-client");
|
|
5928
|
+
var import_sdkgen_client91 = require("sdkgen-client");
|
|
5929
|
+
var ConsumerPageTag = class extends import_sdkgen_client90.TagAbstract {
|
|
5786
5930
|
/**
|
|
5787
5931
|
* @returns {Promise<ConsumerPage>}
|
|
5788
5932
|
* @throws {CommonMessageException}
|
|
@@ -5806,7 +5950,7 @@ var ConsumerPageTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
5806
5950
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5807
5951
|
throw new CommonMessageException(await response.json());
|
|
5808
5952
|
}
|
|
5809
|
-
throw new
|
|
5953
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5810
5954
|
}
|
|
5811
5955
|
/**
|
|
5812
5956
|
* @returns {Promise<ConsumerPageCollection>}
|
|
@@ -5833,14 +5977,14 @@ var ConsumerPageTag = class extends import_sdkgen_client88.TagAbstract {
|
|
|
5833
5977
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5834
5978
|
throw new CommonMessageException(await response.json());
|
|
5835
5979
|
}
|
|
5836
|
-
throw new
|
|
5980
|
+
throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5837
5981
|
}
|
|
5838
5982
|
};
|
|
5839
5983
|
|
|
5840
5984
|
// src/ConsumerPaymentTag.ts
|
|
5841
|
-
var
|
|
5842
|
-
var
|
|
5843
|
-
var ConsumerPaymentTag = class extends
|
|
5985
|
+
var import_sdkgen_client92 = require("sdkgen-client");
|
|
5986
|
+
var import_sdkgen_client93 = require("sdkgen-client");
|
|
5987
|
+
var ConsumerPaymentTag = class extends import_sdkgen_client92.TagAbstract {
|
|
5844
5988
|
/**
|
|
5845
5989
|
* @returns {Promise<ConsumerPaymentCheckoutResponse>}
|
|
5846
5990
|
* @throws {CommonMessageException}
|
|
@@ -5867,7 +6011,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
5867
6011
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5868
6012
|
throw new CommonMessageException(await response.json());
|
|
5869
6013
|
}
|
|
5870
|
-
throw new
|
|
6014
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5871
6015
|
}
|
|
5872
6016
|
/**
|
|
5873
6017
|
* @returns {Promise<ConsumerPaymentPortalResponse>}
|
|
@@ -5895,14 +6039,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client90.TagAbstract {
|
|
|
5895
6039
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5896
6040
|
throw new CommonMessageException(await response.json());
|
|
5897
6041
|
}
|
|
5898
|
-
throw new
|
|
6042
|
+
throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5899
6043
|
}
|
|
5900
6044
|
};
|
|
5901
6045
|
|
|
5902
6046
|
// src/ConsumerPlanTag.ts
|
|
5903
|
-
var
|
|
5904
|
-
var
|
|
5905
|
-
var ConsumerPlanTag = class extends
|
|
6047
|
+
var import_sdkgen_client94 = require("sdkgen-client");
|
|
6048
|
+
var import_sdkgen_client95 = require("sdkgen-client");
|
|
6049
|
+
var ConsumerPlanTag = class extends import_sdkgen_client94.TagAbstract {
|
|
5906
6050
|
/**
|
|
5907
6051
|
* @returns {Promise<ConsumerPlan>}
|
|
5908
6052
|
* @throws {CommonMessageException}
|
|
@@ -5926,7 +6070,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
5926
6070
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5927
6071
|
throw new CommonMessageException(await response.json());
|
|
5928
6072
|
}
|
|
5929
|
-
throw new
|
|
6073
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5930
6074
|
}
|
|
5931
6075
|
/**
|
|
5932
6076
|
* @returns {Promise<ConsumerPlanCollection>}
|
|
@@ -5953,14 +6097,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client92.TagAbstract {
|
|
|
5953
6097
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5954
6098
|
throw new CommonMessageException(await response.json());
|
|
5955
6099
|
}
|
|
5956
|
-
throw new
|
|
6100
|
+
throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5957
6101
|
}
|
|
5958
6102
|
};
|
|
5959
6103
|
|
|
5960
6104
|
// src/ConsumerScopeTag.ts
|
|
5961
|
-
var
|
|
5962
|
-
var
|
|
5963
|
-
var ConsumerScopeTag = class extends
|
|
6105
|
+
var import_sdkgen_client96 = require("sdkgen-client");
|
|
6106
|
+
var import_sdkgen_client97 = require("sdkgen-client");
|
|
6107
|
+
var ConsumerScopeTag = class extends import_sdkgen_client96.TagAbstract {
|
|
5964
6108
|
/**
|
|
5965
6109
|
* @returns {Promise<ConsumerScopeCollection>}
|
|
5966
6110
|
* @throws {CommonMessageException}
|
|
@@ -5986,7 +6130,7 @@ var ConsumerScopeTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
5986
6130
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
5987
6131
|
throw new CommonMessageException(await response.json());
|
|
5988
6132
|
}
|
|
5989
|
-
throw new
|
|
6133
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
5990
6134
|
}
|
|
5991
6135
|
/**
|
|
5992
6136
|
* @returns {Promise<ConsumerScopeCategories>}
|
|
@@ -6009,14 +6153,14 @@ var ConsumerScopeTag = class extends import_sdkgen_client94.TagAbstract {
|
|
|
6009
6153
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6010
6154
|
throw new CommonMessageException(await response.json());
|
|
6011
6155
|
}
|
|
6012
|
-
throw new
|
|
6156
|
+
throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6013
6157
|
}
|
|
6014
6158
|
};
|
|
6015
6159
|
|
|
6016
6160
|
// src/ConsumerTokenTag.ts
|
|
6017
|
-
var
|
|
6018
|
-
var
|
|
6019
|
-
var ConsumerTokenTag = class extends
|
|
6161
|
+
var import_sdkgen_client98 = require("sdkgen-client");
|
|
6162
|
+
var import_sdkgen_client99 = require("sdkgen-client");
|
|
6163
|
+
var ConsumerTokenTag = class extends import_sdkgen_client98.TagAbstract {
|
|
6020
6164
|
/**
|
|
6021
6165
|
* @returns {Promise<ConsumerTokenAccessToken>}
|
|
6022
6166
|
* @throws {CommonMessageException}
|
|
@@ -6041,7 +6185,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6041
6185
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6042
6186
|
throw new CommonMessageException(await response.json());
|
|
6043
6187
|
}
|
|
6044
|
-
throw new
|
|
6188
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6045
6189
|
}
|
|
6046
6190
|
/**
|
|
6047
6191
|
* @returns {Promise<CommonMessage>}
|
|
@@ -6066,7 +6210,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6066
6210
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6067
6211
|
throw new CommonMessageException(await response.json());
|
|
6068
6212
|
}
|
|
6069
|
-
throw new
|
|
6213
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6070
6214
|
}
|
|
6071
6215
|
/**
|
|
6072
6216
|
* @returns {Promise<ConsumerToken>}
|
|
@@ -6091,7 +6235,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6091
6235
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6092
6236
|
throw new CommonMessageException(await response.json());
|
|
6093
6237
|
}
|
|
6094
|
-
throw new
|
|
6238
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6095
6239
|
}
|
|
6096
6240
|
/**
|
|
6097
6241
|
* @returns {Promise<ConsumerTokenCollection>}
|
|
@@ -6118,7 +6262,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6118
6262
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6119
6263
|
throw new CommonMessageException(await response.json());
|
|
6120
6264
|
}
|
|
6121
|
-
throw new
|
|
6265
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6122
6266
|
}
|
|
6123
6267
|
/**
|
|
6124
6268
|
* @returns {Promise<ConsumerTokenAccessToken>}
|
|
@@ -6146,14 +6290,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
|
|
|
6146
6290
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6147
6291
|
throw new CommonMessageException(await response.json());
|
|
6148
6292
|
}
|
|
6149
|
-
throw new
|
|
6293
|
+
throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6150
6294
|
}
|
|
6151
6295
|
};
|
|
6152
6296
|
|
|
6153
6297
|
// src/ConsumerTransactionTag.ts
|
|
6154
|
-
var
|
|
6155
|
-
var
|
|
6156
|
-
var ConsumerTransactionTag = class extends
|
|
6298
|
+
var import_sdkgen_client100 = require("sdkgen-client");
|
|
6299
|
+
var import_sdkgen_client101 = require("sdkgen-client");
|
|
6300
|
+
var ConsumerTransactionTag = class extends import_sdkgen_client100.TagAbstract {
|
|
6157
6301
|
/**
|
|
6158
6302
|
* @returns {Promise<ConsumerTransaction>}
|
|
6159
6303
|
* @throws {CommonMessageException}
|
|
@@ -6177,7 +6321,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
6177
6321
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6178
6322
|
throw new CommonMessageException(await response.json());
|
|
6179
6323
|
}
|
|
6180
|
-
throw new
|
|
6324
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6181
6325
|
}
|
|
6182
6326
|
/**
|
|
6183
6327
|
* @returns {Promise<ConsumerTransactionCollection>}
|
|
@@ -6204,14 +6348,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client98.TagAbstract {
|
|
|
6204
6348
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6205
6349
|
throw new CommonMessageException(await response.json());
|
|
6206
6350
|
}
|
|
6207
|
-
throw new
|
|
6351
|
+
throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6208
6352
|
}
|
|
6209
6353
|
};
|
|
6210
6354
|
|
|
6211
6355
|
// src/ConsumerWebhookTag.ts
|
|
6212
|
-
var
|
|
6213
|
-
var
|
|
6214
|
-
var ConsumerWebhookTag = class extends
|
|
6356
|
+
var import_sdkgen_client102 = require("sdkgen-client");
|
|
6357
|
+
var import_sdkgen_client103 = require("sdkgen-client");
|
|
6358
|
+
var ConsumerWebhookTag = class extends import_sdkgen_client102.TagAbstract {
|
|
6215
6359
|
/**
|
|
6216
6360
|
* @returns {Promise<CommonMessage>}
|
|
6217
6361
|
* @throws {CommonMessageException}
|
|
@@ -6236,7 +6380,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
6236
6380
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6237
6381
|
throw new CommonMessageException(await response.json());
|
|
6238
6382
|
}
|
|
6239
|
-
throw new
|
|
6383
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6240
6384
|
}
|
|
6241
6385
|
/**
|
|
6242
6386
|
* @returns {Promise<CommonMessage>}
|
|
@@ -6261,7 +6405,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
6261
6405
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6262
6406
|
throw new CommonMessageException(await response.json());
|
|
6263
6407
|
}
|
|
6264
|
-
throw new
|
|
6408
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6265
6409
|
}
|
|
6266
6410
|
/**
|
|
6267
6411
|
* @returns {Promise<ConsumerWebhook>}
|
|
@@ -6286,7 +6430,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
6286
6430
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6287
6431
|
throw new CommonMessageException(await response.json());
|
|
6288
6432
|
}
|
|
6289
|
-
throw new
|
|
6433
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6290
6434
|
}
|
|
6291
6435
|
/**
|
|
6292
6436
|
* @returns {Promise<ConsumerWebhookCollection>}
|
|
@@ -6313,7 +6457,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
6313
6457
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6314
6458
|
throw new CommonMessageException(await response.json());
|
|
6315
6459
|
}
|
|
6316
|
-
throw new
|
|
6460
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6317
6461
|
}
|
|
6318
6462
|
/**
|
|
6319
6463
|
* @returns {Promise<CommonMessage>}
|
|
@@ -6341,12 +6485,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
|
|
|
6341
6485
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6342
6486
|
throw new CommonMessageException(await response.json());
|
|
6343
6487
|
}
|
|
6344
|
-
throw new
|
|
6488
|
+
throw new import_sdkgen_client103.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6345
6489
|
}
|
|
6346
6490
|
};
|
|
6347
6491
|
|
|
6348
6492
|
// src/ConsumerTag.ts
|
|
6349
|
-
var ConsumerTag = class extends
|
|
6493
|
+
var ConsumerTag = class extends import_sdkgen_client104.TagAbstract {
|
|
6350
6494
|
account() {
|
|
6351
6495
|
return new ConsumerAccountTag(
|
|
6352
6496
|
this.httpClient,
|
|
@@ -6434,12 +6578,12 @@ var ConsumerTag = class extends import_sdkgen_client102.TagAbstract {
|
|
|
6434
6578
|
};
|
|
6435
6579
|
|
|
6436
6580
|
// src/SystemTag.ts
|
|
6437
|
-
var
|
|
6581
|
+
var import_sdkgen_client111 = require("sdkgen-client");
|
|
6438
6582
|
|
|
6439
6583
|
// src/SystemConnectionTag.ts
|
|
6440
|
-
var
|
|
6441
|
-
var
|
|
6442
|
-
var SystemConnectionTag = class extends
|
|
6584
|
+
var import_sdkgen_client105 = require("sdkgen-client");
|
|
6585
|
+
var import_sdkgen_client106 = require("sdkgen-client");
|
|
6586
|
+
var SystemConnectionTag = class extends import_sdkgen_client105.TagAbstract {
|
|
6443
6587
|
/**
|
|
6444
6588
|
* @returns {Promise<CommonMessage>}
|
|
6445
6589
|
* @throws {CommonMessageException}
|
|
@@ -6463,14 +6607,14 @@ var SystemConnectionTag = class extends import_sdkgen_client103.TagAbstract {
|
|
|
6463
6607
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6464
6608
|
throw new CommonMessageException(await response.json());
|
|
6465
6609
|
}
|
|
6466
|
-
throw new
|
|
6610
|
+
throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6467
6611
|
}
|
|
6468
6612
|
};
|
|
6469
6613
|
|
|
6470
6614
|
// src/SystemMetaTag.ts
|
|
6471
|
-
var
|
|
6472
|
-
var
|
|
6473
|
-
var SystemMetaTag = class extends
|
|
6615
|
+
var import_sdkgen_client107 = require("sdkgen-client");
|
|
6616
|
+
var import_sdkgen_client108 = require("sdkgen-client");
|
|
6617
|
+
var SystemMetaTag = class extends import_sdkgen_client107.TagAbstract {
|
|
6474
6618
|
/**
|
|
6475
6619
|
* @returns {Promise<SystemAbout>}
|
|
6476
6620
|
* @throws {CommonMessageException}
|
|
@@ -6492,7 +6636,7 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6492
6636
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6493
6637
|
throw new CommonMessageException(await response.json());
|
|
6494
6638
|
}
|
|
6495
|
-
throw new
|
|
6639
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6496
6640
|
}
|
|
6497
6641
|
/**
|
|
6498
6642
|
* @returns {Promise<Passthru>}
|
|
@@ -6518,7 +6662,7 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6518
6662
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6519
6663
|
throw new CommonMessageException(await response.json());
|
|
6520
6664
|
}
|
|
6521
|
-
throw new
|
|
6665
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6522
6666
|
}
|
|
6523
6667
|
/**
|
|
6524
6668
|
* @returns {Promise<SystemHealthCheck>}
|
|
@@ -6541,7 +6685,7 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6541
6685
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6542
6686
|
throw new CommonMessageException(await response.json());
|
|
6543
6687
|
}
|
|
6544
|
-
throw new
|
|
6688
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6545
6689
|
}
|
|
6546
6690
|
/**
|
|
6547
6691
|
* @returns {Promise<SystemOAuthConfiguration>}
|
|
@@ -6564,7 +6708,7 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6564
6708
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6565
6709
|
throw new CommonMessageException(await response.json());
|
|
6566
6710
|
}
|
|
6567
|
-
throw new
|
|
6711
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6568
6712
|
}
|
|
6569
6713
|
/**
|
|
6570
6714
|
* @returns {Promise<SystemRoute>}
|
|
@@ -6587,7 +6731,7 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6587
6731
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6588
6732
|
throw new CommonMessageException(await response.json());
|
|
6589
6733
|
}
|
|
6590
|
-
throw new
|
|
6734
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6591
6735
|
}
|
|
6592
6736
|
/**
|
|
6593
6737
|
* @returns {Promise<SystemSchema>}
|
|
@@ -6612,14 +6756,14 @@ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
|
|
|
6612
6756
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6613
6757
|
throw new CommonMessageException(await response.json());
|
|
6614
6758
|
}
|
|
6615
|
-
throw new
|
|
6759
|
+
throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6616
6760
|
}
|
|
6617
6761
|
};
|
|
6618
6762
|
|
|
6619
6763
|
// src/SystemPaymentTag.ts
|
|
6620
|
-
var
|
|
6621
|
-
var
|
|
6622
|
-
var SystemPaymentTag = class extends
|
|
6764
|
+
var import_sdkgen_client109 = require("sdkgen-client");
|
|
6765
|
+
var import_sdkgen_client110 = require("sdkgen-client");
|
|
6766
|
+
var SystemPaymentTag = class extends import_sdkgen_client109.TagAbstract {
|
|
6623
6767
|
/**
|
|
6624
6768
|
* @returns {Promise<CommonMessage>}
|
|
6625
6769
|
* @throws {CommonMessageException}
|
|
@@ -6643,12 +6787,12 @@ var SystemPaymentTag = class extends import_sdkgen_client107.TagAbstract {
|
|
|
6643
6787
|
if (statusCode >= 0 && statusCode <= 999) {
|
|
6644
6788
|
throw new CommonMessageException(await response.json());
|
|
6645
6789
|
}
|
|
6646
|
-
throw new
|
|
6790
|
+
throw new import_sdkgen_client110.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
|
|
6647
6791
|
}
|
|
6648
6792
|
};
|
|
6649
6793
|
|
|
6650
6794
|
// src/SystemTag.ts
|
|
6651
|
-
var SystemTag = class extends
|
|
6795
|
+
var SystemTag = class extends import_sdkgen_client111.TagAbstract {
|
|
6652
6796
|
connection() {
|
|
6653
6797
|
return new SystemConnectionTag(
|
|
6654
6798
|
this.httpClient,
|
|
@@ -6670,7 +6814,7 @@ var SystemTag = class extends import_sdkgen_client109.TagAbstract {
|
|
|
6670
6814
|
};
|
|
6671
6815
|
|
|
6672
6816
|
// src/Client.ts
|
|
6673
|
-
var Client = class _Client extends
|
|
6817
|
+
var Client = class _Client extends import_sdkgen_client112.ClientAbstract {
|
|
6674
6818
|
authorization() {
|
|
6675
6819
|
return new AuthorizationTag(
|
|
6676
6820
|
this.httpClient,
|
|
@@ -6696,7 +6840,7 @@ var Client = class _Client extends import_sdkgen_client110.ClientAbstract {
|
|
|
6696
6840
|
);
|
|
6697
6841
|
}
|
|
6698
6842
|
static buildAnonymous(baseUrl) {
|
|
6699
|
-
return new _Client(baseUrl, new
|
|
6843
|
+
return new _Client(baseUrl, new import_sdkgen_client113.Anonymous());
|
|
6700
6844
|
}
|
|
6701
6845
|
};
|
|
6702
6846
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -6714,6 +6858,7 @@ var Client = class _Client extends import_sdkgen_client110.ClientAbstract {
|
|
|
6714
6858
|
BackendDashboardTag,
|
|
6715
6859
|
BackendDatabaseTag,
|
|
6716
6860
|
BackendEventTag,
|
|
6861
|
+
BackendFirewallTag,
|
|
6717
6862
|
BackendFormTag,
|
|
6718
6863
|
BackendGeneratorTag,
|
|
6719
6864
|
BackendIdentityTag,
|