Skip to content

Commit 214bb02

Browse files
committed
new fields
1 parent 13306ec commit 214bb02

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "helyosjs-sdk",
3-
"version": "2.2.0",
3+
"version": "2.2.1",
44
"description": "Comunication with helyos postgress database using graphql interface",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/cruds/agents.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,9 @@ export class AGENTS {
271271
rbmqVhost
272272
acknowledgeReservation
273273
protocol
274+
coordinateFrame
275+
unit
276+
referencePoint
274277
}
275278
}
276279
`;

src/cruds/yards.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,13 +177,14 @@ import { H_Yard } from '../helyos.models';
177177
lat,
178178
lon,
179179
alt,
180-
rbmq_vhost,
181-
coordinateUnit,
180+
rbmqVhost,
181+
coordinateFrame,
182182
createdAt,
183183
deletedAt,
184184
modifiedAt,
185185
pictureBase64,
186186
picturePos,
187+
unit
187188
}
188189
}
189190
`;

src/helyos.models.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ export class H_Tools {
5151
acknowledgeReservation: boolean;
5252
isActuator: boolean;
5353
protocol: 'AMQP' | 'MQTT';
54+
coordinateFrame: string;
55+
unit:string;
56+
referencePoint: string;
5457

5558

5659
/*
@@ -172,6 +175,8 @@ export class H_Yard {
172175
modifiedAt: Date;
173176
pictureBase64: string;
174177
picturePos: any;
178+
coordinateFrame: string;
179+
unit:string;
175180
}
176181

177182
export interface GeoPoint {lat: number, lon: number, zoomLevel: number}

0 commit comments

Comments
 (0)