1import { mergeConcatA } from '../sharedF/moDashF/mergeConcatAF.mts'2import { appCfgCtx, type AppCfg } from './k8sF/ctxF/appCfgCtxF.mts'3import { throwIf } from '../sharedF/throwErrorF/throwIfF.mts'5export const mutateAppCfg = (appCfg: AppCfg, ...partials: object[]) => {7 Object.assign(appCfg, mergeConcatA(appCfg, ...partials))8 appCfgCtx.enterWith(appCfg)9 return appCfg10}