@zenuml/core 3.41.6 → 3.43.0
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 +0 -27
- package/dist/zenuml.esm.mjs +18 -10
- package/dist/zenuml.js +3 -3
- package/package.json +1 -1
- package/vite.config.lib.ts +10 -0
- package/vite.config.ts +4 -2
package/README.md
CHANGED
|
@@ -9,33 +9,6 @@ help documentation catch up with development.
|
|
|
9
9
|
ZenUML allows even non-programmers to easily create beautiful sequence diagrams through
|
|
10
10
|
the [ZenUML Live Editor](https://app.zenuml.com).
|
|
11
11
|
|
|
12
|
-
```mermaid
|
|
13
|
-
|
|
14
|
-
zenuml
|
|
15
|
-
title Order Service
|
|
16
|
-
@Actor Client #FFEBE6
|
|
17
|
-
@Boundary OrderController #0747A6
|
|
18
|
-
@EC2 <<BFF>> OrderService #E3FCEF
|
|
19
|
-
group BusinessService {
|
|
20
|
-
@Lambda PurchaseService
|
|
21
|
-
@AzureFunction InvoiceService
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// `POST /orders`
|
|
25
|
-
OrderController.post(payload) {
|
|
26
|
-
OrderService.create(payload) {
|
|
27
|
-
order = new Order(payload1)
|
|
28
|
-
if(order != null) {
|
|
29
|
-
par {
|
|
30
|
-
PurchaseService.createPO(order)
|
|
31
|
-
InvoiceService.createInvoice(order)
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
```
|
|
38
|
-
|
|
39
12
|
You can use it ZenUML on your favorite platforms and applications:
|
|
40
13
|
|
|
41
14
|
- [Confluence](https://marketplace.atlassian.com/apps/1218380/zenuml-diagrams-for-confluence-freemium?hosting=cloud&tab=overview)
|