From b0022b5dec866cf2ae772882efaca6c844dc0281 Mon Sep 17 00:00:00 2001 From: Chris Parker Date: Tue, 3 Dec 2024 09:39:17 -0700 Subject: [PATCH] Create new type to support split out managed.json file --- src/ops/MappingOps.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ops/MappingOps.ts b/src/ops/MappingOps.ts index 087a09b5..12027c6a 100644 --- a/src/ops/MappingOps.ts +++ b/src/ops/MappingOps.ts @@ -276,6 +276,10 @@ export type SyncSkeleton = IdObjectSkeletonInterface & { mappings: MappingSkeleton[]; }; +export type ManagedSkeleton = IdObjectSkeletonInterface & { + objects: MappingSkeleton[]; +}; + export interface MappingExportInterface { meta?: ExportMetaData; mapping: Record;