From 5c2fb5160b78518564c0ce7e075c85ccfbb244b5 Mon Sep 17 00:00:00 2001 From: Titouan Date: Fri, 3 Oct 2025 14:19:24 +0200 Subject: [PATCH] refactored key 'data' in data file --- lib/4nk/models/FolderData.ts | 2 +- lib/4nk/models/RhData.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/4nk/models/FolderData.ts b/lib/4nk/models/FolderData.ts index c3c699f..c0aa926 100644 --- a/lib/4nk/models/FolderData.ts +++ b/lib/4nk/models/FolderData.ts @@ -85,7 +85,7 @@ export const FolderPrivateFields = [ export interface FolderCreated { processId: string, process: any, // Process - folderData: FolderData, + data: FolderData, } export function setDefaultFolderRoles(ownerId: string, stakeholdersId: string[], customersId: string[]): Record { diff --git a/lib/4nk/models/RhData.ts b/lib/4nk/models/RhData.ts index f2cb504..02786f0 100644 --- a/lib/4nk/models/RhData.ts +++ b/lib/4nk/models/RhData.ts @@ -83,7 +83,7 @@ export const RhPrivateFields = [ export interface RhCreated { processId: string, process: any, // Process - rhData: RhData, + data: RhData, } export function setDefaultRhRoles(ownerId: string, rhs: string[], salaries: string[]): Record {