diff --git a/CHANGELOG.md b/CHANGELOG.md index 4601cb23b..484c21757 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,3 @@ +- Export param types (SecretParam, StringParam, etc.) from firebase-functions/params for type annotations. (#1789) +- Remove attemptDeadlineSeconds in v2 scheduled functions. (#1776) - Allow `JsonSecretParam` in function `secrets` option arrays. (#1788) diff --git a/src/params/index.ts b/src/params/index.ts index baef1c760..3542c98e9 100644 --- a/src/params/index.ts +++ b/src/params/index.ts @@ -40,7 +40,19 @@ import { } from "./types"; export { BUCKET_PICKER, select, multiSelect } from "./types"; -export type { TextInput, SelectInput, SelectOptions, MultiSelectInput } from "./types"; +export type { + TextInput, + SelectInput, + SelectOptions, + MultiSelectInput, + Param, + SecretParam, + JsonSecretParam, + StringParam, + BooleanParam, + IntParam, + ListParam, +} from "./types"; export { Expression }; export type { ParamOptions };