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
|
@@ -461,7 +461,7 @@ export declare namespace schema {
|
|
|
461
461
|
/** Query parameters for listing funding deposit addresses. */
|
|
462
462
|
const Query: z.ZodMiniObject<{
|
|
463
463
|
cursor: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
464
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
464
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
465
465
|
}, z.core.$strip>;
|
|
466
466
|
/** One page of reusable funding deposit addresses. */
|
|
467
467
|
const Response: z.ZodMiniObject<{
|
|
@@ -550,7 +550,7 @@ export declare namespace schema {
|
|
|
550
550
|
include: z.ZodMiniPipe<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniUnknown>, z.ZodMiniTransform<string[], unknown>>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
551
551
|
totalCount: "totalCount";
|
|
552
552
|
}>>>;
|
|
553
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
553
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
554
554
|
provider: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
555
555
|
recipient: z.ZodMiniOptional<z.ZodMiniPipe<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniTransform<`0x${string}`, `0x${string}`>>>;
|
|
556
556
|
sourceChain: z.ZodMiniOptional<z.ZodMiniString<string>>;
|
|
@@ -23,9 +23,14 @@ export declare namespace schema {
|
|
|
23
23
|
export declare function providers(): import("hono/hono-base").HonoBase<App.Environment, {
|
|
24
24
|
"/v1/funding/providers": {
|
|
25
25
|
$get: {
|
|
26
|
-
output:
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
output: {
|
|
27
|
+
data: {
|
|
28
|
+
id: string;
|
|
29
|
+
name: string;
|
|
30
|
+
}[];
|
|
31
|
+
};
|
|
32
|
+
outputFormat: "json";
|
|
33
|
+
status: 200;
|
|
29
34
|
input: {};
|
|
30
35
|
} | {
|
|
31
36
|
output: {
|
|
@@ -51,6 +56,11 @@ export declare function providers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
51
56
|
outputFormat: "json";
|
|
52
57
|
status: 401;
|
|
53
58
|
input: {};
|
|
59
|
+
} | {
|
|
60
|
+
output: null;
|
|
61
|
+
outputFormat: "body";
|
|
62
|
+
status: 402;
|
|
63
|
+
input: {};
|
|
54
64
|
} | {
|
|
55
65
|
output: {
|
|
56
66
|
error: {
|
|
@@ -75,16 +85,6 @@ export declare function providers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
75
85
|
outputFormat: "json";
|
|
76
86
|
status: 429;
|
|
77
87
|
input: {};
|
|
78
|
-
} | {
|
|
79
|
-
output: {
|
|
80
|
-
data: {
|
|
81
|
-
id: string;
|
|
82
|
-
name: string;
|
|
83
|
-
}[];
|
|
84
|
-
};
|
|
85
|
-
outputFormat: "json";
|
|
86
|
-
status: 200;
|
|
87
|
-
input: {};
|
|
88
88
|
};
|
|
89
89
|
};
|
|
90
90
|
}, "/", "/v1/funding/providers">;
|
|
@@ -165,7 +165,7 @@ export declare namespace schema {
|
|
|
165
165
|
include: z.ZodMiniPipe<z.ZodMiniPipe<z.ZodMiniOptional<z.ZodMiniUnknown>, z.ZodMiniTransform<string[], unknown>>, z.ZodMiniArray<z.ZodMiniEnum<{
|
|
166
166
|
totalCount: "totalCount";
|
|
167
167
|
}>>>;
|
|
168
|
-
limit: z.ZodMiniDefault<z.ZodMiniNumber<unknown
|
|
168
|
+
limit: z.ZodMiniDefault<z.ZodMiniPipe<z.ZodMiniNumber<unknown>, z.ZodMiniTransform<number, number>>>;
|
|
169
169
|
status: z.ZodMiniOptional<z.ZodMiniEnum<{
|
|
170
170
|
"action-required": "action-required";
|
|
171
171
|
"awaiting-source": "awaiting-source";
|
|
@@ -733,14 +733,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
733
733
|
$get: {
|
|
734
734
|
output: {
|
|
735
735
|
error: {
|
|
736
|
-
code: "
|
|
736
|
+
code: "api_key_malformed";
|
|
737
737
|
details?: readonly Response.error.Detail[] | undefined;
|
|
738
738
|
message: string;
|
|
739
739
|
};
|
|
740
740
|
requestId: string;
|
|
741
741
|
};
|
|
742
742
|
outputFormat: "json";
|
|
743
|
-
status:
|
|
743
|
+
status: 400;
|
|
744
744
|
input: {
|
|
745
745
|
query?: {
|
|
746
746
|
cursor?: string | string[];
|
|
@@ -752,14 +752,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
752
752
|
} | {
|
|
753
753
|
output: {
|
|
754
754
|
error: {
|
|
755
|
-
code: "
|
|
755
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
756
756
|
details?: readonly Response.error.Detail[] | undefined;
|
|
757
757
|
message: string;
|
|
758
758
|
};
|
|
759
759
|
requestId: string;
|
|
760
760
|
};
|
|
761
761
|
outputFormat: "json";
|
|
762
|
-
status:
|
|
762
|
+
status: 401;
|
|
763
763
|
input: {
|
|
764
764
|
query?: {
|
|
765
765
|
cursor?: string | string[];
|
|
@@ -771,14 +771,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
771
771
|
} | {
|
|
772
772
|
output: {
|
|
773
773
|
error: {
|
|
774
|
-
code: "
|
|
774
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
775
775
|
details?: readonly Response.error.Detail[] | undefined;
|
|
776
776
|
message: string;
|
|
777
777
|
};
|
|
778
778
|
requestId: string;
|
|
779
779
|
};
|
|
780
780
|
outputFormat: "json";
|
|
781
|
-
status:
|
|
781
|
+
status: 403;
|
|
782
782
|
input: {
|
|
783
783
|
query?: {
|
|
784
784
|
cursor?: string | string[];
|
|
@@ -790,14 +790,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
790
790
|
} | {
|
|
791
791
|
output: {
|
|
792
792
|
error: {
|
|
793
|
-
code: "
|
|
793
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
794
794
|
details?: readonly Response.error.Detail[] | undefined;
|
|
795
795
|
message: string;
|
|
796
796
|
};
|
|
797
797
|
requestId: string;
|
|
798
798
|
};
|
|
799
799
|
outputFormat: "json";
|
|
800
|
-
status:
|
|
800
|
+
status: 429;
|
|
801
801
|
input: {
|
|
802
802
|
query?: {
|
|
803
803
|
cursor?: string | string[];
|
|
@@ -809,14 +809,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
809
809
|
} | {
|
|
810
810
|
output: {
|
|
811
811
|
error: {
|
|
812
|
-
code: "
|
|
812
|
+
code: "query_invalid";
|
|
813
813
|
details?: readonly Response.error.Detail[] | undefined;
|
|
814
814
|
message: string;
|
|
815
815
|
};
|
|
816
816
|
requestId: string;
|
|
817
817
|
};
|
|
818
818
|
outputFormat: "json";
|
|
819
|
-
status:
|
|
819
|
+
status: 400;
|
|
820
820
|
input: {
|
|
821
821
|
query?: {
|
|
822
822
|
cursor?: string | string[];
|
|
@@ -828,14 +828,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
828
828
|
} | {
|
|
829
829
|
output: {
|
|
830
830
|
error: {
|
|
831
|
-
code: "
|
|
831
|
+
code: "upstream_error";
|
|
832
832
|
details?: readonly Response.error.Detail[] | undefined;
|
|
833
833
|
message: string;
|
|
834
834
|
};
|
|
835
835
|
requestId: string;
|
|
836
836
|
};
|
|
837
837
|
outputFormat: "json";
|
|
838
|
-
status:
|
|
838
|
+
status: 502;
|
|
839
839
|
input: {
|
|
840
840
|
query?: {
|
|
841
841
|
cursor?: string | string[];
|
|
@@ -997,14 +997,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
997
997
|
$get: {
|
|
998
998
|
output: {
|
|
999
999
|
error: {
|
|
1000
|
-
code: "
|
|
1000
|
+
code: "api_key_malformed";
|
|
1001
1001
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1002
1002
|
message: string;
|
|
1003
1003
|
};
|
|
1004
1004
|
requestId: string;
|
|
1005
1005
|
};
|
|
1006
1006
|
outputFormat: "json";
|
|
1007
|
-
status:
|
|
1007
|
+
status: 400;
|
|
1008
1008
|
input: {
|
|
1009
1009
|
param: {
|
|
1010
1010
|
id: string;
|
|
@@ -1013,14 +1013,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1013
1013
|
} | {
|
|
1014
1014
|
output: {
|
|
1015
1015
|
error: {
|
|
1016
|
-
code: "
|
|
1016
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
1017
1017
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1018
1018
|
message: string;
|
|
1019
1019
|
};
|
|
1020
1020
|
requestId: string;
|
|
1021
1021
|
};
|
|
1022
1022
|
outputFormat: "json";
|
|
1023
|
-
status:
|
|
1023
|
+
status: 401;
|
|
1024
1024
|
input: {
|
|
1025
1025
|
param: {
|
|
1026
1026
|
id: string;
|
|
@@ -1029,14 +1029,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1029
1029
|
} | {
|
|
1030
1030
|
output: {
|
|
1031
1031
|
error: {
|
|
1032
|
-
code: "
|
|
1032
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
1033
1033
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1034
1034
|
message: string;
|
|
1035
1035
|
};
|
|
1036
1036
|
requestId: string;
|
|
1037
1037
|
};
|
|
1038
1038
|
outputFormat: "json";
|
|
1039
|
-
status:
|
|
1039
|
+
status: 403;
|
|
1040
1040
|
input: {
|
|
1041
1041
|
param: {
|
|
1042
1042
|
id: string;
|
|
@@ -1045,14 +1045,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1045
1045
|
} | {
|
|
1046
1046
|
output: {
|
|
1047
1047
|
error: {
|
|
1048
|
-
code: "
|
|
1048
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
1049
1049
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1050
1050
|
message: string;
|
|
1051
1051
|
};
|
|
1052
1052
|
requestId: string;
|
|
1053
1053
|
};
|
|
1054
1054
|
outputFormat: "json";
|
|
1055
|
-
status:
|
|
1055
|
+
status: 429;
|
|
1056
1056
|
input: {
|
|
1057
1057
|
param: {
|
|
1058
1058
|
id: string;
|
|
@@ -1061,14 +1061,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1061
1061
|
} | {
|
|
1062
1062
|
output: {
|
|
1063
1063
|
error: {
|
|
1064
|
-
code: "
|
|
1064
|
+
code: "upstream_error";
|
|
1065
1065
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1066
1066
|
message: string;
|
|
1067
1067
|
};
|
|
1068
1068
|
requestId: string;
|
|
1069
1069
|
};
|
|
1070
1070
|
outputFormat: "json";
|
|
1071
|
-
status:
|
|
1071
|
+
status: 502;
|
|
1072
1072
|
input: {
|
|
1073
1073
|
param: {
|
|
1074
1074
|
id: string;
|
|
@@ -1246,14 +1246,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1246
1246
|
$post: {
|
|
1247
1247
|
output: {
|
|
1248
1248
|
error: {
|
|
1249
|
-
code: "
|
|
1249
|
+
code: "api_key_malformed";
|
|
1250
1250
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1251
1251
|
message: string;
|
|
1252
1252
|
};
|
|
1253
1253
|
requestId: string;
|
|
1254
1254
|
};
|
|
1255
1255
|
outputFormat: "json";
|
|
1256
|
-
status:
|
|
1256
|
+
status: 400;
|
|
1257
1257
|
input: {
|
|
1258
1258
|
header: {
|
|
1259
1259
|
'idempotency-key': string;
|
|
@@ -1273,14 +1273,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1273
1273
|
} | {
|
|
1274
1274
|
output: {
|
|
1275
1275
|
error: {
|
|
1276
|
-
code: "
|
|
1276
|
+
code: "api_key_invalid" | "api_key_missing";
|
|
1277
1277
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1278
1278
|
message: string;
|
|
1279
1279
|
};
|
|
1280
1280
|
requestId: string;
|
|
1281
1281
|
};
|
|
1282
1282
|
outputFormat: "json";
|
|
1283
|
-
status:
|
|
1283
|
+
status: 401;
|
|
1284
1284
|
input: {
|
|
1285
1285
|
header: {
|
|
1286
1286
|
'idempotency-key': string;
|
|
@@ -1300,14 +1300,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1300
1300
|
} | {
|
|
1301
1301
|
output: {
|
|
1302
1302
|
error: {
|
|
1303
|
-
code: "
|
|
1303
|
+
code: "api_key_forbidden" | "api_key_ip_forbidden";
|
|
1304
1304
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1305
1305
|
message: string;
|
|
1306
1306
|
};
|
|
1307
1307
|
requestId: string;
|
|
1308
1308
|
};
|
|
1309
1309
|
outputFormat: "json";
|
|
1310
|
-
status:
|
|
1310
|
+
status: 403;
|
|
1311
1311
|
input: {
|
|
1312
1312
|
header: {
|
|
1313
1313
|
'idempotency-key': string;
|
|
@@ -1327,14 +1327,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1327
1327
|
} | {
|
|
1328
1328
|
output: {
|
|
1329
1329
|
error: {
|
|
1330
|
-
code: "
|
|
1330
|
+
code: "payment_required" | "rate_limit_exceeded";
|
|
1331
1331
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1332
1332
|
message: string;
|
|
1333
1333
|
};
|
|
1334
1334
|
requestId: string;
|
|
1335
1335
|
};
|
|
1336
1336
|
outputFormat: "json";
|
|
1337
|
-
status:
|
|
1337
|
+
status: 429;
|
|
1338
1338
|
input: {
|
|
1339
1339
|
header: {
|
|
1340
1340
|
'idempotency-key': string;
|
|
@@ -1354,14 +1354,14 @@ export declare function transfers(): import("hono/hono-base").HonoBase<App.Envir
|
|
|
1354
1354
|
} | {
|
|
1355
1355
|
output: {
|
|
1356
1356
|
error: {
|
|
1357
|
-
code: "
|
|
1357
|
+
code: "upstream_error";
|
|
1358
1358
|
details?: readonly Response.error.Detail[] | undefined;
|
|
1359
1359
|
message: string;
|
|
1360
1360
|
};
|
|
1361
1361
|
requestId: string;
|
|
1362
1362
|
};
|
|
1363
1363
|
outputFormat: "json";
|
|
1364
|
-
status:
|
|
1364
|
+
status: 502;
|
|
1365
1365
|
input: {
|
|
1366
1366
|
header: {
|
|
1367
1367
|
'idempotency-key': string;
|