Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creating  or removing Interactions can now be done outside the CMS via the BMP CLI.

Table of Contents

Create interaction

Code Block
languagebash
themeRDark
blinkm bmp create interaction <name>  --type<type>   --remote

Using the create interaction function will create a local version of the interaction on your computer.

Parameter DescriptionOptions
name 
The name of the interaction
 
type
 
The interaction type
"madl" (default), or "message"
--remote  
 
Will create the interaction locally and 

on the BMP as a place holder

 
Info
titleCteate Create Interaction

Created Interactions will not appear on the BMP until deployed, Except except for --remote which will add a place holder on the BMP

 

Create interaction Examples

Here is an example of the BMP CLI workflow on a sample answerSpace called "myanswerSpace"

The local file

First we will bring the empty answerSpace down from the BMP

Code Block
languagebash
blinkm bmp pull

Here is the view from the BMP CMS, No interactions are yet created.

Now we are ready to start creating interactions.

Code Block
languagebash
themeRDark
blinkm bmp create interaction default

...

Info

As the interaction type was left blank, The interaction "default" was create as a madl type

Lets now create a "message" interaction using the – type option

Code Block
languagebash
blinkm bmp create interaction message --type message

Now lets create an interaction using the --remote option

Code Block
languagebash
themeRDark
blinkm bmp create interaction myinteraction --remote

...

Info
title--remote

Note because we used --remote an empty interaction place holder now shows in the BMP CMS.

This method is ideal when wanting to reserve a unique name when developers are using both CMS and CLI at the same time.

Lets now deploy the interactions to the BMP

Code Block
languagebash
themeRDark
blinkm bmp deploy

...

ItemDescriptionCMS MenuOptions
displayHidden Items Are Not Displayed In Lists But Are Otherwise Still AccessibleDisplayhide / show
displayNameCaption or title to display to usersDisplay Name 
statusInactive Items Are Hidden And Treated As Though They Do Not ExistStatusactive / inactive

 

 

...