diff --git a/pom.xml b/pom.xml index 68def2081b..7cb8ad276a 100644 --- a/pom.xml +++ b/pom.xml @@ -37,16 +37,16 @@ true 4.4.16 2.2.29 - 5.12.0 + 5.12.1 11.4.2 2.18.3 9.7.1 2.1.10 3.2.7 - 11.3.4 + 11.4.0 1.1.43 7.9.0 - 5.16.0 + 5.16.1 diff --git a/web/pom.xml b/web/pom.xml index b3a241a42e..8061d449e2 100644 --- a/web/pom.xml +++ b/web/pom.xml @@ -14,8 +14,8 @@ ung-sak :: Webapp - 5.20.0 - 12.0.17 + 5.20.1 + 12.0.18 4.2.30 diff --git a/web/src/main/resources/openapi-ts-client/ung-sak.openapi.json b/web/src/main/resources/openapi-ts-client/ung-sak.openapi.json index 693691af05..437725391a 100644 --- a/web/src/main/resources/openapi-ts-client/ung-sak.openapi.json +++ b/web/src/main/resources/openapi-ts-client/ung-sak.openapi.json @@ -2679,6 +2679,55 @@ "type" : "string", "x-enum-varnames" : [ "K9_VILKÅRET", "MEDLEMSKAPSVILKÅRET", "OMSORGEN_FOR", "ALDERSVILKÅR", "ALDERSVILKÅR_BARN", "MEDISINSKEVILKÅR_UNDER_18_ÅR", "MEDISINSKEVILKÅR_18_ÅR", "SØKNADSFRIST", "SØKERSOPPLYSNINGSPLIKT", "OPPTJENINGSPERIODEVILKÅR", "OPPTJENINGSVILKÅRET", "BEREGNINGSGRUNNLAGVILKÅR", "I_LIVETS_SLUTTFASE", "NØDVENDIG_OPPLÆRING", "GODKJENT_OPPLÆRINGSINSTITUSJON", "GJENNOMGÅ_OPPLÆRING", "LANGVARIG_SYKDOM", "UTVIDETRETT", "UNGDOMSPROGRAMVILKÅRET", "UDEFINERT" ] }, + "KontrollerInntektDto" : { + "properties" : { + "kontrollperioder" : { + "items" : { + "$ref" : "#/components/schemas/KontrollerInntektPeriodeDto" + }, + "type" : "array" + } + }, + "type" : "object" + }, + "KontrollerInntektPeriodeDto" : { + "properties" : { + "erTilVurdering" : { + "type" : "boolean" + }, + "fastsattArbeidsinntekt" : { + "format" : "int32", + "type" : "integer" + }, + "fastsattYtelse" : { + "format" : "int32", + "type" : "integer" + }, + "periode" : { + "$ref" : "#/components/schemas/Periode" + }, + "rapporterteInntekter" : { + "$ref" : "#/components/schemas/RapporterteInntekterDto" + }, + "status" : { + "$ref" : "#/components/schemas/KontrollerInntektPeriodeDtoStatus" + }, + "valg" : { + "$ref" : "#/components/schemas/KontrollerInntektPeriodeDtoValg" + } + }, + "type" : "object" + }, + "KontrollerInntektPeriodeDtoStatus" : { + "enum" : [ "AVVIK", "INGEN_AVVIK" ], + "type" : "string", + "x-enum-varnames" : [ "AVVIK", "INGEN_AVVIK" ] + }, + "KontrollerInntektPeriodeDtoValg" : { + "enum" : [ "BRUK_BRUKERS_INNTEKT", "BRUK_REGISTER_INNTEKT", "MANUELT_FASTSATT" ], + "type" : "string", + "x-enum-varnames" : [ "BRUK_BRUKERS_INNTEKT", "BRUK_REGISTER_INNTEKT", "MANUELT_FASTSATT" ] + }, "KravDokumentMedSøktePerioder" : { "properties" : { "innsendingsTidspunkt" : { @@ -3626,6 +3675,30 @@ "required" : [ "saksnummere" ], "type" : "object" }, + "RapportertInntektDto" : { + "properties" : { + "arbeidsinntekt" : { + "format" : "int32", + "type" : "integer" + }, + "ytelse" : { + "format" : "int32", + "type" : "integer" + } + }, + "type" : "object" + }, + "RapporterteInntekterDto" : { + "properties" : { + "bruker" : { + "$ref" : "#/components/schemas/RapportertInntektDto" + }, + "register" : { + "$ref" : "#/components/schemas/RapportertInntektDto" + } + }, + "type" : "object" + }, "ReferanseDto" : { "properties" : { "referanse" : { @@ -5137,6 +5210,36 @@ "tags" : [ "beregningsresultat" ] } }, + "/api/behandling/kontrollerinntekt" : { + "get" : { + "description" : "Henter perioder for kontroll av inntekt", + "operationId" : "hentKontrollerInntekt", + "parameters" : [ { + "description" : "behandlingUUID", + "in" : "query", + "name" : "behandlingUuid", + "required" : true, + "schema" : { + "format" : "uuid", + "type" : "string" + } + } ], + "responses" : { + "default" : { + "content" : { + "application/json" : { + "schema" : { + "$ref" : "#/components/schemas/KontrollerInntektDto" + } + } + }, + "description" : "default response" + } + }, + "summary" : "Henter perioder for kontroll av inntekt", + "tags" : [ "kontroll" ] + } + }, "/api/behandling/perioder" : { "get" : { "description" : "Hent perioder til behandling og kilden til disse",