Files
payload/src/errors/index.ts
Elliot DeNolf b383eb65c6 feat: autolabel fields when label is omitted (#42)
* feat: autolabel fields when omitted

* feat: handle autolabel in graphql mutation build

* feat: autolabel blocks

* test: add required slug field to blocks

* feat: handle graphql names when label is false

* feat: adds relationship field to test searchable input

* feat: handle block cell type labeling pluralization

* docs: remove all explicit labeling, no longer needed

* fix: falsey column labels, allows false array labels

* fix: client tests

* fix: auto-labels globals

* docs: globals auto-labeling and hooks clarification

* fix; proper object type naming

Co-authored-by: James <james@trbl.design>
2021-04-16 22:37:08 -04:00

18 lines
1.1 KiB
TypeScript

export { default as APIError } from './APIError';
export { default as AuthenticationError } from './AuthenticationError';
export { default as DuplicateCollection } from './DuplicateCollection';
export { default as DuplicateGlobal } from './DuplicateGlobal';
export { default as ErrorDeletingFile } from './ErrorDeletingFile';
export { default as errorHandler } from '../express/middleware/errorHandler';
export { default as FileUploadError } from './FileUploadError';
export { default as Forbidden } from './Forbidden';
export { default as LockedAuth } from './LockedAuth';
export { default as InvalidConfiguration } from './InvalidConfiguration';
export { default as InvalidFieldRelationship } from './InvalidFieldRelationship';
export { default as MissingCollectionLabel } from './MissingCollectionLabel';
export { default as MissingFieldInputOptions } from './MissingFieldInputOptions';
export { default as MissingFieldType } from './MissingFieldType';
export { default as MissingFile } from './MissingFile';
export { default as NotFound } from './NotFound';
export { default as ValidationError } from './ValidationError';