gtx-cli 2.5.0-alpha.1 → 2.5.0-alpha.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.
@@ -113,16 +113,18 @@ export class PollTranslationJobsStep extends WorkflowStep {
113
113
  if (job.status === 'completed') {
114
114
  fileTracker.completed.set(fileKey, fileProperties);
115
115
  fileTracker.inProgress.delete(fileKey);
116
+ jobFileMap.delete(job.jobId);
116
117
  }
117
118
  else if (job.status === 'failed') {
118
119
  fileTracker.failed.set(fileKey, fileProperties);
119
120
  fileTracker.inProgress.delete(fileKey);
121
+ jobFileMap.delete(job.jobId);
120
122
  }
121
123
  else if (job.status === 'unknown') {
122
124
  fileTracker.skipped.set(fileKey, fileProperties);
123
125
  fileTracker.inProgress.delete(fileKey);
126
+ jobFileMap.delete(job.jobId);
124
127
  }
125
- jobFileMap.delete(job.jobId);
126
128
  }
127
129
  }
128
130
  // Update spinner
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gtx-cli",
3
- "version": "2.5.0-alpha.1",
3
+ "version": "2.5.0-alpha.3",
4
4
  "main": "dist/index.js",
5
5
  "bin": "dist/main.js",
6
6
  "files": [
@@ -77,7 +77,6 @@
77
77
  "fast-glob": "^3.3.3",
78
78
  "fast-json-stable-stringify": "^2.1.0",
79
79
  "form-data": "^4.0.4",
80
- "generaltranslation": "8.0.0-alpha.1",
81
80
  "gt-remark": "^1.0.1",
82
81
  "json-pointer": "^0.6.2",
83
82
  "jsonpath-plus": "^10.3.0",
@@ -93,7 +92,8 @@
93
92
  "tsconfig-paths": "^4.2.0",
94
93
  "unified": "^11.0.5",
95
94
  "unist-util-visit": "^5.0.0",
96
- "yaml": "^2.8.0"
95
+ "yaml": "^2.8.0",
96
+ "generaltranslation": "8.0.0-alpha.1"
97
97
  },
98
98
  "devDependencies": {
99
99
  "@babel/types": "^7.28.4",