@airinstitute/deepint-js-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.35 • Public • Published

Deep Intelligence Javascript SDK

Logo

This is a Node.js module available through the npm registry for connect with the Deep Intelligence's API.

This module lets you connect the platform Deep Intelligence,using their functions, to your projects. It encapsulates by means of functions the different calls to the API in order to obtain the required data from it.

Table of Contents
  1. Install
  2. Usage
  3. Development Commands
  4. Built With
  5. Acknowledgments

Install


npm i @airinstitute/deepint-js-sdk

🚩 Usage


You can import this package using the classic Javascript require or with import in the case you use Typescript as shown on the following examples:

Example Javascript 🔻


const deepint = require('@airinstitute/deepint-js-sdk');
deepint.getWorkspaces()
    .then(workspaces => {
        console.log(workspaces);
    })
    .catch(err => {
        console.log(err);
    });

Example Typescript 🔻


import * as deepint from '@airinstitute/deepint-js-sdk';
deepint.getWorkspaces()
    .then(workspaces => {
        console.log(workspaces);
    })
    .catch(err => {
        console.log(err);
    });

OR using desestructuring to get only the requested function

import {getWorkspaces} from '@airinstitute/deepint-js-sdk';
getWorkspaces()
    .then(workspaces => {
        console.log(workspaces);
    })
    .catch(err => {
        console.log(err);
    });

Functions 🔻


The module contains all API functions with a characteristic function name: 'methodAPI'+'groupAsociated'+'groupFunctions'+'informationFunction'. Eg: get+Workspace+Visualization+ById = getWorkspaceVisualizationById(params);.

Here there is a list of functions you can use:

  • Authentication

    • postLoginToken
    • postRevokeToken
  • Account

    • getProfile
    • getSession
  • Workspaces

    • getWorkspaces
    • postWorkspaces
    • postWorkspacesImport
    • getWorkspaceById
    • postWorkspaceById
    • deleteWorkspaceById
    • postIframe
    • postWorkspace
    • postWorkspaceClone
  • Tasks

    • getWorkspaceTasks
    • getWorkspaceTaskById
    • deleteWorkspaceTaskById
  • Sources

    • getWorkspaceSources
    • postWorkspaceSource
    • postSourceClone
    • postSourceDerived
    • postSourceExternal
    • postSourceOther
    • getWorkspaceSourceById
    • postWorkspaceSourceById
    • deleteWorkspaceSourceById
    • getConnectionSourceById
    • postConnectionSourceById
    • getAutoUpdateSourceById
    • postAutoUpdateSourceById
    • postTransformFeaturesSourcesById
    • getSourceInstances
    • postSourceInstances
    • deleteSourceInstances
    • postExternalSources
  • Models

    • getWorkspaceModels
    • postWorkspaceModels
    • getWorkspaceModelById
    • postWorkspaceModelById
    • deleteWorkspaceModelById
    • getModelEvaluation
    • getModelPredict
    • postModelBatchPredict
    • postModelPredict1d
  • Alerts

    • getWorkspaceAlerts
    • postWorkspaceAlerts
    • getWorkspaceAlertById
    • postWorkspaceAlertById
    • deleteWorkspaceAlertById
    • getWorkspaceAlertInstances
  • Emails

    • getWorkspaceEmails
    • postWorkspaceEmails
    • deleteWorkspaceEmailById
  • Visualizations

    • getWorkspaceVisualizations
    • postWorkspaceVisualizations
    • getWorkspaceVisualizationById
    • postWorkspaceVisualizationById
    • deleteWorkspaceVisualizationById
    • postCloneVisualizationById
  • Dashboards

    • getWorkspaces
    • postWorkspaces
    • postWorkspacesImport
    • getWorkspaceById
    • postWorkspaceById
    • deleteWorkspaceById
    • postIframe
    • postWorkspace
    • postWorkspaceClone

These functions work asynchronously, so they return a promise.

Configuration 🔻


To configure the module, set the following environment variables:

Variable Name Description
X_AUTH_TOKEN Token Authorization to connect to the API
X_DEEPINT_ORGANIZATION Organization Token
DEEPINT_API_URL Deep Intelligence API URL, default is https://app.deepint.net/api/v1/

In case you can not set environment variable and still want to use this SDK you can set this parameters directly on your code, like this:

const deepint = require('@airinstitute/deepint-js-sdk');
// If you did not setted X_AUTH_TOKEN && X_DEEPINT_ORGANIZATION env variables in order to be able to use the SDK you can set this variables on code in the next way

deepint.Config.getInstance().setToken("<Your Deep Intelligence user token>");
deepint.Config.getInstance().setOrganization("<Your Deep Intelligence organization ID>");

// This method it is only for development use in production please set the envionment variables

Even this method is available and working its highly recomended to set this variables through environment variables due it's more safety and this last method if used with text plain can expose your Deep Intelligence credentials.

For source configuration, set the following variables:

Variable Name Description
SOURCE_PUB_KEY Public key of the external source
SOURCE_SECRET_KEY External source secret key

⌨️ Development Commands


Module repository for more information: https://github.com/deepintdev/deepint-node-connector

Start by running npm install inside the module folder. npm run tsc to build the module, npm run start to build the module, npm run pre to run it in development mode.

To get the documentation of the module functions: npx typedoc --out docs .


🌐 Built With


This project has been developed with TypeScript, Node Js and Express languages and technologies.

TypeScript Node


🙏 Acknowledgments


To express our gratitude to the following people involved in this project:

Package Sidebar

Install

npm i @airinstitute/deepint-js-sdk

Weekly Downloads

8

Version

1.0.35

License

MIT

Unpacked Size

221 kB

Total Files

49

Last publish

Collaborators

  • gandalfran
  • raullb34
  • amartdom
  • airuser