@cloudflare/workers-types 4.20250906.0 → 4.20250909.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/2021-11-03/index.d.ts +5 -0
- package/2021-11-03/index.ts +5 -0
- package/2022-01-31/index.d.ts +5 -0
- package/2022-01-31/index.ts +5 -0
- package/2022-03-21/index.d.ts +5 -0
- package/2022-03-21/index.ts +5 -0
- package/2022-08-04/index.d.ts +5 -0
- package/2022-08-04/index.ts +5 -0
- package/2022-10-31/index.d.ts +5 -0
- package/2022-10-31/index.ts +5 -0
- package/2022-11-30/index.d.ts +5 -0
- package/2022-11-30/index.ts +5 -0
- package/2023-03-01/index.d.ts +5 -0
- package/2023-03-01/index.ts +5 -0
- package/2023-07-01/index.d.ts +5 -0
- package/2023-07-01/index.ts +5 -0
- package/experimental/index.d.ts +5 -0
- package/experimental/index.ts +5 -0
- package/index.d.ts +5 -0
- package/index.ts +5 -0
- package/latest/index.d.ts +5 -0
- package/latest/index.ts +5 -0
- package/oldest/index.d.ts +5 -0
- package/oldest/index.ts +5 -0
- package/package.json +1 -1
package/2021-11-03/index.d.ts
CHANGED
|
@@ -7191,6 +7191,11 @@ interface D1Meta {
|
|
|
7191
7191
|
*/
|
|
7192
7192
|
sql_duration_ms: number;
|
|
7193
7193
|
};
|
|
7194
|
+
/**
|
|
7195
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7196
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7197
|
+
*/
|
|
7198
|
+
total_attempts?: number;
|
|
7194
7199
|
}
|
|
7195
7200
|
interface D1Response {
|
|
7196
7201
|
success: true;
|
package/2021-11-03/index.ts
CHANGED
|
@@ -7218,6 +7218,11 @@ export interface D1Meta {
|
|
|
7218
7218
|
*/
|
|
7219
7219
|
sql_duration_ms: number;
|
|
7220
7220
|
};
|
|
7221
|
+
/**
|
|
7222
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7223
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7224
|
+
*/
|
|
7225
|
+
total_attempts?: number;
|
|
7221
7226
|
}
|
|
7222
7227
|
export interface D1Response {
|
|
7223
7228
|
success: true;
|
package/2022-01-31/index.d.ts
CHANGED
|
@@ -7217,6 +7217,11 @@ interface D1Meta {
|
|
|
7217
7217
|
*/
|
|
7218
7218
|
sql_duration_ms: number;
|
|
7219
7219
|
};
|
|
7220
|
+
/**
|
|
7221
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7222
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7223
|
+
*/
|
|
7224
|
+
total_attempts?: number;
|
|
7220
7225
|
}
|
|
7221
7226
|
interface D1Response {
|
|
7222
7227
|
success: true;
|
package/2022-01-31/index.ts
CHANGED
|
@@ -7244,6 +7244,11 @@ export interface D1Meta {
|
|
|
7244
7244
|
*/
|
|
7245
7245
|
sql_duration_ms: number;
|
|
7246
7246
|
};
|
|
7247
|
+
/**
|
|
7248
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7249
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7250
|
+
*/
|
|
7251
|
+
total_attempts?: number;
|
|
7247
7252
|
}
|
|
7248
7253
|
export interface D1Response {
|
|
7249
7254
|
success: true;
|
package/2022-03-21/index.d.ts
CHANGED
|
@@ -7235,6 +7235,11 @@ interface D1Meta {
|
|
|
7235
7235
|
*/
|
|
7236
7236
|
sql_duration_ms: number;
|
|
7237
7237
|
};
|
|
7238
|
+
/**
|
|
7239
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7240
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7241
|
+
*/
|
|
7242
|
+
total_attempts?: number;
|
|
7238
7243
|
}
|
|
7239
7244
|
interface D1Response {
|
|
7240
7245
|
success: true;
|
package/2022-03-21/index.ts
CHANGED
|
@@ -7262,6 +7262,11 @@ export interface D1Meta {
|
|
|
7262
7262
|
*/
|
|
7263
7263
|
sql_duration_ms: number;
|
|
7264
7264
|
};
|
|
7265
|
+
/**
|
|
7266
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7267
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7268
|
+
*/
|
|
7269
|
+
total_attempts?: number;
|
|
7265
7270
|
}
|
|
7266
7271
|
export interface D1Response {
|
|
7267
7272
|
success: true;
|
package/2022-08-04/index.d.ts
CHANGED
|
@@ -7236,6 +7236,11 @@ interface D1Meta {
|
|
|
7236
7236
|
*/
|
|
7237
7237
|
sql_duration_ms: number;
|
|
7238
7238
|
};
|
|
7239
|
+
/**
|
|
7240
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7241
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7242
|
+
*/
|
|
7243
|
+
total_attempts?: number;
|
|
7239
7244
|
}
|
|
7240
7245
|
interface D1Response {
|
|
7241
7246
|
success: true;
|
package/2022-08-04/index.ts
CHANGED
|
@@ -7263,6 +7263,11 @@ export interface D1Meta {
|
|
|
7263
7263
|
*/
|
|
7264
7264
|
sql_duration_ms: number;
|
|
7265
7265
|
};
|
|
7266
|
+
/**
|
|
7267
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7268
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7269
|
+
*/
|
|
7270
|
+
total_attempts?: number;
|
|
7266
7271
|
}
|
|
7267
7272
|
export interface D1Response {
|
|
7268
7273
|
success: true;
|
package/2022-10-31/index.d.ts
CHANGED
|
@@ -7240,6 +7240,11 @@ interface D1Meta {
|
|
|
7240
7240
|
*/
|
|
7241
7241
|
sql_duration_ms: number;
|
|
7242
7242
|
};
|
|
7243
|
+
/**
|
|
7244
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7245
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7246
|
+
*/
|
|
7247
|
+
total_attempts?: number;
|
|
7243
7248
|
}
|
|
7244
7249
|
interface D1Response {
|
|
7245
7250
|
success: true;
|
package/2022-10-31/index.ts
CHANGED
|
@@ -7267,6 +7267,11 @@ export interface D1Meta {
|
|
|
7267
7267
|
*/
|
|
7268
7268
|
sql_duration_ms: number;
|
|
7269
7269
|
};
|
|
7270
|
+
/**
|
|
7271
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7272
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7273
|
+
*/
|
|
7274
|
+
total_attempts?: number;
|
|
7270
7275
|
}
|
|
7271
7276
|
export interface D1Response {
|
|
7272
7277
|
success: true;
|
package/2022-11-30/index.d.ts
CHANGED
|
@@ -7245,6 +7245,11 @@ interface D1Meta {
|
|
|
7245
7245
|
*/
|
|
7246
7246
|
sql_duration_ms: number;
|
|
7247
7247
|
};
|
|
7248
|
+
/**
|
|
7249
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7250
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7251
|
+
*/
|
|
7252
|
+
total_attempts?: number;
|
|
7248
7253
|
}
|
|
7249
7254
|
interface D1Response {
|
|
7250
7255
|
success: true;
|
package/2022-11-30/index.ts
CHANGED
|
@@ -7272,6 +7272,11 @@ export interface D1Meta {
|
|
|
7272
7272
|
*/
|
|
7273
7273
|
sql_duration_ms: number;
|
|
7274
7274
|
};
|
|
7275
|
+
/**
|
|
7276
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7277
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7278
|
+
*/
|
|
7279
|
+
total_attempts?: number;
|
|
7275
7280
|
}
|
|
7276
7281
|
export interface D1Response {
|
|
7277
7282
|
success: true;
|
package/2023-03-01/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/2023-03-01/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/2023-07-01/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/2023-07-01/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/experimental/index.d.ts
CHANGED
|
@@ -7505,6 +7505,11 @@ interface D1Meta {
|
|
|
7505
7505
|
*/
|
|
7506
7506
|
sql_duration_ms: number;
|
|
7507
7507
|
};
|
|
7508
|
+
/**
|
|
7509
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7510
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7511
|
+
*/
|
|
7512
|
+
total_attempts?: number;
|
|
7508
7513
|
}
|
|
7509
7514
|
interface D1Response {
|
|
7510
7515
|
success: true;
|
package/experimental/index.ts
CHANGED
|
@@ -7534,6 +7534,11 @@ export interface D1Meta {
|
|
|
7534
7534
|
*/
|
|
7535
7535
|
sql_duration_ms: number;
|
|
7536
7536
|
};
|
|
7537
|
+
/**
|
|
7538
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7539
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7540
|
+
*/
|
|
7541
|
+
total_attempts?: number;
|
|
7537
7542
|
}
|
|
7538
7543
|
export interface D1Response {
|
|
7539
7544
|
success: true;
|
package/index.d.ts
CHANGED
|
@@ -7191,6 +7191,11 @@ interface D1Meta {
|
|
|
7191
7191
|
*/
|
|
7192
7192
|
sql_duration_ms: number;
|
|
7193
7193
|
};
|
|
7194
|
+
/**
|
|
7195
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7196
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7197
|
+
*/
|
|
7198
|
+
total_attempts?: number;
|
|
7194
7199
|
}
|
|
7195
7200
|
interface D1Response {
|
|
7196
7201
|
success: true;
|
package/index.ts
CHANGED
|
@@ -7218,6 +7218,11 @@ export interface D1Meta {
|
|
|
7218
7218
|
*/
|
|
7219
7219
|
sql_duration_ms: number;
|
|
7220
7220
|
};
|
|
7221
|
+
/**
|
|
7222
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7223
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7224
|
+
*/
|
|
7225
|
+
total_attempts?: number;
|
|
7221
7226
|
}
|
|
7222
7227
|
export interface D1Response {
|
|
7223
7228
|
success: true;
|
package/latest/index.d.ts
CHANGED
|
@@ -7276,6 +7276,11 @@ interface D1Meta {
|
|
|
7276
7276
|
*/
|
|
7277
7277
|
sql_duration_ms: number;
|
|
7278
7278
|
};
|
|
7279
|
+
/**
|
|
7280
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7281
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7282
|
+
*/
|
|
7283
|
+
total_attempts?: number;
|
|
7279
7284
|
}
|
|
7280
7285
|
interface D1Response {
|
|
7281
7286
|
success: true;
|
package/latest/index.ts
CHANGED
|
@@ -7303,6 +7303,11 @@ export interface D1Meta {
|
|
|
7303
7303
|
*/
|
|
7304
7304
|
sql_duration_ms: number;
|
|
7305
7305
|
};
|
|
7306
|
+
/**
|
|
7307
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7308
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7309
|
+
*/
|
|
7310
|
+
total_attempts?: number;
|
|
7306
7311
|
}
|
|
7307
7312
|
export interface D1Response {
|
|
7308
7313
|
success: true;
|
package/oldest/index.d.ts
CHANGED
|
@@ -7191,6 +7191,11 @@ interface D1Meta {
|
|
|
7191
7191
|
*/
|
|
7192
7192
|
sql_duration_ms: number;
|
|
7193
7193
|
};
|
|
7194
|
+
/**
|
|
7195
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7196
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7197
|
+
*/
|
|
7198
|
+
total_attempts?: number;
|
|
7194
7199
|
}
|
|
7195
7200
|
interface D1Response {
|
|
7196
7201
|
success: true;
|
package/oldest/index.ts
CHANGED
|
@@ -7218,6 +7218,11 @@ export interface D1Meta {
|
|
|
7218
7218
|
*/
|
|
7219
7219
|
sql_duration_ms: number;
|
|
7220
7220
|
};
|
|
7221
|
+
/**
|
|
7222
|
+
* Number of total attempts to execute the query, due to automatic retries.
|
|
7223
|
+
* Note: All other fields in the response like `timings` only apply to the last attempt.
|
|
7224
|
+
*/
|
|
7225
|
+
total_attempts?: number;
|
|
7221
7226
|
}
|
|
7222
7227
|
export interface D1Response {
|
|
7223
7228
|
success: true;
|
package/package.json
CHANGED