@sentio/runtime 2.15.0-rc.5 → 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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
3
  "license": "Apache-2.0",
4
- "version": "2.15.0-rc.5",
4
+ "version": "2.15.0-rc.6",
5
5
  "dependencies": {
6
6
  "command-line-args": "^5.2.1",
7
7
  "command-line-usage": "^7.0.1",
@@ -16,7 +16,7 @@
16
16
  "protobufjs": "^7.2.3",
17
17
  "@grpc/grpc-js": "^1.8.14",
18
18
  "prom-client": "^14.2.0",
19
- "@sentio/protos": "^2.15.0-rc.5"
19
+ "@sentio/protos": "^2.15.0-rc.6"
20
20
  },
21
21
  "devDependencies": {
22
22
  "jest": "^29.5.0",
@@ -27,7 +27,7 @@
27
27
  "tslib": "^2.5.0"
28
28
  },
29
29
  "peerDependencies": {
30
- "@sentio/sdk": "^2.15.0-rc.5"
30
+ "@sentio/sdk": "^2.15.0-rc.6"
31
31
  },
32
32
  "bin": {
33
33
  "processor-runner": "./lib/processor-runner.js"
@@ -408,6 +408,7 @@ export interface MoveOnIntervalConfig {
408
408
  export enum MoveOnIntervalConfig_OwnerType {
409
409
  ADDRESS = 0,
410
410
  OBJECT = 1,
411
+ WRAPPED_OBJECT = 2,
411
412
  UNRECOGNIZED = -1,
412
413
  }
413
414
 
@@ -419,6 +420,9 @@ export function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnInter
419
420
  case 1:
420
421
  case "OBJECT":
421
422
  return MoveOnIntervalConfig_OwnerType.OBJECT;
423
+ case 2:
424
+ case "WRAPPED_OBJECT":
425
+ return MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT;
422
426
  case -1:
423
427
  case "UNRECOGNIZED":
424
428
  default:
@@ -432,6 +436,8 @@ export function moveOnIntervalConfig_OwnerTypeToJSON(object: MoveOnIntervalConfi
432
436
  return "ADDRESS";
433
437
  case MoveOnIntervalConfig_OwnerType.OBJECT:
434
438
  return "OBJECT";
439
+ case MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT:
440
+ return "WRAPPED_OBJECT";
435
441
  case MoveOnIntervalConfig_OwnerType.UNRECOGNIZED:
436
442
  default:
437
443
  return "UNRECOGNIZED";