feat(forklifts): added backend forklift stuff and frontend companies

This commit is contained in:
2025-11-02 16:16:35 -06:00
parent a6cc17ccb1
commit 50cde2d8d2
52 changed files with 20619 additions and 32 deletions

View File

@@ -16,13 +16,13 @@ headers {
body:json {
{
"name": "Dayton",
"serverDNS": "USDAY1VS006",
"plantToken": "usday1",
"ipAddress": "10.44.0.26",
"greatPlainsPlantCode": 55,
"name": "St Peters",
"serverDNS": "USSTP1VMS006",
"plantToken": "usstp1",
"ipAddress": "10.37.0.26",
"greatPlainsPlantCode": 45,
"lstServerPort": 4000,
"serverLoc": "E$\\LST"
"serverLoc": "E:\\LST"
}
}

View File

@@ -1,6 +1,6 @@
meta {
name: app
seq: 2
seq: 3
}
auth {

View File

@@ -0,0 +1,22 @@
meta {
name: Get Companies
type: http
seq: 2
}
get {
url: {{url}}/lst/api/forklifts/companies
body: none
auth: inherit
}
body:json {
{
"name":"Delage DLL"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,27 @@
meta {
name: Update Company
type: http
seq: 3
}
patch {
url: {{url}}/lst/api/forklifts/companies/:id
body: json
auth: inherit
}
params:path {
id: fbfba3df-8c0f-4994-adae-c03808cbccdc
}
body:json {
{
"name":"Delage DLL",
"active": true
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,22 @@
meta {
name: add company
type: http
seq: 1
}
post {
url: {{url}}/lst/api/forklifts/companies
body: json
auth: inherit
}
body:json {
{
"name":"Delage DLL"
}
}
settings {
encodeUrl: true
timeout: 0
}

View File

@@ -0,0 +1,8 @@
meta {
name: companies
seq: 1
}
auth {
mode: inherit
}

View File

@@ -0,0 +1,8 @@
meta {
name: forklifts
seq: 4
}
auth {
mode: inherit
}