@fjell/registry 4.4.52 → 4.4.54
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 +4 -4
- package/API.md +0 -62
- package/GETTING_STARTED.md +0 -69
- package/build.js +0 -38
- package/docs/README.md +0 -74
- package/docs/TIMING_NODE_OPTIMIZATION.md +0 -207
- package/docs/TIMING_README.md +0 -170
- package/docs/docs.config.ts +0 -114
- package/docs/index.html +0 -26
- package/docs/package-lock.json +0 -5129
- package/docs/package.json +0 -34
- package/docs/public/404.html +0 -53
- package/docs/public/GETTING_STARTED.md +0 -69
- package/docs/public/README.md +0 -623
- package/docs/public/TIMING_NODE_OPTIMIZATION.md +0 -207
- package/docs/public/api.md +0 -62
- package/docs/public/client-api-overview.md +0 -137
- package/docs/public/configuration.md +0 -759
- package/docs/public/error-handling/README.md +0 -356
- package/docs/public/error-handling/network-errors.md +0 -485
- package/docs/public/examples/coordinates-example.ts +0 -253
- package/docs/public/examples/multi-level-keys.ts +0 -374
- package/docs/public/examples/registry-hub-coordinates-example.ts +0 -370
- package/docs/public/examples/registry-hub-types.ts +0 -437
- package/docs/public/examples/simple-example.ts +0 -250
- package/docs/public/examples-README.md +0 -241
- package/docs/public/fjell-icon.svg +0 -1
- package/docs/public/icon.png +0 -0
- package/docs/public/icon2.png +0 -0
- package/docs/public/memory-overhead.svg +0 -120
- package/docs/public/memory.md +0 -430
- package/docs/public/operations/README.md +0 -121
- package/docs/public/operations/all.md +0 -325
- package/docs/public/operations/create.md +0 -415
- package/docs/public/operations/get.md +0 -389
- package/docs/public/package.json +0 -63
- package/docs/public/pano.png +0 -0
- package/docs/public/pano2.png +0 -0
- package/docs/public/timing-range.svg +0 -176
- package/docs/public/timing.md +0 -483
- package/docs/timing-range.svg +0 -174
- package/docs/vitest.config.ts +0 -14
- package/examples/README.md +0 -241
- package/examples/coordinates-example.ts +0 -253
- package/examples/multi-level-keys.ts +0 -382
- package/examples/registry-hub-coordinates-example.ts +0 -370
- package/examples/registry-hub-types.ts +0 -437
- package/examples/registry-statistics-example.ts +0 -264
- package/examples/simple-example.ts +0 -250
- package/tsconfig.docs.json +0 -28
- package/vitest.config.ts +0 -22
package/docs/docs.config.ts
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
import { DocsConfig } from '@fjell/docs-template';
|
|
2
|
-
|
|
3
|
-
const config = {
|
|
4
|
-
projectName: 'Fjell Registry',
|
|
5
|
-
basePath: '/registry/',
|
|
6
|
-
port: 3001,
|
|
7
|
-
branding: {
|
|
8
|
-
theme: 'registry',
|
|
9
|
-
tagline: 'Common Registry for Fjell',
|
|
10
|
-
backgroundImage: '/pano.png',
|
|
11
|
-
github: 'https://github.com/getfjell/registry',
|
|
12
|
-
npm: 'https://www.npmjs.com/package/@fjell/registry'
|
|
13
|
-
},
|
|
14
|
-
sections: [
|
|
15
|
-
{
|
|
16
|
-
id: 'overview',
|
|
17
|
-
title: 'Foundation',
|
|
18
|
-
subtitle: 'Core concepts & philosophy',
|
|
19
|
-
file: '/registry/README.md'
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
id: 'getting-started',
|
|
23
|
-
title: 'Getting Started',
|
|
24
|
-
subtitle: 'Your first registry operations',
|
|
25
|
-
file: '/registry/GETTING_STARTED.md'
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
id: 'api-reference',
|
|
29
|
-
title: 'API Reference',
|
|
30
|
-
subtitle: 'Complete method documentation',
|
|
31
|
-
file: '/registry/API.md'
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
id: 'client-api',
|
|
35
|
-
title: 'Client API',
|
|
36
|
-
subtitle: 'Comprehensive API operations & error handling',
|
|
37
|
-
file: '/registry/client-api-overview.md',
|
|
38
|
-
subsections: [
|
|
39
|
-
{
|
|
40
|
-
id: 'operations-overview',
|
|
41
|
-
title: 'Operations Overview',
|
|
42
|
-
subtitle: 'Complete guide to all API operations',
|
|
43
|
-
file: '/registry/operations/README.md'
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
id: 'all-operation',
|
|
47
|
-
title: 'All Operation',
|
|
48
|
-
subtitle: 'Retrieve multiple items with queries',
|
|
49
|
-
file: '/registry/operations/all.md'
|
|
50
|
-
},
|
|
51
|
-
{
|
|
52
|
-
id: 'create-operation',
|
|
53
|
-
title: 'Create Operation',
|
|
54
|
-
subtitle: 'Create new items with validation',
|
|
55
|
-
file: '/registry/operations/create.md'
|
|
56
|
-
},
|
|
57
|
-
{
|
|
58
|
-
id: 'get-operation',
|
|
59
|
-
title: 'Get Operation',
|
|
60
|
-
subtitle: 'Retrieve single items by key',
|
|
61
|
-
file: '/registry/operations/get.md'
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
id: 'error-handling',
|
|
65
|
-
title: 'Error Handling',
|
|
66
|
-
subtitle: 'Comprehensive error handling & resilience',
|
|
67
|
-
file: '/registry/error-handling/README.md'
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
id: 'network-errors',
|
|
71
|
-
title: 'Network Errors',
|
|
72
|
-
subtitle: 'Handle connection failures & timeouts',
|
|
73
|
-
file: '/registry/error-handling/network-errors.md'
|
|
74
|
-
},
|
|
75
|
-
{
|
|
76
|
-
id: 'configuration',
|
|
77
|
-
title: 'Configuration',
|
|
78
|
-
subtitle: 'API setup & configuration options',
|
|
79
|
-
file: '/registry/configuration.md'
|
|
80
|
-
}
|
|
81
|
-
]
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
id: 'examples',
|
|
85
|
-
title: 'Examples',
|
|
86
|
-
subtitle: 'Code examples & usage patterns',
|
|
87
|
-
file: '/registry/examples-README.md'
|
|
88
|
-
}
|
|
89
|
-
],
|
|
90
|
-
filesToCopy: [
|
|
91
|
-
{
|
|
92
|
-
source: '../README.md',
|
|
93
|
-
destination: 'public/README.md'
|
|
94
|
-
},
|
|
95
|
-
{
|
|
96
|
-
source: '../examples/README.md',
|
|
97
|
-
destination: 'public/examples-README.md'
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
source: '../GETTING_STARTED.md',
|
|
101
|
-
destination: 'public/GETTING_STARTED.md'
|
|
102
|
-
},
|
|
103
|
-
{
|
|
104
|
-
source: '../API.md',
|
|
105
|
-
destination: 'public/API.md'
|
|
106
|
-
}
|
|
107
|
-
],
|
|
108
|
-
plugins: [],
|
|
109
|
-
version: {
|
|
110
|
-
source: 'package.json'
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
export default config as DocsConfig
|
package/docs/index.html
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
|
|
4
|
-
<head>
|
|
5
|
-
<meta charset="UTF-8" />
|
|
6
|
-
<link rel="icon" type="image/svg+xml" href="/fjell-icon.svg" />
|
|
7
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
8
|
-
<title>Fjell Registry - TypeScript Registry Library</title>
|
|
9
|
-
<meta name="description" content="Common Registry for Fjell - A powerful TypeScript registry system">
|
|
10
|
-
<script>
|
|
11
|
-
// GitHub Pages SPA routing support
|
|
12
|
-
// Store the current URL if we're coming from a redirect
|
|
13
|
-
(function () {
|
|
14
|
-
if (location.search.slice(1)) {
|
|
15
|
-
sessionStorage.redirect = location.href;
|
|
16
|
-
}
|
|
17
|
-
})();
|
|
18
|
-
</script>
|
|
19
|
-
</head>
|
|
20
|
-
|
|
21
|
-
<body>
|
|
22
|
-
<div id="root"></div>
|
|
23
|
-
<script type="module" src="/src/main.tsx"></script>
|
|
24
|
-
</body>
|
|
25
|
-
|
|
26
|
-
</html>
|