Docs y prueba de concepto de colas por empresa

This commit is contained in:
2026-01-16 13:13:45 +01:00
parent b29348b88d
commit 51cfae7572
19 changed files with 358 additions and 1 deletions

16
docs/sim-api/Activate.bru Normal file
View File

@@ -0,0 +1,16 @@
meta {
name: Activate
type: http
seq: 1
}
post {
url: {{baseurl}}/sim/activate
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

16
docs/sim-api/Cancel.bru Normal file
View File

@@ -0,0 +1,16 @@
meta {
name: Cancel
type: http
seq: 1
}
post {
url: {{baseurl}}/sim/cancel
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

16
docs/sim-api/Pause.bru Normal file
View File

@@ -0,0 +1,16 @@
meta {
name: Pause
type: http
seq: 1
}
post {
url: {{baseurl}}/sim/pause
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,16 @@
meta {
name: Preactivate
type: http
seq: 1
}
post {
url: {{baseurl}}/sim/preactivate
body: none
auth: inherit
}
settings {
encodeUrl: true
timeout: 0
}

9
docs/sim-api/bruno.json Normal file
View File

@@ -0,0 +1,9 @@
{
"version": "1",
"name": "sim-api",
"type": "collection",
"ignore": [
"node_modules",
".git"
]
}

View File

@@ -0,0 +1,3 @@
vars {
baseurl: http://locahost
}