Skip to content

chore(firestore-record-acknowledgments): upgrade to node18 #61

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions extensions/firestore-record-acknowledgments/extension.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,39 +26,39 @@ resources:
description: Returns the latest notice document type along with any acknowledgment documents. Optionally, a version can be specified to return a specific notice.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: acknowledgeNotice
type: firebaseextensions.v1beta.function
description: Acknowledges a notice by ID.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: unacknowledgeNotice
type: firebaseextensions.v1beta.function
description: Unacknowledges a notice by ID.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: getAcknowledgments
type: firebaseextensions.v1beta.function
description: Returns a list of all acknowledgments in creation order, including the notice document.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}

- name: createIndex
type: firebaseextensions.v1beta.function
description: A function used to help with creating Firestore indices that are required for this extension.
properties:
location: ${LOCATION}
runtime: nodejs14
runtime: nodejs18
httpsTrigger: {}
params:
- param: LOCATION
Expand Down