@workers-community/workers-types 4.20250906.0 → 4.20250910.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.
- package/index.d.ts +5 -0
- package/index.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -7247,6 +7247,11 @@ interface D1Meta {
|
|
|
7247
7247
|
*/
|
|
7248
7248
|
sql_duration_ms: number;
|
|
7249
7249
|
};
|
|
7250
|
+
/**
|
|
7251
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7252
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7253
|
+
*/
|
|
7254
|
+
total_attempts?: number;
|
|
7250
7255
|
}
|
|
7251
7256
|
interface D1Response {
|
|
7252
7257
|
success: true;
|
package/index.ts
CHANGED
|
@@ -7274,6 +7274,11 @@ export interface D1Meta {
|
|
|
7274
7274
|
*/
|
|
7275
7275
|
sql_duration_ms: number;
|
|
7276
7276
|
};
|
|
7277
|
+
/**
|
|
7278
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7279
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7280
|
+
*/
|
|
7281
|
+
total_attempts?: number;
|
|
7277
7282
|
}
|
|
7278
7283
|
export interface D1Response {
|
|
7279
7284
|
success: true;
|