Skip to content

Commit 341ff0d

Browse files
egilmorezmbleightaeoldinlined
authored
Adding new TOC entries. (#1122)
* half-hearted attempt at rushstack - much work to be done * Update deps, remove generated files. * Pretty * Adding tasks entries to TOC source. * Fixing per feedback and removing package-lock file (I hope). * Resolving package lock file. * Restore package-lock.json * Run formatter * Adding entries, possibly all of them now. * Adding fixes from linter. * Fixing typo. * Run formatter Co-authored-by: Michael Bleigh <[email protected]> Co-authored-by: Daniel Young Lee <[email protected]> Co-authored-by: Thomas Bouldin <[email protected]>
1 parent 5fda331 commit 341ff0d

File tree

3 files changed

+29
-2
lines changed

3 files changed

+29
-2
lines changed

docgen/content-sources/v1/toc.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ toc:
1414
path: /docs/reference/functions/cloud_functions.change.html
1515
- title: 'ChangeJson'
1616
path: /docs/reference/functions/cloud_functions.changejson.html
17+
- title: 'BlockingFunction'
18+
path: /docs/reference/functions/cloud_functions.blockingfunction.html
1719

1820
- title: 'functions.config'
1921
path: /docs/reference/functions/config.html
@@ -124,6 +126,8 @@ toc:
124126
path: /docs/reference/functions/providers_remoteconfig.remoteconfiguser.html
125127
- title: 'TemplateVersion'
126128
path: /docs/reference/functions/providers_remoteconfig.templateversion.html
129+
- title: 'UpdateBuilder'
130+
path: /docs/reference/functions/providers_remoteconfig.updatebuilder.html
127131

128132
- title: 'functions.storage'
129133
path: /docs/reference/functions/providers_storage.html
@@ -135,6 +139,24 @@ toc:
135139
- title: 'ObjectMetadata'
136140
path: /docs/reference/functions/providers_storage.objectmetadata.html
137141

142+
- title: 'functions.tasks'
143+
path: /docs/reference/functions/providers_tasks.html
144+
section:
145+
- title: AuthData
146+
path: /docs/reference/functions/common_providers_tasks.authdata.html
147+
- title: RateLimits
148+
path: /docs/reference/functions/common_providers_tasks.ratelimits.html
149+
- title: RetryConfig
150+
path: /docs/reference/functions/common_providers_tasks.retryconfig.html
151+
- title: TaskContext
152+
path: /docs/reference/functions/common_providers_tasks.taskcontext.html
153+
- title: TaskQueueBuilder
154+
path: /docs/reference/functions/providers_tasks.taskqueuebuilder.html
155+
- title: TaskQueueFunction
156+
path: /docs/reference/functions/providers_tasks.taskqueuefunction.html
157+
- title: TaskQueueOptions
158+
path: /docs/reference/functions/providers_tasks.taskqueueoptions.html
159+
138160
- title: 'functions.testLab'
139161
path: /docs/reference/functions/providers_testlab.html
140162
section:
@@ -152,3 +174,8 @@ toc:
152174
section:
153175
- title: 'HandlerBuilder'
154176
path: /docs/reference/functions/handler_builder.handlerbuilder.html
177+
178+
- heading: Test SDK for Cloud Functions for Firebase
179+
- title: firebase-functions-test
180+
section:
181+
- include: /docs/reference/functions/test/_toc.yaml

spec/v2/providers/https.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
// SOFTWARE.
2222

23-
import * as sinon from 'sinon';
2423
import { expect } from 'chai';
24+
import * as sinon from 'sinon';
2525

2626
import * as debug from '../../../src/common/debug';
2727
import * as options from '../../../src/v2/options';

src/v2/providers/https.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import * as cors from 'cors';
2929
import * as express from 'express';
3030
import { convertIfPresent, convertInvoker } from '../../common/encoding';
3131

32+
import { isDebugFeatureEnabled } from '../../common/debug';
3233
import {
3334
CallableRequest,
3435
FunctionsErrorCode,
@@ -39,7 +40,6 @@ import {
3940
import { ManifestEndpoint } from '../../runtime/manifest';
4041
import * as options from '../options';
4142
import { GlobalOptions, SupportedRegion } from '../options';
42-
import { isDebugFeatureEnabled } from '../../common/debug';
4343

4444
export { Request, CallableRequest, FunctionsErrorCode, HttpsError };
4545

0 commit comments

Comments
 (0)