Skip to content

Commit

Permalink
change last_seen and first_seen to string (#431)
Browse files Browse the repository at this point in the history
fix #430
  • Loading branch information
ffalor committed May 13, 2024
1 parent afdbd4c commit 800c2ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.

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

4 changes: 2 additions & 2 deletions falcon/models/models_container.go

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

7 changes: 6 additions & 1 deletion specs/transformation.jq
Expand Up @@ -193,4 +193,9 @@
| del(.paths."/real-time-response/entities/scripts/v1".patch.responses."200")

# 200 is a valid response from /real-time-response/entities/queued-sessions/command/v1
| .paths."/real-time-response/entities/queued-sessions/command/v1".delete.responses."200" = .paths."/real-time-response/entities/put-files/v1".delete.responses."200"
| .paths."/real-time-response/entities/queued-sessions/command/v1".delete.responses."200" = .paths."/real-time-response/entities/put-files/v1".delete.responses."200"

# last_seen and first_seen should be a string
| .definitions."models.Container".properties.first_seen.type = "string"
| .definitions."models.Container".properties.last_seen.type = "string"

0 comments on commit 800c2ad

Please sign in to comment.