@sentio/runtime 2.16.0 → 2.16.1

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.
@@ -159,6 +159,14 @@ export interface MoveOnIntervalConfig {
159
159
  ownerType: MoveOwnerType;
160
160
  fetchConfig: MoveAccountFetchConfig | undefined;
161
161
  }
162
+ export declare enum MoveOnIntervalConfig_OwnerType {
163
+ ADDRESS = 0,
164
+ OBJECT = 1,
165
+ WRAPPED_OBJECT = 2,
166
+ UNRECOGNIZED = -1
167
+ }
168
+ export declare function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnIntervalConfig_OwnerType;
169
+ export declare function moveOnIntervalConfig_OwnerTypeToJSON(object: MoveOnIntervalConfig_OwnerType): string;
162
170
  export interface ContractInfo {
163
171
  name: string;
164
172
  chainId: string;
@@ -323,6 +323,43 @@ export function totalPerEntityAggregation_TypeToJSON(object) {
323
323
  return "UNRECOGNIZED";
324
324
  }
325
325
  }
326
+ export var MoveOnIntervalConfig_OwnerType;
327
+ (function (MoveOnIntervalConfig_OwnerType) {
328
+ MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["ADDRESS"] = 0] = "ADDRESS";
329
+ MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["OBJECT"] = 1] = "OBJECT";
330
+ MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["WRAPPED_OBJECT"] = 2] = "WRAPPED_OBJECT";
331
+ MoveOnIntervalConfig_OwnerType[MoveOnIntervalConfig_OwnerType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
332
+ })(MoveOnIntervalConfig_OwnerType || (MoveOnIntervalConfig_OwnerType = {}));
333
+ export function moveOnIntervalConfig_OwnerTypeFromJSON(object) {
334
+ switch (object) {
335
+ case 0:
336
+ case "ADDRESS":
337
+ return MoveOnIntervalConfig_OwnerType.ADDRESS;
338
+ case 1:
339
+ case "OBJECT":
340
+ return MoveOnIntervalConfig_OwnerType.OBJECT;
341
+ case 2:
342
+ case "WRAPPED_OBJECT":
343
+ return MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT;
344
+ case -1:
345
+ case "UNRECOGNIZED":
346
+ default:
347
+ return MoveOnIntervalConfig_OwnerType.UNRECOGNIZED;
348
+ }
349
+ }
350
+ export function moveOnIntervalConfig_OwnerTypeToJSON(object) {
351
+ switch (object) {
352
+ case MoveOnIntervalConfig_OwnerType.ADDRESS:
353
+ return "ADDRESS";
354
+ case MoveOnIntervalConfig_OwnerType.OBJECT:
355
+ return "OBJECT";
356
+ case MoveOnIntervalConfig_OwnerType.WRAPPED_OBJECT:
357
+ return "WRAPPED_OBJECT";
358
+ case MoveOnIntervalConfig_OwnerType.UNRECOGNIZED:
359
+ default:
360
+ return "UNRECOGNIZED";
361
+ }
362
+ }
326
363
  function createBaseProjectConfig() {
327
364
  return { name: "", version: "" };
328
365
  }