Skip to content

Commit b8d4176

Browse files
committed
Fixed typescript test
Signed-off-by: ItalyPaleAle <[email protected]>
1 parent c2d5cc8 commit b8d4176

File tree

3 files changed

+1015
-57
lines changed

3 files changed

+1015
-57
lines changed

.github/workflows/test-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
test-e2e:
3535
runs-on: ubuntu-latest
3636
env:
37-
GOVER: 1.19
37+
GOVER: 1.20
3838
DAPR_CLI_VER: 1.10.0
39-
DAPR_RUNTIME_VER: 1.11.0-rc.5
39+
DAPR_RUNTIME_VER: 1.11.0-rc.7
4040
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/master/install/install.sh
4141
DAPR_CLI_REF: ""
4242
DAPR_REF: ""

src/interfaces/Client/IClientCrypto.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ See the License for the specific language governing permissions and
1111
limitations under the License.
1212
*/
1313

14-
import { Duplex } from "node:stream";
14+
import { Duplex } from "stream";
1515

16-
import { type DecryptRequest, type EncryptRequest } from "../../types/crypto/Requests";
16+
import { DecryptRequest, EncryptRequest } from "../../types/crypto/Requests";
1717

1818
export default interface IClientCrypto {
1919
encrypt(opts: EncryptRequest): Promise<Duplex>;

0 commit comments

Comments
 (0)