Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 'request' from 'functions:shell' #5808

Merged
merged 21 commits into from
Nov 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
refactoring to pipe through body correctly
  • Loading branch information
joehan committed Nov 9, 2023
commit f4a571db68371c3f7de21485b02a37217c66a340
2 changes: 1 addition & 1 deletion src/apiv2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const CLI_VERSION: string = pkg.version;

const GOOG_QUOTA_USER = "x-goog-quota-user";

export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "PATCH" | "OPTIONS";
export type HttpMethod = "GET" | "PUT" | "POST" | "DELETE" | "PATCH" | "OPTIONS" | "HEAD";

interface BaseRequestOptions<T> extends VerbOptions {
method: HttpMethod;
Expand Down
1 change: 1 addition & 0 deletions src/emulator/functionsEmulatorRuntime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { CloudFunction, DeploymentOptions, https } from "firebase-functions";
import * as express from "express";
import * as path from "path";
import * as admin from "firebase-admin";
import { RemoteConfigTemplate } from "firebase-admin/remote-config";
import * as bodyParser from "body-parser";
import { pathToFileURL, URL } from "url";
import * as _ from "lodash";
Expand Down
263 changes: 0 additions & 263 deletions src/localFunction.js

This file was deleted.

Loading