@workers-community/workers-types 4.20260418.1 → 4.20260421.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/index.d.ts +5 -0
- package/index.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -13638,7 +13638,12 @@ declare namespace CloudflareWorkersModule {
|
|
|
13638
13638
|
type: string;
|
|
13639
13639
|
};
|
|
13640
13640
|
export type WorkflowStepContext = {
|
|
13641
|
+
step: {
|
|
13642
|
+
name: string;
|
|
13643
|
+
count: number;
|
|
13644
|
+
};
|
|
13641
13645
|
attempt: number;
|
|
13646
|
+
config: WorkflowStepConfig;
|
|
13642
13647
|
};
|
|
13643
13648
|
export abstract class WorkflowStep {
|
|
13644
13649
|
do<T extends Rpc.Serializable<T>>(
|
package/index.ts
CHANGED
|
@@ -13609,7 +13609,12 @@ export declare namespace CloudflareWorkersModule {
|
|
|
13609
13609
|
type: string;
|
|
13610
13610
|
};
|
|
13611
13611
|
export type WorkflowStepContext = {
|
|
13612
|
+
step: {
|
|
13613
|
+
name: string;
|
|
13614
|
+
count: number;
|
|
13615
|
+
};
|
|
13612
13616
|
attempt: number;
|
|
13617
|
+
config: WorkflowStepConfig;
|
|
13613
13618
|
};
|
|
13614
13619
|
export abstract class WorkflowStep {
|
|
13615
13620
|
do<T extends Rpc.Serializable<T>>(
|