@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.
Files changed (67) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/README.md +44 -29
  3. package/dist/cjs/actions/groups/add-tools-prompt.js +1 -43
  4. package/dist/cjs/actions/groups/agent-interactions.js +1 -51
  5. package/dist/cjs/actions/groups/create-flow.js +1 -51
  6. package/dist/cjs/actions/groups/debug.js +1 -42
  7. package/dist/cjs/actions/groups/editing.js +1 -28
  8. package/dist/cjs/actions/groups/tools.js +1 -36
  9. package/dist/cjs/actions/index.js +2 -43
  10. package/dist/cjs/common/csid/index.js +16 -27
  11. package/dist/cjs/common/types.js +5 -0
  12. package/dist/cjs/create/index.js +36 -25
  13. package/dist/es2019/actions/groups/add-tools-prompt.js +0 -37
  14. package/dist/es2019/actions/groups/agent-interactions.js +1 -50
  15. package/dist/es2019/actions/groups/create-flow.js +0 -45
  16. package/dist/es2019/actions/groups/debug.js +0 -37
  17. package/dist/es2019/actions/groups/editing.js +1 -27
  18. package/dist/es2019/actions/groups/tools.js +1 -37
  19. package/dist/es2019/actions/index.js +1 -47
  20. package/dist/es2019/common/csid/index.js +16 -27
  21. package/dist/es2019/common/types.js +5 -0
  22. package/dist/es2019/create/index.js +32 -22
  23. package/dist/esm/actions/groups/add-tools-prompt.js +0 -37
  24. package/dist/esm/actions/groups/agent-interactions.js +1 -50
  25. package/dist/esm/actions/groups/create-flow.js +0 -45
  26. package/dist/esm/actions/groups/debug.js +0 -37
  27. package/dist/esm/actions/groups/editing.js +1 -27
  28. package/dist/esm/actions/groups/tools.js +1 -37
  29. package/dist/esm/actions/index.js +1 -43
  30. package/dist/esm/common/csid/index.js +17 -28
  31. package/dist/esm/common/types.js +5 -0
  32. package/dist/esm/create/index.js +31 -21
  33. package/dist/types/actions/groups/add-tools-prompt.d.ts +1 -14
  34. package/dist/types/actions/groups/agent-interactions.d.ts +0 -26
  35. package/dist/types/actions/groups/create-flow.d.ts +21 -15
  36. package/dist/types/actions/groups/debug.d.ts +0 -21
  37. package/dist/types/actions/groups/editing.d.ts +0 -13
  38. package/dist/types/actions/groups/tools.d.ts +0 -29
  39. package/dist/types/actions/index.d.ts +1 -20
  40. package/dist/types/common/constants.d.ts +1 -1
  41. package/dist/types/common/csid/index.d.ts +8 -4
  42. package/dist/types/common/types.d.ts +17 -5
  43. package/dist/types/create/index.d.ts +10 -18
  44. package/dist/types-ts4.5/actions/groups/add-tools-prompt.d.ts +1 -14
  45. package/dist/types-ts4.5/actions/groups/agent-interactions.d.ts +0 -26
  46. package/dist/types-ts4.5/actions/groups/create-flow.d.ts +21 -15
  47. package/dist/types-ts4.5/actions/groups/debug.d.ts +0 -21
  48. package/dist/types-ts4.5/actions/groups/editing.d.ts +0 -13
  49. package/dist/types-ts4.5/actions/groups/tools.d.ts +0 -29
  50. package/dist/types-ts4.5/actions/index.d.ts +1 -20
  51. package/dist/types-ts4.5/common/constants.d.ts +1 -1
  52. package/dist/types-ts4.5/common/csid/index.d.ts +8 -4
  53. package/dist/types-ts4.5/common/types.d.ts +17 -5
  54. package/dist/types-ts4.5/create/index.d.ts +10 -18
  55. package/package.json +13 -13
  56. package/actions/add-tools-prompt/package.json +0 -17
  57. package/actions/agent-interactions/package.json +0 -17
  58. package/actions/create-flow/package.json +0 -17
  59. package/actions/debug/package.json +0 -17
  60. package/actions/editing/package.json +0 -17
  61. package/actions/evaluation/package.json +0 -17
  62. package/actions/tool-actions/package.json +0 -17
  63. package/dist/cjs/actions/registry.js +0 -26
  64. package/dist/es2019/actions/registry.js +0 -20
  65. package/dist/esm/actions/registry.js +0 -20
  66. package/dist/types/actions/registry.d.ts +0 -23
  67. 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;