@sentio/runtime 2.59.0-rc.14 → 2.59.0-rc.16
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-GD7EL7GH.js → chunk-NIAALZHZ.js} +2 -2
- package/lib/{chunk-J23VJQSB.js → chunk-QLUHWTGU.js} +10 -6
- package/lib/{chunk-J23VJQSB.js.map → chunk-QLUHWTGU.js.map} +1 -1
- package/lib/{chunk-3T4PWGQU.js → chunk-YKYFIG5E.js} +344 -2
- package/lib/chunk-YKYFIG5E.js.map +1 -0
- package/lib/index.d.ts +110 -0
- package/lib/index.js +2 -2
- package/lib/processor-runner.js +3 -3
- package/lib/service-worker.js +3 -3
- package/package.json +1 -1
- package/src/gen/processor/protos/processor.ts +409 -1
- package/src/metrics.ts +8 -4
- package/lib/chunk-3T4PWGQU.js.map +0 -1
- /package/lib/{chunk-GD7EL7GH.js.map → chunk-NIAALZHZ.js.map} +0 -0
@@ -6,7 +6,7 @@ import {
|
|
6
6
|
__require,
|
7
7
|
__toCommonJS,
|
8
8
|
__toESM
|
9
|
-
} from "./chunk-
|
9
|
+
} from "./chunk-YKYFIG5E.js";
|
10
10
|
|
11
11
|
// ../../node_modules/.pnpm/logform@2.6.0/node_modules/logform/format.js
|
12
12
|
var require_format = __commonJS({
|
@@ -10972,4 +10972,4 @@ export {
|
|
10972
10972
|
safe-buffer/index.js:
|
10973
10973
|
(*! safe-buffer. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
10974
10974
|
*/
|
10975
|
-
//# sourceMappingURL=chunk-
|
10975
|
+
//# sourceMappingURL=chunk-NIAALZHZ.js.map
|
@@ -21,7 +21,7 @@ import {
|
|
21
21
|
require_roots,
|
22
22
|
require_rpc,
|
23
23
|
require_writer
|
24
|
-
} from "./chunk-
|
24
|
+
} from "./chunk-YKYFIG5E.js";
|
25
25
|
|
26
26
|
// ../../node_modules/.pnpm/universalify@2.0.1/node_modules/universalify/index.js
|
27
27
|
var require_universalify = __commonJS({
|
@@ -38127,25 +38127,29 @@ var dbMetrics = {
|
|
38127
38127
|
get: new C("store_get_send"),
|
38128
38128
|
upsert: new C("store_upsert_send"),
|
38129
38129
|
list: new C("store_list_send"),
|
38130
|
-
delete: new C("store_delete_send")
|
38130
|
+
delete: new C("store_delete_send"),
|
38131
|
+
update: new C("store_update_send")
|
38131
38132
|
},
|
38132
38133
|
recv_counts: {
|
38133
38134
|
get: new C("store_get_recv"),
|
38134
38135
|
upsert: new C("store_upsert_recv"),
|
38135
38136
|
list: new C("store_list_recv"),
|
38136
|
-
delete: new C("store_delete_recv")
|
38137
|
+
delete: new C("store_delete_recv"),
|
38138
|
+
update: new C("store_update_recv")
|
38137
38139
|
},
|
38138
38140
|
request_times: {
|
38139
38141
|
get: new C("store_get_time"),
|
38140
38142
|
upsert: new C("store_upsert_time"),
|
38141
38143
|
list: new C("store_list_time"),
|
38142
|
-
delete: new C("store_delete_time")
|
38144
|
+
delete: new C("store_delete_time"),
|
38145
|
+
update: new C("store_update_time")
|
38143
38146
|
},
|
38144
38147
|
request_errors: {
|
38145
38148
|
get: new C("store_get_error"),
|
38146
38149
|
upsert: new C("store_upsert_error"),
|
38147
38150
|
list: new C("store_list_error"),
|
38148
|
-
delete: new C("store_delete_error")
|
38151
|
+
delete: new C("store_delete_error"),
|
38152
|
+
update: new C("store_update_error")
|
38149
38153
|
},
|
38150
38154
|
batched_total_count: new C("batched_total_count"),
|
38151
38155
|
batched_request_count: new C("batched_request_count"),
|
@@ -59830,4 +59834,4 @@ long/umd/index.js:
|
|
59830
59834
|
@noble/curves/esm/secp256k1.js:
|
59831
59835
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
59832
59836
|
*/
|
59833
|
-
//# sourceMappingURL=chunk-
|
59837
|
+
//# sourceMappingURL=chunk-QLUHWTGU.js.map
|