fusio-sdk 5.1.14 → 5.1.16

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 CHANGED
@@ -33,6 +33,7 @@ __export(index_exports, {
33
33
  BackendDashboardTag: () => BackendDashboardTag,
34
34
  BackendDatabaseTag: () => BackendDatabaseTag,
35
35
  BackendEventTag: () => BackendEventTag,
36
+ BackendFormTag: () => BackendFormTag,
36
37
  BackendGeneratorTag: () => BackendGeneratorTag,
37
38
  BackendIdentityTag: () => BackendIdentityTag,
38
39
  BackendLogTag: () => BackendLogTag,
@@ -61,6 +62,7 @@ __export(index_exports, {
61
62
  ConsumerAccountTag: () => ConsumerAccountTag,
62
63
  ConsumerAppTag: () => ConsumerAppTag,
63
64
  ConsumerEventTag: () => ConsumerEventTag,
65
+ ConsumerFormTag: () => ConsumerFormTag,
64
66
  ConsumerGrantTag: () => ConsumerGrantTag,
65
67
  ConsumerIdentityTag: () => ConsumerIdentityTag,
66
68
  ConsumerLogTag: () => ConsumerLogTag,
@@ -1747,10 +1749,147 @@ var BackendEventTag = class extends import_sdkgen_client26.TagAbstract {
1747
1749
  }
1748
1750
  };
1749
1751
 
1750
- // src/BackendGeneratorTag.ts
1752
+ // src/BackendFormTag.ts
1751
1753
  var import_sdkgen_client28 = require("sdkgen-client");
1752
1754
  var import_sdkgen_client29 = require("sdkgen-client");
1753
- var BackendGeneratorTag = class extends import_sdkgen_client28.TagAbstract {
1755
+ var BackendFormTag = class extends import_sdkgen_client28.TagAbstract {
1756
+ /**
1757
+ * @returns {Promise<CommonMessage>}
1758
+ * @throws {CommonMessageException}
1759
+ * @throws {ClientException}
1760
+ */
1761
+ async create(payload) {
1762
+ const url = this.parser.url("/backend/form", {});
1763
+ let request = {
1764
+ url,
1765
+ method: "POST",
1766
+ headers: {
1767
+ "Content-Type": "application/json"
1768
+ },
1769
+ params: this.parser.query({}, []),
1770
+ data: payload
1771
+ };
1772
+ const response = await this.httpClient.request(request);
1773
+ if (response.ok) {
1774
+ return await response.json();
1775
+ }
1776
+ const statusCode = response.status;
1777
+ if (statusCode >= 0 && statusCode <= 999) {
1778
+ throw new CommonMessageException(await response.json());
1779
+ }
1780
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1781
+ }
1782
+ /**
1783
+ * @returns {Promise<CommonMessage>}
1784
+ * @throws {CommonMessageException}
1785
+ * @throws {ClientException}
1786
+ */
1787
+ async delete(formId) {
1788
+ const url = this.parser.url("/backend/form/$form_id<[0-9]+|^~>", {
1789
+ "form_id": formId
1790
+ });
1791
+ let request = {
1792
+ url,
1793
+ method: "DELETE",
1794
+ headers: {},
1795
+ params: this.parser.query({}, [])
1796
+ };
1797
+ const response = await this.httpClient.request(request);
1798
+ if (response.ok) {
1799
+ return await response.json();
1800
+ }
1801
+ const statusCode = response.status;
1802
+ if (statusCode >= 0 && statusCode <= 999) {
1803
+ throw new CommonMessageException(await response.json());
1804
+ }
1805
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1806
+ }
1807
+ /**
1808
+ * @returns {Promise<BackendForm>}
1809
+ * @throws {CommonMessageException}
1810
+ * @throws {ClientException}
1811
+ */
1812
+ async get(formId) {
1813
+ const url = this.parser.url("/backend/form/$form_id<[0-9]+|^~>", {
1814
+ "form_id": formId
1815
+ });
1816
+ let request = {
1817
+ url,
1818
+ method: "GET",
1819
+ headers: {},
1820
+ params: this.parser.query({}, [])
1821
+ };
1822
+ const response = await this.httpClient.request(request);
1823
+ if (response.ok) {
1824
+ return await response.json();
1825
+ }
1826
+ const statusCode = response.status;
1827
+ if (statusCode >= 0 && statusCode <= 999) {
1828
+ throw new CommonMessageException(await response.json());
1829
+ }
1830
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1831
+ }
1832
+ /**
1833
+ * @returns {Promise<BackendFormCollection>}
1834
+ * @throws {CommonMessageException}
1835
+ * @throws {ClientException}
1836
+ */
1837
+ async getAll(startIndex, count, search) {
1838
+ const url = this.parser.url("/backend/form", {});
1839
+ let request = {
1840
+ url,
1841
+ method: "GET",
1842
+ headers: {},
1843
+ params: this.parser.query({
1844
+ "startIndex": startIndex,
1845
+ "count": count,
1846
+ "search": search
1847
+ }, [])
1848
+ };
1849
+ const response = await this.httpClient.request(request);
1850
+ if (response.ok) {
1851
+ return await response.json();
1852
+ }
1853
+ const statusCode = response.status;
1854
+ if (statusCode >= 0 && statusCode <= 999) {
1855
+ throw new CommonMessageException(await response.json());
1856
+ }
1857
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1858
+ }
1859
+ /**
1860
+ * @returns {Promise<CommonMessage>}
1861
+ * @throws {CommonMessageException}
1862
+ * @throws {ClientException}
1863
+ */
1864
+ async update(formId, payload) {
1865
+ const url = this.parser.url("/backend/form/$form_id<[0-9]+|^~>", {
1866
+ "form_id": formId
1867
+ });
1868
+ let request = {
1869
+ url,
1870
+ method: "PUT",
1871
+ headers: {
1872
+ "Content-Type": "application/json"
1873
+ },
1874
+ params: this.parser.query({}, []),
1875
+ data: payload
1876
+ };
1877
+ const response = await this.httpClient.request(request);
1878
+ if (response.ok) {
1879
+ return await response.json();
1880
+ }
1881
+ const statusCode = response.status;
1882
+ if (statusCode >= 0 && statusCode <= 999) {
1883
+ throw new CommonMessageException(await response.json());
1884
+ }
1885
+ throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1886
+ }
1887
+ };
1888
+
1889
+ // src/BackendGeneratorTag.ts
1890
+ var import_sdkgen_client30 = require("sdkgen-client");
1891
+ var import_sdkgen_client31 = require("sdkgen-client");
1892
+ var BackendGeneratorTag = class extends import_sdkgen_client30.TagAbstract {
1754
1893
  /**
1755
1894
  * @returns {Promise<CommonMessage>}
1756
1895
  * @throws {CommonMessageException}
@@ -1777,7 +1916,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client28.TagAbstract {
1777
1916
  if (statusCode >= 0 && statusCode <= 999) {
1778
1917
  throw new CommonMessageException(await response.json());
1779
1918
  }
1780
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1919
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1781
1920
  }
1782
1921
  /**
1783
1922
  * @returns {Promise<BackendGeneratorProviderChangelog>}
@@ -1805,7 +1944,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client28.TagAbstract {
1805
1944
  if (statusCode >= 0 && statusCode <= 999) {
1806
1945
  throw new CommonMessageException(await response.json());
1807
1946
  }
1808
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1947
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1809
1948
  }
1810
1949
  /**
1811
1950
  * @returns {Promise<BackendGeneratorIndexProviders>}
@@ -1828,7 +1967,7 @@ var BackendGeneratorTag = class extends import_sdkgen_client28.TagAbstract {
1828
1967
  if (statusCode >= 0 && statusCode <= 999) {
1829
1968
  throw new CommonMessageException(await response.json());
1830
1969
  }
1831
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1970
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1832
1971
  }
1833
1972
  /**
1834
1973
  * @returns {Promise<CommonFormContainer>}
@@ -1853,14 +1992,14 @@ var BackendGeneratorTag = class extends import_sdkgen_client28.TagAbstract {
1853
1992
  if (statusCode >= 0 && statusCode <= 999) {
1854
1993
  throw new CommonMessageException(await response.json());
1855
1994
  }
1856
- throw new import_sdkgen_client29.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1995
+ throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1857
1996
  }
1858
1997
  };
1859
1998
 
1860
1999
  // src/BackendIdentityTag.ts
1861
- var import_sdkgen_client30 = require("sdkgen-client");
1862
- var import_sdkgen_client31 = require("sdkgen-client");
1863
- var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
2000
+ var import_sdkgen_client32 = require("sdkgen-client");
2001
+ var import_sdkgen_client33 = require("sdkgen-client");
2002
+ var BackendIdentityTag = class extends import_sdkgen_client32.TagAbstract {
1864
2003
  /**
1865
2004
  * @returns {Promise<CommonMessage>}
1866
2005
  * @throws {CommonMessageException}
@@ -1885,7 +2024,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
1885
2024
  if (statusCode >= 0 && statusCode <= 999) {
1886
2025
  throw new CommonMessageException(await response.json());
1887
2026
  }
1888
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2027
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1889
2028
  }
1890
2029
  /**
1891
2030
  * @returns {Promise<CommonMessage>}
@@ -1910,7 +2049,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
1910
2049
  if (statusCode >= 0 && statusCode <= 999) {
1911
2050
  throw new CommonMessageException(await response.json());
1912
2051
  }
1913
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2052
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1914
2053
  }
1915
2054
  /**
1916
2055
  * @returns {Promise<BackendIdentity>}
@@ -1935,7 +2074,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
1935
2074
  if (statusCode >= 0 && statusCode <= 999) {
1936
2075
  throw new CommonMessageException(await response.json());
1937
2076
  }
1938
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2077
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1939
2078
  }
1940
2079
  /**
1941
2080
  * @returns {Promise<BackendIdentityCollection>}
@@ -1962,7 +2101,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
1962
2101
  if (statusCode >= 0 && statusCode <= 999) {
1963
2102
  throw new CommonMessageException(await response.json());
1964
2103
  }
1965
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2104
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1966
2105
  }
1967
2106
  /**
1968
2107
  * @returns {Promise<BackendIdentityIndex>}
@@ -1985,7 +2124,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
1985
2124
  if (statusCode >= 0 && statusCode <= 999) {
1986
2125
  throw new CommonMessageException(await response.json());
1987
2126
  }
1988
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2127
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
1989
2128
  }
1990
2129
  /**
1991
2130
  * @returns {Promise<CommonFormContainer>}
@@ -2010,7 +2149,7 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
2010
2149
  if (statusCode >= 0 && statusCode <= 999) {
2011
2150
  throw new CommonMessageException(await response.json());
2012
2151
  }
2013
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2152
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2014
2153
  }
2015
2154
  /**
2016
2155
  * @returns {Promise<CommonMessage>}
@@ -2038,14 +2177,14 @@ var BackendIdentityTag = class extends import_sdkgen_client30.TagAbstract {
2038
2177
  if (statusCode >= 0 && statusCode <= 999) {
2039
2178
  throw new CommonMessageException(await response.json());
2040
2179
  }
2041
- throw new import_sdkgen_client31.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2180
+ throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2042
2181
  }
2043
2182
  };
2044
2183
 
2045
2184
  // src/BackendLogTag.ts
2046
- var import_sdkgen_client32 = require("sdkgen-client");
2047
- var import_sdkgen_client33 = require("sdkgen-client");
2048
- var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2185
+ var import_sdkgen_client34 = require("sdkgen-client");
2186
+ var import_sdkgen_client35 = require("sdkgen-client");
2187
+ var BackendLogTag = class extends import_sdkgen_client34.TagAbstract {
2049
2188
  /**
2050
2189
  * @returns {Promise<BackendLog>}
2051
2190
  * @throws {CommonMessageException}
@@ -2069,14 +2208,14 @@ var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2069
2208
  if (statusCode >= 0 && statusCode <= 999) {
2070
2209
  throw new CommonMessageException(await response.json());
2071
2210
  }
2072
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2211
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2073
2212
  }
2074
2213
  /**
2075
2214
  * @returns {Promise<BackendLogCollection>}
2076
2215
  * @throws {CommonMessageException}
2077
2216
  * @throws {ClientException}
2078
2217
  */
2079
- async getAll(startIndex, count, search, from, to, routeId, appId, userId, ip, userAgent, method, path, header, body) {
2218
+ async getAll(startIndex, count, search, from, to, operationId, appId, userId, ip, userAgent, method, path, header, body) {
2080
2219
  const url = this.parser.url("/backend/log", {});
2081
2220
  let request = {
2082
2221
  url,
@@ -2088,7 +2227,7 @@ var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2088
2227
  "search": search,
2089
2228
  "from": from,
2090
2229
  "to": to,
2091
- "routeId": routeId,
2230
+ "operationId": operationId,
2092
2231
  "appId": appId,
2093
2232
  "userId": userId,
2094
2233
  "ip": ip,
@@ -2107,7 +2246,7 @@ var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2107
2246
  if (statusCode >= 0 && statusCode <= 999) {
2108
2247
  throw new CommonMessageException(await response.json());
2109
2248
  }
2110
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2249
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2111
2250
  }
2112
2251
  /**
2113
2252
  * @returns {Promise<BackendLogErrorCollection>}
@@ -2134,7 +2273,7 @@ var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2134
2273
  if (statusCode >= 0 && statusCode <= 999) {
2135
2274
  throw new CommonMessageException(await response.json());
2136
2275
  }
2137
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2276
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2138
2277
  }
2139
2278
  /**
2140
2279
  * @returns {Promise<BackendLogError>}
@@ -2159,14 +2298,14 @@ var BackendLogTag = class extends import_sdkgen_client32.TagAbstract {
2159
2298
  if (statusCode >= 0 && statusCode <= 999) {
2160
2299
  throw new CommonMessageException(await response.json());
2161
2300
  }
2162
- throw new import_sdkgen_client33.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2301
+ throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2163
2302
  }
2164
2303
  };
2165
2304
 
2166
2305
  // src/BackendMarketplaceActionTag.ts
2167
- var import_sdkgen_client34 = require("sdkgen-client");
2168
- var import_sdkgen_client35 = require("sdkgen-client");
2169
- var BackendMarketplaceActionTag = class extends import_sdkgen_client34.TagAbstract {
2306
+ var import_sdkgen_client36 = require("sdkgen-client");
2307
+ var import_sdkgen_client37 = require("sdkgen-client");
2308
+ var BackendMarketplaceActionTag = class extends import_sdkgen_client36.TagAbstract {
2170
2309
  /**
2171
2310
  * @returns {Promise<MarketplaceAction>}
2172
2311
  * @throws {CommonMessageException}
@@ -2191,7 +2330,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client34.TagAbstra
2191
2330
  if (statusCode >= 0 && statusCode <= 999) {
2192
2331
  throw new CommonMessageException(await response.json());
2193
2332
  }
2194
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2333
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2195
2334
  }
2196
2335
  /**
2197
2336
  * @returns {Promise<MarketplaceActionCollection>}
@@ -2217,7 +2356,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client34.TagAbstra
2217
2356
  if (statusCode >= 0 && statusCode <= 999) {
2218
2357
  throw new CommonMessageException(await response.json());
2219
2358
  }
2220
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2359
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2221
2360
  }
2222
2361
  /**
2223
2362
  * @returns {Promise<MarketplaceMessage>}
@@ -2243,7 +2382,7 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client34.TagAbstra
2243
2382
  if (statusCode >= 0 && statusCode <= 999) {
2244
2383
  throw new CommonMessageException(await response.json());
2245
2384
  }
2246
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2385
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2247
2386
  }
2248
2387
  /**
2249
2388
  * @returns {Promise<CommonMessage>}
@@ -2269,14 +2408,14 @@ var BackendMarketplaceActionTag = class extends import_sdkgen_client34.TagAbstra
2269
2408
  if (statusCode >= 0 && statusCode <= 999) {
2270
2409
  throw new CommonMessageException(await response.json());
2271
2410
  }
2272
- throw new import_sdkgen_client35.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2411
+ throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2273
2412
  }
2274
2413
  };
2275
2414
 
2276
2415
  // src/BackendMarketplaceAppTag.ts
2277
- var import_sdkgen_client36 = require("sdkgen-client");
2278
- var import_sdkgen_client37 = require("sdkgen-client");
2279
- var BackendMarketplaceAppTag = class extends import_sdkgen_client36.TagAbstract {
2416
+ var import_sdkgen_client38 = require("sdkgen-client");
2417
+ var import_sdkgen_client39 = require("sdkgen-client");
2418
+ var BackendMarketplaceAppTag = class extends import_sdkgen_client38.TagAbstract {
2280
2419
  /**
2281
2420
  * @returns {Promise<MarketplaceApp>}
2282
2421
  * @throws {CommonMessageException}
@@ -2301,7 +2440,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client36.TagAbstract
2301
2440
  if (statusCode >= 0 && statusCode <= 999) {
2302
2441
  throw new CommonMessageException(await response.json());
2303
2442
  }
2304
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2443
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2305
2444
  }
2306
2445
  /**
2307
2446
  * @returns {Promise<MarketplaceAppCollection>}
@@ -2327,7 +2466,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client36.TagAbstract
2327
2466
  if (statusCode >= 0 && statusCode <= 999) {
2328
2467
  throw new CommonMessageException(await response.json());
2329
2468
  }
2330
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2469
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2331
2470
  }
2332
2471
  /**
2333
2472
  * @returns {Promise<MarketplaceMessage>}
@@ -2353,7 +2492,7 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client36.TagAbstract
2353
2492
  if (statusCode >= 0 && statusCode <= 999) {
2354
2493
  throw new CommonMessageException(await response.json());
2355
2494
  }
2356
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2495
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2357
2496
  }
2358
2497
  /**
2359
2498
  * @returns {Promise<MarketplaceMessage>}
@@ -2379,13 +2518,13 @@ var BackendMarketplaceAppTag = class extends import_sdkgen_client36.TagAbstract
2379
2518
  if (statusCode >= 0 && statusCode <= 999) {
2380
2519
  throw new CommonMessageException(await response.json());
2381
2520
  }
2382
- throw new import_sdkgen_client37.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2521
+ throw new import_sdkgen_client39.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2383
2522
  }
2384
2523
  };
2385
2524
 
2386
2525
  // src/BackendMarketplaceTag.ts
2387
- var import_sdkgen_client38 = require("sdkgen-client");
2388
- var BackendMarketplaceTag = class extends import_sdkgen_client38.TagAbstract {
2526
+ var import_sdkgen_client40 = require("sdkgen-client");
2527
+ var BackendMarketplaceTag = class extends import_sdkgen_client40.TagAbstract {
2389
2528
  action() {
2390
2529
  return new BackendMarketplaceActionTag(
2391
2530
  this.httpClient,
@@ -2401,9 +2540,9 @@ var BackendMarketplaceTag = class extends import_sdkgen_client38.TagAbstract {
2401
2540
  };
2402
2541
 
2403
2542
  // src/BackendOperationTag.ts
2404
- var import_sdkgen_client39 = require("sdkgen-client");
2405
- var import_sdkgen_client40 = require("sdkgen-client");
2406
- var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2543
+ var import_sdkgen_client41 = require("sdkgen-client");
2544
+ var import_sdkgen_client42 = require("sdkgen-client");
2545
+ var BackendOperationTag = class extends import_sdkgen_client41.TagAbstract {
2407
2546
  /**
2408
2547
  * @returns {Promise<CommonMessage>}
2409
2548
  * @throws {CommonMessageException}
@@ -2428,7 +2567,7 @@ var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2428
2567
  if (statusCode >= 0 && statusCode <= 999) {
2429
2568
  throw new CommonMessageException(await response.json());
2430
2569
  }
2431
- throw new import_sdkgen_client40.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2570
+ throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2432
2571
  }
2433
2572
  /**
2434
2573
  * @returns {Promise<CommonMessage>}
@@ -2453,7 +2592,7 @@ var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2453
2592
  if (statusCode >= 0 && statusCode <= 999) {
2454
2593
  throw new CommonMessageException(await response.json());
2455
2594
  }
2456
- throw new import_sdkgen_client40.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2595
+ throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2457
2596
  }
2458
2597
  /**
2459
2598
  * @returns {Promise<BackendOperation>}
@@ -2478,7 +2617,7 @@ var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2478
2617
  if (statusCode >= 0 && statusCode <= 999) {
2479
2618
  throw new CommonMessageException(await response.json());
2480
2619
  }
2481
- throw new import_sdkgen_client40.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2620
+ throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2482
2621
  }
2483
2622
  /**
2484
2623
  * @returns {Promise<BackendOperationCollection>}
@@ -2505,7 +2644,7 @@ var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2505
2644
  if (statusCode >= 0 && statusCode <= 999) {
2506
2645
  throw new CommonMessageException(await response.json());
2507
2646
  }
2508
- throw new import_sdkgen_client40.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2647
+ throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2509
2648
  }
2510
2649
  /**
2511
2650
  * @returns {Promise<CommonMessage>}
@@ -2533,14 +2672,14 @@ var BackendOperationTag = class extends import_sdkgen_client39.TagAbstract {
2533
2672
  if (statusCode >= 0 && statusCode <= 999) {
2534
2673
  throw new CommonMessageException(await response.json());
2535
2674
  }
2536
- throw new import_sdkgen_client40.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2675
+ throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2537
2676
  }
2538
2677
  };
2539
2678
 
2540
2679
  // src/BackendPageTag.ts
2541
- var import_sdkgen_client41 = require("sdkgen-client");
2542
- var import_sdkgen_client42 = require("sdkgen-client");
2543
- var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2680
+ var import_sdkgen_client43 = require("sdkgen-client");
2681
+ var import_sdkgen_client44 = require("sdkgen-client");
2682
+ var BackendPageTag = class extends import_sdkgen_client43.TagAbstract {
2544
2683
  /**
2545
2684
  * @returns {Promise<CommonMessage>}
2546
2685
  * @throws {CommonMessageException}
@@ -2565,7 +2704,7 @@ var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2565
2704
  if (statusCode >= 0 && statusCode <= 999) {
2566
2705
  throw new CommonMessageException(await response.json());
2567
2706
  }
2568
- throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2707
+ throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2569
2708
  }
2570
2709
  /**
2571
2710
  * @returns {Promise<CommonMessage>}
@@ -2590,7 +2729,7 @@ var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2590
2729
  if (statusCode >= 0 && statusCode <= 999) {
2591
2730
  throw new CommonMessageException(await response.json());
2592
2731
  }
2593
- throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2732
+ throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2594
2733
  }
2595
2734
  /**
2596
2735
  * @returns {Promise<BackendPage>}
@@ -2615,7 +2754,7 @@ var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2615
2754
  if (statusCode >= 0 && statusCode <= 999) {
2616
2755
  throw new CommonMessageException(await response.json());
2617
2756
  }
2618
- throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2757
+ throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2619
2758
  }
2620
2759
  /**
2621
2760
  * @returns {Promise<BackendPageCollection>}
@@ -2642,7 +2781,7 @@ var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2642
2781
  if (statusCode >= 0 && statusCode <= 999) {
2643
2782
  throw new CommonMessageException(await response.json());
2644
2783
  }
2645
- throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2784
+ throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2646
2785
  }
2647
2786
  /**
2648
2787
  * @returns {Promise<CommonMessage>}
@@ -2670,14 +2809,14 @@ var BackendPageTag = class extends import_sdkgen_client41.TagAbstract {
2670
2809
  if (statusCode >= 0 && statusCode <= 999) {
2671
2810
  throw new CommonMessageException(await response.json());
2672
2811
  }
2673
- throw new import_sdkgen_client42.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2812
+ throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2674
2813
  }
2675
2814
  };
2676
2815
 
2677
2816
  // src/BackendPlanTag.ts
2678
- var import_sdkgen_client43 = require("sdkgen-client");
2679
- var import_sdkgen_client44 = require("sdkgen-client");
2680
- var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2817
+ var import_sdkgen_client45 = require("sdkgen-client");
2818
+ var import_sdkgen_client46 = require("sdkgen-client");
2819
+ var BackendPlanTag = class extends import_sdkgen_client45.TagAbstract {
2681
2820
  /**
2682
2821
  * @returns {Promise<CommonMessage>}
2683
2822
  * @throws {CommonMessageException}
@@ -2702,7 +2841,7 @@ var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2702
2841
  if (statusCode >= 0 && statusCode <= 999) {
2703
2842
  throw new CommonMessageException(await response.json());
2704
2843
  }
2705
- throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2844
+ throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2706
2845
  }
2707
2846
  /**
2708
2847
  * @returns {Promise<CommonMessage>}
@@ -2727,7 +2866,7 @@ var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2727
2866
  if (statusCode >= 0 && statusCode <= 999) {
2728
2867
  throw new CommonMessageException(await response.json());
2729
2868
  }
2730
- throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2869
+ throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2731
2870
  }
2732
2871
  /**
2733
2872
  * @returns {Promise<BackendPlan>}
@@ -2752,7 +2891,7 @@ var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2752
2891
  if (statusCode >= 0 && statusCode <= 999) {
2753
2892
  throw new CommonMessageException(await response.json());
2754
2893
  }
2755
- throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2894
+ throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2756
2895
  }
2757
2896
  /**
2758
2897
  * @returns {Promise<BackendPlanCollection>}
@@ -2779,7 +2918,7 @@ var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2779
2918
  if (statusCode >= 0 && statusCode <= 999) {
2780
2919
  throw new CommonMessageException(await response.json());
2781
2920
  }
2782
- throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2921
+ throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2783
2922
  }
2784
2923
  /**
2785
2924
  * @returns {Promise<CommonMessage>}
@@ -2807,14 +2946,14 @@ var BackendPlanTag = class extends import_sdkgen_client43.TagAbstract {
2807
2946
  if (statusCode >= 0 && statusCode <= 999) {
2808
2947
  throw new CommonMessageException(await response.json());
2809
2948
  }
2810
- throw new import_sdkgen_client44.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2949
+ throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2811
2950
  }
2812
2951
  };
2813
2952
 
2814
2953
  // src/BackendRateTag.ts
2815
- var import_sdkgen_client45 = require("sdkgen-client");
2816
- var import_sdkgen_client46 = require("sdkgen-client");
2817
- var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2954
+ var import_sdkgen_client47 = require("sdkgen-client");
2955
+ var import_sdkgen_client48 = require("sdkgen-client");
2956
+ var BackendRateTag = class extends import_sdkgen_client47.TagAbstract {
2818
2957
  /**
2819
2958
  * @returns {Promise<CommonMessage>}
2820
2959
  * @throws {CommonMessageException}
@@ -2839,7 +2978,7 @@ var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2839
2978
  if (statusCode >= 0 && statusCode <= 999) {
2840
2979
  throw new CommonMessageException(await response.json());
2841
2980
  }
2842
- throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2981
+ throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2843
2982
  }
2844
2983
  /**
2845
2984
  * @returns {Promise<CommonMessage>}
@@ -2864,7 +3003,7 @@ var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2864
3003
  if (statusCode >= 0 && statusCode <= 999) {
2865
3004
  throw new CommonMessageException(await response.json());
2866
3005
  }
2867
- throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3006
+ throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2868
3007
  }
2869
3008
  /**
2870
3009
  * @returns {Promise<BackendRate>}
@@ -2889,7 +3028,7 @@ var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2889
3028
  if (statusCode >= 0 && statusCode <= 999) {
2890
3029
  throw new CommonMessageException(await response.json());
2891
3030
  }
2892
- throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3031
+ throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2893
3032
  }
2894
3033
  /**
2895
3034
  * @returns {Promise<BackendRateCollection>}
@@ -2916,7 +3055,7 @@ var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2916
3055
  if (statusCode >= 0 && statusCode <= 999) {
2917
3056
  throw new CommonMessageException(await response.json());
2918
3057
  }
2919
- throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3058
+ throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2920
3059
  }
2921
3060
  /**
2922
3061
  * @returns {Promise<CommonMessage>}
@@ -2944,14 +3083,14 @@ var BackendRateTag = class extends import_sdkgen_client45.TagAbstract {
2944
3083
  if (statusCode >= 0 && statusCode <= 999) {
2945
3084
  throw new CommonMessageException(await response.json());
2946
3085
  }
2947
- throw new import_sdkgen_client46.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3086
+ throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2948
3087
  }
2949
3088
  };
2950
3089
 
2951
3090
  // src/BackendRoleTag.ts
2952
- var import_sdkgen_client47 = require("sdkgen-client");
2953
- var import_sdkgen_client48 = require("sdkgen-client");
2954
- var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
3091
+ var import_sdkgen_client49 = require("sdkgen-client");
3092
+ var import_sdkgen_client50 = require("sdkgen-client");
3093
+ var BackendRoleTag = class extends import_sdkgen_client49.TagAbstract {
2955
3094
  /**
2956
3095
  * @returns {Promise<CommonMessage>}
2957
3096
  * @throws {CommonMessageException}
@@ -2976,7 +3115,7 @@ var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
2976
3115
  if (statusCode >= 0 && statusCode <= 999) {
2977
3116
  throw new CommonMessageException(await response.json());
2978
3117
  }
2979
- throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3118
+ throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
2980
3119
  }
2981
3120
  /**
2982
3121
  * @returns {Promise<CommonMessage>}
@@ -3001,7 +3140,7 @@ var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
3001
3140
  if (statusCode >= 0 && statusCode <= 999) {
3002
3141
  throw new CommonMessageException(await response.json());
3003
3142
  }
3004
- throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3143
+ throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3005
3144
  }
3006
3145
  /**
3007
3146
  * @returns {Promise<BackendRole>}
@@ -3026,7 +3165,7 @@ var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
3026
3165
  if (statusCode >= 0 && statusCode <= 999) {
3027
3166
  throw new CommonMessageException(await response.json());
3028
3167
  }
3029
- throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3168
+ throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3030
3169
  }
3031
3170
  /**
3032
3171
  * @returns {Promise<BackendRoleCollection>}
@@ -3053,7 +3192,7 @@ var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
3053
3192
  if (statusCode >= 0 && statusCode <= 999) {
3054
3193
  throw new CommonMessageException(await response.json());
3055
3194
  }
3056
- throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3195
+ throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3057
3196
  }
3058
3197
  /**
3059
3198
  * @returns {Promise<CommonMessage>}
@@ -3081,14 +3220,14 @@ var BackendRoleTag = class extends import_sdkgen_client47.TagAbstract {
3081
3220
  if (statusCode >= 0 && statusCode <= 999) {
3082
3221
  throw new CommonMessageException(await response.json());
3083
3222
  }
3084
- throw new import_sdkgen_client48.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3223
+ throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3085
3224
  }
3086
3225
  };
3087
3226
 
3088
3227
  // src/BackendSchemaTag.ts
3089
- var import_sdkgen_client49 = require("sdkgen-client");
3090
- var import_sdkgen_client50 = require("sdkgen-client");
3091
- var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3228
+ var import_sdkgen_client51 = require("sdkgen-client");
3229
+ var import_sdkgen_client52 = require("sdkgen-client");
3230
+ var BackendSchemaTag = class extends import_sdkgen_client51.TagAbstract {
3092
3231
  /**
3093
3232
  * @returns {Promise<CommonMessage>}
3094
3233
  * @throws {CommonMessageException}
@@ -3113,7 +3252,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3113
3252
  if (statusCode >= 0 && statusCode <= 999) {
3114
3253
  throw new CommonMessageException(await response.json());
3115
3254
  }
3116
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3255
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3117
3256
  }
3118
3257
  /**
3119
3258
  * @returns {Promise<CommonMessage>}
@@ -3138,7 +3277,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3138
3277
  if (statusCode >= 0 && statusCode <= 999) {
3139
3278
  throw new CommonMessageException(await response.json());
3140
3279
  }
3141
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3280
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3142
3281
  }
3143
3282
  /**
3144
3283
  * @returns {Promise<BackendSchema>}
@@ -3163,7 +3302,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3163
3302
  if (statusCode >= 0 && statusCode <= 999) {
3164
3303
  throw new CommonMessageException(await response.json());
3165
3304
  }
3166
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3305
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3167
3306
  }
3168
3307
  /**
3169
3308
  * @returns {Promise<BackendSchemaCollection>}
@@ -3190,7 +3329,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3190
3329
  if (statusCode >= 0 && statusCode <= 999) {
3191
3330
  throw new CommonMessageException(await response.json());
3192
3331
  }
3193
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3332
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3194
3333
  }
3195
3334
  /**
3196
3335
  * @returns {Promise<BackendSchemaPreviewResponse>}
@@ -3215,7 +3354,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3215
3354
  if (statusCode >= 0 && statusCode <= 999) {
3216
3355
  throw new CommonMessageException(await response.json());
3217
3356
  }
3218
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3357
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3219
3358
  }
3220
3359
  /**
3221
3360
  * @returns {Promise<CommonMessage>}
@@ -3243,7 +3382,7 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3243
3382
  if (statusCode >= 0 && statusCode <= 999) {
3244
3383
  throw new CommonMessageException(await response.json());
3245
3384
  }
3246
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3385
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3247
3386
  }
3248
3387
  /**
3249
3388
  * @returns {Promise<CommonMessage>}
@@ -3271,14 +3410,14 @@ var BackendSchemaTag = class extends import_sdkgen_client49.TagAbstract {
3271
3410
  if (statusCode >= 0 && statusCode <= 999) {
3272
3411
  throw new CommonMessageException(await response.json());
3273
3412
  }
3274
- throw new import_sdkgen_client50.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3413
+ throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3275
3414
  }
3276
3415
  };
3277
3416
 
3278
3417
  // src/BackendScopeTag.ts
3279
- var import_sdkgen_client51 = require("sdkgen-client");
3280
- var import_sdkgen_client52 = require("sdkgen-client");
3281
- var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3418
+ var import_sdkgen_client53 = require("sdkgen-client");
3419
+ var import_sdkgen_client54 = require("sdkgen-client");
3420
+ var BackendScopeTag = class extends import_sdkgen_client53.TagAbstract {
3282
3421
  /**
3283
3422
  * @returns {Promise<CommonMessage>}
3284
3423
  * @throws {CommonMessageException}
@@ -3303,7 +3442,7 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3303
3442
  if (statusCode >= 0 && statusCode <= 999) {
3304
3443
  throw new CommonMessageException(await response.json());
3305
3444
  }
3306
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3445
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3307
3446
  }
3308
3447
  /**
3309
3448
  * @returns {Promise<CommonMessage>}
@@ -3328,7 +3467,7 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3328
3467
  if (statusCode >= 0 && statusCode <= 999) {
3329
3468
  throw new CommonMessageException(await response.json());
3330
3469
  }
3331
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3470
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3332
3471
  }
3333
3472
  /**
3334
3473
  * @returns {Promise<BackendScope>}
@@ -3353,7 +3492,7 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3353
3492
  if (statusCode >= 0 && statusCode <= 999) {
3354
3493
  throw new CommonMessageException(await response.json());
3355
3494
  }
3356
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3495
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3357
3496
  }
3358
3497
  /**
3359
3498
  * @returns {Promise<BackendScopeCollection>}
@@ -3380,7 +3519,7 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3380
3519
  if (statusCode >= 0 && statusCode <= 999) {
3381
3520
  throw new CommonMessageException(await response.json());
3382
3521
  }
3383
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3522
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3384
3523
  }
3385
3524
  /**
3386
3525
  * @returns {Promise<BackendScopeCategories>}
@@ -3403,7 +3542,7 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3403
3542
  if (statusCode >= 0 && statusCode <= 999) {
3404
3543
  throw new CommonMessageException(await response.json());
3405
3544
  }
3406
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3545
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3407
3546
  }
3408
3547
  /**
3409
3548
  * @returns {Promise<CommonMessage>}
@@ -3431,14 +3570,14 @@ var BackendScopeTag = class extends import_sdkgen_client51.TagAbstract {
3431
3570
  if (statusCode >= 0 && statusCode <= 999) {
3432
3571
  throw new CommonMessageException(await response.json());
3433
3572
  }
3434
- throw new import_sdkgen_client52.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3573
+ throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3435
3574
  }
3436
3575
  };
3437
3576
 
3438
3577
  // src/BackendSdkTag.ts
3439
- var import_sdkgen_client53 = require("sdkgen-client");
3440
- var import_sdkgen_client54 = require("sdkgen-client");
3441
- var BackendSdkTag = class extends import_sdkgen_client53.TagAbstract {
3578
+ var import_sdkgen_client55 = require("sdkgen-client");
3579
+ var import_sdkgen_client56 = require("sdkgen-client");
3580
+ var BackendSdkTag = class extends import_sdkgen_client55.TagAbstract {
3442
3581
  /**
3443
3582
  * @returns {Promise<BackendSdkMessage>}
3444
3583
  * @throws {CommonMessageException}
@@ -3463,7 +3602,7 @@ var BackendSdkTag = class extends import_sdkgen_client53.TagAbstract {
3463
3602
  if (statusCode >= 0 && statusCode <= 999) {
3464
3603
  throw new CommonMessageException(await response.json());
3465
3604
  }
3466
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3605
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3467
3606
  }
3468
3607
  /**
3469
3608
  * @returns {Promise<BackendSdkResponse>}
@@ -3486,14 +3625,14 @@ var BackendSdkTag = class extends import_sdkgen_client53.TagAbstract {
3486
3625
  if (statusCode >= 0 && statusCode <= 999) {
3487
3626
  throw new CommonMessageException(await response.json());
3488
3627
  }
3489
- throw new import_sdkgen_client54.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3628
+ throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3490
3629
  }
3491
3630
  };
3492
3631
 
3493
3632
  // src/BackendStatisticTag.ts
3494
- var import_sdkgen_client55 = require("sdkgen-client");
3495
- var import_sdkgen_client56 = require("sdkgen-client");
3496
- var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3633
+ var import_sdkgen_client57 = require("sdkgen-client");
3634
+ var import_sdkgen_client58 = require("sdkgen-client");
3635
+ var BackendStatisticTag = class extends import_sdkgen_client57.TagAbstract {
3497
3636
  /**
3498
3637
  * @returns {Promise<BackendStatisticChart>}
3499
3638
  * @throws {CommonMessageException}
@@ -3530,7 +3669,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3530
3669
  if (statusCode >= 0 && statusCode <= 999) {
3531
3670
  throw new CommonMessageException(await response.json());
3532
3671
  }
3533
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3672
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3534
3673
  }
3535
3674
  /**
3536
3675
  * @returns {Promise<BackendStatisticCount>}
@@ -3568,7 +3707,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3568
3707
  if (statusCode >= 0 && statusCode <= 999) {
3569
3708
  throw new CommonMessageException(await response.json());
3570
3709
  }
3571
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3710
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3572
3711
  }
3573
3712
  /**
3574
3713
  * @returns {Promise<BackendStatisticChart>}
@@ -3606,7 +3745,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3606
3745
  if (statusCode >= 0 && statusCode <= 999) {
3607
3746
  throw new CommonMessageException(await response.json());
3608
3747
  }
3609
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3748
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3610
3749
  }
3611
3750
  /**
3612
3751
  * @returns {Promise<BackendStatisticChart>}
@@ -3644,7 +3783,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3644
3783
  if (statusCode >= 0 && statusCode <= 999) {
3645
3784
  throw new CommonMessageException(await response.json());
3646
3785
  }
3647
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3786
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3648
3787
  }
3649
3788
  /**
3650
3789
  * @returns {Promise<BackendStatisticChart>}
@@ -3682,7 +3821,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3682
3821
  if (statusCode >= 0 && statusCode <= 999) {
3683
3822
  throw new CommonMessageException(await response.json());
3684
3823
  }
3685
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3824
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3686
3825
  }
3687
3826
  /**
3688
3827
  * @returns {Promise<BackendStatisticChart>}
@@ -3720,7 +3859,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3720
3859
  if (statusCode >= 0 && statusCode <= 999) {
3721
3860
  throw new CommonMessageException(await response.json());
3722
3861
  }
3723
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3862
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3724
3863
  }
3725
3864
  /**
3726
3865
  * @returns {Promise<BackendStatisticChart>}
@@ -3758,7 +3897,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3758
3897
  if (statusCode >= 0 && statusCode <= 999) {
3759
3898
  throw new CommonMessageException(await response.json());
3760
3899
  }
3761
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3900
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3762
3901
  }
3763
3902
  /**
3764
3903
  * @returns {Promise<BackendStatisticChart>}
@@ -3796,7 +3935,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3796
3935
  if (statusCode >= 0 && statusCode <= 999) {
3797
3936
  throw new CommonMessageException(await response.json());
3798
3937
  }
3799
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3938
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3800
3939
  }
3801
3940
  /**
3802
3941
  * @returns {Promise<BackendStatisticChart>}
@@ -3834,7 +3973,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3834
3973
  if (statusCode >= 0 && statusCode <= 999) {
3835
3974
  throw new CommonMessageException(await response.json());
3836
3975
  }
3837
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3976
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3838
3977
  }
3839
3978
  /**
3840
3979
  * @returns {Promise<BackendStatisticChart>}
@@ -3857,7 +3996,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3857
3996
  if (statusCode >= 0 && statusCode <= 999) {
3858
3997
  throw new CommonMessageException(await response.json());
3859
3998
  }
3860
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3999
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3861
4000
  }
3862
4001
  /**
3863
4002
  * @returns {Promise<BackendStatisticChart>}
@@ -3895,7 +4034,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3895
4034
  if (statusCode >= 0 && statusCode <= 999) {
3896
4035
  throw new CommonMessageException(await response.json());
3897
4036
  }
3898
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4037
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3899
4038
  }
3900
4039
  /**
3901
4040
  * @returns {Promise<BackendStatisticChart>}
@@ -3933,7 +4072,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3933
4072
  if (statusCode >= 0 && statusCode <= 999) {
3934
4073
  throw new CommonMessageException(await response.json());
3935
4074
  }
3936
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4075
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3937
4076
  }
3938
4077
  /**
3939
4078
  * @returns {Promise<BackendStatisticChart>}
@@ -3971,7 +4110,7 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
3971
4110
  if (statusCode >= 0 && statusCode <= 999) {
3972
4111
  throw new CommonMessageException(await response.json());
3973
4112
  }
3974
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4113
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
3975
4114
  }
3976
4115
  /**
3977
4116
  * @returns {Promise<BackendStatisticChart>}
@@ -4009,17 +4148,17 @@ var BackendStatisticTag = class extends import_sdkgen_client55.TagAbstract {
4009
4148
  if (statusCode >= 0 && statusCode <= 999) {
4010
4149
  throw new CommonMessageException(await response.json());
4011
4150
  }
4012
- throw new import_sdkgen_client56.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4151
+ throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4013
4152
  }
4014
4153
  };
4015
4154
 
4016
4155
  // src/BackendTag.ts
4017
- var import_sdkgen_client71 = require("sdkgen-client");
4156
+ var import_sdkgen_client73 = require("sdkgen-client");
4018
4157
 
4019
4158
  // src/BackendTenantTag.ts
4020
- var import_sdkgen_client57 = require("sdkgen-client");
4021
- var import_sdkgen_client58 = require("sdkgen-client");
4022
- var BackendTenantTag = class extends import_sdkgen_client57.TagAbstract {
4159
+ var import_sdkgen_client59 = require("sdkgen-client");
4160
+ var import_sdkgen_client60 = require("sdkgen-client");
4161
+ var BackendTenantTag = class extends import_sdkgen_client59.TagAbstract {
4023
4162
  /**
4024
4163
  * @returns {Promise<CommonMessage>}
4025
4164
  * @throws {CommonMessageException}
@@ -4043,7 +4182,7 @@ var BackendTenantTag = class extends import_sdkgen_client57.TagAbstract {
4043
4182
  if (statusCode >= 0 && statusCode <= 999) {
4044
4183
  throw new CommonMessageException(await response.json());
4045
4184
  }
4046
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4185
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4047
4186
  }
4048
4187
  /**
4049
4188
  * @returns {Promise<CommonMessage>}
@@ -4068,14 +4207,14 @@ var BackendTenantTag = class extends import_sdkgen_client57.TagAbstract {
4068
4207
  if (statusCode >= 0 && statusCode <= 999) {
4069
4208
  throw new CommonMessageException(await response.json());
4070
4209
  }
4071
- throw new import_sdkgen_client58.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4210
+ throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4072
4211
  }
4073
4212
  };
4074
4213
 
4075
4214
  // src/BackendTestTag.ts
4076
- var import_sdkgen_client59 = require("sdkgen-client");
4077
- var import_sdkgen_client60 = require("sdkgen-client");
4078
- var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4215
+ var import_sdkgen_client61 = require("sdkgen-client");
4216
+ var import_sdkgen_client62 = require("sdkgen-client");
4217
+ var BackendTestTag = class extends import_sdkgen_client61.TagAbstract {
4079
4218
  /**
4080
4219
  * @returns {Promise<BackendTest>}
4081
4220
  * @throws {CommonMessageException}
@@ -4099,7 +4238,7 @@ var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4099
4238
  if (statusCode >= 0 && statusCode <= 999) {
4100
4239
  throw new CommonMessageException(await response.json());
4101
4240
  }
4102
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4241
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4103
4242
  }
4104
4243
  /**
4105
4244
  * @returns {Promise<BackendTestCollection>}
@@ -4126,7 +4265,7 @@ var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4126
4265
  if (statusCode >= 0 && statusCode <= 999) {
4127
4266
  throw new CommonMessageException(await response.json());
4128
4267
  }
4129
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4268
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4130
4269
  }
4131
4270
  /**
4132
4271
  * @returns {Promise<CommonMessage>}
@@ -4149,7 +4288,7 @@ var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4149
4288
  if (statusCode >= 0 && statusCode <= 999) {
4150
4289
  throw new CommonMessageException(await response.json());
4151
4290
  }
4152
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4291
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4153
4292
  }
4154
4293
  /**
4155
4294
  * @returns {Promise<CommonMessage>}
@@ -4172,7 +4311,7 @@ var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4172
4311
  if (statusCode >= 0 && statusCode <= 999) {
4173
4312
  throw new CommonMessageException(await response.json());
4174
4313
  }
4175
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4314
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4176
4315
  }
4177
4316
  /**
4178
4317
  * @returns {Promise<CommonMessage>}
@@ -4200,14 +4339,14 @@ var BackendTestTag = class extends import_sdkgen_client59.TagAbstract {
4200
4339
  if (statusCode >= 0 && statusCode <= 999) {
4201
4340
  throw new CommonMessageException(await response.json());
4202
4341
  }
4203
- throw new import_sdkgen_client60.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4342
+ throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4204
4343
  }
4205
4344
  };
4206
4345
 
4207
4346
  // src/BackendTokenTag.ts
4208
- var import_sdkgen_client61 = require("sdkgen-client");
4209
- var import_sdkgen_client62 = require("sdkgen-client");
4210
- var BackendTokenTag = class extends import_sdkgen_client61.TagAbstract {
4347
+ var import_sdkgen_client63 = require("sdkgen-client");
4348
+ var import_sdkgen_client64 = require("sdkgen-client");
4349
+ var BackendTokenTag = class extends import_sdkgen_client63.TagAbstract {
4211
4350
  /**
4212
4351
  * @returns {Promise<BackendToken>}
4213
4352
  * @throws {CommonMessageException}
@@ -4231,7 +4370,7 @@ var BackendTokenTag = class extends import_sdkgen_client61.TagAbstract {
4231
4370
  if (statusCode >= 0 && statusCode <= 999) {
4232
4371
  throw new CommonMessageException(await response.json());
4233
4372
  }
4234
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4373
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4235
4374
  }
4236
4375
  /**
4237
4376
  * @returns {Promise<BackendTokenCollection>}
@@ -4265,14 +4404,14 @@ var BackendTokenTag = class extends import_sdkgen_client61.TagAbstract {
4265
4404
  if (statusCode >= 0 && statusCode <= 999) {
4266
4405
  throw new CommonMessageException(await response.json());
4267
4406
  }
4268
- throw new import_sdkgen_client62.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4407
+ throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4269
4408
  }
4270
4409
  };
4271
4410
 
4272
4411
  // src/BackendTransactionTag.ts
4273
- var import_sdkgen_client63 = require("sdkgen-client");
4274
- var import_sdkgen_client64 = require("sdkgen-client");
4275
- var BackendTransactionTag = class extends import_sdkgen_client63.TagAbstract {
4412
+ var import_sdkgen_client65 = require("sdkgen-client");
4413
+ var import_sdkgen_client66 = require("sdkgen-client");
4414
+ var BackendTransactionTag = class extends import_sdkgen_client65.TagAbstract {
4276
4415
  /**
4277
4416
  * @returns {Promise<BackendTransaction>}
4278
4417
  * @throws {CommonMessageException}
@@ -4296,7 +4435,7 @@ var BackendTransactionTag = class extends import_sdkgen_client63.TagAbstract {
4296
4435
  if (statusCode >= 0 && statusCode <= 999) {
4297
4436
  throw new CommonMessageException(await response.json());
4298
4437
  }
4299
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4438
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4300
4439
  }
4301
4440
  /**
4302
4441
  * @returns {Promise<BackendTransactionCollection>}
@@ -4330,14 +4469,14 @@ var BackendTransactionTag = class extends import_sdkgen_client63.TagAbstract {
4330
4469
  if (statusCode >= 0 && statusCode <= 999) {
4331
4470
  throw new CommonMessageException(await response.json());
4332
4471
  }
4333
- throw new import_sdkgen_client64.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4472
+ throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4334
4473
  }
4335
4474
  };
4336
4475
 
4337
4476
  // src/BackendTrashTag.ts
4338
- var import_sdkgen_client65 = require("sdkgen-client");
4339
- var import_sdkgen_client66 = require("sdkgen-client");
4340
- var BackendTrashTag = class extends import_sdkgen_client65.TagAbstract {
4477
+ var import_sdkgen_client67 = require("sdkgen-client");
4478
+ var import_sdkgen_client68 = require("sdkgen-client");
4479
+ var BackendTrashTag = class extends import_sdkgen_client67.TagAbstract {
4341
4480
  /**
4342
4481
  * @returns {Promise<BackendTrashDataCollection>}
4343
4482
  * @throws {CommonMessageException}
@@ -4365,7 +4504,7 @@ var BackendTrashTag = class extends import_sdkgen_client65.TagAbstract {
4365
4504
  if (statusCode >= 0 && statusCode <= 999) {
4366
4505
  throw new CommonMessageException(await response.json());
4367
4506
  }
4368
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4507
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4369
4508
  }
4370
4509
  /**
4371
4510
  * @returns {Promise<BackendTrashTypes>}
@@ -4388,7 +4527,7 @@ var BackendTrashTag = class extends import_sdkgen_client65.TagAbstract {
4388
4527
  if (statusCode >= 0 && statusCode <= 999) {
4389
4528
  throw new CommonMessageException(await response.json());
4390
4529
  }
4391
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4530
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4392
4531
  }
4393
4532
  /**
4394
4533
  * @returns {Promise<CommonMessage>}
@@ -4416,14 +4555,14 @@ var BackendTrashTag = class extends import_sdkgen_client65.TagAbstract {
4416
4555
  if (statusCode >= 0 && statusCode <= 999) {
4417
4556
  throw new CommonMessageException(await response.json());
4418
4557
  }
4419
- throw new import_sdkgen_client66.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4558
+ throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4420
4559
  }
4421
4560
  };
4422
4561
 
4423
4562
  // src/BackendUserTag.ts
4424
- var import_sdkgen_client67 = require("sdkgen-client");
4425
- var import_sdkgen_client68 = require("sdkgen-client");
4426
- var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4563
+ var import_sdkgen_client69 = require("sdkgen-client");
4564
+ var import_sdkgen_client70 = require("sdkgen-client");
4565
+ var BackendUserTag = class extends import_sdkgen_client69.TagAbstract {
4427
4566
  /**
4428
4567
  * @returns {Promise<CommonMessage>}
4429
4568
  * @throws {CommonMessageException}
@@ -4448,7 +4587,7 @@ var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4448
4587
  if (statusCode >= 0 && statusCode <= 999) {
4449
4588
  throw new CommonMessageException(await response.json());
4450
4589
  }
4451
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4590
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4452
4591
  }
4453
4592
  /**
4454
4593
  * @returns {Promise<CommonMessage>}
@@ -4473,7 +4612,7 @@ var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4473
4612
  if (statusCode >= 0 && statusCode <= 999) {
4474
4613
  throw new CommonMessageException(await response.json());
4475
4614
  }
4476
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4615
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4477
4616
  }
4478
4617
  /**
4479
4618
  * @returns {Promise<BackendUser>}
@@ -4498,7 +4637,7 @@ var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4498
4637
  if (statusCode >= 0 && statusCode <= 999) {
4499
4638
  throw new CommonMessageException(await response.json());
4500
4639
  }
4501
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4640
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4502
4641
  }
4503
4642
  /**
4504
4643
  * @returns {Promise<BackendUserCollection>}
@@ -4525,7 +4664,7 @@ var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4525
4664
  if (statusCode >= 0 && statusCode <= 999) {
4526
4665
  throw new CommonMessageException(await response.json());
4527
4666
  }
4528
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4667
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4529
4668
  }
4530
4669
  /**
4531
4670
  * @returns {Promise<CommonMessage>}
@@ -4553,14 +4692,14 @@ var BackendUserTag = class extends import_sdkgen_client67.TagAbstract {
4553
4692
  if (statusCode >= 0 && statusCode <= 999) {
4554
4693
  throw new CommonMessageException(await response.json());
4555
4694
  }
4556
- throw new import_sdkgen_client68.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4695
+ throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4557
4696
  }
4558
4697
  };
4559
4698
 
4560
4699
  // src/BackendWebhookTag.ts
4561
- var import_sdkgen_client69 = require("sdkgen-client");
4562
- var import_sdkgen_client70 = require("sdkgen-client");
4563
- var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4700
+ var import_sdkgen_client71 = require("sdkgen-client");
4701
+ var import_sdkgen_client72 = require("sdkgen-client");
4702
+ var BackendWebhookTag = class extends import_sdkgen_client71.TagAbstract {
4564
4703
  /**
4565
4704
  * @returns {Promise<CommonMessage>}
4566
4705
  * @throws {CommonMessageException}
@@ -4585,7 +4724,7 @@ var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4585
4724
  if (statusCode >= 0 && statusCode <= 999) {
4586
4725
  throw new CommonMessageException(await response.json());
4587
4726
  }
4588
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4727
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4589
4728
  }
4590
4729
  /**
4591
4730
  * @returns {Promise<CommonMessage>}
@@ -4610,7 +4749,7 @@ var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4610
4749
  if (statusCode >= 0 && statusCode <= 999) {
4611
4750
  throw new CommonMessageException(await response.json());
4612
4751
  }
4613
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4752
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4614
4753
  }
4615
4754
  /**
4616
4755
  * @returns {Promise<BackendWebhook>}
@@ -4635,7 +4774,7 @@ var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4635
4774
  if (statusCode >= 0 && statusCode <= 999) {
4636
4775
  throw new CommonMessageException(await response.json());
4637
4776
  }
4638
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4777
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4639
4778
  }
4640
4779
  /**
4641
4780
  * @returns {Promise<BackendWebhookCollection>}
@@ -4662,7 +4801,7 @@ var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4662
4801
  if (statusCode >= 0 && statusCode <= 999) {
4663
4802
  throw new CommonMessageException(await response.json());
4664
4803
  }
4665
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4804
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4666
4805
  }
4667
4806
  /**
4668
4807
  * @returns {Promise<CommonMessage>}
@@ -4690,12 +4829,12 @@ var BackendWebhookTag = class extends import_sdkgen_client69.TagAbstract {
4690
4829
  if (statusCode >= 0 && statusCode <= 999) {
4691
4830
  throw new CommonMessageException(await response.json());
4692
4831
  }
4693
- throw new import_sdkgen_client70.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4832
+ throw new import_sdkgen_client72.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4694
4833
  }
4695
4834
  };
4696
4835
 
4697
4836
  // src/BackendTag.ts
4698
- var BackendTag = class extends import_sdkgen_client71.TagAbstract {
4837
+ var BackendTag = class extends import_sdkgen_client73.TagAbstract {
4699
4838
  account() {
4700
4839
  return new BackendAccountTag(
4701
4840
  this.httpClient,
@@ -4768,6 +4907,12 @@ var BackendTag = class extends import_sdkgen_client71.TagAbstract {
4768
4907
  this.parser
4769
4908
  );
4770
4909
  }
4910
+ form() {
4911
+ return new BackendFormTag(
4912
+ this.httpClient,
4913
+ this.parser
4914
+ );
4915
+ }
4771
4916
  generator() {
4772
4917
  return new BackendGeneratorTag(
4773
4918
  this.httpClient,
@@ -4891,16 +5036,16 @@ var BackendTag = class extends import_sdkgen_client71.TagAbstract {
4891
5036
  };
4892
5037
 
4893
5038
  // src/Client.ts
4894
- var import_sdkgen_client106 = require("sdkgen-client");
4895
- var import_sdkgen_client107 = require("sdkgen-client");
5039
+ var import_sdkgen_client110 = require("sdkgen-client");
5040
+ var import_sdkgen_client111 = require("sdkgen-client");
4896
5041
 
4897
5042
  // src/ConsumerTag.ts
4898
- var import_sdkgen_client98 = require("sdkgen-client");
5043
+ var import_sdkgen_client102 = require("sdkgen-client");
4899
5044
 
4900
5045
  // src/ConsumerAccountTag.ts
4901
- var import_sdkgen_client72 = require("sdkgen-client");
4902
- var import_sdkgen_client73 = require("sdkgen-client");
4903
- var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5046
+ var import_sdkgen_client74 = require("sdkgen-client");
5047
+ var import_sdkgen_client75 = require("sdkgen-client");
5048
+ var ConsumerAccountTag = class extends import_sdkgen_client74.TagAbstract {
4904
5049
  /**
4905
5050
  * @returns {Promise<CommonMessage>}
4906
5051
  * @throws {CommonMessageException}
@@ -4925,7 +5070,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
4925
5070
  if (statusCode >= 0 && statusCode <= 999) {
4926
5071
  throw new CommonMessageException(await response.json());
4927
5072
  }
4928
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5073
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4929
5074
  }
4930
5075
  /**
4931
5076
  * @returns {Promise<ConsumerAuthorizeResponse>}
@@ -4951,7 +5096,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
4951
5096
  if (statusCode >= 0 && statusCode <= 999) {
4952
5097
  throw new CommonMessageException(await response.json());
4953
5098
  }
4954
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5099
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4955
5100
  }
4956
5101
  /**
4957
5102
  * @returns {Promise<CommonMessage>}
@@ -4977,7 +5122,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
4977
5122
  if (statusCode >= 0 && statusCode <= 999) {
4978
5123
  throw new CommonMessageException(await response.json());
4979
5124
  }
4980
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5125
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
4981
5126
  }
4982
5127
  /**
4983
5128
  * @returns {Promise<CommonMessage>}
@@ -5003,7 +5148,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5003
5148
  if (statusCode >= 0 && statusCode <= 999) {
5004
5149
  throw new CommonMessageException(await response.json());
5005
5150
  }
5006
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5151
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5007
5152
  }
5008
5153
  /**
5009
5154
  * @returns {Promise<ConsumerUserAccount>}
@@ -5026,7 +5171,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5026
5171
  if (statusCode >= 0 && statusCode <= 999) {
5027
5172
  throw new CommonMessageException(await response.json());
5028
5173
  }
5029
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5174
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5030
5175
  }
5031
5176
  /**
5032
5177
  * @returns {Promise<ConsumerAuthorizeMeta>}
@@ -5049,7 +5194,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5049
5194
  if (statusCode >= 0 && statusCode <= 999) {
5050
5195
  throw new CommonMessageException(await response.json());
5051
5196
  }
5052
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5197
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5053
5198
  }
5054
5199
  /**
5055
5200
  * @returns {Promise<ConsumerUserJWT>}
@@ -5075,7 +5220,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5075
5220
  if (statusCode >= 0 && statusCode <= 999) {
5076
5221
  throw new CommonMessageException(await response.json());
5077
5222
  }
5078
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5223
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5079
5224
  }
5080
5225
  /**
5081
5226
  * @returns {Promise<ConsumerUserJWT>}
@@ -5101,7 +5246,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5101
5246
  if (statusCode >= 0 && statusCode <= 999) {
5102
5247
  throw new CommonMessageException(await response.json());
5103
5248
  }
5104
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5249
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5105
5250
  }
5106
5251
  /**
5107
5252
  * @returns {Promise<CommonMessage>}
@@ -5127,7 +5272,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5127
5272
  if (statusCode >= 0 && statusCode <= 999) {
5128
5273
  throw new CommonMessageException(await response.json());
5129
5274
  }
5130
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5275
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5131
5276
  }
5132
5277
  /**
5133
5278
  * @returns {Promise<CommonMessage>}
@@ -5153,7 +5298,7 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5153
5298
  if (statusCode >= 0 && statusCode <= 999) {
5154
5299
  throw new CommonMessageException(await response.json());
5155
5300
  }
5156
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5301
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5157
5302
  }
5158
5303
  /**
5159
5304
  * @returns {Promise<CommonMessage>}
@@ -5179,14 +5324,14 @@ var ConsumerAccountTag = class extends import_sdkgen_client72.TagAbstract {
5179
5324
  if (statusCode >= 0 && statusCode <= 999) {
5180
5325
  throw new CommonMessageException(await response.json());
5181
5326
  }
5182
- throw new import_sdkgen_client73.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5327
+ throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5183
5328
  }
5184
5329
  };
5185
5330
 
5186
5331
  // src/ConsumerAppTag.ts
5187
- var import_sdkgen_client74 = require("sdkgen-client");
5188
- var import_sdkgen_client75 = require("sdkgen-client");
5189
- var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5332
+ var import_sdkgen_client76 = require("sdkgen-client");
5333
+ var import_sdkgen_client77 = require("sdkgen-client");
5334
+ var ConsumerAppTag = class extends import_sdkgen_client76.TagAbstract {
5190
5335
  /**
5191
5336
  * @returns {Promise<CommonMessage>}
5192
5337
  * @throws {CommonMessageException}
@@ -5211,7 +5356,7 @@ var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5211
5356
  if (statusCode >= 0 && statusCode <= 999) {
5212
5357
  throw new CommonMessageException(await response.json());
5213
5358
  }
5214
- throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5359
+ throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5215
5360
  }
5216
5361
  /**
5217
5362
  * @returns {Promise<CommonMessage>}
@@ -5236,7 +5381,7 @@ var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5236
5381
  if (statusCode >= 0 && statusCode <= 999) {
5237
5382
  throw new CommonMessageException(await response.json());
5238
5383
  }
5239
- throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5384
+ throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5240
5385
  }
5241
5386
  /**
5242
5387
  * @returns {Promise<ConsumerApp>}
@@ -5261,7 +5406,7 @@ var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5261
5406
  if (statusCode >= 0 && statusCode <= 999) {
5262
5407
  throw new CommonMessageException(await response.json());
5263
5408
  }
5264
- throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5409
+ throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5265
5410
  }
5266
5411
  /**
5267
5412
  * @returns {Promise<ConsumerAppCollection>}
@@ -5288,7 +5433,7 @@ var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5288
5433
  if (statusCode >= 0 && statusCode <= 999) {
5289
5434
  throw new CommonMessageException(await response.json());
5290
5435
  }
5291
- throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5436
+ throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5292
5437
  }
5293
5438
  /**
5294
5439
  * @returns {Promise<CommonMessage>}
@@ -5316,14 +5461,14 @@ var ConsumerAppTag = class extends import_sdkgen_client74.TagAbstract {
5316
5461
  if (statusCode >= 0 && statusCode <= 999) {
5317
5462
  throw new CommonMessageException(await response.json());
5318
5463
  }
5319
- throw new import_sdkgen_client75.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5464
+ throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5320
5465
  }
5321
5466
  };
5322
5467
 
5323
5468
  // src/ConsumerEventTag.ts
5324
- var import_sdkgen_client76 = require("sdkgen-client");
5325
- var import_sdkgen_client77 = require("sdkgen-client");
5326
- var ConsumerEventTag = class extends import_sdkgen_client76.TagAbstract {
5469
+ var import_sdkgen_client78 = require("sdkgen-client");
5470
+ var import_sdkgen_client79 = require("sdkgen-client");
5471
+ var ConsumerEventTag = class extends import_sdkgen_client78.TagAbstract {
5327
5472
  /**
5328
5473
  * @returns {Promise<ConsumerEvent>}
5329
5474
  * @throws {CommonMessageException}
@@ -5347,7 +5492,7 @@ var ConsumerEventTag = class extends import_sdkgen_client76.TagAbstract {
5347
5492
  if (statusCode >= 0 && statusCode <= 999) {
5348
5493
  throw new CommonMessageException(await response.json());
5349
5494
  }
5350
- throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5495
+ throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5351
5496
  }
5352
5497
  /**
5353
5498
  * @returns {Promise<ConsumerEventCollection>}
@@ -5374,14 +5519,72 @@ var ConsumerEventTag = class extends import_sdkgen_client76.TagAbstract {
5374
5519
  if (statusCode >= 0 && statusCode <= 999) {
5375
5520
  throw new CommonMessageException(await response.json());
5376
5521
  }
5377
- throw new import_sdkgen_client77.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5522
+ throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5523
+ }
5524
+ };
5525
+
5526
+ // src/ConsumerFormTag.ts
5527
+ var import_sdkgen_client80 = require("sdkgen-client");
5528
+ var import_sdkgen_client81 = require("sdkgen-client");
5529
+ var ConsumerFormTag = class extends import_sdkgen_client80.TagAbstract {
5530
+ /**
5531
+ * @returns {Promise<ConsumerForm>}
5532
+ * @throws {CommonMessageException}
5533
+ * @throws {ClientException}
5534
+ */
5535
+ async get(formId) {
5536
+ const url = this.parser.url("/consumer/form/:form_id", {
5537
+ "form_id": formId
5538
+ });
5539
+ let request = {
5540
+ url,
5541
+ method: "GET",
5542
+ headers: {},
5543
+ params: this.parser.query({}, [])
5544
+ };
5545
+ const response = await this.httpClient.request(request);
5546
+ if (response.ok) {
5547
+ return await response.json();
5548
+ }
5549
+ const statusCode = response.status;
5550
+ if (statusCode >= 0 && statusCode <= 999) {
5551
+ throw new CommonMessageException(await response.json());
5552
+ }
5553
+ throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5554
+ }
5555
+ /**
5556
+ * @returns {Promise<ConsumerFormCollection>}
5557
+ * @throws {CommonMessageException}
5558
+ * @throws {ClientException}
5559
+ */
5560
+ async getAll(startIndex, count, search) {
5561
+ const url = this.parser.url("/consumer/form", {});
5562
+ let request = {
5563
+ url,
5564
+ method: "GET",
5565
+ headers: {},
5566
+ params: this.parser.query({
5567
+ "startIndex": startIndex,
5568
+ "count": count,
5569
+ "search": search
5570
+ }, [])
5571
+ };
5572
+ const response = await this.httpClient.request(request);
5573
+ if (response.ok) {
5574
+ return await response.json();
5575
+ }
5576
+ const statusCode = response.status;
5577
+ if (statusCode >= 0 && statusCode <= 999) {
5578
+ throw new CommonMessageException(await response.json());
5579
+ }
5580
+ throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5378
5581
  }
5379
5582
  };
5380
5583
 
5381
5584
  // src/ConsumerGrantTag.ts
5382
- var import_sdkgen_client78 = require("sdkgen-client");
5383
- var import_sdkgen_client79 = require("sdkgen-client");
5384
- var ConsumerGrantTag = class extends import_sdkgen_client78.TagAbstract {
5585
+ var import_sdkgen_client82 = require("sdkgen-client");
5586
+ var import_sdkgen_client83 = require("sdkgen-client");
5587
+ var ConsumerGrantTag = class extends import_sdkgen_client82.TagAbstract {
5385
5588
  /**
5386
5589
  * @returns {Promise<CommonMessage>}
5387
5590
  * @throws {CommonMessageException}
@@ -5405,7 +5608,7 @@ var ConsumerGrantTag = class extends import_sdkgen_client78.TagAbstract {
5405
5608
  if (statusCode >= 0 && statusCode <= 999) {
5406
5609
  throw new CommonMessageException(await response.json());
5407
5610
  }
5408
- throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5611
+ throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5409
5612
  }
5410
5613
  /**
5411
5614
  * @returns {Promise<ConsumerGrantCollection>}
@@ -5432,14 +5635,14 @@ var ConsumerGrantTag = class extends import_sdkgen_client78.TagAbstract {
5432
5635
  if (statusCode >= 0 && statusCode <= 999) {
5433
5636
  throw new CommonMessageException(await response.json());
5434
5637
  }
5435
- throw new import_sdkgen_client79.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5638
+ throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5436
5639
  }
5437
5640
  };
5438
5641
 
5439
5642
  // src/ConsumerIdentityTag.ts
5440
- var import_sdkgen_client80 = require("sdkgen-client");
5441
- var import_sdkgen_client81 = require("sdkgen-client");
5442
- var ConsumerIdentityTag = class extends import_sdkgen_client80.TagAbstract {
5643
+ var import_sdkgen_client84 = require("sdkgen-client");
5644
+ var import_sdkgen_client85 = require("sdkgen-client");
5645
+ var ConsumerIdentityTag = class extends import_sdkgen_client84.TagAbstract {
5443
5646
  /**
5444
5647
  * @returns {Promise<Passthru>}
5445
5648
  * @throws {CommonMessageException}
@@ -5463,7 +5666,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client80.TagAbstract {
5463
5666
  if (statusCode >= 0 && statusCode <= 999) {
5464
5667
  throw new CommonMessageException(await response.json());
5465
5668
  }
5466
- throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5669
+ throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5467
5670
  }
5468
5671
  /**
5469
5672
  * @returns {Promise<ConsumerIdentityCollection>}
@@ -5489,7 +5692,7 @@ var ConsumerIdentityTag = class extends import_sdkgen_client80.TagAbstract {
5489
5692
  if (statusCode >= 0 && statusCode <= 999) {
5490
5693
  throw new CommonMessageException(await response.json());
5491
5694
  }
5492
- throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5695
+ throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5493
5696
  }
5494
5697
  /**
5495
5698
  * @returns {Promise<Passthru>}
@@ -5514,14 +5717,14 @@ var ConsumerIdentityTag = class extends import_sdkgen_client80.TagAbstract {
5514
5717
  if (statusCode >= 0 && statusCode <= 999) {
5515
5718
  throw new CommonMessageException(await response.json());
5516
5719
  }
5517
- throw new import_sdkgen_client81.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5720
+ throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5518
5721
  }
5519
5722
  };
5520
5723
 
5521
5724
  // src/ConsumerLogTag.ts
5522
- var import_sdkgen_client82 = require("sdkgen-client");
5523
- var import_sdkgen_client83 = require("sdkgen-client");
5524
- var ConsumerLogTag = class extends import_sdkgen_client82.TagAbstract {
5725
+ var import_sdkgen_client86 = require("sdkgen-client");
5726
+ var import_sdkgen_client87 = require("sdkgen-client");
5727
+ var ConsumerLogTag = class extends import_sdkgen_client86.TagAbstract {
5525
5728
  /**
5526
5729
  * @returns {Promise<ConsumerLog>}
5527
5730
  * @throws {CommonMessageException}
@@ -5545,7 +5748,7 @@ var ConsumerLogTag = class extends import_sdkgen_client82.TagAbstract {
5545
5748
  if (statusCode >= 0 && statusCode <= 999) {
5546
5749
  throw new CommonMessageException(await response.json());
5547
5750
  }
5548
- throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5751
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5549
5752
  }
5550
5753
  /**
5551
5754
  * @returns {Promise<ConsumerLogCollection>}
@@ -5572,14 +5775,14 @@ var ConsumerLogTag = class extends import_sdkgen_client82.TagAbstract {
5572
5775
  if (statusCode >= 0 && statusCode <= 999) {
5573
5776
  throw new CommonMessageException(await response.json());
5574
5777
  }
5575
- throw new import_sdkgen_client83.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5778
+ throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5576
5779
  }
5577
5780
  };
5578
5781
 
5579
5782
  // src/ConsumerPageTag.ts
5580
- var import_sdkgen_client84 = require("sdkgen-client");
5581
- var import_sdkgen_client85 = require("sdkgen-client");
5582
- var ConsumerPageTag = class extends import_sdkgen_client84.TagAbstract {
5783
+ var import_sdkgen_client88 = require("sdkgen-client");
5784
+ var import_sdkgen_client89 = require("sdkgen-client");
5785
+ var ConsumerPageTag = class extends import_sdkgen_client88.TagAbstract {
5583
5786
  /**
5584
5787
  * @returns {Promise<ConsumerPage>}
5585
5788
  * @throws {CommonMessageException}
@@ -5603,7 +5806,7 @@ var ConsumerPageTag = class extends import_sdkgen_client84.TagAbstract {
5603
5806
  if (statusCode >= 0 && statusCode <= 999) {
5604
5807
  throw new CommonMessageException(await response.json());
5605
5808
  }
5606
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5809
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5607
5810
  }
5608
5811
  /**
5609
5812
  * @returns {Promise<ConsumerPageCollection>}
@@ -5630,14 +5833,14 @@ var ConsumerPageTag = class extends import_sdkgen_client84.TagAbstract {
5630
5833
  if (statusCode >= 0 && statusCode <= 999) {
5631
5834
  throw new CommonMessageException(await response.json());
5632
5835
  }
5633
- throw new import_sdkgen_client85.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5836
+ throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5634
5837
  }
5635
5838
  };
5636
5839
 
5637
5840
  // src/ConsumerPaymentTag.ts
5638
- var import_sdkgen_client86 = require("sdkgen-client");
5639
- var import_sdkgen_client87 = require("sdkgen-client");
5640
- var ConsumerPaymentTag = class extends import_sdkgen_client86.TagAbstract {
5841
+ var import_sdkgen_client90 = require("sdkgen-client");
5842
+ var import_sdkgen_client91 = require("sdkgen-client");
5843
+ var ConsumerPaymentTag = class extends import_sdkgen_client90.TagAbstract {
5641
5844
  /**
5642
5845
  * @returns {Promise<ConsumerPaymentCheckoutResponse>}
5643
5846
  * @throws {CommonMessageException}
@@ -5664,7 +5867,7 @@ var ConsumerPaymentTag = class extends import_sdkgen_client86.TagAbstract {
5664
5867
  if (statusCode >= 0 && statusCode <= 999) {
5665
5868
  throw new CommonMessageException(await response.json());
5666
5869
  }
5667
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5870
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5668
5871
  }
5669
5872
  /**
5670
5873
  * @returns {Promise<ConsumerPaymentPortalResponse>}
@@ -5692,14 +5895,14 @@ var ConsumerPaymentTag = class extends import_sdkgen_client86.TagAbstract {
5692
5895
  if (statusCode >= 0 && statusCode <= 999) {
5693
5896
  throw new CommonMessageException(await response.json());
5694
5897
  }
5695
- throw new import_sdkgen_client87.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5898
+ throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5696
5899
  }
5697
5900
  };
5698
5901
 
5699
5902
  // src/ConsumerPlanTag.ts
5700
- var import_sdkgen_client88 = require("sdkgen-client");
5701
- var import_sdkgen_client89 = require("sdkgen-client");
5702
- var ConsumerPlanTag = class extends import_sdkgen_client88.TagAbstract {
5903
+ var import_sdkgen_client92 = require("sdkgen-client");
5904
+ var import_sdkgen_client93 = require("sdkgen-client");
5905
+ var ConsumerPlanTag = class extends import_sdkgen_client92.TagAbstract {
5703
5906
  /**
5704
5907
  * @returns {Promise<ConsumerPlan>}
5705
5908
  * @throws {CommonMessageException}
@@ -5723,7 +5926,7 @@ var ConsumerPlanTag = class extends import_sdkgen_client88.TagAbstract {
5723
5926
  if (statusCode >= 0 && statusCode <= 999) {
5724
5927
  throw new CommonMessageException(await response.json());
5725
5928
  }
5726
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5929
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5727
5930
  }
5728
5931
  /**
5729
5932
  * @returns {Promise<ConsumerPlanCollection>}
@@ -5750,14 +5953,14 @@ var ConsumerPlanTag = class extends import_sdkgen_client88.TagAbstract {
5750
5953
  if (statusCode >= 0 && statusCode <= 999) {
5751
5954
  throw new CommonMessageException(await response.json());
5752
5955
  }
5753
- throw new import_sdkgen_client89.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5956
+ throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5754
5957
  }
5755
5958
  };
5756
5959
 
5757
5960
  // src/ConsumerScopeTag.ts
5758
- var import_sdkgen_client90 = require("sdkgen-client");
5759
- var import_sdkgen_client91 = require("sdkgen-client");
5760
- var ConsumerScopeTag = class extends import_sdkgen_client90.TagAbstract {
5961
+ var import_sdkgen_client94 = require("sdkgen-client");
5962
+ var import_sdkgen_client95 = require("sdkgen-client");
5963
+ var ConsumerScopeTag = class extends import_sdkgen_client94.TagAbstract {
5761
5964
  /**
5762
5965
  * @returns {Promise<ConsumerScopeCollection>}
5763
5966
  * @throws {CommonMessageException}
@@ -5783,14 +5986,37 @@ var ConsumerScopeTag = class extends import_sdkgen_client90.TagAbstract {
5783
5986
  if (statusCode >= 0 && statusCode <= 999) {
5784
5987
  throw new CommonMessageException(await response.json());
5785
5988
  }
5786
- throw new import_sdkgen_client91.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5989
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5990
+ }
5991
+ /**
5992
+ * @returns {Promise<ConsumerScopeCategories>}
5993
+ * @throws {CommonMessageException}
5994
+ * @throws {ClientException}
5995
+ */
5996
+ async getCategories() {
5997
+ const url = this.parser.url("/consumer/scope/categories", {});
5998
+ let request = {
5999
+ url,
6000
+ method: "GET",
6001
+ headers: {},
6002
+ params: this.parser.query({}, [])
6003
+ };
6004
+ const response = await this.httpClient.request(request);
6005
+ if (response.ok) {
6006
+ return await response.json();
6007
+ }
6008
+ const statusCode = response.status;
6009
+ if (statusCode >= 0 && statusCode <= 999) {
6010
+ throw new CommonMessageException(await response.json());
6011
+ }
6012
+ throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5787
6013
  }
5788
6014
  };
5789
6015
 
5790
6016
  // src/ConsumerTokenTag.ts
5791
- var import_sdkgen_client92 = require("sdkgen-client");
5792
- var import_sdkgen_client93 = require("sdkgen-client");
5793
- var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
6017
+ var import_sdkgen_client96 = require("sdkgen-client");
6018
+ var import_sdkgen_client97 = require("sdkgen-client");
6019
+ var ConsumerTokenTag = class extends import_sdkgen_client96.TagAbstract {
5794
6020
  /**
5795
6021
  * @returns {Promise<ConsumerTokenAccessToken>}
5796
6022
  * @throws {CommonMessageException}
@@ -5815,7 +6041,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
5815
6041
  if (statusCode >= 0 && statusCode <= 999) {
5816
6042
  throw new CommonMessageException(await response.json());
5817
6043
  }
5818
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6044
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5819
6045
  }
5820
6046
  /**
5821
6047
  * @returns {Promise<CommonMessage>}
@@ -5840,7 +6066,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
5840
6066
  if (statusCode >= 0 && statusCode <= 999) {
5841
6067
  throw new CommonMessageException(await response.json());
5842
6068
  }
5843
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6069
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5844
6070
  }
5845
6071
  /**
5846
6072
  * @returns {Promise<ConsumerToken>}
@@ -5865,7 +6091,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
5865
6091
  if (statusCode >= 0 && statusCode <= 999) {
5866
6092
  throw new CommonMessageException(await response.json());
5867
6093
  }
5868
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6094
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5869
6095
  }
5870
6096
  /**
5871
6097
  * @returns {Promise<ConsumerTokenCollection>}
@@ -5892,7 +6118,7 @@ var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
5892
6118
  if (statusCode >= 0 && statusCode <= 999) {
5893
6119
  throw new CommonMessageException(await response.json());
5894
6120
  }
5895
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6121
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5896
6122
  }
5897
6123
  /**
5898
6124
  * @returns {Promise<ConsumerTokenAccessToken>}
@@ -5920,14 +6146,14 @@ var ConsumerTokenTag = class extends import_sdkgen_client92.TagAbstract {
5920
6146
  if (statusCode >= 0 && statusCode <= 999) {
5921
6147
  throw new CommonMessageException(await response.json());
5922
6148
  }
5923
- throw new import_sdkgen_client93.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6149
+ throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5924
6150
  }
5925
6151
  };
5926
6152
 
5927
6153
  // src/ConsumerTransactionTag.ts
5928
- var import_sdkgen_client94 = require("sdkgen-client");
5929
- var import_sdkgen_client95 = require("sdkgen-client");
5930
- var ConsumerTransactionTag = class extends import_sdkgen_client94.TagAbstract {
6154
+ var import_sdkgen_client98 = require("sdkgen-client");
6155
+ var import_sdkgen_client99 = require("sdkgen-client");
6156
+ var ConsumerTransactionTag = class extends import_sdkgen_client98.TagAbstract {
5931
6157
  /**
5932
6158
  * @returns {Promise<ConsumerTransaction>}
5933
6159
  * @throws {CommonMessageException}
@@ -5951,7 +6177,7 @@ var ConsumerTransactionTag = class extends import_sdkgen_client94.TagAbstract {
5951
6177
  if (statusCode >= 0 && statusCode <= 999) {
5952
6178
  throw new CommonMessageException(await response.json());
5953
6179
  }
5954
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6180
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5955
6181
  }
5956
6182
  /**
5957
6183
  * @returns {Promise<ConsumerTransactionCollection>}
@@ -5978,14 +6204,14 @@ var ConsumerTransactionTag = class extends import_sdkgen_client94.TagAbstract {
5978
6204
  if (statusCode >= 0 && statusCode <= 999) {
5979
6205
  throw new CommonMessageException(await response.json());
5980
6206
  }
5981
- throw new import_sdkgen_client95.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6207
+ throw new import_sdkgen_client99.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
5982
6208
  }
5983
6209
  };
5984
6210
 
5985
6211
  // src/ConsumerWebhookTag.ts
5986
- var import_sdkgen_client96 = require("sdkgen-client");
5987
- var import_sdkgen_client97 = require("sdkgen-client");
5988
- var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6212
+ var import_sdkgen_client100 = require("sdkgen-client");
6213
+ var import_sdkgen_client101 = require("sdkgen-client");
6214
+ var ConsumerWebhookTag = class extends import_sdkgen_client100.TagAbstract {
5989
6215
  /**
5990
6216
  * @returns {Promise<CommonMessage>}
5991
6217
  * @throws {CommonMessageException}
@@ -6010,7 +6236,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6010
6236
  if (statusCode >= 0 && statusCode <= 999) {
6011
6237
  throw new CommonMessageException(await response.json());
6012
6238
  }
6013
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6239
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6014
6240
  }
6015
6241
  /**
6016
6242
  * @returns {Promise<CommonMessage>}
@@ -6035,7 +6261,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6035
6261
  if (statusCode >= 0 && statusCode <= 999) {
6036
6262
  throw new CommonMessageException(await response.json());
6037
6263
  }
6038
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6264
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6039
6265
  }
6040
6266
  /**
6041
6267
  * @returns {Promise<ConsumerWebhook>}
@@ -6060,7 +6286,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6060
6286
  if (statusCode >= 0 && statusCode <= 999) {
6061
6287
  throw new CommonMessageException(await response.json());
6062
6288
  }
6063
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6289
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6064
6290
  }
6065
6291
  /**
6066
6292
  * @returns {Promise<ConsumerWebhookCollection>}
@@ -6087,7 +6313,7 @@ var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6087
6313
  if (statusCode >= 0 && statusCode <= 999) {
6088
6314
  throw new CommonMessageException(await response.json());
6089
6315
  }
6090
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6316
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6091
6317
  }
6092
6318
  /**
6093
6319
  * @returns {Promise<CommonMessage>}
@@ -6115,12 +6341,12 @@ var ConsumerWebhookTag = class extends import_sdkgen_client96.TagAbstract {
6115
6341
  if (statusCode >= 0 && statusCode <= 999) {
6116
6342
  throw new CommonMessageException(await response.json());
6117
6343
  }
6118
- throw new import_sdkgen_client97.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6344
+ throw new import_sdkgen_client101.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6119
6345
  }
6120
6346
  };
6121
6347
 
6122
6348
  // src/ConsumerTag.ts
6123
- var ConsumerTag = class extends import_sdkgen_client98.TagAbstract {
6349
+ var ConsumerTag = class extends import_sdkgen_client102.TagAbstract {
6124
6350
  account() {
6125
6351
  return new ConsumerAccountTag(
6126
6352
  this.httpClient,
@@ -6139,6 +6365,12 @@ var ConsumerTag = class extends import_sdkgen_client98.TagAbstract {
6139
6365
  this.parser
6140
6366
  );
6141
6367
  }
6368
+ form() {
6369
+ return new ConsumerFormTag(
6370
+ this.httpClient,
6371
+ this.parser
6372
+ );
6373
+ }
6142
6374
  grant() {
6143
6375
  return new ConsumerGrantTag(
6144
6376
  this.httpClient,
@@ -6202,12 +6434,12 @@ var ConsumerTag = class extends import_sdkgen_client98.TagAbstract {
6202
6434
  };
6203
6435
 
6204
6436
  // src/SystemTag.ts
6205
- var import_sdkgen_client105 = require("sdkgen-client");
6437
+ var import_sdkgen_client109 = require("sdkgen-client");
6206
6438
 
6207
6439
  // src/SystemConnectionTag.ts
6208
- var import_sdkgen_client99 = require("sdkgen-client");
6209
- var import_sdkgen_client100 = require("sdkgen-client");
6210
- var SystemConnectionTag = class extends import_sdkgen_client99.TagAbstract {
6440
+ var import_sdkgen_client103 = require("sdkgen-client");
6441
+ var import_sdkgen_client104 = require("sdkgen-client");
6442
+ var SystemConnectionTag = class extends import_sdkgen_client103.TagAbstract {
6211
6443
  /**
6212
6444
  * @returns {Promise<CommonMessage>}
6213
6445
  * @throws {CommonMessageException}
@@ -6231,14 +6463,14 @@ var SystemConnectionTag = class extends import_sdkgen_client99.TagAbstract {
6231
6463
  if (statusCode >= 0 && statusCode <= 999) {
6232
6464
  throw new CommonMessageException(await response.json());
6233
6465
  }
6234
- throw new import_sdkgen_client100.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6466
+ throw new import_sdkgen_client104.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6235
6467
  }
6236
6468
  };
6237
6469
 
6238
6470
  // src/SystemMetaTag.ts
6239
- var import_sdkgen_client101 = require("sdkgen-client");
6240
- var import_sdkgen_client102 = require("sdkgen-client");
6241
- var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6471
+ var import_sdkgen_client105 = require("sdkgen-client");
6472
+ var import_sdkgen_client106 = require("sdkgen-client");
6473
+ var SystemMetaTag = class extends import_sdkgen_client105.TagAbstract {
6242
6474
  /**
6243
6475
  * @returns {Promise<SystemAbout>}
6244
6476
  * @throws {CommonMessageException}
@@ -6260,7 +6492,7 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6260
6492
  if (statusCode >= 0 && statusCode <= 999) {
6261
6493
  throw new CommonMessageException(await response.json());
6262
6494
  }
6263
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6495
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6264
6496
  }
6265
6497
  /**
6266
6498
  * @returns {Promise<Passthru>}
@@ -6286,7 +6518,7 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6286
6518
  if (statusCode >= 0 && statusCode <= 999) {
6287
6519
  throw new CommonMessageException(await response.json());
6288
6520
  }
6289
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6521
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6290
6522
  }
6291
6523
  /**
6292
6524
  * @returns {Promise<SystemHealthCheck>}
@@ -6309,7 +6541,7 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6309
6541
  if (statusCode >= 0 && statusCode <= 999) {
6310
6542
  throw new CommonMessageException(await response.json());
6311
6543
  }
6312
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6544
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6313
6545
  }
6314
6546
  /**
6315
6547
  * @returns {Promise<SystemOAuthConfiguration>}
@@ -6332,7 +6564,7 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6332
6564
  if (statusCode >= 0 && statusCode <= 999) {
6333
6565
  throw new CommonMessageException(await response.json());
6334
6566
  }
6335
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6567
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6336
6568
  }
6337
6569
  /**
6338
6570
  * @returns {Promise<SystemRoute>}
@@ -6355,7 +6587,7 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6355
6587
  if (statusCode >= 0 && statusCode <= 999) {
6356
6588
  throw new CommonMessageException(await response.json());
6357
6589
  }
6358
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6590
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6359
6591
  }
6360
6592
  /**
6361
6593
  * @returns {Promise<SystemSchema>}
@@ -6380,14 +6612,14 @@ var SystemMetaTag = class extends import_sdkgen_client101.TagAbstract {
6380
6612
  if (statusCode >= 0 && statusCode <= 999) {
6381
6613
  throw new CommonMessageException(await response.json());
6382
6614
  }
6383
- throw new import_sdkgen_client102.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6615
+ throw new import_sdkgen_client106.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6384
6616
  }
6385
6617
  };
6386
6618
 
6387
6619
  // src/SystemPaymentTag.ts
6388
- var import_sdkgen_client103 = require("sdkgen-client");
6389
- var import_sdkgen_client104 = require("sdkgen-client");
6390
- var SystemPaymentTag = class extends import_sdkgen_client103.TagAbstract {
6620
+ var import_sdkgen_client107 = require("sdkgen-client");
6621
+ var import_sdkgen_client108 = require("sdkgen-client");
6622
+ var SystemPaymentTag = class extends import_sdkgen_client107.TagAbstract {
6391
6623
  /**
6392
6624
  * @returns {Promise<CommonMessage>}
6393
6625
  * @throws {CommonMessageException}
@@ -6411,12 +6643,12 @@ var SystemPaymentTag = class extends import_sdkgen_client103.TagAbstract {
6411
6643
  if (statusCode >= 0 && statusCode <= 999) {
6412
6644
  throw new CommonMessageException(await response.json());
6413
6645
  }
6414
- throw new import_sdkgen_client104.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6646
+ throw new import_sdkgen_client108.UnknownStatusCodeException("The server returned an unknown status code: " + statusCode);
6415
6647
  }
6416
6648
  };
6417
6649
 
6418
6650
  // src/SystemTag.ts
6419
- var SystemTag = class extends import_sdkgen_client105.TagAbstract {
6651
+ var SystemTag = class extends import_sdkgen_client109.TagAbstract {
6420
6652
  connection() {
6421
6653
  return new SystemConnectionTag(
6422
6654
  this.httpClient,
@@ -6438,7 +6670,7 @@ var SystemTag = class extends import_sdkgen_client105.TagAbstract {
6438
6670
  };
6439
6671
 
6440
6672
  // src/Client.ts
6441
- var Client = class _Client extends import_sdkgen_client106.ClientAbstract {
6673
+ var Client = class _Client extends import_sdkgen_client110.ClientAbstract {
6442
6674
  authorization() {
6443
6675
  return new AuthorizationTag(
6444
6676
  this.httpClient,
@@ -6464,7 +6696,7 @@ var Client = class _Client extends import_sdkgen_client106.ClientAbstract {
6464
6696
  );
6465
6697
  }
6466
6698
  static buildAnonymous(baseUrl) {
6467
- return new _Client(baseUrl, new import_sdkgen_client107.Anonymous());
6699
+ return new _Client(baseUrl, new import_sdkgen_client111.Anonymous());
6468
6700
  }
6469
6701
  };
6470
6702
  // Annotate the CommonJS export names for ESM import in node:
@@ -6482,6 +6714,7 @@ var Client = class _Client extends import_sdkgen_client106.ClientAbstract {
6482
6714
  BackendDashboardTag,
6483
6715
  BackendDatabaseTag,
6484
6716
  BackendEventTag,
6717
+ BackendFormTag,
6485
6718
  BackendGeneratorTag,
6486
6719
  BackendIdentityTag,
6487
6720
  BackendLogTag,
@@ -6510,6 +6743,7 @@ var Client = class _Client extends import_sdkgen_client106.ClientAbstract {
6510
6743
  ConsumerAccountTag,
6511
6744
  ConsumerAppTag,
6512
6745
  ConsumerEventTag,
6746
+ ConsumerFormTag,
6513
6747
  ConsumerGrantTag,
6514
6748
  ConsumerIdentityTag,
6515
6749
  ConsumerLogTag,