@lssm/example.lifecycle-dashboard 0.0.0-canary-20251217063201 → 0.0.0-canary-20251217072406
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/.turbo/turbo-build$colon$bundle.log +50 -51
- package/.turbo/turbo-build.log +51 -23
- package/CHANGELOG.md +3 -2
- package/dist/docs/index.js +1 -1
- package/dist/docs/lifecycle-dashboard.docblock.js +19 -7
- package/dist/example.js +35 -1
- package/dist/index.js +5 -1
- package/dist/libs/contracts/dist/docs/PUBLISHING.docblock.js +16 -76
- package/dist/libs/contracts/dist/docs/accessibility_wcag_compliance_specs.docblock.js +16 -350
- package/dist/libs/contracts/dist/docs/index.js +29 -1
- package/dist/libs/contracts/dist/docs/presentations.js +71 -1
- package/dist/libs/contracts/dist/docs/registry.js +44 -1
- package/dist/libs/contracts/dist/docs/tech/PHASE_1_QUICKSTART.docblock.js +16 -383
- package/dist/libs/contracts/dist/docs/tech/PHASE_2_AI_NATIVE_OPERATIONS.docblock.js +16 -68
- package/dist/libs/contracts/dist/docs/tech/PHASE_3_AUTO_EVOLUTION.docblock.js +16 -140
- package/dist/libs/contracts/dist/docs/tech/PHASE_4_PERSONALIZATION_ENGINE.docblock.js +16 -86
- package/dist/libs/contracts/dist/docs/tech/PHASE_5_ZERO_TOUCH_OPERATIONS.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/auth/better-auth-nextjs.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/contracts/openapi-export.docblock.js +21 -2
- package/dist/libs/contracts/dist/docs/tech/lifecycle-stage-system.docblock.js +16 -213
- package/dist/libs/contracts/dist/docs/tech/llm/llm-integration.docblock.js +73 -5
- package/dist/libs/contracts/dist/docs/tech/mcp-endpoints.docblock.js +37 -1
- package/dist/libs/contracts/dist/docs/tech/presentation-runtime.docblock.js +16 -1
- package/dist/libs/contracts/dist/docs/tech/schema/README.docblock.js +20 -262
- package/dist/libs/contracts/dist/docs/tech/studio/learning-events.docblock.js +48 -1
- package/dist/libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js +24 -2
- package/dist/libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js +25 -16
- package/dist/libs/contracts/dist/docs/tech/studio/project-routing.docblock.js +67 -1
- package/dist/libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js +22 -2
- package/dist/libs/contracts/dist/docs/tech/studio/team-invitations.docblock.js +40 -36
- package/dist/libs/contracts/dist/docs/tech/studio/workspace-ops.docblock.js +47 -1
- package/dist/libs/contracts/dist/docs/tech/studio/workspaces.docblock.js +23 -2
- package/dist/libs/contracts/dist/docs/tech/telemetry-ingest.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/templates/runtime.docblock.js +20 -1
- package/dist/libs/contracts/dist/docs/tech/vscode-extension.docblock.js +36 -3
- package/dist/libs/contracts/dist/docs/tech/workflows/overview.docblock.js +20 -1
- package/dist/snippets/page.js +12 -2
- package/package.json +5 -4
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,262 +1,20 @@
|
|
|
1
|
-
import{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
- Use \`@lssm/app.cli-database\` CLI: \`database import|check|generate|migrate:*|seed\` to manage a single DB; \`@lssm/app.cli-databases\` orchestrates multiple DBs.
|
|
22
|
-
|
|
23
|
-
## Typed merger config
|
|
24
|
-
|
|
25
|
-
- Define imported module list once per DB with a typed config:
|
|
26
|
-
|
|
27
|
-
\`\`\`ts
|
|
28
|
-
// prisma-merger.config.ts
|
|
29
|
-
import { defineMergedPrismaConfig } from '@lssm/app.cli-database';
|
|
30
|
-
|
|
31
|
-
export default defineMergedPrismaConfig({
|
|
32
|
-
modules: [
|
|
33
|
-
'@lssm/app.cli-database-sigil',
|
|
34
|
-
'@lssm/app.cli-database-content',
|
|
35
|
-
// ...
|
|
36
|
-
],
|
|
37
|
-
});
|
|
38
|
-
\`\`\`
|
|
39
|
-
|
|
40
|
-
- Then run \`database import --target .\` (no need to pass \`--modules\`).
|
|
41
|
-
|
|
42
|
-
## Prisma Config (prisma.config.ts)
|
|
43
|
-
|
|
44
|
-
We use Prisma Config per official docs to point Prisma to the multi-file schema folder and migrations:
|
|
45
|
-
|
|
46
|
-
\`\`\`ts
|
|
47
|
-
// prisma.config.ts
|
|
48
|
-
import path from 'node:path';
|
|
49
|
-
import { defineConfig } from 'prisma/config';
|
|
50
|
-
|
|
51
|
-
export default defineConfig({
|
|
52
|
-
schema: path.join('prisma', 'schema'),
|
|
53
|
-
migrations: { path: path.join('prisma', 'migrations') },
|
|
54
|
-
});
|
|
55
|
-
\`\`\`
|
|
56
|
-
|
|
57
|
-
Reference: Prisma blog – Organize Your Prisma Schema into Multiple Files: https://www.prisma.io/blog/organize-your-prisma-schema-with-multi-file-support
|
|
58
|
-
|
|
59
|
-
---
|
|
60
|
-
|
|
61
|
-
# LSSM Auth (Sigil) – Models & Integration
|
|
62
|
-
|
|
63
|
-
This document tracks the identity models and integration points used by the LSSM Sigil module.
|
|
64
|
-
|
|
65
|
-
## Models (Prisma \`lssm_sigil\`)
|
|
66
|
-
|
|
67
|
-
- \`User\` – core identity with email, optional phone, role, passkeys, apiKeys
|
|
68
|
-
- \`Session\` – session tokens and metadata; includes \`activeOrganizationId\`
|
|
69
|
-
- \`Account\` – external providers (password, OAuth)
|
|
70
|
-
- \`Organization\` – tenant boundary; includes \`type\` additional field
|
|
71
|
-
- \`Member\`, \`Invitation\`, \`Team\`, \`TeamMember\` – org/teams
|
|
72
|
-
- \`Role\`, \`Permission\`, \`PolicyBinding\` – RBAC
|
|
73
|
-
- \`ApiKey\`, \`Passkey\` – programmable access and WebAuthn
|
|
74
|
-
- \`SsoProvider\` – OIDC/SAML provider configuration (org- or user-scoped)
|
|
75
|
-
- \`OAuthApplication\`, \`OAuthAccessToken\`, \`OAuthConsent\` – first/third-party OAuth
|
|
76
|
-
|
|
77
|
-
These mirror STRIT additions so Better Auth advanced plugins (admin, organization, apiKey, passkey, genericOAuth) work uniformly across apps.
|
|
78
|
-
|
|
79
|
-
## Better Auth (server)
|
|
80
|
-
|
|
81
|
-
Enabled methods:
|
|
82
|
-
|
|
83
|
-
- Email & password
|
|
84
|
-
- Phone OTP (Telnyx)
|
|
85
|
-
- Passkey (WebAuthn)
|
|
86
|
-
- API keys
|
|
87
|
-
- Organizations & Teams
|
|
88
|
-
- Generic OAuth (FranceConnect+ via OIDC with JWE/JWS using JOSE)
|
|
89
|
-
|
|
90
|
-
Server config lives at \`packages/lssm/modules/sigil/src/application/services/auth.ts\`.
|
|
91
|
-
|
|
92
|
-
## Clients (Expo / React)
|
|
93
|
-
|
|
94
|
-
Client config lives at \`packages/lssm/modules/sigil/src/presentation/providers/auth/expo.ts\` with plugins for admin, passkey, apiKey, organization, phone, genericOAuth.
|
|
95
|
-
|
|
96
|
-
## Environment Variables
|
|
97
|
-
|
|
98
|
-
Telnyx (phone OTP):
|
|
99
|
-
|
|
100
|
-
- \`TELNYX_API_KEY\`
|
|
101
|
-
- \`TELNYX_MESSAGING_PROFILE_ID\`
|
|
102
|
-
- \`TELNYX_FROM_NUMBER\`
|
|
103
|
-
|
|
104
|
-
FranceConnect+ (prefer LSSM*… but STRIT*… fallbacks are supported):
|
|
105
|
-
|
|
106
|
-
- \`LSSM_FRANCECONNECTPLUS_DISCOVERY_URL\`
|
|
107
|
-
- \`LSSM_FRANCECONNECTPLUS_CLIENT_ID\`
|
|
108
|
-
- \`LSSM_FRANCECONNECTPLUS_CLIENT_SECRET\`
|
|
109
|
-
- \`LSSM_FRANCECONNECTPLUS_ENC_PRIVATE_KEY_PEM\` (PKCS8; RSA-OAEP-256)
|
|
110
|
-
|
|
111
|
-
Generic:
|
|
112
|
-
|
|
113
|
-
- \`API_URL_IDENTITIES\` – base URL for Better Auth server
|
|
114
|
-
- \`BETTER_AUTH_SECRET\` – server secret
|
|
115
|
-
|
|
116
|
-
Keep this in sync with code changes to avoid drift.
|
|
117
|
-
|
|
118
|
-
## HCircle domain splits and auth removal
|
|
119
|
-
|
|
120
|
-
- Auth/identity models are not defined locally anymore. They come from \`@lssm/app.cli-database-sigil\` under the \`lssm_sigil\` schema.
|
|
121
|
-
- \`packages/hcircle/libs/database-coliving/prisma/schema/domain/\` is split by domain; newsletter/waiting list lives in \`newsletter.prisma\` and uses \`@@map("waiting_list")\`.
|
|
122
|
-
- To avoid collisions with module names, the local event models were renamed to \`SocialEvent\`, \`SocialEventAttendee\`, and \`SocialEventRecurrence\` with \`@@map\` pointing to existing table names.
|
|
123
|
-
|
|
124
|
-
---
|
|
125
|
-
|
|
126
|
-
## Vertical profiles (current)
|
|
127
|
-
|
|
128
|
-
### STRIT
|
|
129
|
-
|
|
130
|
-
- prisma-merger modules:
|
|
131
|
-
- \`@lssm/app.cli-database-sigil\`, \`@lssm/app.cli-database-content\`, \`@lssm/app.cli-database-ops\`, \`@lssm/app.cli-database-planning\`, \`@lssm/app.cli-database-quill\`, \`@lssm/app.cli-database-geoterro\`
|
|
132
|
-
- main.prisma schemas:
|
|
133
|
-
- \`schemas = ["public","lssm_sigil","lssm_content","lssm_ops","lssm_planning","lssm_quill","lssm_geoterro"]\`
|
|
134
|
-
- domain splits (\`packages/strit/libs/database/prisma/schema/domain/\`):
|
|
135
|
-
- \`bookings.prisma\` (Booking, StritDocument + links to Content \`File\` and Sigil \`Organization\`)
|
|
136
|
-
- \`commerce.prisma\` (Wholesale models; \`sellerId\` linked to Sigil \`Organization\`)
|
|
137
|
-
- \`files.prisma\` (PublicFile, PublicFileAccessLog; \`ownerId\`→Organization, \`uploadedBy\`→User)
|
|
138
|
-
- \`geo.prisma\` (PublicCountry, PublicAddress, City; links to Spots/Series)
|
|
139
|
-
- \`spots.prisma\`, \`urbanism.prisma\`, \`analytics.prisma\`, \`onboarding.prisma\`, \`referrals.prisma\`, \`subscriptions.prisma\`, \`content.prisma\`
|
|
140
|
-
- auth models are imported from Sigil (no local auth tables).
|
|
141
|
-
- Back-relations for \`Organization\` (e.g., \`files\`, seller relations) are declared in the Sigil module to avoid scattering.
|
|
142
|
-
|
|
143
|
-
### ARTISANOS
|
|
144
|
-
|
|
145
|
-
- prisma-merger modules:
|
|
146
|
-
- \`@lssm/app.cli-database-sigil\`, \`@lssm/app.cli-database-content\`, \`@lssm/app.cli-database-featureflags\`, \`@lssm/app.cli-database-ops\`, \`@lssm/app.cli-database-planning\`, \`@lssm/app.cli-database-quill\`, \`@lssm/app.cli-database-geoterro\`
|
|
147
|
-
- main.prisma schemas:
|
|
148
|
-
- \`schemas = ["public","lssm_sigil","lssm_content","lssm_featureflags","lssm_ops","lssm_planning","lssm_quill","lssm_geoterro"]\`
|
|
149
|
-
- domain splits (\`packages/artisanos/libs/database-artisan/prisma/schema/domain/\`):
|
|
150
|
-
- \`sales.prisma\` (Client, Quote, QuoteTemplate, Invoice, FollowUps)
|
|
151
|
-
- \`subsidies.prisma\` (SubsidyProgram, AidApplication, SupportingDocument)
|
|
152
|
-
- \`projects.prisma\` (Project, ProjectPlanningSettings)
|
|
153
|
-
- \`crm.prisma\` (OrganizationProfessionalProfile, OrganizationCertification)
|
|
154
|
-
- \`professions.prisma\`, \`products.prisma\`, \`templates.prisma\`, \`analytics.prisma\`, \`onboarding.prisma\`, \`referrals.prisma\`, \`subscriptions.prisma\`, \`files.prisma\`
|
|
155
|
-
- auth/organization/team models are provided by Sigil; local legacy copies were removed.
|
|
156
|
-
- Where names collide with Content, local models are prefixed (e.g., \`PublicFile\`) and use \`@@map\` to keep existing table names where applicable.
|
|
157
|
-
|
|
158
|
-
## Schema Dictionary: \`@lssm/lib.schema\`
|
|
159
|
-
|
|
160
|
-
### Purpose
|
|
161
|
-
|
|
162
|
-
Describe operation I/O once and generate:
|
|
163
|
-
|
|
164
|
-
- zod (runtime validation)
|
|
165
|
-
- GraphQL (Pothos types/refs)
|
|
166
|
-
- JSON Schema (via \`zod-to-json-schema\` or native descriptors)
|
|
167
|
-
|
|
168
|
-
### Primitives
|
|
169
|
-
|
|
170
|
-
- **FieldType<T>**: describes a scalar or composite field and carries:
|
|
171
|
-
- \`zod\` schema for validation
|
|
172
|
-
- optional JSON Schema descriptor
|
|
173
|
-
- optional GraphQL scalar reference/name
|
|
174
|
-
- **SchemaModel**: named object model composed of fields. Exposes helpers:
|
|
175
|
-
- \`getZod(): z.ZodObject<ZodShapeFromFields<Fields>> | z.ZodArray<z.ZodObject<...>>\`
|
|
176
|
-
- Preserves each field's schema, optionality, and array-ness
|
|
177
|
-
- Top-level lists are supported via \`config.isArray: true\`
|
|
178
|
-
- \`getJsonSchema(): JSONSchema7\` (export for docs, MCP, forms)
|
|
179
|
-
- \`getPothosInput()\` (GraphQL input object name)
|
|
180
|
-
|
|
181
|
-
### Conventions
|
|
182
|
-
|
|
183
|
-
- Name models with PascalCase; suffix with \`Input\`/\`Result\` when ambiguous.
|
|
184
|
-
- Use explicit enums for multi-value constants; reuse the same enum across input/output.
|
|
185
|
-
- Define domain enums via \`defineEnum('Name', [...])\` in the relevant domain package (e.g., \`packages/strit/libs/contracts-strit/src/enums/\`), not in \`ScalarTypeEnum\`.
|
|
186
|
-
- Reference those enums in \`SchemaModel\` fields directly (they expose \`getZod\`, \`getPothos\`, \`getJsonSchema\`).
|
|
187
|
-
|
|
188
|
-
#### Example (STRIT)
|
|
189
|
-
|
|
190
|
-
\`\`\`ts
|
|
191
|
-
// packages/strit/libs/contracts-strit/src/enums/recurrence.ts
|
|
192
|
-
import { defineEnum } from '@lssm/lib.schema';
|
|
193
|
-
export const SpotEnum = {
|
|
194
|
-
Weekday: () =>
|
|
195
|
-
defineEnum('Weekday', ['MO', 'TU', 'WE', 'TH', 'FR', 'SA', 'SU'] as const),
|
|
196
|
-
RecurrenceFrequency: () =>
|
|
197
|
-
defineEnum('RecurrenceFrequency', [
|
|
198
|
-
'DAILY',
|
|
199
|
-
'WEEKLY',
|
|
200
|
-
'MONTHLY',
|
|
201
|
-
'YEARLY',
|
|
202
|
-
] as const),
|
|
203
|
-
} as const;
|
|
204
|
-
\`\`\`
|
|
205
|
-
|
|
206
|
-
\`\`\`ts
|
|
207
|
-
// usage in contracts
|
|
208
|
-
frequency: { type: SpotEnum.RecurrenceFrequency(), isOptional: false },
|
|
209
|
-
byWeekday: { type: SpotEnum.Weekday(), isOptional: true, isArray: true },
|
|
210
|
-
\`\`\`
|
|
211
|
-
|
|
212
|
-
- Use \`Date\` type for temporal values and ensure ISO strings in JSON transports where needed.
|
|
213
|
-
|
|
214
|
-
### Mapping rules (summary)
|
|
215
|
-
|
|
216
|
-
- Strings → GraphQL \`String\`
|
|
217
|
-
- Numbers → \`Int\` if safe 32-bit integer else \`Float\`
|
|
218
|
-
- Booleans → \`Boolean\`
|
|
219
|
-
- Dates → custom \`Date\` scalar
|
|
220
|
-
- Arrays<T> → list of mapped T (set \`isArray: true\` on the field)
|
|
221
|
-
- Top-level arrays → set \`isArray: true\` on the model config
|
|
222
|
-
- Objects → input/output object types with stable field order
|
|
223
|
-
- Unions → supported for output; input unions map to JSON (structural input is not supported by GraphQL)
|
|
224
|
-
|
|
225
|
-
### JSON Schema export
|
|
226
|
-
|
|
227
|
-
Prefer \`getZod()\` + \`zod-to-json-schema\` for consistency. For advanced cases, provide a custom \`getJsonSchema()\` on the model.
|
|
228
|
-
|
|
229
|
-
### Example
|
|
230
|
-
|
|
231
|
-
\`\`\`ts
|
|
232
|
-
import { ScalarTypeEnum, SchemaModel } from '@lssm/lib.schema';
|
|
233
|
-
|
|
234
|
-
// Nested model
|
|
235
|
-
const Weekday = new SchemaModel({
|
|
236
|
-
name: 'Weekday',
|
|
237
|
-
fields: {
|
|
238
|
-
value: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
|
|
239
|
-
},
|
|
240
|
-
});
|
|
241
|
-
|
|
242
|
-
// Parent model with array field and nested object
|
|
243
|
-
const Rule = new SchemaModel({
|
|
244
|
-
name: 'Rule',
|
|
245
|
-
fields: {
|
|
246
|
-
timezone: { type: ScalarTypeEnum.TimeZone(), isOptional: false },
|
|
247
|
-
byWeekday: { type: Weekday, isOptional: true, isArray: true },
|
|
248
|
-
},
|
|
249
|
-
});
|
|
250
|
-
|
|
251
|
-
const CreateThingInput = new SchemaModel({
|
|
252
|
-
name: 'CreateThingInput',
|
|
253
|
-
fields: {
|
|
254
|
-
name: { type: ScalarTypeEnum.NonEmptyString(), isOptional: false },
|
|
255
|
-
rule: { type: Rule, isOptional: false },
|
|
256
|
-
},
|
|
257
|
-
});
|
|
258
|
-
|
|
259
|
-
// zod
|
|
260
|
-
const z = CreateThingInput.getZod();
|
|
261
|
-
\`\`\`
|
|
262
|
-
`}]);
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/schema/README.docblock.js
|
|
4
|
+
const tech_schema_README_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.schema.README",
|
|
6
|
+
title: "Multi‑File Prisma Schema Conventions (per database)",
|
|
7
|
+
summary: "We adopt Prisma multi‑file schema (GA ≥ v6.7) to organize each database’s models by domain and to import core LSSM module schemas locally.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/schema/README",
|
|
11
|
+
tags: [
|
|
12
|
+
"tech",
|
|
13
|
+
"schema",
|
|
14
|
+
"README"
|
|
15
|
+
],
|
|
16
|
+
body: "# Multi‑File Prisma Schema Conventions (per database)\n\nWe adopt Prisma multi‑file schema (GA ≥ v6.7) to organize each database’s models by domain and to import core LSSM module schemas locally.\n\nCanonical layout per DB:\n\n```\nprisma/\n schema/\n main.prisma # datasource + generators only\n imported/\n lssm_sigil/*.prisma # imported models/enums only (no datasource/generator)\n lssm_content/*.prisma # idem\n <domain>/*.prisma # vertical‑specific models split by bounded context\n```\n\nNotes:\n\n- Imported files contain only `model` and `enum` blocks (strip `datasource`/`generator`).\n- Preserve `@@schema(\"…\")` annotations to keep tables in their Postgres schemas; we now explicitly list schemas in `main.prisma` to avoid P1012: `schemas = [\"public\",\"lssm_sigil\",\"lssm_content\",\"lssm_featureflags\",\"lssm_ops\",\"lssm_planning\",\"lssm_quill\",\"lssm_geoterro\"]`.\n- Use `@lssm/app.cli-database` CLI: `database import|check|generate|migrate:*|seed` to manage a single DB; `@lssm/app.cli-databases` orchestrates multiple DBs.\n\n## Typed merger config\n\n- Define imported module list once per DB with a typed config:\n\n```ts\n// prisma-merger.config.ts\nimport { defineMergedPrismaConfig } from '@lssm/app.cli-database';\n\nexport default defineMergedPrismaConfig({\n modules: [\n '@lssm/app.cli-database-sigil',\n '@lssm/app.cli-database-content',\n // ...\n ],\n});\n```\n\n- Then run `database import --target .` (no need to pass `--modules`).\n\n## Prisma Config (prisma.config.ts)\n\nWe use Prisma Config per official docs to point Prisma to the multi-file schema folder and migrations:\n\n```ts\n// prisma.config.ts\nimport path from 'node:path';\nimport { defineConfig } from 'prisma/config';\n\nexport default defineConfig({\n schema: path.join('prisma', 'schema'),\n migrations: { path: path.join('prisma', 'migrations') },\n});\n```\n\nReference: Prisma blog – Organize Your Prisma Schema into Multiple Files: https://www.prisma.io/blog/organize-your-prisma-schema-with-multi-file-support\n\n---\n\n# LSSM Auth (Sigil) – Models & Integration\n\nThis document tracks the identity models and integration points used by the LSSM Sigil module.\n\n## Models (Prisma `lssm_sigil`)\n\n- `User` – core identity with email, optional phone, role, passkeys, apiKeys\n- `Session` – session tokens and metadata; includes `activeOrganizationId`\n- `Account` – external providers (password, OAuth)\n- `Organization` – tenant boundary; includes `type` additional field\n- `Member`, `Invitation`, `Team`, `TeamMember` – org/teams\n- `Role`, `Permission`, `PolicyBinding` – RBAC\n- `ApiKey`, `Passkey` – programmable access and WebAuthn\n- `SsoProvider` – OIDC/SAML provider configuration (org- or user-scoped)\n- `OAuthApplication`, `OAuthAccessToken`, `OAuthConsent` – first/third-party OAuth\n\nThese mirror STRIT additions so Better Auth advanced plugins (admin, organization, apiKey, passkey, genericOAuth) work uniformly across apps.\n\n## Better Auth (server)\n\nEnabled methods:\n\n- Email & password\n- Phone OTP (Telnyx)\n- Passkey (WebAuthn)\n- API keys\n- Organizations & Teams\n- Generic OAuth (FranceConnect+ via OIDC with JWE/JWS using JOSE)\n\nServer config lives at `packages/lssm/modules/sigil/src/application/services/auth.ts`.\n\n## Clients (Expo / React)\n\nClient config lives at `packages/lssm/modules/sigil/src/presentation/providers/auth/expo.ts` with plugins for admin, passkey, apiKey, organization, phone, genericOAuth.\n\n## Environment Variables\n\nTelnyx (phone OTP):\n\n- `TELNYX_API_KEY`\n- `TELNYX_MESSAGING_PROFILE_ID`\n- `TELNYX_FROM_NUMBER`\n\nFranceConnect+ (prefer LSSM*… but STRIT*… fallbacks are supported):\n\n- `LSSM_FRANCECONNECTPLUS_DISCOVERY_URL`\n- `LSSM_FRANCECONNECTPLUS_CLIENT_ID`\n- `LSSM_FRANCECONNECTPLUS_CLIENT_SECRET`\n- `LSSM_FRANCECONNECTPLUS_ENC_PRIVATE_KEY_PEM` (PKCS8; RSA-OAEP-256)\n\nGeneric:\n\n- `API_URL_IDENTITIES` – base URL for Better Auth server\n- `BETTER_AUTH_SECRET` – server secret\n\nKeep this in sync with code changes to avoid drift.\n\n## HCircle domain splits and auth removal\n\n- Auth/identity models are not defined locally anymore. They come from `@lssm/app.cli-database-sigil` under the `lssm_sigil` schema.\n- `packages/hcircle/libs/database-coliving/prisma/schema/domain/` is split by domain; newsletter/waiting list lives in `newsletter.prisma` and uses `@@map(\"waiting_list\")`.\n- To avoid collisions with module names, the local event models were renamed to `SocialEvent`, `SocialEventAttendee`, and `SocialEventRecurrence` with `@@map` pointing to existing table names.\n\n---\n\n## Vertical profiles (current)\n\n### STRIT\n\n- prisma-merger modules:\n - `@lssm/app.cli-database-sigil`, `@lssm/app.cli-database-content`, `@lssm/app.cli-database-ops`, `@lssm/app.cli-database-planning`, `@lssm/app.cli-database-quill`, `@lssm/app.cli-database-geoterro`\n- main.prisma schemas:\n - `schemas = [\"public\",\"lssm_sigil\",\"lssm_content\",\"lssm_ops\",\"lssm_planning\",\"lssm_quill\",\"lssm_geoterro\"]`\n- domain splits (`packages/strit/libs/database/prisma/schema/domain/`):\n - `bookings.prisma` (Booking, StritDocument + links to Content `File` and Sigil `Organization`)\n - `commerce.prisma` (Wholesale models; `sellerId` linked to Sigil `Organization`)\n - `files.prisma` (PublicFile, PublicFileAccessLog; `ownerId`→Organization, `uploadedBy`→User)\n - `geo.prisma` (PublicCountry, PublicAddress, City; links to Spots/Series)\n - `spots.prisma`, `urbanism.prisma`, `analytics.prisma`, `onboarding.prisma`, `referrals.prisma`, `subscriptions.prisma`, `content.prisma`\n- auth models are imported from Sigil (no local auth tables).\n- Back-relations for `Organization` (e.g., `files`, seller relations) are declared in the Sigil module to avoid scattering.\n\n### ARTISANOS\n\n- prisma-merger modules:\n - `@lssm/app.cli-database-sigil`, `@lssm/app.cli-database-content`, `@lssm/app.cli-database-featureflags`, `@lssm/app.cli-database-ops`, `@lssm/app.cli-database-planning`, `@lssm/app.cli-database-quill`, `@lssm/app.cli-database-geoterro`\n- main.prisma schemas:\n - `schemas = [\"public\",\"lssm_sigil\",\"lssm_content\",\"lssm_featureflags\",\"lssm_ops\",\"lssm_planning\",\"lssm_quill\",\"lssm_geoterro\"]`\n- domain splits (`packages/artisanos/libs/database-artisan/prisma/schema/domain/`):\n - `sales.prisma` (Client, Quote, QuoteTemplate, Invoice, FollowUps)\n - `subsidies.prisma` (SubsidyProgram, AidApplication, SupportingDocument)\n - `projects.prisma` (Project, ProjectPlanningSettings)\n - `crm.prisma` (OrganizationProfessionalProfile, OrganizationCertification)\n - `professions.prisma`, `products.prisma`, `templates.prisma`, `analytics.prisma`, `onboarding.prisma`, `referrals.prisma`, `subscriptions.prisma`, `files.prisma`\n- auth/organization/team models are provided by Sigil; local legacy copies were removed.\n- Where names collide with Content, local models are prefixed (e.g., `PublicFile`) and use `@@map` to keep existing table names where applicable.\n\n## Schema Dictionary: `@lssm/lib.schema`\n\n### Purpose\n\nDescribe operation I/O once and generate:\n\n- zod (runtime validation)\n- GraphQL (Pothos types/refs)\n- JSON Schema (via `zod-to-json-schema` or native descriptors)\n\n### Primitives\n\n- **FieldType<T>**: describes a scalar or composite field and carries:\n - `zod` schema for validation\n - optional JSON Schema descriptor\n - optional GraphQL scalar reference/name\n- **SchemaModel**: named object model composed of fields. Exposes helpers:\n - `getZod(): z.ZodObject<ZodShapeFromFields<Fields>> | z.ZodArray<z.ZodObject<...>>`\n - Preserves each field's schema, optionality, and array-ness\n - Top-level lists are supported via `config.isArray: true`\n - `getJsonSchema(): JSONSchema7` (export for docs, MCP, forms)\n - `getPothosInput()` (GraphQL input object name)\n\n### Conventions\n\n- Name models with PascalCase; suffix with `Input`/`Result` when ambiguous.\n- Use explicit enums for multi-value constants; reuse the same enum across input/output.\n- Define domain enums via `defineEnum('Name', [...])` in the relevant domain package (e.g., `packages/strit/libs/contracts-strit/src/enums/`), not in `ScalarTypeEnum`.\n- Reference those enums in `SchemaModel` fields directly (they expose `getZod`, `getPothos`, `getJsonSchema`).\n\n#### Example (STRIT)\n\n```ts\n// packages/strit/libs/contracts-strit/src/enums/recurrence.ts\nimport { defineEnum } from '@lssm/lib.schema';\nexport const SpotEnum = {\n Weekday: () =>\n defineEnum('Weekday', ['MO', 'TU', 'WE', 'TH', 'FR', 'SA', 'SU'] as const),\n RecurrenceFrequency: () =>\n defineEnum('RecurrenceFrequency', [\n 'DAILY',\n 'WEEKLY',\n 'MONTHLY',\n 'YEARLY',\n ] as const),\n} as const;\n```\n\n```ts\n// usage in contracts\nfrequency: { type: SpotEnum.RecurrenceFrequency(), isOptional: false },\nbyWeekday: { type: SpotEnum.Weekday(), isOptional: true, isArray: true },\n```\n\n- Use `Date` type for temporal values and ensure ISO strings in JSON transports where needed.\n\n### Mapping rules (summary)\n\n- Strings → GraphQL `String`\n- Numbers → `Int` if safe 32-bit integer else `Float`\n- Booleans → `Boolean`\n- Dates → custom `Date` scalar\n- Arrays<T> → list of mapped T (set `isArray: true` on the field)\n- Top-level arrays → set `isArray: true` on the model config\n- Objects → input/output object types with stable field order\n- Unions → supported for output; input unions map to JSON (structural input is not supported by GraphQL)\n\n### JSON Schema export\n\nPrefer `getZod()` + `zod-to-json-schema` for consistency. For advanced cases, provide a custom `getJsonSchema()` on the model.\n\n### Example\n\n```ts\nimport { ScalarTypeEnum, SchemaModel } from '@lssm/lib.schema';\n\n// Nested model\nconst Weekday = new SchemaModel({\n name: 'Weekday',\n fields: {\n value: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },\n },\n});\n\n// Parent model with array field and nested object\nconst Rule = new SchemaModel({\n name: 'Rule',\n fields: {\n timezone: { type: ScalarTypeEnum.TimeZone(), isOptional: false },\n byWeekday: { type: Weekday, isOptional: true, isArray: true },\n },\n});\n\nconst CreateThingInput = new SchemaModel({\n name: 'CreateThingInput',\n fields: {\n name: { type: ScalarTypeEnum.NonEmptyString(), isOptional: false },\n rule: { type: Rule, isOptional: false },\n },\n});\n\n// zod\nconst z = CreateThingInput.getZod();\n```\n"
|
|
17
|
+
}];
|
|
18
|
+
registerDocBlocks(tech_schema_README_DocBlocks);
|
|
19
|
+
|
|
20
|
+
//#endregion
|
|
@@ -1 +1,48 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/learning-events.docblock.js
|
|
4
|
+
const tech_studio_learning_events_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.learning-events",
|
|
6
|
+
title: "Studio Learning Events",
|
|
7
|
+
summary: "Studio persists learning/activity events to the database; Sandbox keeps learning local-first and unlogged.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/learning-events",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"learning",
|
|
14
|
+
"events",
|
|
15
|
+
"analytics",
|
|
16
|
+
"sandbox"
|
|
17
|
+
],
|
|
18
|
+
body: `# Studio Learning Events
|
|
19
|
+
|
|
20
|
+
Studio emits lightweight **learning/activity events** to support onboarding, ambient coaching, and learning journeys.
|
|
21
|
+
|
|
22
|
+
## Persistence model
|
|
23
|
+
|
|
24
|
+
- **Studio**: events are persisted to the database in \`StudioLearningEvent\` and are organization-scoped (optionally project-scoped).
|
|
25
|
+
- **Sandbox**: events remain **local-only** (unlogged); they must never be sent to backend services.
|
|
26
|
+
|
|
27
|
+
## GraphQL API
|
|
28
|
+
|
|
29
|
+
- \`recordLearningEvent(input: { name, projectId?, payload? })\`
|
|
30
|
+
- \`myLearningEvents(projectId?, limit?)\`
|
|
31
|
+
- \`myOnboardingTracks(productId?, includeProgress?)\`
|
|
32
|
+
- \`myOnboardingProgress(trackKey)\`
|
|
33
|
+
- \`dismissOnboardingTrack(trackKey)\`
|
|
34
|
+
|
|
35
|
+
## Common event names (convention)
|
|
36
|
+
|
|
37
|
+
- \`module.navigated\` — user navigated to a Studio module (payload at minimum: \`{ moduleId }\`).
|
|
38
|
+
- \`studio.template.instantiated\` — created a new Studio project (starter template). Payload commonly includes \`{ templateId, projectSlug }\`.
|
|
39
|
+
- \`spec.changed\` — created or updated a Studio spec. Payload may include \`{ action: 'create' | 'update', specId?, specType? }\`.
|
|
40
|
+
- \`regeneration.completed\` — finished a “regen/deploy” action (currently emitted on successful Studio deploy actions).
|
|
41
|
+
- \`studio.evolution.applied\` — completed an Evolution session (payload commonly includes \`{ evolutionSessionId }\`).
|
|
42
|
+
|
|
43
|
+
These events are intentionally minimal and must avoid PII/secrets in payloads.
|
|
44
|
+
`
|
|
45
|
+
}];
|
|
46
|
+
registerDocBlocks(tech_studio_learning_events_DocBlocks);
|
|
47
|
+
|
|
48
|
+
//#endregion
|
|
@@ -1,4 +1,22 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/learning-journeys.docblock.js
|
|
4
|
+
const tech_studio_learning_journeys_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.learning-journeys",
|
|
6
|
+
title: "Studio learning journeys (onboarding + coach)",
|
|
7
|
+
summary: "DB-backed learning journeys tracked per organization: seeded tracks/steps, event-driven progress, XP/streaks, and a Studio coach surface.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/learning-journeys",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"learning",
|
|
14
|
+
"onboarding",
|
|
15
|
+
"journey",
|
|
16
|
+
"graphql",
|
|
17
|
+
"database"
|
|
18
|
+
],
|
|
19
|
+
body: `# Studio learning journeys
|
|
2
20
|
|
|
3
21
|
Studio supports **DB-backed learning journeys** (onboarding tracks + ambient coach tips) that are advanced by **recorded learning events**.
|
|
4
22
|
|
|
@@ -54,4 +72,8 @@ Learning journey progress lives in the \`lssm_learning\` schema:
|
|
|
54
72
|
|
|
55
73
|
- Do not put secrets/PII in \`payload\` fields of learning events.
|
|
56
74
|
- Prefer shallow payload filters (small, stable keys).
|
|
57
|
-
`
|
|
75
|
+
`
|
|
76
|
+
}];
|
|
77
|
+
registerDocBlocks(tech_studio_learning_journeys_DocBlocks);
|
|
78
|
+
|
|
79
|
+
//#endregion
|
|
@@ -1,4 +1,21 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/platform-admin-panel.docblock.js
|
|
4
|
+
const tech_studio_platform_admin_panel_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.platform-admin-panel",
|
|
6
|
+
title: "Studio Platform Admin Panel",
|
|
7
|
+
summary: "How PLATFORM_ADMIN organizations manage tenant orgs and integration connections without session switching.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/platform-admin-panel",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"admin",
|
|
14
|
+
"multi-tenancy",
|
|
15
|
+
"integrations",
|
|
16
|
+
"better-auth"
|
|
17
|
+
],
|
|
18
|
+
body: `# Studio Platform Admin Panel
|
|
2
19
|
|
|
3
20
|
ContractSpec Studio exposes a dedicated **Platform Admin Panel** for users whose **active organization** has:
|
|
4
21
|
|
|
@@ -60,4 +77,8 @@ The platform-admin GraphQL operations are guarded by the active org type and inc
|
|
|
60
77
|
- Admin GraphQL module: \`packages/bundles/contractspec-studio/src/infrastructure/graphql/modules/platform-admin.ts\`
|
|
61
78
|
- Integrations admin service: \`packages/bundles/contractspec-studio/src/modules/platform-integrations/index.ts\`
|
|
62
79
|
- Web route: \`packages/apps/web-landing/src/app/(app-customer)/studio/admin/*\`
|
|
63
|
-
`
|
|
80
|
+
`
|
|
81
|
+
}];
|
|
82
|
+
registerDocBlocks(tech_studio_platform_admin_panel_DocBlocks);
|
|
83
|
+
|
|
84
|
+
//#endregion
|
|
@@ -1,4 +1,21 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/project-access-teams.docblock.js
|
|
4
|
+
const tech_studio_project_access_teams_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.project-access-teams",
|
|
6
|
+
title: "Studio Project Access via Teams",
|
|
7
|
+
summary: "Projects live under organizations; team sharing refines access with an admin/owner override.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/project-access-teams",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"projects",
|
|
14
|
+
"teams",
|
|
15
|
+
"rbac",
|
|
16
|
+
"access-control"
|
|
17
|
+
],
|
|
18
|
+
body: `# Studio Project Access via Teams
|
|
2
19
|
|
|
3
20
|
Studio access control is **organization-first** with optional **team-based sharing**.
|
|
4
21
|
|
|
@@ -16,21 +33,13 @@ Studio access control is **organization-first** with optional **team-based shari
|
|
|
16
33
|
|
|
17
34
|
## GraphQL surfaces
|
|
18
35
|
|
|
19
|
-
- Read
|
|
20
|
-
|
|
21
|
-
- \`studioProjectBySlug(slug)\` (enforces the same access rules)
|
|
22
|
-
- \`myTeams\`
|
|
23
|
-
- \`projectTeams(projectId)\`
|
|
24
|
-
|
|
25
|
-
- Write:
|
|
26
|
-
- \`createStudioProject(input.teamIds?)\` (teamIds optional)
|
|
27
|
-
- \`setProjectTeams(projectId, teamIds)\` (admin-only)
|
|
28
|
-
|
|
29
|
-
## Related
|
|
30
|
-
+
|
|
31
|
-
+- Team administration + invitations: see \`/docs/tech/studio/team-invitations\`.
|
|
32
|
-
+
|
|
36
|
+
- Read:\n - \`myStudioProjects\` (returns only projects you can access)\n - \`studioProjectBySlug(slug)\` (enforces the same access rules)\n - \`myTeams\`\n - \`projectTeams(projectId)\`\n\n- Write:\n - \`createStudioProject(input.teamIds?)\` (teamIds optional)\n - \`setProjectTeams(projectId, teamIds)\` (admin-only)\n
|
|
37
|
+
## Related\n+\n+- Team administration + invitations: see \`/docs/tech/studio/team-invitations\`.\n+
|
|
33
38
|
## Notes
|
|
34
39
|
|
|
35
40
|
Payloads and events must avoid secrets/PII. For Sandbox, the model remains local-first and unlogged.
|
|
36
|
-
`
|
|
41
|
+
`
|
|
42
|
+
}];
|
|
43
|
+
registerDocBlocks(tech_studio_project_access_teams_DocBlocks);
|
|
44
|
+
|
|
45
|
+
//#endregion
|
|
@@ -1 +1,67 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/project-routing.docblock.js
|
|
4
|
+
const tech_studio_project_routing_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.project-routing",
|
|
6
|
+
title: "Studio Project Routing",
|
|
7
|
+
summary: "Studio uses slugged, project-first routes: /studio/{projectSlug}/* with canonical slug redirects and soft-deleted projects hidden.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/project-routing",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"routing",
|
|
14
|
+
"projects",
|
|
15
|
+
"slug",
|
|
16
|
+
"redirects"
|
|
17
|
+
],
|
|
18
|
+
body: `# Studio Project Routing
|
|
19
|
+
|
|
20
|
+
ContractSpec Studio uses a **project-first URL scheme**:
|
|
21
|
+
|
|
22
|
+
- \`/studio/projects\` — create, select, and delete projects.
|
|
23
|
+
- \`/studio/{projectSlug}/*\` — project modules (canvas/specs/deploy/integrations/evolution/learning).
|
|
24
|
+
- \`/studio/learning\` — learning hub that does not require selecting a project.
|
|
25
|
+
|
|
26
|
+
## Studio layout shell
|
|
27
|
+
|
|
28
|
+
Studio routes are wrapped in a dedicated **Studio app shell** (header + footer) that provides in-app navigation (Projects/Learning/Teams), organization switching, and account actions.
|
|
29
|
+
|
|
30
|
+
Project module routes (\`/studio/{projectSlug}/*\`) render their own module shell (\`WorkspaceProjectShellLayout\`). When combined with the global Studio header, the project shell uses a **sticky header offset** to avoid overlapping sticky headers.
|
|
31
|
+
|
|
32
|
+
## Slug behavior (rename-safe)
|
|
33
|
+
|
|
34
|
+
- Each project has a \`slug\` stored in the database (\`StudioProject.slug\`).
|
|
35
|
+
- When a project name changes, Studio **updates the slug** and stores the previous slug as an alias (\`StudioProjectSlugAlias\`).
|
|
36
|
+
- Requests to an alias slug are **redirected to the canonical slug**.
|
|
37
|
+
|
|
38
|
+
GraphQL entrypoint:
|
|
39
|
+
|
|
40
|
+
- \`studioProjectBySlug(slug: String!)\` returns:
|
|
41
|
+
- \`project\`
|
|
42
|
+
- \`canonicalSlug\`
|
|
43
|
+
- \`wasRedirect\`
|
|
44
|
+
|
|
45
|
+
## Deletion behavior (soft delete)
|
|
46
|
+
|
|
47
|
+
Projects are **soft-deleted**:
|
|
48
|
+
|
|
49
|
+
- \`deleteStudioProject(id: String!)\` sets \`StudioProject.deletedAt\`.
|
|
50
|
+
- All listings and access checks filter \`deletedAt = null\`.
|
|
51
|
+
- Soft-deleted projects are treated as “not found” in Studio routes and GraphQL access checks.
|
|
52
|
+
|
|
53
|
+
## Available modules for a selected project
|
|
54
|
+
|
|
55
|
+
The following project modules are expected under \`/studio/{projectSlug}\`:
|
|
56
|
+
|
|
57
|
+
- \`/canvas\` — Visual builder canvas (stored via overlays and canvas versions).
|
|
58
|
+
- \`/specs\` — Spec editor (stored as \`StudioSpec\`).
|
|
59
|
+
- \`/deploy\` — Deployments history + triggers (stored as \`StudioDeployment\`).
|
|
60
|
+
- \`/integrations\` — Integrations scoped to project (stored as \`StudioIntegration\`).
|
|
61
|
+
- \`/evolution\` — Evolution sessions (stored as \`EvolutionSession\`).
|
|
62
|
+
- \`/learning\` — Project learning activity.
|
|
63
|
+
`
|
|
64
|
+
}];
|
|
65
|
+
registerDocBlocks(tech_studio_project_routing_DocBlocks);
|
|
66
|
+
|
|
67
|
+
//#endregion
|
|
@@ -1,4 +1,20 @@
|
|
|
1
|
-
import{
|
|
1
|
+
import { registerDocBlocks } from "../../registry.js";
|
|
2
|
+
|
|
3
|
+
//#region ../../libs/contracts/dist/docs/tech/studio/sandbox-unlogged.docblock.js
|
|
4
|
+
const tech_studio_sandbox_unlogged_DocBlocks = [{
|
|
5
|
+
id: "docs.tech.studio.sandbox.unlogged",
|
|
6
|
+
title: "Sandbox (unlogged) vs Studio (authenticated)",
|
|
7
|
+
summary: "The sandbox is a lightweight, unlogged surface that mirrors Studio navigation without auth or analytics.",
|
|
8
|
+
kind: "reference",
|
|
9
|
+
visibility: "public",
|
|
10
|
+
route: "/docs/tech/studio/sandbox-unlogged",
|
|
11
|
+
tags: [
|
|
12
|
+
"studio",
|
|
13
|
+
"sandbox",
|
|
14
|
+
"privacy",
|
|
15
|
+
"analytics"
|
|
16
|
+
],
|
|
17
|
+
body: `## Sandbox guarantees
|
|
2
18
|
|
|
3
19
|
- Route: \`/sandbox\`
|
|
4
20
|
- **No auth requirement**
|
|
@@ -17,4 +33,8 @@ import{a as e}from"../../registry.js";e([{id:`docs.tech.studio.sandbox.unlogged`
|
|
|
17
33
|
- Persisted projects/workspaces
|
|
18
34
|
- Real deployments
|
|
19
35
|
- Organization-scoped integrations (unless explicitly enabled later)
|
|
20
|
-
`
|
|
36
|
+
`
|
|
37
|
+
}];
|
|
38
|
+
registerDocBlocks(tech_studio_sandbox_unlogged_DocBlocks);
|
|
39
|
+
|
|
40
|
+
//#endregion
|