Compare commits

..

2 Commits

Author SHA1 Message Date
AllenTJ7
66a65aed38 Update firebase.json 2025-05-20 16:16:21 +05:30
AllenTJ7
4ce107c4af Update index.ts 2025-05-20 16:16:18 +05:30
2 changed files with 3 additions and 1 deletions

View File

@ -7,7 +7,6 @@
{ {
"source": "functions", "source": "functions",
"codebase": "default", "codebase": "default",
"timeoutSeconds": 360,
"ignore": [ "ignore": [
"node_modules", "node_modules",
".git", ".git",

View File

@ -6,3 +6,6 @@ export { processNotificationOnCreate } from './notifications';
export * from './payments'; export * from './payments';
export { getPlaceDetails, getPlacesAutocomplete } from './places'; export { getPlaceDetails, getPlacesAutocomplete } from './places';
export { registerClient } from './clientRegistration'; export { registerClient } from './clientRegistration';
import { setGlobalOptions } from "firebase-functions/v2";
setGlobalOptions({ timeoutSeconds: 300 });