firebase-functions 6.5.0 → 7.0.0-rc.0

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.
Files changed (157) hide show
  1. package/lib/_virtual/rolldown_runtime.js +34 -0
  2. package/lib/bin/firebase-functions.js +78 -103
  3. package/lib/common/app.js +35 -55
  4. package/lib/common/change.js +54 -75
  5. package/lib/common/config.js +41 -41
  6. package/lib/common/debug.js +23 -47
  7. package/lib/common/encoding.js +59 -82
  8. package/lib/common/onInit.js +26 -28
  9. package/lib/common/options.js +22 -42
  10. package/lib/common/params.d.ts +6 -6
  11. package/lib/common/params.js +0 -23
  12. package/lib/common/providers/database.js +270 -300
  13. package/lib/common/providers/firestore.js +66 -92
  14. package/lib/common/providers/https.d.ts +0 -1
  15. package/lib/common/providers/https.js +537 -539
  16. package/lib/common/providers/identity.js +393 -444
  17. package/lib/common/providers/tasks.js +64 -98
  18. package/lib/common/timezone.js +544 -542
  19. package/lib/common/trace.d.ts +0 -1
  20. package/lib/common/trace.js +63 -55
  21. package/lib/common/utilities/assertions.d.ts +11 -0
  22. package/lib/common/utilities/assertions.js +18 -0
  23. package/lib/common/utilities/encoder.js +20 -37
  24. package/lib/common/utilities/path-pattern.js +106 -132
  25. package/lib/common/utilities/path.js +28 -27
  26. package/lib/common/utilities/utils.js +23 -45
  27. package/lib/esm/_virtual/rolldown_runtime.mjs +16 -0
  28. package/lib/esm/bin/firebase-functions.mjs +91 -0
  29. package/lib/esm/common/app.mjs +39 -0
  30. package/lib/esm/common/change.mjs +57 -0
  31. package/lib/esm/common/config.mjs +45 -0
  32. package/lib/esm/common/debug.mjs +28 -0
  33. package/lib/esm/common/encoding.mjs +69 -0
  34. package/lib/esm/common/onInit.mjs +33 -0
  35. package/lib/esm/common/options.mjs +22 -0
  36. package/lib/esm/common/params.mjs +1 -0
  37. package/lib/esm/common/providers/database.mjs +269 -0
  38. package/lib/esm/common/providers/firestore.mjs +78 -0
  39. package/lib/esm/common/providers/https.mjs +573 -0
  40. package/lib/esm/common/providers/identity.mjs +428 -0
  41. package/lib/esm/common/providers/tasks.mjs +67 -0
  42. package/lib/esm/common/timezone.mjs +544 -0
  43. package/lib/esm/common/trace.mjs +73 -0
  44. package/lib/esm/common/utilities/assertions.mjs +17 -0
  45. package/lib/esm/common/utilities/encoder.mjs +21 -0
  46. package/lib/esm/common/utilities/path-pattern.mjs +116 -0
  47. package/lib/esm/common/utilities/path.mjs +35 -0
  48. package/lib/esm/common/utilities/utils.mjs +29 -0
  49. package/lib/esm/function-configuration.mjs +1 -0
  50. package/lib/esm/logger/common.mjs +23 -0
  51. package/lib/esm/logger/compat.mjs +25 -0
  52. package/lib/esm/logger/index.mjs +131 -0
  53. package/lib/esm/params/index.mjs +160 -0
  54. package/lib/esm/params/types.mjs +400 -0
  55. package/lib/esm/runtime/loader.mjs +132 -0
  56. package/lib/esm/runtime/manifest.mjs +134 -0
  57. package/lib/esm/types/global.d.mjs +1 -0
  58. package/lib/esm/v1/cloud-functions.mjs +206 -0
  59. package/lib/esm/v1/config.mjs +14 -0
  60. package/lib/esm/v1/function-builder.mjs +252 -0
  61. package/lib/esm/v1/function-configuration.mjs +72 -0
  62. package/lib/esm/v1/index.mjs +27 -0
  63. package/lib/esm/v1/providers/analytics.mjs +212 -0
  64. package/lib/esm/v1/providers/auth.mjs +156 -0
  65. package/lib/esm/v1/providers/database.mjs +243 -0
  66. package/lib/esm/v1/providers/firestore.mjs +131 -0
  67. package/lib/esm/v1/providers/https.mjs +82 -0
  68. package/lib/esm/v1/providers/pubsub.mjs +175 -0
  69. package/lib/esm/v1/providers/remoteConfig.mjs +64 -0
  70. package/lib/esm/v1/providers/storage.mjs +163 -0
  71. package/lib/esm/v1/providers/tasks.mjs +63 -0
  72. package/lib/esm/v1/providers/testLab.mjs +94 -0
  73. package/lib/esm/v2/core.mjs +4 -0
  74. package/lib/esm/v2/index.mjs +28 -0
  75. package/lib/esm/v2/options.mjs +102 -0
  76. package/lib/esm/v2/providers/alerts/alerts.mjs +85 -0
  77. package/lib/esm/v2/providers/alerts/appDistribution.mjs +75 -0
  78. package/lib/esm/v2/providers/alerts/billing.mjs +51 -0
  79. package/lib/esm/v2/providers/alerts/crashlytics.mjs +122 -0
  80. package/lib/esm/v2/providers/alerts/index.mjs +22 -0
  81. package/lib/esm/v2/providers/alerts/performance.mjs +66 -0
  82. package/lib/esm/v2/providers/database.mjs +197 -0
  83. package/lib/esm/v2/providers/dataconnect.mjs +130 -0
  84. package/lib/esm/v2/providers/eventarc.mjs +51 -0
  85. package/lib/esm/v2/providers/firestore.mjs +294 -0
  86. package/lib/esm/v2/providers/https.mjs +210 -0
  87. package/lib/esm/v2/providers/identity.mjs +103 -0
  88. package/lib/esm/v2/providers/pubsub.mjs +148 -0
  89. package/lib/esm/v2/providers/remoteConfig.mjs +52 -0
  90. package/lib/esm/v2/providers/scheduler.mjs +84 -0
  91. package/lib/esm/v2/providers/storage.mjs +155 -0
  92. package/lib/esm/v2/providers/tasks.mjs +65 -0
  93. package/lib/esm/v2/providers/testLab.mjs +53 -0
  94. package/lib/esm/v2/trace.mjs +20 -0
  95. package/lib/function-configuration.d.ts +0 -0
  96. package/lib/function-configuration.js +0 -0
  97. package/lib/logger/common.js +21 -41
  98. package/lib/logger/compat.js +18 -33
  99. package/lib/logger/index.js +119 -130
  100. package/lib/params/index.d.ts +19 -4
  101. package/lib/params/index.js +153 -129
  102. package/lib/params/types.d.ts +17 -0
  103. package/lib/params/types.js +390 -382
  104. package/lib/runtime/loader.js +114 -148
  105. package/lib/runtime/manifest.js +106 -126
  106. package/lib/types/global.d.js +0 -0
  107. package/lib/v1/cloud-functions.d.ts +2 -2
  108. package/lib/v1/cloud-functions.js +193 -241
  109. package/lib/v1/config.d.ts +4 -7
  110. package/lib/v1/config.js +13 -75
  111. package/lib/v1/function-builder.js +239 -368
  112. package/lib/v1/function-configuration.js +70 -63
  113. package/lib/v1/index.js +118 -73
  114. package/lib/v1/providers/analytics.js +189 -210
  115. package/lib/v1/providers/auth.d.ts +2 -1
  116. package/lib/v1/providers/auth.js +159 -164
  117. package/lib/v1/providers/database.js +237 -242
  118. package/lib/v1/providers/firestore.js +131 -130
  119. package/lib/v1/providers/https.d.ts +2 -1
  120. package/lib/v1/providers/https.js +79 -86
  121. package/lib/v1/providers/pubsub.js +175 -172
  122. package/lib/v1/providers/remoteConfig.js +64 -68
  123. package/lib/v1/providers/storage.js +161 -163
  124. package/lib/v1/providers/tasks.d.ts +1 -1
  125. package/lib/v1/providers/tasks.js +65 -80
  126. package/lib/v1/providers/testLab.js +94 -94
  127. package/lib/v2/core.d.ts +1 -1
  128. package/lib/v2/core.js +5 -32
  129. package/lib/v2/index.d.ts +6 -3
  130. package/lib/v2/index.js +123 -75
  131. package/lib/v2/options.js +88 -114
  132. package/lib/v2/providers/alerts/alerts.js +76 -95
  133. package/lib/v2/providers/alerts/appDistribution.js +73 -78
  134. package/lib/v2/providers/alerts/billing.js +49 -53
  135. package/lib/v2/providers/alerts/crashlytics.js +110 -102
  136. package/lib/v2/providers/alerts/index.js +56 -53
  137. package/lib/v2/providers/alerts/performance.js +64 -74
  138. package/lib/v2/providers/database.js +177 -180
  139. package/lib/v2/providers/dataconnect.d.ts +95 -0
  140. package/lib/v2/providers/dataconnect.js +137 -0
  141. package/lib/v2/providers/eventarc.js +55 -77
  142. package/lib/v2/providers/firestore.js +262 -260
  143. package/lib/v2/providers/https.d.ts +3 -2
  144. package/lib/v2/providers/https.js +210 -247
  145. package/lib/v2/providers/identity.d.ts +2 -1
  146. package/lib/v2/providers/identity.js +96 -105
  147. package/lib/v2/providers/pubsub.js +149 -167
  148. package/lib/v2/providers/remoteConfig.js +54 -63
  149. package/lib/v2/providers/scheduler.js +84 -96
  150. package/lib/v2/providers/storage.js +147 -162
  151. package/lib/v2/providers/tasks.d.ts +1 -1
  152. package/lib/v2/providers/tasks.js +68 -95
  153. package/lib/v2/providers/testLab.js +55 -64
  154. package/lib/v2/trace.js +18 -19
  155. package/package.json +290 -226
  156. package/protos/compiledFirestore.mjs +3512 -0
  157. package/protos/update.sh +28 -7
@@ -1,73 +1,80 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MAX_NUMBER_USER_LABELS = exports.DEFAULT_FAILURE_POLICY = exports.INGRESS_SETTINGS_OPTIONS = exports.VPC_EGRESS_SETTINGS_OPTIONS = exports.VALID_MEMORY_OPTIONS = exports.MAX_TIMEOUT_SECONDS = exports.MIN_TIMEOUT_SECONDS = exports.SUPPORTED_REGIONS = exports.RESET_VALUE = void 0;
4
- var options_1 = require("../common/options");
5
- Object.defineProperty(exports, "RESET_VALUE", { enumerable: true, get: function () { return options_1.RESET_VALUE; } });
1
+ const require_common_options = require('../common/options.js');
2
+
3
+ //#region src/v1/function-configuration.ts
6
4
  /**
7
- * List of all regions supported by Cloud Functions.
8
- */
9
- exports.SUPPORTED_REGIONS = [
10
- "us-central1",
11
- "us-east1",
12
- "us-east4",
13
- "us-west2",
14
- "us-west3",
15
- "us-west4",
16
- "europe-central2",
17
- "europe-west1",
18
- "europe-west2",
19
- "europe-west3",
20
- "europe-west6",
21
- "asia-east1",
22
- "asia-east2",
23
- "asia-northeast1",
24
- "asia-northeast2",
25
- "asia-northeast3",
26
- "asia-south1",
27
- "asia-southeast1",
28
- "asia-southeast2",
29
- "northamerica-northeast1",
30
- "southamerica-east1",
31
- "australia-southeast1",
5
+ * List of all regions supported by Cloud Functions.
6
+ */
7
+ const SUPPORTED_REGIONS = [
8
+ "us-central1",
9
+ "us-east1",
10
+ "us-east4",
11
+ "us-west2",
12
+ "us-west3",
13
+ "us-west4",
14
+ "europe-central2",
15
+ "europe-west1",
16
+ "europe-west2",
17
+ "europe-west3",
18
+ "europe-west6",
19
+ "asia-east1",
20
+ "asia-east2",
21
+ "asia-northeast1",
22
+ "asia-northeast2",
23
+ "asia-northeast3",
24
+ "asia-south1",
25
+ "asia-southeast1",
26
+ "asia-southeast2",
27
+ "northamerica-northeast1",
28
+ "southamerica-east1",
29
+ "australia-southeast1"
32
30
  ];
33
31
  /**
34
- * Cloud Functions min timeout value.
35
- */
36
- exports.MIN_TIMEOUT_SECONDS = 0;
32
+ * Cloud Functions min timeout value.
33
+ */
34
+ const MIN_TIMEOUT_SECONDS = 0;
37
35
  /**
38
- * Cloud Functions max timeout value.
39
- */
40
- exports.MAX_TIMEOUT_SECONDS = 540;
36
+ * Cloud Functions max timeout value.
37
+ */
38
+ const MAX_TIMEOUT_SECONDS = 540;
41
39
  /**
42
- * List of available memory options supported by Cloud Functions.
43
- */
44
- exports.VALID_MEMORY_OPTIONS = [
45
- "128MB",
46
- "256MB",
47
- "512MB",
48
- "1GB",
49
- "2GB",
50
- "4GB",
51
- "8GB",
40
+ * List of available memory options supported by Cloud Functions.
41
+ */
42
+ const VALID_MEMORY_OPTIONS = [
43
+ "128MB",
44
+ "256MB",
45
+ "512MB",
46
+ "1GB",
47
+ "2GB",
48
+ "4GB",
49
+ "8GB"
52
50
  ];
53
51
  /**
54
- * List of available options for VpcConnectorEgressSettings.
55
- */
56
- exports.VPC_EGRESS_SETTINGS_OPTIONS = [
57
- "VPC_CONNECTOR_EGRESS_SETTINGS_UNSPECIFIED",
58
- "PRIVATE_RANGES_ONLY",
59
- "ALL_TRAFFIC",
52
+ * List of available options for VpcConnectorEgressSettings.
53
+ */
54
+ const VPC_EGRESS_SETTINGS_OPTIONS = [
55
+ "VPC_CONNECTOR_EGRESS_SETTINGS_UNSPECIFIED",
56
+ "PRIVATE_RANGES_ONLY",
57
+ "ALL_TRAFFIC"
60
58
  ];
61
59
  /**
62
- * List of available options for IngressSettings.
63
- */
64
- exports.INGRESS_SETTINGS_OPTIONS = [
65
- "INGRESS_SETTINGS_UNSPECIFIED",
66
- "ALLOW_ALL",
67
- "ALLOW_INTERNAL_ONLY",
68
- "ALLOW_INTERNAL_AND_GCLB",
60
+ * List of available options for IngressSettings.
61
+ */
62
+ const INGRESS_SETTINGS_OPTIONS = [
63
+ "INGRESS_SETTINGS_UNSPECIFIED",
64
+ "ALLOW_ALL",
65
+ "ALLOW_INTERNAL_ONLY",
66
+ "ALLOW_INTERNAL_AND_GCLB"
69
67
  ];
70
- exports.DEFAULT_FAILURE_POLICY = {
71
- retry: {},
72
- };
73
- exports.MAX_NUMBER_USER_LABELS = 58;
68
+ const DEFAULT_FAILURE_POLICY = { retry: {} };
69
+ const MAX_NUMBER_USER_LABELS = 58;
70
+
71
+ //#endregion
72
+ exports.DEFAULT_FAILURE_POLICY = DEFAULT_FAILURE_POLICY;
73
+ exports.INGRESS_SETTINGS_OPTIONS = INGRESS_SETTINGS_OPTIONS;
74
+ exports.MAX_NUMBER_USER_LABELS = MAX_NUMBER_USER_LABELS;
75
+ exports.MAX_TIMEOUT_SECONDS = MAX_TIMEOUT_SECONDS;
76
+ exports.MIN_TIMEOUT_SECONDS = MIN_TIMEOUT_SECONDS;
77
+ exports.RESET_VALUE = require_common_options.RESET_VALUE;
78
+ exports.SUPPORTED_REGIONS = SUPPORTED_REGIONS;
79
+ exports.VALID_MEMORY_OPTIONS = VALID_MEMORY_OPTIONS;
80
+ exports.VPC_EGRESS_SETTINGS_OPTIONS = VPC_EGRESS_SETTINGS_OPTIONS;
package/lib/v1/index.js CHANGED
@@ -1,73 +1,118 @@
1
- "use strict";
2
- // The MIT License (MIT)
3
- //
4
- // Copyright (c) 2017 Firebase
5
- //
6
- // Permission is hereby granted, free of charge, to any person obtaining a copy
7
- // of this software and associated documentation files (the "Software"), to deal
8
- // in the Software without restriction, including without limitation the rights
9
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- // copies of the Software, and to permit persons to whom the Software is
11
- // furnished to do so, subject to the following conditions:
12
- //
13
- // The above copyright notice and this permission notice shall be included in all
14
- // copies or substantial portions of the Software.
15
- //
16
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- // SOFTWARE.
23
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
24
- if (k2 === undefined) k2 = k;
25
- var desc = Object.getOwnPropertyDescriptor(m, k);
26
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
27
- desc = { enumerable: true, get: function() { return m[k]; } };
28
- }
29
- Object.defineProperty(o, k2, desc);
30
- }) : (function(o, m, k, k2) {
31
- if (k2 === undefined) k2 = k;
32
- o[k2] = m[k];
33
- }));
34
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
35
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
36
- };
37
- Object.defineProperty(exports, "__esModule", { value: true });
38
- exports.onInit = exports.params = exports.app = exports.logger = exports.testLab = exports.tasks = exports.storage = exports.remoteConfig = exports.pubsub = exports.https = exports.firestore = exports.database = exports.auth = exports.analytics = void 0;
39
- // Providers:
40
- const logger = require("../logger");
41
- exports.logger = logger;
42
- const analytics = require("./providers/analytics");
43
- exports.analytics = analytics;
44
- const auth = require("./providers/auth");
45
- exports.auth = auth;
46
- const database = require("./providers/database");
47
- exports.database = database;
48
- const firestore = require("./providers/firestore");
49
- exports.firestore = firestore;
50
- const https = require("./providers/https");
51
- exports.https = https;
52
- const pubsub = require("./providers/pubsub");
53
- exports.pubsub = pubsub;
54
- const remoteConfig = require("./providers/remoteConfig");
55
- exports.remoteConfig = remoteConfig;
56
- const storage = require("./providers/storage");
57
- exports.storage = storage;
58
- const tasks = require("./providers/tasks");
59
- exports.tasks = tasks;
60
- const testLab = require("./providers/testLab");
61
- exports.testLab = testLab;
62
- const app_1 = require("../common/app");
63
- exports.app = { setEmulatedAdminApp: app_1.setApp };
64
- // Exported root types:
65
- __exportStar(require("./cloud-functions"), exports);
66
- __exportStar(require("./config"), exports);
67
- __exportStar(require("./function-builder"), exports);
68
- __exportStar(require("./function-configuration"), exports);
69
- // NOTE: Equivalent to `export * as params from "../params"` but api-extractor doesn't support that syntax.
70
- const params = require("../params");
71
- exports.params = params;
72
- var onInit_1 = require("../common/onInit");
73
- Object.defineProperty(exports, "onInit", { enumerable: true, get: function () { return onInit_1.onInit; } });
1
+ const require_logger_index = require('../logger/index.js');
2
+ const require_params_index = require('../params/index.js');
3
+ const require_common_options = require('../common/options.js');
4
+ const require_common_config = require('../common/config.js');
5
+ const require_common_app = require('../common/app.js');
6
+ const require_common_change = require('../common/change.js');
7
+ const require_common_onInit = require('../common/onInit.js');
8
+ const require_v1_function_configuration = require('./function-configuration.js');
9
+ const require_v1_cloud_functions = require('./cloud-functions.js');
10
+ const require_v1_config = require('./config.js');
11
+ const require_v1_providers_analytics = require('./providers/analytics.js');
12
+ const require_v1_providers_auth = require('./providers/auth.js');
13
+ const require_v1_providers_database = require('./providers/database.js');
14
+ const require_v1_providers_firestore = require('./providers/firestore.js');
15
+ const require_v1_providers_https = require('./providers/https.js');
16
+ const require_v1_providers_pubsub = require('./providers/pubsub.js');
17
+ const require_v1_providers_remoteConfig = require('./providers/remoteConfig.js');
18
+ const require_v1_providers_storage = require('./providers/storage.js');
19
+ const require_v1_providers_tasks = require('./providers/tasks.js');
20
+ const require_v1_providers_testLab = require('./providers/testLab.js');
21
+ const require_v1_function_builder = require('./function-builder.js');
22
+
23
+ //#region src/v1/index.ts
24
+ const app = { setEmulatedAdminApp: require_common_app.setApp };
25
+
26
+ //#endregion
27
+ exports.Change = require_common_change.Change;
28
+ exports.DEFAULT_FAILURE_POLICY = require_v1_function_configuration.DEFAULT_FAILURE_POLICY;
29
+ exports.FunctionBuilder = require_v1_function_builder.FunctionBuilder;
30
+ exports.INGRESS_SETTINGS_OPTIONS = require_v1_function_configuration.INGRESS_SETTINGS_OPTIONS;
31
+ exports.MAX_NUMBER_USER_LABELS = require_v1_function_configuration.MAX_NUMBER_USER_LABELS;
32
+ exports.MAX_TIMEOUT_SECONDS = require_v1_function_configuration.MAX_TIMEOUT_SECONDS;
33
+ exports.MIN_TIMEOUT_SECONDS = require_v1_function_configuration.MIN_TIMEOUT_SECONDS;
34
+ exports.RESET_VALUE = require_common_options.RESET_VALUE;
35
+ exports.SUPPORTED_REGIONS = require_v1_function_configuration.SUPPORTED_REGIONS;
36
+ exports.VALID_MEMORY_OPTIONS = require_v1_function_configuration.VALID_MEMORY_OPTIONS;
37
+ exports.VPC_EGRESS_SETTINGS_OPTIONS = require_v1_function_configuration.VPC_EGRESS_SETTINGS_OPTIONS;
38
+ Object.defineProperty(exports, 'analytics', {
39
+ enumerable: true,
40
+ get: function () {
41
+ return require_v1_providers_analytics.analytics_exports;
42
+ }
43
+ });
44
+ exports.app = app;
45
+ Object.defineProperty(exports, 'auth', {
46
+ enumerable: true,
47
+ get: function () {
48
+ return require_v1_providers_auth.auth_exports;
49
+ }
50
+ });
51
+ exports.config = require_v1_config.config;
52
+ Object.defineProperty(exports, 'database', {
53
+ enumerable: true,
54
+ get: function () {
55
+ return require_v1_providers_database.database_exports;
56
+ }
57
+ });
58
+ exports.firebaseConfig = require_common_config.firebaseConfig;
59
+ Object.defineProperty(exports, 'firestore', {
60
+ enumerable: true,
61
+ get: function () {
62
+ return require_v1_providers_firestore.firestore_exports;
63
+ }
64
+ });
65
+ Object.defineProperty(exports, 'https', {
66
+ enumerable: true,
67
+ get: function () {
68
+ return require_v1_providers_https.https_exports;
69
+ }
70
+ });
71
+ Object.defineProperty(exports, 'logger', {
72
+ enumerable: true,
73
+ get: function () {
74
+ return require_logger_index.logger_exports;
75
+ }
76
+ });
77
+ exports.makeCloudFunction = require_v1_cloud_functions.makeCloudFunction;
78
+ exports.onInit = require_common_onInit.onInit;
79
+ exports.optionsToEndpoint = require_v1_cloud_functions.optionsToEndpoint;
80
+ exports.optionsToTrigger = require_v1_cloud_functions.optionsToTrigger;
81
+ Object.defineProperty(exports, 'params', {
82
+ enumerable: true,
83
+ get: function () {
84
+ return require_params_index.params_exports;
85
+ }
86
+ });
87
+ Object.defineProperty(exports, 'pubsub', {
88
+ enumerable: true,
89
+ get: function () {
90
+ return require_v1_providers_pubsub.pubsub_exports;
91
+ }
92
+ });
93
+ exports.region = require_v1_function_builder.region;
94
+ Object.defineProperty(exports, 'remoteConfig', {
95
+ enumerable: true,
96
+ get: function () {
97
+ return require_v1_providers_remoteConfig.remoteConfig_exports;
98
+ }
99
+ });
100
+ exports.runWith = require_v1_function_builder.runWith;
101
+ Object.defineProperty(exports, 'storage', {
102
+ enumerable: true,
103
+ get: function () {
104
+ return require_v1_providers_storage.storage_exports;
105
+ }
106
+ });
107
+ Object.defineProperty(exports, 'tasks', {
108
+ enumerable: true,
109
+ get: function () {
110
+ return require_v1_providers_tasks.tasks_exports;
111
+ }
112
+ });
113
+ Object.defineProperty(exports, 'testLab', {
114
+ enumerable: true,
115
+ get: function () {
116
+ return require_v1_providers_testLab.testLab_exports;
117
+ }
118
+ });