import { changeImportEntryPoint, type JSCodeshift, type Collection } from '@atlaskit/codemod-utils'; export const updateImportEntryPointsForDefaultSchema: (( j: JSCodeshift, root: Collection, ) => void)[] = [ changeImportEntryPoint( '@atlaskit/adf-schema', 'defaultSchema', '@atlaskit/adf-schema/schema-default', ), changeImportEntryPoint( '@atlaskit/adf-schema', 'getSchemaBasedOnStage', '@atlaskit/adf-schema/schema-default', ), changeImportEntryPoint( '@atlaskit/adf-schema', 'defaultSchemaConfig', '@atlaskit/adf-schema/schema-default', ), ];