@golemio/waze-ccp 1.2.4-dev.1450638709 → 1.2.4-dev.1489893376

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.
@@ -0,0 +1,75 @@
1
+ asyncapi: 3.0.0
2
+ info:
3
+ title: 💡👻 Waze CCP
4
+ version: 1.0.0
5
+ description: This document describes internal RabbitMQ queues of the Waze CCP module.
6
+ contact:
7
+ name: Golemio Prague Data Plaform
8
+ email: golemio@operatorict.cz
9
+ url: https://golemio.cz
10
+ operations:
11
+ wazeccp.refreshAlertsInDB:
12
+ action: "send"
13
+ channel:
14
+ $ref: "#/channels/wazeccp.refreshAlertsInDB"
15
+ wazeccp.refreshAllDataInDB:
16
+ action: "send"
17
+ channel:
18
+ $ref: "#/channels/wazeccp.refreshAllDataInDB"
19
+ wazeccp.refreshIrregularitiesInDB:
20
+ action: "send"
21
+ channel:
22
+ $ref: "#/channels/wazeccp.refreshIrregularitiesInDB"
23
+ wazeccp.refreshJamsInDB:
24
+ action: "send"
25
+ channel:
26
+ $ref: "#/channels/wazeccp.refreshJamsInDB"
27
+ channels:
28
+ wazeccp.refreshAlertsInDB:
29
+ address: dataplatform.wazeccp.refreshAlertsInDB
30
+ description: Refresh data of PostgreSQL table `waze_ccp.wazeccp_alerts`
31
+ bindings:
32
+ amqp:
33
+ is: queue
34
+ queue:
35
+ durable: true
36
+ messages:
37
+ empty:
38
+ $ref: "#/components/messages/emptyMessage"
39
+ wazeccp.refreshAllDataInDB:
40
+ address: dataplatform.wazeccp.refreshAllDataInDB
41
+ description: Refresh data of PostgreSQL tables `waze_ccp.wazeccp_alerts`, `waze_ccp.wazeccp_irregularities`, and `waze_ccp.wazeccp_jams`
42
+ bindings:
43
+ amqp:
44
+ is: queue
45
+ queue:
46
+ durable: true
47
+ messages:
48
+ empty:
49
+ $ref: "#/components/messages/emptyMessage"
50
+ wazeccp.refreshIrregularitiesInDB:
51
+ address: dataplatform.wazeccp.refreshIrregularitiesInDB
52
+ description: Refresh data of PostgreSQL table `waze_ccp.wazeccp_irregularities`
53
+ bindings:
54
+ amqp:
55
+ is: queue
56
+ queue:
57
+ durable: true
58
+ messages:
59
+ empty:
60
+ $ref: "#/components/messages/emptyMessage"
61
+ wazeccp.refreshJamsInDB:
62
+ address: dataplatform.wazeccp.refreshJamsInDB
63
+ description: Refresh data of PostgreSQL table `waze_ccp.wazeccp_jams`
64
+ bindings:
65
+ amqp:
66
+ is: queue
67
+ queue:
68
+ durable: true
69
+ messages:
70
+ empty:
71
+ $ref: "#/components/messages/emptyMessage"
72
+ components:
73
+ messages:
74
+ emptyMessage:
75
+ title: Empty message
@@ -0,0 +1,5 @@
1
+ # Implementační dokumentace modulu *waze-ccp*
2
+
3
+ ## Zpracování dat / transformace
4
+
5
+ Interní RabbitMQ fronty jsou popsány v [AsyncAPI](./asyncapi.yaml).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@golemio/waze-ccp",
3
- "version": "1.2.4-dev.1450638709",
3
+ "version": "1.2.4-dev.1489893376",
4
4
  "description": "Golemio Waze CCP Module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",