@sentio/runtime 4.1.0-rc.1 → 4.1.0-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.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/{plugin-5pzA6X1w.js → plugin-CT4pDRpS.js} +1 -13
- package/dist/{plugin-5pzA6X1w.js.map → plugin-CT4pDRpS.js.map} +1 -1
- package/dist/{plugin-BrBSx4KR.d.ts → plugin-DnkcGTkw.d.ts} +1 -9
- package/dist/{plugin-BrBSx4KR.d.ts.map → plugin-DnkcGTkw.d.ts.map} +1 -1
- package/dist/processor-runner.js +2 -2
- package/dist/{service-v3-DtHrTW9o.js → service-v3-BpwaUIVx.js} +2 -2
- package/dist/{service-v3-DtHrTW9o.js.map → service-v3-BpwaUIVx.js.map} +1 -1
- package/package.json +1 -1
- package/src/plugin.ts +0 -14
package/package.json
CHANGED
package/src/plugin.ts
CHANGED
|
@@ -26,13 +26,6 @@ export abstract class Plugin {
|
|
|
26
26
|
|
|
27
27
|
async start(start: StartRequest): Promise<void> {}
|
|
28
28
|
|
|
29
|
-
/**
|
|
30
|
-
* @deprecated The method should not be used, use ctx.states instead
|
|
31
|
-
*/
|
|
32
|
-
stateDiff(config: ProcessConfigResponse): boolean {
|
|
33
|
-
return false
|
|
34
|
-
}
|
|
35
|
-
|
|
36
29
|
async processBinding(request: DataBinding, preparedData: PreparedData | undefined): Promise<ProcessResult> {
|
|
37
30
|
return create(ProcessResultSchema)
|
|
38
31
|
}
|
|
@@ -110,13 +103,6 @@ export class PluginManager {
|
|
|
110
103
|
this.plugins.forEach((plugin) => plugin.shutdownServer())
|
|
111
104
|
}
|
|
112
105
|
|
|
113
|
-
/**
|
|
114
|
-
* @deprecated The method should not be used, use ctx.states instead
|
|
115
|
-
*/
|
|
116
|
-
stateDiff(config: ProcessConfigResponse): boolean {
|
|
117
|
-
return this.plugins.some((plugin) => plugin.stateDiff(config))
|
|
118
|
-
}
|
|
119
|
-
|
|
120
106
|
processBinding(
|
|
121
107
|
request: DataBinding,
|
|
122
108
|
preparedData: PreparedData | undefined,
|