Skip to content

Commit

Permalink
Re-generate docs
Browse files Browse the repository at this point in the history
  • Loading branch information
litencatt committed Jan 2, 2024
1 parent 4febce3 commit cee02e0
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions docs/block.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ EXAMPLES
world!"}}]}}]' -r
```

_See code: [src/commands/block/append.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/block/append.ts)_


## `notion-cli block delete BLOCK_ID`

Expand Down Expand Up @@ -95,7 +95,7 @@ EXAMPLES
$ notion-cli block delete BLOCK_ID -r
```

_See code: [src/commands/block/delete.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/block/delete.ts)_


## `notion-cli block retrieve BLOCK_ID`

Expand Down Expand Up @@ -134,7 +134,7 @@ EXAMPLES
$ notion-cli block retrieve BLOCK_ID -r
```

_See code: [src/commands/block/retrieve.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/block/retrieve.ts)_


## `notion-cli block retrieve children BLOCK_ID`

Expand Down Expand Up @@ -176,7 +176,7 @@ EXAMPLES
$ notion-cli block retrieve:children BLOCK_ID -r
```

_See code: [src/commands/block/retrieve/children.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/block/retrieve/children.ts)_


## `notion-cli block update BLOCK_ID`

Expand Down Expand Up @@ -216,4 +216,4 @@ EXAMPLES
$ notion-cli block update BLOCK_ID -r
```

_See code: [src/commands/block/update.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/block/update.ts)_

12 changes: 6 additions & 6 deletions docs/db.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ EXAMPLES
$ notion-cli db create PAGE_ID -t 'My Database' -r
```

_See code: [src/commands/db/create.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/db/create.ts)_


## `notion-cli db query [DATABASE_ID]`

Expand Down Expand Up @@ -100,18 +100,18 @@ EXAMPLES
Query a db with a specific database_id and raw filter string
$ notion-cli db query -r='{"and": ...}' DATABASE_ID
$ notion-cli db query -a='{"and": ...}' DATABASE_ID
Query a db with a specific database_id and filter file
$ notion-cli db query -f ./path/to/filter.json DATABASE_ID
Query a db with a specific database_id and output format
$ notion-cli db query -o csv DATABASE_ID
$ notion-cli db query --csv DATABASE_ID
```

_See code: [src/commands/db/query.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/db/query.ts)_


## `notion-cli db retrieve [DATABASE_ID]`

Expand Down Expand Up @@ -150,7 +150,7 @@ EXAMPLES
$ notion-cli db retrieve DATABSE_ID
```

_See code: [src/commands/db/retrieve.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/db/retrieve.ts)_


## `notion-cli db update [DATABASE_ID]`

Expand Down Expand Up @@ -198,4 +198,4 @@ EXAMPLES
$ notion-cli db update DATABASE_ID -r
```

_See code: [src/commands/db/update.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/db/update.ts)_

2 changes: 1 addition & 1 deletion docs/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ DESCRIPTION
Display help for notion-cli.
```

_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.2.20/src/commands/help.ts)_

8 changes: 4 additions & 4 deletions docs/page.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ EXAMPLES
$ notion-cli page create -f ./path/to/source.md -p PARENT_PAGE_ID -r
```

_See code: [src/commands/page/create.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/page/create.ts)_


## `notion-cli page retrieve PAGE_ID`

Expand Down Expand Up @@ -117,7 +117,7 @@ EXAMPLES
$ notion-cli page retrieve PAGE_ID -p title,Z%3ESr -r
```

_See code: [src/commands/page/retrieve.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/page/retrieve.ts)_


## `notion-cli page retrieve property_item PAGE_ID PROPERTY_ID`

Expand All @@ -143,7 +143,7 @@ EXAMPLES
$ notion-cli page retrieve:property_item PAGE_ID PROPERTY_ID -r
```

_See code: [src/commands/page/retrieve/property_item.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/page/retrieve/property_item.ts)_


## `notion-cli page update PAGE_ID`

Expand Down Expand Up @@ -200,4 +200,4 @@ EXAMPLES
$ notion-cli page update PAGE_ID -u -r
```

_See code: [src/commands/page/update.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/page/update.ts)_

2 changes: 1 addition & 1 deletion docs/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ EXAMPLES
$ notion-cli search -q 'My Page' --columns=title,object -d asc -s 10 -c START_CURSOR_ID -p page
```

_See code: [src/commands/search.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/search.ts)_

6 changes: 3 additions & 3 deletions docs/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ EXAMPLES
$ notion-cli user list -r
```

_See code: [src/commands/user/list.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/user/list.ts)_


## `notion-cli user retrieve [USER_ID]`

Expand Down Expand Up @@ -83,7 +83,7 @@ EXAMPLES
$ notion-cli user retrieve USER_ID -r
```

_See code: [src/commands/user/retrieve.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/user/retrieve.ts)_


## `notion-cli user retrieve bot`

Expand Down Expand Up @@ -122,4 +122,4 @@ EXAMPLES
$ notion-cli user retrieve:bot -r
```

_See code: [src/commands/user/retrieve/bot.ts](https://github.com/litencatt/notion-cli/blob/v0.14.4/src/commands/user/retrieve/bot.ts)_

0 comments on commit cee02e0

Please sign in to comment.