File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ export const createAplTeamApiSchema = yup.object({
4646 } )
4747 . optional ( ) ,
4848
49- password : yup . string ( ) . optional ( ) ,
50-
5149 managedMonitoring : yup
5250 . object ( {
5351 grafana : yup . boolean ( ) . optional ( ) . default ( false ) ,
Original file line number Diff line number Diff line change @@ -398,7 +398,6 @@ export type GetAplTeamsApiResponse = /** status 200 Successfully obtained teams
398398 oidc ?: {
399399 groupMapping ?: string
400400 }
401- password ?: string
402401 managedMonitoring ?: {
403402 grafana ?: boolean
404403 alertmanager ?: boolean
@@ -465,7 +464,6 @@ export type CreateAplTeamApiResponse = /** status 200 Successfully obtained team
465464 oidc ?: {
466465 groupMapping ?: string
467466 }
468- password ?: string
469467 managedMonitoring ?: {
470468 grafana ?: boolean
471469 alertmanager ?: boolean
@@ -533,7 +531,6 @@ export type CreateAplTeamApiArg = {
533531 oidc ?: {
534532 groupMapping ?: string
535533 }
536- password ?: string
537534 managedMonitoring ?: {
538535 grafana ?: boolean
539536 alertmanager ?: boolean
@@ -589,7 +586,6 @@ export type GetAplTeamApiResponse = /** status 200 Successfully obtained team */
589586 oidc ?: {
590587 groupMapping ?: string
591588 }
592- password ?: string
593589 managedMonitoring ?: {
594590 grafana ?: boolean
595591 alertmanager ?: boolean
@@ -659,7 +655,6 @@ export type EditAplTeamApiResponse = /** status 200 Successfully edited team */
659655 oidc ?: {
660656 groupMapping ?: string
661657 }
662- password ?: string
663658 managedMonitoring ?: {
664659 grafana ?: boolean
665660 alertmanager ?: boolean
@@ -729,7 +724,6 @@ export type EditAplTeamApiArg = {
729724 oidc ?: {
730725 groupMapping ?: string
731726 }
732- password ?: string
733727 managedMonitoring ?: {
734728 grafana ?: boolean
735729 alertmanager ?: boolean
You can’t perform that action at this time.
0 commit comments