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
|
@@ -336,14 +336,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
336
336
|
$post: {
|
|
337
337
|
output: {
|
|
338
338
|
error: {
|
|
339
|
-
code:
|
|
339
|
+
code: string;
|
|
340
340
|
details?: readonly Response.error.Detail[] | undefined;
|
|
341
341
|
message: string;
|
|
342
342
|
};
|
|
343
343
|
requestId: string;
|
|
344
344
|
};
|
|
345
345
|
outputFormat: "json";
|
|
346
|
-
status:
|
|
346
|
+
status: 400 | 413 | 415;
|
|
347
347
|
input: {
|
|
348
348
|
json: {
|
|
349
349
|
address: `0x${string}`;
|
|
@@ -359,14 +359,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
359
359
|
} | {
|
|
360
360
|
output: {
|
|
361
361
|
error: {
|
|
362
|
-
code: "
|
|
362
|
+
code: "upstream_error";
|
|
363
363
|
details?: readonly Response.error.Detail[] | undefined;
|
|
364
364
|
message: string;
|
|
365
365
|
};
|
|
366
366
|
requestId: string;
|
|
367
367
|
};
|
|
368
368
|
outputFormat: "json";
|
|
369
|
-
status:
|
|
369
|
+
status: 502;
|
|
370
370
|
input: {
|
|
371
371
|
json: {
|
|
372
372
|
address: `0x${string}`;
|
|
@@ -382,7 +382,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
382
382
|
} | {
|
|
383
383
|
output: {
|
|
384
384
|
error: {
|
|
385
|
-
code: "
|
|
385
|
+
code: "verified_token_not_found";
|
|
386
386
|
details?: readonly Response.error.Detail[] | undefined;
|
|
387
387
|
message: string;
|
|
388
388
|
};
|
|
@@ -404,19 +404,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
404
404
|
};
|
|
405
405
|
} | {
|
|
406
406
|
output: {
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
logoUri?: string | undefined;
|
|
412
|
-
name: string;
|
|
413
|
-
symbol: string;
|
|
414
|
-
id: string;
|
|
407
|
+
error: {
|
|
408
|
+
code: "assets_not_enabled";
|
|
409
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
410
|
+
message: string;
|
|
415
411
|
};
|
|
416
|
-
|
|
412
|
+
requestId: string;
|
|
417
413
|
};
|
|
418
414
|
outputFormat: "json";
|
|
419
|
-
status:
|
|
415
|
+
status: 404;
|
|
420
416
|
input: {
|
|
421
417
|
json: {
|
|
422
418
|
address: `0x${string}`;
|
|
@@ -431,15 +427,19 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
431
427
|
};
|
|
432
428
|
} | {
|
|
433
429
|
output: {
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
430
|
+
data: {
|
|
431
|
+
address: `0x${string}`;
|
|
432
|
+
currency: string;
|
|
433
|
+
decimals: number;
|
|
434
|
+
logoUri?: string | undefined;
|
|
435
|
+
name: string;
|
|
436
|
+
symbol: string;
|
|
437
|
+
id: string;
|
|
438
438
|
};
|
|
439
|
-
|
|
439
|
+
version: string;
|
|
440
440
|
};
|
|
441
441
|
outputFormat: "json";
|
|
442
|
-
status:
|
|
442
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
443
443
|
input: {
|
|
444
444
|
json: {
|
|
445
445
|
address: `0x${string}`;
|
|
@@ -528,14 +528,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
528
528
|
$put: {
|
|
529
529
|
output: {
|
|
530
530
|
error: {
|
|
531
|
-
code:
|
|
531
|
+
code: string;
|
|
532
532
|
details?: readonly Response.error.Detail[] | undefined;
|
|
533
533
|
message: string;
|
|
534
534
|
};
|
|
535
535
|
requestId: string;
|
|
536
536
|
};
|
|
537
537
|
outputFormat: "json";
|
|
538
|
-
status:
|
|
538
|
+
status: 400 | 413 | 415;
|
|
539
539
|
input: {
|
|
540
540
|
query: {
|
|
541
541
|
chainId: string | string[];
|
|
@@ -555,14 +555,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
555
555
|
} | {
|
|
556
556
|
output: {
|
|
557
557
|
error: {
|
|
558
|
-
code: "
|
|
558
|
+
code: "upstream_error";
|
|
559
559
|
details?: readonly Response.error.Detail[] | undefined;
|
|
560
560
|
message: string;
|
|
561
561
|
};
|
|
562
562
|
requestId: string;
|
|
563
563
|
};
|
|
564
564
|
outputFormat: "json";
|
|
565
|
-
status:
|
|
565
|
+
status: 502;
|
|
566
566
|
input: {
|
|
567
567
|
query: {
|
|
568
568
|
chainId: string | string[];
|
|
@@ -582,14 +582,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
582
582
|
} | {
|
|
583
583
|
output: {
|
|
584
584
|
error: {
|
|
585
|
-
code:
|
|
585
|
+
code: "verified_token_not_found";
|
|
586
586
|
details?: readonly Response.error.Detail[] | undefined;
|
|
587
587
|
message: string;
|
|
588
588
|
};
|
|
589
589
|
requestId: string;
|
|
590
590
|
};
|
|
591
591
|
outputFormat: "json";
|
|
592
|
-
status:
|
|
592
|
+
status: 404;
|
|
593
593
|
input: {
|
|
594
594
|
query: {
|
|
595
595
|
chainId: string | string[];
|
|
@@ -725,14 +725,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
725
725
|
$patch: {
|
|
726
726
|
output: {
|
|
727
727
|
error: {
|
|
728
|
-
code:
|
|
728
|
+
code: string;
|
|
729
729
|
details?: readonly Response.error.Detail[] | undefined;
|
|
730
730
|
message: string;
|
|
731
731
|
};
|
|
732
732
|
requestId: string;
|
|
733
733
|
};
|
|
734
734
|
outputFormat: "json";
|
|
735
|
-
status:
|
|
735
|
+
status: 400 | 413 | 415;
|
|
736
736
|
input: {
|
|
737
737
|
param: {
|
|
738
738
|
address: `0x${string}`;
|
|
@@ -753,14 +753,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
753
753
|
} | {
|
|
754
754
|
output: {
|
|
755
755
|
error: {
|
|
756
|
-
code: "
|
|
756
|
+
code: "upstream_error";
|
|
757
757
|
details?: readonly Response.error.Detail[] | undefined;
|
|
758
758
|
message: string;
|
|
759
759
|
};
|
|
760
760
|
requestId: string;
|
|
761
761
|
};
|
|
762
762
|
outputFormat: "json";
|
|
763
|
-
status:
|
|
763
|
+
status: 502;
|
|
764
764
|
input: {
|
|
765
765
|
param: {
|
|
766
766
|
address: `0x${string}`;
|
|
@@ -780,19 +780,15 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
780
780
|
};
|
|
781
781
|
} | {
|
|
782
782
|
output: {
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
logoUri?: string | undefined;
|
|
788
|
-
name: string;
|
|
789
|
-
symbol: string;
|
|
790
|
-
id: string;
|
|
783
|
+
error: {
|
|
784
|
+
code: "verified_token_not_found";
|
|
785
|
+
details?: readonly Response.error.Detail[] | undefined;
|
|
786
|
+
message: string;
|
|
791
787
|
};
|
|
792
|
-
|
|
788
|
+
requestId: string;
|
|
793
789
|
};
|
|
794
790
|
outputFormat: "json";
|
|
795
|
-
status:
|
|
791
|
+
status: 404;
|
|
796
792
|
input: {
|
|
797
793
|
param: {
|
|
798
794
|
address: `0x${string}`;
|
|
@@ -812,15 +808,19 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
812
808
|
};
|
|
813
809
|
} | {
|
|
814
810
|
output: {
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
811
|
+
data: {
|
|
812
|
+
address: `0x${string}`;
|
|
813
|
+
currency: string;
|
|
814
|
+
decimals: number;
|
|
815
|
+
logoUri?: string | undefined;
|
|
816
|
+
name: string;
|
|
817
|
+
symbol: string;
|
|
818
|
+
id: string;
|
|
819
819
|
};
|
|
820
|
-
|
|
820
|
+
version: string;
|
|
821
821
|
};
|
|
822
822
|
outputFormat: "json";
|
|
823
|
-
status:
|
|
823
|
+
status: import("hono/utils/http-status").ContentfulStatusCode;
|
|
824
824
|
input: {
|
|
825
825
|
param: {
|
|
826
826
|
address: `0x${string}`;
|
|
@@ -929,14 +929,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
929
929
|
$delete: {
|
|
930
930
|
output: {
|
|
931
931
|
error: {
|
|
932
|
-
code:
|
|
932
|
+
code: string;
|
|
933
933
|
details?: readonly Response.error.Detail[] | undefined;
|
|
934
934
|
message: string;
|
|
935
935
|
};
|
|
936
936
|
requestId: string;
|
|
937
937
|
};
|
|
938
938
|
outputFormat: "json";
|
|
939
|
-
status:
|
|
939
|
+
status: 400 | 413 | 415;
|
|
940
940
|
input: {
|
|
941
941
|
param: {
|
|
942
942
|
address: `0x${string}`;
|
|
@@ -949,14 +949,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
949
949
|
} | {
|
|
950
950
|
output: {
|
|
951
951
|
error: {
|
|
952
|
-
code: "
|
|
952
|
+
code: "upstream_error";
|
|
953
953
|
details?: readonly Response.error.Detail[] | undefined;
|
|
954
954
|
message: string;
|
|
955
955
|
};
|
|
956
956
|
requestId: string;
|
|
957
957
|
};
|
|
958
958
|
outputFormat: "json";
|
|
959
|
-
status:
|
|
959
|
+
status: 502;
|
|
960
960
|
input: {
|
|
961
961
|
param: {
|
|
962
962
|
address: `0x${string}`;
|
|
@@ -969,14 +969,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
969
969
|
} | {
|
|
970
970
|
output: {
|
|
971
971
|
error: {
|
|
972
|
-
code:
|
|
972
|
+
code: "verified_token_not_found";
|
|
973
973
|
details?: readonly Response.error.Detail[] | undefined;
|
|
974
974
|
message: string;
|
|
975
975
|
};
|
|
976
976
|
requestId: string;
|
|
977
977
|
};
|
|
978
978
|
outputFormat: "json";
|
|
979
|
-
status:
|
|
979
|
+
status: 404;
|
|
980
980
|
input: {
|
|
981
981
|
param: {
|
|
982
982
|
address: `0x${string}`;
|
|
@@ -1240,14 +1240,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1240
1240
|
$post: {
|
|
1241
1241
|
output: {
|
|
1242
1242
|
error: {
|
|
1243
|
-
code:
|
|
1243
|
+
code: string;
|
|
1244
1244
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1245
1245
|
message: string;
|
|
1246
1246
|
};
|
|
1247
1247
|
requestId: string;
|
|
1248
1248
|
};
|
|
1249
1249
|
outputFormat: "json";
|
|
1250
|
-
status:
|
|
1250
|
+
status: 400 | 413 | 415;
|
|
1251
1251
|
input: {
|
|
1252
1252
|
param: {
|
|
1253
1253
|
requestId: string;
|
|
@@ -1256,14 +1256,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1256
1256
|
} | {
|
|
1257
1257
|
output: {
|
|
1258
1258
|
error: {
|
|
1259
|
-
code: "
|
|
1259
|
+
code: "upstream_error";
|
|
1260
1260
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1261
1261
|
message: string;
|
|
1262
1262
|
};
|
|
1263
1263
|
requestId: string;
|
|
1264
1264
|
};
|
|
1265
1265
|
outputFormat: "json";
|
|
1266
|
-
status:
|
|
1266
|
+
status: 502;
|
|
1267
1267
|
input: {
|
|
1268
1268
|
param: {
|
|
1269
1269
|
requestId: string;
|
|
@@ -1272,14 +1272,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1272
1272
|
} | {
|
|
1273
1273
|
output: {
|
|
1274
1274
|
error: {
|
|
1275
|
-
code: "
|
|
1275
|
+
code: "verified_token_not_found";
|
|
1276
1276
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1277
1277
|
message: string;
|
|
1278
1278
|
};
|
|
1279
1279
|
requestId: string;
|
|
1280
1280
|
};
|
|
1281
1281
|
outputFormat: "json";
|
|
1282
|
-
status:
|
|
1282
|
+
status: 404;
|
|
1283
1283
|
input: {
|
|
1284
1284
|
param: {
|
|
1285
1285
|
requestId: string;
|
|
@@ -1288,14 +1288,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1288
1288
|
} | {
|
|
1289
1289
|
output: {
|
|
1290
1290
|
error: {
|
|
1291
|
-
code: "
|
|
1291
|
+
code: "request_not_pending";
|
|
1292
1292
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1293
1293
|
message: string;
|
|
1294
1294
|
};
|
|
1295
1295
|
requestId: string;
|
|
1296
1296
|
};
|
|
1297
1297
|
outputFormat: "json";
|
|
1298
|
-
status:
|
|
1298
|
+
status: 409;
|
|
1299
1299
|
input: {
|
|
1300
1300
|
param: {
|
|
1301
1301
|
requestId: string;
|
|
@@ -1304,7 +1304,7 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1304
1304
|
} | {
|
|
1305
1305
|
output: {
|
|
1306
1306
|
error: {
|
|
1307
|
-
code: "
|
|
1307
|
+
code: "verified_token_request_not_found";
|
|
1308
1308
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1309
1309
|
message: string;
|
|
1310
1310
|
};
|
|
@@ -1320,14 +1320,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1320
1320
|
} | {
|
|
1321
1321
|
output: {
|
|
1322
1322
|
error: {
|
|
1323
|
-
code:
|
|
1323
|
+
code: "assets_not_enabled";
|
|
1324
1324
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1325
1325
|
message: string;
|
|
1326
1326
|
};
|
|
1327
1327
|
requestId: string;
|
|
1328
1328
|
};
|
|
1329
1329
|
outputFormat: "json";
|
|
1330
|
-
status:
|
|
1330
|
+
status: 404;
|
|
1331
1331
|
input: {
|
|
1332
1332
|
param: {
|
|
1333
1333
|
requestId: string;
|
|
@@ -1419,14 +1419,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1419
1419
|
$post: {
|
|
1420
1420
|
output: {
|
|
1421
1421
|
error: {
|
|
1422
|
-
code:
|
|
1422
|
+
code: string;
|
|
1423
1423
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1424
1424
|
message: string;
|
|
1425
1425
|
};
|
|
1426
1426
|
requestId: string;
|
|
1427
1427
|
};
|
|
1428
1428
|
outputFormat: "json";
|
|
1429
|
-
status:
|
|
1429
|
+
status: 400 | 413 | 415;
|
|
1430
1430
|
input: {
|
|
1431
1431
|
param: {
|
|
1432
1432
|
requestId: string;
|
|
@@ -1439,14 +1439,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1439
1439
|
} | {
|
|
1440
1440
|
output: {
|
|
1441
1441
|
error: {
|
|
1442
|
-
code: "
|
|
1442
|
+
code: "upstream_error";
|
|
1443
1443
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1444
1444
|
message: string;
|
|
1445
1445
|
};
|
|
1446
1446
|
requestId: string;
|
|
1447
1447
|
};
|
|
1448
1448
|
outputFormat: "json";
|
|
1449
|
-
status:
|
|
1449
|
+
status: 502;
|
|
1450
1450
|
input: {
|
|
1451
1451
|
param: {
|
|
1452
1452
|
requestId: string;
|
|
@@ -1459,14 +1459,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1459
1459
|
} | {
|
|
1460
1460
|
output: {
|
|
1461
1461
|
error: {
|
|
1462
|
-
code: "
|
|
1462
|
+
code: "verified_token_not_found";
|
|
1463
1463
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1464
1464
|
message: string;
|
|
1465
1465
|
};
|
|
1466
1466
|
requestId: string;
|
|
1467
1467
|
};
|
|
1468
1468
|
outputFormat: "json";
|
|
1469
|
-
status:
|
|
1469
|
+
status: 404;
|
|
1470
1470
|
input: {
|
|
1471
1471
|
param: {
|
|
1472
1472
|
requestId: string;
|
|
@@ -1479,14 +1479,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1479
1479
|
} | {
|
|
1480
1480
|
output: {
|
|
1481
1481
|
error: {
|
|
1482
|
-
code: "
|
|
1482
|
+
code: "request_not_pending";
|
|
1483
1483
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1484
1484
|
message: string;
|
|
1485
1485
|
};
|
|
1486
1486
|
requestId: string;
|
|
1487
1487
|
};
|
|
1488
1488
|
outputFormat: "json";
|
|
1489
|
-
status:
|
|
1489
|
+
status: 409;
|
|
1490
1490
|
input: {
|
|
1491
1491
|
param: {
|
|
1492
1492
|
requestId: string;
|
|
@@ -1499,14 +1499,14 @@ export declare function verifiedTokens(): import("hono/hono-base").HonoBase<App.
|
|
|
1499
1499
|
} | {
|
|
1500
1500
|
output: {
|
|
1501
1501
|
error: {
|
|
1502
|
-
code:
|
|
1502
|
+
code: "verified_token_request_not_found";
|
|
1503
1503
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1504
1504
|
message: string;
|
|
1505
1505
|
};
|
|
1506
1506
|
requestId: string;
|
|
1507
1507
|
};
|
|
1508
1508
|
outputFormat: "json";
|
|
1509
|
-
status:
|
|
1509
|
+
status: 404;
|
|
1510
1510
|
input: {
|
|
1511
1511
|
param: {
|
|
1512
1512
|
requestId: string;
|