tapimo 0.10.2 → 0.11.0
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/App.d.ts +3412 -1968
- package/dist/App.d.ts.map +1 -1
- package/dist/App.js.map +1 -1
- package/dist/Webhooks.d.ts +0 -75
- package/dist/Webhooks.d.ts.map +1 -1
- package/dist/Webhooks.js +1 -143
- package/dist/Webhooks.js.map +1 -1
- package/dist/admin/App.d.ts +74 -74
- package/dist/admin/apps/api-keys.d.ts +4 -4
- package/dist/admin/apps/earn-vaults.d.ts +1 -1
- package/dist/admin/apps/organizations.d.ts +3 -3
- package/dist/admin/apps/verified-tokens.d.ts +74 -74
- package/dist/apps/data/App.d.ts +3618 -2954
- package/dist/apps/data/App.d.ts.map +1 -1
- package/dist/apps/data/App.js +5 -2
- package/dist/apps/data/App.js.map +1 -1
- package/dist/apps/data/routes/activities.d.ts +1 -1
- package/dist/apps/data/routes/activities.d.ts.map +1 -1
- package/dist/apps/data/routes/activities.js +55 -27
- package/dist/apps/data/routes/activities.js.map +1 -1
- package/dist/apps/data/routes/addresses.d.ts +343 -343
- package/dist/apps/data/routes/balances.d.ts +11 -11
- package/dist/apps/data/routes/blocks.d.ts +5 -5
- package/dist/apps/data/routes/coingecko.d.ts +176 -176
- package/dist/apps/data/routes/earn.d.ts +4 -4
- package/dist/apps/data/routes/exchanges.d.ts +4 -4
- package/dist/apps/data/routes/fee-amm.d.ts +26 -26
- package/dist/apps/data/routes/indexer.d.ts +34 -34
- package/dist/apps/data/routes/receipts.d.ts +236 -236
- package/dist/apps/data/routes/tokenlist.d.ts +12 -12
- package/dist/apps/data/routes/tokens.d.ts +3 -3
- package/dist/apps/data/routes/transactions.d.ts +1 -1
- package/dist/apps/data/routes/transfers.d.ts +13 -13
- package/dist/apps/data/routes/valuation.d.ts +21 -21
- package/dist/apps/data/routes/verified-tokens.d.ts +5 -5
- package/dist/apps/data/routes/webhooks.d.ts +1011 -151
- package/dist/apps/data/routes/webhooks.d.ts.map +1 -1
- package/dist/apps/data/routes/webhooks.js +124 -737
- package/dist/apps/data/routes/webhooks.js.map +1 -1
- package/dist/apps/data/routes/zones.d.ts +31 -31
- package/dist/apps/funding/routes/deposit-addresses.d.ts +2 -2
- package/dist/apps/funding/routes/providers.d.ts +13 -13
- package/dist/apps/funding/routes/transfers.d.ts +33 -33
- package/dist/apps/management/App.d.ts +793 -16
- package/dist/apps/management/App.d.ts.map +1 -1
- package/dist/apps/management/routes/api-keys.d.ts +50 -50
- package/dist/apps/management/routes/faucet.d.ts +31 -31
- package/dist/apps/management/routes/invite-links.d.ts +42 -42
- package/dist/apps/management/routes/members.d.ts +79 -79
- package/dist/apps/management/routes/projects.d.ts +40 -40
- package/dist/apps/management/routes/usage.d.ts +80 -80
- package/dist/apps/management/routes/webhooks.d.ts +1031 -59
- package/dist/apps/management/routes/webhooks.d.ts.map +1 -1
- package/dist/apps/management/routes/webhooks.js +27 -4
- package/dist/apps/management/routes/webhooks.js.map +1 -1
- package/dist/db/Db.d.ts.map +1 -1
- package/dist/db/Db.js +21 -0
- package/dist/db/Db.js.map +1 -1
- package/dist/db/Schema.d.ts +7 -1
- package/dist/db/Schema.d.ts.map +1 -1
- package/dist/db/Schema.js +9 -0
- package/dist/db/Schema.js.map +1 -1
- package/dist/db/tables/webhookQueueEvents.d.ts +3 -1
- package/dist/db/tables/webhookQueueEvents.d.ts.map +1 -1
- package/dist/db/tables/webhookQueueEvents.js +4 -0
- package/dist/db/tables/webhookQueueEvents.js.map +1 -1
- package/dist/db/tables/webhookSubscriptions.d.ts +33 -69
- package/dist/db/tables/webhookSubscriptions.d.ts.map +1 -1
- package/dist/db/tables/webhookSubscriptions.js +63 -100
- package/dist/db/tables/webhookSubscriptions.js.map +1 -1
- package/dist/internal/MetricSink.d.ts +35 -125
- package/dist/internal/MetricSink.d.ts.map +1 -1
- package/dist/internal/MetricSink.js +50 -121
- package/dist/internal/MetricSink.js.map +1 -1
- package/dist/internal/Schema.d.ts +3 -1
- package/dist/internal/Schema.d.ts.map +1 -1
- package/dist/internal/Schema.js +4 -2
- package/dist/internal/Schema.js.map +1 -1
- package/dist/internal/WebhookTransfer.d.ts +1 -55
- package/dist/internal/WebhookTransfer.d.ts.map +1 -1
- package/dist/internal/WebhookTransfer.js +1 -239
- package/dist/internal/WebhookTransfer.js.map +1 -1
- package/dist/internal/Webhooks.d.ts +83 -44
- package/dist/internal/Webhooks.d.ts.map +1 -1
- package/dist/internal/Webhooks.js +87 -73
- package/dist/internal/Webhooks.js.map +1 -1
- package/dist/internal/funding/DepositWebhook.d.ts +25 -0
- package/dist/internal/funding/DepositWebhook.d.ts.map +1 -0
- package/dist/internal/funding/DepositWebhook.js +74 -0
- package/dist/internal/funding/DepositWebhook.js.map +1 -0
- package/dist/internal/funding/Reconciliation.d.ts +6 -0
- package/dist/internal/funding/Reconciliation.d.ts.map +1 -1
- package/dist/internal/funding/Reconciliation.js +42 -10
- package/dist/internal/funding/Reconciliation.js.map +1 -1
- package/dist/internal/funding/index.d.ts +1 -0
- package/dist/internal/funding/index.d.ts.map +1 -1
- package/dist/internal/funding/index.js +1 -0
- package/dist/internal/funding/index.js.map +1 -1
- package/dist/internal/webhookDestinations/slack.d.ts.map +1 -1
- package/dist/internal/webhookDestinations/slack.js +16 -0
- package/dist/internal/webhookDestinations/slack.js.map +1 -1
- package/package.json +1 -1
- package/src/App.ts +3 -0
- package/src/Client.test-d.ts +22 -1
- package/src/Webhooks.ts +1 -220
- package/src/apps/data/App.ts +8 -2
- package/src/apps/data/routes/activities.test.ts +107 -11
- package/src/apps/data/routes/activities.ts +64 -32
- package/src/apps/data/routes/webhooks.test.ts +179 -1497
- package/src/apps/data/routes/webhooks.ts +150 -974
- package/src/apps/management/routes/webhooks.test.ts +79 -1
- package/src/apps/management/routes/webhooks.ts +40 -4
- package/src/db/Db.test.ts +1 -5
- package/src/db/Db.ts +23 -0
- package/src/db/Schema.ts +13 -0
- package/src/db/tables/organizations.test.ts +5 -2
- package/src/db/tables/webhookQueueEvents.ts +7 -1
- package/src/db/tables/webhookSubscriptions.ts +89 -138
- package/src/internal/MetricSink.test.ts +41 -373
- package/src/internal/MetricSink.ts +92 -273
- package/src/internal/Schema.test.ts +18 -0
- package/src/internal/Schema.ts +13 -2
- package/src/internal/WebhookTransfer.ts +1 -351
- package/src/internal/Webhooks.test.ts +102 -139
- package/src/internal/Webhooks.ts +175 -106
- package/src/internal/funding/DepositWebhook.test.ts +131 -0
- package/src/internal/funding/DepositWebhook.ts +101 -0
- package/src/internal/funding/Reconciliation.test.ts +14 -0
- package/src/internal/funding/Reconciliation.ts +161 -86
- package/src/internal/funding/index.test.ts +1 -0
- package/src/internal/funding/index.ts +1 -0
- package/src/internal/webhookDestinations/slack.ts +15 -0
- package/src/Webhooks.bench.ts +0 -714
- package/src/Webhooks.memory.bench.ts +0 -250
- package/src/Webhooks.test.ts +0 -146
package/dist/admin/App.d.ts
CHANGED
|
@@ -1562,14 +1562,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1562
1562
|
$post: {
|
|
1563
1563
|
output: {
|
|
1564
1564
|
error: {
|
|
1565
|
-
code:
|
|
1565
|
+
code: "upstream_error";
|
|
1566
1566
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1567
1567
|
message: string;
|
|
1568
1568
|
};
|
|
1569
1569
|
requestId: string;
|
|
1570
1570
|
};
|
|
1571
1571
|
outputFormat: "json";
|
|
1572
|
-
status:
|
|
1572
|
+
status: 502;
|
|
1573
1573
|
input: {
|
|
1574
1574
|
json: {
|
|
1575
1575
|
address: `0x${string}`;
|
|
@@ -1585,14 +1585,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1585
1585
|
} | {
|
|
1586
1586
|
output: {
|
|
1587
1587
|
error: {
|
|
1588
|
-
code: "
|
|
1588
|
+
code: "verified_token_not_found";
|
|
1589
1589
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1590
1590
|
message: string;
|
|
1591
1591
|
};
|
|
1592
1592
|
requestId: string;
|
|
1593
1593
|
};
|
|
1594
1594
|
outputFormat: "json";
|
|
1595
|
-
status:
|
|
1595
|
+
status: 404;
|
|
1596
1596
|
input: {
|
|
1597
1597
|
json: {
|
|
1598
1598
|
address: `0x${string}`;
|
|
@@ -1608,7 +1608,7 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1608
1608
|
} | {
|
|
1609
1609
|
output: {
|
|
1610
1610
|
error: {
|
|
1611
|
-
code: "
|
|
1611
|
+
code: "assets_not_enabled";
|
|
1612
1612
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1613
1613
|
message: string;
|
|
1614
1614
|
};
|
|
@@ -1630,15 +1630,19 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1630
1630
|
};
|
|
1631
1631
|
} | {
|
|
1632
1632
|
output: {
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1633
|
+
data: {
|
|
1634
|
+
address: `0x${string}`;
|
|
1635
|
+
currency: string;
|
|
1636
|
+
decimals: number;
|
|
1637
|
+
logoUri?: string | undefined;
|
|
1638
|
+
name: string;
|
|
1639
|
+
symbol: string;
|
|
1640
|
+
id: string;
|
|
1637
1641
|
};
|
|
1638
|
-
|
|
1642
|
+
version: string;
|
|
1639
1643
|
};
|
|
1640
1644
|
outputFormat: "json";
|
|
1641
|
-
status:
|
|
1645
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
1642
1646
|
input: {
|
|
1643
1647
|
json: {
|
|
1644
1648
|
address: `0x${string}`;
|
|
@@ -1653,19 +1657,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1653
1657
|
};
|
|
1654
1658
|
} | {
|
|
1655
1659
|
output: {
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
logoUri?: string | undefined;
|
|
1661
|
-
name: string;
|
|
1662
|
-
symbol: string;
|
|
1663
|
-
id: string;
|
|
1660
|
+
error: {
|
|
1661
|
+
code: string;
|
|
1662
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
1663
|
+
message: string;
|
|
1664
1664
|
};
|
|
1665
|
-
|
|
1665
|
+
requestId: string;
|
|
1666
1666
|
};
|
|
1667
1667
|
outputFormat: "json";
|
|
1668
|
-
status:
|
|
1668
|
+
status: 400 | 413 | 415;
|
|
1669
1669
|
input: {
|
|
1670
1670
|
json: {
|
|
1671
1671
|
address: `0x${string}`;
|
|
@@ -1754,14 +1754,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1754
1754
|
$put: {
|
|
1755
1755
|
output: {
|
|
1756
1756
|
error: {
|
|
1757
|
-
code:
|
|
1757
|
+
code: "upstream_error";
|
|
1758
1758
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1759
1759
|
message: string;
|
|
1760
1760
|
};
|
|
1761
1761
|
requestId: string;
|
|
1762
1762
|
};
|
|
1763
1763
|
outputFormat: "json";
|
|
1764
|
-
status:
|
|
1764
|
+
status: 502;
|
|
1765
1765
|
input: {
|
|
1766
1766
|
query: {
|
|
1767
1767
|
chainId: string | string[];
|
|
@@ -1781,14 +1781,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1781
1781
|
} | {
|
|
1782
1782
|
output: {
|
|
1783
1783
|
error: {
|
|
1784
|
-
code: "
|
|
1784
|
+
code: "verified_token_not_found";
|
|
1785
1785
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1786
1786
|
message: string;
|
|
1787
1787
|
};
|
|
1788
1788
|
requestId: string;
|
|
1789
1789
|
};
|
|
1790
1790
|
outputFormat: "json";
|
|
1791
|
-
status:
|
|
1791
|
+
status: 404;
|
|
1792
1792
|
input: {
|
|
1793
1793
|
query: {
|
|
1794
1794
|
chainId: string | string[];
|
|
@@ -1808,14 +1808,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1808
1808
|
} | {
|
|
1809
1809
|
output: {
|
|
1810
1810
|
error: {
|
|
1811
|
-
code:
|
|
1811
|
+
code: string;
|
|
1812
1812
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1813
1813
|
message: string;
|
|
1814
1814
|
};
|
|
1815
1815
|
requestId: string;
|
|
1816
1816
|
};
|
|
1817
1817
|
outputFormat: "json";
|
|
1818
|
-
status:
|
|
1818
|
+
status: 400 | 413 | 415;
|
|
1819
1819
|
input: {
|
|
1820
1820
|
query: {
|
|
1821
1821
|
chainId: string | string[];
|
|
@@ -1951,14 +1951,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1951
1951
|
$patch: {
|
|
1952
1952
|
output: {
|
|
1953
1953
|
error: {
|
|
1954
|
-
code:
|
|
1954
|
+
code: "upstream_error";
|
|
1955
1955
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1956
1956
|
message: string;
|
|
1957
1957
|
};
|
|
1958
1958
|
requestId: string;
|
|
1959
1959
|
};
|
|
1960
1960
|
outputFormat: "json";
|
|
1961
|
-
status:
|
|
1961
|
+
status: 502;
|
|
1962
1962
|
input: {
|
|
1963
1963
|
param: {
|
|
1964
1964
|
address: `0x${string}`;
|
|
@@ -1979,14 +1979,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
1979
1979
|
} | {
|
|
1980
1980
|
output: {
|
|
1981
1981
|
error: {
|
|
1982
|
-
code: "
|
|
1982
|
+
code: "verified_token_not_found";
|
|
1983
1983
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1984
1984
|
message: string;
|
|
1985
1985
|
};
|
|
1986
1986
|
requestId: string;
|
|
1987
1987
|
};
|
|
1988
1988
|
outputFormat: "json";
|
|
1989
|
-
status:
|
|
1989
|
+
status: 404;
|
|
1990
1990
|
input: {
|
|
1991
1991
|
param: {
|
|
1992
1992
|
address: `0x${string}`;
|
|
@@ -2006,15 +2006,19 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2006
2006
|
};
|
|
2007
2007
|
} | {
|
|
2008
2008
|
output: {
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2009
|
+
data: {
|
|
2010
|
+
address: `0x${string}`;
|
|
2011
|
+
currency: string;
|
|
2012
|
+
decimals: number;
|
|
2013
|
+
logoUri?: string | undefined;
|
|
2014
|
+
name: string;
|
|
2015
|
+
symbol: string;
|
|
2016
|
+
id: string;
|
|
2013
2017
|
};
|
|
2014
|
-
|
|
2018
|
+
version: string;
|
|
2015
2019
|
};
|
|
2016
2020
|
outputFormat: "json";
|
|
2017
|
-
status:
|
|
2021
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
2018
2022
|
input: {
|
|
2019
2023
|
param: {
|
|
2020
2024
|
address: `0x${string}`;
|
|
@@ -2034,19 +2038,15 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2034
2038
|
};
|
|
2035
2039
|
} | {
|
|
2036
2040
|
output: {
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
logoUri?: string | undefined;
|
|
2042
|
-
name: string;
|
|
2043
|
-
symbol: string;
|
|
2044
|
-
id: string;
|
|
2041
|
+
error: {
|
|
2042
|
+
code: string;
|
|
2043
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
2044
|
+
message: string;
|
|
2045
2045
|
};
|
|
2046
|
-
|
|
2046
|
+
requestId: string;
|
|
2047
2047
|
};
|
|
2048
2048
|
outputFormat: "json";
|
|
2049
|
-
status:
|
|
2049
|
+
status: 400 | 413 | 415;
|
|
2050
2050
|
input: {
|
|
2051
2051
|
param: {
|
|
2052
2052
|
address: `0x${string}`;
|
|
@@ -2155,14 +2155,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2155
2155
|
$delete: {
|
|
2156
2156
|
output: {
|
|
2157
2157
|
error: {
|
|
2158
|
-
code:
|
|
2158
|
+
code: "upstream_error";
|
|
2159
2159
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2160
2160
|
message: string;
|
|
2161
2161
|
};
|
|
2162
2162
|
requestId: string;
|
|
2163
2163
|
};
|
|
2164
2164
|
outputFormat: "json";
|
|
2165
|
-
status:
|
|
2165
|
+
status: 502;
|
|
2166
2166
|
input: {
|
|
2167
2167
|
param: {
|
|
2168
2168
|
address: `0x${string}`;
|
|
@@ -2175,14 +2175,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2175
2175
|
} | {
|
|
2176
2176
|
output: {
|
|
2177
2177
|
error: {
|
|
2178
|
-
code: "
|
|
2178
|
+
code: "verified_token_not_found";
|
|
2179
2179
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2180
2180
|
message: string;
|
|
2181
2181
|
};
|
|
2182
2182
|
requestId: string;
|
|
2183
2183
|
};
|
|
2184
2184
|
outputFormat: "json";
|
|
2185
|
-
status:
|
|
2185
|
+
status: 404;
|
|
2186
2186
|
input: {
|
|
2187
2187
|
param: {
|
|
2188
2188
|
address: `0x${string}`;
|
|
@@ -2195,14 +2195,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2195
2195
|
} | {
|
|
2196
2196
|
output: {
|
|
2197
2197
|
error: {
|
|
2198
|
-
code:
|
|
2198
|
+
code: string;
|
|
2199
2199
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2200
2200
|
message: string;
|
|
2201
2201
|
};
|
|
2202
2202
|
requestId: string;
|
|
2203
2203
|
};
|
|
2204
2204
|
outputFormat: "json";
|
|
2205
|
-
status:
|
|
2205
|
+
status: 400 | 413 | 415;
|
|
2206
2206
|
input: {
|
|
2207
2207
|
param: {
|
|
2208
2208
|
address: `0x${string}`;
|
|
@@ -2466,14 +2466,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2466
2466
|
$post: {
|
|
2467
2467
|
output: {
|
|
2468
2468
|
error: {
|
|
2469
|
-
code:
|
|
2469
|
+
code: "upstream_error";
|
|
2470
2470
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2471
2471
|
message: string;
|
|
2472
2472
|
};
|
|
2473
2473
|
requestId: string;
|
|
2474
2474
|
};
|
|
2475
2475
|
outputFormat: "json";
|
|
2476
|
-
status:
|
|
2476
|
+
status: 502;
|
|
2477
2477
|
input: {
|
|
2478
2478
|
param: {
|
|
2479
2479
|
requestId: string;
|
|
@@ -2482,14 +2482,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2482
2482
|
} | {
|
|
2483
2483
|
output: {
|
|
2484
2484
|
error: {
|
|
2485
|
-
code: "
|
|
2485
|
+
code: "verified_token_not_found";
|
|
2486
2486
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2487
2487
|
message: string;
|
|
2488
2488
|
};
|
|
2489
2489
|
requestId: string;
|
|
2490
2490
|
};
|
|
2491
2491
|
outputFormat: "json";
|
|
2492
|
-
status:
|
|
2492
|
+
status: 404;
|
|
2493
2493
|
input: {
|
|
2494
2494
|
param: {
|
|
2495
2495
|
requestId: string;
|
|
@@ -2498,14 +2498,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2498
2498
|
} | {
|
|
2499
2499
|
output: {
|
|
2500
2500
|
error: {
|
|
2501
|
-
code: "
|
|
2501
|
+
code: "request_not_pending";
|
|
2502
2502
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2503
2503
|
message: string;
|
|
2504
2504
|
};
|
|
2505
2505
|
requestId: string;
|
|
2506
2506
|
};
|
|
2507
2507
|
outputFormat: "json";
|
|
2508
|
-
status:
|
|
2508
|
+
status: 409;
|
|
2509
2509
|
input: {
|
|
2510
2510
|
param: {
|
|
2511
2511
|
requestId: string;
|
|
@@ -2514,14 +2514,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2514
2514
|
} | {
|
|
2515
2515
|
output: {
|
|
2516
2516
|
error: {
|
|
2517
|
-
code: "
|
|
2517
|
+
code: "verified_token_request_not_found";
|
|
2518
2518
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2519
2519
|
message: string;
|
|
2520
2520
|
};
|
|
2521
2521
|
requestId: string;
|
|
2522
2522
|
};
|
|
2523
2523
|
outputFormat: "json";
|
|
2524
|
-
status:
|
|
2524
|
+
status: 404;
|
|
2525
2525
|
input: {
|
|
2526
2526
|
param: {
|
|
2527
2527
|
requestId: string;
|
|
@@ -2530,7 +2530,7 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2530
2530
|
} | {
|
|
2531
2531
|
output: {
|
|
2532
2532
|
error: {
|
|
2533
|
-
code: "
|
|
2533
|
+
code: "assets_not_enabled";
|
|
2534
2534
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2535
2535
|
message: string;
|
|
2536
2536
|
};
|
|
@@ -2546,14 +2546,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2546
2546
|
} | {
|
|
2547
2547
|
output: {
|
|
2548
2548
|
error: {
|
|
2549
|
-
code:
|
|
2549
|
+
code: string;
|
|
2550
2550
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2551
2551
|
message: string;
|
|
2552
2552
|
};
|
|
2553
2553
|
requestId: string;
|
|
2554
2554
|
};
|
|
2555
2555
|
outputFormat: "json";
|
|
2556
|
-
status:
|
|
2556
|
+
status: 400 | 413 | 415;
|
|
2557
2557
|
input: {
|
|
2558
2558
|
param: {
|
|
2559
2559
|
requestId: string;
|
|
@@ -2645,14 +2645,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2645
2645
|
$post: {
|
|
2646
2646
|
output: {
|
|
2647
2647
|
error: {
|
|
2648
|
-
code:
|
|
2648
|
+
code: "upstream_error";
|
|
2649
2649
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2650
2650
|
message: string;
|
|
2651
2651
|
};
|
|
2652
2652
|
requestId: string;
|
|
2653
2653
|
};
|
|
2654
2654
|
outputFormat: "json";
|
|
2655
|
-
status:
|
|
2655
|
+
status: 502;
|
|
2656
2656
|
input: {
|
|
2657
2657
|
param: {
|
|
2658
2658
|
requestId: string;
|
|
@@ -2665,14 +2665,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2665
2665
|
} | {
|
|
2666
2666
|
output: {
|
|
2667
2667
|
error: {
|
|
2668
|
-
code: "
|
|
2668
|
+
code: "verified_token_not_found";
|
|
2669
2669
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2670
2670
|
message: string;
|
|
2671
2671
|
};
|
|
2672
2672
|
requestId: string;
|
|
2673
2673
|
};
|
|
2674
2674
|
outputFormat: "json";
|
|
2675
|
-
status:
|
|
2675
|
+
status: 404;
|
|
2676
2676
|
input: {
|
|
2677
2677
|
param: {
|
|
2678
2678
|
requestId: string;
|
|
@@ -2685,14 +2685,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2685
2685
|
} | {
|
|
2686
2686
|
output: {
|
|
2687
2687
|
error: {
|
|
2688
|
-
code: "
|
|
2688
|
+
code: "request_not_pending";
|
|
2689
2689
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2690
2690
|
message: string;
|
|
2691
2691
|
};
|
|
2692
2692
|
requestId: string;
|
|
2693
2693
|
};
|
|
2694
2694
|
outputFormat: "json";
|
|
2695
|
-
status:
|
|
2695
|
+
status: 409;
|
|
2696
2696
|
input: {
|
|
2697
2697
|
param: {
|
|
2698
2698
|
requestId: string;
|
|
@@ -2705,14 +2705,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2705
2705
|
} | {
|
|
2706
2706
|
output: {
|
|
2707
2707
|
error: {
|
|
2708
|
-
code: "
|
|
2708
|
+
code: "verified_token_request_not_found";
|
|
2709
2709
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2710
2710
|
message: string;
|
|
2711
2711
|
};
|
|
2712
2712
|
requestId: string;
|
|
2713
2713
|
};
|
|
2714
2714
|
outputFormat: "json";
|
|
2715
|
-
status:
|
|
2715
|
+
status: 404;
|
|
2716
2716
|
input: {
|
|
2717
2717
|
param: {
|
|
2718
2718
|
requestId: string;
|
|
@@ -2725,14 +2725,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
2725
2725
|
} | {
|
|
2726
2726
|
output: {
|
|
2727
2727
|
error: {
|
|
2728
|
-
code:
|
|
2728
|
+
code: string;
|
|
2729
2729
|
details?: readonly Response.error.Detail[] | undefined;
|
|
2730
2730
|
message: string;
|
|
2731
2731
|
};
|
|
2732
2732
|
requestId: string;
|
|
2733
2733
|
};
|
|
2734
2734
|
outputFormat: "json";
|
|
2735
|
-
status:
|
|
2735
|
+
status: 400 | 413 | 415;
|
|
2736
2736
|
input: {
|
|
2737
2737
|
param: {
|
|
2738
2738
|
requestId: string;
|
|
@@ -158,14 +158,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
158
158
|
$post: {
|
|
159
159
|
output: {
|
|
160
160
|
error: {
|
|
161
|
-
code: "
|
|
161
|
+
code: "not_found";
|
|
162
162
|
details?: readonly Response.error.Detail[] | undefined;
|
|
163
163
|
message: string;
|
|
164
164
|
};
|
|
165
165
|
requestId: string;
|
|
166
166
|
};
|
|
167
167
|
outputFormat: "json";
|
|
168
|
-
status:
|
|
168
|
+
status: 404;
|
|
169
169
|
input: {
|
|
170
170
|
json: {
|
|
171
171
|
allowedIps?: readonly string[] | undefined;
|
|
@@ -185,14 +185,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
185
185
|
} | {
|
|
186
186
|
output: {
|
|
187
187
|
error: {
|
|
188
|
-
code: "
|
|
188
|
+
code: "upstream_error";
|
|
189
189
|
details?: readonly Response.error.Detail[] | undefined;
|
|
190
190
|
message: string;
|
|
191
191
|
};
|
|
192
192
|
requestId: string;
|
|
193
193
|
};
|
|
194
194
|
outputFormat: "json";
|
|
195
|
-
status:
|
|
195
|
+
status: 502;
|
|
196
196
|
input: {
|
|
197
197
|
json: {
|
|
198
198
|
allowedIps?: readonly string[] | undefined;
|
|
@@ -217,7 +217,7 @@ export declare namespace schema {
|
|
|
217
217
|
erc4626: "erc4626";
|
|
218
218
|
veda: "veda";
|
|
219
219
|
}>>;
|
|
220
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
220
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
221
221
|
include: z.ZodMiniPipe<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniUnknown>, z.ZodMiniTransform<string[], unknown>>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
222
222
|
access: "access";
|
|
223
223
|
capabilities: "capabilities";
|
|
@@ -8,7 +8,7 @@ export declare namespace schema {
|
|
|
8
8
|
/** Query parameters for organization lookup. */
|
|
9
9
|
const Query: z.ZodMiniObject<{
|
|
10
10
|
cursor: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
11
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
11
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
12
12
|
query: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniString<string>, z.ZodMiniTransform<string, string>>>;
|
|
13
13
|
}, z.core.$strict>;
|
|
14
14
|
/** Organization summary shown in lookup results. */
|
|
@@ -150,7 +150,7 @@ export declare namespace schema {
|
|
|
150
150
|
/** Query parameters for paginating organization members. */
|
|
151
151
|
const Query: z.ZodMiniObject<{
|
|
152
152
|
cursor: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
153
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
153
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
154
154
|
}, z.core.$strict>;
|
|
155
155
|
/** Cursor-paginated organization members. */
|
|
156
156
|
const Response: z.ZodMiniObject<{
|
|
@@ -174,7 +174,7 @@ export declare namespace schema {
|
|
|
174
174
|
/** Query parameters for paginating organization projects. */
|
|
175
175
|
const Query: z.ZodMiniObject<{
|
|
176
176
|
cursor: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
177
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
177
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
178
178
|
}, z.core.$strict>;
|
|
179
179
|
/** Cursor-paginated organization projects. */
|
|
180
180
|
const Response: z.ZodMiniObject<{
|