Skip to content

Commit

Permalink
fixes #1474: remove enforceAppCheck from HttpsOptions (#1477)
Browse files Browse the repository at this point in the history
* fixes #1474: remove enforceAppCheck from HttpsOptions

* Add changelog.

---------

Co-authored-by: Daniel Lee <danielylee@google.com>
Co-authored-by: Daniel Lee <taeold@gmail.com>
  • Loading branch information
3 people authored Aug 26, 2024
1 parent 0878a8a commit 11808f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Fix retry in event triggered functions. (#1463)
- Expose retry configuration in v2 RTDB trigger (#1588)
- Remove invalid `enforceAppCheck` option for v2 onRequest trigger (#1477)
2 changes: 1 addition & 1 deletion src/v2/providers/https.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export { Request, CallableRequest, FunctionsErrorCode, HttpsError };
/**
* Options that can be set on an onRequest HTTPS function.
*/
export interface HttpsOptions extends Omit<GlobalOptions, "region"> {
export interface HttpsOptions extends Omit<GlobalOptions, "region" | "enforceAppCheck"> {
/**
* If true, do not deploy or emulate this function.
*/
Expand Down

0 comments on commit 11808f2

Please sign in to comment.