From bf0b6c686583ba139391f054fd508ea8a6d548ba Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 2 Oct 2023 16:13:28 -0300 Subject: [PATCH] Update chapter-05-gbdialog-reference.md --- book/chapter-05-gbdialog-reference.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/book/chapter-05-gbdialog-reference.md b/book/chapter-05-gbdialog-reference.md index 2efe5fc7..7dff7f31 100644 --- a/book/chapter-05-gbdialog-reference.md +++ b/book/chapter-05-gbdialog-reference.md @@ -58,6 +58,18 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | ADD NOTE | Adds a note to a file named Notes.xls of .gbdata. eg.: ADD NOTE "text" | | ALLOW ROLE | Check if role specified in People sheet (.gbdata) will have access. eg.: ALLOW ROLE "DevOps" | +### Internal Variables and Functions. + +These are variables that can be used in General Bots BASIC to faster dialog and services faster. +All values from .gbot Config.xlsx are also provided as variables, so it can be acessed directly in dialog. + +| Instruction / Usage | Description | +| ------------------------------------------------------------- | ---------------------------------------------------------------------------- | +| aadToken() | Auto generated variable that contains Azure AD Token useful for calling Microsoft Web Services. | + + + + ### Options | Instruction / Usage | Description | @@ -77,6 +89,8 @@ The following file types are loaded from a .gbdialog package: `.vbs`, `.vb`, `.b | SET OPERATOR [OR] | Defines OR operations on multiple FIND filters separated by comma, eg.: FIND "A1=2", "A3=4" | | SET FILTER TYPE | Uses the specified type in next FIND calls, disabling auto detection of filter type, eg.: SET FILTER TYPE date, string | + + * = Work in progress. ## How To