Skip to content

Commit 01be487

Browse files
authored
Merge branch 'v2' into security-headers
2 parents 44f7b65 + 5503618 commit 01be487

5 files changed

Lines changed: 1751 additions & 4 deletions

File tree

model/src/data-model/types.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,4 +215,6 @@ export type FormDefinition = {
215215
toggle?: boolean | string | undefined;
216216
retryTimeoutSeconds?: number | undefined;
217217
webhookHmacSharedKey?: string | undefined;
218+
fullStartPage?: string | undefined;
219+
serviceName?: string | undefined;
218220
};

model/src/schema/schema.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,8 @@ export const Schema = joi
347347
toggleRedirect: joi.string().optional(),
348348
retryTimeoutSeconds: joi.number().optional(),
349349
webhookHmacSharedKey: joi.string().optional(),
350+
fullStartPage: joi.string().optional(),
351+
serviceName: joi.string().optional(),
350352
});
351353

352354
/**

0 commit comments

Comments
 (0)