tapimo 0.15.0 → 0.15.1
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 +26 -26
- package/dist/admin/App.d.ts +3 -0
- package/dist/admin/App.d.ts.map +1 -1
- package/dist/admin/apps/api-keys.d.ts +41 -41
- package/dist/admin/apps/routes.d.ts +64 -64
- package/dist/admin/apps/verified-tokens.d.ts +161 -155
- package/dist/admin/apps/verified-tokens.d.ts.map +1 -1
- package/dist/admin/apps/verified-tokens.js +24 -4
- package/dist/admin/apps/verified-tokens.js.map +1 -1
- package/dist/admin/ui.generated.d.ts +1 -1
- package/dist/admin/ui.generated.d.ts.map +1 -1
- package/dist/admin/ui.generated.js +201 -209
- package/dist/admin/ui.generated.js.map +1 -1
- package/dist/apps/data/routes/activities.d.ts +357 -357
- package/dist/apps/data/routes/blocks.d.ts +125 -125
- package/dist/apps/data/routes/fee-amm.d.ts +108 -108
- package/dist/apps/data/routes/fee-amm.d.ts.map +1 -1
- package/dist/apps/data/routes/fee-amm.js +10 -2
- package/dist/apps/data/routes/fee-amm.js.map +1 -1
- package/dist/apps/data/routes/indexer.d.ts +43 -43
- package/dist/apps/data/routes/receipts.d.ts +235 -235
- package/dist/apps/data/routes/rpc.js +45 -11
- package/dist/apps/data/routes/rpc.js.map +1 -1
- package/dist/apps/data/routes/transfers.d.ts +81 -81
- package/dist/apps/data/routes/valuation.d.ts +32 -32
- package/dist/apps/data/routes/verified-tokens.d.ts +86 -86
- package/dist/apps/data/routes/webhooks.d.ts +1 -1
- package/dist/apps/data/routes/webhooks.d.ts.map +1 -1
- package/dist/apps/data/routes/webhooks.js +17 -10
- package/dist/apps/data/routes/webhooks.js.map +1 -1
- package/dist/apps/data/routes/zones.d.ts +31 -31
- package/dist/apps/management/App.d.ts +26 -26
- package/dist/apps/management/routes/api-keys.d.ts +246 -246
- package/dist/apps/management/routes/invitations.d.ts +138 -138
- package/dist/apps/management/routes/invite-links.d.ts +168 -168
- package/dist/apps/management/routes/orgs.d.ts +98 -98
- package/dist/apps/management/routes/projects.d.ts +125 -125
- package/dist/apps/management/routes/verified-token-requests.d.ts +95 -95
- package/dist/apps/management/routes/verified-token-requests.d.ts.map +1 -1
- package/dist/apps/management/routes/verified-token-requests.js +7 -9
- package/dist/apps/management/routes/verified-token-requests.js.map +1 -1
- package/dist/apps/management/routes/webhooks.d.ts +423 -423
- package/dist/apps/mcp.d.ts.map +1 -1
- package/dist/apps/mcp.js +16 -3
- package/dist/apps/mcp.js.map +1 -1
- package/dist/apps/mpp/App.d.ts +44 -44
- package/dist/apps/routes/routes/chains.d.ts +25 -25
- package/dist/apps/routes/routes/quotes.d.ts +87 -87
- package/dist/apps/routes/routes/transfers.d.ts +438 -438
- package/dist/db/Db.d.ts.map +1 -1
- package/dist/db/Db.js +5 -0
- package/dist/db/Db.js.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.d.ts +21 -4
- package/dist/db/tables/verifiedTokenRequests.d.ts.map +1 -1
- package/dist/db/tables/verifiedTokenRequests.js +65 -44
- package/dist/db/tables/verifiedTokenRequests.js.map +1 -1
- package/dist/internal/Auth.d.ts +16 -0
- package/dist/internal/Auth.d.ts.map +1 -1
- package/dist/internal/Auth.js +31 -8
- package/dist/internal/Auth.js.map +1 -1
- package/dist/internal/routes/providers/relay.d.ts +1 -1
- package/dist/internal/routes/providers/relay.js +1 -1
- package/dist/internal/routes/providers/relay.js.map +1 -1
- package/package.json +1 -1
- package/src/admin/apps/verified-tokens.test.ts +32 -0
- package/src/admin/apps/verified-tokens.ts +30 -4
- package/src/admin/ui/src/lib/verified-tokens.ts +24 -9
- package/src/admin/ui/src/routes/__root.tsx +1 -1
- package/src/admin/ui/src/routes/organizations.tsx +34 -4
- package/src/admin/ui/src/routes/verified-tokens.tsx +64 -20
- package/src/admin/ui.generated.ts +202 -263
- package/src/apps/data/App.test.ts +26 -0
- package/src/apps/data/routes/fee-amm.test.ts +19 -0
- package/src/apps/data/routes/fee-amm.ts +10 -2
- package/src/apps/data/routes/rpc.test.ts +32 -0
- package/src/apps/data/routes/rpc.ts +47 -10
- package/src/apps/data/routes/webhooks.scan.test.ts +29 -0
- package/src/apps/data/routes/webhooks.test.ts +6 -0
- package/src/apps/data/routes/webhooks.ts +25 -12
- package/src/apps/management/routes/verified-token-requests.test.ts +16 -2
- package/src/apps/management/routes/verified-token-requests.ts +7 -10
- package/src/apps/mcp.test.ts +108 -25
- package/src/apps/mcp.ts +15 -3
- package/src/db/Db.ts +9 -0
- package/src/db/tables/routesDeposits.test.ts +72 -0
- package/src/db/tables/verifiedTokenRequests.test.ts +39 -20
- package/src/db/tables/verifiedTokenRequests.ts +80 -44
- package/src/internal/Auth.test.ts +92 -0
- package/src/internal/Auth.ts +51 -9
- package/src/internal/routes/providers/relay.test.ts +59 -0
- package/src/internal/routes/providers/relay.ts +1 -1
package/dist/App.d.ts
CHANGED
|
@@ -33404,7 +33404,7 @@ declare function compose(options: create.Options): import("hono/hono-base").Hono
|
|
|
33404
33404
|
} | {
|
|
33405
33405
|
output: {
|
|
33406
33406
|
error: {
|
|
33407
|
-
code: "
|
|
33407
|
+
code: "request_pending_exists";
|
|
33408
33408
|
details?: readonly Response.error.Detail[] | undefined;
|
|
33409
33409
|
message: string;
|
|
33410
33410
|
};
|
|
@@ -33431,15 +33431,26 @@ declare function compose(options: create.Options): import("hono/hono-base").Hono
|
|
|
33431
33431
|
};
|
|
33432
33432
|
} | {
|
|
33433
33433
|
output: {
|
|
33434
|
-
|
|
33435
|
-
|
|
33436
|
-
|
|
33437
|
-
|
|
33438
|
-
|
|
33439
|
-
|
|
33434
|
+
address: `0x${string}`;
|
|
33435
|
+
currency: string;
|
|
33436
|
+
decimals: number;
|
|
33437
|
+
logoUri?: string | undefined;
|
|
33438
|
+
name: string;
|
|
33439
|
+
symbol: string;
|
|
33440
|
+
chainId: number;
|
|
33441
|
+
createdAt: string;
|
|
33442
|
+
id: string;
|
|
33443
|
+
logo?: string | undefined;
|
|
33444
|
+
note: string | null;
|
|
33445
|
+
orgId: string;
|
|
33446
|
+
requestedBy: string;
|
|
33447
|
+
reviewNote: string | null;
|
|
33448
|
+
reviewedAt: string | null;
|
|
33449
|
+
status: "approved" | "denied" | "pending";
|
|
33450
|
+
updatedAt: string;
|
|
33440
33451
|
};
|
|
33441
33452
|
outputFormat: "json";
|
|
33442
|
-
status:
|
|
33453
|
+
status: 200;
|
|
33443
33454
|
input: {
|
|
33444
33455
|
param: {
|
|
33445
33456
|
orgId: string;
|
|
@@ -33459,26 +33470,15 @@ declare function compose(options: create.Options): import("hono/hono-base").Hono
|
|
|
33459
33470
|
};
|
|
33460
33471
|
} | {
|
|
33461
33472
|
output: {
|
|
33462
|
-
|
|
33463
|
-
|
|
33464
|
-
|
|
33465
|
-
|
|
33466
|
-
|
|
33467
|
-
|
|
33468
|
-
chainId: number;
|
|
33469
|
-
createdAt: string;
|
|
33470
|
-
id: string;
|
|
33471
|
-
logo?: string | undefined;
|
|
33472
|
-
note: string | null;
|
|
33473
|
-
orgId: string;
|
|
33474
|
-
requestedBy: string;
|
|
33475
|
-
reviewNote: string | null;
|
|
33476
|
-
reviewedAt: string | null;
|
|
33477
|
-
status: "approved" | "denied" | "pending";
|
|
33478
|
-
updatedAt: string;
|
|
33473
|
+
error: {
|
|
33474
|
+
code: "request_limit_reached";
|
|
33475
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
33476
|
+
message: string;
|
|
33477
|
+
};
|
|
33478
|
+
requestId: string;
|
|
33479
33479
|
};
|
|
33480
33480
|
outputFormat: "json";
|
|
33481
|
-
status:
|
|
33481
|
+
status: 409;
|
|
33482
33482
|
input: {
|
|
33483
33483
|
param: {
|
|
33484
33484
|
orgId: string;
|
package/dist/admin/App.d.ts
CHANGED
|
@@ -4206,11 +4206,14 @@ export declare function create(options: create.Options): import("hono/hono-base"
|
|
|
4206
4206
|
orgName: string | null;
|
|
4207
4207
|
reviewedBy: string | null;
|
|
4208
4208
|
}[];
|
|
4209
|
+
nextCursor: string | null;
|
|
4209
4210
|
};
|
|
4210
4211
|
outputFormat: "json";
|
|
4211
4212
|
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
4212
4213
|
input: {
|
|
4213
4214
|
query?: {
|
|
4215
|
+
cursor?: string | string[];
|
|
4216
|
+
limit?: string | string[];
|
|
4214
4217
|
status?: string | string[];
|
|
4215
4218
|
} | undefined;
|
|
4216
4219
|
};
|
package/dist/admin/App.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/admin/App.ts"],"names":[],"mappings":"AAEA,OAAO,EAAa,KAAK,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AACpE,OAAO,KAAK,EAAE,OAAO,EAAE,KAAK,EAAE,MAAM,MAAM,CAAA;AAG1C,OAAO,KAAK,KAAK,MAAM,MAAM,cAAc,CAAA;AAC3C,OAAO,KAAK,KAAK,SAAS,MAAM,2BAA2B,CAAA;AAC3D,OAAO,KAAK,EAAE,MAAM,aAAa,CAAA;AAEjC,OAAO,KAAK,KAAK,KAAK,MAAM,sBAAsB,CAAA;AAClD,OAAO,KAAK,KAAK,OAAO,MAAM,eAAe,CAAA;AAC7C,OAAO,KAAK,SAAS,MAAM,0BAA0B,CAAA;AACrD,OAAO,KAAK,KAAK,KAAK,MAAM,sBAAsB,CAAA;AAClD,OAAO,KAAK,QAAQ,MAAM,yBAAyB,CAAA;AACnD,OAAO,KAAK,IAAI,MAAM,qBAAqB,CAAA;AAc3C,iFAAiF;AACjF,MAAM,MAAM,QAAQ,GAAG;IACrB,+EAA+E;IAC/E,KAAK,EAAE,MAAM,CAAA;CACd,CAAA;AAED,0CAA0C;AAC1C,MAAM,MAAM,WAAW,GAAG;IACxB,SAAS,EAAE,kBAAkB,GAAG;QAC9B,mEAAmE;QACnE,SAAS,EAAE,SAAS,CAAC,MAAM,CAAA;QAC3B,sEAAsE;QACtE,MAAM,EAAE,MAAM,CAAC,MAAM,GAAG,SAAS,CAAA;QACjC,2CAA2C;QAC3C,QAAQ,EAAE,MAAM,CAAA;QAChB,iGAAiG;QACjG,EAAE,EAAE,EAAE,CAAC,MAAM,CAAA;QACb,mDAAmD;QACnD,KAAK,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,CAAA;QAC/B,8CAA8C;QAC9C,SAAS,EAAE,IAAI,CAAC,SAAS,CAAA;QACzB,gFAAgF;QAChF,QAAQ,EAAE,QAAQ,GAAG,IAAI,CAAA;QACzB,iEAAiE;QACjE,EAAE,EAAE;YAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAA;SAAE,CAAA;QAC1B,sEAAsE;QACtE,SAAS,EAAE,SAAS,CAAC,KAAK,GAAG,SAAS,CAAA;QACtC,2CAA2C;QAC3C,OAAO,EAAE,OAAO,CAAC,OAAO,GAAG,SAAS,CAAA;QACpC,6CAA6C;QAC7C,KAAK,EAAE,SAAS,KAAK,EAAE,CAAA;KACxB,CAAA;CACF,CAAA;AAED,+DAA+D;AAC/D,MAAM,MAAM,GAAG,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAA;AAE3C,yCAAyC;AACzC,wBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,OAAO
|
|
1
|
+
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/admin/App.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAnCrC,MAAM;;;;;;oBAoFE,aAAa;;;;;;;;wBAmH7B;AAiBD,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B;;;;OAIG;IACH,KAAK,MAAM,GAAG,MAAM,CAAC,MAAM,CAAA;IAE3B,kCAAkC;IAClC,KAAK,OAAO,GAAG;QACb,mEAAmE;QACnE,SAAS,EAAE,SAAS,CAAC,MAAM,CAAA;QAC3B;;;WAGG;QACH,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;QAC3B;;;;WAIG;QACH,EAAE,EAAE,EAAE,CAAC,MAAM,CAAA;QACb,oEAAoE;QACpE,KAAK,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,CAAA;QAChC;;;;WAIG;QACH,QAAQ,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,QAAQ,GAAG,IAAI,GAAG,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAA;QAC1E;;;WAGG;QACH,EAAE,EAAE;YAAE,KAAK,EAAE,KAAK,CAAC,KAAK,CAAA;SAAE,CAAA;QAC1B,qDAAqD;QACrD,OAAO,CAAC,EAAE,OAAO,CAAC,OAAO,GAAG,SAAS,CAAA;QACrC,wDAAwD;QACxD,oBAAoB,EAAE,OAAO,CAAA;QAC7B,4EAA4E;QAC5E,SAAS,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,OAAO,GAAG,SAAS,CAAA;QAChD,sDAAsD;QACtD,GAAG,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,GAAG,GAAG,SAAS,CAAA;QACpC;;;WAGG;QACH,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,GAAG,SAAS,CAAA;QAC3B,oFAAoF;QACpF,KAAK,CAAC,EAAE,IAAI,GAAG,SAAS,KAAK,EAAE,GAAG,SAAS,CAAA;KAC5C,CAAA;IAED,mEAAmE;IACnE,KAAK,EAAE,GAAG;QACR,2EAA2E;QAC3E,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;QAC7B,0EAA0E;QAC1E,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;KAC/B,CAAA;CACF"}
|
|
@@ -211,14 +211,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
211
211
|
$post: {
|
|
212
212
|
output: {
|
|
213
213
|
error: {
|
|
214
|
-
code: "
|
|
214
|
+
code: "not_found";
|
|
215
215
|
details?: readonly Response.error.Detail[] | undefined;
|
|
216
216
|
message: string;
|
|
217
217
|
};
|
|
218
218
|
requestId: string;
|
|
219
219
|
};
|
|
220
220
|
outputFormat: "json";
|
|
221
|
-
status:
|
|
221
|
+
status: 404;
|
|
222
222
|
input: {
|
|
223
223
|
json: {
|
|
224
224
|
allowedIps?: readonly string[] | undefined;
|
|
@@ -265,14 +265,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
265
265
|
} | {
|
|
266
266
|
output: {
|
|
267
267
|
error: {
|
|
268
|
-
code: "
|
|
268
|
+
code: "upstream_error";
|
|
269
269
|
details?: readonly Response.error.Detail[] | undefined;
|
|
270
270
|
message: string;
|
|
271
271
|
};
|
|
272
272
|
requestId: string;
|
|
273
273
|
};
|
|
274
274
|
outputFormat: "json";
|
|
275
|
-
status:
|
|
275
|
+
status: 502;
|
|
276
276
|
input: {
|
|
277
277
|
json: {
|
|
278
278
|
allowedIps?: readonly string[] | undefined;
|
|
@@ -403,15 +403,28 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
403
403
|
"/:id/rotate": {
|
|
404
404
|
$post: {
|
|
405
405
|
output: {
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
406
|
+
allowedIps: readonly string[];
|
|
407
|
+
billingActive?: boolean | undefined;
|
|
408
|
+
environment: "production" | "sandbox";
|
|
409
|
+
id: string;
|
|
410
|
+
name?: string | undefined;
|
|
411
|
+
orgId: string;
|
|
412
|
+
projectId?: string | undefined;
|
|
413
|
+
rateLimits?: {
|
|
414
|
+
[x: string]: {
|
|
415
|
+
limit: number;
|
|
416
|
+
period: "minute" | "second";
|
|
417
|
+
};
|
|
418
|
+
} | undefined;
|
|
419
|
+
scopes: readonly string[];
|
|
420
|
+
createdAt: string;
|
|
421
|
+
createdBy?: string | undefined;
|
|
422
|
+
expiresAt?: string | undefined;
|
|
423
|
+
tokenLast4: string;
|
|
424
|
+
token: string;
|
|
412
425
|
};
|
|
413
426
|
outputFormat: "json";
|
|
414
|
-
status:
|
|
427
|
+
status: 200;
|
|
415
428
|
input: {
|
|
416
429
|
param: {
|
|
417
430
|
id: string;
|
|
@@ -420,14 +433,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
420
433
|
} | {
|
|
421
434
|
output: {
|
|
422
435
|
error: {
|
|
423
|
-
code: "
|
|
436
|
+
code: "not_found";
|
|
424
437
|
details?: readonly Response.error.Detail[] | undefined;
|
|
425
438
|
message: string;
|
|
426
439
|
};
|
|
427
440
|
requestId: string;
|
|
428
441
|
};
|
|
429
442
|
outputFormat: "json";
|
|
430
|
-
status:
|
|
443
|
+
status: 404;
|
|
431
444
|
input: {
|
|
432
445
|
param: {
|
|
433
446
|
id: string;
|
|
@@ -436,14 +449,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
436
449
|
} | {
|
|
437
450
|
output: {
|
|
438
451
|
error: {
|
|
439
|
-
code: "
|
|
452
|
+
code: "api_key_limit_reached";
|
|
440
453
|
details?: readonly Response.error.Detail[] | undefined;
|
|
441
454
|
message: string;
|
|
442
455
|
};
|
|
443
456
|
requestId: string;
|
|
444
457
|
};
|
|
445
458
|
outputFormat: "json";
|
|
446
|
-
status:
|
|
459
|
+
status: 409;
|
|
447
460
|
input: {
|
|
448
461
|
param: {
|
|
449
462
|
id: string;
|
|
@@ -451,28 +464,15 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
451
464
|
};
|
|
452
465
|
} | {
|
|
453
466
|
output: {
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
projectId?: string | undefined;
|
|
461
|
-
rateLimits?: {
|
|
462
|
-
[x: string]: {
|
|
463
|
-
limit: number;
|
|
464
|
-
period: "minute" | "second";
|
|
465
|
-
};
|
|
466
|
-
} | undefined;
|
|
467
|
-
scopes: readonly string[];
|
|
468
|
-
createdAt: string;
|
|
469
|
-
createdBy?: string | undefined;
|
|
470
|
-
expiresAt?: string | undefined;
|
|
471
|
-
tokenLast4: string;
|
|
472
|
-
token: string;
|
|
467
|
+
error: {
|
|
468
|
+
code: "upstream_error";
|
|
469
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
470
|
+
message: string;
|
|
471
|
+
};
|
|
472
|
+
requestId: string;
|
|
473
473
|
};
|
|
474
474
|
outputFormat: "json";
|
|
475
|
-
status:
|
|
475
|
+
status: 502;
|
|
476
476
|
input: {
|
|
477
477
|
param: {
|
|
478
478
|
id: string;
|
|
@@ -485,14 +485,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
485
485
|
$patch: {
|
|
486
486
|
output: {
|
|
487
487
|
error: {
|
|
488
|
-
code: "
|
|
488
|
+
code: "not_found";
|
|
489
489
|
details?: readonly Response.error.Detail[] | undefined;
|
|
490
490
|
message: string;
|
|
491
491
|
};
|
|
492
492
|
requestId: string;
|
|
493
493
|
};
|
|
494
494
|
outputFormat: "json";
|
|
495
|
-
status:
|
|
495
|
+
status: 404;
|
|
496
496
|
input: {
|
|
497
497
|
param: {
|
|
498
498
|
id: string;
|
|
@@ -541,14 +541,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
541
541
|
} | {
|
|
542
542
|
output: {
|
|
543
543
|
error: {
|
|
544
|
-
code: "
|
|
544
|
+
code: "project_organization_mismatch";
|
|
545
545
|
details?: readonly Response.error.Detail[] | undefined;
|
|
546
546
|
message: string;
|
|
547
547
|
};
|
|
548
548
|
requestId: string;
|
|
549
549
|
};
|
|
550
550
|
outputFormat: "json";
|
|
551
|
-
status:
|
|
551
|
+
status: 409;
|
|
552
552
|
input: {
|
|
553
553
|
param: {
|
|
554
554
|
id: string;
|
|
@@ -569,14 +569,14 @@ export declare function apiKeys(): import("hono/hono-base").HonoBase<App.Environ
|
|
|
569
569
|
} | {
|
|
570
570
|
output: {
|
|
571
571
|
error: {
|
|
572
|
-
code: "
|
|
572
|
+
code: "upstream_error";
|
|
573
573
|
details?: readonly Response.error.Detail[] | undefined;
|
|
574
574
|
message: string;
|
|
575
575
|
};
|
|
576
576
|
requestId: string;
|
|
577
577
|
};
|
|
578
578
|
outputFormat: "json";
|
|
579
|
-
status:
|
|
579
|
+
status: 502;
|
|
580
580
|
input: {
|
|
581
581
|
param: {
|
|
582
582
|
id: string;
|
|
@@ -1967,22 +1967,6 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
1967
1967
|
} & {
|
|
1968
1968
|
"/transfers/:id": {
|
|
1969
1969
|
$get: {
|
|
1970
|
-
output: {
|
|
1971
|
-
error: {
|
|
1972
|
-
code: "routes_transfer_not_found";
|
|
1973
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
1974
|
-
message: string;
|
|
1975
|
-
};
|
|
1976
|
-
requestId: string;
|
|
1977
|
-
};
|
|
1978
|
-
outputFormat: "json";
|
|
1979
|
-
status: 404;
|
|
1980
|
-
input: {
|
|
1981
|
-
param: {
|
|
1982
|
-
id: string;
|
|
1983
|
-
};
|
|
1984
|
-
};
|
|
1985
|
-
} | {
|
|
1986
1970
|
output: {
|
|
1987
1971
|
createdAt: string;
|
|
1988
1972
|
destinationAmount?: {
|
|
@@ -2150,6 +2134,22 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
2150
2134
|
id: string;
|
|
2151
2135
|
};
|
|
2152
2136
|
};
|
|
2137
|
+
} | {
|
|
2138
|
+
output: {
|
|
2139
|
+
error: {
|
|
2140
|
+
code: "routes_transfer_not_found";
|
|
2141
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
2142
|
+
message: string;
|
|
2143
|
+
};
|
|
2144
|
+
requestId: string;
|
|
2145
|
+
};
|
|
2146
|
+
outputFormat: "json";
|
|
2147
|
+
status: 404;
|
|
2148
|
+
input: {
|
|
2149
|
+
param: {
|
|
2150
|
+
id: string;
|
|
2151
|
+
};
|
|
2152
|
+
};
|
|
2153
2153
|
};
|
|
2154
2154
|
};
|
|
2155
2155
|
} & {
|
|
@@ -2253,22 +2253,6 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
2253
2253
|
} & {
|
|
2254
2254
|
"/deposit-addresses/:id": {
|
|
2255
2255
|
$get: {
|
|
2256
|
-
output: {
|
|
2257
|
-
error: {
|
|
2258
|
-
code: "routes_deposit_address_not_found";
|
|
2259
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
2260
|
-
message: string;
|
|
2261
|
-
};
|
|
2262
|
-
requestId: string;
|
|
2263
|
-
};
|
|
2264
|
-
outputFormat: "json";
|
|
2265
|
-
status: 404;
|
|
2266
|
-
input: {
|
|
2267
|
-
param: {
|
|
2268
|
-
id: string;
|
|
2269
|
-
};
|
|
2270
|
-
};
|
|
2271
|
-
} | {
|
|
2272
2256
|
output: {
|
|
2273
2257
|
address: string;
|
|
2274
2258
|
createdAt: string;
|
|
@@ -2349,6 +2333,22 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
2349
2333
|
id: string;
|
|
2350
2334
|
};
|
|
2351
2335
|
};
|
|
2336
|
+
} | {
|
|
2337
|
+
output: {
|
|
2338
|
+
error: {
|
|
2339
|
+
code: "routes_deposit_address_not_found";
|
|
2340
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
2341
|
+
message: string;
|
|
2342
|
+
};
|
|
2343
|
+
requestId: string;
|
|
2344
|
+
};
|
|
2345
|
+
outputFormat: "json";
|
|
2346
|
+
status: 404;
|
|
2347
|
+
input: {
|
|
2348
|
+
param: {
|
|
2349
|
+
id: string;
|
|
2350
|
+
};
|
|
2351
|
+
};
|
|
2352
2352
|
};
|
|
2353
2353
|
};
|
|
2354
2354
|
} & {
|
|
@@ -2513,38 +2513,6 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
2513
2513
|
} & {
|
|
2514
2514
|
"/deposits/:id": {
|
|
2515
2515
|
$get: {
|
|
2516
|
-
output: {
|
|
2517
|
-
error: {
|
|
2518
|
-
code: "routes_deposit_address_not_found";
|
|
2519
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
2520
|
-
message: string;
|
|
2521
|
-
};
|
|
2522
|
-
requestId: string;
|
|
2523
|
-
};
|
|
2524
|
-
outputFormat: "json";
|
|
2525
|
-
status: 404;
|
|
2526
|
-
input: {
|
|
2527
|
-
param: {
|
|
2528
|
-
id: string;
|
|
2529
|
-
};
|
|
2530
|
-
};
|
|
2531
|
-
} | {
|
|
2532
|
-
output: {
|
|
2533
|
-
error: {
|
|
2534
|
-
code: "routes_deposit_not_found";
|
|
2535
|
-
details?: readonly Response.error.Detail[] | undefined;
|
|
2536
|
-
message: string;
|
|
2537
|
-
};
|
|
2538
|
-
requestId: string;
|
|
2539
|
-
};
|
|
2540
|
-
outputFormat: "json";
|
|
2541
|
-
status: 404;
|
|
2542
|
-
input: {
|
|
2543
|
-
param: {
|
|
2544
|
-
id: string;
|
|
2545
|
-
};
|
|
2546
|
-
};
|
|
2547
|
-
} | {
|
|
2548
2516
|
output: {
|
|
2549
2517
|
createdAt: string;
|
|
2550
2518
|
depositAddressId: string;
|
|
@@ -2758,6 +2726,38 @@ export declare function routes(): import("hono/hono-base").HonoBase<App.Environm
|
|
|
2758
2726
|
id: string;
|
|
2759
2727
|
};
|
|
2760
2728
|
};
|
|
2729
|
+
} | {
|
|
2730
|
+
output: {
|
|
2731
|
+
error: {
|
|
2732
|
+
code: "routes_deposit_address_not_found";
|
|
2733
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
2734
|
+
message: string;
|
|
2735
|
+
};
|
|
2736
|
+
requestId: string;
|
|
2737
|
+
};
|
|
2738
|
+
outputFormat: "json";
|
|
2739
|
+
status: 404;
|
|
2740
|
+
input: {
|
|
2741
|
+
param: {
|
|
2742
|
+
id: string;
|
|
2743
|
+
};
|
|
2744
|
+
};
|
|
2745
|
+
} | {
|
|
2746
|
+
output: {
|
|
2747
|
+
error: {
|
|
2748
|
+
code: "routes_deposit_not_found";
|
|
2749
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
2750
|
+
message: string;
|
|
2751
|
+
};
|
|
2752
|
+
requestId: string;
|
|
2753
|
+
};
|
|
2754
|
+
outputFormat: "json";
|
|
2755
|
+
status: 404;
|
|
2756
|
+
input: {
|
|
2757
|
+
param: {
|
|
2758
|
+
id: string;
|
|
2759
|
+
};
|
|
2760
|
+
};
|
|
2761
2761
|
};
|
|
2762
2762
|
};
|
|
2763
2763
|
}, "/", "/deposits/:id">;
|