@stack-spot/ai-chat-widget 1.35.2 → 1.35.3

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.35.3](https://github.com/stack-spot/portal-ai-chat-widget/compare/ai-chat-widget@v1.35.2...ai-chat-widget@v1.35.3) (2025-08-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix count executions ([#271](https://github.com/stack-spot/portal-ai-chat-widget/issues/271)) ([47931dd](https://github.com/stack-spot/portal-ai-chat-widget/commit/47931dd911fa1f81775755abc0e6ed6ec9849eb8))
9
+
3
10
  ## [1.35.2](https://github.com/stack-spot/portal-ai-chat-widget/compare/ai-chat-widget@v1.35.1...ai-chat-widget@v1.35.2) (2025-08-08)
4
11
 
5
12
 
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stack-spot/ai-chat-widget",
3
- "version": "1.35.2",
4
- "date": "Fri Aug 08 2025 14:42:50 GMT+0000 (Coordinated Universal Time)",
3
+ "version": "1.35.3",
4
+ "date": "Fri Aug 08 2025 18:56:07 GMT+0000 (Coordinated Universal Time)",
5
5
  "dependencies": [
6
6
  {
7
7
  "name": "@stack-spot/app-metadata",
@@ -60,7 +60,7 @@ export function createQuickCommandInterceptor(widget, getEditor) {
60
60
  iteration[step.slug] = iteration[step.slug] + 1;
61
61
  }
62
62
  else {
63
- iteration[step.slug] = 0;
63
+ iteration[step.slug] = 1;
64
64
  }
65
65
  const { next_step_slug } = await aiClient.calculateNextStep.mutate({
66
66
  stepSlug: step.slug,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stack-spot/ai-chat-widget",
3
- "version": "1.35.2",
3
+ "version": "1.35.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stack-spot/ai-chat-widget",
3
- "version": "1.35.2",
4
- "date": "Fri Aug 08 2025 14:42:50 GMT+0000 (Coordinated Universal Time)",
3
+ "version": "1.35.3",
4
+ "date": "Fri Aug 08 2025 18:56:07 GMT+0000 (Coordinated Universal Time)",
5
5
  "dependencies": [
6
6
  {
7
7
  "name": "@stack-spot/app-metadata",
@@ -84,7 +84,7 @@ export function createQuickCommandInterceptor(widget: WidgetState, getEditor: ()
84
84
  if (step.slug in iteration) {
85
85
  iteration[step.slug] = iteration[step.slug] + 1
86
86
  } else {
87
- iteration[step.slug] = 0
87
+ iteration[step.slug] = 1
88
88
  }
89
89
 
90
90
  const { next_step_slug } = await aiClient.calculateNextStep.mutate({