Skip to content

Commit

Permalink
update descriptions to specify order
Browse files Browse the repository at this point in the history
Co-authored-by: John Jannotti <john.jannotti@algorand.com>
  • Loading branch information
joe-p and jannotti committed Apr 30, 2024
1 parent ac5748c commit 267de9e
Show file tree
Hide file tree
Showing 9 changed files with 1,330 additions and 1,323 deletions.
4 changes: 2 additions & 2 deletions daemon/algod/api/algod.oas2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4519,7 +4519,7 @@
}
},
"AppCallLogs": {
"description": "The logged messages from an app call along with the app ID and outer transaction ID.",
"description": "The logged messages from an app call along with the app ID and outer transaction ID. Logs appear in the same order that they were emitted.",
"type": "object",
"required": [
"logs",
Expand Down Expand Up @@ -5202,7 +5202,7 @@
}
},
"BlockLogsResponse": {
"description": "All of the logs from outer and inner app calls in the given round. Each app call results in a new AppCallLogs object, thus there might be multiple objects with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response.",
"description": "All logs emitted in the given round. Each app call, whether top-level or inner, that contains logs results in a separate AppCallLogs object. Therefore there may be multiple AppCallLogs with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response. AppCallLogs are returned in the same order that their corresponding app call appeared in the block (pre-order traversal of inner app calls)",
"schema": {
"type": "object",
"required": [
Expand Down
6 changes: 3 additions & 3 deletions daemon/algod/api/algod.oas3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@
}
}
},
"description": "All of the logs from outer and inner app calls in the given round. Each app call results in a new AppCallLogs object, thus there might be multiple objects with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response."
"description": "All logs emitted in the given round. Each app call, whether top-level or inner, that contains logs results in a separate AppCallLogs object. Therefore there may be multiple AppCallLogs with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response. AppCallLogs are returned in the same order that their corresponding app call appeared in the block (pre-order traversal of inner app calls)"
},
"BlockResponse": {
"content": {
Expand Down Expand Up @@ -1237,7 +1237,7 @@
"type": "object"
},
"AppCallLogs": {
"description": "The logged messages from an app call along with the app ID and outer transaction ID.",
"description": "The logged messages from an app call along with the app ID and outer transaction ID. Logs appear in the same order that they were emitted.",
"properties": {
"application-index": {
"description": "The application from which the logs were generated",
Expand Down Expand Up @@ -4073,7 +4073,7 @@
}
}
},
"description": "All of the logs from outer and inner app calls in the given round. Each app call results in a new AppCallLogs object, thus there might be multiple objects with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response."
"description": "All logs emitted in the given round. Each app call, whether top-level or inner, that contains logs results in a separate AppCallLogs object. Therefore there may be multiple AppCallLogs with the same application ID and outer transaction ID in the event of multiple inner app calls to the same app. App calls with no logs are not included in the response. AppCallLogs are returned in the same order that their corresponding app call appeared in the block (pre-order traversal of inner app calls)"
},
"400": {
"content": {
Expand Down
369 changes: 185 additions & 184 deletions daemon/algod/api/server/v2/generated/data/routes.go

Large diffs are not rendered by default.

425 changes: 213 additions & 212 deletions daemon/algod/api/server/v2/generated/experimental/routes.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion daemon/algod/api/server/v2/generated/model/types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

431 changes: 216 additions & 215 deletions daemon/algod/api/server/v2/generated/nonparticipating/private/routes.go

Large diffs are not rendered by default.

586 changes: 294 additions & 292 deletions daemon/algod/api/server/v2/generated/nonparticipating/public/routes.go

Large diffs are not rendered by default.

437 changes: 219 additions & 218 deletions daemon/algod/api/server/v2/generated/participating/private/routes.go

Large diffs are not rendered by default.

393 changes: 197 additions & 196 deletions daemon/algod/api/server/v2/generated/participating/public/routes.go

Large diffs are not rendered by default.

0 comments on commit 267de9e

Please sign in to comment.