@dopt/blocks-javascript-node-client
TypeScript icon, indicating that this package has built-in type declarations

1.1.7 • Public • Published

Dopt blocks JavaScript Node.js client

Overview

The Dopt blocks JavaScript client is a friendly server-side package for accessing the Dopt blocks API to access and updates block and flow state for a particular user in Dopt.

It is published to npm as @dopt/blocks-javascript-node-client.

Installation

Via npm:

npm install @dopt/blocks-javascript-node-client

Via Yarn:

yarn add @dopt/blocks-javascript-node-client

Via pnpm:

pnpm add @dopt/blocks-javascript-node-client

Configuration

To configure the blocks JavaScript client you will need

  1. A blocks API key (generated in Dopt)
  2. A block uid

Usage

Initialization

import { DoptApiClient } from '@dopt/blocks-javascript-node-client';

const client = new DoptApiClient({
  apiKey: process.env.DOPT_BLOCKS_API_KEY as string,
});

Blocks

Get block data using the getBlock method:

const block = await client.blocks.getBlock('model-block-1', {
  version: 3,
  userIdentifier: 'example-user-idenitifer',
});

Transition a block using the transition method:

await client.blocks.transition('model-block-1', {
  version: 3,
  userIdentifier: 'example-user-identifier',
  transitions: 'complete',
});

Flows

Get flow data using the getFlow method:

const flow = await client.flows.getFlow('example-flow-identifier', {
  version: 2,
  userIdentifier: 'example-user-identifier',
});

Transition a flow using the flowIntent method:

await client.flows.intent('example-flow-identifier', 'finish', {
  version: 3,
  userIdentifier: 'example-user-identifier',
});

Readme

Keywords

none

Package Sidebar

Install

npm i @dopt/blocks-javascript-node-client

Weekly Downloads

8

Version

1.1.7

License

MIT

Unpacked Size

79.6 kB

Total Files

146

Last publish

Collaborators

  • kseth
  • alexchantastic
  • pankaj-avhad-dopt
  • chasebish
  • joemckenney