@danhachuel/thunderbolt 0.4.39 → 0.4.40

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.
@@ -225,7 +225,7 @@ def acquire_nvidia_rpm_slot(
225
225
 
226
226
 
227
227
  def _status_category(status_code: int) -> tuple[str, bool]:
228
- if status_code == 429:
228
+ if status_code in {402, 429}:
229
229
  return "quota", True
230
230
  if status_code in {408, 425} or status_code >= 500:
231
231
  return "transient", True
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danhachuel/thunderbolt",
3
- "version": "0.4.39",
3
+ "version": "0.4.40",
4
4
  "description": "Thunderbolt — interface local para operação de canais faceless e motor MoneyPrinterTurbo",
5
5
  "license": "MIT",
6
6
  "main": "scripts/cli.mjs",