@atlaskit/rovo-agent-analytics 0.20.0 → 1.1.0
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/CHANGELOG.md +15 -0
- package/README.md +44 -29
- package/dist/cjs/actions/groups/add-tools-prompt.js +1 -43
- package/dist/cjs/actions/groups/agent-interactions.js +1 -51
- package/dist/cjs/actions/groups/create-flow.js +1 -51
- package/dist/cjs/actions/groups/debug.js +1 -42
- package/dist/cjs/actions/groups/editing.js +1 -28
- package/dist/cjs/actions/groups/tools.js +1 -36
- package/dist/cjs/actions/index.js +2 -43
- package/dist/cjs/common/csid/index.js +16 -27
- package/dist/cjs/common/types.js +5 -0
- package/dist/cjs/create/index.js +36 -25
- package/dist/es2019/actions/groups/add-tools-prompt.js +0 -37
- package/dist/es2019/actions/groups/agent-interactions.js +1 -50
- package/dist/es2019/actions/groups/create-flow.js +0 -45
- package/dist/es2019/actions/groups/debug.js +0 -37
- package/dist/es2019/actions/groups/editing.js +1 -27
- package/dist/es2019/actions/groups/tools.js +1 -37
- package/dist/es2019/actions/index.js +1 -47
- package/dist/es2019/common/csid/index.js +16 -27
- package/dist/es2019/common/types.js +5 -0
- package/dist/es2019/create/index.js +32 -22
- package/dist/esm/actions/groups/add-tools-prompt.js +0 -37
- package/dist/esm/actions/groups/agent-interactions.js +1 -50
- package/dist/esm/actions/groups/create-flow.js +0 -45
- package/dist/esm/actions/groups/debug.js +0 -37
- package/dist/esm/actions/groups/editing.js +1 -27
- package/dist/esm/actions/groups/tools.js +1 -37
- package/dist/esm/actions/index.js +1 -43
- package/dist/esm/common/csid/index.js +17 -28
- package/dist/esm/common/types.js +5 -0
- package/dist/esm/create/index.js +31 -21
- package/dist/types/actions/groups/add-tools-prompt.d.ts +1 -14
- package/dist/types/actions/groups/agent-interactions.d.ts +0 -26
- package/dist/types/actions/groups/create-flow.d.ts +21 -15
- package/dist/types/actions/groups/debug.d.ts +0 -21
- package/dist/types/actions/groups/editing.d.ts +0 -13
- package/dist/types/actions/groups/tools.d.ts +0 -29
- package/dist/types/actions/index.d.ts +1 -20
- package/dist/types/common/constants.d.ts +1 -1
- package/dist/types/common/csid/index.d.ts +8 -4
- package/dist/types/common/types.d.ts +17 -5
- package/dist/types/create/index.d.ts +10 -18
- package/dist/types-ts4.5/actions/groups/add-tools-prompt.d.ts +1 -14
- package/dist/types-ts4.5/actions/groups/agent-interactions.d.ts +0 -26
- package/dist/types-ts4.5/actions/groups/create-flow.d.ts +21 -15
- package/dist/types-ts4.5/actions/groups/debug.d.ts +0 -21
- package/dist/types-ts4.5/actions/groups/editing.d.ts +0 -13
- package/dist/types-ts4.5/actions/groups/tools.d.ts +0 -29
- package/dist/types-ts4.5/actions/index.d.ts +1 -20
- package/dist/types-ts4.5/common/constants.d.ts +1 -1
- package/dist/types-ts4.5/common/csid/index.d.ts +8 -4
- package/dist/types-ts4.5/common/types.d.ts +17 -5
- package/dist/types-ts4.5/create/index.d.ts +10 -18
- package/package.json +13 -13
- package/actions/add-tools-prompt/package.json +0 -17
- package/actions/agent-interactions/package.json +0 -17
- package/actions/create-flow/package.json +0 -17
- package/actions/debug/package.json +0 -17
- package/actions/editing/package.json +0 -17
- package/actions/evaluation/package.json +0 -17
- package/actions/tool-actions/package.json +0 -17
- package/dist/cjs/actions/registry.js +0 -26
- package/dist/es2019/actions/registry.js +0 -20
- package/dist/esm/actions/registry.js +0 -20
- package/dist/types/actions/registry.d.ts +0 -23
- package/dist/types-ts4.5/actions/registry.d.ts +0 -23
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.DefaultActionSubject = void 0;
|
|
7
|
-
/**
|
|
8
|
-
* Action Registry (Backwards Compatibility)
|
|
9
|
-
*
|
|
10
|
-
* This file contains deprecated exports for backwards compatibility
|
|
11
|
-
* with consumers using `trackAgentAction()`.
|
|
12
|
-
*
|
|
13
|
-
* For new code, use the payload types from each group file directly
|
|
14
|
-
* with `trackAgentEvent()`.
|
|
15
|
-
*
|
|
16
|
-
* @deprecated The registry pattern is deprecated. Use EventPayload from types.ts instead.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
var DefaultActionSubject = exports.DefaultActionSubject = 'rovoAgent';
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* Combined attribute map (union of all groups).
|
|
23
|
-
* Used by the backward-compatible `trackAgentAction` helper.
|
|
24
|
-
*
|
|
25
|
-
* @deprecated Use EventPayload with trackAgentEvent() instead
|
|
26
|
-
*/
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Action Registry (Backwards Compatibility)
|
|
3
|
-
*
|
|
4
|
-
* This file contains deprecated exports for backwards compatibility
|
|
5
|
-
* with consumers using `trackAgentAction()`.
|
|
6
|
-
*
|
|
7
|
-
* For new code, use the payload types from each group file directly
|
|
8
|
-
* with `trackAgentEvent()`.
|
|
9
|
-
*
|
|
10
|
-
* @deprecated The registry pattern is deprecated. Use EventPayload from types.ts instead.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
export const DefaultActionSubject = 'rovoAgent';
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Combined attribute map (union of all groups).
|
|
17
|
-
* Used by the backward-compatible `trackAgentAction` helper.
|
|
18
|
-
*
|
|
19
|
-
* @deprecated Use EventPayload with trackAgentEvent() instead
|
|
20
|
-
*/
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Action Registry (Backwards Compatibility)
|
|
3
|
-
*
|
|
4
|
-
* This file contains deprecated exports for backwards compatibility
|
|
5
|
-
* with consumers using `trackAgentAction()`.
|
|
6
|
-
*
|
|
7
|
-
* For new code, use the payload types from each group file directly
|
|
8
|
-
* with `trackAgentEvent()`.
|
|
9
|
-
*
|
|
10
|
-
* @deprecated The registry pattern is deprecated. Use EventPayload from types.ts instead.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
export var DefaultActionSubject = 'rovoAgent';
|
|
14
|
-
|
|
15
|
-
/**
|
|
16
|
-
* Combined attribute map (union of all groups).
|
|
17
|
-
* Used by the backward-compatible `trackAgentAction` helper.
|
|
18
|
-
*
|
|
19
|
-
* @deprecated Use EventPayload with trackAgentEvent() instead
|
|
20
|
-
*/
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Action Registry (Backwards Compatibility)
|
|
3
|
-
*
|
|
4
|
-
* This file contains deprecated exports for backwards compatibility
|
|
5
|
-
* with consumers using `trackAgentAction()`.
|
|
6
|
-
*
|
|
7
|
-
* For new code, use the payload types from each group file directly
|
|
8
|
-
* with `trackAgentEvent()`.
|
|
9
|
-
*
|
|
10
|
-
* @deprecated The registry pattern is deprecated. Use EventPayload from types.ts instead.
|
|
11
|
-
*/
|
|
12
|
-
import { type AgentInteractionAttributes } from './groups/agent-interactions';
|
|
13
|
-
import { type DebugActionAttributes } from './groups/debug';
|
|
14
|
-
import { type EditingActionAttributes } from './groups/editing';
|
|
15
|
-
import { type ToolsActionAttributes } from './groups/tools';
|
|
16
|
-
export declare const DefaultActionSubject = "rovoAgent";
|
|
17
|
-
/**
|
|
18
|
-
* Combined attribute map (union of all groups).
|
|
19
|
-
* Used by the backward-compatible `trackAgentAction` helper.
|
|
20
|
-
*
|
|
21
|
-
* @deprecated Use EventPayload with trackAgentEvent() instead
|
|
22
|
-
*/
|
|
23
|
-
export type ActionAttributes = AgentInteractionAttributes & EditingActionAttributes & DebugActionAttributes & ToolsActionAttributes;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Action Registry (Backwards Compatibility)
|
|
3
|
-
*
|
|
4
|
-
* This file contains deprecated exports for backwards compatibility
|
|
5
|
-
* with consumers using `trackAgentAction()`.
|
|
6
|
-
*
|
|
7
|
-
* For new code, use the payload types from each group file directly
|
|
8
|
-
* with `trackAgentEvent()`.
|
|
9
|
-
*
|
|
10
|
-
* @deprecated The registry pattern is deprecated. Use EventPayload from types.ts instead.
|
|
11
|
-
*/
|
|
12
|
-
import { type AgentInteractionAttributes } from './groups/agent-interactions';
|
|
13
|
-
import { type DebugActionAttributes } from './groups/debug';
|
|
14
|
-
import { type EditingActionAttributes } from './groups/editing';
|
|
15
|
-
import { type ToolsActionAttributes } from './groups/tools';
|
|
16
|
-
export declare const DefaultActionSubject = "rovoAgent";
|
|
17
|
-
/**
|
|
18
|
-
* Combined attribute map (union of all groups).
|
|
19
|
-
* Used by the backward-compatible `trackAgentAction` helper.
|
|
20
|
-
*
|
|
21
|
-
* @deprecated Use EventPayload with trackAgentEvent() instead
|
|
22
|
-
*/
|
|
23
|
-
export type ActionAttributes = AgentInteractionAttributes & EditingActionAttributes & DebugActionAttributes & ToolsActionAttributes;
|