@highmobility/auto-api-javascript
TypeScript icon, indicating that this package has built-in type declarations

1.6.2 • Public • Published

AutoAPI JavaScript

AutoAPI for JavaScript/TypeScript - the parsing library for the Auto API vehicle data model

Introduction

This library aims to provide a low-level access for building and decoding Auto API commands/data structures from/to binary/JSON. Both CommonJS and ES builds are included in this package.

Basic usage

Install package

npm install @highmobility/auto-api-javascript --save

Get / Set commands

import { Command, CommandType } from '@highmobility/auto-api-javascript';
import { Race } from '@highmobility/auto-api-javascript/lib/capabilities';


// Request Race state properties
const request = new Command(CommandType.Get, new Race()).encode();

// Parse command with type hinting
const command = Command.parse<Race>(request);

// Add property
if (command.type === CommandType.Get) {
  const { capability } = command;

  if (!capability.hasProperty(Race.Properties.GearMode)) {
    capability
      .createProperty(Race.Properties.GearMode, 'reverse')
      .createComponent('timestamp', new Date());
  }
}

// Encode response
const response = command.setType(CommandType.Set).encode();

Multi-command

import { Command, CommandType } from '@highmobility/auto-api-javascript';
import { Capabilities, Doors, Ignition, MultiCommand } from '@highmobility/auto-api-javascript/lib/capabilities';


const multiCommand = new Command(CommandType.Set, new MultiCommand());

// Command A
const setCapabilitiesWebhooksCommand = new Command(CommandType.Set, new Capabilities());
setCapabilitiesWebhooksCommand.capability.createProperty(Capabilities.Properties.Webhooks, {
  available: 'available',
  event: 'trip_started',
});

// Command B
const doors = new Doors();
doors.createProperty(Doors.Properties.Locks, {
  location: 'front_right',
  lock_state: 'locked',
});
const setDoorLocksCommand = new Command(CommandType.Set, doors);

// Command C
const setIgnitionStatusCommand = new Command(CommandType.Set, new Ignition());
setIgnitionStatusCommand.capability.createProperty(Ignition.Properties.Status, 'off');

// Set multi-command properties by encoding (sub)commands
[setCapabilitiesWebhooksCommand, setDoorLocksCommand, setIgnitionStatusCommand].forEach((command) =>
  multiCommand.capability.createProperty(MultiCommand.Properties.MultiCommands, command.encode()),
);

// Get JSON representation of multi-command
const multiCommandAsJSON = JSON.stringify(multiCommand);

// Encode multi-command
const multiCommandEncoded = multiCommand.encode();

// Parsing binary encoded command as JSON must yield the same result
console.log(
  multiCommandAsJSON === JSON.stringify(Command.parse(multiCommandEncoded)),
);

Configuration helper & Factories

import { CapabilityFactory, Configuration } from '@highmobility/auto-api-javascript';

// Create capability states from Auto API examples
const capabilities = Configuration.getConfiguration().capabilities;

const state = Object.entries(capabilities).reduce((state, [name, { properties }]) => {
  const capability = CapabilityFactory.createFromName(name);

  for (const { name: propertyName } of Object.values(properties)) {
    capability.createPropertiesFromExamples(propertyName as any);
  }

  return {
    ...state,
    [name]: capability.toJSON(),
  };
}, {});

console.log(JSON.stringify(state, null, 2));

Readme

Keywords

none

Package Sidebar

Install

npm i @highmobility/auto-api-javascript

Weekly Downloads

11

Version

1.6.2

License

MIT

Unpacked Size

1.17 MB

Total Files

417

Last publish

Collaborators

  • kevinvaldek
  • allan.tatter
  • milad-hm
  • unemati