Skip to content

Commit

Permalink
Add UpdatedAt to Application, Endpoint & EventType outputs (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-frank authored Nov 4, 2021
1 parent 6d70d2b commit 0a93a48
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 6 deletions.
31 changes: 30 additions & 1 deletion go/internal/openapi/model_application_out.go

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

31 changes: 30 additions & 1 deletion go/internal/openapi/model_endpoint_out.go

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

61 changes: 60 additions & 1 deletion go/internal/openapi/model_event_type_out.go

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

30 changes: 27 additions & 3 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,18 @@
"pattern": "^[a-zA-Z0-9\\-_.]+$",
"title": "Uid",
"type": "string"
},
"updatedAt": {
"format": "date-time",
"title": "Updatedat",
"type": "string"
}
},
"required": [
"name",
"id",
"createdAt"
"createdAt",
"updatedAt"
],
"title": "ApplicationOut",
"type": "object"
Expand Down Expand Up @@ -453,6 +459,11 @@
"title": "Uid",
"type": "string"
},
"updatedAt": {
"format": "date-time",
"title": "Updatedat",
"type": "string"
},
"url": {
"example": "https://example.com/webhook/",
"format": "uri",
Expand All @@ -472,7 +483,8 @@
"url",
"version",
"id",
"createdAt"
"createdAt",
"updatedAt"
],
"title": "EndpointOut",
"type": "object"
Expand Down Expand Up @@ -776,6 +788,11 @@
"title": "Archived",
"type": "boolean"
},
"createdAt": {
"format": "date-time",
"title": "Createdat",
"type": "string"
},
"description": {
"example": "A user has signed up",
"title": "Description",
Expand Down Expand Up @@ -835,11 +852,18 @@
},
"title": "Schemas",
"type": "object"
},
"updatedAt": {
"format": "date-time",
"title": "Updatedat",
"type": "string"
}
},
"required": [
"description",
"name"
"name",
"createdAt",
"updatedAt"
],
"title": "EventTypeOut",
"type": "object"
Expand Down

0 comments on commit 0a93a48

Please sign in to comment.