chore: mark model change

This commit is contained in:
Stixx 2024-07-12 14:19:59 +02:00
parent 91dae29ea5
commit 131b15fc8c
2 changed files with 4 additions and 8 deletions

View File

@ -508,7 +508,6 @@ export const CreatePage = () => {
) => {
const signers = users.filter((user) => user.role === UserRole.signer)
const viewers = users.filter((user) => user.role === UserRole.viewer)
const markConfig = createMarkConfig(fileHashes)
const content: CreateSignatureEventContent = {

View File

@ -29,7 +29,6 @@ export interface MarkDetails {
}
export interface MarkValue {
type: MarkType,
value: string
}
@ -56,14 +55,14 @@ const creatorMetaExample = {
// Signer npub
'npub1x77qywdllzetv9ncnhlfpv62kshlgtt0uqlsq3v22uzzkk2xvvrsn6uyfy': {
// PDF Page 1 (PNG file hash)
'hash123png1': [
'da5f857e77d3aa59c461efad804116931c059b36e6b4da0b5d9452753ec70c05/1.png': [
{
markType: "FULLNAME",
markLocation: "X:56;Y:306"
}
],
// PDF Page 2 (PNG file hash)
'hash321png2': [
'da5f857e77d3aa59c461efad804116931c059b36e6b4da0b5d9452753ec70c05/2.png': [
{
markType: "FULLNAME",
markLocation: "X:76;Y:283.71875"
@ -78,18 +77,16 @@ const signerExample = {
"prevSig": "10de030dd2bfafbbd34969645bd0b3f5e8ab71b3b32091fb29bbea5e272f8a3b7284ef667b6a02e9becc1036450d9fbe5c1c6d146fa91d70e0d8f3cd54d64f17",
"marks": {
// PDF Page 1 (PNG file hash)
'hash123png1': {
'da5f857e77d3aa59c461efad804116931c059b36e6b4da0b5d9452753ec70c05/1.png': {
// Mark coordinates
"X:56;Y:306": {
type: 'FULLNAME',
value: 'Pera Peric'
}
},
// PDF Page 2 (PNG file hash)
'hash321png2': {
'da5f857e77d3aa59c461efad804116931c059b36e6b4da0b5d9452753ec70c05/2.png': {
// Mark coordinates
"X:76;Y:283.71875": {
type: 'FULLNAME',
value: 'Pera Peric'
}
}