Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generates docs for v 2.110.0 #299

Merged
merged 1 commit into from Jul 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
196 changes: 126 additions & 70 deletions _api-reference-generator/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion _api-reference-generator/package.json
Expand Up @@ -10,7 +10,7 @@
"author": "",
"license": "MIT",
"dependencies": {
"apostrophe": "^2.108.1",
"apostrophe": "^2.110.0",
"async": "^2.6.3",
"boring": "^0.1.0",
"glob": "^7.1.6",
Expand Down
Expand Up @@ -29,9 +29,9 @@ is always in a consistent format.

Examples:

apos.eventName('aposChange', 'blog') ---> aposChangeBlog
apos.eventName('aposChangeEvents') ---> aposChangeEvents
apos.eventName('apos-jump-gleefully') ---> aposJumpGleefully
apos.eventName('aposChange', 'blog') aposChangeBlog
apos.eventName('aposChangeEvents') aposChangeEvents
apos.eventName('apos-jump-gleefully') aposJumpGleefully

It doesn't matter how many arguments you pass. Each new argument
is treated as a word boundary.
Expand Down
9 changes: 1 addition & 8 deletions docs/reference/modules/apostrophe-docs/README.md
Expand Up @@ -360,14 +360,7 @@ self.apos.docs.getManager(doc.type).update(...)
You may override this method to change the implementation.
### insertBody(*req*, *doc*, *options*, *callback*) *[api]*
Insert the given document. Called by `.insert()`. You will usually want to
call the update method of the appropriate doc type manager instead:

```javascript
self.apos.docs.getManager(doc.type).update(...)
```

However you can override this method to alter the
implementation.
call the `insert` method of the appropriate doc type manager instead.
### idOrCriteria(*idOrCriteria*) *[api]*
Given either an id (as a string) or a criteria
object, return a criteria object.
Expand Down