@take-out/docs 0.0.51 → 0.0.52

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/docs.md CHANGED
@@ -5,4 +5,4 @@ description: Docs/documentation, writing english, JSDoc code comments, markdown,
5
5
 
6
6
  # Writing documentation
7
7
 
8
- When writing markdown/docs, JSDoc, or other natural english, we prefer the keep things simple, avoid writing too many lists, avoid bolding things too much, avoid emojis. In general avoid over-use of tables unless it's a pattern found in similar docs elsewhere or truly essential to list out a table-like structure.
8
+ When writing markdown/docs, JSDoc, or other natural english, we prefer to keep things simple, avoid writing too many lists, avoid bolding things too much, avoid emojis. In general avoid over-use of tables unless it's a pattern found in similar docs elsewhere or truly essential to list out a table-like structure.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@take-out/docs",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "Documentation files for Takeout starter kit",
5
5
  "type": "module",
6
6
  "files": [
package/sync-prompt.md CHANGED
@@ -202,7 +202,7 @@ What would you like to do? [a/b]
202
202
 
203
203
  ## Final Notes
204
204
 
205
- - This is a **intelligent sync**, not a blind merge
205
+ - This is an **intelligent sync**, not a blind merge
206
206
  - The goal is to **keep you up-to-date** while **respecting your customizations**
207
207
  - When uncertain, **always ask** before making changes
208
208
  - Keep a **detailed log** of all changes for review
package/triggers.md CHANGED
@@ -233,7 +233,7 @@ IF TG_OP = 'DELETE' THEN
233
233
 
234
234
  IF NOT parent_exists THEN
235
235
  RETURN OLD;
236
- END IF
236
+ END IF;
237
237
 
238
238
  UPDATE parent_table SET counter = counter - 1 WHERE id = OLD.parent_id;
239
239
  END IF;
package/zero.md CHANGED
@@ -144,7 +144,7 @@ enforced.
144
144
  // src/data/where/isUsersOwn.ts
145
145
  import { where } from 'over-zero'
146
146
 
147
- export const isUsersOwn = serverWehere<'userPublic'>((q, auth) =>
147
+ export const isUsersOwn = serverWhere<'userPublic'>((q, auth) =>
148
148
  q.cmp('id', '=', auth?.id || ''),
149
149
  )
150
150
  ```