Skip to content

Commit

Permalink
don't include unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamcinchak committed Nov 7, 2023
1 parent 3667259 commit 84bf05d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions types/schema/Metadata.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
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: {
/**
* @default PlanX
*/
source: 'PlanX';
id: UUID;
id: UUID | string;
createdAt: DateTime;
submittedAt?: DateTime;
};
Expand Down
2 changes: 1 addition & 1 deletion types/schema/Responses.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { URL } from './../utils';
import {URL} from './../utils';

/**
* @id #Responses
Expand Down

0 comments on commit 84bf05d

Please sign in to comment.