@tertiumorganum/typespec-amqp-ws 0.0.3 → 0.0.5
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 +4 -4
- package/package.json +17 -1
package/README.md
CHANGED
|
@@ -277,10 +277,10 @@ model M { payload: MPayload; }
|
|
|
277
277
|
## Примеры
|
|
278
278
|
|
|
279
279
|
В [examples/](examples/):
|
|
280
|
-
-
|
|
281
|
-
-
|
|
282
|
-
-
|
|
283
|
-
-
|
|
280
|
+
- [amqp-publish.tsp](examples/amqp-publish.tsp) — простой AMQP publisher.
|
|
281
|
+
- [amqp-consume.tsp](examples/amqp-consume.tsp) — простой AMQP consumer.
|
|
282
|
+
- [ws-discriminator.tsp](examples/ws-discriminator.tsp) — WebSocket с literal-дискриминатором.
|
|
283
|
+
- [ws-reply.tsp](examples/ws-reply.tsp) — WebSocket с request/reply.
|
|
284
284
|
|
|
285
285
|
## Лицензия
|
|
286
286
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tertiumorganum/typespec-amqp-ws",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "TypeSpec emitter for AsyncAPI 3.0 covering AMQP (RabbitMQ) and WebSocket transports",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/TertiumOrganum1/typespec-amqp-ws.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/TertiumOrganum1/typespec-amqp-ws#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/TertiumOrganum1/typespec-amqp-ws/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"typespec",
|
|
17
|
+
"asyncapi",
|
|
18
|
+
"amqp",
|
|
19
|
+
"rabbitmq",
|
|
20
|
+
"websocket",
|
|
21
|
+
"emitter"
|
|
22
|
+
],
|
|
7
23
|
"engines": {
|
|
8
24
|
"node": ">=22.0.0"
|
|
9
25
|
},
|