@indexing/jiti 0.0.53 → 0.0.55
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/main.js +45 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +44 -12
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -4
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
type
|
|
1
|
+
type Template = {
|
|
2
2
|
key: string;
|
|
3
3
|
name: string;
|
|
4
4
|
description: string;
|
|
@@ -45,7 +45,6 @@ type HubEventMessage = {
|
|
|
45
45
|
signer: string;
|
|
46
46
|
data_bytes: string;
|
|
47
47
|
};
|
|
48
|
-
export type Template = Template;
|
|
49
48
|
export const utils: {
|
|
50
49
|
blockToTimestamp(block: Record<string, unknown>): Date;
|
|
51
50
|
blockToVM(block: Record<string, unknown>): string;
|
|
@@ -85,8 +84,12 @@ export const utils: {
|
|
|
85
84
|
snapchainTimestampFromMsg(msg: Record<string, unknown>): Date;
|
|
86
85
|
snapchainParseEvent(evt: HubEventMessage): Record<string, unknown>;
|
|
87
86
|
};
|
|
88
|
-
export const templates: {
|
|
87
|
+
export const templates: {
|
|
88
|
+
filterValues: Template;
|
|
89
|
+
raw: Template;
|
|
90
|
+
tokenTransfers: Template;
|
|
91
|
+
};
|
|
89
92
|
export function getAllTemplates(): Template[];
|
|
90
|
-
export function getTemplateByKey(key: string):
|
|
93
|
+
export function getTemplateByKey(key: string): any;
|
|
91
94
|
|
|
92
95
|
//# sourceMappingURL=types.d.ts.map
|