@microsoft/agents-hosting-dialogs 1.0.3-g444d99f704 → 1.0.7-g73d3d58001

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -16,7 +16,7 @@ import { Activity } from '@microsoft/agents-activity';
16
16
  * Contains dialog state, information about the state of the dialog stack, for a specific {@link DialogSet}.
17
17
  *
18
18
  * @remarks
19
- * State is read from and saved to storage each turn, and state cache for the turn is managed through the {@link @microsoft/agents-hosting.TurnContext}.
19
+ * State is read from and saved to storage each turn, and state cache for the turn is managed through the {@link TurnContext}.
20
20
  *
21
21
  * For more information, see the articles on
22
22
  * [Managing state](https://docs.microsoft.com/azure/bot-service/bot-builder-concept-state) and
@@ -191,7 +191,7 @@ export declare class DialogContext {
191
191
  *
192
192
  * @param dialogId ID of the prompt dialog to start.
193
193
  * @param promptOrOptions The text of the initial prompt to send the user,
194
- * the {@link @microsoft/agents-activity.Activity} to send as the initial prompt, or
194
+ * the {@link Activity} to send as the initial prompt, or
195
195
  * the object with which to format the prompt dialog.
196
196
  * @param choices Optional. Array of choices for the user to choose from,
197
197
  * for use with a {@link ChoicePrompt}.
@@ -209,7 +209,7 @@ export declare class DialogContext {
209
209
  * @returns {Promise<DialogTurnResult>} a promise resolving to the dialog turn result.
210
210
  *
211
211
  * @remarks
212
- * After the call completes, you can check the turn context's {@link @microsoft/agents-hosting.TurnContext.responded | TurnContext.responded}
212
+ * After the call completes, you can check the turn context's {@link TurnContext.responded}
213
213
  * property to determine if the dialog sent a reply to the user.
214
214
  *
215
215
  * The {@link DialogTurnResult.status} of returned object describes
@@ -243,7 +243,7 @@ class DialogContext {
243
243
  *
244
244
  * @param dialogId ID of the prompt dialog to start.
245
245
  * @param promptOrOptions The text of the initial prompt to send the user,
246
- * or the {@link @microsoft/agents-activity.Activity} to send as the initial prompt.
246
+ * or the {@link Activity} to send as the initial prompt.
247
247
  * @param choices Optional. Array of choices for the user to choose from,
248
248
  * for use with a {@link ChoicePrompt}.
249
249
  * @returns {Promise<DialogTurnResult>} a promise resolving to the dialog turn result.
@@ -274,7 +274,7 @@ class DialogContext {
274
274
  * @returns {Promise<DialogTurnResult>} a promise resolving to the dialog turn result.
275
275
  *
276
276
  * @remarks
277
- * After the call completes, you can check the turn context's {@link @microsoft/agents-hosting.TurnContext.responded | TurnContext.responded}
277
+ * After the call completes, you can check the turn context's {@link TurnContext.responded}
278
278
  * property to determine if the dialog sent a reply to the user.
279
279
  *
280
280
  * The {@link DialogTurnResult.status} of returned object describes
@@ -57,7 +57,7 @@ export interface DialogDependencies {
57
57
  * persist the dialog stack for the set:
58
58
  *
59
59
  * To interact with the sets dialogs you can call `createcontext` with the
60
- * current {@link @microsoft/agents-hosting.TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
60
+ * current {@link TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
61
61
  * execution of the sets dialogs:
62
62
  *
63
63
  */
@@ -12,7 +12,7 @@ const stringUtils_1 = require("./stringUtils");
12
12
  * persist the dialog stack for the set:
13
13
  *
14
14
  * To interact with the sets dialogs you can call `createcontext` with the
15
- * current {@link @microsoft/agents-hosting.TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
15
+ * current {@link TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
16
16
  * execution of the sets dialogs:
17
17
  *
18
18
  */
@@ -32,3 +32,4 @@ export * from './serviceCollection';
32
32
  export * from './configuration';
33
33
  export * from './intentScore';
34
34
  export { runDialog } from './dialogHelper';
35
+ export type { TurnContext } from '@microsoft/agents-hosting';
@@ -8,42 +8,42 @@
8
8
  export declare class DialogPath {
9
9
  /**
10
10
  * Counter of emitted events.
11
- * @constant A string key representing the event counter path (`'dialog.eventCounter'`).
11
+ * A string key representing the event counter path (`'dialog.eventCounter'`).
12
12
  */
13
13
  static readonly eventCounter: string;
14
14
  /**
15
15
  * Currently expected properties.
16
- * @constant A string key representing the expected properties path (`'dialog.expectedProperties'`).
16
+ * A string key representing the expected properties path (`'dialog.expectedProperties'`).
17
17
  */
18
18
  static readonly expectedProperties: string;
19
19
  /**
20
20
  * Default operation to use for entities where there is no identified operation entity.
21
- * @constant A string key representing the default operation path (`'dialog.defaultOperation'`).
21
+ * A string key representing the default operation path (`'dialog.defaultOperation'`).
22
22
  */
23
23
  static readonly defaultOperation: string;
24
24
  /**
25
25
  * Last surfaced entity ambiguity event.
26
- * @constant A string key representing the last event path (`'dialog.lastEvent'`).
26
+ * A string key representing the last event path (`'dialog.lastEvent'`).
27
27
  */
28
28
  static readonly lastEvent: string;
29
29
  /**
30
30
  * Currently required properties.
31
- * @constant A string key representing the required properties path (`'dialog.requiredProperties'`).
31
+ * A string key representing the required properties path (`'dialog.requiredProperties'`).
32
32
  */
33
33
  static readonly requiredProperties: string;
34
34
  /**
35
35
  * Number of retries for the current Ask.
36
- * @constant A string key representing the retries path (`'dialog.retries'`).
36
+ * A string key representing the retries path (`'dialog.retries'`).
37
37
  */
38
38
  static readonly retries: string;
39
39
  /**
40
40
  * Last intent.
41
- * @constant A string key representing the last intent path (`'dialog.lastIntent'`).
41
+ * A string key representing the last intent path (`'dialog.lastIntent'`).
42
42
  */
43
43
  static readonly lastIntent: string;
44
44
  /**
45
45
  * Last trigger event: defined in FormEvent, ask, clarifyEntity etc.
46
- * @constant A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
46
+ * A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
47
47
  */
48
48
  static readonly lastTriggerEvent: string;
49
49
  }
@@ -13,42 +13,42 @@ class DialogPath {
13
13
  exports.DialogPath = DialogPath;
14
14
  /**
15
15
  * Counter of emitted events.
16
- * @constant A string key representing the event counter path (`'dialog.eventCounter'`).
16
+ * A string key representing the event counter path (`'dialog.eventCounter'`).
17
17
  */
18
18
  DialogPath.eventCounter = 'dialog.eventCounter';
19
19
  /**
20
20
  * Currently expected properties.
21
- * @constant A string key representing the expected properties path (`'dialog.expectedProperties'`).
21
+ * A string key representing the expected properties path (`'dialog.expectedProperties'`).
22
22
  */
23
23
  DialogPath.expectedProperties = 'dialog.expectedProperties';
24
24
  /**
25
25
  * Default operation to use for entities where there is no identified operation entity.
26
- * @constant A string key representing the default operation path (`'dialog.defaultOperation'`).
26
+ * A string key representing the default operation path (`'dialog.defaultOperation'`).
27
27
  */
28
28
  DialogPath.defaultOperation = 'dialog.defaultOperation';
29
29
  /**
30
30
  * Last surfaced entity ambiguity event.
31
- * @constant A string key representing the last event path (`'dialog.lastEvent'`).
31
+ * A string key representing the last event path (`'dialog.lastEvent'`).
32
32
  */
33
33
  DialogPath.lastEvent = 'dialog.lastEvent';
34
34
  /**
35
35
  * Currently required properties.
36
- * @constant A string key representing the required properties path (`'dialog.requiredProperties'`).
36
+ * A string key representing the required properties path (`'dialog.requiredProperties'`).
37
37
  */
38
38
  DialogPath.requiredProperties = 'dialog.requiredProperties';
39
39
  /**
40
40
  * Number of retries for the current Ask.
41
- * @constant A string key representing the retries path (`'dialog.retries'`).
41
+ * A string key representing the retries path (`'dialog.retries'`).
42
42
  */
43
43
  DialogPath.retries = 'dialog.retries';
44
44
  /**
45
45
  * Last intent.
46
- * @constant A string key representing the last intent path (`'dialog.lastIntent'`).
46
+ * A string key representing the last intent path (`'dialog.lastIntent'`).
47
47
  */
48
48
  DialogPath.lastIntent = 'dialog.lastIntent';
49
49
  /**
50
50
  * Last trigger event: defined in FormEvent, ask, clarifyEntity etc.
51
- * @constant A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
51
+ * A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
52
52
  */
53
53
  DialogPath.lastTriggerEvent = 'dialog.lastTriggerEvent';
54
54
  //# sourceMappingURL=dialogPath.js.map
@@ -8,62 +8,62 @@
8
8
  export declare class TurnPath {
9
9
  /**
10
10
  * The result from the last dialog that was called.
11
- * @constant A string key representing the last result path (`'turn.lastresult'`).
11
+ * A string key representing the last result path (`'turn.lastresult'`).
12
12
  */
13
13
  static readonly lastResult: string;
14
14
  /**
15
15
  * The current activity for the turn.
16
- * @constant A string key representing the activity path (`'turn.activity'`).
16
+ * A string key representing the activity path (`'turn.activity'`).
17
17
  */
18
18
  static readonly activity: string;
19
19
  /**
20
20
  * The recognized result for the current turn.
21
- * @constant A string key representing the recognized result path (`'turn.recognized'`).
21
+ * A string key representing the recognized result path (`'turn.recognized'`).
22
22
  */
23
23
  static readonly recognized: string;
24
24
  /**
25
25
  * Path to the top intent.
26
- * @constant A string key representing the top intent path (`'turn.recognized.intent'`).
26
+ * A string key representing the top intent path (`'turn.recognized.intent'`).
27
27
  */
28
28
  static readonly topIntent: string;
29
29
  /**
30
30
  * Path to the top score.
31
- * @constant A string key representing the top score path (`'turn.recognized.score'`).
31
+ * A string key representing the top score path (`'turn.recognized.score'`).
32
32
  */
33
33
  static readonly topScore: string;
34
34
  /**
35
35
  * Original text.
36
- * @constant A string key representing the original text path (`'turn.recognized.text'`).
36
+ * A string key representing the original text path (`'turn.recognized.text'`).
37
37
  */
38
38
  static readonly text: string;
39
39
  /**
40
40
  * Original utterance split into unrecognized strings.
41
- * @constant A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
41
+ * A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
42
42
  */
43
43
  static readonly unrecognizedText: string;
44
44
  /**
45
45
  * Entities that were recognized from text.
46
- * @constant A string key representing the recognized entities path (`'turn.recognizedEntities'`).
46
+ * A string key representing the recognized entities path (`'turn.recognizedEntities'`).
47
47
  */
48
48
  static readonly recognizedEntities: string;
49
49
  /**
50
50
  * If true, an interruption has occurred.
51
- * @constant A string key representing the interrupted path (`'turn.interrupted'`).
51
+ * A string key representing the interrupted path (`'turn.interrupted'`).
52
52
  */
53
53
  static readonly interrupted: string;
54
54
  /**
55
55
  * The current dialog event (set during event processing).
56
- * @constant A string key representing the dialog event path (`'turn.dialogEvent'`).
56
+ * A string key representing the dialog event path (`'turn.dialogEvent'`).
57
57
  */
58
58
  static readonly dialogEvent: string;
59
59
  /**
60
60
  * Used to track that we don't end up in an infinite loop of RepeatDialogs().
61
- * @constant A string key representing the repeated IDs path (`'turn.repeatedIds'`).
61
+ * A string key representing the repeated IDs path (`'turn.repeatedIds'`).
62
62
  */
63
63
  static readonly repeatedIds: string;
64
64
  /**
65
65
  * Indicates whether the turncontext.activity has been consumed by some component in the system.
66
- * @constant A string key representing the activity processed path (`'turn.activityProcessed'`).
66
+ * A string key representing the activity processed path (`'turn.activityProcessed'`).
67
67
  */
68
68
  static readonly activityProcessed: string;
69
69
  }
@@ -13,62 +13,62 @@ class TurnPath {
13
13
  exports.TurnPath = TurnPath;
14
14
  /**
15
15
  * The result from the last dialog that was called.
16
- * @constant A string key representing the last result path (`'turn.lastresult'`).
16
+ * A string key representing the last result path (`'turn.lastresult'`).
17
17
  */
18
18
  TurnPath.lastResult = 'turn.lastresult';
19
19
  /**
20
20
  * The current activity for the turn.
21
- * @constant A string key representing the activity path (`'turn.activity'`).
21
+ * A string key representing the activity path (`'turn.activity'`).
22
22
  */
23
23
  TurnPath.activity = 'turn.activity';
24
24
  /**
25
25
  * The recognized result for the current turn.
26
- * @constant A string key representing the recognized result path (`'turn.recognized'`).
26
+ * A string key representing the recognized result path (`'turn.recognized'`).
27
27
  */
28
28
  TurnPath.recognized = 'turn.recognized';
29
29
  /**
30
30
  * Path to the top intent.
31
- * @constant A string key representing the top intent path (`'turn.recognized.intent'`).
31
+ * A string key representing the top intent path (`'turn.recognized.intent'`).
32
32
  */
33
33
  TurnPath.topIntent = 'turn.recognized.intent';
34
34
  /**
35
35
  * Path to the top score.
36
- * @constant A string key representing the top score path (`'turn.recognized.score'`).
36
+ * A string key representing the top score path (`'turn.recognized.score'`).
37
37
  */
38
38
  TurnPath.topScore = 'turn.recognized.score';
39
39
  /**
40
40
  * Original text.
41
- * @constant A string key representing the original text path (`'turn.recognized.text'`).
41
+ * A string key representing the original text path (`'turn.recognized.text'`).
42
42
  */
43
43
  TurnPath.text = 'turn.recognized.text';
44
44
  /**
45
45
  * Original utterance split into unrecognized strings.
46
- * @constant A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
46
+ * A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
47
47
  */
48
48
  TurnPath.unrecognizedText = 'turn.unrecognizedText';
49
49
  /**
50
50
  * Entities that were recognized from text.
51
- * @constant A string key representing the recognized entities path (`'turn.recognizedEntities'`).
51
+ * A string key representing the recognized entities path (`'turn.recognizedEntities'`).
52
52
  */
53
53
  TurnPath.recognizedEntities = 'turn.recognizedEntities';
54
54
  /**
55
55
  * If true, an interruption has occurred.
56
- * @constant A string key representing the interrupted path (`'turn.interrupted'`).
56
+ * A string key representing the interrupted path (`'turn.interrupted'`).
57
57
  */
58
58
  TurnPath.interrupted = 'turn.interrupted';
59
59
  /**
60
60
  * The current dialog event (set during event processing).
61
- * @constant A string key representing the dialog event path (`'turn.dialogEvent'`).
61
+ * A string key representing the dialog event path (`'turn.dialogEvent'`).
62
62
  */
63
63
  TurnPath.dialogEvent = 'turn.dialogEvent';
64
64
  /**
65
65
  * Used to track that we don't end up in an infinite loop of RepeatDialogs().
66
- * @constant A string key representing the repeated IDs path (`'turn.repeatedIds'`).
66
+ * A string key representing the repeated IDs path (`'turn.repeatedIds'`).
67
67
  */
68
68
  TurnPath.repeatedIds = 'turn.repeatedIds';
69
69
  /**
70
70
  * Indicates whether the turncontext.activity has been consumed by some component in the system.
71
- * @constant A string key representing the activity processed path (`'turn.activityProcessed'`).
71
+ * A string key representing the activity processed path (`'turn.activityProcessed'`).
72
72
  */
73
73
  TurnPath.activityProcessed = 'turn.activityProcessed';
74
74
  //# sourceMappingURL=turnPath.js.map
@@ -127,8 +127,8 @@ export interface PromptValidatorContext<T> {
127
127
  * Result returned from the prompts recognizer function.
128
128
  *
129
129
  * @remarks
130
- * The {@link @microsoft/agents-hosting-dialogs.PromptRecognizerResult.succeeded | recognized.succeeded} field can be checked to determine of the recognizer found
131
- * anything and then the value can be retrieved from {@link @microsoft/agents-hosting-dialogs.PromptRecognizerResult.value | recognized.value}.
130
+ * The {@link PromptRecognizerResult.succeeded | recognized.succeeded} field can be checked to determine of the recognizer found
131
+ * anything and then the value can be retrieved from {@link PromptRecognizerResult.value | recognized.value}.
132
132
  *
133
133
  */
134
134
  readonly recognized: PromptRecognizerResult<T>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@microsoft/agents-hosting-dialogs",
4
- "version": "1.0.3-g444d99f704",
4
+ "version": "1.0.7-g73d3d58001",
5
5
  "homepage": "https://github.com/microsoft/Agents-for-js",
6
6
  "repository": {
7
7
  "type": "git",
@@ -16,7 +16,7 @@
16
16
  "main": "dist/index.js",
17
17
  "types": "dist/src/index.d.ts",
18
18
  "dependencies": {
19
- "@microsoft/agents-hosting": "1.0.3-g444d99f704",
19
+ "@microsoft/agents-hosting": "1.0.7-g73d3d58001",
20
20
  "@types/lodash": "^4.17.16",
21
21
  "dependency-graph": "^1.0.0",
22
22
  "@microsoft/recognizers-text-suite": "^1.3.1",
@@ -48,7 +48,7 @@ const ACTIVITY_RECEIVED_EMITTED = Symbol('ActivityReceivedEmitted')
48
48
  * Contains dialog state, information about the state of the dialog stack, for a specific {@link DialogSet}.
49
49
  *
50
50
  * @remarks
51
- * State is read from and saved to storage each turn, and state cache for the turn is managed through the {@link @microsoft/agents-hosting.TurnContext}.
51
+ * State is read from and saved to storage each turn, and state cache for the turn is managed through the {@link TurnContext}.
52
52
  *
53
53
  * For more information, see the articles on
54
54
  * [Managing state](https://docs.microsoft.com/azure/bot-service/bot-builder-concept-state) and
@@ -360,7 +360,7 @@ export class DialogContext {
360
360
  *
361
361
  * @param dialogId ID of the prompt dialog to start.
362
362
  * @param promptOrOptions The text of the initial prompt to send the user,
363
- * the {@link @microsoft/agents-activity.Activity} to send as the initial prompt, or
363
+ * the {@link Activity} to send as the initial prompt, or
364
364
  * the object with which to format the prompt dialog.
365
365
  * @param choices Optional. Array of choices for the user to choose from,
366
366
  * for use with a {@link ChoicePrompt}.
@@ -381,7 +381,7 @@ export class DialogContext {
381
381
  *
382
382
  * @param dialogId ID of the prompt dialog to start.
383
383
  * @param promptOrOptions The text of the initial prompt to send the user,
384
- * or the {@link @microsoft/agents-activity.Activity} to send as the initial prompt.
384
+ * or the {@link Activity} to send as the initial prompt.
385
385
  * @param choices Optional. Array of choices for the user to choose from,
386
386
  * for use with a {@link ChoicePrompt}.
387
387
  * @returns {Promise<DialogTurnResult>} a promise resolving to the dialog turn result.
@@ -420,7 +420,7 @@ export class DialogContext {
420
420
  * @returns {Promise<DialogTurnResult>} a promise resolving to the dialog turn result.
421
421
  *
422
422
  * @remarks
423
- * After the call completes, you can check the turn context's {@link @microsoft/agents-hosting.TurnContext.responded | TurnContext.responded}
423
+ * After the call completes, you can check the turn context's {@link TurnContext.responded}
424
424
  * property to determine if the dialog sent a reply to the user.
425
425
  *
426
426
  * The {@link DialogTurnResult.status} of returned object describes
package/src/dialogSet.ts CHANGED
@@ -64,7 +64,7 @@ export interface DialogDependencies {
64
64
  * persist the dialog stack for the set:
65
65
  *
66
66
  * To interact with the sets dialogs you can call `createcontext` with the
67
- * current {@link @microsoft/agents-hosting.TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
67
+ * current {@link TurnContext}. That will create a {@link DialogContext} that can be used to start or continue
68
68
  * execution of the sets dialogs:
69
69
  *
70
70
  */
package/src/index.ts CHANGED
@@ -34,3 +34,6 @@ export * from './configuration'
34
34
  export * from './intentScore'
35
35
 
36
36
  export { runDialog } from './dialogHelper'
37
+
38
+ // Type-only re-export to avoid TypeDoc issues
39
+ export type { TurnContext } from '@microsoft/agents-hosting'
@@ -9,49 +9,49 @@
9
9
  export class DialogPath {
10
10
  /**
11
11
  * Counter of emitted events.
12
- * @constant A string key representing the event counter path (`'dialog.eventCounter'`).
12
+ * A string key representing the event counter path (`'dialog.eventCounter'`).
13
13
  */
14
14
  static readonly eventCounter: string = 'dialog.eventCounter'
15
15
 
16
16
  /**
17
17
  * Currently expected properties.
18
- * @constant A string key representing the expected properties path (`'dialog.expectedProperties'`).
18
+ * A string key representing the expected properties path (`'dialog.expectedProperties'`).
19
19
  */
20
20
  static readonly expectedProperties: string = 'dialog.expectedProperties'
21
21
 
22
22
  /**
23
23
  * Default operation to use for entities where there is no identified operation entity.
24
- * @constant A string key representing the default operation path (`'dialog.defaultOperation'`).
24
+ * A string key representing the default operation path (`'dialog.defaultOperation'`).
25
25
  */
26
26
  static readonly defaultOperation: string = 'dialog.defaultOperation'
27
27
 
28
28
  /**
29
29
  * Last surfaced entity ambiguity event.
30
- * @constant A string key representing the last event path (`'dialog.lastEvent'`).
30
+ * A string key representing the last event path (`'dialog.lastEvent'`).
31
31
  */
32
32
  static readonly lastEvent: string = 'dialog.lastEvent'
33
33
 
34
34
  /**
35
35
  * Currently required properties.
36
- * @constant A string key representing the required properties path (`'dialog.requiredProperties'`).
36
+ * A string key representing the required properties path (`'dialog.requiredProperties'`).
37
37
  */
38
38
  static readonly requiredProperties: string = 'dialog.requiredProperties'
39
39
 
40
40
  /**
41
41
  * Number of retries for the current Ask.
42
- * @constant A string key representing the retries path (`'dialog.retries'`).
42
+ * A string key representing the retries path (`'dialog.retries'`).
43
43
  */
44
44
  static readonly retries: string = 'dialog.retries'
45
45
 
46
46
  /**
47
47
  * Last intent.
48
- * @constant A string key representing the last intent path (`'dialog.lastIntent'`).
48
+ * A string key representing the last intent path (`'dialog.lastIntent'`).
49
49
  */
50
50
  static readonly lastIntent: string = 'dialog.lastIntent'
51
51
 
52
52
  /**
53
53
  * Last trigger event: defined in FormEvent, ask, clarifyEntity etc.
54
- * @constant A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
54
+ * A string key representing the last trigger event path (`'dialog.lastTriggerEvent'`).
55
55
  */
56
56
  static readonly lastTriggerEvent: string = 'dialog.lastTriggerEvent'
57
57
  }
@@ -9,73 +9,73 @@
9
9
  export class TurnPath {
10
10
  /**
11
11
  * The result from the last dialog that was called.
12
- * @constant A string key representing the last result path (`'turn.lastresult'`).
12
+ * A string key representing the last result path (`'turn.lastresult'`).
13
13
  */
14
14
  static readonly lastResult: string = 'turn.lastresult'
15
15
 
16
16
  /**
17
17
  * The current activity for the turn.
18
- * @constant A string key representing the activity path (`'turn.activity'`).
18
+ * A string key representing the activity path (`'turn.activity'`).
19
19
  */
20
20
  static readonly activity: string = 'turn.activity'
21
21
 
22
22
  /**
23
23
  * The recognized result for the current turn.
24
- * @constant A string key representing the recognized result path (`'turn.recognized'`).
24
+ * A string key representing the recognized result path (`'turn.recognized'`).
25
25
  */
26
26
  static readonly recognized: string = 'turn.recognized'
27
27
 
28
28
  /**
29
29
  * Path to the top intent.
30
- * @constant A string key representing the top intent path (`'turn.recognized.intent'`).
30
+ * A string key representing the top intent path (`'turn.recognized.intent'`).
31
31
  */
32
32
  static readonly topIntent: string = 'turn.recognized.intent'
33
33
 
34
34
  /**
35
35
  * Path to the top score.
36
- * @constant A string key representing the top score path (`'turn.recognized.score'`).
36
+ * A string key representing the top score path (`'turn.recognized.score'`).
37
37
  */
38
38
  static readonly topScore: string = 'turn.recognized.score'
39
39
 
40
40
  /**
41
41
  * Original text.
42
- * @constant A string key representing the original text path (`'turn.recognized.text'`).
42
+ * A string key representing the original text path (`'turn.recognized.text'`).
43
43
  */
44
44
  static readonly text: string = 'turn.recognized.text'
45
45
 
46
46
  /**
47
47
  * Original utterance split into unrecognized strings.
48
- * @constant A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
48
+ * A string key representing the unrecognized text path (`'turn.unrecognizedText'`).
49
49
  */
50
50
  static readonly unrecognizedText: string = 'turn.unrecognizedText'
51
51
 
52
52
  /**
53
53
  * Entities that were recognized from text.
54
- * @constant A string key representing the recognized entities path (`'turn.recognizedEntities'`).
54
+ * A string key representing the recognized entities path (`'turn.recognizedEntities'`).
55
55
  */
56
56
  static readonly recognizedEntities: string = 'turn.recognizedEntities'
57
57
 
58
58
  /**
59
59
  * If true, an interruption has occurred.
60
- * @constant A string key representing the interrupted path (`'turn.interrupted'`).
60
+ * A string key representing the interrupted path (`'turn.interrupted'`).
61
61
  */
62
62
  static readonly interrupted: string = 'turn.interrupted'
63
63
 
64
64
  /**
65
65
  * The current dialog event (set during event processing).
66
- * @constant A string key representing the dialog event path (`'turn.dialogEvent'`).
66
+ * A string key representing the dialog event path (`'turn.dialogEvent'`).
67
67
  */
68
68
  static readonly dialogEvent: string = 'turn.dialogEvent'
69
69
 
70
70
  /**
71
71
  * Used to track that we don't end up in an infinite loop of RepeatDialogs().
72
- * @constant A string key representing the repeated IDs path (`'turn.repeatedIds'`).
72
+ * A string key representing the repeated IDs path (`'turn.repeatedIds'`).
73
73
  */
74
74
  static readonly repeatedIds: string = 'turn.repeatedIds'
75
75
 
76
76
  /**
77
77
  * Indicates whether the turncontext.activity has been consumed by some component in the system.
78
- * @constant A string key representing the activity processed path (`'turn.activityProcessed'`).
78
+ * A string key representing the activity processed path (`'turn.activityProcessed'`).
79
79
  */
80
80
  static readonly activityProcessed: string = 'turn.activityProcessed'
81
81
  }
@@ -144,8 +144,8 @@ export interface PromptValidatorContext<T> {
144
144
  * Result returned from the prompts recognizer function.
145
145
  *
146
146
  * @remarks
147
- * The {@link @microsoft/agents-hosting-dialogs.PromptRecognizerResult.succeeded | recognized.succeeded} field can be checked to determine of the recognizer found
148
- * anything and then the value can be retrieved from {@link @microsoft/agents-hosting-dialogs.PromptRecognizerResult.value | recognized.value}.
147
+ * The {@link PromptRecognizerResult.succeeded | recognized.succeeded} field can be checked to determine of the recognizer found
148
+ * anything and then the value can be retrieved from {@link PromptRecognizerResult.value | recognized.value}.
149
149
  *
150
150
  */
151
151
  readonly recognized: PromptRecognizerResult<T>;