├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ ├── scripts │ └── install-firebase-cli.sh │ ├── storage-image-processing-api.yaml │ └── validate.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── _emulator ├── .firebaserc ├── .gitignore ├── extensions │ ├── export-user-data.env │ ├── firestore-huggingface-inference-api.env │ ├── firestore-record-acknowledgments.env │ └── image-processing-api.env ├── firebase.json └── storage.rules ├── dictionary.js ├── docs.json ├── docs ├── .gitkeep ├── export-user-data │ ├── index.mdx │ ├── reference.mdx │ └── usage.mdx ├── firestore-record-acknowledgments │ ├── assets │ │ └── admin-dashboard-example.png │ ├── index.mdx │ ├── reference.mdx │ └── utility-library.mdx ├── image-processing-api │ ├── caching.mdx │ ├── error-handling.mdx │ ├── index.mdx │ ├── input.mdx │ ├── operations.mdx │ ├── output.mdx │ ├── types │ │ ├── blend.mdx │ │ ├── colorspace.mdx │ │ ├── compression.mdx │ │ ├── gravity.mdx │ │ ├── index.mdx │ │ ├── interpolator.mdx │ │ ├── operationResizeFit.mdx │ │ ├── operationResizeKernel.mdx │ │ ├── operationResizePosition.mdx │ │ ├── operationResizeStrategy.mdx │ │ ├── predictor.mdx │ │ └── textAlign.mdx │ └── utility-libray.mdx └── index.mdx ├── extensions ├── export-user-data │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── POSTINSTALL.md │ ├── PREINSTALL.md │ ├── README.md │ ├── REFERENCE.md │ ├── contributing.md │ ├── demo │ │ ├── .gitignore │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── firebase.ts │ │ │ ├── main.tsx │ │ │ ├── styles.module.css │ │ │ └── vite-env.d.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.node.json │ │ └── vite.config.ts │ ├── extension.yaml │ ├── functions │ │ ├── .gitignore │ │ ├── __tests__ │ │ │ ├── custom_hook │ │ │ │ ├── badResponse.test.ts │ │ │ │ ├── databasePaths.test.ts │ │ │ │ ├── firestorePaths.test.ts │ │ │ │ └── storagePaths.test.ts │ │ │ ├── database │ │ │ │ ├── topLevelCsv.test.ts │ │ │ │ └── topLevelZip.test.ts │ │ │ ├── firestore │ │ │ │ ├── collection │ │ │ │ │ ├── subcollectionCsv.test.ts │ │ │ │ │ ├── topLevelCsv.test.ts │ │ │ │ │ └── topLevelZip.test.ts │ │ │ │ └── document │ │ │ │ │ ├── topLevelCsv.test.ts │ │ │ │ │ └── topLevelZip.test.ts │ │ │ ├── helpers │ │ │ │ ├── index.ts │ │ │ │ └── setupEnvironment.ts │ │ │ ├── jest.setup.ts │ │ │ ├── mixed │ │ │ │ ├── copy.test.ts │ │ │ │ └── zip.test.ts │ │ │ ├── storage │ │ │ │ ├── copyDir.test.ts │ │ │ │ ├── copyFile.test.ts │ │ │ │ └── zipFile.test.ts │ │ │ └── tsconfig.json │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── config.ts │ │ │ ├── construct_exports.ts │ │ │ ├── get_export_paths.ts │ │ │ ├── index.ts │ │ │ ├── logs.ts │ │ │ ├── upload_as_csv.ts │ │ │ ├── upload_as_zip.ts │ │ │ └── utils.ts │ │ ├── tsconfig.dev.json │ │ └── tsconfig.json │ └── getting-started.md ├── firestore-huggingface-inference-api │ ├── CHANGELOG.md │ ├── POSTINSTALL.md │ ├── PREINSTALL.md │ ├── README.md │ ├── extension.yaml │ ├── functions │ │ ├── .gitignore │ │ ├── __tests__ │ │ │ └── inference.test.ts │ │ ├── jest.config.js │ │ ├── jest.setup.js │ │ ├── jest.teardown.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── config.ts │ │ │ ├── index.ts │ │ │ ├── inference.ts │ │ │ ├── tasks.ts │ │ │ ├── tasks │ │ │ │ ├── conversational.ts │ │ │ │ ├── feature-extraction.ts │ │ │ │ ├── fill-mask.ts │ │ │ │ ├── question-answering.ts │ │ │ │ ├── sentence-similarity.ts │ │ │ │ ├── summarization.ts │ │ │ │ ├── table-question-answering.ts │ │ │ │ ├── text-classification.ts │ │ │ │ ├── text-generation.ts │ │ │ │ ├── token-classification.ts │ │ │ │ ├── translation.ts │ │ │ │ └── zero-shot-classification.ts │ │ │ └── types │ │ │ │ └── table.ts │ │ └── tsconfig.json │ └── icon.png ├── firestore-record-acknowledgments │ ├── CHANGELOG.md │ ├── LICENSE │ ├── POSTINSTALL.md │ ├── PREINSTALL.md │ ├── README.md │ ├── admin-dashboard │ │ ├── .eslintrc │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app │ │ │ ├── components │ │ │ │ ├── Button.tsx │ │ │ │ ├── Label.tsx │ │ │ │ └── form.tsx │ │ │ ├── entry.client.tsx │ │ │ ├── entry.server.tsx │ │ │ ├── firebase.server.ts │ │ │ ├── root.tsx │ │ │ ├── routes │ │ │ │ ├── create.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── notices.$noticeId.tsx │ │ │ ├── tailwind.css │ │ │ └── types.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── public │ │ │ └── favicon.ico │ │ ├── remix.config.js │ │ ├── remix.env.d.ts │ │ ├── tailwind.config.js │ │ └── tsconfig.json │ ├── extension.yaml │ ├── functions │ │ ├── .gitignore │ │ ├── __tests__ │ │ │ ├── functions.test.ts │ │ │ ├── helpers │ │ │ │ ├── index.ts │ │ │ │ └── setupEnvironment.ts │ │ │ ├── jest.setup.ts │ │ │ └── tsconfig.json │ │ ├── jest.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── config.ts │ │ │ ├── converter.ts │ │ │ ├── index.ts │ │ │ ├── indexer.ts │ │ │ ├── interface.ts │ │ │ └── logs.ts │ │ └── tsconfig.json │ └── lib │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── src │ │ ├── index.ts │ │ └── types.ts │ │ └── tsconfig.json └── image-processing-api │ ├── CHANGELOG.md │ ├── POSTINSTALL.md │ ├── PREINSTALL.md │ ├── README.md │ ├── extension.yaml │ ├── functions │ ├── .gitignore │ ├── __tests__ │ │ ├── data │ │ │ ├── firebase-export-metadata.json │ │ │ └── storage_export │ │ │ │ ├── blobs │ │ │ │ └── extensions-testing.appspot.com │ │ │ │ │ ├── invertase.jpeg │ │ │ │ │ ├── melos.png │ │ │ │ │ └── meow.png │ │ │ │ ├── buckets.json │ │ │ │ └── metadata │ │ │ │ └── extensions-testing.appspot.com │ │ │ │ ├── invertase.jpeg.json │ │ │ │ ├── melos.png.json │ │ │ │ └── meow.png.json │ │ ├── operations.test.ts │ │ ├── storage.rules │ │ └── test-firebase.json │ ├── jest.config.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── config.ts │ │ ├── index.ts │ │ ├── operations │ │ │ ├── affine.ts │ │ │ ├── blur.ts │ │ │ ├── clahe.ts │ │ │ ├── colorspace.ts │ │ │ ├── composite.ts │ │ │ ├── convolve.ts │ │ │ ├── extend.ts │ │ │ ├── extract.ts │ │ │ ├── flatten.ts │ │ │ ├── flip.ts │ │ │ ├── flop.ts │ │ │ ├── gamma.ts │ │ │ ├── grayscale.ts │ │ │ ├── index.ts │ │ │ ├── input.ts │ │ │ ├── linear.ts │ │ │ ├── median.ts │ │ │ ├── modulate.ts │ │ │ ├── negate.ts │ │ │ ├── normalize.ts │ │ │ ├── output.ts │ │ │ ├── recomb.ts │ │ │ ├── resize.ts │ │ │ ├── rotate.ts │ │ │ ├── sharpen.ts │ │ │ ├── text.ts │ │ │ ├── threshold.ts │ │ │ ├── tint.ts │ │ │ ├── trim.ts │ │ │ └── types.ts │ │ ├── types.ts │ │ └── utils.ts │ └── tsconfig.json │ └── lib │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── rollup.config.js │ ├── src │ └── index.ts │ └── tsconfig.json ├── lerna.json ├── package.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/scripts/install-firebase-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.github/workflows/scripts/install-firebase-cli.sh -------------------------------------------------------------------------------- /.github/workflows/storage-image-processing-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.github/workflows/storage-image-processing-api.yaml -------------------------------------------------------------------------------- /.github/workflows/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.github/workflows/validate.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/README.md -------------------------------------------------------------------------------- /_emulator/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/.firebaserc -------------------------------------------------------------------------------- /_emulator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/.gitignore -------------------------------------------------------------------------------- /_emulator/extensions/export-user-data.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/extensions/export-user-data.env -------------------------------------------------------------------------------- /_emulator/extensions/firestore-huggingface-inference-api.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/extensions/firestore-huggingface-inference-api.env -------------------------------------------------------------------------------- /_emulator/extensions/firestore-record-acknowledgments.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/extensions/firestore-record-acknowledgments.env -------------------------------------------------------------------------------- /_emulator/extensions/image-processing-api.env: -------------------------------------------------------------------------------- 1 | CLOUD_STORAGE_BUCKET=extensions-testing.appspot.com 2 | CORS_ORIGIN_ALLOW_LIST=* 3 | LOCATION=us-central1 4 | -------------------------------------------------------------------------------- /_emulator/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/firebase.json -------------------------------------------------------------------------------- /_emulator/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/_emulator/storage.rules -------------------------------------------------------------------------------- /dictionary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/dictionary.js -------------------------------------------------------------------------------- /docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs.json -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/export-user-data/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/export-user-data/index.mdx -------------------------------------------------------------------------------- /docs/export-user-data/reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/export-user-data/reference.mdx -------------------------------------------------------------------------------- /docs/export-user-data/usage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/export-user-data/usage.mdx -------------------------------------------------------------------------------- /docs/firestore-record-acknowledgments/assets/admin-dashboard-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/firestore-record-acknowledgments/assets/admin-dashboard-example.png -------------------------------------------------------------------------------- /docs/firestore-record-acknowledgments/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/firestore-record-acknowledgments/index.mdx -------------------------------------------------------------------------------- /docs/firestore-record-acknowledgments/reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/firestore-record-acknowledgments/reference.mdx -------------------------------------------------------------------------------- /docs/firestore-record-acknowledgments/utility-library.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/firestore-record-acknowledgments/utility-library.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/caching.mdx: -------------------------------------------------------------------------------- 1 | ### Caching 2 | -------------------------------------------------------------------------------- /docs/image-processing-api/error-handling.mdx: -------------------------------------------------------------------------------- 1 | ### Error Handling 2 | -------------------------------------------------------------------------------- /docs/image-processing-api/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/index.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/input.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/operations.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/output.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/output.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/blend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/blend.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/colorspace.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/colorspace.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/compression.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/compression.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/gravity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/gravity.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/index.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/interpolator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/interpolator.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/operationResizeFit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/operationResizeFit.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/operationResizeKernel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/operationResizeKernel.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/operationResizePosition.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/operationResizePosition.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/operationResizeStrategy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/operationResizeStrategy.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/predictor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/predictor.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/types/textAlign.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/types/textAlign.mdx -------------------------------------------------------------------------------- /docs/image-processing-api/utility-libray.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/image-processing-api/utility-libray.mdx -------------------------------------------------------------------------------- /docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/docs/index.mdx -------------------------------------------------------------------------------- /extensions/export-user-data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/.gitignore -------------------------------------------------------------------------------- /extensions/export-user-data/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## Version 0.1.0 2 | 3 | Stable release with documentation. 4 | -------------------------------------------------------------------------------- /extensions/export-user-data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/LICENSE -------------------------------------------------------------------------------- /extensions/export-user-data/POSTINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/POSTINSTALL.md -------------------------------------------------------------------------------- /extensions/export-user-data/PREINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/PREINSTALL.md -------------------------------------------------------------------------------- /extensions/export-user-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/README.md -------------------------------------------------------------------------------- /extensions/export-user-data/REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/REFERENCE.md -------------------------------------------------------------------------------- /extensions/export-user-data/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/contributing.md -------------------------------------------------------------------------------- /extensions/export-user-data/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/.gitignore -------------------------------------------------------------------------------- /extensions/export-user-data/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/index.html -------------------------------------------------------------------------------- /extensions/export-user-data/demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/package-lock.json -------------------------------------------------------------------------------- /extensions/export-user-data/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/package.json -------------------------------------------------------------------------------- /extensions/export-user-data/demo/src/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/src/firebase.ts -------------------------------------------------------------------------------- /extensions/export-user-data/demo/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/src/main.tsx -------------------------------------------------------------------------------- /extensions/export-user-data/demo/src/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/src/styles.module.css -------------------------------------------------------------------------------- /extensions/export-user-data/demo/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /extensions/export-user-data/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/tsconfig.json -------------------------------------------------------------------------------- /extensions/export-user-data/demo/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/tsconfig.node.json -------------------------------------------------------------------------------- /extensions/export-user-data/demo/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/demo/vite.config.ts -------------------------------------------------------------------------------- /extensions/export-user-data/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/extension.yaml -------------------------------------------------------------------------------- /extensions/export-user-data/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/.gitignore -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/custom_hook/badResponse.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/custom_hook/badResponse.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/custom_hook/databasePaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/custom_hook/databasePaths.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/custom_hook/firestorePaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/custom_hook/firestorePaths.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/custom_hook/storagePaths.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/custom_hook/storagePaths.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/database/topLevelCsv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/database/topLevelCsv.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/database/topLevelZip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/database/topLevelZip.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/firestore/collection/subcollectionCsv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/firestore/collection/subcollectionCsv.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/firestore/collection/topLevelCsv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/firestore/collection/topLevelCsv.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/firestore/collection/topLevelZip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/firestore/collection/topLevelZip.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/firestore/document/topLevelCsv.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/firestore/document/topLevelCsv.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/firestore/document/topLevelZip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/firestore/document/topLevelZip.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/helpers/index.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/helpers/setupEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/helpers/setupEnvironment.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/jest.setup.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/mixed/copy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/mixed/copy.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/mixed/zip.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/mixed/zip.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/storage/copyDir.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/storage/copyDir.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/storage/copyFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/storage/copyFile.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/storage/zipFile.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/storage/zipFile.test.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/__tests__/tsconfig.json -------------------------------------------------------------------------------- /extensions/export-user-data/functions/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/jest.config.js -------------------------------------------------------------------------------- /extensions/export-user-data/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/package-lock.json -------------------------------------------------------------------------------- /extensions/export-user-data/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/package.json -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/config.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/construct_exports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/construct_exports.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/get_export_paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/get_export_paths.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/index.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/logs.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/upload_as_csv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/upload_as_csv.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/upload_as_zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/upload_as_zip.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/src/utils.ts -------------------------------------------------------------------------------- /extensions/export-user-data/functions/tsconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "include": [".eslintrc.js"] 3 | } 4 | -------------------------------------------------------------------------------- /extensions/export-user-data/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/functions/tsconfig.json -------------------------------------------------------------------------------- /extensions/export-user-data/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/export-user-data/getting-started.md -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/POSTINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/POSTINSTALL.md -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/PREINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/PREINSTALL.md -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/README.md -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/extension.yaml -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/.gitignore -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/__tests__/inference.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/__tests__/inference.test.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/jest.config.js -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/jest.setup.js -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/jest.teardown.js: -------------------------------------------------------------------------------- 1 | module.exports = async function () { 2 | delete process.env.LOCATION; 3 | }; 4 | -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/package-lock.json -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/package.json -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/config.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/index.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/inference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/inference.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/conversational.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/conversational.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/feature-extraction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/feature-extraction.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/fill-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/fill-mask.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/question-answering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/question-answering.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/sentence-similarity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/sentence-similarity.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/summarization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/summarization.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/table-question-answering.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/table-question-answering.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/text-classification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/text-classification.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/text-generation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/text-generation.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/token-classification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/token-classification.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/translation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/translation.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/tasks/zero-shot-classification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/tasks/zero-shot-classification.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/src/types/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/src/types/table.ts -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/functions/tsconfig.json -------------------------------------------------------------------------------- /extensions/firestore-huggingface-inference-api/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-huggingface-inference-api/icon.png -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/LICENSE -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/POSTINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/POSTINSTALL.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/PREINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/PREINSTALL.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/README.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/.eslintrc -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/.gitignore -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/LICENSE -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/README.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/components/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/components/Button.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/components/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/components/Label.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/components/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/components/form.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/entry.client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/entry.client.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/entry.server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/entry.server.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/firebase.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/firebase.server.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/root.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/create.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/create.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/index.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/notices.$noticeId.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/routes/notices.$noticeId.tsx -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/tailwind.css -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/app/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/app/types.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/package-lock.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/package.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/public/favicon.ico -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/remix.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/remix.config.js -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/remix.env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/remix.env.d.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/tailwind.config.js -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/admin-dashboard/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/admin-dashboard/tsconfig.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/extension.yaml -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/.gitignore -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/__tests__/functions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/__tests__/functions.test.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/__tests__/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/__tests__/helpers/index.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/__tests__/helpers/setupEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/__tests__/helpers/setupEnvironment.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/__tests__/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/__tests__/jest.setup.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/__tests__/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/__tests__/tsconfig.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/jest.config.js -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/package-lock.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/package.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/config.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/converter.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/index.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/indexer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/indexer.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/interface.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/src/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/src/logs.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/functions/tsconfig.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/.gitignore: -------------------------------------------------------------------------------- 1 | src/types -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/LICENSE -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/README.md -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/package-lock.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/package.json -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/rollup.config.js -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/src/index.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/src/types.ts -------------------------------------------------------------------------------- /extensions/firestore-record-acknowledgments/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/firestore-record-acknowledgments/lib/tsconfig.json -------------------------------------------------------------------------------- /extensions/image-processing-api/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/CHANGELOG.md -------------------------------------------------------------------------------- /extensions/image-processing-api/POSTINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/POSTINSTALL.md -------------------------------------------------------------------------------- /extensions/image-processing-api/PREINSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/PREINSTALL.md -------------------------------------------------------------------------------- /extensions/image-processing-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/README.md -------------------------------------------------------------------------------- /extensions/image-processing-api/extension.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/extension.yaml -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/.gitignore -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/firebase-export-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/firebase-export-metadata.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/invertase.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/invertase.jpeg -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/melos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/melos.png -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/meow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/blobs/extensions-testing.appspot.com/meow.png -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/buckets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/buckets.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/invertase.jpeg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/invertase.jpeg.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/melos.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/melos.png.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/meow.png.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/data/storage_export/metadata/extensions-testing.appspot.com/meow.png.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/operations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/operations.test.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/storage.rules -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/__tests__/test-firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/__tests__/test-firebase.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/jest.config.js -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/package-lock.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/package.json -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/config.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/index.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/affine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/affine.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/blur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/blur.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/clahe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/clahe.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/colorspace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/colorspace.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/composite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/composite.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/convolve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/convolve.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/extend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/extend.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/extract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/extract.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/flatten.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/flatten.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/flip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/flip.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/flop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/flop.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/gamma.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/gamma.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/grayscale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/grayscale.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/index.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/input.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/linear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/linear.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/median.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/median.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/modulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/modulate.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/negate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/negate.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/normalize.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/output.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/recomb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/recomb.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/resize.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/rotate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/rotate.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/sharpen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/sharpen.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/text.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/threshold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/threshold.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/tint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/tint.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/trim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/trim.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/operations/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/operations/types.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/types.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/src/utils.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/functions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/functions/tsconfig.json -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/.gitignore: -------------------------------------------------------------------------------- 1 | src/types -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/LICENSE -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/README.md -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/package-lock.json -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/package.json -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/rollup.config.js -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/src/index.ts -------------------------------------------------------------------------------- /extensions/image-processing-api/lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/extensions/image-processing-api/lib/tsconfig.json -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/firebase-extensions/HEAD/tsconfig.json --------------------------------------------------------------------------------