We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8bdfdc commit 7862c3cCopy full SHA for 7862c3c
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@waves/node-api-js",
3
- "version": "1.3.10-beta.2",
+ "version": "1.3.10-beta.3",
4
"main": "cjs/index.js",
5
"types": "cjs/index.d.ts",
6
"scripts": {
src/api-node/debug/index.ts
@@ -69,7 +69,7 @@ export type TStateChanges = {
69
args: { type: string, value: string }[],
70
},
71
payment: TPayment[],
72
- stateChanges: TStateChanges | null
+ stateChanges: TStateChanges,
73
})[]
74
error?: {
75
code: number,
@@ -78,7 +78,7 @@ export type TStateChanges = {
78
}
79
80
export interface IWithStateChanges {
81
- stateChanges: TStateChanges
+ stateChanges: TStateChanges | null
82
83
84
/**
0 commit comments