@simitgroup/simpleapp-generator 1.0.32 → 1.0.35
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/.vscode/settings.json +3 -0
- package/README.md +185 -16
- package/buildinschemas copy/autoincreament.autoinc.jsonschema.json +39 -0
- package/buildinschemas copy/branch.branch.jsonschema.json +41 -0
- package/buildinschemas copy/docnoformat.docno.jsonschema.json +41 -0
- package/buildinschemas copy/organization.org.jsonschema.json +50 -0
- package/buildinschemas copy/permission.perm.jsonschema.json +23 -0
- package/buildinschemas copy/permission.perm.jsonschema.try.json +25 -0
- package/buildinschemas copy/tenant.tenant.jsonschema.json +21 -0
- package/buildinschemas copy/tenant.tenant.jsonschema.try.json +27 -0
- package/buildinschemas copy/user.user.jsonschema.json +31 -0
- package/dist/buildinschemas/autoincreament.d.ts +3 -0
- package/dist/buildinschemas/autoincreament.d.ts.map +1 -0
- package/dist/buildinschemas/autoincreament.js +36 -0
- package/dist/buildinschemas/autoincreament.js.map +1 -0
- package/dist/buildinschemas/branch.d.ts +3 -0
- package/dist/buildinschemas/branch.d.ts.map +1 -0
- package/dist/buildinschemas/branch.js +41 -0
- package/dist/buildinschemas/branch.js.map +1 -0
- package/dist/buildinschemas/docnoformat.d.ts +3 -0
- package/dist/buildinschemas/docnoformat.d.ts.map +1 -0
- package/dist/buildinschemas/docnoformat.js +60 -0
- package/dist/buildinschemas/docnoformat.js.map +1 -0
- package/dist/buildinschemas/index.d.ts +8 -0
- package/dist/buildinschemas/index.d.ts.map +1 -0
- package/dist/buildinschemas/index.js +18 -0
- package/dist/buildinschemas/index.js.map +1 -0
- package/dist/buildinschemas/organization.d.ts +3 -0
- package/dist/buildinschemas/organization.d.ts.map +1 -0
- package/dist/buildinschemas/organization.js +34 -0
- package/dist/buildinschemas/organization.js.map +1 -0
- package/dist/buildinschemas/permission.d.ts +3 -0
- package/dist/buildinschemas/permission.d.ts.map +1 -0
- package/dist/buildinschemas/permission.js +34 -0
- package/dist/buildinschemas/permission.js.map +1 -0
- package/dist/buildinschemas/tenant.d.ts +3 -0
- package/dist/buildinschemas/tenant.d.ts.map +1 -0
- package/dist/buildinschemas/tenant.js +41 -0
- package/dist/buildinschemas/tenant.js.map +1 -0
- package/dist/buildinschemas/user.d.ts +3 -0
- package/dist/buildinschemas/user.d.ts.map +1 -0
- package/dist/buildinschemas/user.js +31 -0
- package/dist/buildinschemas/user.js.map +1 -0
- package/dist/constant.d.ts +4 -0
- package/dist/constant.d.ts.map +1 -0
- package/dist/constant.js +2 -1
- package/dist/constant.js.map +1 -1
- package/dist/framework.d.ts +10 -0
- package/dist/framework.d.ts.map +1 -0
- package/dist/framework.js +120 -68
- package/dist/framework.js.map +1 -1
- package/dist/generate-allow-changebackend.js +305 -0
- package/dist/generate-allow-changebackend.js.map +1 -0
- package/dist/generate.d.ts +2 -0
- package/dist/generate.d.ts.map +1 -0
- package/dist/generate.js +310 -230
- package/dist/generate.js.map +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +84 -20
- package/dist/index.js.map +1 -1
- package/dist/libs.d.ts +2 -0
- package/dist/libs.d.ts.map +1 -0
- package/dist/processors/groupsbuilder.js +2 -0
- package/dist/processors/groupsbuilder.js.map +1 -0
- package/dist/processors/jsonschemabuilder.d.ts +4 -0
- package/dist/processors/jsonschemabuilder.d.ts.map +1 -0
- package/dist/processors/jsonschemabuilder.js +146 -172
- package/dist/processors/jsonschemabuilder.js.map +1 -1
- package/dist/schematype/baseschema.js +25 -0
- package/dist/schematype/baseschema.js.map +1 -0
- package/dist/schematype/default.js +2 -0
- package/dist/schematype/default.js.map +1 -0
- package/dist/schematype/index.js +12 -0
- package/dist/schematype/index.js.map +1 -0
- package/dist/schematype/primarymasterdata.js +38 -0
- package/dist/schematype/primarymasterdata.js.map +1 -0
- package/dist/schematype/simple.js +24 -0
- package/dist/schematype/simple.js.map +1 -0
- package/dist/schematype/simplemasterdata.js +31 -0
- package/dist/schematype/simplemasterdata.js.map +1 -0
- package/dist/schematype/transaction.js +74 -0
- package/dist/schematype/transaction.js.map +1 -0
- package/dist/storage.d.ts +3 -0
- package/dist/storage.d.ts.map +1 -0
- package/dist/storage.js +2 -2
- package/dist/storage.js.map +1 -1
- package/dist/type.d.ts +164 -0
- package/dist/type.d.ts.map +1 -0
- package/dist/type.js +16 -1
- package/dist/type.js.map +1 -1
- package/dist/validation.d.ts +1 -0
- package/dist/validation.d.ts.map +1 -0
- package/documentation/designconcept.bpmn +349 -0
- package/documentation/documentation.png +0 -0
- package/documentation/infra.drawio +141 -0
- package/documentation/infra.png +0 -0
- package/documentation/management.drawio +57 -0
- package/documentation/stack.drawio +106 -0
- package/package.json +3 -1
- package/src/buildinschemas/autoincreament.ts +34 -0
- package/src/buildinschemas/branch.ts +39 -0
- package/src/buildinschemas/docnoformat.ts +58 -0
- package/src/buildinschemas/index.ts +7 -0
- package/src/buildinschemas/organization.ts +31 -0
- package/src/buildinschemas/permission.ts +31 -0
- package/src/buildinschemas/tenant.ts +38 -0
- package/src/buildinschemas/user.ts +28 -0
- package/src/constant.ts +2 -1
- package/src/framework.ts +126 -67
- package/src/generate.ts +327 -266
- package/src/generate.ts.backup +339 -0
- package/src/index.ts +93 -18
- package/src/processors/jsonschemabuilder.ts +199 -226
- package/src/processors/jsonschemabuilder.ts-old +383 -0
- package/src/storage.ts +1 -1
- package/src/type.ts +94 -27
- package/templates/basic/nest/controller.ts.eta +255 -0
- package/templates/basic/nest/default.ts.eta +42 -0
- package/templates/basic/{model.eta → nest/model.ts.eta} +18 -5
- package/templates/basic/nest/processor.ts.eta +129 -0
- package/templates/basic/nest/service.ts.eta +64 -0
- package/templates/basic/{type.eta → nest/type.ts.eta} +3 -3
- package/templates/basic/nuxt/default.ts.eta +42 -0
- package/templates/basic/{pageindex.vue.eta → nuxt/pages.crud.vue.eta} +85 -22
- package/templates/basic/nuxt/simpleapp.doc.ts.eta +11 -0
- package/templates/basic/nuxt/simpleapp.generate.client.ts.eta +212 -0
- package/templates/nest/.env.eta +31 -0
- package/templates/nest/.gitignore.eta +40 -0
- package/templates/nest/src/app.controller.ts.eta +19 -0
- package/templates/nest/src/app.module.ts.eta +77 -0
- package/templates/nest/src/app.service.ts.eta +9 -0
- package/templates/nest/src/main.ts.eta +58 -0
- package/templates/nest/src/simpleapp/generate/apischemas/index.ts.eta +16 -0
- package/templates/nest/src/simpleapp/generate/commons/decorators/appuser.decorator.ts.eta +8 -0
- package/templates/nest/src/simpleapp/generate/commons/dicts/foreignkeys.ts.eta +1 -0
- package/templates/nest/src/simpleapp/generate/commons/docnogenerator.service.ts.eta +101 -0
- package/templates/nest/src/simpleapp/generate/commons/exceptions/SimpleAppExceptionFilter.ts.eta +39 -0
- package/templates/nest/src/simpleapp/generate/commons/interceptors/response.interceptor.ts.eta +38 -0
- package/templates/nest/src/simpleapp/generate/commons/middlewares/tenant.middleware.ts.eta +88 -0
- package/templates/nest/{Workflow.eta → src/simpleapp/generate/commons/providers/workflow.provider.ts.etax} +20 -14
- package/templates/nest/src/simpleapp/generate/commons/roles/roles.decorator.ts.eta +6 -0
- package/templates/nest/src/simpleapp/generate/commons/roles/roles.enum.ts.eta +28 -0
- package/templates/nest/src/simpleapp/generate/commons/roles/roles.group.ts.eta +10 -0
- package/templates/nest/src/simpleapp/generate/commons/roles/roles.guard.ts.eta +34 -0
- package/templates/nest/src/simpleapp/generate/commons/user.context.ts.eta +391 -0
- package/templates/nest/src/simpleapp/generate/controllers/simpleapp.controller.ts.eta +71 -0
- package/templates/nest/src/simpleapp/generate/models/perm.model.ts.eta +53 -0
- package/templates/nest/src/simpleapp/generate/models/tenant.model.ts.eta +45 -0
- package/templates/nest/src/simpleapp/generate/models/user.model.ts.eta +57 -0
- package/templates/nest/src/simpleapp/generate/processors/simpleapp.processor.ts.eta +624 -0
- package/templates/nest/src/simpleapp/generate/types/index.ts.eta +19 -0
- package/templates/nest/src/simpleapp/profile/profile.apischema.ts.eta +74 -0
- package/templates/nest/src/simpleapp/profile/profile.controller.ts.eta +110 -0
- package/templates/nest/src/simpleapp/profile/profile.service.ts.eta +195 -0
- package/templates/nest/src/simpleapp/profile/profile.types.ts.eta +18 -0
- package/templates/nest/src/simpleapp/services/autoinc.service.ts.eta +89 -0
- package/templates/nest/src/simpleapp/services/branch.service.ts.eta +66 -0
- package/templates/nest/src/simpleapp/services/docno.service.ts.eta +93 -0
- package/templates/nest/src/simpleapp/services/org.service.ts.eta +67 -0
- package/templates/nest/src/simpleapp/services/perm.service.ts.eta +102 -0
- package/templates/nest/src/simpleapp/services/tenant.service.ts.eta +69 -0
- package/templates/nest/src/simpleapp/services/user.service.ts.eta +66 -0
- package/templates/nest/src/simpleapp/simpleapp.module.ts.eta +43 -0
- package/templates/nuxt/.env.eta +21 -0
- package/templates/nuxt/.gitignore.eta +28 -0
- package/templates/nuxt/app.vue.eta +5 -2
- package/templates/nuxt/assets/css/tailwind.css.eta +35 -0
- package/templates/nuxt/components/CrudNestedDoc.vue.eta +164 -0
- package/templates/nuxt/components/CrudSimple.vue.eta +179 -0
- package/templates/nuxt/{components.debugdocdata.vue.eta → components/DebugDocumentData.vue.eta} +4 -1
- package/templates/nuxt/{components.eventmonitor.vue.eta → components/EventMonitor.vue.eta} +27 -27
- package/templates/nuxt/components/Invitation.vue.eta +50 -0
- package/templates/nuxt/components/Menus.vue.eta +58 -0
- package/templates/nuxt/components/PermissionInfo.vue.eta +92 -0
- package/templates/nuxt/components/SimpleAppAutocomplete.vue.eta +131 -0
- package/templates/nuxt/components/SimpleAppAutocompletemulti.vue.eta +73 -0
- package/templates/nuxt/components/SimpleAppCalendar.vue.eta +55 -0
- package/templates/nuxt/components/SimpleAppCheckbox.vue.eta +29 -0
- package/templates/nuxt/components/SimpleAppChip.vue.eta +28 -0
- package/templates/nuxt/components/SimpleAppColor.vue.eta +41 -0
- package/templates/nuxt/components/SimpleAppDatatable.vue.eta +20 -0
- package/templates/nuxt/components/SimpleAppDocumentNo.vue.eta +90 -0
- package/templates/nuxt/components/SimpleAppDynamicInput.vue.eta +29 -0
- package/templates/nuxt/components/SimpleAppEditor.vue.eta +31 -0
- package/templates/nuxt/components/SimpleAppForm.vue.eta +131 -0
- package/templates/nuxt/components/SimpleAppInputTable.vue.eta +104 -0
- package/templates/nuxt/components/SimpleAppList.vue.eta +38 -0
- package/templates/nuxt/components/SimpleAppListmulti.vue.eta +41 -0
- package/templates/nuxt/components/SimpleAppNumber.vue.eta +32 -0
- package/templates/nuxt/components/SimpleAppPassword.vue.eta +41 -0
- package/templates/nuxt/components/SimpleAppRadio.vue.eta +42 -0
- package/templates/nuxt/components/SimpleAppRating.vue.eta +41 -0
- package/templates/nuxt/components/SimpleAppSelect.vue.eta +38 -0
- package/templates/nuxt/components/SimpleAppSelectmulti.vue.eta +39 -0
- package/templates/nuxt/components/SimpleAppSlider.vue.eta +42 -0
- package/templates/nuxt/components/SimpleAppSwitch.vue.eta +30 -0
- package/templates/nuxt/components/SimpleAppText.vue.eta +50 -0
- package/templates/nuxt/components/SimpleAppTextarea.vue.eta +30 -0
- package/templates/nuxt/components/SimpleAppValue.vue.eta +86 -0
- package/templates/nuxt/components/SimpleFieldContainer.vue.eta +102 -0
- package/templates/nuxt/components/XorgPicker.vue.eta +66 -0
- package/templates/nuxt/components/helper.ts.eta +90 -0
- package/templates/nuxt/components/type.ts.eta +32 -0
- package/templates/nuxt/composables/docformat.generate.ts.eta +5 -0
- package/templates/nuxt/{composables.getautocomplete.ts.eta → composables/getAutocomplete.generate.ts.eta} +4 -5
- package/templates/nuxt/{composables.getmenus.ts.eta → composables/getMenus.generate.ts.eta} +22 -7
- package/templates/nuxt/composables/getOpenApi.generate.ts.eta +6 -0
- package/templates/nuxt/composables/getTenant.generate.ts.eta +4 -0
- package/templates/nuxt/composables/getUserStore.generate.ts.eta +22 -0
- package/templates/nuxt/composables/logout.generate.ts.eta +22 -0
- package/templates/nuxt/composables/roles.generate.ts.eta +48 -0
- package/templates/nuxt/composables/stringHelper.generate.ts.eta +5 -0
- package/templates/nuxt/{layouts.default.vue.eta → layouts/default.vue.eta} +2 -0
- package/templates/nuxt/middleware/10.acl.global.ts.eta +38 -0
- package/templates/nuxt/nuxt.config.ts.eta +12 -2
- package/templates/nuxt/pages/[xorg]/branch/index.vue.eta +102 -0
- package/templates/nuxt/pages/[xorg]/docnoformat/[id].vue.eta +17 -0
- package/templates/nuxt/pages/[xorg]/docnoformat/index.vue.eta +269 -0
- package/templates/nuxt/pages/[xorg]/index.vue.eta +36 -0
- package/templates/nuxt/pages/[xorg]/organization/index.vue.eta +148 -0
- package/templates/nuxt/pages/[xorg]/permission/index.vue.eta +280 -0
- package/templates/nuxt/pages/[xorg]/tenant/index.vue.eta +93 -0
- package/templates/nuxt/pages/[xorg]/user/index.vue.eta +468 -0
- package/templates/nuxt/pages/index.vue.eta +191 -0
- package/templates/nuxt/pages/login.vue.eta +21 -0
- package/templates/nuxt/plugins/10.simpleapp-event.ts.eta +53 -0
- package/templates/nuxt/plugins/20.simpleapp-userstore.ts.eta +155 -0
- package/templates/nuxt/plugins/50.simpleapp-client.ts.eta +23 -0
- package/templates/nuxt/{server.api.ts.eta → server/api/[xorg]/[...].ts.eta} +5 -2
- package/templates/nuxt/server/api/auth/[...].ts.eta +68 -0
- package/templates/nuxt/{server.api.auth.logout.ts.eta → server/api/auth/logout.ts.eta} +1 -3
- package/templates/nuxt/server/api/profile/[...].ts.eta +150 -0
- package/templates/nuxt/server/api/profile/index.ts.eta +103 -0
- package/templates/nuxt/simpleapp/generate/clients/SimpleAppClient.ts.eta +187 -0
- package/templates/nuxt/simpleapp/generate/commons/documents.ts.eta +6 -0
- package/templates/nuxt/simpleapp/generate/commons/events.ts.eta +5 -0
- package/templates/nuxt/simpleapp/generate/commons/groups.ts.eta +11 -0
- package/templates/nuxt/simpleapp/generate/commons/roles.ts.eta +21 -0
- package/templates/nuxt/types/index.ts.eta +65 -0
- package/templates/project/README.md +11 -0
- package/templates/project/build.sh.eta +17 -0
- package/templates/project/config.json.eta +2 -0
- package/templates/project/generate.ts.eta +10 -0
- package/templates/project/schemas/category.ts.eta +26 -0
- package/templates/project/schemas/index.ts.eta +5 -0
- package/templates/project/schemas/product.ts.eta +59 -0
- package/templates/project/shares/hello.ts.eta +1 -0
- package/templates/project/shares/index.ts.eta +2 -0
- package/tsconfig.json +9 -2
- package/tsconfig.tsbuildinfo +1 -0
- package/definations/category.cat.jsonschema.json +0 -55
- package/definations/level.lvl.jsonschema.json +0 -48
- package/definations/product.prd.jsonschema.json +0 -46
- package/templates/basic/controller.eta +0 -152
- package/templates/basic/module.eta +0 -22
- package/templates/basic/service.eta +0 -62
- package/templates/basic/simpleappclient.eta +0 -120
- package/templates/nest/SimpleAppController.eta +0 -69
- package/templates/nest/SimpleAppService.eta +0 -366
- package/templates/nest/TenantMiddleware.eta +0 -34
- package/templates/nest/UserProvider.eta +0 -127
- package/templates/nest/app.controller.eta +0 -12
- package/templates/nest/app.module.eta +0 -64
- package/templates/nest/app.service.eta +0 -8
- package/templates/nest/inputvalidation-exception.eta +0 -6
- package/templates/nest/nest.env.eta +0 -28
- package/templates/nest/nest.main.eta +0 -31
- package/templates/nuxt/components.crudsimple.vue.eta +0 -124
- package/templates/nuxt/components.menus.vue.eta +0 -35
- package/templates/nuxt/env.eta +0 -17
- package/templates/nuxt/pages.[xorg].index.vue.eta +0 -20
- package/templates/nuxt/pages.index.vue.eta +0 -72
- package/templates/nuxt/pages.login.vue.eta +0 -20
- package/templates/nuxt/plugins.simpleapp.ts.eta +0 -88
- package/templates/nuxt/server.api.auth[...].ts.eta +0 -233
- package/templates/nuxt/tailwind.css.eta +0 -49
- /package/templates/basic/{apischema.eta → nest/apischema.ts.eta} +0 -0
- /package/templates/basic/{jsonschema.eta → nest/jsonschema.ts.eta} +0 -0
- /package/templates/basic/{pageindexwithid.vue.eta → nuxt/pages.[id].vue.eta} +0 -0
- /package/templates/nest/{oauth2-redirect.eta → public_html/oauth2-redirect.html.eta} +0 -0
|
@@ -0,0 +1,349 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<bpmn:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
+
xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL"
|
|
4
|
+
xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI"
|
|
5
|
+
xmlns:dc="http://www.omg.org/spec/DD/20100524/DC"
|
|
6
|
+
xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="Definitions_1"
|
|
7
|
+
targetNamespace="http://bpmn.io/schema/bpmn">
|
|
8
|
+
<bpmn:collaboration id="Collaboration_0ntju69">
|
|
9
|
+
<bpmn:participant id="Participant_1fh9qug" name="phase 1 (MV)" processRef="Process_1" />
|
|
10
|
+
<bpmn:participant id="Participant_0h2r38x" name="phase 2" processRef="Process_10nqw0k" />
|
|
11
|
+
<bpmn:participant id="Participant_008lo8d" name="QC" processRef="Process_122hj64" />
|
|
12
|
+
<bpmn:messageFlow id="Flow_0ngqjnb" sourceRef="Activity_0rw3d69"
|
|
13
|
+
targetRef="Activity_1srorbb" />
|
|
14
|
+
<bpmn:messageFlow id="Flow_1tx6iug" sourceRef="Activity_0f0f1d9"
|
|
15
|
+
targetRef="Activity_1eozoao" />
|
|
16
|
+
</bpmn:collaboration>
|
|
17
|
+
<bpmn:process id="Process_1" name="mvp stage" isExecutable="true">
|
|
18
|
+
<bpmn:startEvent id="StartEvent_1" name="initiate repo">
|
|
19
|
+
<bpmn:outgoing>Flow_1t7a9t2</bpmn:outgoing>
|
|
20
|
+
</bpmn:startEvent>
|
|
21
|
+
<bpmn:exclusiveGateway id="Gateway_13vlev9">
|
|
22
|
+
<bpmn:incoming>Flow_14zp4h4</bpmn:incoming>
|
|
23
|
+
<bpmn:incoming>Flow_06zht5s</bpmn:incoming>
|
|
24
|
+
<bpmn:incoming>Flow_14go5sc</bpmn:incoming>
|
|
25
|
+
<bpmn:outgoing>Flow_14dap6j</bpmn:outgoing>
|
|
26
|
+
</bpmn:exclusiveGateway>
|
|
27
|
+
<bpmn:task id="Activity_07dydru" name="generate project">
|
|
28
|
+
<bpmn:incoming>Flow_14dap6j</bpmn:incoming>
|
|
29
|
+
<bpmn:outgoing>Flow_0qwpdmq</bpmn:outgoing>
|
|
30
|
+
</bpmn:task>
|
|
31
|
+
<bpmn:task id="Activity_0rw3d69" name="evaluate and fine tune jsonschema/bpmn">
|
|
32
|
+
<bpmn:incoming>Flow_0qwpdmq</bpmn:incoming>
|
|
33
|
+
</bpmn:task>
|
|
34
|
+
<bpmn:sequenceFlow id="Flow_1t7a9t2" sourceRef="StartEvent_1" targetRef="Activity_0225r74" />
|
|
35
|
+
<bpmn:sequenceFlow id="Flow_1vns1k0" sourceRef="Activity_0225r74"
|
|
36
|
+
targetRef="Activity_1bbu45f" />
|
|
37
|
+
<bpmn:sequenceFlow id="Flow_0726o6w" sourceRef="Gateway_12lnioq"
|
|
38
|
+
targetRef="Activity_1766v41" />
|
|
39
|
+
<bpmn:sequenceFlow id="Flow_1gcbdjo" sourceRef="Activity_1bbu45f"
|
|
40
|
+
targetRef="Gateway_12lnioq" />
|
|
41
|
+
<bpmn:sequenceFlow id="Flow_14zp4h4" sourceRef="Activity_1uzlgrj"
|
|
42
|
+
targetRef="Gateway_13vlev9" />
|
|
43
|
+
<bpmn:sequenceFlow id="Flow_06zht5s" sourceRef="Activity_1766v41"
|
|
44
|
+
targetRef="Gateway_13vlev9" />
|
|
45
|
+
<bpmn:sequenceFlow id="Flow_14dap6j" sourceRef="Gateway_13vlev9"
|
|
46
|
+
targetRef="Activity_07dydru" />
|
|
47
|
+
<bpmn:sequenceFlow id="Flow_0qwpdmq" sourceRef="Activity_07dydru"
|
|
48
|
+
targetRef="Activity_0rw3d69" />
|
|
49
|
+
<bpmn:task id="Activity_0225r74" name="create readme">
|
|
50
|
+
<bpmn:incoming>Flow_1t7a9t2</bpmn:incoming>
|
|
51
|
+
<bpmn:outgoing>Flow_1vns1k0</bpmn:outgoing>
|
|
52
|
+
</bpmn:task>
|
|
53
|
+
<bpmn:task id="Activity_1bbu45f" name="create specifications">
|
|
54
|
+
<bpmn:incoming>Flow_1vns1k0</bpmn:incoming>
|
|
55
|
+
<bpmn:outgoing>Flow_1gcbdjo</bpmn:outgoing>
|
|
56
|
+
</bpmn:task>
|
|
57
|
+
<bpmn:sequenceFlow id="Flow_0x2lvwu" sourceRef="Gateway_12lnioq"
|
|
58
|
+
targetRef="Activity_1uzlgrj" />
|
|
59
|
+
<bpmn:exclusiveGateway id="Gateway_12lnioq" name="draft">
|
|
60
|
+
<bpmn:incoming>Flow_1gcbdjo</bpmn:incoming>
|
|
61
|
+
<bpmn:outgoing>Flow_0x2lvwu</bpmn:outgoing>
|
|
62
|
+
<bpmn:outgoing>Flow_0726o6w</bpmn:outgoing>
|
|
63
|
+
<bpmn:outgoing>Flow_1qv24ml</bpmn:outgoing>
|
|
64
|
+
</bpmn:exclusiveGateway>
|
|
65
|
+
<bpmn:sequenceFlow id="Flow_1qv24ml" sourceRef="Gateway_12lnioq"
|
|
66
|
+
targetRef="Activity_1adwk4p" />
|
|
67
|
+
<bpmn:task id="Activity_1adwk4p" name="wireframe (optional)">
|
|
68
|
+
<bpmn:incoming>Flow_1qv24ml</bpmn:incoming>
|
|
69
|
+
<bpmn:outgoing>Flow_14go5sc</bpmn:outgoing>
|
|
70
|
+
</bpmn:task>
|
|
71
|
+
<bpmn:task id="Activity_1uzlgrj" name="design bpmn">
|
|
72
|
+
<bpmn:incoming>Flow_0x2lvwu</bpmn:incoming>
|
|
73
|
+
<bpmn:outgoing>Flow_14zp4h4</bpmn:outgoing>
|
|
74
|
+
</bpmn:task>
|
|
75
|
+
<bpmn:sequenceFlow id="Flow_14go5sc" sourceRef="Activity_1adwk4p"
|
|
76
|
+
targetRef="Gateway_13vlev9" />
|
|
77
|
+
<bpmn:task id="Activity_1766v41" name="design jsonschema">
|
|
78
|
+
<bpmn:incoming>Flow_0726o6w</bpmn:incoming>
|
|
79
|
+
<bpmn:outgoing>Flow_06zht5s</bpmn:outgoing>
|
|
80
|
+
</bpmn:task>
|
|
81
|
+
</bpmn:process>
|
|
82
|
+
<bpmn:process id="Process_10nqw0k">
|
|
83
|
+
<bpmn:task id="Activity_1srorbb" name="detail job planing">
|
|
84
|
+
<bpmn:outgoing>Flow_16saotm</bpmn:outgoing>
|
|
85
|
+
</bpmn:task>
|
|
86
|
+
<bpmn:sequenceFlow id="Flow_16saotm" sourceRef="Activity_1srorbb"
|
|
87
|
+
targetRef="Gateway_09pd0m0" />
|
|
88
|
+
<bpmn:exclusiveGateway id="Gateway_09pd0m0" name="break job">
|
|
89
|
+
<bpmn:incoming>Flow_16saotm</bpmn:incoming>
|
|
90
|
+
<bpmn:outgoing>Flow_1lvwq70</bpmn:outgoing>
|
|
91
|
+
<bpmn:outgoing>Flow_1x2o31h</bpmn:outgoing>
|
|
92
|
+
<bpmn:outgoing>Flow_0rpi8xt</bpmn:outgoing>
|
|
93
|
+
</bpmn:exclusiveGateway>
|
|
94
|
+
<bpmn:task id="Activity_0rtybnc" name="backend codes">
|
|
95
|
+
<bpmn:incoming>Flow_1lvwq70</bpmn:incoming>
|
|
96
|
+
<bpmn:outgoing>Flow_05j0hss</bpmn:outgoing>
|
|
97
|
+
</bpmn:task>
|
|
98
|
+
<bpmn:sequenceFlow id="Flow_1lvwq70" sourceRef="Gateway_09pd0m0"
|
|
99
|
+
targetRef="Activity_0rtybnc" />
|
|
100
|
+
<bpmn:task id="Activity_1b6po0u" name="frontend codes">
|
|
101
|
+
<bpmn:incoming>Flow_1x2o31h</bpmn:incoming>
|
|
102
|
+
<bpmn:outgoing>Flow_1oo7et7</bpmn:outgoing>
|
|
103
|
+
</bpmn:task>
|
|
104
|
+
<bpmn:sequenceFlow id="Flow_1x2o31h" sourceRef="Gateway_09pd0m0"
|
|
105
|
+
targetRef="Activity_1b6po0u" />
|
|
106
|
+
<bpmn:task id="Activity_16x6yga" name="workflow codes">
|
|
107
|
+
<bpmn:incoming>Flow_0rpi8xt</bpmn:incoming>
|
|
108
|
+
<bpmn:outgoing>Flow_0tim9hw</bpmn:outgoing>
|
|
109
|
+
</bpmn:task>
|
|
110
|
+
<bpmn:sequenceFlow id="Flow_0rpi8xt" sourceRef="Gateway_09pd0m0"
|
|
111
|
+
targetRef="Activity_16x6yga" />
|
|
112
|
+
<bpmn:exclusiveGateway id="Gateway_1iggybt">
|
|
113
|
+
<bpmn:incoming>Flow_05j0hss</bpmn:incoming>
|
|
114
|
+
<bpmn:incoming>Flow_1oo7et7</bpmn:incoming>
|
|
115
|
+
<bpmn:incoming>Flow_0tim9hw</bpmn:incoming>
|
|
116
|
+
<bpmn:outgoing>Flow_1mby6bm</bpmn:outgoing>
|
|
117
|
+
</bpmn:exclusiveGateway>
|
|
118
|
+
<bpmn:sequenceFlow id="Flow_05j0hss" sourceRef="Activity_0rtybnc"
|
|
119
|
+
targetRef="Gateway_1iggybt" />
|
|
120
|
+
<bpmn:sequenceFlow id="Flow_1oo7et7" sourceRef="Activity_1b6po0u"
|
|
121
|
+
targetRef="Gateway_1iggybt" />
|
|
122
|
+
<bpmn:sequenceFlow id="Flow_0tim9hw" sourceRef="Activity_16x6yga"
|
|
123
|
+
targetRef="Gateway_1iggybt" />
|
|
124
|
+
<bpmn:task id="Activity_1pojsxf" name="test">
|
|
125
|
+
<bpmn:incoming>Flow_1mby6bm</bpmn:incoming>
|
|
126
|
+
<bpmn:outgoing>Flow_1ion54u</bpmn:outgoing>
|
|
127
|
+
</bpmn:task>
|
|
128
|
+
<bpmn:sequenceFlow id="Flow_1mby6bm" sourceRef="Gateway_1iggybt"
|
|
129
|
+
targetRef="Activity_1pojsxf" />
|
|
130
|
+
<bpmn:task id="Activity_0f0f1d9" name="deploy to test">
|
|
131
|
+
<bpmn:incoming>Flow_1ion54u</bpmn:incoming>
|
|
132
|
+
</bpmn:task>
|
|
133
|
+
<bpmn:sequenceFlow id="Flow_1ion54u" sourceRef="Activity_1pojsxf"
|
|
134
|
+
targetRef="Activity_0f0f1d9" />
|
|
135
|
+
</bpmn:process>
|
|
136
|
+
<bpmn:process id="Process_122hj64">
|
|
137
|
+
<bpmn:task id="Activity_1eozoao" name="Analyse BPMN">
|
|
138
|
+
<bpmn:outgoing>Flow_04muupj</bpmn:outgoing>
|
|
139
|
+
</bpmn:task>
|
|
140
|
+
<bpmn:task id="Activity_058cy9w" name="Test">
|
|
141
|
+
<bpmn:incoming>Flow_04muupj</bpmn:incoming>
|
|
142
|
+
<bpmn:outgoing>Flow_1sp3ifd</bpmn:outgoing>
|
|
143
|
+
</bpmn:task>
|
|
144
|
+
<bpmn:sequenceFlow id="Flow_04muupj" sourceRef="Activity_1eozoao"
|
|
145
|
+
targetRef="Activity_058cy9w" />
|
|
146
|
+
<bpmn:endEvent id="Event_1gf80sy">
|
|
147
|
+
<bpmn:incoming>Flow_1sp3ifd</bpmn:incoming>
|
|
148
|
+
</bpmn:endEvent>
|
|
149
|
+
<bpmn:sequenceFlow id="Flow_1sp3ifd" sourceRef="Activity_058cy9w" targetRef="Event_1gf80sy" />
|
|
150
|
+
</bpmn:process>
|
|
151
|
+
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
|
|
152
|
+
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Collaboration_0ntju69">
|
|
153
|
+
<bpmndi:BPMNShape id="Participant_1fh9qug_di" bpmnElement="Participant_1fh9qug"
|
|
154
|
+
isHorizontal="true">
|
|
155
|
+
<dc:Bounds x="122" y="40" width="2036" height="290" />
|
|
156
|
+
</bpmndi:BPMNShape>
|
|
157
|
+
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
|
|
158
|
+
<dc:Bounds x="173" y="162" width="36" height="36" />
|
|
159
|
+
<bpmndi:BPMNLabel>
|
|
160
|
+
<dc:Bounds x="163" y="205" width="57" height="14" />
|
|
161
|
+
</bpmndi:BPMNLabel>
|
|
162
|
+
</bpmndi:BPMNShape>
|
|
163
|
+
<bpmndi:BPMNShape id="Gateway_13vlev9_di" bpmnElement="Gateway_13vlev9"
|
|
164
|
+
isMarkerVisible="true">
|
|
165
|
+
<dc:Bounds x="745" y="155" width="50" height="50" />
|
|
166
|
+
</bpmndi:BPMNShape>
|
|
167
|
+
<bpmndi:BPMNShape id="Activity_07dydru_di" bpmnElement="Activity_07dydru">
|
|
168
|
+
<dc:Bounds x="860" y="140" width="100" height="80" />
|
|
169
|
+
</bpmndi:BPMNShape>
|
|
170
|
+
<bpmndi:BPMNShape id="Activity_0rw3d69_di" bpmnElement="Activity_0rw3d69">
|
|
171
|
+
<dc:Bounds x="1010" y="140" width="100" height="80" />
|
|
172
|
+
</bpmndi:BPMNShape>
|
|
173
|
+
<bpmndi:BPMNShape id="Activity_0225r74_di" bpmnElement="Activity_0225r74">
|
|
174
|
+
<dc:Bounds x="230" y="140" width="100" height="80" />
|
|
175
|
+
</bpmndi:BPMNShape>
|
|
176
|
+
<bpmndi:BPMNShape id="Activity_1bbu45f_di" bpmnElement="Activity_1bbu45f">
|
|
177
|
+
<dc:Bounds x="350" y="140" width="100" height="80" />
|
|
178
|
+
</bpmndi:BPMNShape>
|
|
179
|
+
<bpmndi:BPMNShape id="Gateway_12lnioq_di" bpmnElement="Gateway_12lnioq"
|
|
180
|
+
isMarkerVisible="true">
|
|
181
|
+
<dc:Bounds x="465" y="155" width="50" height="50" />
|
|
182
|
+
<bpmndi:BPMNLabel>
|
|
183
|
+
<dc:Bounds x="528" y="178" width="23" height="14" />
|
|
184
|
+
</bpmndi:BPMNLabel>
|
|
185
|
+
</bpmndi:BPMNShape>
|
|
186
|
+
<bpmndi:BPMNShape id="Activity_1adwk4p_di" bpmnElement="Activity_1adwk4p">
|
|
187
|
+
<dc:Bounds x="580" y="140" width="100" height="80" />
|
|
188
|
+
<bpmndi:BPMNLabel />
|
|
189
|
+
</bpmndi:BPMNShape>
|
|
190
|
+
<bpmndi:BPMNShape id="Activity_1uzlgrj_di" bpmnElement="Activity_1uzlgrj">
|
|
191
|
+
<dc:Bounds x="580" y="230" width="100" height="80" />
|
|
192
|
+
</bpmndi:BPMNShape>
|
|
193
|
+
<bpmndi:BPMNShape id="Activity_1766v41_di" bpmnElement="Activity_1766v41">
|
|
194
|
+
<dc:Bounds x="580" y="52" width="100" height="80" />
|
|
195
|
+
<bpmndi:BPMNLabel />
|
|
196
|
+
</bpmndi:BPMNShape>
|
|
197
|
+
<bpmndi:BPMNEdge id="Flow_1t7a9t2_di" bpmnElement="Flow_1t7a9t2">
|
|
198
|
+
<di:waypoint x="209" y="180" />
|
|
199
|
+
<di:waypoint x="230" y="180" />
|
|
200
|
+
</bpmndi:BPMNEdge>
|
|
201
|
+
<bpmndi:BPMNEdge id="Flow_1vns1k0_di" bpmnElement="Flow_1vns1k0">
|
|
202
|
+
<di:waypoint x="330" y="180" />
|
|
203
|
+
<di:waypoint x="350" y="180" />
|
|
204
|
+
</bpmndi:BPMNEdge>
|
|
205
|
+
<bpmndi:BPMNEdge id="Flow_0726o6w_di" bpmnElement="Flow_0726o6w">
|
|
206
|
+
<di:waypoint x="490" y="155" />
|
|
207
|
+
<di:waypoint x="490" y="92" />
|
|
208
|
+
<di:waypoint x="580" y="92" />
|
|
209
|
+
</bpmndi:BPMNEdge>
|
|
210
|
+
<bpmndi:BPMNEdge id="Flow_1gcbdjo_di" bpmnElement="Flow_1gcbdjo">
|
|
211
|
+
<di:waypoint x="450" y="180" />
|
|
212
|
+
<di:waypoint x="465" y="180" />
|
|
213
|
+
</bpmndi:BPMNEdge>
|
|
214
|
+
<bpmndi:BPMNEdge id="Flow_14zp4h4_di" bpmnElement="Flow_14zp4h4">
|
|
215
|
+
<di:waypoint x="680" y="270" />
|
|
216
|
+
<di:waypoint x="770" y="270" />
|
|
217
|
+
<di:waypoint x="770" y="205" />
|
|
218
|
+
</bpmndi:BPMNEdge>
|
|
219
|
+
<bpmndi:BPMNEdge id="Flow_06zht5s_di" bpmnElement="Flow_06zht5s">
|
|
220
|
+
<di:waypoint x="680" y="92" />
|
|
221
|
+
<di:waypoint x="770" y="92" />
|
|
222
|
+
<di:waypoint x="770" y="155" />
|
|
223
|
+
</bpmndi:BPMNEdge>
|
|
224
|
+
<bpmndi:BPMNEdge id="Flow_14dap6j_di" bpmnElement="Flow_14dap6j">
|
|
225
|
+
<di:waypoint x="795" y="180" />
|
|
226
|
+
<di:waypoint x="860" y="180" />
|
|
227
|
+
</bpmndi:BPMNEdge>
|
|
228
|
+
<bpmndi:BPMNEdge id="Flow_0qwpdmq_di" bpmnElement="Flow_0qwpdmq">
|
|
229
|
+
<di:waypoint x="960" y="180" />
|
|
230
|
+
<di:waypoint x="1010" y="180" />
|
|
231
|
+
</bpmndi:BPMNEdge>
|
|
232
|
+
<bpmndi:BPMNEdge id="Flow_0x2lvwu_di" bpmnElement="Flow_0x2lvwu">
|
|
233
|
+
<di:waypoint x="490" y="205" />
|
|
234
|
+
<di:waypoint x="490" y="270" />
|
|
235
|
+
<di:waypoint x="580" y="270" />
|
|
236
|
+
</bpmndi:BPMNEdge>
|
|
237
|
+
<bpmndi:BPMNEdge id="Flow_1qv24ml_di" bpmnElement="Flow_1qv24ml">
|
|
238
|
+
<di:waypoint x="515" y="180" />
|
|
239
|
+
<di:waypoint x="580" y="180" />
|
|
240
|
+
</bpmndi:BPMNEdge>
|
|
241
|
+
<bpmndi:BPMNEdge id="Flow_14go5sc_di" bpmnElement="Flow_14go5sc">
|
|
242
|
+
<di:waypoint x="680" y="180" />
|
|
243
|
+
<di:waypoint x="745" y="180" />
|
|
244
|
+
</bpmndi:BPMNEdge>
|
|
245
|
+
<bpmndi:BPMNShape id="Participant_0h2r38x_di" bpmnElement="Participant_0h2r38x"
|
|
246
|
+
isHorizontal="true">
|
|
247
|
+
<dc:Bounds x="122" y="330" width="2036" height="420" />
|
|
248
|
+
</bpmndi:BPMNShape>
|
|
249
|
+
<bpmndi:BPMNShape id="Activity_1srorbb_di" bpmnElement="Activity_1srorbb">
|
|
250
|
+
<dc:Bounds x="1010" y="390" width="100" height="80" />
|
|
251
|
+
</bpmndi:BPMNShape>
|
|
252
|
+
<bpmndi:BPMNShape id="Gateway_09pd0m0_di" bpmnElement="Gateway_09pd0m0"
|
|
253
|
+
isMarkerVisible="true">
|
|
254
|
+
<dc:Bounds x="1175" y="405" width="50" height="50" />
|
|
255
|
+
<bpmndi:BPMNLabel>
|
|
256
|
+
<dc:Bounds x="1177" y="375" width="46" height="14" />
|
|
257
|
+
</bpmndi:BPMNLabel>
|
|
258
|
+
</bpmndi:BPMNShape>
|
|
259
|
+
<bpmndi:BPMNShape id="Activity_0rtybnc_di" bpmnElement="Activity_0rtybnc">
|
|
260
|
+
<dc:Bounds x="1290" y="390" width="100" height="80" />
|
|
261
|
+
</bpmndi:BPMNShape>
|
|
262
|
+
<bpmndi:BPMNShape id="Activity_1b6po0u_di" bpmnElement="Activity_1b6po0u">
|
|
263
|
+
<dc:Bounds x="1290" y="500" width="100" height="80" />
|
|
264
|
+
</bpmndi:BPMNShape>
|
|
265
|
+
<bpmndi:BPMNShape id="Activity_16x6yga_di" bpmnElement="Activity_16x6yga">
|
|
266
|
+
<dc:Bounds x="1290" y="610" width="100" height="80" />
|
|
267
|
+
</bpmndi:BPMNShape>
|
|
268
|
+
<bpmndi:BPMNShape id="Gateway_1iggybt_di" bpmnElement="Gateway_1iggybt"
|
|
269
|
+
isMarkerVisible="true">
|
|
270
|
+
<dc:Bounds x="1455" y="405" width="50" height="50" />
|
|
271
|
+
</bpmndi:BPMNShape>
|
|
272
|
+
<bpmndi:BPMNShape id="Activity_1pojsxf_di" bpmnElement="Activity_1pojsxf">
|
|
273
|
+
<dc:Bounds x="1570" y="390" width="100" height="80" />
|
|
274
|
+
</bpmndi:BPMNShape>
|
|
275
|
+
<bpmndi:BPMNShape id="Activity_0f0f1d9_di" bpmnElement="Activity_0f0f1d9">
|
|
276
|
+
<dc:Bounds x="1740" y="390" width="100" height="80" />
|
|
277
|
+
</bpmndi:BPMNShape>
|
|
278
|
+
<bpmndi:BPMNEdge id="Flow_16saotm_di" bpmnElement="Flow_16saotm">
|
|
279
|
+
<di:waypoint x="1110" y="430" />
|
|
280
|
+
<di:waypoint x="1175" y="430" />
|
|
281
|
+
</bpmndi:BPMNEdge>
|
|
282
|
+
<bpmndi:BPMNEdge id="Flow_1lvwq70_di" bpmnElement="Flow_1lvwq70">
|
|
283
|
+
<di:waypoint x="1225" y="430" />
|
|
284
|
+
<di:waypoint x="1290" y="430" />
|
|
285
|
+
</bpmndi:BPMNEdge>
|
|
286
|
+
<bpmndi:BPMNEdge id="Flow_1x2o31h_di" bpmnElement="Flow_1x2o31h">
|
|
287
|
+
<di:waypoint x="1200" y="455" />
|
|
288
|
+
<di:waypoint x="1200" y="540" />
|
|
289
|
+
<di:waypoint x="1290" y="540" />
|
|
290
|
+
</bpmndi:BPMNEdge>
|
|
291
|
+
<bpmndi:BPMNEdge id="Flow_0rpi8xt_di" bpmnElement="Flow_0rpi8xt">
|
|
292
|
+
<di:waypoint x="1200" y="455" />
|
|
293
|
+
<di:waypoint x="1200" y="650" />
|
|
294
|
+
<di:waypoint x="1290" y="650" />
|
|
295
|
+
</bpmndi:BPMNEdge>
|
|
296
|
+
<bpmndi:BPMNEdge id="Flow_05j0hss_di" bpmnElement="Flow_05j0hss">
|
|
297
|
+
<di:waypoint x="1390" y="430" />
|
|
298
|
+
<di:waypoint x="1455" y="430" />
|
|
299
|
+
</bpmndi:BPMNEdge>
|
|
300
|
+
<bpmndi:BPMNEdge id="Flow_1oo7et7_di" bpmnElement="Flow_1oo7et7">
|
|
301
|
+
<di:waypoint x="1390" y="540" />
|
|
302
|
+
<di:waypoint x="1480" y="540" />
|
|
303
|
+
<di:waypoint x="1480" y="455" />
|
|
304
|
+
</bpmndi:BPMNEdge>
|
|
305
|
+
<bpmndi:BPMNEdge id="Flow_0tim9hw_di" bpmnElement="Flow_0tim9hw">
|
|
306
|
+
<di:waypoint x="1390" y="650" />
|
|
307
|
+
<di:waypoint x="1480" y="650" />
|
|
308
|
+
<di:waypoint x="1480" y="455" />
|
|
309
|
+
</bpmndi:BPMNEdge>
|
|
310
|
+
<bpmndi:BPMNEdge id="Flow_1mby6bm_di" bpmnElement="Flow_1mby6bm">
|
|
311
|
+
<di:waypoint x="1505" y="430" />
|
|
312
|
+
<di:waypoint x="1570" y="430" />
|
|
313
|
+
</bpmndi:BPMNEdge>
|
|
314
|
+
<bpmndi:BPMNEdge id="Flow_1ion54u_di" bpmnElement="Flow_1ion54u">
|
|
315
|
+
<di:waypoint x="1670" y="430" />
|
|
316
|
+
<di:waypoint x="1740" y="430" />
|
|
317
|
+
</bpmndi:BPMNEdge>
|
|
318
|
+
<bpmndi:BPMNShape id="Participant_008lo8d_di" bpmnElement="Participant_008lo8d"
|
|
319
|
+
isHorizontal="true">
|
|
320
|
+
<dc:Bounds x="122" y="750" width="2036" height="250" />
|
|
321
|
+
</bpmndi:BPMNShape>
|
|
322
|
+
<bpmndi:BPMNShape id="Activity_1eozoao_di" bpmnElement="Activity_1eozoao">
|
|
323
|
+
<dc:Bounds x="1720" y="820" width="100" height="80" />
|
|
324
|
+
</bpmndi:BPMNShape>
|
|
325
|
+
<bpmndi:BPMNShape id="Activity_058cy9w_di" bpmnElement="Activity_058cy9w">
|
|
326
|
+
<dc:Bounds x="1870" y="820" width="100" height="80" />
|
|
327
|
+
</bpmndi:BPMNShape>
|
|
328
|
+
<bpmndi:BPMNShape id="Event_1gf80sy_di" bpmnElement="Event_1gf80sy">
|
|
329
|
+
<dc:Bounds x="2022" y="842" width="36" height="36" />
|
|
330
|
+
</bpmndi:BPMNShape>
|
|
331
|
+
<bpmndi:BPMNEdge id="Flow_04muupj_di" bpmnElement="Flow_04muupj">
|
|
332
|
+
<di:waypoint x="1820" y="860" />
|
|
333
|
+
<di:waypoint x="1870" y="860" />
|
|
334
|
+
</bpmndi:BPMNEdge>
|
|
335
|
+
<bpmndi:BPMNEdge id="Flow_1sp3ifd_di" bpmnElement="Flow_1sp3ifd">
|
|
336
|
+
<di:waypoint x="1970" y="860" />
|
|
337
|
+
<di:waypoint x="2022" y="860" />
|
|
338
|
+
</bpmndi:BPMNEdge>
|
|
339
|
+
<bpmndi:BPMNEdge id="Flow_0ngqjnb_di" bpmnElement="Flow_0ngqjnb">
|
|
340
|
+
<di:waypoint x="1060" y="220" />
|
|
341
|
+
<di:waypoint x="1060" y="390" />
|
|
342
|
+
</bpmndi:BPMNEdge>
|
|
343
|
+
<bpmndi:BPMNEdge id="Flow_1tx6iug_di" bpmnElement="Flow_1tx6iug">
|
|
344
|
+
<di:waypoint x="1790" y="470" />
|
|
345
|
+
<di:waypoint x="1790" y="820" />
|
|
346
|
+
</bpmndi:BPMNEdge>
|
|
347
|
+
</bpmndi:BPMNPlane>
|
|
348
|
+
</bpmndi:BPMNDiagram>
|
|
349
|
+
</bpmn:definitions>
|
|
Binary file
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
<mxfile host="65bd71144e">
|
|
2
|
+
<diagram id="gjMTQHN510nNBZqZnKbp" name="Page-1">
|
|
3
|
+
<mxGraphModel dx="601" dy="439" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
|
4
|
+
<root>
|
|
5
|
+
<mxCell id="0"/>
|
|
6
|
+
<mxCell id="1" parent="0"/>
|
|
7
|
+
<mxCell id="5" value="" style="edgeStyle=none;html=1;" edge="1" parent="1" source="2" target="4">
|
|
8
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
9
|
+
</mxCell>
|
|
10
|
+
<mxCell id="45" value="app.simbiz.cloud/client1" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="5">
|
|
11
|
+
<mxGeometry x="-0.5346" y="-3" relative="1" as="geometry">
|
|
12
|
+
<mxPoint x="34" y="-5" as="offset"/>
|
|
13
|
+
</mxGeometry>
|
|
14
|
+
</mxCell>
|
|
15
|
+
<mxCell id="2" value="client 1" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
16
|
+
<mxGeometry x="40" y="100" width="60" height="60" as="geometry"/>
|
|
17
|
+
</mxCell>
|
|
18
|
+
<mxCell id="6" style="edgeStyle=none;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="3" target="4">
|
|
19
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
20
|
+
</mxCell>
|
|
21
|
+
<mxCell id="46" value="app.simbiz.cloud/client2" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="6">
|
|
22
|
+
<mxGeometry x="-0.0613" y="1" relative="1" as="geometry">
|
|
23
|
+
<mxPoint as="offset"/>
|
|
24
|
+
</mxGeometry>
|
|
25
|
+
</mxCell>
|
|
26
|
+
<mxCell id="3" value="client 2" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
27
|
+
<mxGeometry x="41" y="180" width="60" height="60" as="geometry"/>
|
|
28
|
+
</mxCell>
|
|
29
|
+
<mxCell id="9" value="openapi" style="edgeStyle=none;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="4" target="8">
|
|
30
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
31
|
+
</mxCell>
|
|
32
|
+
<mxCell id="4" value="nuxt" style="whiteSpace=wrap;html=1;rounded=0;" vertex="1" parent="1">
|
|
33
|
+
<mxGeometry x="260" y="140" width="70" height="60" as="geometry"/>
|
|
34
|
+
</mxCell>
|
|
35
|
+
<mxCell id="11" value="mongoose" style="edgeStyle=none;html=1;entryX=0;entryY=0.3;entryDx=0;entryDy=0;" edge="1" parent="1" source="8" target="15">
|
|
36
|
+
<mxGeometry relative="1" as="geometry">
|
|
37
|
+
<mxPoint x="590" y="219" as="targetPoint"/>
|
|
38
|
+
</mxGeometry>
|
|
39
|
+
</mxCell>
|
|
40
|
+
<mxCell id="13" value="" style="edgeStyle=none;html=1;" edge="1" parent="1" source="8" target="12">
|
|
41
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
42
|
+
</mxCell>
|
|
43
|
+
<mxCell id="8" value="nest" style="whiteSpace=wrap;html=1;rounded=0;" vertex="1" parent="1">
|
|
44
|
+
<mxGeometry x="400" y="140" width="120" height="60" as="geometry"/>
|
|
45
|
+
</mxCell>
|
|
46
|
+
<mxCell id="14" style="edgeStyle=none;html=1;" edge="1" parent="1" source="12" target="15">
|
|
47
|
+
<mxGeometry relative="1" as="geometry">
|
|
48
|
+
<mxPoint x="590" y="255" as="targetPoint"/>
|
|
49
|
+
</mxGeometry>
|
|
50
|
+
</mxCell>
|
|
51
|
+
<mxCell id="17" value="mongoose" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="14">
|
|
52
|
+
<mxGeometry x="0.1543" y="-2" relative="1" as="geometry">
|
|
53
|
+
<mxPoint as="offset"/>
|
|
54
|
+
</mxGeometry>
|
|
55
|
+
</mxCell>
|
|
56
|
+
<mxCell id="31" style="edgeStyle=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="12" target="33">
|
|
57
|
+
<mxGeometry relative="1" as="geometry">
|
|
58
|
+
<mxPoint x="440" y="380" as="targetPoint"/>
|
|
59
|
+
</mxGeometry>
|
|
60
|
+
</mxCell>
|
|
61
|
+
<mxCell id="12" value="bpmn-server" style="whiteSpace=wrap;html=1;rounded=0;" vertex="1" parent="1">
|
|
62
|
+
<mxGeometry x="400" y="280" width="120" height="60" as="geometry"/>
|
|
63
|
+
</mxCell>
|
|
64
|
+
<mxCell id="15" value="mongodb" style="shape=datastore;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
65
|
+
<mxGeometry x="610" y="180" width="60" height="80" as="geometry"/>
|
|
66
|
+
</mxCell>
|
|
67
|
+
<mxCell id="32" value="" style="childLayout=tableLayout;recursiveResize=0;shadow=0;fillColor=none;" vertex="1" parent="1">
|
|
68
|
+
<mxGeometry x="340" y="390" width="180" height="140" as="geometry"/>
|
|
69
|
+
</mxCell>
|
|
70
|
+
<mxCell id="33" value="" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;collapsible=0;recursiveResize=0;expand=0;fontStyle=0;fillColor=none;strokeColor=inherit;" vertex="1" parent="32">
|
|
71
|
+
<mxGeometry width="180" height="47" as="geometry"/>
|
|
72
|
+
</mxCell>
|
|
73
|
+
<mxCell id="34" value="mail" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="33">
|
|
74
|
+
<mxGeometry width="60" height="47" as="geometry">
|
|
75
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
76
|
+
</mxGeometry>
|
|
77
|
+
</mxCell>
|
|
78
|
+
<mxCell id="35" value="sms" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="33">
|
|
79
|
+
<mxGeometry x="60" width="60" height="47" as="geometry">
|
|
80
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
81
|
+
</mxGeometry>
|
|
82
|
+
</mxCell>
|
|
83
|
+
<mxCell id="36" value="gsheet" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="33">
|
|
84
|
+
<mxGeometry x="120" width="60" height="47" as="geometry">
|
|
85
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
86
|
+
</mxGeometry>
|
|
87
|
+
</mxCell>
|
|
88
|
+
<mxCell id="37" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;collapsible=0;recursiveResize=0;expand=0;fontStyle=0;fillColor=none;strokeColor=inherit;" vertex="1" parent="32">
|
|
89
|
+
<mxGeometry y="47" width="180" height="46" as="geometry"/>
|
|
90
|
+
</mxCell>
|
|
91
|
+
<mxCell id="38" value="91app" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="37">
|
|
92
|
+
<mxGeometry width="60" height="46" as="geometry">
|
|
93
|
+
<mxRectangle width="60" height="46" as="alternateBounds"/>
|
|
94
|
+
</mxGeometry>
|
|
95
|
+
</mxCell>
|
|
96
|
+
<mxCell id="39" value="revpay" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="37">
|
|
97
|
+
<mxGeometry x="60" width="60" height="46" as="geometry">
|
|
98
|
+
<mxRectangle width="60" height="46" as="alternateBounds"/>
|
|
99
|
+
</mxGeometry>
|
|
100
|
+
</mxCell>
|
|
101
|
+
<mxCell id="40" value="razor" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="37">
|
|
102
|
+
<mxGeometry x="120" width="60" height="46" as="geometry">
|
|
103
|
+
<mxRectangle width="60" height="46" as="alternateBounds"/>
|
|
104
|
+
</mxGeometry>
|
|
105
|
+
</mxCell>
|
|
106
|
+
<mxCell id="41" style="shape=tableRow;horizontal=0;startSize=0;swimlaneHead=0;swimlaneBody=0;top=0;left=0;bottom=0;right=0;dropTarget=0;collapsible=0;recursiveResize=0;expand=0;fontStyle=0;fillColor=none;strokeColor=inherit;" vertex="1" parent="32">
|
|
107
|
+
<mxGeometry y="93" width="180" height="47" as="geometry"/>
|
|
108
|
+
</mxCell>
|
|
109
|
+
<mxCell id="42" value="moodle" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="41">
|
|
110
|
+
<mxGeometry width="60" height="47" as="geometry">
|
|
111
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
112
|
+
</mxGeometry>
|
|
113
|
+
</mxCell>
|
|
114
|
+
<mxCell id="43" value="aws" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="41">
|
|
115
|
+
<mxGeometry x="60" width="60" height="47" as="geometry">
|
|
116
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
117
|
+
</mxGeometry>
|
|
118
|
+
</mxCell>
|
|
119
|
+
<mxCell id="44" value="etc" style="connectable=0;recursiveResize=0;strokeColor=inherit;fillColor=none;align=center;whiteSpace=wrap;html=1;" vertex="1" parent="41">
|
|
120
|
+
<mxGeometry x="120" width="60" height="47" as="geometry">
|
|
121
|
+
<mxRectangle width="60" height="47" as="alternateBounds"/>
|
|
122
|
+
</mxGeometry>
|
|
123
|
+
</mxCell>
|
|
124
|
+
<mxCell id="49" style="edgeStyle=none;html=1;entryX=0.124;entryY=1.016;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="47" target="8">
|
|
125
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
126
|
+
</mxCell>
|
|
127
|
+
<mxCell id="51" value="secure" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" vertex="1" connectable="0" parent="49">
|
|
128
|
+
<mxGeometry x="-0.3388" y="1" relative="1" as="geometry">
|
|
129
|
+
<mxPoint y="-1" as="offset"/>
|
|
130
|
+
</mxGeometry>
|
|
131
|
+
</mxCell>
|
|
132
|
+
<mxCell id="50" value="secure" style="edgeStyle=none;html=1;" edge="1" parent="1" source="47" target="4">
|
|
133
|
+
<mxGeometry relative="1" as="geometry"/>
|
|
134
|
+
</mxCell>
|
|
135
|
+
<mxCell id="47" value="keycloak" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
136
|
+
<mxGeometry x="200" y="320" width="120" height="60" as="geometry"/>
|
|
137
|
+
</mxCell>
|
|
138
|
+
</root>
|
|
139
|
+
</mxGraphModel>
|
|
140
|
+
</diagram>
|
|
141
|
+
</mxfile>
|
|
Binary file
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<mxfile host="65bd71144e">
|
|
2
|
+
<diagram id="n2v0TTUPoXV0cv3oXsvD" name="Page-1">
|
|
3
|
+
<mxGraphModel dx="493" dy="351" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
|
|
4
|
+
<root>
|
|
5
|
+
<mxCell id="0"/>
|
|
6
|
+
<mxCell id="1" parent="0"/>
|
|
7
|
+
<mxCell id="2" value="Products" style="swimlane;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
8
|
+
<mxGeometry x="50" y="60" width="320" height="250" as="geometry"/>
|
|
9
|
+
</mxCell>
|
|
10
|
+
<mxCell id="4" value="Simtrain" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="2">
|
|
11
|
+
<mxGeometry x="30" y="50" width="120" height="60" as="geometry"/>
|
|
12
|
+
</mxCell>
|
|
13
|
+
<mxCell id="5" value="Simbiz" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="2">
|
|
14
|
+
<mxGeometry x="30" y="130" width="120" height="60" as="geometry"/>
|
|
15
|
+
</mxCell>
|
|
16
|
+
<mxCell id="6" value="SimEdu" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="2">
|
|
17
|
+
<mxGeometry x="180" y="50" width="120" height="60" as="geometry"/>
|
|
18
|
+
</mxCell>
|
|
19
|
+
<mxCell id="7" value="Vertical Container" style="swimlane;whiteSpace=wrap;html=1;" vertex="1" parent="1">
|
|
20
|
+
<mxGeometry x="390" y="20" width="437" height="330" as="geometry"/>
|
|
21
|
+
</mxCell>
|
|
22
|
+
<mxCell id="8" value="" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.marginRect2;rectMarginTop=32;strokeColor=#666666;gradientColor=none;" vertex="1" parent="7">
|
|
23
|
+
<mxGeometry x="20" y="40" width="417" height="240" as="geometry"/>
|
|
24
|
+
</mxCell>
|
|
25
|
+
<mxCell id="9" value="API" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;" vertex="1" parent="8">
|
|
26
|
+
<mxGeometry width="60" height="25" relative="1" as="geometry">
|
|
27
|
+
<mxPoint x="10" as="offset"/>
|
|
28
|
+
</mxGeometry>
|
|
29
|
+
</mxCell>
|
|
30
|
+
<mxCell id="10" value="Schema" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#ffffff;strokeColor=#008cff;fillColor=#008cff;" vertex="1" parent="8">
|
|
31
|
+
<mxGeometry width="60" height="25" relative="1" as="geometry">
|
|
32
|
+
<mxPoint x="75" as="offset"/>
|
|
33
|
+
</mxGeometry>
|
|
34
|
+
</mxCell>
|
|
35
|
+
<mxCell id="11" value="BPMN" style="strokeColor=inherit;fillColor=inherit;gradientColor=inherit;strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.rrect;rSize=0;fontSize=17;fontColor=#666666;gradientColor=none;" vertex="1" parent="8">
|
|
36
|
+
<mxGeometry width="60" height="25" relative="1" as="geometry">
|
|
37
|
+
<mxPoint x="140" as="offset"/>
|
|
38
|
+
</mxGeometry>
|
|
39
|
+
</mxCell>
|
|
40
|
+
<mxCell id="12" value="" style="strokeWidth=1;shadow=0;dashed=0;align=center;html=1;shape=mxgraph.mockup.containers.topButton;rSize=5;strokeColor=#008cff;fillColor=#008cff;gradientColor=none;resizeWidth=1;movable=0;deletable=1;" vertex="1" parent="8">
|
|
41
|
+
<mxGeometry width="417" height="7" relative="1" as="geometry">
|
|
42
|
+
<mxPoint y="25" as="offset"/>
|
|
43
|
+
</mxGeometry>
|
|
44
|
+
</mxCell>
|
|
45
|
+
<mxCell id="13" value="invoice" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="8">
|
|
46
|
+
<mxGeometry x="10" y="40" width="80" height="60" as="geometry"/>
|
|
47
|
+
</mxCell>
|
|
48
|
+
<mxCell id="14" value="product" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="8">
|
|
49
|
+
<mxGeometry x="110" y="40" width="80" height="60" as="geometry"/>
|
|
50
|
+
</mxCell>
|
|
51
|
+
<mxCell id="15" value="students" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="8">
|
|
52
|
+
<mxGeometry x="210" y="40" width="80" height="60" as="geometry"/>
|
|
53
|
+
</mxCell>
|
|
54
|
+
</root>
|
|
55
|
+
</mxGraphModel>
|
|
56
|
+
</diagram>
|
|
57
|
+
</mxfile>
|