@sentio/runtime 2.62.0-rc.4 → 2.62.0-rc.5
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/lib/{chunk-6SI5TBIR.js → chunk-RPV67F56.js} +43 -13
- package/lib/{chunk-6SI5TBIR.js.map → chunk-RPV67F56.js.map} +1 -1
- package/lib/index.d.ts +2 -2
- package/lib/index.js +1 -1
- package/lib/{processor-KRKdS8v-.d.ts → processor-HNY62jHs.d.ts} +1 -1
- package/lib/processor-runner.d.ts +0 -33
- package/lib/processor-runner.js +4162 -1422
- package/lib/processor-runner.js.map +1 -1
- package/lib/service-worker.js +1 -1
- package/lib/test-processor.test.d.ts +1 -1
- package/package.json +1 -3
- package/src/processor-runner.ts +185 -161
- package/src/service-manager.ts +2 -1
package/lib/index.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import { S as StoreContext, E as ExecutionConfig } from './processor-
|
2
|
-
export { A as AbstractStoreContext,
|
1
|
+
import { S as StoreContext, E as ExecutionConfig } from './processor-HNY62jHs.js';
|
2
|
+
export { A as AbstractStoreContext, d as DataBindingContext, c as IDataBindingContext, I as IStoreContext, P as Plugin, b as PluginManager, t as timeoutError } from './processor-HNY62jHs.js';
|
3
3
|
import * as _sentio_protos from '@sentio/protos';
|
4
4
|
import { TemplateInstance, ProcessResult, EthCallParam, ProcessorServiceImplementation, ProcessConfigRequest, ProcessConfigResponse, StartRequest, Empty, ProcessBindingsRequest, ProcessBindingResponse, DataBinding, PreparedData, PreprocessResult, ProcessStreamRequest, HandlerType, PreprocessStreamRequest, DeepPartial, PreprocessStreamResponse, ProcessStreamResponse } from '@sentio/protos';
|
5
5
|
import { Required } from 'utility-types';
|
package/lib/index.js
CHANGED
@@ -877,4 +877,4 @@ type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U
|
|
877
877
|
[K in keyof T]?: DeepPartial<T[K]>;
|
878
878
|
} : Partial<T>;
|
879
879
|
|
880
|
-
export { AbstractStoreContext as A,
|
880
|
+
export { AbstractStoreContext as A, DataBinding as D, ExecutionConfig as E, HandlerType as H, type IStoreContext as I, Plugin as P, StoreContext as S, ProcessResult as a, PluginManager as b, type IDataBindingContext as c, DataBindingContext as d, timeoutError as t };
|
@@ -1,34 +1 @@
|
|
1
1
|
#!/usr/bin/env node
|
2
|
-
declare const optionDefinitions: ({
|
3
|
-
name: string;
|
4
|
-
type: StringConstructor;
|
5
|
-
defaultOption: boolean;
|
6
|
-
alias?: undefined;
|
7
|
-
defaultValue?: undefined;
|
8
|
-
} | {
|
9
|
-
name: string;
|
10
|
-
alias: string;
|
11
|
-
type: StringConstructor;
|
12
|
-
defaultValue: string;
|
13
|
-
defaultOption?: undefined;
|
14
|
-
} | {
|
15
|
-
name: string;
|
16
|
-
type: NumberConstructor;
|
17
|
-
defaultValue: number;
|
18
|
-
defaultOption?: undefined;
|
19
|
-
alias?: undefined;
|
20
|
-
} | {
|
21
|
-
name: string;
|
22
|
-
type: StringConstructor;
|
23
|
-
defaultValue: string;
|
24
|
-
defaultOption?: undefined;
|
25
|
-
alias?: undefined;
|
26
|
-
} | {
|
27
|
-
name: string;
|
28
|
-
type: BooleanConstructor;
|
29
|
-
defaultValue: boolean;
|
30
|
-
defaultOption?: undefined;
|
31
|
-
alias?: undefined;
|
32
|
-
})[];
|
33
|
-
|
34
|
-
export { optionDefinitions };
|