Skip to content

Commit 0957ec0

Browse files
committed
feat: added generic_combination_strategy and thorws_error
1 parent c684a0c commit 0957ec0

File tree

10 files changed

+416
-283
lines changed

10 files changed

+416
-283
lines changed

definitions/rest/data_type/array.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```json
22
{
3-
"variant": "ARRAY",
3+
"variant": 5,
44
"identifier": "HTTP_HEADER_MAP",
55
"name": [
66
{
@@ -15,6 +15,7 @@
1515
}
1616
}
1717
],
18-
"parent_type_identifier": "ARRAY"
18+
"parent_type_identifier": "ARRAY",
19+
"generic_keys": []
1920
}
2021
```

definitions/rest/data_type/object.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
```json
22
{
3-
"variant": "OBJECT",
3+
"variant": 3,
44
"identifier": "HTTP_HEADER_ENTRY",
55
"name": [
66
{
@@ -22,18 +22,19 @@
2222
}
2323
}
2424
],
25-
"parent_type_identifier": "OBJECT"
25+
"parent_type_identifier": "OBJECT",
26+
"generic_keys": []
2627
}
2728
```
2829

2930
```json
3031
{
31-
"variant": "OBJECT",
32+
"variant": 3,
3233
"identifier": "HTTP_REQUEST_OBJECT",
3334
"name": [
3435
{
3536
"code": "en-US",
36-
"content": "HTTP Request",
37+
"content": "HTTP Request"
3738
}
3839
],
3940
"rules": [
@@ -62,13 +63,14 @@
6263
}
6364
}
6465
],
65-
"parent_type_identifier": "OBJECT"
66+
"parent_type_identifier": "OBJECT",
67+
"generic_keys": []
6668
}
6769
```
6870

6971
```json
7072
{
71-
"variant": "OBJECT",
73+
"variant": 3,
7274
"identifier": "HTTP_RESPONSE_OBJECT",
7375
"name": [
7476
{
@@ -90,6 +92,7 @@
9092
}
9193
}
9294
],
93-
"parent_type_identifier": "OBJECT"
95+
"parent_type_identifier": "OBJECT",
96+
"generic_keys": []
9497
}
9598
```

definitions/rest/data_type/type.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
## HTTP Method - Type
33
```json
44
{
5-
"variant": "TYPE",
5+
"variant": 2,
66
"identifier": "HTTP_METHOD",
77
"name": [
88
{
@@ -17,7 +17,7 @@
1717
}
1818
}
1919
],
20-
"parent_type_identifier": null
20+
"generic_keys": []
2121
}
2222
```
2323

@@ -40,6 +40,6 @@
4040
}
4141
}
4242
],
43-
"parent_type_identifier": null
43+
"generic_keys": []
4444
}
4545
```

definitions/rest/flow_type/flow_type.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
```json
44
{
5-
"identifier": "REST"
5+
"identifier": "REST",
66
"name": [
77
{
88
"code": "en-US",
@@ -12,11 +12,18 @@
1212
"description": [
1313
{
1414
"code": "en-US",
15-
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE, usually returning results in JSON format."
15+
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
16+
}
17+
],
18+
"documentation": [
19+
{
20+
"code": "en-US",
21+
"content": "A REST API is a web service that lets clients interact with data on a server using standard HTTP methods like GET, POST, PUT, and DELETE usually returning results in JSON format."
1622
}
1723
],
1824
"settings": [],
1925
"input_type_identifier": "HTTP_REQUEST_OBJECT",
20-
"return_type_identifier": "HTTP_RESPONSE_OBJECT"
26+
"return_type_identifier": "HTTP_RESPONSE_OBJECT",
27+
"editable": false
2128
}
2229
```

definitions/standard/data_type/type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{
1717
"item_of_collection": {
1818
"items": [
19-
"BASE64",
19+
{"kind":{"StringValue":"BASE64"}}
2020
]
2121
}
2222
}

0 commit comments

Comments
 (0)