From edd5c5284a1e1b0b52e26c500f6595945edc14b5 Mon Sep 17 00:00:00 2001 From: NurAlan Date: Thu, 4 Dec 2025 12:17:21 +0700 Subject: [PATCH] chore: remove nonce and timestamp in body --- src/modules/device/schema.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/device/schema.ts b/src/modules/device/schema.ts index 7e91dec..e03b00b 100644 --- a/src/modules/device/schema.ts +++ b/src/modules/device/schema.ts @@ -10,8 +10,6 @@ export const deviceCommandBody = z.object({ deviceType: z.string(), commandType: z.string(), towerNumber: z.string(), - timestamp: z.string(), - nonce: z.string(), payload: z.object({ action: z.string(), }), @@ -28,8 +26,6 @@ export const deviceQueryParams = z.object({ deviceType: z.string(), commandType: z.string(), towerNumber: z.string(), - timestamp: z.string(), - nonce: z.string(), }) export type DeviceQueryParams = z.infer