@meetsmore-oss/use-ai-plugin-workflows 1.7.0 → 1.9.0
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.js +26 -12
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -7,15 +7,29 @@ var __getProtoOf = Object.getPrototypeOf;
|
|
|
7
7
|
var __defProp = Object.defineProperty;
|
|
8
8
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
9
9
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
10
|
+
function __accessProp(key) {
|
|
11
|
+
return this[key];
|
|
12
|
+
}
|
|
13
|
+
var __toESMCache_node;
|
|
14
|
+
var __toESMCache_esm;
|
|
10
15
|
var __toESM = (mod, isNodeMode, target) => {
|
|
16
|
+
var canCache = mod != null && typeof mod === "object";
|
|
17
|
+
if (canCache) {
|
|
18
|
+
var cache = isNodeMode ? __toESMCache_node ??= new WeakMap : __toESMCache_esm ??= new WeakMap;
|
|
19
|
+
var cached = cache.get(mod);
|
|
20
|
+
if (cached)
|
|
21
|
+
return cached;
|
|
22
|
+
}
|
|
11
23
|
target = mod != null ? __create(__getProtoOf(mod)) : {};
|
|
12
24
|
const to = isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target;
|
|
13
25
|
for (let key of __getOwnPropNames(mod))
|
|
14
26
|
if (!__hasOwnProp.call(to, key))
|
|
15
27
|
__defProp(to, key, {
|
|
16
|
-
get: (
|
|
28
|
+
get: __accessProp.bind(mod, key),
|
|
17
29
|
enumerable: true
|
|
18
30
|
});
|
|
31
|
+
if (canCache)
|
|
32
|
+
cache.set(mod, to);
|
|
19
33
|
return to;
|
|
20
34
|
};
|
|
21
35
|
var __commonJS = (cb, mod) => () => (mod || cb((mod = { exports: {} }).exports, mod), mod.exports);
|
|
@@ -4567,14 +4581,9 @@ class WorkflowsPlugin {
|
|
|
4567
4581
|
}
|
|
4568
4582
|
}
|
|
4569
4583
|
}
|
|
4570
|
-
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
byteToHex.push((i + 256).toString(16).slice(1));
|
|
4574
|
-
}
|
|
4575
|
-
function unsafeStringify(arr, offset = 0) {
|
|
4576
|
-
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
|
|
4577
|
-
}
|
|
4584
|
+
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/native.js
|
|
4585
|
+
import { randomUUID } from "crypto";
|
|
4586
|
+
var native_default = { randomUUID };
|
|
4578
4587
|
|
|
4579
4588
|
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/rng.js
|
|
4580
4589
|
import { randomFillSync } from "crypto";
|
|
@@ -4588,9 +4597,14 @@ function rng() {
|
|
|
4588
4597
|
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
|
4589
4598
|
}
|
|
4590
4599
|
|
|
4591
|
-
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/
|
|
4592
|
-
|
|
4593
|
-
|
|
4600
|
+
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/stringify.js
|
|
4601
|
+
var byteToHex = [];
|
|
4602
|
+
for (let i = 0;i < 256; ++i) {
|
|
4603
|
+
byteToHex.push((i + 256).toString(16).slice(1));
|
|
4604
|
+
}
|
|
4605
|
+
function unsafeStringify(arr, offset = 0) {
|
|
4606
|
+
return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
|
|
4607
|
+
}
|
|
4594
4608
|
|
|
4595
4609
|
// ../../node_modules/.bun/uuid@11.1.0/node_modules/uuid/dist/esm/v4.js
|
|
4596
4610
|
function v4(options, buf, offset) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meetsmore-oss/use-ai-plugin-workflows",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.9.0",
|
|
4
4
|
"license": "BUSL-1.1",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -31,16 +31,16 @@
|
|
|
31
31
|
"test": "bun test --only-failures"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@meetsmore-oss/use-ai-core": "^1.
|
|
34
|
+
"@meetsmore-oss/use-ai-core": "^1.9.0",
|
|
35
35
|
"ai": "6.0.0-beta.116",
|
|
36
36
|
"uuid": "^11.0.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/uuid": "^10.0.0",
|
|
40
|
-
"@meetsmore-oss/use-ai-server": "^1.
|
|
40
|
+
"@meetsmore-oss/use-ai-server": "^1.9.0",
|
|
41
41
|
"typescript": "^5.9.3"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
|
-
"@meetsmore-oss/use-ai-server": "^1.
|
|
44
|
+
"@meetsmore-oss/use-ai-server": "^1.9.0"
|
|
45
45
|
}
|
|
46
46
|
}
|