├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── index.ts ├── lib ├── deleteUnusedM2OItems.ts ├── deletingM2AItems.ts ├── replaceDeletedUserReferences.ts ├── resetFieldsHiddenByOption.ts ├── setProjectSettingsFromEnvVars.ts └── types.ts ├── package.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | dist -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/index.ts -------------------------------------------------------------------------------- /lib/deleteUnusedM2OItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/deleteUnusedM2OItems.ts -------------------------------------------------------------------------------- /lib/deletingM2AItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/deletingM2AItems.ts -------------------------------------------------------------------------------- /lib/replaceDeletedUserReferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/replaceDeletedUserReferences.ts -------------------------------------------------------------------------------- /lib/resetFieldsHiddenByOption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/resetFieldsHiddenByOption.ts -------------------------------------------------------------------------------- /lib/setProjectSettingsFromEnvVars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/setProjectSettingsFromEnvVars.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/lib/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/formfcw/directus-hook-library/HEAD/tsconfig.json --------------------------------------------------------------------------------