firebase-functions 3.17.0 → 3.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1,47 @@
1
- export {};
1
+ /**
2
+ * An definition of a function as appears in the Manifest.
3
+ */
4
+ export interface ManifestEndpoint {
5
+ entryPoint?: string;
6
+ region?: string[];
7
+ platform?: string;
8
+ availableMemoryMb?: number;
9
+ maxInstances?: number;
10
+ minInstances?: number;
11
+ concurrency?: number;
12
+ serviceAccountEmail?: string;
13
+ timeoutSeconds?: number;
14
+ vpc?: {
15
+ connector: string;
16
+ egressSettings?: string;
17
+ };
18
+ labels?: Record<string, string>;
19
+ ingressSettings?: string;
20
+ environmentVariables?: Record<string, string>;
21
+ httpsTrigger?: {
22
+ invoker?: string[];
23
+ };
24
+ callableTrigger?: {};
25
+ eventTrigger?: {
26
+ eventFilters: Record<string, string>;
27
+ eventType: string;
28
+ retry: boolean;
29
+ region?: string;
30
+ serviceAccountEmail?: string;
31
+ };
32
+ scheduleTrigger?: {
33
+ schedule?: string;
34
+ timezone?: string;
35
+ retryConfig?: {
36
+ retryCount?: number;
37
+ maxRetryDuration?: string;
38
+ minBackoffDuration?: string;
39
+ maxBackoffDuration?: string;
40
+ maxDoublings?: number;
41
+ };
42
+ };
43
+ }
44
+ export interface ManifestRequiredAPI {
45
+ api: string;
46
+ reason: string;
47
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-functions",
3
- "version": "3.17.0",
3
+ "version": "3.17.1",
4
4
  "description": "Firebase SDK for Cloud Functions",
5
5
  "keywords": [
6
6
  "firebase",