From 60fce3af0ee96ea5ca229e60e340fa4345aa263c Mon Sep 17 00:00:00 2001 From: Leonardo Brandao Date: Mon, 20 Oct 2025 14:25:56 -0300 Subject: [PATCH] Feat: add port property to createPropertyDTO --- package.json | 2 +- src/interface/model/Property.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 864bac3..023c3fa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ozmap/ozmap-sdk", - "version": "1.1.5", + "version": "1.1.6", "description": "Use this sdk to access ozmap plataform and connect it to your own systems. ", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/interface/model/Property.ts b/src/interface/model/Property.ts index dc0f08e..e54b553 100644 --- a/src/interface/model/Property.ts +++ b/src/interface/model/Property.ts @@ -64,6 +64,7 @@ const CreatePropertyDTOSchema = PropertyDataSchema.partial({ auto_connect: z.boolean().optional(), force: z.boolean().optional(), connector: stringOrObjectId.nullish(), + port: z.number().optional(), }), );