@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.
- package/dist/test-utils/index.js +5 -5
- package/package.json +1 -1
- package/src/business/acquisition/ontology-validation.ts +1 -1
- package/src/organization-model/__tests__/schema.test.ts +428 -399
- package/src/platform/constants/versions.ts +1 -1
- package/src/platform/registry/__tests__/resource-registry.nested-systems.test.ts +257 -245
- package/src/platform/registry/resource-registry.ts +881 -888
- package/src/platform/registry/validation.ts +721 -712
- package/src/reference/_generated/contracts.md +25 -30
|
@@ -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
|
|
1341
|
-
organizationModel?:
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
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
|
|