Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oppdaterte skjema for PDL og SAF #1366

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion integrasjon/person-klient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
<goal>generate</goal>
</goals>
<configuration>
<graphqlSchemaPaths>${project.basedir}/src/main/resources/pdl/pdl-api-sdl.graphqls</graphqlSchemaPaths>
<!-- source repo:pdl:apps/api/src/main/resources/schemas/pdl.graphqls -->
<graphqlSchemaPaths>${project.basedir}/src/main/resources/pdl/pdl.graphqls</graphqlSchemaPaths>
<outputDir>${project.build.directory}/generated-sources/client-pdl</outputDir>
<modelPackageName>no.nav.pdl</modelPackageName>
<customTypesMapping>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SOURCE repo:pdl:apps/api/src/main/resources/schemas/pdl.graphqls
# ISO-8601 representasjon for en kalenderdato. YYYY-MM-DD. Eksempel: 2018-01-01.
scalar Date

Expand Down Expand Up @@ -137,7 +138,7 @@ type Person {
doedfoedtBarn: [DoedfoedtBarn!]!
doedsfall: [Doedsfall!]!
falskIdentitet: FalskIdentitet
foedsel: [Foedsel!]!
foedsel: [Foedsel!]! @deprecated(reason: "Erstattet av foedselsdato & foedested")
foedselsdato: [Foedselsdato!]!
foedested: [Foedested!]!
folkeregisteridentifikator(historikk: Boolean = false): [Folkeregisteridentifikator!]!
Expand Down
3 changes: 2 additions & 1 deletion integrasjon/saf-klient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
<goal>generate</goal>
</goals>
<configuration>
<graphqlSchemaPaths>${project.basedir}/src/main/resources/saf/schema.graphql</graphqlSchemaPaths>
<!-- source repo:saf:app/src/main/resources/schemas/saf.graphqls -->
<graphqlSchemaPaths>${project.basedir}/src/main/resources/saf/saf.graphqls</graphqlSchemaPaths>
<outputDir>${project.build.directory}/generated-sources/client-saf</outputDir>
<modelPackageName>no.nav.saf</modelPackageName>
<customTypesMapping>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SOURCE repo:saf:app/src/main/resources/schemas/saf.graphqls
# ISO-8601 representasjon for en kalenderdato. YYYY-MM-DD. Eksempel: 2018-01-01.
scalar Date

Expand Down Expand Up @@ -297,6 +298,12 @@ type Journalpost {
# * Returneres kun for utgående journalposter
utsendingsinfo: Utsendingsinfo

# Regel for innsyn for denne journalposten. Verdi er "BRUK_STANDARDREGLER" om innsyn ikke er overstyrt.
innsynsregel: String!

# Menneskevennlig beskrivelse av aktuell innsynsregel.
innsynsregelBeskrivelse: String!

# Liste over fagspesifikke metadata som er tilknyttet journalpost.
tilleggsopplysninger: [Tilleggsopplysning]

Expand Down Expand Up @@ -731,7 +738,7 @@ enum Kanal {
# Forsendelsen inneholder en komplett chatdialog (inngående og utgående meldinger) mellom en bruker og en veileder i NAV.
NAV_NO_CHAT

# Brevet er sendt til virksomhet som taushetsbelagt digital post.
# Brevet er sendt til virksomhet som Taushetsbelagt Post via Altinn.
# * Brukes for utgående journalposter.
DPVT

Expand Down Expand Up @@ -888,7 +895,7 @@ enum Tema {
# Serviceklager
SER

# Regnskap/utbetaling
# Regnskap/utbetaling/årsoppgave
STO

# Supplerende stønad
Expand Down