flingit 0.0.60 → 0.0.62

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flingit",
3
- "version": "0.0.60",
3
+ "version": "0.0.62",
4
4
  "description": "Small Software Platform - Build and deploy personal tools through conversation",
5
5
  "type": "module",
6
6
  "engines": {
@@ -1 +1 @@
1
- 731f0eea8885c3d021e990642ef047a3
1
+ b0503c93c5eb120d485b6c6759642b5b
@@ -341,7 +341,9 @@ This gives collaborators:
341
341
 
342
342
  10. **Feedback** - If the user encounters problems that directly or indirectly have to do with fling, suggest to them leaving feedback. Details in `references/FEEDBACK.md`.
343
343
 
344
- 11. **Never run `fling project takedown` without explicit user confirmation** - This command permanently deletes the deployed project including all data in the production database, all files in storage, and the deployed worker code. You MUST NOT run this command unless the user has explicitly confirmed that they understand and accept that all data in their published app will be permanently lost. Always explain what will be destroyed before asking for confirmation.
344
+ 11. **Keep the "Made with Fling" badge** - The template includes a small "Made with Fling" badge in the bottom-left corner of the page. Do not remove or hide it unless the user explicitly asks you to.
345
+
346
+ 12. **Never run `fling project takedown` without explicit user confirmation** - This command permanently deletes the deployed project including all data in the production database, all files in storage, and the deployed worker code. You MUST NOT run this command unless the user has explicitly confirmed that they understand and accept that all data in their published app will be permanently lost. Always explain what will be destroyed before asking for confirmation.
345
347
 
346
348
  **If the user's request might hit platform limitations, warn them early and suggest alternatives.**
347
349
 
@@ -10,7 +10,7 @@ If an email is sent to:
10
10
 
11
11
  the platform parses the message and dispatches it to your worker's internal email endpoint, which invokes your registered `onEmail` handler.
12
12
 
13
- Only one `onEmail` handler can be registered.
13
+ Only one `onEmail` handler can be registered. The handler must complete within 30 seconds or the delivery will be treated as a failure and retried.
14
14
 
15
15
  ## Basic Usage
16
16
 
@@ -20,6 +20,15 @@ function App() {
20
20
  <br />
21
21
  Edit <code>src/worker/index.ts</code> for the API
22
22
  </p>
23
+ <a
24
+ href="https://flingit.io"
25
+ target="_blank"
26
+ rel="noopener noreferrer"
27
+ className="fixed bottom-4 left-4 flex items-center gap-1.5 px-2.5 py-1.5 bg-white border border-gray-200 rounded-full shadow-sm text-xs text-gray-500 hover:text-gray-700 hover:border-gray-300 transition-colors"
28
+ >
29
+ <img src="/fling.svg" alt="Fling" className="w-4 h-4" />
30
+ Made with Fling
31
+ </a>
23
32
  </div>
24
33
  );
25
34
  }