Skip to content
Merged
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
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>
}
Loading