Sassan Haradji

Results 136 comments of Sassan Haradji

@chenliyang1024 The name of the event is changed to "pdfplum.firestore-pdf-generator.v1.complete" in this version, the "firebase.extensions." prefix is dropped.

For reference, this breaking change is done so that pdfplum event names are aligned with the conventions mentioned in [this piece of documentation](https://firebase.google.com/docs/extensions/publishers/user-hooks#eventarc) about naming the events: > The type...

Sample working code for a function triggered by the event: ```typescript import {onCustomEventPublished} from "firebase-functions/v2/eventarc"; import * as logger from "firebase-functions/logger"; export const eventhandler = onCustomEventPublished( "pdfplum.http-pdf-generator.v1.complete", (event) => {...

0.17.1 is released, we can reopen this if the issue is not resolved.

Are you checking the logs in https://console.cloud.google.com/logs? What is your log query? Try emptying the query (checking logs with no filters). When you open the logs from the extension page,...

What is your log query? I mean the text in this box:

@chenliyang1024 Did it eventually work for you?

I'm sorry if it is still an issue for you, but I just tested this throughly as part of testing [another issue](https://github.com/pdfplum/pdfplum/issues/38) and I saw all events are dispatched as...

It must have been so frustrating to spend a week trying to make it work. I'm really sorry to hear about this. I will quickly check the Firebase version and...

One issue I immediately notice is you are putting all the data in a map field named `data`, this is not the correct data structure for the Firebase version, all...