@jskit-ai/agent-docs 0.1.58 → 0.1.59
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 +1 -1
- package/reference/autogen/packages/auth-provider-supabase-core.md +1 -0
- package/reference/autogen/packages/kernel.md +2 -2
- package/reference/autogen/packages/users-core.md +20 -0
- package/reference/autogen/packages/workspaces-core.md +19 -0
- package/reference/autogen/tooling/jskit-cli.md +17 -0
package/package.json
CHANGED
|
@@ -678,7 +678,7 @@ Exports
|
|
|
678
678
|
Exports
|
|
679
679
|
- `normalizeDescriptorUiRoutes(value)`
|
|
680
680
|
- `normalizeDescriptorClientProviders(value)`
|
|
681
|
-
- `
|
|
681
|
+
- `normalizeDescriptorClientOptimizeSpecifiers(value)`
|
|
682
682
|
- `normalizeClientDescriptorSections(descriptorValue)`
|
|
683
683
|
|
|
684
684
|
### `client/index.js`
|
|
@@ -782,7 +782,7 @@ Exports
|
|
|
782
782
|
- `CLIENT_BOOTSTRAP_VIRTUAL_ID`
|
|
783
783
|
- `CLIENT_BOOTSTRAP_RESOLVED_ID`
|
|
784
784
|
- `createVirtualModuleSource(clientModules = [])`
|
|
785
|
-
- `resolveClientOptimizeIncludeSpecifiers(clientModules = [])`
|
|
785
|
+
- `resolveClientOptimizeIncludeSpecifiers(clientModules = [], excludeSpecifiers = [])`
|
|
786
786
|
- `resolveClientOptimizeExcludeSpecifiers(clientModules = [])`
|
|
787
787
|
- `resolveLocalScopeOptimizeExcludeSpecifiers(localScopePackageIds = [])`
|
|
788
788
|
- `resolveInstalledClientPackageIds(options)`
|
|
@@ -198,6 +198,26 @@ Local functions
|
|
|
198
198
|
Exports
|
|
199
199
|
- `resolveActionUser(context, input)`
|
|
200
200
|
|
|
201
|
+
### `src/server/previewUserProvisioning.js`
|
|
202
|
+
Exports
|
|
203
|
+
- `DEFAULT_AUTH_PROVIDER`
|
|
204
|
+
- `DEFAULT_DISPLAY_NAME`
|
|
205
|
+
- `DEFAULT_EMAIL`
|
|
206
|
+
- `ensurePreviewUser(db, profileInput = {})`
|
|
207
|
+
- `normalizePreviewUserProfile(profile = {})`
|
|
208
|
+
- `profileFromUserRow(user = {}, fallback = {})`
|
|
209
|
+
Local functions
|
|
210
|
+
- `normalizeText(value = "")`
|
|
211
|
+
- `normalizeLowerText(value = "")`
|
|
212
|
+
- `normalizeUsername(value = "")`
|
|
213
|
+
- `usernameBaseFromEmail(email = "")`
|
|
214
|
+
- `buildUsernameCandidate(baseUsername = "", suffix = 0)`
|
|
215
|
+
- `isDuplicateError(error)`
|
|
216
|
+
- `resolveUniqueUsername(db, baseUsername = "", { excludeUserId = "" } = {})`
|
|
217
|
+
- `findPreviewUser(db, profile = {})`
|
|
218
|
+
- `ensurePreviewUserRow(db, profile = {})`
|
|
219
|
+
- `ensureUserSettings(db, user = {})`
|
|
220
|
+
|
|
201
221
|
### `src/server/profileSyncLifecycleContributorRegistry.js`
|
|
202
222
|
Exports
|
|
203
223
|
- `PROFILE_SYNC_LIFECYCLE_CONTRIBUTOR_TAG`
|
|
@@ -114,6 +114,25 @@ Exports
|
|
|
114
114
|
- `routeParamsValidator`
|
|
115
115
|
- `workspaceSlugParamsValidator`
|
|
116
116
|
|
|
117
|
+
### `src/server/previewWorkspaceProvisioning.js`
|
|
118
|
+
Exports
|
|
119
|
+
- `buildWorkspaceBaseSlug(profile = {})`
|
|
120
|
+
- `buildWorkspaceName(profile = {})`
|
|
121
|
+
- `ensurePreviewWorkspace(db, user = {}, profile = {}, { appConfig = {}, tenancyMode = "" } = {})`
|
|
122
|
+
- `normalizeWorkspaceResult(workspace = null)`
|
|
123
|
+
Local functions
|
|
124
|
+
- `normalizeText(value = "")`
|
|
125
|
+
- `normalizeLowerText(value = "")`
|
|
126
|
+
- `workspaceSlugPart(value = "")`
|
|
127
|
+
- `usernameBaseFromEmail(email = "")`
|
|
128
|
+
- `buildWorkspaceSlugCandidate(baseSlug = "", suffix = 0)`
|
|
129
|
+
- `isDuplicateError(error)`
|
|
130
|
+
- `resolveUniqueWorkspaceSlug(db, baseSlug = "", { excludeWorkspaceId = "" } = {})`
|
|
131
|
+
- `hasWorkspaceTables(db)`
|
|
132
|
+
- `findPreviewWorkspace(db, user = {}, { isPersonal = true } = {})`
|
|
133
|
+
- `ensureWorkspaceSettings(db, workspace = {})`
|
|
134
|
+
- `ensureOwnerMembership(db, workspace = {}, user = {})`
|
|
135
|
+
|
|
117
136
|
### `src/server/registerWorkspaceBootstrap.js`
|
|
118
137
|
Exports
|
|
119
138
|
- `registerWorkspaceBootstrap(app)`
|
|
@@ -400,6 +400,23 @@ Local functions
|
|
|
400
400
|
- `replaceWithSymlink(targetPath = "", sourceDir = "", { packageName = "" } = {})`
|
|
401
401
|
- `maybeLinkCompanionPackages({ appRoot = "", repoRoot = "", stdout, createCliError })`
|
|
402
402
|
|
|
403
|
+
### `src/server/commandHandlers/appCommands/preparePreviewUser.js`
|
|
404
|
+
Exports
|
|
405
|
+
- `runAppPreparePreviewUserCommand(_ctx = {}, { appRoot = "", options = {}, stdout = process.stdout })`
|
|
406
|
+
Local functions
|
|
407
|
+
- `normalizeText(value = "")`
|
|
408
|
+
- `normalizeLowerText(value = "")`
|
|
409
|
+
- `profileFromOptions(options = {})`
|
|
410
|
+
- `fileExists(filePath = "")`
|
|
411
|
+
- `createAppRequire(appRoot = "")`
|
|
412
|
+
- `importFreshModule(filePath = "")`
|
|
413
|
+
- `loadKnexConfig(appRoot = "")`
|
|
414
|
+
- `importAppPackageExport(appRoot = "", specifier = "", { required = true } = {})`
|
|
415
|
+
- `writeProfile(profileFile = "", authProfile = {})`
|
|
416
|
+
- `isTrueOption(value)`
|
|
417
|
+
- `normalizeTenancyMode(value = "")`
|
|
418
|
+
- `hasWorkspaceTables(db)`
|
|
419
|
+
|
|
403
420
|
### `src/server/commandHandlers/appCommands/release.js`
|
|
404
421
|
Exports
|
|
405
422
|
- `runAppReleaseCommand(ctx = {}, { appRoot = "", options = {}, stdout, stderr })`
|