localflare-core 0.2.0-beta.1 → 0.2.0-beta.2
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/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ interface D1DatabaseConfig {
|
|
|
15
15
|
database_name: string;
|
|
16
16
|
database_id: string;
|
|
17
17
|
migrations_dir?: string;
|
|
18
|
+
preview_database_id?: string;
|
|
18
19
|
}
|
|
19
20
|
interface KVNamespaceConfig {
|
|
20
21
|
binding: string;
|
|
@@ -25,6 +26,8 @@ interface R2BucketConfig {
|
|
|
25
26
|
binding: string;
|
|
26
27
|
bucket_name: string;
|
|
27
28
|
preview_bucket_name?: string;
|
|
29
|
+
remote?: boolean;
|
|
30
|
+
jurisdiction?: string;
|
|
28
31
|
}
|
|
29
32
|
interface DurableObjectsConfig {
|
|
30
33
|
bindings?: DurableObjectBinding[];
|
|
@@ -41,6 +44,7 @@ interface QueuesConfig {
|
|
|
41
44
|
interface QueueProducerConfig {
|
|
42
45
|
binding: string;
|
|
43
46
|
queue: string;
|
|
47
|
+
delivery_delay?: number;
|
|
44
48
|
}
|
|
45
49
|
interface QueueConsumerConfig {
|
|
46
50
|
queue: string;
|
|
@@ -48,6 +52,8 @@ interface QueueConsumerConfig {
|
|
|
48
52
|
max_batch_timeout?: number;
|
|
49
53
|
max_retries?: number;
|
|
50
54
|
dead_letter_queue?: string;
|
|
55
|
+
max_concurrency?: number;
|
|
56
|
+
retry_delay?: number;
|
|
51
57
|
}
|
|
52
58
|
interface DiscoveredBindings {
|
|
53
59
|
d1: D1DatabaseConfig[];
|