@stackone/core 1.73.1 → 1.74.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/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -623,8 +623,8 @@ type DebugParams = {
|
|
|
623
623
|
};
|
|
624
624
|
type Credentials = Record<string, unknown>;
|
|
625
625
|
type BlockStatistics = {
|
|
626
|
-
startTime?:
|
|
627
|
-
endTime?:
|
|
626
|
+
startTime?: Date;
|
|
627
|
+
endTime?: Date;
|
|
628
628
|
};
|
|
629
629
|
//#endregion
|
|
630
630
|
//#region src/stepFunctions/types.d.ts
|
|
@@ -684,8 +684,8 @@ type Step = {
|
|
|
684
684
|
condition?: string;
|
|
685
685
|
};
|
|
686
686
|
type StepStatistics = {
|
|
687
|
-
startTime?:
|
|
688
|
-
endTime?:
|
|
687
|
+
startTime?: Date;
|
|
688
|
+
endTime?: Date;
|
|
689
689
|
};
|
|
690
690
|
//#endregion
|
|
691
691
|
//#region src/connector/types.d.ts
|
package/dist/index.d.ts
CHANGED
|
@@ -623,8 +623,8 @@ type DebugParams = {
|
|
|
623
623
|
};
|
|
624
624
|
type Credentials = Record<string, unknown>;
|
|
625
625
|
type BlockStatistics = {
|
|
626
|
-
startTime?:
|
|
627
|
-
endTime?:
|
|
626
|
+
startTime?: Date;
|
|
627
|
+
endTime?: Date;
|
|
628
628
|
};
|
|
629
629
|
//#endregion
|
|
630
630
|
//#region src/stepFunctions/types.d.ts
|
|
@@ -684,8 +684,8 @@ type Step = {
|
|
|
684
684
|
condition?: string;
|
|
685
685
|
};
|
|
686
686
|
type StepStatistics = {
|
|
687
|
-
startTime?:
|
|
688
|
-
endTime?:
|
|
687
|
+
startTime?: Date;
|
|
688
|
+
endTime?: Date;
|
|
689
689
|
};
|
|
690
690
|
//#endregion
|
|
691
691
|
//#region src/connector/types.d.ts
|