Skip to content

Latest commit

 

History

History
140 lines (76 loc) · 2.62 KB

CHANGELOG.md

File metadata and controls

140 lines (76 loc) · 2.62 KB

@proofgeist/fmdapi

3.3.2

Patch Changes

  • don't rename limit param for find request

3.3.1

Patch Changes

  • fix offset param in find queries

3.3.0

Minor Changes

  • Add support for OttoFMS proxy

3.2.15

Patch Changes

  • e4d536e: Update findAll method similar to listAll method; offset fix
  • 08e951d: Fix ReferenceError: __dirname is not defined

3.2.14

Patch Changes

  • fix: remove offset if 0

3.2.13

Patch Changes

  • fix: listAll pagination offset

3.2.10

Patch Changes

  • use absolute imports

3.2.9

Patch Changes

  • remove node-fetch dep

3.2.8

Patch Changes

  • update packages

3.2.7

Patch Changes

  • add types decl to package.json

3.2.4

Patch Changes

  • improve exports

3.2.3

Patch Changes

  • add wv path to export
  • 4fff462: allow no params to listAll method

3.2.2

Patch Changes

  • b604cf6: remove webviewer import from main index

3.2.1

Patch Changes

  • 8146800: add removeFMTableNames to main export

3.2.0

Minor Changes

  • 30aa8a9: Add WebViewer Client You can now use easily use this package with FileMaker webviewer integrations! Simply add @proofgeist/fm-webviewer-fetch to your project and specify the FM Script Name that runs the Execute Data API command in the fmschema.config file. Now you'll have autogenerated types for your FileMaker layouts but without sending calls via the network!

3.1.0

Minor Changes

  • c4f2345: Support portal fields in query type

Patch Changes

  • 8fd05d8: fix: add more error trapping when importing config file in codegen CLI

3.0.10

Patch Changes

  • 6745dd2: fix Codegen on Windows systems

3.0.9

Patch Changes

  • fix: remove fetch param from passing through to FM

3.0.8

  • fix: file return types to conform to zod validator
  • fix: if no token store is provided, default memory store was not being imported correctly
  • fix: memory token store would throw error during zod validation
  • add back default export
  • support commonJS and module imports in codegen cli
  • improve cli, supports .mjs config file by default
  • 129f9a6: fix codegen import

3.0.0

Major Changes

  • 5c2f0d2: Use native fetch (Node 18+).

    This package now requires Node 18+ and no longer relys on the node-fetch package. Each method supports passing additional options to the fetch function via the fetch parameter. This is useful if used within a framework that overrides the global fetch function (such as Next.js).

Minor Changes

  • 5c2f0d2: Custom functions to override where the temporary access token is stored
  • add LocalStorage and Upstash helper methods for token store