Skip to main content

DoptPluginOptions

@dopt/vue / Exports / DoptPluginOptions

Interface: DoptPluginOptions

Table of contents

Properties

Properties

userId

userId: undefined | string

The userId you're fetching block and flows for.

Remarks

If this userId is undefined, you can subsequently call the setter returned by useUpdateUser to register the appropriate user and / or group.

Defined in

packages/@dopt/vue/src/plugin.ts:14


groupId

Optional groupId: string

An optional groupId for that userId.

Defined in

packages/@dopt/vue/src/plugin.ts:18


apiKey

apiKey: string

Your blocks API key.

Defined in

packages/@dopt/vue/src/plugin.ts:22


logLevel

Optional logLevel: LogLevels

Defined in

packages/@dopt/vue/src/plugin.ts:23


flowVersions

flowVersions: Record<string, number | "uncommitted" | "latest">

An object containing all flows and versions you'd like to fetch.

The versions can be a number (a fixed version), "uncommitted" which references the uncommitted version in Dopt, or "latest" which references the most recently created version in Dopt.

Remarks

⚠️ Warning ⚠️: Using either "uncommitted" or "latest" will cause updates made in Dopt to be reflected in the provider upon window reload without needing to update or deploy code.

Example

{
"welcome-to-dopt": 3,
"test-flow": "uncommitted",
"feature-announcements": "latest",
};

Defined in

packages/@dopt/vue/src/plugin.ts:46


optimisticUpdates

Optional optimisticUpdates: boolean

A boolean which defines whether complete intents on step blocks should optimistically update the client before hearing back that the change has been committed.

Within Dopt, this defaults to true unless explicitly set as false.

Defined in

packages/@dopt/vue/src/plugin.ts:54