@tstdl/base 0.92.114 → 0.92.116
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/ai/ai.service.js +1 -1
- package/orm/index.d.ts +1 -0
- package/orm/index.js +1 -0
- package/package.json +4 -4
package/ai/ai.service.js
CHANGED
|
@@ -246,7 +246,7 @@ Always output the content and tags in ${options?.targetLanguage ?? 'the same lan
|
|
|
246
246
|
break;
|
|
247
247
|
}
|
|
248
248
|
catch (error) {
|
|
249
|
-
if ((i < 20) && isError(error) && (error['status'] == 429)) {
|
|
249
|
+
if ((i < 20) && isError(error) && ((error['status'] == 429) || (error['status'] == 503))) {
|
|
250
250
|
this.#logger.verbose('429 Too Many Requests - trying again in 15 seconds');
|
|
251
251
|
const canceled = await cancelableTimeout(15 * millisecondsPerSecond, getShutdownSignal());
|
|
252
252
|
if (!canceled) {
|
package/orm/index.d.ts
CHANGED
package/orm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tstdl/base",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.116",
|
|
4
4
|
"author": "Patrick Hein",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -134,10 +134,10 @@
|
|
|
134
134
|
"@google-cloud/storage": "^7.15",
|
|
135
135
|
"@google-cloud/vertexai": "^1.9",
|
|
136
136
|
"disposablestack": "^1.1",
|
|
137
|
-
"luxon": "^3.
|
|
137
|
+
"luxon": "^3.6",
|
|
138
138
|
"reflect-metadata": "^0.2",
|
|
139
139
|
"rxjs": "^7.8",
|
|
140
|
-
"ts-pattern": "^5.
|
|
140
|
+
"ts-pattern": "^5.7",
|
|
141
141
|
"type-fest": "4.37"
|
|
142
142
|
},
|
|
143
143
|
"devDependencies": {
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"playwright": "^1.51",
|
|
179
179
|
"preact": "^10.26",
|
|
180
180
|
"preact-render-to-string": "^6.5",
|
|
181
|
-
"undici": "^7.
|
|
181
|
+
"undici": "^7.6",
|
|
182
182
|
"urlpattern-polyfill": "^10.0"
|
|
183
183
|
},
|
|
184
184
|
"peerDependenciesMeta": {
|