@zintrust/queue-rabbitmq 0.1.19 → 0.1.23
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 +5 -1
- package/dist/build-manifest.json +43 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +6 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @zintrust/queue-rabbitmq
|
|
2
2
|
|
|
3
|
-
RabbitMQ queue driver registration for
|
|
3
|
+
RabbitMQ queue driver registration for ZinTrust.
|
|
4
4
|
|
|
5
5
|
- Docs: https://zintrust.com/queue
|
|
6
6
|
|
|
@@ -19,3 +19,7 @@ import '@zintrust/queue-rabbitmq/register';
|
|
|
19
19
|
Then set `QUEUE_DRIVER=rabbitmq` and configure:
|
|
20
20
|
|
|
21
21
|
- `RABBITMQ_URL` (e.g. `amqp://localhost`)
|
|
22
|
+
|
|
23
|
+
## License
|
|
24
|
+
|
|
25
|
+
This package depends on amqplib which is MIT licensed. MIT is a permissive license that allows free commercial use without requiring you to open-source your code.
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zintrust/queue-rabbitmq",
|
|
3
|
+
"version": "0.1.15",
|
|
4
|
+
"buildDate": "2026-01-21T12:27:06.343Z",
|
|
5
|
+
"buildEnvironment": {
|
|
6
|
+
"node": "v20.19.6",
|
|
7
|
+
"platform": "linux",
|
|
8
|
+
"arch": "x64"
|
|
9
|
+
},
|
|
10
|
+
"git": {
|
|
11
|
+
"commit": "ae2c0a6",
|
|
12
|
+
"branch": "master"
|
|
13
|
+
},
|
|
14
|
+
"package": {
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.0.0"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": [
|
|
19
|
+
"amqplib"
|
|
20
|
+
],
|
|
21
|
+
"peerDependencies": [
|
|
22
|
+
"@zintrust/core"
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
"files": {
|
|
26
|
+
"index.d.ts": {
|
|
27
|
+
"size": 862,
|
|
28
|
+
"sha256": "c3514221f9c8279ce5dd5b3f2dcbca57f6180fe4159a9074825eb256372602a7"
|
|
29
|
+
},
|
|
30
|
+
"index.js": {
|
|
31
|
+
"size": 4185,
|
|
32
|
+
"sha256": "e9c98441cb11818b94b9d62d6e051c03ee354b45c5d2c1f717a9954a20e9cfc5"
|
|
33
|
+
},
|
|
34
|
+
"register.d.ts": {
|
|
35
|
+
"size": 172,
|
|
36
|
+
"sha256": "3df6e3476e3bb800e7121b2a7e5683f2eafb2e3f9baf79441fe9162c4c7d3eb9"
|
|
37
|
+
},
|
|
38
|
+
"register.js": {
|
|
39
|
+
"size": 538,
|
|
40
|
+
"sha256": "edfc3e00243ae6c7c4f9b9b0943e4ea9137a68e975e5925739ae7bbcb61cbdb4"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
package/dist/index.d.ts
CHANGED
|
@@ -17,3 +17,9 @@ export declare const RabbitMqQueue: Readonly<{
|
|
|
17
17
|
};
|
|
18
18
|
}>;
|
|
19
19
|
export default RabbitMqQueue;
|
|
20
|
+
/**
|
|
21
|
+
* Package version and build metadata
|
|
22
|
+
* Available at runtime for debugging and health checks
|
|
23
|
+
*/
|
|
24
|
+
export declare const _ZINTRUST_QUEUE_RABBITMQ_VERSION = "0.1.15";
|
|
25
|
+
export declare const _ZINTRUST_QUEUE_RABBITMQ_BUILD_DATE = "__BUILD_DATE__";
|
package/dist/index.js
CHANGED
|
@@ -100,3 +100,9 @@ export const RabbitMqQueue = Object.freeze({
|
|
|
100
100
|
},
|
|
101
101
|
});
|
|
102
102
|
export default RabbitMqQueue;
|
|
103
|
+
/**
|
|
104
|
+
* Package version and build metadata
|
|
105
|
+
* Available at runtime for debugging and health checks
|
|
106
|
+
*/
|
|
107
|
+
export const _ZINTRUST_QUEUE_RABBITMQ_VERSION = '0.1.15';
|
|
108
|
+
export const _ZINTRUST_QUEUE_RABBITMQ_BUILD_DATE = '__BUILD_DATE__';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/queue-rabbitmq",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -21,8 +21,11 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20.0.0"
|
|
23
23
|
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"amqplib": "^0.10.3"
|
|
26
|
+
},
|
|
24
27
|
"peerDependencies": {
|
|
25
|
-
"@zintrust/core": "^0.1.
|
|
28
|
+
"@zintrust/core": "^0.1.23"
|
|
26
29
|
},
|
|
27
30
|
"publishConfig": {
|
|
28
31
|
"access": "public"
|