@mobula_labs/types 0.1.8 → 0.1.9
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/cjs/index.cjs +4 -4
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +4 -4
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -4914,7 +4914,7 @@ var WalletRawTransactionsResponseSchema = import_zod53.z.object({
|
|
|
4914
4914
|
});
|
|
4915
4915
|
var RawNFTTransactionSchema = import_zod53.z.object({
|
|
4916
4916
|
combined_id: import_zod53.z.string(),
|
|
4917
|
-
combined_date: import_zod53.z.date().transform((d) => d.toISOString()),
|
|
4917
|
+
combined_date: import_zod53.z.coerce.date().transform((d) => d.toISOString()),
|
|
4918
4918
|
contract_address: import_zod53.z.string().nullable(),
|
|
4919
4919
|
from_address: import_zod53.z.string().nullable(),
|
|
4920
4920
|
to_address: import_zod53.z.string().nullable(),
|
|
@@ -4936,7 +4936,7 @@ var UnifiedNFTTransactionSchema = import_zod53.z.object({
|
|
|
4936
4936
|
token: import_zod53.z.string(),
|
|
4937
4937
|
symbol: import_zod53.z.string().optional(),
|
|
4938
4938
|
tokenId: import_zod53.z.string().nullable(),
|
|
4939
|
-
timestamp: import_zod53.z.date().transform((d) => d.toISOString()),
|
|
4939
|
+
timestamp: import_zod53.z.coerce.date().transform((d) => d.toISOString()),
|
|
4940
4940
|
block_number: import_zod53.z.number().nullable(),
|
|
4941
4941
|
txn_fees: import_zod53.z.string().nullable(),
|
|
4942
4942
|
status: import_zod53.z.boolean()
|
|
@@ -5026,7 +5026,7 @@ var WebhookResponseSchema = import_zod54.z.object({
|
|
|
5026
5026
|
filters: import_zod54.z.any().nullable().optional(),
|
|
5027
5027
|
webhookUrl: import_zod54.z.string().url(),
|
|
5028
5028
|
apiKey: import_zod54.z.string(),
|
|
5029
|
-
createdAt: import_zod54.z.union([import_zod54.z.string(), import_zod54.z.date()]).transform((val) => val instanceof Date ? val.toISOString() : val)
|
|
5029
|
+
createdAt: import_zod54.z.union([import_zod54.z.string(), import_zod54.z.coerce.date()]).transform((val) => val instanceof Date ? val.toISOString() : val)
|
|
5030
5030
|
});
|
|
5031
5031
|
var CreateWebhookResponseSchema = WebhookResponseSchema.extend({
|
|
5032
5032
|
webhookSecret: import_zod54.z.string()
|
|
@@ -7216,4 +7216,4 @@ var TokenDetailsPayloadSchema = import_zod102.z.object({
|
|
|
7216
7216
|
subscriptionTracking: import_zod102.z.union([import_zod102.z.boolean(), import_zod102.z.string()]).default(false).transform((val) => typeof val === "string" ? val === "true" : val)
|
|
7217
7217
|
});
|
|
7218
7218
|
|
|
7219
|
-
//# debugId=
|
|
7219
|
+
//# debugId=5FF1D99E1273B58564756E2164756E21
|