@sentio/protos 2.18.3-rc.1 → 2.18.3-rc.2

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.
@@ -157,14 +157,6 @@ export interface MoveOnIntervalConfig {
157
157
  ownerType: MoveOwnerType;
158
158
  fetchConfig: MoveAccountFetchConfig | undefined;
159
159
  }
160
- export declare enum MoveOnIntervalConfig_OwnerType {
161
- ADDRESS = 0,
162
- OBJECT = 1,
163
- WRAPPED_OBJECT = 2,
164
- UNRECOGNIZED = -1
165
- }
166
- export declare function moveOnIntervalConfig_OwnerTypeFromJSON(object: any): MoveOnIntervalConfig_OwnerType;
167
- export declare function moveOnIntervalConfig_OwnerTypeToJSON(object: MoveOnIntervalConfig_OwnerType): string;
168
160
  export interface ContractInfo {
169
161
  name: string;
170
162
  chainId: string;
@@ -323,43 +323,6 @@ 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
- }
363
326
  function createBaseProjectConfig() {
364
327
  return { name: "", version: "" };
365
328
  }