Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ai] React to 'Allow encode on a union' #28238

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2723,29 +2723,29 @@
"x-ms-client-name": "createdAt"
},
"expired_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this item expired.",
"x-nullable": true,
"x-ms-client-name": "expiredAt"
},
"completed_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this completed.",
"x-nullable": true,
"x-ms-client-name": "completedAt"
},
"cancelled_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this was cancelled.",
"x-nullable": true,
"x-ms-client-name": "cancelledAt"
},
"failed_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this failed.",
"x-nullable": true,
"x-ms-client-name": "failedAt"
Expand Down Expand Up @@ -3415,36 +3415,36 @@
"x-ms-client-name": "createdAt"
},
"expires_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this item expires.",
"x-nullable": true,
"x-ms-client-name": "expiresAt"
},
"started_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this item was started.",
"x-nullable": true,
"x-ms-client-name": "startedAt"
},
"completed_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this completed.",
"x-nullable": true,
"x-ms-client-name": "completedAt"
},
"cancelled_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this was cancelled.",
"x-nullable": true,
"x-ms-client-name": "cancelledAt"
},
"failed_at": {
"type": "string",
"format": "date-time",
"type": "integer",
"format": "unixtime",
"description": "The Unix timestamp, in seconds, representing when this failed.",
"x-nullable": true,
"x-ms-client-name": "failedAt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1876,23 +1876,23 @@ components:
format: unixtime
description: The Unix timestamp, in seconds, representing when this object was created.
expired_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this item expired.
completed_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this completed.
cancelled_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this was cancelled.
failed_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this failed.
metadata:
Expand Down Expand Up @@ -2387,28 +2387,28 @@ components:
format: unixtime
description: The Unix timestamp, in seconds, representing when this object was created.
expires_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this item expires.
started_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this item was started.
completed_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this completed.
cancelled_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this was cancelled.
failed_at:
type: string
format: date-time
type: integer
format: unixtime
nullable: true
description: The Unix timestamp, in seconds, representing when this failed.
metadata:
Expand Down