Skip to content

Commit

Permalink
Merge branch 'feature/AB#16122' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefwint committed Mar 14, 2024
2 parents ce1145e + 760d47c commit 94adb82
Showing 1 changed file with 94 additions and 91 deletions.
185 changes: 94 additions & 91 deletions src/api/fetchers.msw.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,97 +10,100 @@
*/
import { faker } from '@faker-js/faker'
import { HttpResponse, delay, http } from 'msw'
import type {
AOJCreatedResponse,
AcknowledgedRelation,
ActiveModuleObjectWrapper,
AmbitieFull,
AmbitieUUID,
AuthToken,
BeleidsdoelFull,
BeleidsdoelUUID,
BeleidskeuzeFull,
BeleidskeuzeUUID,
BeleidsregelFull,
BeleidsregelUUID,
EnvironmentCreatedResponse,
GebiedsprogrammaFull,
GebiedsprogrammaUUID,
GraphResponse,
MaatregelFull,
MaatregelUUID,
ModuleCreatedResponse,
ModuleObjectContext,
ModuleOverview,
ModuleSnapshot,
ModuleStatus,
NationaalBelangFull,
NationaalBelangUUID,
NewObjectStaticResponse,
ObjectCount,
PagedResponseAmbitieBasic,
PagedResponseAmbitieExtended,
PagedResponseBeleidsdoelBasic,
PagedResponseBeleidsdoelExtended,
PagedResponseBeleidskeuzeBasic,
PagedResponseBeleidskeuzeExtended,
PagedResponseBeleidsregelBasic,
PagedResponseBeleidsregelExtended,
PagedResponseGebiedsprogrammaBasic,
PagedResponseGebiedsprogrammaExtended,
PagedResponseGenericObjectShort,
PagedResponseGeoSearchResult,
PagedResponseMaatregelBasic,
PagedResponseMaatregelExtended,
PagedResponseModule,
PagedResponseModuleObjectShortStatus,
PagedResponseNationaalBelangBasic,
PagedResponseProgrammaAlgemeenBasic,
PagedResponseProgrammaAlgemeenExtended,
PagedResponsePublicModuleShort,
PagedResponsePublication,
PagedResponsePublicationAOJ,
PagedResponsePublicationEnvironment,
PagedResponsePublicationPackage,
PagedResponsePublicationPackageReportShort,
PagedResponsePublicationTemplate,
PagedResponsePublicationVersionShort,
PagedResponseSearchObject,
PagedResponseUser,
PagedResponseValidSearchObject,
PagedResponseVerplichtProgrammaBasic,
PagedResponseVisieAlgemeenBasic,
PagedResponseVisieAlgemeenExtended,
PagedResponseWerkingsgebied,
PagedResponseWerkingsgebiedBasic,
PagedResponseWerkingsgebiedExtended,
PagedResponseWettelijkeTaakBasic,
ProgrammaAlgemeenFull,
ProgrammaAlgemeenUUID,
PublicModuleOverview,
Publication,
PublicationCreatedResponse,
PublicationPackageCreatedResponse,
PublicationPackageReport,
PublicationTemplate,
PublicationVersion,
PublicationVersionCreatedResponse,
PublicationVersionEditResponse,
ReadRelation,
ResetPasswordResponse,
ResponseOK,
TemplateCreatedResponse,
UploadPackageReportResponse,
User,
UserCreateResponse,
VerplichtProgrammaFull,
VerplichtProgrammaUUID,
VisieAlgemeenFull,
VisieAlgemeenUUID,
WerkingsgebiedFull,
WerkingsgebiedUUID,
WettelijkeTaakFull,
WettelijkeTaakUUID,

import {
GraphEdgeType,
ReportStatusType,
type AOJCreatedResponse,
type AcknowledgedRelation,
type ActiveModuleObjectWrapper,
type AmbitieFull,
type AmbitieUUID,
type AuthToken,
type BeleidsdoelFull,
type BeleidsdoelUUID,
type BeleidskeuzeFull,
type BeleidskeuzeUUID,
type BeleidsregelFull,
type BeleidsregelUUID,
type EnvironmentCreatedResponse,
type GebiedsprogrammaFull,
type GebiedsprogrammaUUID,
type GraphResponse,
type MaatregelFull,
type MaatregelUUID,
type ModuleCreatedResponse,
type ModuleObjectContext,
type ModuleOverview,
type ModuleSnapshot,
type ModuleStatus,
type NationaalBelangFull,
type NationaalBelangUUID,
type NewObjectStaticResponse,
type ObjectCount,
type PagedResponseAmbitieBasic,
type PagedResponseAmbitieExtended,
type PagedResponseBeleidsdoelBasic,
type PagedResponseBeleidsdoelExtended,
type PagedResponseBeleidskeuzeBasic,
type PagedResponseBeleidskeuzeExtended,
type PagedResponseBeleidsregelBasic,
type PagedResponseBeleidsregelExtended,
type PagedResponseGebiedsprogrammaBasic,
type PagedResponseGebiedsprogrammaExtended,
type PagedResponseGenericObjectShort,
type PagedResponseGeoSearchResult,
type PagedResponseMaatregelBasic,
type PagedResponseMaatregelExtended,
type PagedResponseModule,
type PagedResponseModuleObjectShortStatus,
type PagedResponseNationaalBelangBasic,
type PagedResponseProgrammaAlgemeenBasic,
type PagedResponseProgrammaAlgemeenExtended,
type PagedResponsePublicModuleShort,
type PagedResponsePublication,
type PagedResponsePublicationAOJ,
type PagedResponsePublicationEnvironment,
type PagedResponsePublicationPackage,
type PagedResponsePublicationPackageReportShort,
type PagedResponsePublicationTemplate,
type PagedResponsePublicationVersionShort,
type PagedResponseSearchObject,
type PagedResponseUser,
type PagedResponseValidSearchObject,
type PagedResponseVerplichtProgrammaBasic,
type PagedResponseVisieAlgemeenBasic,
type PagedResponseVisieAlgemeenExtended,
type PagedResponseWerkingsgebied,
type PagedResponseWerkingsgebiedBasic,
type PagedResponseWerkingsgebiedExtended,
type PagedResponseWettelijkeTaakBasic,
type ProgrammaAlgemeenFull,
type ProgrammaAlgemeenUUID,
type PublicModuleOverview,
type Publication,
type PublicationCreatedResponse,
type PublicationPackageCreatedResponse,
type PublicationPackageReport,
type PublicationTemplate,
type PublicationVersion,
type PublicationVersionCreatedResponse,
type PublicationVersionEditResponse,
type ReadRelation,
type ResetPasswordResponse,
type ResponseOK,
type TemplateCreatedResponse,
type UploadPackageReportResponse,
type User,
type UserCreateResponse,
type VerplichtProgrammaFull,
type VerplichtProgrammaUUID,
type VisieAlgemeenFull,
type VisieAlgemeenUUID,
type WerkingsgebiedFull,
type WerkingsgebiedUUID,
type WettelijkeTaakFull,
type WettelijkeTaakUUID,
} from './fetchers.schemas'

export const getAmbitiesValidGetMock = (
Expand Down

0 comments on commit 94adb82

Please sign in to comment.