diff --git a/package.json b/package.json
index 3d450d4..63af2e5 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "api-explorer",
- "version": "1.0.9",
+ "version": "1.0.10",
"private": true,
"scripts": {
"dev": "vite & ts-node server/app.ts",
diff --git a/src/views/MessageDocsView.vue b/src/views/MessageDocsView.vue
index 45dac03..c886a80 100644
--- a/src/views/MessageDocsView.vue
+++ b/src/views/MessageDocsView.vue
@@ -42,46 +42,38 @@ const setDoc = () => {
+
{{value.process}}
- {{ value.description }}
+ {{ value.description }}
-
-
-
- Topic
-
-
+
+
{{ value.outbound_topic }}
-
+
{{ value.inbound_topic }}
-
- Message
-
-
+
{{ JSON.stringify(value.example_outbound_message, null, 4) }}
-
+
{{ JSON.stringify(value.example_inbound_message, null, 4) }}
-
- Required Fields
+
+ {{ JSON.stringify(value.requiredFieldInfo, null, 4) }}
-
-
-
- Dependent Endpoints
-
-
+
-
{{ endpoint.version }}: {{ endpoint.name }}
-
+ {{value.process}}
+
+
+
@@ -96,28 +88,35 @@ const setDoc = () => {
.main {
max-height: 90vh;
}
+
template {
overflow: auto;
max-height: 900px;
}
+
main {
margin: 25px;
color: #39455f;
font-family: 'Roboto';
}
+
span {
font-size: 28px;
}
+
div {
font-size: 14px;
}
+
.content :deep(strong) {
font-family: 'Roboto';
}
+
a {
text-decoration: none;
color: #39455f;
}
+
.content :deep(a) {
text-decoration: none;
color: #ffffff;
@@ -127,6 +126,7 @@ a {
background-color: #52b165;
padding: 1px;
}
+
.content :deep(a):hover {
background-color: #39455f;
}