Skip to content

Commit 9896bb7

Browse files
authored
docs v3 (#660)
* fix: improve validation for schema' * fix: improve validation rules detection * Fix styling * fix: wip * fix: docs v3 * fix: docs v3 * fix: wip --------- Co-authored-by: binaryk <[email protected]>
1 parent 26a71df commit 9896bb7

File tree

129 files changed

+35413
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+35413
-0
lines changed

docs-v3/.gitignore

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
static/sw.js
10+
11+
# Runtime data
12+
pids
13+
*.pid
14+
*.seed
15+
*.pid.lock
16+
17+
# Directory for instrumented libs generated by jscoverage/JSCover
18+
lib-cov
19+
20+
# Coverage directory used by tools like istanbul
21+
coverage
22+
23+
# nyc test coverage
24+
.nyc_output
25+
26+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
27+
.grunt
28+
29+
# Bower dependency directory (https://bower.io/)
30+
bower_components
31+
32+
# node-waf configuration
33+
.lock-wscript
34+
35+
# Compiled binary addons (https://nodejs.org/api/addons.html)
36+
build/Release
37+
38+
# Dependency directories
39+
node_modules/
40+
jspm_packages/
41+
42+
# TypeScript v1 declaration files
43+
typings/
44+
45+
# Optional npm cache directory
46+
.npm
47+
48+
# Optional eslint cache
49+
.eslintcache
50+
51+
# Optional REPL history
52+
.node_repl_history
53+
54+
# Output of 'npm pack'
55+
*.tgz
56+
57+
# Yarn Integrity file
58+
.yarn-integrity
59+
60+
# dotenv environment variables file
61+
.env
62+
63+
# parcel-bundler cache (https://parceljs.org/)
64+
.cache
65+
66+
# next.js build output
67+
.next
68+
69+
# nuxt.js build output
70+
.nuxt
71+
72+
# Nuxt generate
73+
dist
74+
75+
# Nuxt 3 build output
76+
.output
77+
78+
# vuepress build output
79+
.vuepress/dist
80+
81+
# Serverless directories
82+
.serverless
83+
84+
# IDE
85+
.idea
86+
.vscode
87+
*.swp
88+
*.swo
89+
90+
# OS generated files
91+
.DS_Store
92+
.DS_Store?
93+
._*
94+
.Spotlight-V100
95+
.Trashes
96+
ehthumbs.db
97+
Thumbs.db
98+
99+
# Temporary files
100+
*.tmp
101+
*.temp

docs-v3/.nuxt/app.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
2+
import { _replaceAppConfig } from '#app/config'
3+
import { defuFn } from 'defu'
4+
5+
const inlineConfig = {
6+
"nuxt": {}
7+
}
8+
9+
// Vite - webpack is handled directly in #app/config
10+
if (import.meta.hot) {
11+
import.meta.hot.accept((newModule) => {
12+
_replaceAppConfig(newModule.default)
13+
})
14+
}
15+
16+
17+
18+
export default /*@__PURE__*/ defuFn(inlineConfig)

docs-v3/.nuxt/component-chunk.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export default {}

docs-v3/.nuxt/components.d.ts

Lines changed: 326 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"/":["content:index.md"],"/quickstart":["content:quickstart.md"],"/settings":["content:settings.json"],"/boost/boost":["content:boost:boost.md"],"/api/actions":["content:api:actions.md"],"/api/fields":["content:api:fields.md"],"/api/getters":["content:api:getters.md"],"/api/relations":["content:api:relations.md"],"/api/repositories-advanced":["content:api:repositories-advanced.md"],"/api/repositories":["content:api:repositories.md"],"/api/repository-generation":["content:api:repository-generation.md"],"/api/rest-methods":["content:api:rest-methods.md"],"/api/serializer":["content:api:serializer.md"],"/api/validation-methods":["content:api:validation-methods.md"],"/auth/authentication":["content:auth:authentication.md"],"/auth/authorization":["content:auth:authorization.md"],"/auth/profile":["content:auth:profile.md"],"/performance/performance":["content:performance:performance.md"],"/performance/solutions":["content:performance:solutions.md"],"/graphql/graphql-generation":["content:graphql:graphql-generation.md"],"/graphql/graphql":["content:graphql:graphql.md"],"/testing/testing":["content:testing:testing.md"],"/search/advanced-filters":["content:search:advanced-filters.md"],"/search/basic-filters":["content:search:basic-filters.md"],"/search/sorting":["content:search:sorting.md"],"/mcp/mcp":["content:mcp:mcp.md"]}

docs-v3/.nuxt/content-cache/parsed/content/api/actions.md

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs-v3/.nuxt/content-cache/parsed/content/api/fields.md

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs-v3/.nuxt/content-cache/parsed/content/api/getters.md

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs-v3/.nuxt/content-cache/parsed/content/api/relations.md

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

docs-v3/.nuxt/content-cache/parsed/content/api/repositories-advanced.md

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)