@0xsequence/catapult 1.3.5 → 1.3.6

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.
@@ -95,6 +95,11 @@ export interface ReadJsonValue {
95
95
  };
96
96
  }
97
97
 
98
+ export interface ResolveJsonValue {
99
+ type: 'resolve-json';
100
+ arguments: Value<any>;
101
+ }
102
+
98
103
  /**
99
104
  * A union of all possible value-resolver objects.
100
105
  */
@@ -109,7 +114,8 @@ export type ValueResolver =
109
114
  | CallValue
110
115
  | ContractExistsValue
111
116
  | JobCompletedValue
112
- | ReadJsonValue;
117
+ | ReadJsonValue
118
+ | ResolveJsonValue;
113
119
 
114
120
  /**
115
121
  * A generic value type that can be a primitive literal (string, number, boolean),