Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b5e07c9
half-hearted attempt at rushstack - much work to be done
mbleigh Sep 8, 2021
a3f67a7
Merge branch 'master' of github.com:firebase/firebase-functions into …
mbleigh Oct 4, 2021
2218f5f
Merge branch 'master' into mb-rushstack
taeold Apr 1, 2022
952ad2a
Update deps, remove generated files.
taeold Apr 1, 2022
4a7fa24
Pretty
taeold Apr 11, 2022
0c61f0d
I don't really want to commit this and I wish changes would stop occu…
egilmorez May 7, 2022
d0ca10a
Merge branch 'master' of github.com:firebase/firebase-functions into …
egilmorez May 7, 2022
96f975b
Merge branch 'master' of github.com:firebase/firebase-functions into …
egilmorez May 10, 2022
dadcbea
Merge branch 'master' of github.com:firebase/firebase-functions into …
egilmorez May 10, 2022
524f7b4
Adding tasks entries to TOC source.
egilmorez May 10, 2022
4fdab74
Merge branch 'master' into eg-docgen-v1
egilmorez May 10, 2022
4c085ab
Fixing per feedback and removing package-lock file (I hope).
egilmorez May 10, 2022
f641e2c
Merge branch 'eg-docgen-v1' of github.com:firebase/firebase-functions…
egilmorez May 10, 2022
1c77f36
Resolving package lock file.
egilmorez May 10, 2022
9d1f990
Merge branch 'master' of github.com:firebase/firebase-functions into …
egilmorez May 10, 2022
4cca137
Merge branch 'master' into eg-docgen-v1
inlined May 10, 2022
7f4050a
Restore package-lock.json
inlined May 10, 2022
f6ee1eb
Run formatter
inlined May 10, 2022
e0f5ed7
Adding entries, possibly all of them now.
egilmorez May 10, 2022
f62af59
Merging.
egilmorez May 10, 2022
c2e81bf
Adding fixes from linter.
egilmorez May 10, 2022
bb1c681
Fixing typo.
egilmorez May 10, 2022
24ad34a
Run formatter
inlined May 11, 2022
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
27 changes: 27 additions & 0 deletions docgen/content-sources/v1/toc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ toc:
path: /docs/reference/functions/cloud_functions.change.html
- title: 'ChangeJson'
path: /docs/reference/functions/cloud_functions.changejson.html
- title: 'BlockingFunction'
path: /docs/reference/functions/cloud_functions.blockingfunction.html

- title: 'functions.config'
path: /docs/reference/functions/config.html
Expand Down Expand Up @@ -124,6 +126,8 @@ toc:
path: /docs/reference/functions/providers_remoteconfig.remoteconfiguser.html
- title: 'TemplateVersion'
path: /docs/reference/functions/providers_remoteconfig.templateversion.html
- title: 'UpdateBuilder'
path: /docs/reference/functions/providers_remoteconfig.updatebuilder.html

- title: 'functions.storage'
path: /docs/reference/functions/providers_storage.html
Expand All @@ -135,6 +139,24 @@ toc:
- title: 'ObjectMetadata'
path: /docs/reference/functions/providers_storage.objectmetadata.html

- title: 'functions.tasks'
path: /docs/reference/functions/providers_tasks.html
section:
- title: AuthData
path: /docs/reference/functions/common_providers_tasks.authdata.html
- title: RateLimits
path: /docs/reference/functions/common_providers_tasks.ratelimits.html
- title: RetryConfig
path: /docs/reference/functions/common_providers_tasks.retryconfig.html
- title: TaskContext
path: /docs/reference/functions/common_providers_tasks.taskcontext.html
- title: TaskQueueBuilder
path: /docs/reference/functions/providers_tasks.taskqueuebuilder.html
- title: TaskQueueFunction
path: /docs/reference/functions/providers_tasks.taskqueuefunction.html
- title: TaskQueueOptions
path: /docs/reference/functions/providers_tasks.taskqueueoptions.html

- title: 'functions.testLab'
path: /docs/reference/functions/providers_testlab.html
section:
Expand All @@ -152,3 +174,8 @@ toc:
section:
- title: 'HandlerBuilder'
path: /docs/reference/functions/handler_builder.handlerbuilder.html

- heading: Test SDK for Cloud Functions for Firebase
- title: firebase-functions-test
section:
- include: /docs/reference/functions/test/_toc.yaml
2 changes: 1 addition & 1 deletion spec/v2/providers/https.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.

import * as sinon from 'sinon';
import { expect } from 'chai';
import * as sinon from 'sinon';

import * as debug from '../../../src/common/debug';
import * as options from '../../../src/v2/options';
Expand Down
2 changes: 1 addition & 1 deletion src/v2/providers/https.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import * as cors from 'cors';
import * as express from 'express';
import { convertIfPresent, convertInvoker } from '../../common/encoding';

import { isDebugFeatureEnabled } from '../../common/debug';
import {
CallableRequest,
FunctionsErrorCode,
Expand All @@ -39,7 +40,6 @@ import {
import { ManifestEndpoint } from '../../runtime/manifest';
import * as options from '../options';
import { GlobalOptions, SupportedRegion } from '../options';
import { isDebugFeatureEnabled } from '../../common/debug';

export { Request, CallableRequest, FunctionsErrorCode, HttpsError };

Expand Down