Skip to content

Commit 3bfc8d8

Browse files
committed
Updating
1 parent 3c41d00 commit 3bfc8d8

File tree

2 files changed

+28
-29
lines changed

2 files changed

+28
-29
lines changed

.devcontainer/setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
npm i -g yarn@latest
2-
yarn setup-full
3-
yarn build-full
2+
yarn setup-full

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ Example response body:
5959

6060
```json
6161
[
62-
{
63-
"id":1,
64-
"name":"Kayak",
65-
"category":"Watersports",
66-
"description":"A boat for one person",
67-
"price":275.0
68-
},
69-
{
70-
"id":2,
71-
"name":"Lifejacket",
72-
"category":"Watersports",
73-
"description":"Protective and fashionable",
74-
"price":48.95
75-
}
62+
{
63+
"id": 1,
64+
"name": "Kayak",
65+
"category": "Watersports",
66+
"description": "A boat for one person",
67+
"price": 275.0
68+
},
69+
{
70+
"id": 2,
71+
"name": "Lifejacket",
72+
"category": "Watersports",
73+
"description": "Protective and fashionable",
74+
"price": 48.95
75+
}
7676
]
7777
```
7878

@@ -84,26 +84,26 @@ Example request body:
8484

8585
```json
8686
{
87-
"lines":[
88-
{
89-
"productId":1,
90-
"productName":"Kayak",
91-
"quantity":2
92-
},
93-
{
94-
"productId":2,
95-
"productName":"Lifejacket",
96-
"quantity":4
97-
}
98-
]
87+
"lines": [
88+
{
89+
"productId": 1,
90+
"productName": "Kayak",
91+
"quantity": 2
92+
},
93+
{
94+
"productId": 2,
95+
"productName": "Lifejacket",
96+
"quantity": 4
97+
}
98+
]
9999
}
100100
```
101101

102102
Example response body:
103103

104104
```json
105105
{
106-
"id":42
106+
"id": 42
107107
}
108108
```
109109

0 commit comments

Comments
 (0)