@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elevasis/core",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "license": "MIT",
5
5
  "description": "Minimal shared constants across Elevasis monorepo",
6
6
  "sideEffects": false,
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/server` only for Node.js-only helpers and services.
11
- - Use `@elevasis/core/test-utils` for test fixtures and mocks.
12
- - Prefer the narrowest published subpath that matches the work you are doing.
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
- - `platform` - shared constants, utilities, registry, SSE, and API types.
17
- - `auth` - multi-tenancy types for organizations, users, memberships, invitations, and credentials.
18
- - `execution` - workflow, agent, scheduler, calibration, and execution-interface contracts.
19
- - `commands` - command queue types and schemas.
20
- - `deployments` - deployment response types.
21
- - `operations` - sessions, notifications, observability, activities, triggers, and debug logs.
22
- - `business` - acquisition and SEO contracts, plus the PDF surface under its own subpaths.
23
- - `organization-model` - the semantic contract layer for CRM, lead gen, delivery, features, branding, and navigation.
24
- - `supabase` - generated database types and helpers.
25
- - `forms` - shared form schemas and form-facing types.
26
- - `integrations` - OAuth and credential contracts.
27
- - `projects` - project management request and response schemas.
28
- - `content` - published content metadata types.
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
 
@@ -1,3 +1,3 @@
1
1
  export const VERSION = {
2
- CURRENT: '1.5.6'
2
+ CURRENT: '1.5.7'
3
3
  }