Skip to content

Commit

Permalink
Adding resolve_during_rolling_upgrade and _meta to the deprecation in…
Browse files Browse the repository at this point in the history
…fo API response
  • Loading branch information
masseyke committed Dec 2, 2024
1 parent 1552e85 commit 9d006ec
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion specification/migration/deprecations/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
* under the License.
*/

import { Dictionary } from '@spec_utils/Dictionary'
import { UserDefinedValue } from '@spec_utils/UserDefinedValue'

export enum DeprecationLevel {
none,
info,
Expand All @@ -27,9 +30,11 @@ export enum DeprecationLevel {
}

export class Deprecation {
details: string
details?: string
/** The level property describes the significance of the issue. */
level: DeprecationLevel
message: string
url: string
resolve_during_rolling_upgrade: boolean
_meta?: Dictionary<string, UserDefinedValue>
}

0 comments on commit 9d006ec

Please sign in to comment.