@cloudflare/workers-types 4.20260409.1 → 4.20260410.1
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 +2 -1
- package/2021-11-03/index.ts +2 -1
- package/2022-01-31/index.d.ts +2 -1
- package/2022-01-31/index.ts +2 -1
- package/2022-03-21/index.d.ts +2 -1
- package/2022-03-21/index.ts +2 -1
- package/2022-08-04/index.d.ts +2 -1
- package/2022-08-04/index.ts +2 -1
- package/2022-10-31/index.d.ts +2 -1
- package/2022-10-31/index.ts +2 -1
- package/2022-11-30/index.d.ts +2 -1
- package/2022-11-30/index.ts +2 -1
- package/2023-03-01/index.d.ts +2 -1
- package/2023-03-01/index.ts +2 -1
- package/2023-07-01/index.d.ts +2 -1
- package/2023-07-01/index.ts +2 -1
- package/experimental/index.d.ts +2 -1
- package/experimental/index.ts +2 -1
- package/index.d.ts +2 -1
- package/index.ts +2 -1
- package/latest/index.d.ts +2 -1
- package/latest/index.ts +2 -1
- package/oldest/index.d.ts +2 -1
- package/oldest/index.ts +2 -1
- package/package.json +1 -1
package/2021-11-03/index.d.ts
CHANGED
|
@@ -10513,6 +10513,7 @@ declare abstract class AiGateway {
|
|
|
10513
10513
|
options?: {
|
|
10514
10514
|
gateway?: UniversalGatewayOptions;
|
|
10515
10515
|
extraHeaders?: object;
|
|
10516
|
+
signal?: AbortSignal;
|
|
10516
10517
|
},
|
|
10517
10518
|
): Promise<Response>;
|
|
10518
10519
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12860,7 +12861,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12860
12861
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12861
12862
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12862
12863
|
connect?(socket: Socket): void | Promise<void>;
|
|
12863
|
-
queue?(batch: MessageBatch
|
|
12864
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12864
12865
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12865
12866
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12866
12867
|
tailStream?(
|
package/2021-11-03/index.ts
CHANGED
|
@@ -10524,6 +10524,7 @@ export declare abstract class AiGateway {
|
|
|
10524
10524
|
options?: {
|
|
10525
10525
|
gateway?: UniversalGatewayOptions;
|
|
10526
10526
|
extraHeaders?: object;
|
|
10527
|
+
signal?: AbortSignal;
|
|
10527
10528
|
},
|
|
10528
10529
|
): Promise<Response>;
|
|
10529
10530
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12827,7 +12828,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12827
12828
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12828
12829
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12829
12830
|
connect?(socket: Socket): void | Promise<void>;
|
|
12830
|
-
queue?(batch: MessageBatch
|
|
12831
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12831
12832
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12832
12833
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12833
12834
|
tailStream?(
|
package/2022-01-31/index.d.ts
CHANGED
|
@@ -10580,6 +10580,7 @@ declare abstract class AiGateway {
|
|
|
10580
10580
|
options?: {
|
|
10581
10581
|
gateway?: UniversalGatewayOptions;
|
|
10582
10582
|
extraHeaders?: object;
|
|
10583
|
+
signal?: AbortSignal;
|
|
10583
10584
|
},
|
|
10584
10585
|
): Promise<Response>;
|
|
10585
10586
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12927,7 +12928,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12927
12928
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12928
12929
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12929
12930
|
connect?(socket: Socket): void | Promise<void>;
|
|
12930
|
-
queue?(batch: MessageBatch
|
|
12931
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12931
12932
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12932
12933
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12933
12934
|
tailStream?(
|
package/2022-01-31/index.ts
CHANGED
|
@@ -10591,6 +10591,7 @@ export declare abstract class AiGateway {
|
|
|
10591
10591
|
options?: {
|
|
10592
10592
|
gateway?: UniversalGatewayOptions;
|
|
10593
10593
|
extraHeaders?: object;
|
|
10594
|
+
signal?: AbortSignal;
|
|
10594
10595
|
},
|
|
10595
10596
|
): Promise<Response>;
|
|
10596
10597
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12894,7 +12895,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12894
12895
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12895
12896
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12896
12897
|
connect?(socket: Socket): void | Promise<void>;
|
|
12897
|
-
queue?(batch: MessageBatch
|
|
12898
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12898
12899
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12899
12900
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12900
12901
|
tailStream?(
|
package/2022-03-21/index.d.ts
CHANGED
|
@@ -10588,6 +10588,7 @@ declare abstract class AiGateway {
|
|
|
10588
10588
|
options?: {
|
|
10589
10589
|
gateway?: UniversalGatewayOptions;
|
|
10590
10590
|
extraHeaders?: object;
|
|
10591
|
+
signal?: AbortSignal;
|
|
10591
10592
|
},
|
|
10592
10593
|
): Promise<Response>;
|
|
10593
10594
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12935,7 +12936,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12935
12936
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12936
12937
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12937
12938
|
connect?(socket: Socket): void | Promise<void>;
|
|
12938
|
-
queue?(batch: MessageBatch
|
|
12939
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12939
12940
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12940
12941
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12941
12942
|
tailStream?(
|
package/2022-03-21/index.ts
CHANGED
|
@@ -10599,6 +10599,7 @@ export declare abstract class AiGateway {
|
|
|
10599
10599
|
options?: {
|
|
10600
10600
|
gateway?: UniversalGatewayOptions;
|
|
10601
10601
|
extraHeaders?: object;
|
|
10602
|
+
signal?: AbortSignal;
|
|
10602
10603
|
},
|
|
10603
10604
|
): Promise<Response>;
|
|
10604
10605
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12902,7 +12903,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12902
12903
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12903
12904
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12904
12905
|
connect?(socket: Socket): void | Promise<void>;
|
|
12905
|
-
queue?(batch: MessageBatch
|
|
12906
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12906
12907
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12907
12908
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12908
12909
|
tailStream?(
|
package/2022-08-04/index.d.ts
CHANGED
|
@@ -10589,6 +10589,7 @@ declare abstract class AiGateway {
|
|
|
10589
10589
|
options?: {
|
|
10590
10590
|
gateway?: UniversalGatewayOptions;
|
|
10591
10591
|
extraHeaders?: object;
|
|
10592
|
+
signal?: AbortSignal;
|
|
10592
10593
|
},
|
|
10593
10594
|
): Promise<Response>;
|
|
10594
10595
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12936,7 +12937,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12936
12937
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12937
12938
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12938
12939
|
connect?(socket: Socket): void | Promise<void>;
|
|
12939
|
-
queue?(batch: MessageBatch
|
|
12940
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12940
12941
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12941
12942
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12942
12943
|
tailStream?(
|
package/2022-08-04/index.ts
CHANGED
|
@@ -10600,6 +10600,7 @@ export declare abstract class AiGateway {
|
|
|
10600
10600
|
options?: {
|
|
10601
10601
|
gateway?: UniversalGatewayOptions;
|
|
10602
10602
|
extraHeaders?: object;
|
|
10603
|
+
signal?: AbortSignal;
|
|
10603
10604
|
},
|
|
10604
10605
|
): Promise<Response>;
|
|
10605
10606
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12903,7 +12904,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12903
12904
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12904
12905
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12905
12906
|
connect?(socket: Socket): void | Promise<void>;
|
|
12906
|
-
queue?(batch: MessageBatch
|
|
12907
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12907
12908
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12908
12909
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12909
12910
|
tailStream?(
|
package/2022-10-31/index.d.ts
CHANGED
|
@@ -10609,6 +10609,7 @@ declare abstract class AiGateway {
|
|
|
10609
10609
|
options?: {
|
|
10610
10610
|
gateway?: UniversalGatewayOptions;
|
|
10611
10611
|
extraHeaders?: object;
|
|
10612
|
+
signal?: AbortSignal;
|
|
10612
10613
|
},
|
|
10613
10614
|
): Promise<Response>;
|
|
10614
10615
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12956,7 +12957,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12956
12957
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12957
12958
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12958
12959
|
connect?(socket: Socket): void | Promise<void>;
|
|
12959
|
-
queue?(batch: MessageBatch
|
|
12960
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12960
12961
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12961
12962
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12962
12963
|
tailStream?(
|
package/2022-10-31/index.ts
CHANGED
|
@@ -10620,6 +10620,7 @@ export declare abstract class AiGateway {
|
|
|
10620
10620
|
options?: {
|
|
10621
10621
|
gateway?: UniversalGatewayOptions;
|
|
10622
10622
|
extraHeaders?: object;
|
|
10623
|
+
signal?: AbortSignal;
|
|
10623
10624
|
},
|
|
10624
10625
|
): Promise<Response>;
|
|
10625
10626
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12923,7 +12924,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12923
12924
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12924
12925
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12925
12926
|
connect?(socket: Socket): void | Promise<void>;
|
|
12926
|
-
queue?(batch: MessageBatch
|
|
12927
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12927
12928
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12928
12929
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12929
12930
|
tailStream?(
|
package/2022-11-30/index.d.ts
CHANGED
|
@@ -10614,6 +10614,7 @@ declare abstract class AiGateway {
|
|
|
10614
10614
|
options?: {
|
|
10615
10615
|
gateway?: UniversalGatewayOptions;
|
|
10616
10616
|
extraHeaders?: object;
|
|
10617
|
+
signal?: AbortSignal;
|
|
10617
10618
|
},
|
|
10618
10619
|
): Promise<Response>;
|
|
10619
10620
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12961,7 +12962,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12961
12962
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12962
12963
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12963
12964
|
connect?(socket: Socket): void | Promise<void>;
|
|
12964
|
-
queue?(batch: MessageBatch
|
|
12965
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12965
12966
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12966
12967
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12967
12968
|
tailStream?(
|
package/2022-11-30/index.ts
CHANGED
|
@@ -10625,6 +10625,7 @@ export declare abstract class AiGateway {
|
|
|
10625
10625
|
options?: {
|
|
10626
10626
|
gateway?: UniversalGatewayOptions;
|
|
10627
10627
|
extraHeaders?: object;
|
|
10628
|
+
signal?: AbortSignal;
|
|
10628
10629
|
},
|
|
10629
10630
|
): Promise<Response>;
|
|
10630
10631
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12928,7 +12929,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12928
12929
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12929
12930
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12930
12931
|
connect?(socket: Socket): void | Promise<void>;
|
|
12931
|
-
queue?(batch: MessageBatch
|
|
12932
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12932
12933
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12933
12934
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12934
12935
|
tailStream?(
|
package/2023-03-01/index.d.ts
CHANGED
|
@@ -10620,6 +10620,7 @@ declare abstract class AiGateway {
|
|
|
10620
10620
|
options?: {
|
|
10621
10621
|
gateway?: UniversalGatewayOptions;
|
|
10622
10622
|
extraHeaders?: object;
|
|
10623
|
+
signal?: AbortSignal;
|
|
10623
10624
|
},
|
|
10624
10625
|
): Promise<Response>;
|
|
10625
10626
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12967,7 +12968,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12967
12968
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12968
12969
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12969
12970
|
connect?(socket: Socket): void | Promise<void>;
|
|
12970
|
-
queue?(batch: MessageBatch
|
|
12971
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12971
12972
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12972
12973
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12973
12974
|
tailStream?(
|
package/2023-03-01/index.ts
CHANGED
|
@@ -10631,6 +10631,7 @@ export declare abstract class AiGateway {
|
|
|
10631
10631
|
options?: {
|
|
10632
10632
|
gateway?: UniversalGatewayOptions;
|
|
10633
10633
|
extraHeaders?: object;
|
|
10634
|
+
signal?: AbortSignal;
|
|
10634
10635
|
},
|
|
10635
10636
|
): Promise<Response>;
|
|
10636
10637
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12934,7 +12935,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12934
12935
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12935
12936
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12936
12937
|
connect?(socket: Socket): void | Promise<void>;
|
|
12937
|
-
queue?(batch: MessageBatch
|
|
12938
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12938
12939
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12939
12940
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12940
12941
|
tailStream?(
|
package/2023-07-01/index.d.ts
CHANGED
|
@@ -10620,6 +10620,7 @@ declare abstract class AiGateway {
|
|
|
10620
10620
|
options?: {
|
|
10621
10621
|
gateway?: UniversalGatewayOptions;
|
|
10622
10622
|
extraHeaders?: object;
|
|
10623
|
+
signal?: AbortSignal;
|
|
10623
10624
|
},
|
|
10624
10625
|
): Promise<Response>;
|
|
10625
10626
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12967,7 +12968,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12967
12968
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12968
12969
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12969
12970
|
connect?(socket: Socket): void | Promise<void>;
|
|
12970
|
-
queue?(batch: MessageBatch
|
|
12971
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12971
12972
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12972
12973
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12973
12974
|
tailStream?(
|
package/2023-07-01/index.ts
CHANGED
|
@@ -10631,6 +10631,7 @@ export declare abstract class AiGateway {
|
|
|
10631
10631
|
options?: {
|
|
10632
10632
|
gateway?: UniversalGatewayOptions;
|
|
10633
10633
|
extraHeaders?: object;
|
|
10634
|
+
signal?: AbortSignal;
|
|
10634
10635
|
},
|
|
10635
10636
|
): Promise<Response>;
|
|
10636
10637
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12934,7 +12935,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12934
12935
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12935
12936
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12936
12937
|
connect?(socket: Socket): void | Promise<void>;
|
|
12937
|
-
queue?(batch: MessageBatch
|
|
12938
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12938
12939
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12939
12940
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12940
12941
|
tailStream?(
|
package/experimental/index.d.ts
CHANGED
|
@@ -11345,6 +11345,7 @@ declare abstract class AiGateway {
|
|
|
11345
11345
|
options?: {
|
|
11346
11346
|
gateway?: UniversalGatewayOptions;
|
|
11347
11347
|
extraHeaders?: object;
|
|
11348
|
+
signal?: AbortSignal;
|
|
11348
11349
|
},
|
|
11349
11350
|
): Promise<Response>;
|
|
11350
11351
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -13692,7 +13693,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
13692
13693
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
13693
13694
|
fetch?(request: Request): Response | Promise<Response>;
|
|
13694
13695
|
connect?(socket: Socket): void | Promise<void>;
|
|
13695
|
-
queue?(batch: MessageBatch
|
|
13696
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
13696
13697
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
13697
13698
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
13698
13699
|
tailStream?(
|
package/experimental/index.ts
CHANGED
|
@@ -11356,6 +11356,7 @@ export declare abstract class AiGateway {
|
|
|
11356
11356
|
options?: {
|
|
11357
11357
|
gateway?: UniversalGatewayOptions;
|
|
11358
11358
|
extraHeaders?: object;
|
|
11359
|
+
signal?: AbortSignal;
|
|
11359
11360
|
},
|
|
11360
11361
|
): Promise<Response>;
|
|
11361
11362
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -13659,7 +13660,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
13659
13660
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
13660
13661
|
fetch?(request: Request): Response | Promise<Response>;
|
|
13661
13662
|
connect?(socket: Socket): void | Promise<void>;
|
|
13662
|
-
queue?(batch: MessageBatch
|
|
13663
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
13663
13664
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
13664
13665
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
13665
13666
|
tailStream?(
|
package/index.d.ts
CHANGED
|
@@ -10513,6 +10513,7 @@ declare abstract class AiGateway {
|
|
|
10513
10513
|
options?: {
|
|
10514
10514
|
gateway?: UniversalGatewayOptions;
|
|
10515
10515
|
extraHeaders?: object;
|
|
10516
|
+
signal?: AbortSignal;
|
|
10516
10517
|
},
|
|
10517
10518
|
): Promise<Response>;
|
|
10518
10519
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12860,7 +12861,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12860
12861
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12861
12862
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12862
12863
|
connect?(socket: Socket): void | Promise<void>;
|
|
12863
|
-
queue?(batch: MessageBatch
|
|
12864
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12864
12865
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12865
12866
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12866
12867
|
tailStream?(
|
package/index.ts
CHANGED
|
@@ -10524,6 +10524,7 @@ export declare abstract class AiGateway {
|
|
|
10524
10524
|
options?: {
|
|
10525
10525
|
gateway?: UniversalGatewayOptions;
|
|
10526
10526
|
extraHeaders?: object;
|
|
10527
|
+
signal?: AbortSignal;
|
|
10527
10528
|
},
|
|
10528
10529
|
): Promise<Response>;
|
|
10529
10530
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12827,7 +12828,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12827
12828
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12828
12829
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12829
12830
|
connect?(socket: Socket): void | Promise<void>;
|
|
12830
|
-
queue?(batch: MessageBatch
|
|
12831
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12831
12832
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12832
12833
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12833
12834
|
tailStream?(
|
package/latest/index.d.ts
CHANGED
|
@@ -10653,6 +10653,7 @@ declare abstract class AiGateway {
|
|
|
10653
10653
|
options?: {
|
|
10654
10654
|
gateway?: UniversalGatewayOptions;
|
|
10655
10655
|
extraHeaders?: object;
|
|
10656
|
+
signal?: AbortSignal;
|
|
10656
10657
|
},
|
|
10657
10658
|
): Promise<Response>;
|
|
10658
10659
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -13000,7 +13001,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
13000
13001
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
13001
13002
|
fetch?(request: Request): Response | Promise<Response>;
|
|
13002
13003
|
connect?(socket: Socket): void | Promise<void>;
|
|
13003
|
-
queue?(batch: MessageBatch
|
|
13004
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
13004
13005
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
13005
13006
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
13006
13007
|
tailStream?(
|
package/latest/index.ts
CHANGED
|
@@ -10664,6 +10664,7 @@ export declare abstract class AiGateway {
|
|
|
10664
10664
|
options?: {
|
|
10665
10665
|
gateway?: UniversalGatewayOptions;
|
|
10666
10666
|
extraHeaders?: object;
|
|
10667
|
+
signal?: AbortSignal;
|
|
10667
10668
|
},
|
|
10668
10669
|
): Promise<Response>;
|
|
10669
10670
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12967,7 +12968,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12967
12968
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12968
12969
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12969
12970
|
connect?(socket: Socket): void | Promise<void>;
|
|
12970
|
-
queue?(batch: MessageBatch
|
|
12971
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12971
12972
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12972
12973
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12973
12974
|
tailStream?(
|
package/oldest/index.d.ts
CHANGED
|
@@ -10513,6 +10513,7 @@ declare abstract class AiGateway {
|
|
|
10513
10513
|
options?: {
|
|
10514
10514
|
gateway?: UniversalGatewayOptions;
|
|
10515
10515
|
extraHeaders?: object;
|
|
10516
|
+
signal?: AbortSignal;
|
|
10516
10517
|
},
|
|
10517
10518
|
): Promise<Response>;
|
|
10518
10519
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12860,7 +12861,7 @@ declare namespace CloudflareWorkersModule {
|
|
|
12860
12861
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12861
12862
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12862
12863
|
connect?(socket: Socket): void | Promise<void>;
|
|
12863
|
-
queue?(batch: MessageBatch
|
|
12864
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12864
12865
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12865
12866
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12866
12867
|
tailStream?(
|
package/oldest/index.ts
CHANGED
|
@@ -10524,6 +10524,7 @@ export declare abstract class AiGateway {
|
|
|
10524
10524
|
options?: {
|
|
10525
10525
|
gateway?: UniversalGatewayOptions;
|
|
10526
10526
|
extraHeaders?: object;
|
|
10527
|
+
signal?: AbortSignal;
|
|
10527
10528
|
},
|
|
10528
10529
|
): Promise<Response>;
|
|
10529
10530
|
getUrl(provider?: AIGatewayProviders | string): Promise<string>; // eslint-disable-line
|
|
@@ -12827,7 +12828,7 @@ export declare namespace CloudflareWorkersModule {
|
|
|
12827
12828
|
email?(message: ForwardableEmailMessage): void | Promise<void>;
|
|
12828
12829
|
fetch?(request: Request): Response | Promise<Response>;
|
|
12829
12830
|
connect?(socket: Socket): void | Promise<void>;
|
|
12830
|
-
queue?(batch: MessageBatch
|
|
12831
|
+
queue?(batch: MessageBatch): void | Promise<void>;
|
|
12831
12832
|
scheduled?(controller: ScheduledController): void | Promise<void>;
|
|
12832
12833
|
tail?(events: TraceItem[]): void | Promise<void>;
|
|
12833
12834
|
tailStream?(
|
package/package.json
CHANGED