@elevasis/core 0.2.0 → 0.2.1
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/src/README.md +24 -17
- package/src/platform/constants/versions.ts +1 -1
package/package.json
CHANGED
package/src/README.md
CHANGED
|
@@ -6,26 +6,33 @@ This package is the source of truth for shared types, schemas, and contract help
|
|
|
6
6
|
|
|
7
7
|
## Import Rules
|
|
8
8
|
|
|
9
|
-
- Use `@elevasis/core` for browser-safe shared types and schemas.
|
|
10
|
-
- Use `@elevasis/core/
|
|
11
|
-
-
|
|
12
|
-
-
|
|
9
|
+
- Use `@elevasis/core` (root export) for browser-safe shared types and schemas.
|
|
10
|
+
- Use `@elevasis/core/organization-model` for the semantic contract layer.
|
|
11
|
+
- These are the only two subpaths available to external consumers of the published npm package.
|
|
12
|
+
- Paths like `@elevasis/core/server`, `@elevasis/core/test-utils`, `@elevasis/core/platform`, etc. are internal monorepo paths (`@repo/core/...`) and are NOT available to external consumers.
|
|
13
13
|
|
|
14
14
|
## Published Surface Groups
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
- `
|
|
19
|
-
- `
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- `
|
|
24
|
-
- `
|
|
25
|
-
- `
|
|
26
|
-
- `
|
|
27
|
-
- `
|
|
28
|
-
- `
|
|
16
|
+
The published `@elevasis/core` npm package exposes exactly two subpaths:
|
|
17
|
+
|
|
18
|
+
- `.` (`@elevasis/core`) - browser-safe shared types, schemas, and constants.
|
|
19
|
+
- `./organization-model` (`@elevasis/core/organization-model`) - the semantic contract layer for CRM, lead gen, delivery, features, branding, and navigation.
|
|
20
|
+
|
|
21
|
+
Within the monorepo, the internal `@repo/core` package exposes additional subpaths for use by `apps/` and other packages:
|
|
22
|
+
|
|
23
|
+
- `@repo/core/server` - Node.js-only helpers and services.
|
|
24
|
+
- `@repo/core/platform` - shared constants, utilities, registry, SSE, and API types.
|
|
25
|
+
- `@repo/core/auth` - multi-tenancy types for organizations, users, memberships, invitations, and credentials.
|
|
26
|
+
- `@repo/core/execution` - workflow, agent, scheduler, calibration, and execution-interface contracts.
|
|
27
|
+
- `@repo/core/commands` - command queue types and schemas.
|
|
28
|
+
- `@repo/core/operations` - sessions, notifications, observability, activities, triggers, and debug logs.
|
|
29
|
+
- `@repo/core/supabase` - generated database types and helpers.
|
|
30
|
+
- `@repo/core/integrations/...` - OAuth and credential contracts.
|
|
31
|
+
- `@repo/core/projects/api-schemas` - project management request and response schemas.
|
|
32
|
+
- `@repo/core/content` - published content metadata types.
|
|
33
|
+
- `@repo/core/test-utils` - test fixtures and mocks (internal use only).
|
|
34
|
+
|
|
35
|
+
These `@repo/core/*` subpaths are NOT available in the published `@elevasis/core` package.
|
|
29
36
|
|
|
30
37
|
## When To Read Deeper
|
|
31
38
|
|