@cloudflare/workers-types 4.20241127.0 → 4.20241205.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 +11 -9
- package/2021-11-03/index.ts +7 -7
- package/2022-01-31/index.d.ts +11 -9
- package/2022-01-31/index.ts +7 -7
- package/2022-03-21/index.d.ts +13 -10
- package/2022-03-21/index.ts +9 -8
- package/2022-08-04/index.d.ts +13 -10
- package/2022-08-04/index.ts +9 -8
- package/2022-10-31/index.d.ts +13 -10
- package/2022-10-31/index.ts +9 -8
- package/2022-11-30/index.d.ts +13 -10
- package/2022-11-30/index.ts +9 -8
- package/2023-03-01/index.d.ts +13 -10
- package/2023-03-01/index.ts +9 -8
- package/2023-07-01/index.d.ts +13 -10
- package/2023-07-01/index.ts +9 -8
- package/experimental/index.d.ts +13 -10
- package/experimental/index.ts +9 -8
- package/index.d.ts +11 -9
- package/index.ts +7 -7
- package/oldest/index.d.ts +11 -9
- package/oldest/index.ts +7 -7
- package/package.json +1 -1
package/experimental/index.ts
CHANGED
|
@@ -468,8 +468,9 @@ export declare abstract class Navigator {
|
|
|
468
468
|
| string
|
|
469
469
|
| (ArrayBuffer | ArrayBufferView)
|
|
470
470
|
| Blob
|
|
471
|
+
| FormData
|
|
471
472
|
| URLSearchParams
|
|
472
|
-
|
|
|
473
|
+
| URLSearchParams,
|
|
473
474
|
): boolean;
|
|
474
475
|
readonly userAgent: string;
|
|
475
476
|
readonly gpu: GPU;
|
|
@@ -969,7 +970,7 @@ export declare class Blob {
|
|
|
969
970
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
|
|
970
971
|
slice(start?: number, end?: number, type?: string): Blob;
|
|
971
972
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
|
|
972
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
973
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
973
974
|
bytes(): Promise<Uint8Array>;
|
|
974
975
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */
|
|
975
976
|
text(): Promise<string>;
|
|
@@ -1547,7 +1548,7 @@ export declare abstract class Body {
|
|
|
1547
1548
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
|
|
1548
1549
|
get bodyUsed(): boolean;
|
|
1549
1550
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */
|
|
1550
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1551
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1551
1552
|
bytes(): Promise<Uint8Array>;
|
|
1552
1553
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */
|
|
1553
1554
|
text(): Promise<string>;
|
|
@@ -1990,7 +1991,7 @@ export declare abstract class R2Object {
|
|
|
1990
1991
|
export interface R2ObjectBody extends R2Object {
|
|
1991
1992
|
get body(): ReadableStream;
|
|
1992
1993
|
get bodyUsed(): boolean;
|
|
1993
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1994
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1994
1995
|
text(): Promise<string>;
|
|
1995
1996
|
json<T>(): Promise<T>;
|
|
1996
1997
|
blob(): Promise<Blob>;
|
|
@@ -5680,7 +5681,7 @@ export interface DispatchNamespace {
|
|
|
5680
5681
|
options?: DynamicDispatchOptions,
|
|
5681
5682
|
): Fetcher;
|
|
5682
5683
|
}
|
|
5683
|
-
export declare abstract class Workflow {
|
|
5684
|
+
export declare abstract class Workflow<PARAMS = unknown> {
|
|
5684
5685
|
/**
|
|
5685
5686
|
* Get a handle to an existing instance of the Workflow.
|
|
5686
5687
|
* @param id Id for the instance of this Workflow
|
|
@@ -5693,10 +5694,10 @@ export declare abstract class Workflow {
|
|
|
5693
5694
|
* @returns A promise that resolves with a handle for the Instance
|
|
5694
5695
|
*/
|
|
5695
5696
|
public create(
|
|
5696
|
-
options?: WorkflowInstanceCreateOptions
|
|
5697
|
+
options?: WorkflowInstanceCreateOptions<PARAMS>,
|
|
5697
5698
|
): Promise<WorkflowInstance>;
|
|
5698
5699
|
}
|
|
5699
|
-
export interface WorkflowInstanceCreateOptions {
|
|
5700
|
+
export interface WorkflowInstanceCreateOptions<PARAMS = unknown> {
|
|
5700
5701
|
/**
|
|
5701
5702
|
* An id for your Workflow instance. Must be unique within the Workflow.
|
|
5702
5703
|
*/
|
|
@@ -5704,7 +5705,7 @@ export interface WorkflowInstanceCreateOptions {
|
|
|
5704
5705
|
/**
|
|
5705
5706
|
* The event payload the Workflow instance is triggered with
|
|
5706
5707
|
*/
|
|
5707
|
-
params?:
|
|
5708
|
+
params?: PARAMS;
|
|
5708
5709
|
}
|
|
5709
5710
|
export type InstanceStatus = {
|
|
5710
5711
|
status:
|
package/index.d.ts
CHANGED
|
@@ -929,7 +929,7 @@ declare class Blob {
|
|
|
929
929
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
|
|
930
930
|
slice(start?: number, end?: number, type?: string): Blob;
|
|
931
931
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
|
|
932
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
932
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
933
933
|
bytes(): Promise<Uint8Array>;
|
|
934
934
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */
|
|
935
935
|
text(): Promise<string>;
|
|
@@ -1505,7 +1505,7 @@ declare abstract class Body {
|
|
|
1505
1505
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
|
|
1506
1506
|
readonly bodyUsed: boolean;
|
|
1507
1507
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */
|
|
1508
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1508
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1509
1509
|
bytes(): Promise<Uint8Array>;
|
|
1510
1510
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */
|
|
1511
1511
|
text(): Promise<string>;
|
|
@@ -1899,7 +1899,7 @@ declare abstract class R2Object {
|
|
|
1899
1899
|
interface R2ObjectBody extends R2Object {
|
|
1900
1900
|
get body(): ReadableStream;
|
|
1901
1901
|
get bodyUsed(): boolean;
|
|
1902
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1902
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1903
1903
|
text(): Promise<string>;
|
|
1904
1904
|
json<T>(): Promise<T>;
|
|
1905
1905
|
blob(): Promise<Blob>;
|
|
@@ -5290,14 +5290,16 @@ declare module "cloudflare:workers" {
|
|
|
5290
5290
|
export type WorkflowSleepDuration =
|
|
5291
5291
|
| `${number} ${WorkflowDurationLabel}${"s" | ""}`
|
|
5292
5292
|
| number;
|
|
5293
|
+
export type WorkflowDelayDuration = WorkflowSleepDuration;
|
|
5294
|
+
export type WorkflowTimeoutDuration = WorkflowSleepDuration;
|
|
5293
5295
|
export type WorkflowBackoff = "constant" | "linear" | "exponential";
|
|
5294
5296
|
export type WorkflowStepConfig = {
|
|
5295
5297
|
retries?: {
|
|
5296
5298
|
limit: number;
|
|
5297
|
-
delay:
|
|
5299
|
+
delay: WorkflowDelayDuration | number;
|
|
5298
5300
|
backoff?: WorkflowBackoff;
|
|
5299
5301
|
};
|
|
5300
|
-
timeout?:
|
|
5302
|
+
timeout?: WorkflowTimeoutDuration | number;
|
|
5301
5303
|
};
|
|
5302
5304
|
export type WorkflowEvent<T> = {
|
|
5303
5305
|
payload: Readonly<T>;
|
|
@@ -5650,7 +5652,7 @@ declare module "cloudflare:workflows" {
|
|
|
5650
5652
|
public constructor(message: string, name?: string);
|
|
5651
5653
|
}
|
|
5652
5654
|
}
|
|
5653
|
-
declare abstract class Workflow {
|
|
5655
|
+
declare abstract class Workflow<PARAMS = unknown> {
|
|
5654
5656
|
/**
|
|
5655
5657
|
* Get a handle to an existing instance of the Workflow.
|
|
5656
5658
|
* @param id Id for the instance of this Workflow
|
|
@@ -5663,10 +5665,10 @@ declare abstract class Workflow {
|
|
|
5663
5665
|
* @returns A promise that resolves with a handle for the Instance
|
|
5664
5666
|
*/
|
|
5665
5667
|
public create(
|
|
5666
|
-
options?: WorkflowInstanceCreateOptions
|
|
5668
|
+
options?: WorkflowInstanceCreateOptions<PARAMS>,
|
|
5667
5669
|
): Promise<WorkflowInstance>;
|
|
5668
5670
|
}
|
|
5669
|
-
interface WorkflowInstanceCreateOptions {
|
|
5671
|
+
interface WorkflowInstanceCreateOptions<PARAMS = unknown> {
|
|
5670
5672
|
/**
|
|
5671
5673
|
* An id for your Workflow instance. Must be unique within the Workflow.
|
|
5672
5674
|
*/
|
|
@@ -5674,7 +5676,7 @@ interface WorkflowInstanceCreateOptions {
|
|
|
5674
5676
|
/**
|
|
5675
5677
|
* The event payload the Workflow instance is triggered with
|
|
5676
5678
|
*/
|
|
5677
|
-
params?:
|
|
5679
|
+
params?: PARAMS;
|
|
5678
5680
|
}
|
|
5679
5681
|
type InstanceStatus = {
|
|
5680
5682
|
status:
|
package/index.ts
CHANGED
|
@@ -934,7 +934,7 @@ export declare class Blob {
|
|
|
934
934
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
|
|
935
935
|
slice(start?: number, end?: number, type?: string): Blob;
|
|
936
936
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
|
|
937
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
937
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
938
938
|
bytes(): Promise<Uint8Array>;
|
|
939
939
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */
|
|
940
940
|
text(): Promise<string>;
|
|
@@ -1510,7 +1510,7 @@ export declare abstract class Body {
|
|
|
1510
1510
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
|
|
1511
1511
|
readonly bodyUsed: boolean;
|
|
1512
1512
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */
|
|
1513
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1513
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1514
1514
|
bytes(): Promise<Uint8Array>;
|
|
1515
1515
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */
|
|
1516
1516
|
text(): Promise<string>;
|
|
@@ -1908,7 +1908,7 @@ export declare abstract class R2Object {
|
|
|
1908
1908
|
export interface R2ObjectBody extends R2Object {
|
|
1909
1909
|
get body(): ReadableStream;
|
|
1910
1910
|
get bodyUsed(): boolean;
|
|
1911
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1911
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1912
1912
|
text(): Promise<string>;
|
|
1913
1913
|
json<T>(): Promise<T>;
|
|
1914
1914
|
blob(): Promise<Blob>;
|
|
@@ -5554,7 +5554,7 @@ export interface DispatchNamespace {
|
|
|
5554
5554
|
options?: DynamicDispatchOptions,
|
|
5555
5555
|
): Fetcher;
|
|
5556
5556
|
}
|
|
5557
|
-
export declare abstract class Workflow {
|
|
5557
|
+
export declare abstract class Workflow<PARAMS = unknown> {
|
|
5558
5558
|
/**
|
|
5559
5559
|
* Get a handle to an existing instance of the Workflow.
|
|
5560
5560
|
* @param id Id for the instance of this Workflow
|
|
@@ -5567,10 +5567,10 @@ export declare abstract class Workflow {
|
|
|
5567
5567
|
* @returns A promise that resolves with a handle for the Instance
|
|
5568
5568
|
*/
|
|
5569
5569
|
public create(
|
|
5570
|
-
options?: WorkflowInstanceCreateOptions
|
|
5570
|
+
options?: WorkflowInstanceCreateOptions<PARAMS>,
|
|
5571
5571
|
): Promise<WorkflowInstance>;
|
|
5572
5572
|
}
|
|
5573
|
-
export interface WorkflowInstanceCreateOptions {
|
|
5573
|
+
export interface WorkflowInstanceCreateOptions<PARAMS = unknown> {
|
|
5574
5574
|
/**
|
|
5575
5575
|
* An id for your Workflow instance. Must be unique within the Workflow.
|
|
5576
5576
|
*/
|
|
@@ -5578,7 +5578,7 @@ export interface WorkflowInstanceCreateOptions {
|
|
|
5578
5578
|
/**
|
|
5579
5579
|
* The event payload the Workflow instance is triggered with
|
|
5580
5580
|
*/
|
|
5581
|
-
params?:
|
|
5581
|
+
params?: PARAMS;
|
|
5582
5582
|
}
|
|
5583
5583
|
export type InstanceStatus = {
|
|
5584
5584
|
status:
|
package/oldest/index.d.ts
CHANGED
|
@@ -929,7 +929,7 @@ declare class Blob {
|
|
|
929
929
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
|
|
930
930
|
slice(start?: number, end?: number, type?: string): Blob;
|
|
931
931
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
|
|
932
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
932
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
933
933
|
bytes(): Promise<Uint8Array>;
|
|
934
934
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */
|
|
935
935
|
text(): Promise<string>;
|
|
@@ -1505,7 +1505,7 @@ declare abstract class Body {
|
|
|
1505
1505
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
|
|
1506
1506
|
readonly bodyUsed: boolean;
|
|
1507
1507
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */
|
|
1508
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1508
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1509
1509
|
bytes(): Promise<Uint8Array>;
|
|
1510
1510
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */
|
|
1511
1511
|
text(): Promise<string>;
|
|
@@ -1899,7 +1899,7 @@ declare abstract class R2Object {
|
|
|
1899
1899
|
interface R2ObjectBody extends R2Object {
|
|
1900
1900
|
get body(): ReadableStream;
|
|
1901
1901
|
get bodyUsed(): boolean;
|
|
1902
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1902
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1903
1903
|
text(): Promise<string>;
|
|
1904
1904
|
json<T>(): Promise<T>;
|
|
1905
1905
|
blob(): Promise<Blob>;
|
|
@@ -5290,14 +5290,16 @@ declare module "cloudflare:workers" {
|
|
|
5290
5290
|
export type WorkflowSleepDuration =
|
|
5291
5291
|
| `${number} ${WorkflowDurationLabel}${"s" | ""}`
|
|
5292
5292
|
| number;
|
|
5293
|
+
export type WorkflowDelayDuration = WorkflowSleepDuration;
|
|
5294
|
+
export type WorkflowTimeoutDuration = WorkflowSleepDuration;
|
|
5293
5295
|
export type WorkflowBackoff = "constant" | "linear" | "exponential";
|
|
5294
5296
|
export type WorkflowStepConfig = {
|
|
5295
5297
|
retries?: {
|
|
5296
5298
|
limit: number;
|
|
5297
|
-
delay:
|
|
5299
|
+
delay: WorkflowDelayDuration | number;
|
|
5298
5300
|
backoff?: WorkflowBackoff;
|
|
5299
5301
|
};
|
|
5300
|
-
timeout?:
|
|
5302
|
+
timeout?: WorkflowTimeoutDuration | number;
|
|
5301
5303
|
};
|
|
5302
5304
|
export type WorkflowEvent<T> = {
|
|
5303
5305
|
payload: Readonly<T>;
|
|
@@ -5650,7 +5652,7 @@ declare module "cloudflare:workflows" {
|
|
|
5650
5652
|
public constructor(message: string, name?: string);
|
|
5651
5653
|
}
|
|
5652
5654
|
}
|
|
5653
|
-
declare abstract class Workflow {
|
|
5655
|
+
declare abstract class Workflow<PARAMS = unknown> {
|
|
5654
5656
|
/**
|
|
5655
5657
|
* Get a handle to an existing instance of the Workflow.
|
|
5656
5658
|
* @param id Id for the instance of this Workflow
|
|
@@ -5663,10 +5665,10 @@ declare abstract class Workflow {
|
|
|
5663
5665
|
* @returns A promise that resolves with a handle for the Instance
|
|
5664
5666
|
*/
|
|
5665
5667
|
public create(
|
|
5666
|
-
options?: WorkflowInstanceCreateOptions
|
|
5668
|
+
options?: WorkflowInstanceCreateOptions<PARAMS>,
|
|
5667
5669
|
): Promise<WorkflowInstance>;
|
|
5668
5670
|
}
|
|
5669
|
-
interface WorkflowInstanceCreateOptions {
|
|
5671
|
+
interface WorkflowInstanceCreateOptions<PARAMS = unknown> {
|
|
5670
5672
|
/**
|
|
5671
5673
|
* An id for your Workflow instance. Must be unique within the Workflow.
|
|
5672
5674
|
*/
|
|
@@ -5674,7 +5676,7 @@ interface WorkflowInstanceCreateOptions {
|
|
|
5674
5676
|
/**
|
|
5675
5677
|
* The event payload the Workflow instance is triggered with
|
|
5676
5678
|
*/
|
|
5677
|
-
params?:
|
|
5679
|
+
params?: PARAMS;
|
|
5678
5680
|
}
|
|
5679
5681
|
type InstanceStatus = {
|
|
5680
5682
|
status:
|
package/oldest/index.ts
CHANGED
|
@@ -934,7 +934,7 @@ export declare class Blob {
|
|
|
934
934
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/slice) */
|
|
935
935
|
slice(start?: number, end?: number, type?: string): Blob;
|
|
936
936
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/arrayBuffer) */
|
|
937
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
937
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
938
938
|
bytes(): Promise<Uint8Array>;
|
|
939
939
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Blob/text) */
|
|
940
940
|
text(): Promise<string>;
|
|
@@ -1510,7 +1510,7 @@ export declare abstract class Body {
|
|
|
1510
1510
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/bodyUsed) */
|
|
1511
1511
|
readonly bodyUsed: boolean;
|
|
1512
1512
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/arrayBuffer) */
|
|
1513
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1513
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1514
1514
|
bytes(): Promise<Uint8Array>;
|
|
1515
1515
|
/* [MDN Reference](https://developer.mozilla.org/docs/Web/API/Request/text) */
|
|
1516
1516
|
text(): Promise<string>;
|
|
@@ -1908,7 +1908,7 @@ export declare abstract class R2Object {
|
|
|
1908
1908
|
export interface R2ObjectBody extends R2Object {
|
|
1909
1909
|
get body(): ReadableStream;
|
|
1910
1910
|
get bodyUsed(): boolean;
|
|
1911
|
-
arrayBuffer(): Promise<ArrayBuffer
|
|
1911
|
+
arrayBuffer(): Promise<ArrayBuffer>;
|
|
1912
1912
|
text(): Promise<string>;
|
|
1913
1913
|
json<T>(): Promise<T>;
|
|
1914
1914
|
blob(): Promise<Blob>;
|
|
@@ -5554,7 +5554,7 @@ export interface DispatchNamespace {
|
|
|
5554
5554
|
options?: DynamicDispatchOptions,
|
|
5555
5555
|
): Fetcher;
|
|
5556
5556
|
}
|
|
5557
|
-
export declare abstract class Workflow {
|
|
5557
|
+
export declare abstract class Workflow<PARAMS = unknown> {
|
|
5558
5558
|
/**
|
|
5559
5559
|
* Get a handle to an existing instance of the Workflow.
|
|
5560
5560
|
* @param id Id for the instance of this Workflow
|
|
@@ -5567,10 +5567,10 @@ export declare abstract class Workflow {
|
|
|
5567
5567
|
* @returns A promise that resolves with a handle for the Instance
|
|
5568
5568
|
*/
|
|
5569
5569
|
public create(
|
|
5570
|
-
options?: WorkflowInstanceCreateOptions
|
|
5570
|
+
options?: WorkflowInstanceCreateOptions<PARAMS>,
|
|
5571
5571
|
): Promise<WorkflowInstance>;
|
|
5572
5572
|
}
|
|
5573
|
-
export interface WorkflowInstanceCreateOptions {
|
|
5573
|
+
export interface WorkflowInstanceCreateOptions<PARAMS = unknown> {
|
|
5574
5574
|
/**
|
|
5575
5575
|
* An id for your Workflow instance. Must be unique within the Workflow.
|
|
5576
5576
|
*/
|
|
@@ -5578,7 +5578,7 @@ export interface WorkflowInstanceCreateOptions {
|
|
|
5578
5578
|
/**
|
|
5579
5579
|
* The event payload the Workflow instance is triggered with
|
|
5580
5580
|
*/
|
|
5581
|
-
params?:
|
|
5581
|
+
params?: PARAMS;
|
|
5582
5582
|
}
|
|
5583
5583
|
export type InstanceStatus = {
|
|
5584
5584
|
status:
|
package/package.json
CHANGED