@nsshunt/stsfhirpg 1.2.35 → 1.2.36
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.cjs +1 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +11 -11
package/dist/index.mjs
CHANGED
|
@@ -4665,10 +4665,6 @@ var DBSearchIndex = class DBSearchIndex {
|
|
|
4665
4665
|
};
|
|
4666
4666
|
//#endregion
|
|
4667
4667
|
//#region src/fhir-database/pg/pgpoolmanager.ts
|
|
4668
|
-
var IDBAccessLayerEvents = /* @__PURE__ */ function(IDBAccessLayerEvents) {
|
|
4669
|
-
IDBAccessLayerEvents["UpdateInstruments"] = "UpdateInstruments";
|
|
4670
|
-
return IDBAccessLayerEvents;
|
|
4671
|
-
}({});
|
|
4672
4668
|
var PGPoolManager = class extends TinyEmitter {
|
|
4673
4669
|
#options;
|
|
4674
4670
|
#observer = null;
|
|
@@ -4774,7 +4770,7 @@ var PGPoolManager = class extends TinyEmitter {
|
|
|
4774
4770
|
data.idleCount += poolItem.pool.idleCount;
|
|
4775
4771
|
data.waitingCount += poolItem.pool.waitingCount;
|
|
4776
4772
|
}
|
|
4777
|
-
this.emit(
|
|
4773
|
+
this.emit("UpdateInstruments", data);
|
|
4778
4774
|
}
|
|
4779
4775
|
#AttachInstruments(interval = 1e3) {
|
|
4780
4776
|
this.#observer = setInterval(() => {
|