@notifi-network/fusion-sdk 0.1.1 → 0.1.3

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/dist/index.d.ts CHANGED
@@ -8,3 +8,5 @@ export { SubscriptionsWrapper as Subscriptions } from './fusion_wrappers/subscri
8
8
  export { BlockchainType } from './protos_gen/notifi/common/v1/types.js';
9
9
  export { HttpMethod, Region } from './protos_gen/services/fetch_proxy/v1/fetch_proxy.js';
10
10
  export { getParserBlobInput } from './utils/execution_param_fetch.js';
11
+ export type { EvmBlock, EvmLogs, EvmBlockAndLogs, EvmTransactions, SolanaBlockAndLogs, SuiCheckpointTransactions } from './types/parserInputTypes.js';
12
+ export type { FusionEvent, JsonObject, JsonValue } from './types/fusionEventType.js';
@@ -0,0 +1,13 @@
1
+ import { BlockchainType } from "../protos_gen/notifi/common/v1/types.js";
2
+ export type JsonValue = number | string | boolean | null | JsonObject | JsonValue[];
3
+ export type JsonObject = {
4
+ [k: string]: JsonValue;
5
+ };
6
+ export interface FusionEvent {
7
+ eventTypeId: string;
8
+ metadata?: JsonObject;
9
+ changeSignature: string;
10
+ blockchainType?: BlockchainType;
11
+ comparisonValue: string;
12
+ isComparisonValueCaseSensitive?: boolean;
13
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@notifi-network/fusion-sdk",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "SDK utils for Notifi Fusion parser development. This includes types and helpers for accessing ephemeral/persistent storage, RPCs for different chains, and other utilities.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",