Skip to content

Commit

Permalink
regen
Browse files Browse the repository at this point in the history
  • Loading branch information
mastercactapus committed Nov 27, 2023
1 parent 0ce9f2d commit 2ac82d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gadb/models.go

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

6 changes: 6 additions & 0 deletions web/src/schema.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,7 @@ export interface CreateScheduleInput {
favorite?: null | boolean
targets?: null | ScheduleTargetInput[]
newUserOverrides?: null | CreateUserOverrideInput[]
labels?: null | SetLabelInput[]
}

export interface ScheduleTargetInput {
Expand Down Expand Up @@ -627,6 +628,7 @@ export interface CreateEscalationPolicyInput {
repeat?: null | number
favorite?: null | boolean
steps?: null | CreateEscalationPolicyStepInput[]
labels?: null | SetLabelInput[]
}

export interface CreateEscalationPolicyStepInput {
Expand Down Expand Up @@ -706,6 +708,7 @@ export interface Schedule {
isFavorite: boolean
temporarySchedules: TemporarySchedule[]
onCallNotificationRules: OnCallNotificationRule[]
labels: Label[]
}

export interface SetScheduleOnCallNotificationRulesInput {
Expand Down Expand Up @@ -764,6 +767,7 @@ export interface CreateRotationInput {
type: RotationType
shiftLength?: null | number
userIDs?: null | string[]
labels?: null | SetLabelInput[]
}

export interface Rotation {
Expand All @@ -779,6 +783,7 @@ export interface Rotation {
userIDs: string[]
users: User[]
nextHandoffTimes: ISOTimestamp[]
labels: Label[]
}

export type RotationType = 'monthly' | 'weekly' | 'daily' | 'hourly'
Expand Down Expand Up @@ -1031,6 +1036,7 @@ export interface EscalationPolicy {
assignedTo: Target[]
steps: EscalationPolicyStep[]
notices: Notice[]
labels: Label[]
}

export type AlertStatus =
Expand Down

0 comments on commit 2ac82d1

Please sign in to comment.