lore-hook-connections

Allows you to describe the APIs your application will be consuming

casingStyle

Casing style used by the framework when composing API endpoints.

Since models are camelCased in Lore, the framework assumed the server uses camelCasing as well. For example, if you have a model called bookAuthor, and pluralization is turned off, the framework will assume the endpoint is located at /bookAuthor. If the endpoint is something else, like /book_authoryou will need to tell the framework to modify its convention.

casingStyle |  endpoint
---------------------------
  camel     |  /book_author
  kebab     |  /book-author
  pascal    |  /bookAuthor
  snake     |  /BookAuthor