From 84bf05d2b114d69456d921537573491e495da40d Mon Sep 17 00:00:00 2001 From: Jessica McInchak Date: Tue, 7 Nov 2023 21:14:08 +0100 Subject: [PATCH] don't include unrelated changes --- types/schema/Metadata.ts | 14 +++++++------- types/schema/Responses.ts | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/types/schema/Metadata.ts b/types/schema/Metadata.ts index 7c91c091..47b1813a 100644 --- a/types/schema/Metadata.ts +++ b/types/schema/Metadata.ts @@ -1,14 +1,14 @@ import {DateTime, URL, UUID} from './../utils'; -/** - * @id #DigitalPlanningMetadata - * @description Details of the digital planning service which sent the application - */ export interface Metadata { + /** + * @id #DigitalPlanningMetadata + * @description Details of the digital planning service which sent the application + */ service: { - flowId: UUID; + flowId: UUID | string; // @todo temp fix for failing UUID validation, sort out and tighten name: string; - organisation: string; + owner: string; url: URL; }; session: { @@ -16,7 +16,7 @@ export interface Metadata { * @default PlanX */ source: 'PlanX'; - id: UUID; + id: UUID | string; createdAt: DateTime; submittedAt?: DateTime; }; diff --git a/types/schema/Responses.ts b/types/schema/Responses.ts index 0ef5ed61..dfaa426a 100644 --- a/types/schema/Responses.ts +++ b/types/schema/Responses.ts @@ -1,4 +1,4 @@ -import { URL } from './../utils'; +import {URL} from './../utils'; /** * @id #Responses