@514labs/moose-lib 0.6.459 → 0.6.460
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/browserCompatible.d.mts +5 -4
- package/dist/browserCompatible.d.ts +5 -4
- package/dist/browserCompatible.js +8 -5
- package/dist/browserCompatible.js.map +1 -1
- package/dist/browserCompatible.mjs +4 -1
- package/dist/browserCompatible.mjs.map +1 -1
- package/dist/dmv2/index.d.mts +3 -2
- package/dist/dmv2/index.d.ts +3 -2
- package/dist/dmv2/index.js +7 -4
- package/dist/dmv2/index.js.map +1 -1
- package/dist/dmv2/index.mjs +4 -1
- package/dist/dmv2/index.mjs.map +1 -1
- package/dist/index-Cs6mRtl7.d.ts +1305 -0
- package/dist/index-DBs6nRQN.d.mts +1305 -0
- package/dist/index.d.mts +5 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +28 -23
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -23
- package/dist/index.mjs.map +1 -1
- package/dist/moose-runner.js +67 -56
- package/dist/moose-runner.js.map +1 -1
- package/dist/moose-runner.mjs +70 -59
- package/dist/moose-runner.mjs.map +1 -1
- package/dist/testing/index.d.mts +99 -0
- package/dist/testing/index.d.ts +99 -0
- package/dist/testing/index.js +328 -0
- package/dist/testing/index.js.map +1 -0
- package/dist/testing/index.mjs +295 -0
- package/dist/testing/index.mjs.map +1 -0
- package/dist/view-CNYx8kUh.d.mts +1327 -0
- package/dist/view-CNYx8kUh.d.ts +1327 -0
- package/package.json +7 -2
- package/dist/index-BkvEUvtm.d.mts +0 -2627
- package/dist/index-BkvEUvtm.d.ts +0 -2627
|
@@ -635,7 +635,7 @@ import {
|
|
|
635
635
|
Client as TemporalClient,
|
|
636
636
|
Connection
|
|
637
637
|
} from "@temporalio/client";
|
|
638
|
-
import { createHash
|
|
638
|
+
import { createHash } from "crypto";
|
|
639
639
|
|
|
640
640
|
// src/sqlHelpers.ts
|
|
641
641
|
var quoteIdentifier = (name) => {
|
|
@@ -827,6 +827,9 @@ function emptyIfUndefined(value) {
|
|
|
827
827
|
return value === void 0 ? "" : value;
|
|
828
828
|
}
|
|
829
829
|
|
|
830
|
+
// src/consumption-apis/query-client.ts
|
|
831
|
+
import { randomUUID } from "crypto";
|
|
832
|
+
|
|
830
833
|
// src/clients/redisClient.ts
|
|
831
834
|
import { createClient as createClient2 } from "redis";
|
|
832
835
|
|