@elevasis/core 0.33.0 → 0.34.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.
@@ -1328,38 +1328,33 @@ export interface HumanCheckpointDefinition extends ResourceDefinition {
1328
1328
  ### `DeploymentSpec`
1329
1329
 
1330
1330
  ```typescript
1331
- /**
1332
- * Organization-specific resource collection
1333
- *
1334
- * Complete manifest of all automation resources for an organization.
1335
- * Used by ResourceRegistry for discovery and Command View for visualization.
1336
- */
1337
- export interface DeploymentSpec {
1331
+ /**
1332
+ * Organization-specific resource collection
1333
+ *
1334
+ * Complete manifest of all automation resources for an organization.
1335
+ * Used by ResourceRegistry for discovery and Command View for visualization.
1336
+ */
1337
+ export interface DeploymentSpec {
1338
1338
  /** Deployment version (semver) */
1339
1339
  version: string
1340
- /** Optional Organization Model governance catalog used for OM-code validation */
1341
- organizationModel?: Partial<
1342
- Pick<
1343
- OrganizationModel,
1344
- 'systems' | 'resources' | 'ontology' | 'topology' | 'roles' | 'policies' | 'entities' | 'actions'
1345
- >
1346
- >
1347
- /** Workflow definitions */
1348
- workflows?: WorkflowDefinition[]
1349
- /** Agent definitions */
1350
- agents?: AgentDefinition[]
1351
-
1352
- // Resource Manifest fields (optional for backwards compatibility)
1353
- /** Trigger definitions - entry points that initiate executions */
1354
- triggers?: TriggerDefinition[]
1355
- /** Integration definitions - external service connections */
1356
- integrations?: IntegrationDefinition[]
1357
- /** Explicit relationship declarations between resources */
1358
- relationships?: ResourceRelationships
1359
- /** External automation resources (n8n, Make, Zapier, etc.) */
1360
- externalResources?: ExternalResourceDefinition[]
1361
- /** Human checkpoint definitions - human decision points in automation */
1362
- humanCheckpoints?: HumanCheckpointDefinition[]
1340
+ /** Optional full Organization Model snapshot used for OM-code validation and deployment persistence */
1341
+ organizationModel?: OrganizationModel
1342
+ /** Workflow definitions */
1343
+ workflows?: WorkflowDefinition[]
1344
+ /** Agent definitions */
1345
+ agents?: AgentDefinition[]
1346
+
1347
+ // Resource Manifest fields (optional for backwards compatibility)
1348
+ /** Trigger definitions - entry points that initiate executions */
1349
+ triggers?: TriggerDefinition[]
1350
+ /** Integration definitions - external service connections */
1351
+ integrations?: IntegrationDefinition[]
1352
+ /** Explicit relationship declarations between resources */
1353
+ relationships?: ResourceRelationships
1354
+ /** External automation resources (n8n, Make, Zapier, etc.) */
1355
+ externalResources?: ExternalResourceDefinition[]
1356
+ /** Human checkpoint definitions - human decision points in automation */
1357
+ humanCheckpoints?: HumanCheckpointDefinition[]
1363
1358
  }
1364
1359
  ```
1365
1360