tapimo 0.4.3 → 0.4.4
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 +2491 -2861
- package/dist/App.d.ts.map +1 -1
- package/dist/admin/apps/verified-tokens.d.ts +57 -57
- package/dist/apps/data/App.d.ts +2354 -2724
- package/dist/apps/data/App.d.ts.map +1 -1
- package/dist/apps/data/FundingRouteProviders.d.ts +3 -110
- package/dist/apps/data/FundingRouteProviders.d.ts.map +1 -1
- package/dist/apps/data/FundingRouteProviders.js +1 -302
- package/dist/apps/data/FundingRouteProviders.js.map +1 -1
- package/dist/apps/data/routes/exchanges.d.ts +455 -455
- package/dist/apps/data/routes/fee-amm.d.ts +92 -92
- package/dist/apps/data/routes/funding.d.ts +138 -730
- package/dist/apps/data/routes/funding.d.ts.map +1 -1
- package/dist/apps/data/routes/funding.js +7 -241
- package/dist/apps/data/routes/funding.js.map +1 -1
- package/dist/apps/data/routes/tokenlist.d.ts +12 -12
- package/dist/apps/data/routes/transactions.d.ts +281 -281
- package/dist/apps/data/routes/transfers.d.ts +58 -58
- package/dist/apps/data/routes/verified-tokens.d.ts +86 -86
- package/dist/apps/management/App.d.ts +855 -855
- package/dist/apps/management/routes/api-keys.d.ts +40 -40
- package/dist/apps/management/routes/billing.d.ts +207 -207
- package/dist/apps/management/routes/me.d.ts +6 -6
- package/dist/apps/management/routes/members.d.ts +30 -30
- package/dist/apps/management/routes/orgs.d.ts +92 -92
- package/dist/apps/management/routes/projects.d.ts +28 -28
- package/dist/apps/management/routes/usage.d.ts +24 -24
- package/dist/apps/mcp.d.ts.map +1 -1
- package/dist/apps/mcp.js +3 -1
- package/dist/apps/mcp.js.map +1 -1
- package/dist/cloudflare.d.ts +2 -0
- package/dist/cloudflare.d.ts.map +1 -1
- package/dist/cloudflare.js +4 -0
- package/dist/cloudflare.js.map +1 -1
- package/dist/internal/Auth.d.ts +33 -22
- package/dist/internal/Auth.d.ts.map +1 -1
- package/dist/internal/Auth.js +40 -11
- package/dist/internal/Auth.js.map +1 -1
- package/dist/internal/Errors.d.ts +6 -0
- package/dist/internal/Errors.d.ts.map +1 -0
- package/dist/internal/Errors.js +16 -0
- package/dist/internal/Errors.js.map +1 -0
- package/dist/internal/FundingRoutes.d.ts +15 -213
- package/dist/internal/FundingRoutes.d.ts.map +1 -1
- package/dist/internal/FundingRoutes.js +1 -72
- package/dist/internal/FundingRoutes.js.map +1 -1
- package/dist/internal/Store.d.ts +61 -16
- package/dist/internal/Store.d.ts.map +1 -1
- package/dist/internal/Store.js +72 -17
- package/dist/internal/Store.js.map +1 -1
- package/dist/internal/Viem.d.ts +1 -1
- package/dist/internal/index.d.ts +27 -0
- package/dist/internal/index.d.ts.map +1 -0
- package/dist/internal/index.js +27 -0
- package/dist/internal/index.js.map +1 -0
- package/package.json +8 -3
- package/src/App.test.ts +60 -4
- package/src/Client.test-d.ts +0 -47
- package/src/apps/data/FundingRouteProviders.test.ts +37 -297
- package/src/apps/data/FundingRouteProviders.ts +3 -435
- package/src/apps/data/routes/funding.test.ts +7 -109
- package/src/apps/data/routes/funding.ts +8 -323
- package/src/apps/data/routes/indexer.test.ts +2 -2
- package/src/apps/data/routes/webhooks.test.ts +2 -2
- package/src/apps/mcp.test.ts +55 -14
- package/src/apps/mcp.ts +3 -1
- package/src/cloudflare.ts +5 -0
- package/src/internal/Auth.test.ts +397 -16
- package/src/internal/Auth.ts +76 -32
- package/src/internal/FundingRoutes.test.ts +8 -34
- package/src/internal/FundingRoutes.ts +1 -174
- package/src/internal/Log.test.ts +4 -4
- package/src/internal/Store.test-d.ts +15 -0
- package/src/internal/Store.test.ts +153 -2
- package/src/internal/Store.ts +157 -41
- package/src/internal/index.test.ts +34 -0
- package/src/internal/index.ts +26 -0
|
@@ -54,19 +54,6 @@ export declare namespace schema {
|
|
|
54
54
|
export declare function orgs(): import("hono/hono-base").HonoBase<App.Environment, {
|
|
55
55
|
"/v1/orgs": {
|
|
56
56
|
$get: {
|
|
57
|
-
output: {
|
|
58
|
-
data: {
|
|
59
|
-
createdAt: string;
|
|
60
|
-
id: string;
|
|
61
|
-
name: string;
|
|
62
|
-
role?: "admin" | "member" | "owner" | undefined;
|
|
63
|
-
updatedAt: string;
|
|
64
|
-
}[];
|
|
65
|
-
};
|
|
66
|
-
outputFormat: "json";
|
|
67
|
-
status: 200;
|
|
68
|
-
input: {};
|
|
69
|
-
} | {
|
|
70
57
|
output: {
|
|
71
58
|
error: {
|
|
72
59
|
code: "api_key_malformed";
|
|
@@ -126,26 +113,24 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
126
113
|
outputFormat: "json";
|
|
127
114
|
status: 502;
|
|
128
115
|
input: {};
|
|
116
|
+
} | {
|
|
117
|
+
output: {
|
|
118
|
+
data: {
|
|
119
|
+
createdAt: string;
|
|
120
|
+
id: string;
|
|
121
|
+
name: string;
|
|
122
|
+
role?: "admin" | "member" | "owner" | undefined;
|
|
123
|
+
updatedAt: string;
|
|
124
|
+
}[];
|
|
125
|
+
};
|
|
126
|
+
outputFormat: "json";
|
|
127
|
+
status: 200;
|
|
128
|
+
input: {};
|
|
129
129
|
};
|
|
130
130
|
};
|
|
131
131
|
} & {
|
|
132
132
|
"/v1/orgs": {
|
|
133
133
|
$post: {
|
|
134
|
-
output: {
|
|
135
|
-
createdAt: string;
|
|
136
|
-
id: string;
|
|
137
|
-
name: string;
|
|
138
|
-
role?: "admin" | "member" | "owner" | undefined;
|
|
139
|
-
updatedAt: string;
|
|
140
|
-
};
|
|
141
|
-
outputFormat: "json";
|
|
142
|
-
status: 200;
|
|
143
|
-
input: {
|
|
144
|
-
json: {
|
|
145
|
-
name: string;
|
|
146
|
-
};
|
|
147
|
-
};
|
|
148
|
-
} | {
|
|
149
134
|
output: {
|
|
150
135
|
error: {
|
|
151
136
|
code: "api_key_malformed";
|
|
@@ -164,14 +149,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
164
149
|
} | {
|
|
165
150
|
output: {
|
|
166
151
|
error: {
|
|
167
|
-
code: "
|
|
152
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
168
153
|
details?: readonly Response.error.Detail[] | undefined;
|
|
169
154
|
message: string;
|
|
170
155
|
};
|
|
171
156
|
requestId: string;
|
|
172
157
|
};
|
|
173
158
|
outputFormat: "json";
|
|
174
|
-
status:
|
|
159
|
+
status: 401;
|
|
175
160
|
input: {
|
|
176
161
|
json: {
|
|
177
162
|
name: string;
|
|
@@ -180,14 +165,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
180
165
|
} | {
|
|
181
166
|
output: {
|
|
182
167
|
error: {
|
|
183
|
-
code: "
|
|
168
|
+
code: "upstream_error";
|
|
184
169
|
details?: readonly Response.error.Detail[] | undefined;
|
|
185
170
|
message: string;
|
|
186
171
|
};
|
|
187
172
|
requestId: string;
|
|
188
173
|
};
|
|
189
174
|
outputFormat: "json";
|
|
190
|
-
status:
|
|
175
|
+
status: 502;
|
|
191
176
|
input: {
|
|
192
177
|
json: {
|
|
193
178
|
name: string;
|
|
@@ -196,14 +181,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
196
181
|
} | {
|
|
197
182
|
output: {
|
|
198
183
|
error: {
|
|
199
|
-
code: "
|
|
184
|
+
code: "body_invalid";
|
|
200
185
|
details?: readonly Response.error.Detail[] | undefined;
|
|
201
186
|
message: string;
|
|
202
187
|
};
|
|
203
188
|
requestId: string;
|
|
204
189
|
};
|
|
205
190
|
outputFormat: "json";
|
|
206
|
-
status:
|
|
191
|
+
status: 400;
|
|
207
192
|
input: {
|
|
208
193
|
json: {
|
|
209
194
|
name: string;
|
|
@@ -212,24 +197,20 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
212
197
|
} | {
|
|
213
198
|
output: {
|
|
214
199
|
error: {
|
|
215
|
-
code: "
|
|
200
|
+
code: "forbidden";
|
|
216
201
|
details?: readonly Response.error.Detail[] | undefined;
|
|
217
202
|
message: string;
|
|
218
203
|
};
|
|
219
204
|
requestId: string;
|
|
220
205
|
};
|
|
221
206
|
outputFormat: "json";
|
|
222
|
-
status:
|
|
207
|
+
status: 403;
|
|
223
208
|
input: {
|
|
224
209
|
json: {
|
|
225
210
|
name: string;
|
|
226
211
|
};
|
|
227
212
|
};
|
|
228
|
-
}
|
|
229
|
-
};
|
|
230
|
-
} & {
|
|
231
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
232
|
-
$get: {
|
|
213
|
+
} | {
|
|
233
214
|
output: {
|
|
234
215
|
createdAt: string;
|
|
235
216
|
id: string;
|
|
@@ -240,11 +221,15 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
240
221
|
outputFormat: "json";
|
|
241
222
|
status: 200;
|
|
242
223
|
input: {
|
|
243
|
-
|
|
244
|
-
|
|
224
|
+
json: {
|
|
225
|
+
name: string;
|
|
245
226
|
};
|
|
246
227
|
};
|
|
247
|
-
}
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
} & {
|
|
231
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
232
|
+
$get: {
|
|
248
233
|
output: {
|
|
249
234
|
error: {
|
|
250
235
|
code: "api_key_malformed";
|
|
@@ -263,14 +248,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
263
248
|
} | {
|
|
264
249
|
output: {
|
|
265
250
|
error: {
|
|
266
|
-
code: "
|
|
251
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
267
252
|
details?: readonly Response.error.Detail[] | undefined;
|
|
268
253
|
message: string;
|
|
269
254
|
};
|
|
270
255
|
requestId: string;
|
|
271
256
|
};
|
|
272
257
|
outputFormat: "json";
|
|
273
|
-
status:
|
|
258
|
+
status: 401;
|
|
274
259
|
input: {
|
|
275
260
|
param: {
|
|
276
261
|
orgId: string;
|
|
@@ -279,14 +264,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
279
264
|
} | {
|
|
280
265
|
output: {
|
|
281
266
|
error: {
|
|
282
|
-
code: "
|
|
267
|
+
code: "api_key_forbidden";
|
|
283
268
|
details?: readonly Response.error.Detail[] | undefined;
|
|
284
269
|
message: string;
|
|
285
270
|
};
|
|
286
271
|
requestId: string;
|
|
287
272
|
};
|
|
288
273
|
outputFormat: "json";
|
|
289
|
-
status:
|
|
274
|
+
status: 403;
|
|
290
275
|
input: {
|
|
291
276
|
param: {
|
|
292
277
|
orgId: string;
|
|
@@ -295,14 +280,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
295
280
|
} | {
|
|
296
281
|
output: {
|
|
297
282
|
error: {
|
|
298
|
-
code: "
|
|
283
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
299
284
|
details?: readonly Response.error.Detail[] | undefined;
|
|
300
285
|
message: string;
|
|
301
286
|
};
|
|
302
287
|
requestId: string;
|
|
303
288
|
};
|
|
304
289
|
outputFormat: "json";
|
|
305
|
-
status:
|
|
290
|
+
status: 429;
|
|
306
291
|
input: {
|
|
307
292
|
param: {
|
|
308
293
|
orgId: string;
|
|
@@ -327,24 +312,20 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
327
312
|
} | {
|
|
328
313
|
output: {
|
|
329
314
|
error: {
|
|
330
|
-
code: "
|
|
315
|
+
code: "param_invalid";
|
|
331
316
|
details?: readonly Response.error.Detail[] | undefined;
|
|
332
317
|
message: string;
|
|
333
318
|
};
|
|
334
319
|
requestId: string;
|
|
335
320
|
};
|
|
336
321
|
outputFormat: "json";
|
|
337
|
-
status:
|
|
322
|
+
status: 400;
|
|
338
323
|
input: {
|
|
339
324
|
param: {
|
|
340
325
|
orgId: string;
|
|
341
326
|
};
|
|
342
327
|
};
|
|
343
|
-
}
|
|
344
|
-
};
|
|
345
|
-
} & {
|
|
346
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
347
|
-
$patch: {
|
|
328
|
+
} | {
|
|
348
329
|
output: {
|
|
349
330
|
createdAt: string;
|
|
350
331
|
id: string;
|
|
@@ -358,12 +339,12 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
358
339
|
param: {
|
|
359
340
|
orgId: string;
|
|
360
341
|
};
|
|
361
|
-
} & {
|
|
362
|
-
json: {
|
|
363
|
-
name: string;
|
|
364
|
-
};
|
|
365
342
|
};
|
|
366
|
-
}
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
} & {
|
|
346
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
347
|
+
$patch: {
|
|
367
348
|
output: {
|
|
368
349
|
error: {
|
|
369
350
|
code: "api_key_malformed";
|
|
@@ -386,14 +367,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
386
367
|
} | {
|
|
387
368
|
output: {
|
|
388
369
|
error: {
|
|
389
|
-
code: "
|
|
370
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
390
371
|
details?: readonly Response.error.Detail[] | undefined;
|
|
391
372
|
message: string;
|
|
392
373
|
};
|
|
393
374
|
requestId: string;
|
|
394
375
|
};
|
|
395
376
|
outputFormat: "json";
|
|
396
|
-
status:
|
|
377
|
+
status: 401;
|
|
397
378
|
input: {
|
|
398
379
|
param: {
|
|
399
380
|
orgId: string;
|
|
@@ -406,14 +387,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
406
387
|
} | {
|
|
407
388
|
output: {
|
|
408
389
|
error: {
|
|
409
|
-
code: "
|
|
390
|
+
code: "api_key_forbidden";
|
|
410
391
|
details?: readonly Response.error.Detail[] | undefined;
|
|
411
392
|
message: string;
|
|
412
393
|
};
|
|
413
394
|
requestId: string;
|
|
414
395
|
};
|
|
415
396
|
outputFormat: "json";
|
|
416
|
-
status:
|
|
397
|
+
status: 403;
|
|
417
398
|
input: {
|
|
418
399
|
param: {
|
|
419
400
|
orgId: string;
|
|
@@ -426,14 +407,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
426
407
|
} | {
|
|
427
408
|
output: {
|
|
428
409
|
error: {
|
|
429
|
-
code: "
|
|
410
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
430
411
|
details?: readonly Response.error.Detail[] | undefined;
|
|
431
412
|
message: string;
|
|
432
413
|
};
|
|
433
414
|
requestId: string;
|
|
434
415
|
};
|
|
435
416
|
outputFormat: "json";
|
|
436
|
-
status:
|
|
417
|
+
status: 429;
|
|
437
418
|
input: {
|
|
438
419
|
param: {
|
|
439
420
|
orgId: string;
|
|
@@ -446,14 +427,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
446
427
|
} | {
|
|
447
428
|
output: {
|
|
448
429
|
error: {
|
|
449
|
-
code: "
|
|
430
|
+
code: "upstream_error";
|
|
450
431
|
details?: readonly Response.error.Detail[] | undefined;
|
|
451
432
|
message: string;
|
|
452
433
|
};
|
|
453
434
|
requestId: string;
|
|
454
435
|
};
|
|
455
436
|
outputFormat: "json";
|
|
456
|
-
status:
|
|
437
|
+
status: 502;
|
|
457
438
|
input: {
|
|
458
439
|
param: {
|
|
459
440
|
orgId: string;
|
|
@@ -486,14 +467,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
486
467
|
} | {
|
|
487
468
|
output: {
|
|
488
469
|
error: {
|
|
489
|
-
code: "
|
|
470
|
+
code: "param_invalid";
|
|
490
471
|
details?: readonly Response.error.Detail[] | undefined;
|
|
491
472
|
message: string;
|
|
492
473
|
};
|
|
493
474
|
requestId: string;
|
|
494
475
|
};
|
|
495
476
|
outputFormat: "json";
|
|
496
|
-
status:
|
|
477
|
+
status: 400;
|
|
497
478
|
input: {
|
|
498
479
|
param: {
|
|
499
480
|
orgId: string;
|
|
@@ -506,14 +487,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
506
487
|
} | {
|
|
507
488
|
output: {
|
|
508
489
|
error: {
|
|
509
|
-
code: "
|
|
490
|
+
code: "body_invalid";
|
|
510
491
|
details?: readonly Response.error.Detail[] | undefined;
|
|
511
492
|
message: string;
|
|
512
493
|
};
|
|
513
494
|
requestId: string;
|
|
514
495
|
};
|
|
515
496
|
outputFormat: "json";
|
|
516
|
-
status:
|
|
497
|
+
status: 400;
|
|
517
498
|
input: {
|
|
518
499
|
param: {
|
|
519
500
|
orgId: string;
|
|
@@ -523,13 +504,13 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
523
504
|
name: string;
|
|
524
505
|
};
|
|
525
506
|
};
|
|
526
|
-
}
|
|
527
|
-
};
|
|
528
|
-
} & {
|
|
529
|
-
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
530
|
-
$delete: {
|
|
507
|
+
} | {
|
|
531
508
|
output: {
|
|
509
|
+
createdAt: string;
|
|
532
510
|
id: string;
|
|
511
|
+
name: string;
|
|
512
|
+
role?: "admin" | "member" | "owner" | undefined;
|
|
513
|
+
updatedAt: string;
|
|
533
514
|
};
|
|
534
515
|
outputFormat: "json";
|
|
535
516
|
status: 200;
|
|
@@ -537,8 +518,16 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
537
518
|
param: {
|
|
538
519
|
orgId: string;
|
|
539
520
|
};
|
|
521
|
+
} & {
|
|
522
|
+
json: {
|
|
523
|
+
name: string;
|
|
524
|
+
};
|
|
540
525
|
};
|
|
541
|
-
}
|
|
526
|
+
};
|
|
527
|
+
};
|
|
528
|
+
} & {
|
|
529
|
+
"/v1/orgs/:orgId{org_[A-Za-z0-9_-]+}": {
|
|
530
|
+
$delete: {
|
|
542
531
|
output: {
|
|
543
532
|
error: {
|
|
544
533
|
code: "api_key_malformed";
|
|
@@ -557,14 +546,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
557
546
|
} | {
|
|
558
547
|
output: {
|
|
559
548
|
error: {
|
|
560
|
-
code: "
|
|
549
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
561
550
|
details?: readonly Response.error.Detail[] | undefined;
|
|
562
551
|
message: string;
|
|
563
552
|
};
|
|
564
553
|
requestId: string;
|
|
565
554
|
};
|
|
566
555
|
outputFormat: "json";
|
|
567
|
-
status:
|
|
556
|
+
status: 401;
|
|
568
557
|
input: {
|
|
569
558
|
param: {
|
|
570
559
|
orgId: string;
|
|
@@ -573,14 +562,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
573
562
|
} | {
|
|
574
563
|
output: {
|
|
575
564
|
error: {
|
|
576
|
-
code: "
|
|
565
|
+
code: "api_key_forbidden";
|
|
577
566
|
details?: readonly Response.error.Detail[] | undefined;
|
|
578
567
|
message: string;
|
|
579
568
|
};
|
|
580
569
|
requestId: string;
|
|
581
570
|
};
|
|
582
571
|
outputFormat: "json";
|
|
583
|
-
status:
|
|
572
|
+
status: 403;
|
|
584
573
|
input: {
|
|
585
574
|
param: {
|
|
586
575
|
orgId: string;
|
|
@@ -589,14 +578,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
589
578
|
} | {
|
|
590
579
|
output: {
|
|
591
580
|
error: {
|
|
592
|
-
code: "
|
|
581
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
593
582
|
details?: readonly Response.error.Detail[] | undefined;
|
|
594
583
|
message: string;
|
|
595
584
|
};
|
|
596
585
|
requestId: string;
|
|
597
586
|
};
|
|
598
587
|
outputFormat: "json";
|
|
599
|
-
status:
|
|
588
|
+
status: 429;
|
|
600
589
|
input: {
|
|
601
590
|
param: {
|
|
602
591
|
orgId: string;
|
|
@@ -605,14 +594,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
605
594
|
} | {
|
|
606
595
|
output: {
|
|
607
596
|
error: {
|
|
608
|
-
code: "
|
|
597
|
+
code: "upstream_error";
|
|
609
598
|
details?: readonly Response.error.Detail[] | undefined;
|
|
610
599
|
message: string;
|
|
611
600
|
};
|
|
612
601
|
requestId: string;
|
|
613
602
|
};
|
|
614
603
|
outputFormat: "json";
|
|
615
|
-
status:
|
|
604
|
+
status: 502;
|
|
616
605
|
input: {
|
|
617
606
|
param: {
|
|
618
607
|
orgId: string;
|
|
@@ -621,14 +610,14 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
621
610
|
} | {
|
|
622
611
|
output: {
|
|
623
612
|
error: {
|
|
624
|
-
code: "
|
|
613
|
+
code: "organization_not_found";
|
|
625
614
|
details?: readonly Response.error.Detail[] | undefined;
|
|
626
615
|
message: string;
|
|
627
616
|
};
|
|
628
617
|
requestId: string;
|
|
629
618
|
};
|
|
630
619
|
outputFormat: "json";
|
|
631
|
-
status:
|
|
620
|
+
status: 404;
|
|
632
621
|
input: {
|
|
633
622
|
param: {
|
|
634
623
|
orgId: string;
|
|
@@ -637,14 +626,25 @@ export declare function orgs(): import("hono/hono-base").HonoBase<App.Environmen
|
|
|
637
626
|
} | {
|
|
638
627
|
output: {
|
|
639
628
|
error: {
|
|
640
|
-
code: "
|
|
629
|
+
code: "param_invalid";
|
|
641
630
|
details?: readonly Response.error.Detail[] | undefined;
|
|
642
631
|
message: string;
|
|
643
632
|
};
|
|
644
633
|
requestId: string;
|
|
645
634
|
};
|
|
646
635
|
outputFormat: "json";
|
|
647
|
-
status:
|
|
636
|
+
status: 400;
|
|
637
|
+
input: {
|
|
638
|
+
param: {
|
|
639
|
+
orgId: string;
|
|
640
|
+
};
|
|
641
|
+
};
|
|
642
|
+
} | {
|
|
643
|
+
output: {
|
|
644
|
+
id: string;
|
|
645
|
+
};
|
|
646
|
+
outputFormat: "json";
|
|
647
|
+
status: 200;
|
|
648
648
|
input: {
|
|
649
649
|
param: {
|
|
650
650
|
orgId: string;
|
|
@@ -463,15 +463,15 @@ export declare function projects(): import("hono/hono-base").HonoBase<App.Enviro
|
|
|
463
463
|
};
|
|
464
464
|
} | {
|
|
465
465
|
output: {
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
466
|
+
createdAt: string;
|
|
467
|
+
environments: ("production" | "sandbox")[];
|
|
468
|
+
id: string;
|
|
469
|
+
name: string;
|
|
470
|
+
orgId: string;
|
|
471
|
+
updatedAt: string;
|
|
472
472
|
};
|
|
473
473
|
outputFormat: "json";
|
|
474
|
-
status:
|
|
474
|
+
status: 200;
|
|
475
475
|
input: {
|
|
476
476
|
param: {
|
|
477
477
|
orgId: string;
|
|
@@ -480,15 +480,15 @@ export declare function projects(): import("hono/hono-base").HonoBase<App.Enviro
|
|
|
480
480
|
};
|
|
481
481
|
} | {
|
|
482
482
|
output: {
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
483
|
+
error: {
|
|
484
|
+
code: "organization_not_found" | "project_not_found";
|
|
485
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
486
|
+
message: string;
|
|
487
|
+
};
|
|
488
|
+
requestId: string;
|
|
489
489
|
};
|
|
490
490
|
outputFormat: "json";
|
|
491
|
-
status:
|
|
491
|
+
status: 404;
|
|
492
492
|
input: {
|
|
493
493
|
param: {
|
|
494
494
|
orgId: string;
|
|
@@ -648,15 +648,15 @@ export declare function projects(): import("hono/hono-base").HonoBase<App.Enviro
|
|
|
648
648
|
};
|
|
649
649
|
} | {
|
|
650
650
|
output: {
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
651
|
+
createdAt: string;
|
|
652
|
+
environments: ("production" | "sandbox")[];
|
|
653
|
+
id: string;
|
|
654
|
+
name: string;
|
|
655
|
+
orgId: string;
|
|
656
|
+
updatedAt: string;
|
|
657
657
|
};
|
|
658
658
|
outputFormat: "json";
|
|
659
|
-
status:
|
|
659
|
+
status: 200;
|
|
660
660
|
input: {
|
|
661
661
|
param: {
|
|
662
662
|
orgId: string;
|
|
@@ -669,15 +669,15 @@ export declare function projects(): import("hono/hono-base").HonoBase<App.Enviro
|
|
|
669
669
|
};
|
|
670
670
|
} | {
|
|
671
671
|
output: {
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
672
|
+
error: {
|
|
673
|
+
code: "organization_not_found" | "project_not_found";
|
|
674
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
675
|
+
message: string;
|
|
676
|
+
};
|
|
677
|
+
requestId: string;
|
|
678
678
|
};
|
|
679
679
|
outputFormat: "json";
|
|
680
|
-
status:
|
|
680
|
+
status: 404;
|
|
681
681
|
input: {
|
|
682
682
|
param: {
|
|
683
683
|
orgId: string;
|