@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.
Files changed (3) hide show
  1. package/index.d.ts +5 -0
  2. package/index.ts +5 -0
  3. 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;
package/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "author": "Workers Community",
9
9
  "license": "MIT OR Apache-2.0",
10
- "version": "4.20250906.0",
10
+ "version": "4.20250910.0",
11
11
  "exports": {
12
12
  ".": {
13
13
  "types": "./index.d.ts",