Getting Started

Getting started with the ExtraHorizon Javascript SDK

This package serves as a JavaScript wrapper around all Extra Horizon cloud services providing you with fast and easy way to integrate with the Extra Horizon platform.

Features

  • Auth: Provides authentication functionality. The Authentication service supports both OAuth 1.0a and OAuth 2.0 standards.

  • Users: The user service stands in for managing users themselves, as well as roles related to users and groups of users.

  • Data: A flexible data storage for structured data. Additionally, the service enables you to configure a state machine for instances of the structured data. You can couple actions that need to be triggered by the state machine, when/as the entities (instance of structured data) change their state. Thanks to these actions you can define automation rules (see later for more in depth description). These actions also make it possible to interact with other services.

  • Files: A service that handles file storage, metadata & file retrieval based on tokens.

  • Tasks: Start functions on demand, directly or at a future moment.

  • Templates: The template service manages templates used to build emails. It can be used to retrieve, create, update or delete templates as well as resolving them.

  • Mails: Provides mail functionality for other services.

  • Configurations: Provides storage for custom configuration objects. On different levels (general, groups, users, links between groups and users).

  • Dispatchers: Configure actions that need to be invoked when a specific event is/was triggered.

  • Payments: A service that provides payment functionality.

  • Profiles: Storage service of profiles. A profile is a separate object on its own, comprising medical information like medication and medical history, as well as technical information, like what phone a user is using.

  • Notifications: A service that handles push notifications.

  • Localizations: Storage and retrieval of text snippets, translated into multiple languages.

  • Events: Service that provides event (publish/subscribe) functionality for other services.

Interceptors

The data returned from the backend is mapped using interceptors:

  • Timestamps will be of type Date

  • Keys in objects will be camelCased

  • records_affected will be replaced by affectedRecords

🔑 License

The MIT License (MIT). Please see License File for more information.

Developer Notes

Throughout the different services we use this for easy access to other functions in each service. The usage of this as first parameter is explained here: https://www.typescriptlang.org/docs/handbook/2/functions.html#declaring-this-in-a-function. This parameter is excluded from all exported types.

find(
  this: DataSchemasService,
  options?: { rql?: RQLString }
): Promise<PagedResult<Schema>>;

Last updated