@ienlab/cloud-functions-library 0.9.0 → 0.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/.gemini/config.yaml +47 -0
  2. package/.github/ISSUE_TEMPLATE/bug_report.yaml +74 -0
  3. package/.github/ISSUE_TEMPLATE/documentation.yaml +23 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yaml +60 -0
  5. package/.github/ISSUE_TEMPLATE/question.yaml +17 -0
  6. package/.github/ISSUE_TEMPLATE/refactor.yaml +42 -0
  7. package/.github/RELEASE_TEMPLATE.md +17 -0
  8. package/.github/workflows/publish.yml +30 -0
  9. package/eslint.config.js +23 -0
  10. package/index.html +13 -0
  11. package/package.json +5 -8
  12. package/public/favicon.svg +1 -0
  13. package/public/icons.svg +24 -0
  14. package/src/App.css +184 -0
  15. package/src/App.tsx +121 -0
  16. package/src/assets/hero.png +0 -0
  17. package/src/assets/react.svg +1 -0
  18. package/src/assets/vite.svg +1 -0
  19. package/src/index.css +111 -0
  20. package/src/index.ts +16 -0
  21. package/src/main.tsx +10 -0
  22. package/tsconfig.app.json +25 -0
  23. package/tsconfig.build.json +12 -0
  24. package/tsconfig.json +7 -0
  25. package/tsconfig.node.json +24 -0
  26. package/vite.config.ts +39 -0
  27. package/dist/__vite-browser-external-BrdF6Ba4.js +0 -1
  28. package/dist/__vite-browser-external-C4yfM1ew.mjs +0 -25
  29. package/dist/dist-B3gFypMh.js +0 -5
  30. package/dist/dist-BHRQIx5i.mjs +0 -460
  31. package/dist/dist-CkUzyZvx.js +0 -1
  32. package/dist/dist-Cum8lv5j.mjs +0 -16
  33. package/dist/from-BPj5eOuj.mjs +0 -2443
  34. package/dist/from-jzy6jn2J.js +0 -4
  35. package/dist/index.cjs.js +0 -66
  36. package/dist/index.d.ts +0 -17
  37. package/dist/index.es.js +0 -49920
  38. package/dist/multipart-parser-9TgDfPGH.mjs +0 -149
  39. package/dist/multipart-parser-D41wkGe-.js +0 -2
  40. package/dist/multipart-parser-DOk5BsUv.js +0 -2
  41. package/dist/multipart-parser-D_l0qnsO.mjs +0 -149
  42. package/dist/src-C0B8QY6h.js +0 -3
  43. package/dist/src-CNjb2Vfu.js +0 -3
  44. package/dist/src-CYCYovTl.mjs +0 -666
  45. package/dist/src-M25oq7Q_.mjs +0 -666
package/dist/index.d.ts DELETED
@@ -1,17 +0,0 @@
1
- import { DocumentData } from 'firebase-admin/firestore';
2
- import { DocumentReference } from 'firebase-admin/firestore';
3
- import { DocumentSnapshot } from 'firebase-admin/firestore';
4
- import { QueryDocumentSnapshot } from 'firebase-admin/firestore';
5
- import { Timestamp } from 'firebase-admin/firestore';
6
-
7
- export declare interface FirestoreItem {
8
- id: string;
9
- ref: DocumentReference | null;
10
- createAt: Timestamp;
11
- updateAt: Timestamp;
12
- delete: boolean;
13
- }
14
-
15
- export declare function snapshotToData(snapshot: QueryDocumentSnapshot | DocumentSnapshot): DocumentData;
16
-
17
- export { }