├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── LICENSE ├── README.md ├── eslint.config.js ├── examples ├── do-map │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── fetch │ ├── .gitignore │ ├── .prettierrc │ ├── 429.py │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── reversable-steps │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── sentry-reporting │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml └── storage-engine │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── package.json │ ├── src │ └── index.ts │ ├── tsconfig.json │ └── wrangler.toml ├── package.json ├── packages ├── core │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── src │ │ ├── errorReporting.ts │ │ ├── lib.ts │ │ └── storageEngines.ts │ ├── tsconfig.json │ └── vite.config.ts └── sentry-reporting │ ├── CHANGELOG.md │ ├── package.json │ ├── src │ └── lib.ts │ ├── tsconfig.json │ └── vite.config.ts ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── prettier.json ├── tsconfig.json └── turbo.json /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md 2 | *.yaml 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/do-map/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/.gitignore -------------------------------------------------------------------------------- /examples/do-map/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/.prettierrc -------------------------------------------------------------------------------- /examples/do-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/README.md -------------------------------------------------------------------------------- /examples/do-map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/package.json -------------------------------------------------------------------------------- /examples/do-map/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/src/index.ts -------------------------------------------------------------------------------- /examples/do-map/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/tsconfig.json -------------------------------------------------------------------------------- /examples/do-map/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/do-map/wrangler.toml -------------------------------------------------------------------------------- /examples/fetch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/.gitignore -------------------------------------------------------------------------------- /examples/fetch/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/.prettierrc -------------------------------------------------------------------------------- /examples/fetch/429.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/429.py -------------------------------------------------------------------------------- /examples/fetch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/README.md -------------------------------------------------------------------------------- /examples/fetch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/package.json -------------------------------------------------------------------------------- /examples/fetch/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/src/index.ts -------------------------------------------------------------------------------- /examples/fetch/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/tsconfig.json -------------------------------------------------------------------------------- /examples/fetch/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/fetch/wrangler.toml -------------------------------------------------------------------------------- /examples/reversable-steps/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/.gitignore -------------------------------------------------------------------------------- /examples/reversable-steps/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/.prettierrc -------------------------------------------------------------------------------- /examples/reversable-steps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/README.md -------------------------------------------------------------------------------- /examples/reversable-steps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/package.json -------------------------------------------------------------------------------- /examples/reversable-steps/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/src/index.ts -------------------------------------------------------------------------------- /examples/reversable-steps/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/tsconfig.json -------------------------------------------------------------------------------- /examples/reversable-steps/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/reversable-steps/wrangler.toml -------------------------------------------------------------------------------- /examples/sentry-reporting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/.gitignore -------------------------------------------------------------------------------- /examples/sentry-reporting/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/.prettierrc -------------------------------------------------------------------------------- /examples/sentry-reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/README.md -------------------------------------------------------------------------------- /examples/sentry-reporting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/package.json -------------------------------------------------------------------------------- /examples/sentry-reporting/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/src/index.ts -------------------------------------------------------------------------------- /examples/sentry-reporting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/tsconfig.json -------------------------------------------------------------------------------- /examples/sentry-reporting/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/sentry-reporting/wrangler.toml -------------------------------------------------------------------------------- /examples/storage-engine/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/.gitignore -------------------------------------------------------------------------------- /examples/storage-engine/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/.prettierrc -------------------------------------------------------------------------------- /examples/storage-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/README.md -------------------------------------------------------------------------------- /examples/storage-engine/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/package.json -------------------------------------------------------------------------------- /examples/storage-engine/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/src/index.ts -------------------------------------------------------------------------------- /examples/storage-engine/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/tsconfig.json -------------------------------------------------------------------------------- /examples/storage-engine/wrangler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/examples/storage-engine/wrangler.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/package.json -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/README.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/src/errorReporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/src/errorReporting.ts -------------------------------------------------------------------------------- /packages/core/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/src/lib.ts -------------------------------------------------------------------------------- /packages/core/src/storageEngines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/src/storageEngines.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/core/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/core/vite.config.ts -------------------------------------------------------------------------------- /packages/sentry-reporting/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/sentry-reporting/CHANGELOG.md -------------------------------------------------------------------------------- /packages/sentry-reporting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/sentry-reporting/package.json -------------------------------------------------------------------------------- /packages/sentry-reporting/src/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/sentry-reporting/src/lib.ts -------------------------------------------------------------------------------- /packages/sentry-reporting/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/sentry-reporting/tsconfig.json -------------------------------------------------------------------------------- /packages/sentry-reporting/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/packages/sentry-reporting/vite.config.ts -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /prettier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/prettier.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuisDuarte1/flowcesinha/HEAD/turbo.json --------------------------------------------------------------------------------