@jskit-ai/agent-docs 0.1.125 → 0.1.127

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.
@@ -44,36 +44,6 @@ Local functions
44
44
  - `onMemberRoleUpdate(member, roleSid)`
45
45
  - `onRemoveMember(member)`
46
46
 
47
- ### `src/client/components/UsersProfileSurfaceSwitchMenuItem.vue`
48
- Exports
49
- - None
50
-
51
- ### `src/client/components/UsersWorkspaceMembersMenuItem.vue`
52
- Exports
53
- - None
54
-
55
- ### `src/client/components/UsersWorkspacePermissionMenuItem.vue`
56
- Exports
57
- - None
58
- Local functions
59
- - `normalizeRequiredPermissions(value)`
60
-
61
- ### `src/client/components/UsersWorkspaceSelector.vue`
62
- Exports
63
- - None
64
- Local functions
65
- - `resolveBrowserPath()`
66
- - `navigateToWorkspace(slug)`
67
- - `workspaceAvatarStyle(workspace)`
68
-
69
- ### `src/client/components/UsersWorkspaceSettingsMenuItem.vue`
70
- Exports
71
- - None
72
-
73
- ### `src/client/components/UsersWorkspaceToolsWidget.vue`
74
- Exports
75
- - None
76
-
77
47
  ### `src/client/components/WorkspaceInviteLanding.vue`
78
48
  Exports
79
49
  - None
@@ -105,6 +75,20 @@ Local functions
105
75
  - `submitMemberRoleUpdate(member, roleSid)`
106
76
  - `submitRemoveMember(member)`
107
77
 
78
+ ### `src/client/components/WorkspaceMembersMenuItem.vue`
79
+ Exports
80
+ - None
81
+
82
+ ### `src/client/components/WorkspacePermissionMenuItem.vue`
83
+ Exports
84
+ - None
85
+ Local functions
86
+ - `normalizeRequiredPermissions(value)`
87
+
88
+ ### `src/client/components/WorkspaceProfileSurfaceSwitchMenuItem.vue`
89
+ Exports
90
+ - None
91
+
108
92
  ### `src/client/components/WorkspacesClientElement.vue`
109
93
  Exports
110
94
  - None
@@ -121,6 +105,22 @@ Local functions
121
105
  - `createWorkspace()`
122
106
  - `refreshBootstrap()`
123
107
 
108
+ ### `src/client/components/WorkspaceSelector.vue`
109
+ Exports
110
+ - None
111
+ Local functions
112
+ - `resolveBrowserPath()`
113
+ - `navigateToWorkspace(slug)`
114
+ - `workspaceAvatarStyle(workspace)`
115
+
116
+ ### `src/client/components/WorkspaceSettingsMenuItem.vue`
117
+ Exports
118
+ - None
119
+
120
+ ### `src/client/components/WorkspaceToolsWidget.vue`
121
+ Exports
122
+ - None
123
+
124
124
  ### `src/client/composables/useWorkspaceRouteContext.js`
125
125
  Exports
126
126
  - `useWorkspaceRouteContext()`
@@ -147,18 +147,6 @@ Exports
147
147
  Local functions
148
148
  - `normalizeWorkspaceSlug(value = "")`
149
149
 
150
- ### `src/client/lib/httpClient.js`
151
- Exports
152
- - `workspacesWebHttpClient`
153
-
154
- ### `src/client/lib/permissions.js`
155
- Exports
156
- - `normalizePermissionList`
157
- - `arePermissionListsEqual(left, right)`
158
- - `hasPermission`
159
- Local functions
160
- - `toPermissionSet(values)`
161
-
162
150
  ### `src/client/lib/profileSurfaceMenuLinks.js`
163
151
  Exports
164
152
  - `resolveProfileSurfaceMenuLinks({ context, surface } = {})`
@@ -730,6 +730,7 @@ Local functions
730
730
 
731
731
  ### `src/server/commandHandlers/packageCommands/packageConfiguration.js`
732
732
  Exports
733
+ - `orderRuntimePackageClosure(packageRegistry, packageIds, resolvePackageKind, { includePackage = () => true } = {})`
733
734
  - `orderRuntimePackagesForConfiguration(packageRegistry, requestedPackageIds, resolvePackageKind)`
734
735
  - `resolvePackageConfiguration({ packageRegistry, configurationRegistry, requestedPackageIds, packagesToApply, invocationMode, targetType, resolvedTargetPackageId, inlineOptions, resolvePackageKind, resolveBundleInlineOptionsForPackage, resolvePackageOptions, appRoot, readFileBufferIfExists, io })`
735
736
  Local functions
@@ -84,8 +84,9 @@ clearly when the contract is unsupported. The view uses the public
84
84
  `CrudViewScreen` `actions` slot, `CrudDeleteAction`, and
85
85
  `useCrudDeleteAction()`. The shared component owns the Cancel/Delete dialog;
86
86
  `useCommand()` owns pending/error state and the resource request; success
87
- invalidates the CRUD list and navigates there. Do not inspect private
88
- `users-web` code, add a page transport, or use raw `fetch()`.
87
+ invalidates the CRUD list and navigates there. Import the public client runtime
88
+ from `@jskit-ai/http-web`; do not inspect package-private code, add a page
89
+ transport, or use raw `fetch()`.
89
90
 
90
91
  ## Strict temporal values
91
92
 
@@ -37,6 +37,9 @@ Doctor must continue to report a missing managed test.
37
37
  object; never bind its route-template/relative string raw to Vue Router `to`.
38
38
  - Use page-local row-action/filter definitions. Keep read failures local; use
39
39
  `useCommand()` or `useUiFeedback()` for user-triggered action feedback.
40
+ - Import neutral request, operation, permission, and generated CRUD UI APIs from
41
+ `@jskit-ai/http-web`. Do not install `users-web` unless the application uses
42
+ account, profile, or user-specific shell UI.
40
43
 
41
44
  ## Adaptive shell drawer
42
45