@microsoft/agents-hosting-dialogs 1.1.0-alpha.9.g154c2c8a32 → 1.1.1
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.
- package/dist/src/choices/index.d.ts +2 -2
- package/dist/src/choices/index.js +0 -2
- package/dist/src/choices/index.js.map +1 -1
- package/dist/src/index.d.ts +1 -3
- package/dist/src/index.js +0 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/memory/componentPathResolvers.d.ts +1 -1
- package/dist/src/memory/componentPathResolvers.js +1 -1
- package/dist/src/memory/index.d.ts +2 -2
- package/dist/src/memory/index.js +0 -6
- package/dist/src/memory/index.js.map +1 -1
- package/dist/src/prompts/index.d.ts +0 -1
- package/dist/src/prompts/index.js +0 -1
- package/dist/src/prompts/index.js.map +1 -1
- package/package.json +3 -3
- package/src/choices/index.ts +2 -2
- package/src/index.ts +1 -3
- package/src/memory/componentPathResolvers.ts +1 -1
- package/src/memory/index.ts +2 -2
- package/src/prompts/index.ts +0 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
export * from './choice';
|
|
6
6
|
export * from './choiceFactory';
|
|
7
7
|
export * from './findChoices';
|
|
8
|
-
export
|
|
8
|
+
export { FindValuesOptions } from './findValues';
|
|
9
|
+
export { FoundValue } from './findValues';
|
|
9
10
|
export * from './modelResult';
|
|
10
11
|
export * from './recognizeChoices';
|
|
11
|
-
export * from './tokenizer';
|
|
@@ -21,8 +21,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
21
21
|
__exportStar(require("./choice"), exports);
|
|
22
22
|
__exportStar(require("./choiceFactory"), exports);
|
|
23
23
|
__exportStar(require("./findChoices"), exports);
|
|
24
|
-
__exportStar(require("./findValues"), exports);
|
|
25
24
|
__exportStar(require("./modelResult"), exports);
|
|
26
25
|
__exportStar(require("./recognizeChoices"), exports);
|
|
27
|
-
__exportStar(require("./tokenizer"), exports);
|
|
28
26
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/choices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,2CAAwB;AACxB,kDAA+B;AAC/B,gDAA6B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/choices/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,2CAAwB;AACxB,kDAA+B;AAC/B,gDAA6B;AAG7B,gDAA6B;AAC7B,qDAAkC"}
|
package/dist/src/index.d.ts
CHANGED
|
@@ -13,13 +13,11 @@ export * from './dialogContextError';
|
|
|
13
13
|
export * from './dialogEvents';
|
|
14
14
|
export * from './dialogManager';
|
|
15
15
|
export * from './dialogSet';
|
|
16
|
-
export * from './dialogTurnStateConstants';
|
|
17
16
|
export * from './dialogsAgentComponent';
|
|
18
17
|
export * from './memory';
|
|
19
18
|
export * from './prompts';
|
|
20
19
|
export * from './choices';
|
|
21
20
|
export * from './recognizer';
|
|
22
|
-
export * from './template';
|
|
23
21
|
export * from './waterfallDialog';
|
|
24
22
|
export * from './waterfallStepContext';
|
|
25
23
|
export * from './dialogTurnResult';
|
|
@@ -29,7 +27,7 @@ export * from './dialogReason';
|
|
|
29
27
|
export * from './dialogInstance';
|
|
30
28
|
export * from './recognizerResult';
|
|
31
29
|
export * from './serviceCollection';
|
|
32
|
-
export
|
|
30
|
+
export { Configuration } from './configuration';
|
|
33
31
|
export * from './intentScore';
|
|
34
32
|
export { runDialog } from './dialogHelper';
|
|
35
33
|
export type { TurnContext } from '@microsoft/agents-hosting';
|
package/dist/src/index.js
CHANGED
|
@@ -30,13 +30,11 @@ __exportStar(require("./dialogContextError"), exports);
|
|
|
30
30
|
__exportStar(require("./dialogEvents"), exports);
|
|
31
31
|
__exportStar(require("./dialogManager"), exports);
|
|
32
32
|
__exportStar(require("./dialogSet"), exports);
|
|
33
|
-
__exportStar(require("./dialogTurnStateConstants"), exports);
|
|
34
33
|
__exportStar(require("./dialogsAgentComponent"), exports);
|
|
35
34
|
__exportStar(require("./memory"), exports);
|
|
36
35
|
__exportStar(require("./prompts"), exports);
|
|
37
36
|
__exportStar(require("./choices"), exports);
|
|
38
37
|
__exportStar(require("./recognizer"), exports);
|
|
39
|
-
__exportStar(require("./template"), exports);
|
|
40
38
|
__exportStar(require("./waterfallDialog"), exports);
|
|
41
39
|
__exportStar(require("./waterfallStepContext"), exports);
|
|
42
40
|
__exportStar(require("./dialogTurnResult"), exports);
|
|
@@ -46,7 +44,6 @@ __exportStar(require("./dialogReason"), exports);
|
|
|
46
44
|
__exportStar(require("./dialogInstance"), exports);
|
|
47
45
|
__exportStar(require("./recognizerResult"), exports);
|
|
48
46
|
__exportStar(require("./serviceCollection"), exports);
|
|
49
|
-
__exportStar(require("./configuration"), exports);
|
|
50
47
|
__exportStar(require("./intentScore"), exports);
|
|
51
48
|
var dialogHelper_1 = require("./dialogHelper");
|
|
52
49
|
Object.defineProperty(exports, "runDialog", { enumerable: true, get: function () { return dialogHelper_1.runDialog; } });
|
package/dist/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;;;;;;AAEH,mDAAgC;AAChC,oDAAiC;AACjC,iDAA8B;AAC9B,8CAA2B;AAC3B,2CAAwB;AACxB,oDAAiC;AACjC,kDAA+B;AAC/B,uDAAoC;AACpC,iDAA8B;AAC9B,kDAA+B;AAC/B,8CAA2B;AAC3B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;;;;;;;;;;;;;AAEH,mDAAgC;AAChC,oDAAiC;AACjC,iDAA8B;AAC9B,8CAA2B;AAC3B,2CAAwB;AACxB,oDAAiC;AACjC,kDAA+B;AAC/B,uDAAoC;AACpC,iDAA8B;AAC9B,kDAA+B;AAC/B,8CAA2B;AAC3B,0DAAuC;AACvC,2CAAwB;AACxB,4CAAyB;AACzB,4CAAyB;AACzB,+CAA4B;AAC5B,oDAAiC;AACjC,yDAAsC;AACtC,qDAAkC;AAClC,qDAAkC;AAClC,gDAA6B;AAC7B,iDAA8B;AAC9B,mDAAgC;AAChC,qDAAkC;AAClC,sDAAmC;AAEnC,gDAA6B;AAE7B,+CAA0C;AAAjC,yGAAA,SAAS,OAAA"}
|
|
@@ -10,7 +10,7 @@ export interface ComponentPathResolvers {
|
|
|
10
10
|
getPathResolvers(): PathResolver[];
|
|
11
11
|
}
|
|
12
12
|
/**
|
|
13
|
-
* Check if a ComponentRegistration
|
|
13
|
+
* Check if a ComponentRegistration is ComponentPathResolvers or not.
|
|
14
14
|
*
|
|
15
15
|
* @param {any} component The component registration.
|
|
16
16
|
* @returns {boolean} Type check result.
|
|
@@ -41,7 +41,7 @@ exports.isComponentPathResolvers = isComponentPathResolvers;
|
|
|
41
41
|
const z = __importStar(require("zod"));
|
|
42
42
|
const componentPathResolvers = z.custom((val) => typeof val.getPathResolvers === 'function', { message: 'ComponentPathResolvers' });
|
|
43
43
|
/**
|
|
44
|
-
* Check if a ComponentRegistration
|
|
44
|
+
* Check if a ComponentRegistration is ComponentPathResolvers or not.
|
|
45
45
|
*
|
|
46
46
|
* @param {any} component The component registration.
|
|
47
47
|
* @returns {boolean} Type check result.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
export
|
|
5
|
+
export { ComponentMemoryScopes } from './componentMemoryScopes';
|
|
6
|
+
export { ComponentPathResolvers } from './componentPathResolvers';
|
|
7
7
|
export * from './dialogPath';
|
|
8
8
|
export * from './dialogStateManager';
|
|
9
9
|
export * from './pathResolvers';
|
package/dist/src/memory/index.js
CHANGED
|
@@ -14,12 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
/**
|
|
18
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
19
|
-
* Licensed under the MIT License.
|
|
20
|
-
*/
|
|
21
|
-
__exportStar(require("./componentMemoryScopes"), exports);
|
|
22
|
-
__exportStar(require("./componentPathResolvers"), exports);
|
|
23
17
|
__exportStar(require("./dialogPath"), exports);
|
|
24
18
|
__exportStar(require("./dialogStateManager"), exports);
|
|
25
19
|
__exportStar(require("./pathResolvers"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/memory/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/memory/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAMA,+CAA4B;AAC5B,uDAAoC;AACpC,kDAA+B;AAC/B,8CAA2B;AAC3B,2CAAwB;AACxB,6CAA0B"}
|
|
@@ -26,5 +26,4 @@ __exportStar(require("./datetimePrompt"), exports);
|
|
|
26
26
|
__exportStar(require("./numberPrompt"), exports);
|
|
27
27
|
__exportStar(require("./prompt"), exports);
|
|
28
28
|
__exportStar(require("./textPrompt"), exports);
|
|
29
|
-
__exportStar(require("./promptCultureModels"), exports);
|
|
30
29
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/prompts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,mDAAgC;AAChC,qDAAkC;AAClC,iDAA8B;AAC9B,kDAA+B;AAC/B,mDAAgC;AAChC,iDAA8B;AAC9B,2CAAwB;AACxB,+CAA4B
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/prompts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;;GAGG;AACH,mDAAgC;AAChC,qDAAkC;AAClC,iDAA8B;AAC9B,kDAA+B;AAC/B,mDAAgC;AAChC,iDAA8B;AAC9B,2CAAwB;AACxB,+CAA4B"}
|
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.1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"homepage": "https://github.com/microsoft/Agents-for-js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"main": "dist/index.js",
|
|
17
17
|
"types": "dist/src/index.d.ts",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@microsoft/agents-hosting": "1.1.
|
|
19
|
+
"@microsoft/agents-hosting": "1.1.1",
|
|
20
20
|
"@types/lodash": "^4.17.16",
|
|
21
21
|
"dependency-graph": "^1.0.0",
|
|
22
22
|
"@microsoft/recognizers-text-suite": "^1.3.1",
|
|
23
23
|
"@microsoft/recognizers-text-number": "^1.3.1",
|
|
24
24
|
"@microsoft/recognizers-text-date-time": "^1.3.2",
|
|
25
25
|
"@microsoft/recognizers-text-choice": "^1.3.1",
|
|
26
|
-
"globalize": "^1.7.
|
|
26
|
+
"globalize": "^1.7.1"
|
|
27
27
|
},
|
|
28
28
|
"license": "MIT",
|
|
29
29
|
"files": [
|
package/src/choices/index.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
export * from './choice'
|
|
6
6
|
export * from './choiceFactory'
|
|
7
7
|
export * from './findChoices'
|
|
8
|
-
export
|
|
8
|
+
export { FindValuesOptions } from './findValues'
|
|
9
|
+
export { FoundValue } from './findValues'
|
|
9
10
|
export * from './modelResult'
|
|
10
11
|
export * from './recognizeChoices'
|
|
11
|
-
export * from './tokenizer'
|
package/src/index.ts
CHANGED
|
@@ -14,13 +14,11 @@ export * from './dialogContextError'
|
|
|
14
14
|
export * from './dialogEvents'
|
|
15
15
|
export * from './dialogManager'
|
|
16
16
|
export * from './dialogSet'
|
|
17
|
-
export * from './dialogTurnStateConstants'
|
|
18
17
|
export * from './dialogsAgentComponent'
|
|
19
18
|
export * from './memory'
|
|
20
19
|
export * from './prompts'
|
|
21
20
|
export * from './choices'
|
|
22
21
|
export * from './recognizer'
|
|
23
|
-
export * from './template'
|
|
24
22
|
export * from './waterfallDialog'
|
|
25
23
|
export * from './waterfallStepContext'
|
|
26
24
|
export * from './dialogTurnResult'
|
|
@@ -30,7 +28,7 @@ export * from './dialogReason'
|
|
|
30
28
|
export * from './dialogInstance'
|
|
31
29
|
export * from './recognizerResult'
|
|
32
30
|
export * from './serviceCollection'
|
|
33
|
-
export
|
|
31
|
+
export { Configuration } from './configuration'
|
|
34
32
|
export * from './intentScore'
|
|
35
33
|
|
|
36
34
|
export { runDialog } from './dialogHelper'
|
|
@@ -19,7 +19,7 @@ const componentPathResolvers = z.custom<ComponentPathResolvers>(
|
|
|
19
19
|
)
|
|
20
20
|
|
|
21
21
|
/**
|
|
22
|
-
* Check if a ComponentRegistration
|
|
22
|
+
* Check if a ComponentRegistration is ComponentPathResolvers or not.
|
|
23
23
|
*
|
|
24
24
|
* @param {any} component The component registration.
|
|
25
25
|
* @returns {boolean} Type check result.
|
package/src/memory/index.ts
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
3
|
* Licensed under the MIT License.
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
export
|
|
5
|
+
export { ComponentMemoryScopes } from './componentMemoryScopes'
|
|
6
|
+
export { ComponentPathResolvers } from './componentPathResolvers'
|
|
7
7
|
export * from './dialogPath'
|
|
8
8
|
export * from './dialogStateManager'
|
|
9
9
|
export * from './pathResolvers'
|
package/src/prompts/index.ts
CHANGED