@sprucelabs/mercury-chunking-emitter 1.1.2 → 1.1.4
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/README.md
CHANGED
|
@@ -19,6 +19,7 @@ Spruce XP Documentation
|
|
|
19
19
|
<a href="https://developer.spruce.ai/#/"><img width="250" src="https://raw.githubusercontent.com/sprucelabsai/data-stores/master/docs/images/read-full-docs.png" /></a>
|
|
20
20
|
</p>
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
### Dependencies
|
|
23
24
|
|
|
24
25
|
[Arkit diagram here](docs/dependencies.md).
|
package/package.json
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sprucelabs/mercury-chunking-emitter",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"files": [
|
|
5
5
|
"build/**/*",
|
|
6
6
|
"!build/__tests__",
|
|
7
7
|
"!build/esm/__tests__"
|
|
8
8
|
],
|
|
9
|
+
"main": "./build/index.js",
|
|
10
|
+
"types": "./build/index.d.ts",
|
|
11
|
+
"module": "./build/esm/index.js",
|
|
12
|
+
"sideEffects": false,
|
|
13
|
+
"license": "MIT",
|
|
9
14
|
"scripts": {
|
|
10
15
|
"build.ci": "yarn build.tsc && yarn build.resolve-paths && yarn lint",
|
|
11
16
|
"build.dev": "yarn build.tsc --sourceMap ; yarn resolve-paths.lint",
|
|
@@ -55,7 +60,12 @@
|
|
|
55
60
|
},
|
|
56
61
|
"description": "Need to emit a ton of data!? Just chunk it!",
|
|
57
62
|
"skill": {
|
|
58
|
-
"namespace": "chunking-emitter"
|
|
63
|
+
"namespace": "mercury-chunking-emitter",
|
|
64
|
+
"upgradeIgnoreList": [
|
|
65
|
+
"@sprucelabs/spruce-permission-plugin",
|
|
66
|
+
"@sprucelabs/mercury-core-events",
|
|
67
|
+
"@sprucelabs/spruce-event-plugin"
|
|
68
|
+
]
|
|
59
69
|
},
|
|
60
70
|
"jest": {
|
|
61
71
|
"testRunner": "jest-circus/runner",
|
|
@@ -77,13 +87,10 @@
|
|
|
77
87
|
},
|
|
78
88
|
"dependencies": {
|
|
79
89
|
"@sprucelabs/mercury-client": "^41.0.109",
|
|
80
|
-
"@sprucelabs/mercury-core-events": "^22.0.105",
|
|
81
90
|
"@sprucelabs/mercury-types": "^46.0.98",
|
|
82
91
|
"@sprucelabs/schema": "^29.0.71",
|
|
83
92
|
"@sprucelabs/spruce-core-schemas": "^39.0.104",
|
|
84
|
-
"@sprucelabs/spruce-event-plugin": "^60.0.136",
|
|
85
93
|
"@sprucelabs/spruce-event-utils": "^38.0.114",
|
|
86
|
-
"@sprucelabs/spruce-permission-plugin": "^30.0.206",
|
|
87
94
|
"@sprucelabs/spruce-skill-utils": "^30.0.54"
|
|
88
95
|
}
|
|
89
|
-
}
|
|
96
|
+
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { plugin as default } from '@sprucelabs/spruce-permission-plugin';
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = void 0;
|
|
4
|
-
var spruce_permission_plugin_1 = require("@sprucelabs/spruce-permission-plugin");
|
|
5
|
-
Object.defineProperty(exports, "default", { enumerable: true, get: function () { return spruce_permission_plugin_1.plugin; } });
|