Skip to content

Commit 227bc1a

Browse files
committed
Fix erronous PR merge, next RC
1 parent 7cdeb90 commit 227bc1a

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

packages/ccd-js-gen/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
},
3333
"license": "Apache-2.0",
3434
"peerDependencies": {
35-
"@concordium/web-sdk": "7.0.0-rc.4"
35+
"@concordium/web-sdk": "7.0.0-rc.5"
3636
},
3737
"dependencies": {
38-
"@concordium/web-sdk": "7.0.0-rc.4",
38+
"@concordium/web-sdk": "7.0.0-rc.5",
3939
"buffer": "^6.0.3",
4040
"commander": "^11.0.0",
4141
"sanitize-filename": "^1.6.3",

packages/sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@concordium/web-sdk",
3-
"version": "7.0.0-rc.4",
3+
"version": "7.0.0-rc.5",
44
"license": "Apache-2.0",
55
"engines": {
66
"node": ">=16"

packages/sdk/src/types/chainUpdate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type {
1919
import type * as Energy from './Energy.js';
2020
import type * as Duration from './Duration.js';
2121
import type * as CcdAmount from './CcdAmount.js';
22-
import { Timestamp } from '../Timestamp.js';
22+
import type * as Timestamp from './Timestamp.js';
2323

2424
type ChainUpdate<UpdateType, T> = {
2525
/** The type of the update */

packages/sdk/test/ci/types/json.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ describe('jsonStringify', () => {
7777
// eslint-disable-next-line @typescript-eslint/no-explicit-any
7878
(obj as any)['circular'] = obj;
7979

80-
expect(() => jsonStringify(obj)).toThrowError(
81-
JsonCircularReferenceError
82-
);
80+
expect(() => jsonStringify(obj)).toThrowError();
8381
});
8482

8583
test('Allow non-circular references to same object', () => {

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ __metadata:
654654
version: 0.0.0-use.local
655655
resolution: "@concordium/ccd-js-gen@workspace:packages/ccd-js-gen"
656656
dependencies:
657-
"@concordium/web-sdk": 7.0.0-rc.4
657+
"@concordium/web-sdk": 7.0.0-rc.5
658658
"@types/jest": ^26.0.23
659659
"@types/node": ^20.5.0
660660
buffer: ^6.0.3
@@ -666,7 +666,7 @@ __metadata:
666666
ts-morph: ^19.0.0
667667
typescript: ^5.2.2
668668
peerDependencies:
669-
"@concordium/web-sdk": 7.0.0-rc.4
669+
"@concordium/web-sdk": 7.0.0-rc.5
670670
bin:
671671
ccd-js-gen: bin/ccd-js-gen.js
672672
languageName: unknown
@@ -704,7 +704,7 @@ __metadata:
704704
languageName: unknown
705705
linkType: soft
706706

707-
"@concordium/[email protected].4, @concordium/web-sdk@workspace:^, @concordium/web-sdk@workspace:packages/sdk":
707+
"@concordium/[email protected].5, @concordium/web-sdk@workspace:^, @concordium/web-sdk@workspace:packages/sdk":
708708
version: 0.0.0-use.local
709709
resolution: "@concordium/web-sdk@workspace:packages/sdk"
710710
dependencies:

0 commit comments

Comments
 (0)