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
|
@@ -58,6 +58,19 @@ export declare namespace schema {
|
|
|
58
58
|
export declare function orgs(): import("hono/hono-base").HonoBase<App.Environment, {
|
|
59
59
|
"/v1/orgs": {
|
|
60
60
|
$get: {
|
|
61
|
+
output: {
|
|
62
|
+
data: {
|
|
63
|
+
createdAt: string;
|
|
64
|
+
id: string;
|
|
65
|
+
name: string;
|
|
66
|
+
role?: "admin" | "member" | "owner" | undefined;
|
|
67
|
+
updatedAt: string;
|
|
68
|
+
}[];
|
|
69
|
+
};
|
|
70
|
+
outputFormat: "json";
|
|
71
|
+
status: 200;
|
|
72
|
+
input: {};
|
|
73
|
+
} | {
|
|
61
74
|
output: {
|
|
62
75
|
error: {
|
|
63
76
|
code: "api_key_malformed";
|
|
@@ -117,24 +130,26 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
117
130
|
outputFormat: "json";
|
|
118
131
|
status: 502;
|
|
119
132
|
input: {};
|
|
120
|
-
} | {
|
|
121
|
-
output: {
|
|
122
|
-
data: {
|
|
123
|
-
createdAt: string;
|
|
124
|
-
id: string;
|
|
125
|
-
name: string;
|
|
126
|
-
role?: "admin" | "member" | "owner" | undefined;
|
|
127
|
-
updatedAt: string;
|
|
128
|
-
}[];
|
|
129
|
-
};
|
|
130
|
-
outputFormat: "json";
|
|
131
|
-
status: 200;
|
|
132
|
-
input: {};
|
|
133
133
|
};
|
|
134
134
|
};
|
|
135
135
|
} & {
|
|
136
136
|
"/v1/orgs": {
|
|
137
137
|
$post: {
|
|
138
|
+
output: {
|
|
139
|
+
createdAt: string;
|
|
140
|
+
id: string;
|
|
141
|
+
name: string;
|
|
142
|
+
role?: "admin" | "member" | "owner" | undefined;
|
|
143
|
+
updatedAt: string;
|
|
144
|
+
};
|
|
145
|
+
outputFormat: "json";
|
|
146
|
+
status: 200;
|
|
147
|
+
input: {
|
|
148
|
+
json: {
|
|
149
|
+
name: string;
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
} | {
|
|
138
153
|
output: {
|
|
139
154
|
error: {
|
|
140
155
|
code: "api_key_malformed";
|
|
@@ -153,14 +168,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
153
168
|
} | {
|
|
154
169
|
output: {
|
|
155
170
|
error: {
|
|
156
|
-
code: "
|
|
171
|
+
code: "body_invalid";
|
|
157
172
|
details?: readonly Response.error.Detail[] | undefined;
|
|
158
173
|
message: string;
|
|
159
174
|
};
|
|
160
175
|
requestId: string;
|
|
161
176
|
};
|
|
162
177
|
outputFormat: "json";
|
|
163
|
-
status:
|
|
178
|
+
status: 400;
|
|
164
179
|
input: {
|
|
165
180
|
json: {
|
|
166
181
|
name: string;
|
|
@@ -169,14 +184,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
169
184
|
} | {
|
|
170
185
|
output: {
|
|
171
186
|
error: {
|
|
172
|
-
code: "
|
|
187
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
173
188
|
details?: readonly Response.error.Detail[] | undefined;
|
|
174
189
|
message: string;
|
|
175
190
|
};
|
|
176
191
|
requestId: string;
|
|
177
192
|
};
|
|
178
193
|
outputFormat: "json";
|
|
179
|
-
status:
|
|
194
|
+
status: 401;
|
|
180
195
|
input: {
|
|
181
196
|
json: {
|
|
182
197
|
name: string;
|
|
@@ -201,20 +216,24 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
201
216
|
} | {
|
|
202
217
|
output: {
|
|
203
218
|
error: {
|
|
204
|
-
code: "
|
|
219
|
+
code: "upstream_error";
|
|
205
220
|
details?: readonly Response.error.Detail[] | undefined;
|
|
206
221
|
message: string;
|
|
207
222
|
};
|
|
208
223
|
requestId: string;
|
|
209
224
|
};
|
|
210
225
|
outputFormat: "json";
|
|
211
|
-
status:
|
|
226
|
+
status: 502;
|
|
212
227
|
input: {
|
|
213
228
|
json: {
|
|
214
229
|
name: string;
|
|
215
230
|
};
|
|
216
231
|
};
|
|
217
|
-
}
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
} & {
|
|
235
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
236
|
+
$get: {
|
|
218
237
|
output: {
|
|
219
238
|
createdAt: string;
|
|
220
239
|
id: string;
|
|
@@ -225,15 +244,11 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
225
244
|
outputFormat: "json";
|
|
226
245
|
status: 200;
|
|
227
246
|
input: {
|
|
228
|
-
|
|
229
|
-
|
|
247
|
+
param: {
|
|
248
|
+
orgId: string;
|
|
230
249
|
};
|
|
231
250
|
};
|
|
232
|
-
}
|
|
233
|
-
};
|
|
234
|
-
} & {
|
|
235
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
236
|
-
$get: {
|
|
251
|
+
} | {
|
|
237
252
|
output: {
|
|
238
253
|
error: {
|
|
239
254
|
code: "api_key_malformed";
|
|
@@ -252,14 +267,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
252
267
|
} | {
|
|
253
268
|
output: {
|
|
254
269
|
error: {
|
|
255
|
-
code: "
|
|
270
|
+
code: "param_invalid";
|
|
256
271
|
details?: readonly Response.error.Detail[] | undefined;
|
|
257
272
|
message: string;
|
|
258
273
|
};
|
|
259
274
|
requestId: string;
|
|
260
275
|
};
|
|
261
276
|
outputFormat: "json";
|
|
262
|
-
status:
|
|
277
|
+
status: 400;
|
|
263
278
|
input: {
|
|
264
279
|
param: {
|
|
265
280
|
orgId: string;
|
|
@@ -268,14 +283,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
268
283
|
} | {
|
|
269
284
|
output: {
|
|
270
285
|
error: {
|
|
271
|
-
code: "
|
|
286
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
272
287
|
details?: readonly Response.error.Detail[] | undefined;
|
|
273
288
|
message: string;
|
|
274
289
|
};
|
|
275
290
|
requestId: string;
|
|
276
291
|
};
|
|
277
292
|
outputFormat: "json";
|
|
278
|
-
status:
|
|
293
|
+
status: 401;
|
|
279
294
|
input: {
|
|
280
295
|
param: {
|
|
281
296
|
orgId: string;
|
|
@@ -284,14 +299,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
284
299
|
} | {
|
|
285
300
|
output: {
|
|
286
301
|
error: {
|
|
287
|
-
code: "
|
|
302
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
288
303
|
details?: readonly Response.error.Detail[] | undefined;
|
|
289
304
|
message: string;
|
|
290
305
|
};
|
|
291
306
|
requestId: string;
|
|
292
307
|
};
|
|
293
308
|
outputFormat: "json";
|
|
294
|
-
status:
|
|
309
|
+
status: 403;
|
|
295
310
|
input: {
|
|
296
311
|
param: {
|
|
297
312
|
orgId: string;
|
|
@@ -316,20 +331,24 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
316
331
|
} | {
|
|
317
332
|
output: {
|
|
318
333
|
error: {
|
|
319
|
-
code: "
|
|
334
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
320
335
|
details?: readonly Response.error.Detail[] | undefined;
|
|
321
336
|
message: string;
|
|
322
337
|
};
|
|
323
338
|
requestId: string;
|
|
324
339
|
};
|
|
325
340
|
outputFormat: "json";
|
|
326
|
-
status:
|
|
341
|
+
status: 429;
|
|
327
342
|
input: {
|
|
328
343
|
param: {
|
|
329
344
|
orgId: string;
|
|
330
345
|
};
|
|
331
346
|
};
|
|
332
|
-
}
|
|
347
|
+
};
|
|
348
|
+
};
|
|
349
|
+
} & {
|
|
350
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
351
|
+
$patch: {
|
|
333
352
|
output: {
|
|
334
353
|
createdAt: string;
|
|
335
354
|
id: string;
|
|
@@ -343,12 +362,12 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
343
362
|
param: {
|
|
344
363
|
orgId: string;
|
|
345
364
|
};
|
|
365
|
+
} & {
|
|
366
|
+
json: {
|
|
367
|
+
name: string;
|
|
368
|
+
};
|
|
346
369
|
};
|
|
347
|
-
}
|
|
348
|
-
};
|
|
349
|
-
} & {
|
|
350
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
351
|
-
$patch: {
|
|
370
|
+
} | {
|
|
352
371
|
output: {
|
|
353
372
|
error: {
|
|
354
373
|
code: "api_key_malformed";
|
|
@@ -371,14 +390,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
371
390
|
} | {
|
|
372
391
|
output: {
|
|
373
392
|
error: {
|
|
374
|
-
code: "
|
|
393
|
+
code: "body_invalid";
|
|
375
394
|
details?: readonly Response.error.Detail[] | undefined;
|
|
376
395
|
message: string;
|
|
377
396
|
};
|
|
378
397
|
requestId: string;
|
|
379
398
|
};
|
|
380
399
|
outputFormat: "json";
|
|
381
|
-
status:
|
|
400
|
+
status: 400;
|
|
382
401
|
input: {
|
|
383
402
|
param: {
|
|
384
403
|
orgId: string;
|
|
@@ -391,14 +410,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
391
410
|
} | {
|
|
392
411
|
output: {
|
|
393
412
|
error: {
|
|
394
|
-
code: "
|
|
413
|
+
code: "param_invalid";
|
|
395
414
|
details?: readonly Response.error.Detail[] | undefined;
|
|
396
415
|
message: string;
|
|
397
416
|
};
|
|
398
417
|
requestId: string;
|
|
399
418
|
};
|
|
400
419
|
outputFormat: "json";
|
|
401
|
-
status:
|
|
420
|
+
status: 400;
|
|
402
421
|
input: {
|
|
403
422
|
param: {
|
|
404
423
|
orgId: string;
|
|
@@ -411,14 +430,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
411
430
|
} | {
|
|
412
431
|
output: {
|
|
413
432
|
error: {
|
|
414
|
-
code: "
|
|
433
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
415
434
|
details?: readonly Response.error.Detail[] | undefined;
|
|
416
435
|
message: string;
|
|
417
436
|
};
|
|
418
437
|
requestId: string;
|
|
419
438
|
};
|
|
420
439
|
outputFormat: "json";
|
|
421
|
-
status:
|
|
440
|
+
status: 401;
|
|
422
441
|
input: {
|
|
423
442
|
param: {
|
|
424
443
|
orgId: string;
|
|
@@ -431,14 +450,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
431
450
|
} | {
|
|
432
451
|
output: {
|
|
433
452
|
error: {
|
|
434
|
-
code: "
|
|
453
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
435
454
|
details?: readonly Response.error.Detail[] | undefined;
|
|
436
455
|
message: string;
|
|
437
456
|
};
|
|
438
457
|
requestId: string;
|
|
439
458
|
};
|
|
440
459
|
outputFormat: "json";
|
|
441
|
-
status:
|
|
460
|
+
status: 403;
|
|
442
461
|
input: {
|
|
443
462
|
param: {
|
|
444
463
|
orgId: string;
|
|
@@ -451,14 +470,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
451
470
|
} | {
|
|
452
471
|
output: {
|
|
453
472
|
error: {
|
|
454
|
-
code: "
|
|
473
|
+
code: "forbidden";
|
|
455
474
|
details?: readonly Response.error.Detail[] | undefined;
|
|
456
475
|
message: string;
|
|
457
476
|
};
|
|
458
477
|
requestId: string;
|
|
459
478
|
};
|
|
460
479
|
outputFormat: "json";
|
|
461
|
-
status:
|
|
480
|
+
status: 403;
|
|
462
481
|
input: {
|
|
463
482
|
param: {
|
|
464
483
|
orgId: string;
|
|
@@ -471,14 +490,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
471
490
|
} | {
|
|
472
491
|
output: {
|
|
473
492
|
error: {
|
|
474
|
-
code: "
|
|
493
|
+
code: "organization_not_found";
|
|
475
494
|
details?: readonly Response.error.Detail[] | undefined;
|
|
476
495
|
message: string;
|
|
477
496
|
};
|
|
478
497
|
requestId: string;
|
|
479
498
|
};
|
|
480
499
|
outputFormat: "json";
|
|
481
|
-
status:
|
|
500
|
+
status: 404;
|
|
482
501
|
input: {
|
|
483
502
|
param: {
|
|
484
503
|
orgId: string;
|
|
@@ -491,14 +510,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
491
510
|
} | {
|
|
492
511
|
output: {
|
|
493
512
|
error: {
|
|
494
|
-
code: "
|
|
513
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
495
514
|
details?: readonly Response.error.Detail[] | undefined;
|
|
496
515
|
message: string;
|
|
497
516
|
};
|
|
498
517
|
requestId: string;
|
|
499
518
|
};
|
|
500
519
|
outputFormat: "json";
|
|
501
|
-
status:
|
|
520
|
+
status: 429;
|
|
502
521
|
input: {
|
|
503
522
|
param: {
|
|
504
523
|
orgId: string;
|
|
@@ -511,14 +530,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
511
530
|
} | {
|
|
512
531
|
output: {
|
|
513
532
|
error: {
|
|
514
|
-
code: "
|
|
533
|
+
code: "upstream_error";
|
|
515
534
|
details?: readonly Response.error.Detail[] | undefined;
|
|
516
535
|
message: string;
|
|
517
536
|
};
|
|
518
537
|
requestId: string;
|
|
519
538
|
};
|
|
520
539
|
outputFormat: "json";
|
|
521
|
-
status:
|
|
540
|
+
status: 502;
|
|
522
541
|
input: {
|
|
523
542
|
param: {
|
|
524
543
|
orgId: string;
|
|
@@ -528,13 +547,13 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
528
547
|
name: string;
|
|
529
548
|
};
|
|
530
549
|
};
|
|
531
|
-
}
|
|
550
|
+
};
|
|
551
|
+
};
|
|
552
|
+
} & {
|
|
553
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
554
|
+
$delete: {
|
|
532
555
|
output: {
|
|
533
|
-
createdAt: string;
|
|
534
556
|
id: string;
|
|
535
|
-
name: string;
|
|
536
|
-
role?: "admin" | "member" | "owner" | undefined;
|
|
537
|
-
updatedAt: string;
|
|
538
557
|
};
|
|
539
558
|
outputFormat: "json";
|
|
540
559
|
status: 200;
|
|
@@ -542,16 +561,8 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
542
561
|
param: {
|
|
543
562
|
orgId: string;
|
|
544
563
|
};
|
|
545
|
-
} & {
|
|
546
|
-
json: {
|
|
547
|
-
name: string;
|
|
548
|
-
};
|
|
549
564
|
};
|
|
550
|
-
}
|
|
551
|
-
};
|
|
552
|
-
} & {
|
|
553
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
554
|
-
$delete: {
|
|
565
|
+
} | {
|
|
555
566
|
output: {
|
|
556
567
|
error: {
|
|
557
568
|
code: "api_key_malformed";
|
|
@@ -570,14 +581,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
570
581
|
} | {
|
|
571
582
|
output: {
|
|
572
583
|
error: {
|
|
573
|
-
code: "
|
|
584
|
+
code: "param_invalid";
|
|
574
585
|
details?: readonly Response.error.Detail[] | undefined;
|
|
575
586
|
message: string;
|
|
576
587
|
};
|
|
577
588
|
requestId: string;
|
|
578
589
|
};
|
|
579
590
|
outputFormat: "json";
|
|
580
|
-
status:
|
|
591
|
+
status: 400;
|
|
581
592
|
input: {
|
|
582
593
|
param: {
|
|
583
594
|
orgId: string;
|
|
@@ -586,14 +597,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
586
597
|
} | {
|
|
587
598
|
output: {
|
|
588
599
|
error: {
|
|
589
|
-
code: "
|
|
600
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
590
601
|
details?: readonly Response.error.Detail[] | undefined;
|
|
591
602
|
message: string;
|
|
592
603
|
};
|
|
593
604
|
requestId: string;
|
|
594
605
|
};
|
|
595
606
|
outputFormat: "json";
|
|
596
|
-
status:
|
|
607
|
+
status: 401;
|
|
597
608
|
input: {
|
|
598
609
|
param: {
|
|
599
610
|
orgId: string;
|
|
@@ -602,14 +613,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
602
613
|
} | {
|
|
603
614
|
output: {
|
|
604
615
|
error: {
|
|
605
|
-
code: "
|
|
616
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
606
617
|
details?: readonly Response.error.Detail[] | undefined;
|
|
607
618
|
message: string;
|
|
608
619
|
};
|
|
609
620
|
requestId: string;
|
|
610
621
|
};
|
|
611
622
|
outputFormat: "json";
|
|
612
|
-
status:
|
|
623
|
+
status: 403;
|
|
613
624
|
input: {
|
|
614
625
|
param: {
|
|
615
626
|
orgId: string;
|
|
@@ -618,14 +629,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
618
629
|
} | {
|
|
619
630
|
output: {
|
|
620
631
|
error: {
|
|
621
|
-
code: "
|
|
632
|
+
code: "forbidden";
|
|
622
633
|
details?: readonly Response.error.Detail[] | undefined;
|
|
623
634
|
message: string;
|
|
624
635
|
};
|
|
625
636
|
requestId: string;
|
|
626
637
|
};
|
|
627
638
|
outputFormat: "json";
|
|
628
|
-
status:
|
|
639
|
+
status: 403;
|
|
629
640
|
input: {
|
|
630
641
|
param: {
|
|
631
642
|
orgId: string;
|
|
@@ -650,14 +661,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
650
661
|
} | {
|
|
651
662
|
output: {
|
|
652
663
|
error: {
|
|
653
|
-
code: "
|
|
664
|
+
code: "sponsorships_unreported";
|
|
654
665
|
details?: readonly Response.error.Detail[] | undefined;
|
|
655
666
|
message: string;
|
|
656
667
|
};
|
|
657
668
|
requestId: string;
|
|
658
669
|
};
|
|
659
670
|
outputFormat: "json";
|
|
660
|
-
status:
|
|
671
|
+
status: 409;
|
|
661
672
|
input: {
|
|
662
673
|
param: {
|
|
663
674
|
orgId: string;
|
|
@@ -666,14 +677,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
666
677
|
} | {
|
|
667
678
|
output: {
|
|
668
679
|
error: {
|
|
669
|
-
code: "
|
|
680
|
+
code: "routes_deposit_addresses_active";
|
|
670
681
|
details?: readonly Response.error.Detail[] | undefined;
|
|
671
682
|
message: string;
|
|
672
683
|
};
|
|
673
684
|
requestId: string;
|
|
674
685
|
};
|
|
675
686
|
outputFormat: "json";
|
|
676
|
-
status:
|
|
687
|
+
status: 409;
|
|
677
688
|
input: {
|
|
678
689
|
param: {
|
|
679
690
|
orgId: string;
|
|
@@ -682,14 +693,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
682
693
|
} | {
|
|
683
694
|
output: {
|
|
684
695
|
error: {
|
|
685
|
-
code: "
|
|
696
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
686
697
|
details?: readonly Response.error.Detail[] | undefined;
|
|
687
698
|
message: string;
|
|
688
699
|
};
|
|
689
700
|
requestId: string;
|
|
690
701
|
};
|
|
691
702
|
outputFormat: "json";
|
|
692
|
-
status:
|
|
703
|
+
status: 429;
|
|
693
704
|
input: {
|
|
694
705
|
param: {
|
|
695
706
|
orgId: string;
|
|
@@ -698,25 +709,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
698
709
|
} | {
|
|
699
710
|
output: {
|
|
700
711
|
error: {
|
|
701
|
-
code: "
|
|
712
|
+
code: "upstream_error";
|
|
702
713
|
details?: readonly Response.error.Detail[] | undefined;
|
|
703
714
|
message: string;
|
|
704
715
|
};
|
|
705
716
|
requestId: string;
|
|
706
717
|
};
|
|
707
718
|
outputFormat: "json";
|
|
708
|
-
status:
|
|
709
|
-
input: {
|
|
710
|
-
param: {
|
|
711
|
-
orgId: string;
|
|
712
|
-
};
|
|
713
|
-
};
|
|
714
|
-
} | {
|
|
715
|
-
output: {
|
|
716
|
-
id: string;
|
|
717
|
-
};
|
|
718
|
-
outputFormat: "json";
|
|
719
|
-
status: 200;
|
|
719
|
+
status: 502;
|
|
720
720
|
input: {
|
|
721
721
|
param: {
|
|
722
722
|
orgId: string;
|