@jskit-ai/agent-docs 0.1.28 → 0.1.29
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.
|
@@ -116,7 +116,7 @@ The small links under the password field are not decoration.
|
|
|
116
116
|
|
|
117
117
|
When the user presses `Register`, the form changes in three important ways.
|
|
118
118
|
|
|
119
|
-
- The
|
|
119
|
+
- The screen shows the `Create your account` title.
|
|
120
120
|
- A `Confirm password` field appears.
|
|
121
121
|
- The main submit button changes from `Sign in` to `Register`.
|
|
122
122
|
|
package/package.json
CHANGED
|
@@ -1219,6 +1219,8 @@ Exports
|
|
|
1219
1219
|
- `resolveLoggerLevel({ configuredLevel = "", nodeEnv = "development", allowedLevels = [] } = {})`
|
|
1220
1220
|
- `createFastifyLoggerOptions({ configuredLevel = "", nodeEnv = "development", allowedLevels = [], redactPaths = [], redactCensor = "[REDACTED]" } = {})`
|
|
1221
1221
|
- `registerJsonApiContentTypeParser(fastify)`
|
|
1222
|
+
- `normalizeBodylessContentTypeHeader(request = null)`
|
|
1223
|
+
- `registerBodylessContentTypeNormalizer(fastify)`
|
|
1222
1224
|
- `registerRequestLoggingHooks(app, { requestStartedAtSymbol, getPathname, getSurface, observeRequest, enableRequestLogs = true, defaultSurfaceId = "" } = {})`
|
|
1223
1225
|
- `registerApiErrorHandler(app, { isAppError, onRecordDbError, onCaptureServerError, appErrorLogMessage = "AppError 5xx", unhandledErrorLogMessage = "Unhandled error" } = {})`
|
|
1224
1226
|
- `ensureApiErrorHandling(app, { fastifyToken = "jskit.fastify", markerToken = "kernel.runtime.apiErrorHandlerRegistered", isAppError: isAppErrorOverride, autoRegister = true, ...handlerOptions } = {})`
|
|
@@ -1227,6 +1229,8 @@ Exports
|
|
|
1227
1229
|
- `runGracefulShutdown({ signal = "", exitProcess = false, exitCode = 0, timeoutMs = 10_000, appInstance = null, stopBackgroundRuntimes = () => {}, closeDatabase = async () => {}, logger = console } = {})`
|
|
1228
1230
|
Local functions
|
|
1229
1231
|
- `createFallbackJsonBodyParser()`
|
|
1232
|
+
- `hasHeaderValue(headers = {}, key = "")`
|
|
1233
|
+
- `hasRequestBody(headers = {})`
|
|
1230
1234
|
- `resolveValidationFieldErrors(error)`
|
|
1231
1235
|
- `resolveRequestRouteTransport(request)`
|
|
1232
1236
|
- `applyRouteTransportErrorResponse(reply, request, error, { statusCode = 500, normalizedErrorCode = "" } = {})`
|
|
@@ -38,6 +38,9 @@ Exports
|
|
|
38
38
|
Exports
|
|
39
39
|
- None
|
|
40
40
|
Local functions
|
|
41
|
+
- `isSameSnackbarEntry(left = null, right = null)`
|
|
42
|
+
- `hasSnackbarEntry(entry = null)`
|
|
43
|
+
- `openNextSnackbarEntry()`
|
|
41
44
|
- `resolveSeverityColor(severity = "error")`
|
|
42
45
|
- `resolveSeverityIcon(severity = "error")`
|
|
43
46
|
- `resolveTimeout(entry)`
|
|
@@ -45,6 +48,7 @@ Local functions
|
|
|
45
48
|
- `runAction(entry)`
|
|
46
49
|
- `onSnackbarModelValue(nextValue)`
|
|
47
50
|
- `onDialogModelValue(nextValue)`
|
|
51
|
+
- `onSnackbarAfterLeave()`
|
|
48
52
|
|
|
49
53
|
### `src/client/components/ShellLayout.vue`
|
|
50
54
|
Exports
|
|
@@ -54,12 +58,22 @@ Local functions
|
|
|
54
58
|
- `handlePullPointerMove(event)`
|
|
55
59
|
- `handlePullPointerEnd(event)`
|
|
56
60
|
- `handlePullPointerCancel(event)`
|
|
61
|
+
- `handlePullTouchStart(event)`
|
|
62
|
+
- `handlePullTouchMove(event)`
|
|
63
|
+
- `handlePullTouchEnd(event)`
|
|
64
|
+
- `handlePullTouchCancel(event)`
|
|
65
|
+
- `updatePullGesture(clientX, clientY, event)`
|
|
66
|
+
- `finishPullGesture()`
|
|
57
67
|
- `cancelPullRefresh()`
|
|
58
68
|
- `refreshFromPullGesture()`
|
|
59
69
|
- `canStartPullRefresh(event)`
|
|
70
|
+
- `canStartTouchPullRefresh(event)`
|
|
71
|
+
- `canStartPullRefreshFromTarget(target)`
|
|
60
72
|
- `isPrimaryTouchPointer(event)`
|
|
61
73
|
- `isAtPageTop()`
|
|
62
74
|
- `isPullRefreshIgnoredTarget(target)`
|
|
75
|
+
- `findActiveTouch(touchList)`
|
|
76
|
+
- `touchListIncludesActiveTouch(touchList)`
|
|
63
77
|
|
|
64
78
|
### `src/client/components/ShellMenuLinkItem.vue`
|
|
65
79
|
Exports
|