@sentio/runtime 2.15.0-rc.4 → 2.15.0-rc.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.
@@ -152,6 +152,7 @@ export interface MoveOnIntervalConfig {
|
|
152
152
|
export declare enum MoveOnIntervalConfig_OwnerType {
|
153
153
|
ADDRESS = 0,
|
154
154
|
OBJECT = 1,
|
155
|
+
WRAPPED_OBJECT = 2,
|
155
156
|
UNRECOGNIZED = -1
|
156
157
|
}
|
157
158
|
export declare function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnIntervalConfig_OwnerType;
|
@@ -290,6 +290,7 @@ export var MoveOnIntervalConfig_OwnerType;
|
|
290
290
|
(function (MoveOnIntervalConfig_OwnerType) {
|
291
291
|
MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["ADDRESS"] = 0] = "ADDRESS";
|
292
292
|
MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["OBJECT"] = 1] = "OBJECT";
|
293
|
+
MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["WRAPPED_OBJECT"] = 2] = "WRAPPED_OBJECT";
|
293
294
|
MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
294
295
|
})(MoveOnIntervalConfig_OwnerType || (MoveOnIntervalConfig_OwnerType = {}));
|
295
296
|
export function moveOnIntervalConfig_OwnerTypeFromJSON(object) {
|
@@ -300,6 +301,9 @@ export function moveOnIntervalConfig_OwnerTypeFromJSON(object) {
|
|
300
301
|
case 1:
|
301
302
|
case "OBJECT":
|
302
303
|
return MoveOnIntervalConfig_OwnerType.OBJECT;
|
304
|
+
case 2:
|
305
|
+
case "WRAPPED_OBJECT":
|
306
|
+
return MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT;
|
303
307
|
case -1:
|
304
308
|
case "UNRECOGNIZED":
|
305
309
|
default:
|
@@ -312,6 +316,8 @@ export function moveOnIntervalConfig_OwnerTypeToJSON(object) {
|
|
312
316
|
return "ADDRESS";
|
313
317
|
case MoveOnIntervalConfig_OwnerType.OBJECT:
|
314
318
|
return "OBJECT";
|
319
|
+
case MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT:
|
320
|
+
return "WRAPPED_OBJECT";
|
315
321
|
case MoveOnIntervalConfig_OwnerType.UNRECOGNIZED:
|
316
322
|
default:
|
317
323
|
return "UNRECOGNIZED";
|