@jskit-ai/agent-docs 0.1.30 → 0.1.31
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/agent-docs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.31",
|
|
4
4
|
"description": "Distributed JSKIT agent workflows, guides, and generated reference maps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"test": "node --test"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
|
19
|
-
"node": "20
|
|
19
|
+
"node": ">=20 <23"
|
|
20
20
|
},
|
|
21
21
|
"publishConfig": {
|
|
22
22
|
"access": "public"
|
|
@@ -223,7 +223,7 @@ Local functions
|
|
|
223
223
|
|
|
224
224
|
### `src/client/composables/records/useCrudList.js`
|
|
225
225
|
Exports
|
|
226
|
-
- `useCrudList({ resource = null, requestQueryParams = null, parentBinding = null, recordIdParam = "recordId", route = null, ...listOptions } = {})`
|
|
226
|
+
- `useCrudList({ resource = null, requestQueryParams = null, parentBinding = null, recordIdParam = "recordId", route = null, realtime = undefined, ...listOptions } = {})`
|
|
227
227
|
Local functions
|
|
228
228
|
- `resolveRequestQueryParamsInput(requestQueryParams, context = {})`
|
|
229
229
|
- `resolveCrudParentRequestQueryParams({ resource = {}, route = null, recordIdParam = "recordId" } = {})`
|
|
@@ -238,7 +238,7 @@ Exports
|
|
|
238
238
|
|
|
239
239
|
### `src/client/composables/records/useView.js`
|
|
240
240
|
Exports
|
|
241
|
-
- `useView({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", apiSuffix = "", queryKeyFactory = null, viewPermissions = [], readMethod = "GET", readEnabled = true, transport = null, placementSource = "users-web.view", fallbackLoadError = "Unable to load resource.", notFoundStatuses = [404], notFoundMessage = "Record not found.", model, mapLoadedToModel, requestQueryParams = null, recordIdParam = "recordId", routeParams = null, routeRecordId = null, apiUrlTemplate = "", listUrlTemplate = "", editUrlTemplate = "", includeRecordIdInQueryKey = false, realtime =
|
|
241
|
+
- `useView({ ownershipFilter = ROUTE_VISIBILITY_WORKSPACE, surfaceId = "", access = "auto", apiSuffix = "", queryKeyFactory = null, viewPermissions = [], readMethod = "GET", readEnabled = true, transport = null, placementSource = "users-web.view", fallbackLoadError = "Unable to load resource.", notFoundStatuses = [404], notFoundMessage = "Record not found.", model, mapLoadedToModel, requestQueryParams = null, recordIdParam = "recordId", routeParams = null, routeRecordId = null, apiUrlTemplate = "", listUrlTemplate = "", editUrlTemplate = "", includeRecordIdInQueryKey = false, realtime = undefined, adapter = null } = {})`
|
|
242
242
|
|
|
243
243
|
### `src/client/composables/runtime/addEditUiRuntime.js`
|
|
244
244
|
Exports
|
|
@@ -290,7 +290,7 @@ Exports
|
|
|
290
290
|
Exports
|
|
291
291
|
- `buildEndpointReadRequestOptions({ method = "GET", query = null, transport = null } = {})`
|
|
292
292
|
- `buildEndpointWriteRequestOptions({ method = "PATCH", body = undefined, options = null, transport = null } = {})`
|
|
293
|
-
- `useEndpointResource({ queryKey, path = "", enabled = true, client = usersWebHttpClient, readMethod = "GET", writeMethod = "PATCH", readQuery = null, transport = null, refreshOnPull = false, queryOptions = null, mutationOptions = null, fallbackLoadError = "Unable to load resource.", fallbackSaveError = "Unable to save resource." } = {})`
|
|
293
|
+
- `useEndpointResource({ queryKey, path = "", enabled = true, client = usersWebHttpClient, readMethod = "GET", writeMethod = "PATCH", readQuery = null, transport = null, refreshOnPull = false, realtime = null, queryOptions = null, mutationOptions = null, fallbackLoadError = "Unable to load resource.", fallbackSaveError = "Unable to save resource." } = {})`
|
|
294
294
|
Local functions
|
|
295
295
|
- `resolveRequestQuery(value = null)`
|
|
296
296
|
|
|
@@ -501,10 +501,12 @@ Local functions
|
|
|
501
501
|
|
|
502
502
|
### `src/client/composables/useRealtimeQueryInvalidation.js`
|
|
503
503
|
Exports
|
|
504
|
+
- `resolveOperationRealtimeOptions({ realtime = undefined, fallbackRealtime = null } = {})`
|
|
504
505
|
- `useRealtimeQueryInvalidation({ event = "", enabled = true, matches = null, queryKey = null, onEvent = null } = {})`
|
|
505
506
|
- `useOperationRealtime({ realtime = null, queryKey = null, enabled = true } = {})`
|
|
506
507
|
Local functions
|
|
507
508
|
- `normalizeRealtimeOptions(value = {})`
|
|
509
|
+
- `hasRealtimeEventConfig(value = {})`
|
|
508
510
|
- `resolveEnabled(value)`
|
|
509
511
|
- `toQueryKeyList(value)`
|
|
510
512
|
|
|
@@ -209,6 +209,7 @@ Local functions
|
|
|
209
209
|
Exports
|
|
210
210
|
- `normalizeMutationExtension(value)`
|
|
211
211
|
- `normalizeTemplateContextRecord(value)`
|
|
212
|
+
- `normalizeDependencyMutationRecord(value)`
|
|
212
213
|
- `normalizeFileMutationRecord(value)`
|
|
213
214
|
- `normalizeMutationWhen(value)`
|
|
214
215
|
- `readObjectPath(source, rawPath)`
|
|
@@ -234,6 +235,7 @@ Local functions
|
|
|
234
235
|
- `isWorkspaceCapableTenancyMode(value = "")`
|
|
235
236
|
- `collectInstallWarnings({ packageEntry, appRoot, appPackageJson })`
|
|
236
237
|
- `resolveManagedSourceRecord(packageEntry, existingInstall = {})`
|
|
238
|
+
- `dependencyMutationUsesWhen(entries = [])`
|
|
237
239
|
|
|
238
240
|
### `src/server/cliRuntime/packageIntrospection.js`
|
|
239
241
|
Exports
|
|
@@ -678,6 +680,7 @@ Exports
|
|
|
678
680
|
Local functions
|
|
679
681
|
- `resolveGeneratorSubcommandRows(payload = {})`
|
|
680
682
|
- `resolveOwnershipGuidance(payload = {})`
|
|
683
|
+
- `renderDependencyMutationSpec(versionSpec)`
|
|
681
684
|
|
|
682
685
|
### `src/server/core/argParser.js`
|
|
683
686
|
Exports
|