diff --git a/firestore-translate-text/CHANGELOG.md b/firestore-translate-text/CHANGELOG.md index 90a5ab7ce..1cf13b3e7 100644 --- a/firestore-translate-text/CHANGELOG.md +++ b/firestore-translate-text/CHANGELOG.md @@ -1,3 +1,7 @@ +## Version 0.1.16 + +fix - temporarily disable backfill feature + ## Version 0.1.15 fix - handle array values correctly in backfill diff --git a/firestore-translate-text/README.md b/firestore-translate-text/README.md index 9be746c0b..1249082da 100644 --- a/firestore-translate-text/README.md +++ b/firestore-translate-text/README.md @@ -79,7 +79,7 @@ To install an extension, your project must be on the [Blaze (pay as you go) plan * **fstranslate:** Listens for writes of new strings to your specified Cloud Firestore collection, translates the strings, then writes the translated strings back to the same document. -* **fstranslatebackfill:** Searches your specified Cloud Firestore collection for existing documents, translates the strings into any missing languages, then writes the translated strings back to the same document. + diff --git a/firestore-translate-text/extension.yaml b/firestore-translate-text/extension.yaml index 7fa725605..fd272c0c1 100644 --- a/firestore-translate-text/extension.yaml +++ b/firestore-translate-text/extension.yaml @@ -13,7 +13,7 @@ # limitations under the License. name: firestore-translate-text -version: 0.1.15 +version: 0.1.16 specVersion: v1beta tags: [ai] @@ -130,19 +130,19 @@ params: default: languages required: false - - param: DO_BACKFILL - label: Translate existing documents? - description: > - Should existing documents in the Firestore collection be translated as - well? If you've added new languages since a document was translated, this - will fill those in as well. - type: select - required: true - options: - - label: Yes - value: true - - label: No - value: false + # - param: DO_BACKFILL + # label: Translate existing documents? + # description: > + # Should existing documents in the Firestore collection be translated as + # well? If you've added new languages since a document was translated, this + # will fill those in as well. + # type: select + # required: true + # options: + # - label: Yes + # value: true + # - label: No + # value: false events: - type: firebase.extensions.firestore-translate-text.v1.onStart @@ -164,14 +164,13 @@ events: description: Occurs when the function is settled. Provides no customized data other than the context. - -lifecycleEvents: - onInstall: - function: fstranslatebackfill - processingMessage: "Translating existing documents in ${COLLECTION_PATH}" - onUpdate: - function: fstranslatebackfill - processingMessage: "Translating existing documents in ${COLLECTION_PATH}" - onConfigure: - function: fstranslatebackfill - processingMessage: "Translating existing documents in ${COLLECTION_PATH}" +# lifecycleEvents: +# onInstall: +# function: fstranslatebackfill +# processingMessage: "Translating existing documents in ${COLLECTION_PATH}" +# onUpdate: +# function: fstranslatebackfill +# processingMessage: "Translating existing documents in ${COLLECTION_PATH}" +# onConfigure: +# function: fstranslatebackfill +# processingMessage: "Translating existing documents in ${COLLECTION_PATH}"