@elevasis/core 0.37.0 → 0.38.0

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.
@@ -1,22 +1,23 @@
1
- /**
2
- * Resource Registry exports
3
- */
4
-
5
- export { ResourceCategorySchema, ResourceLinkSchema, kindPrefix, validateNodeId } from './resource-link'
6
- export type { ResourceCategory, ResourceLink } from './resource-link'
7
-
8
- export { RESERVED_RESOURCE_IDS, SYSTEM_RESOURCE_IDS, isReservedResourceId } from './reserved'
9
-
10
- export { ResourceRegistry } from './resource-registry'
11
- export type { DeploymentSpec, OrganizationRegistry, RemoteOrgConfig, SystemConfig } from './resource-registry'
12
-
13
- // Validation utilities
1
+ /**
2
+ * Resource Registry exports
3
+ */
4
+
5
+ export { ResourceCategorySchema, ResourceLinkSchema, kindPrefix, validateNodeId } from './resource-link'
6
+ export type { ResourceCategory, ResourceLink } from './resource-link'
7
+
8
+ export { RESERVED_RESOURCE_IDS, SYSTEM_RESOURCE_IDS, isReservedResourceId } from './reserved'
9
+
10
+ export { ResourceRegistry } from './resource-registry'
11
+ export type { DeploymentSpec, OrganizationRegistry, RemoteOrgConfig, SystemConfig } from './resource-registry'
12
+
13
+ // Validation utilities
14
14
  export {
15
15
  validateDeploymentSpec,
16
16
  validateRelationships,
17
17
  validateExecutionInterface,
18
18
  validateResourceGovernance,
19
19
  validateDeclaredSystemInterfaceReadiness,
20
+ detectMissingApiInterfaceDeclarations,
20
21
  RegistryValidationError
21
22
  } from './validation'
22
23
  export {
@@ -39,78 +40,79 @@ export type {
39
40
  SystemInterfaceReadinessRequest,
40
41
  SystemInterfaceReadinessResult
41
42
  } from '../../business/acquisition/ontology-validation'
42
-
43
- export { bindResourceDescriptor } from './types'
44
-
45
- // Serialization utilities
46
- export { serializeAllOrganizations, serializeOrganization, buildEdges } from './serialization'
47
-
48
- // Types
49
- export type {
50
- ResourceStatus,
51
- ResourceType,
52
- ExecutableResourceType,
53
- ResourceDefinition,
54
- RuntimeResourceDescriptor,
55
- DescriptorBackedResourceDefinition,
56
- BoundResourceDefinition,
57
- ResourceList,
58
- TriggerDefinition,
59
- IntegrationDefinition,
60
- RelationshipDeclaration,
61
- ResourceRelationships,
62
- ExternalPlatform,
63
- ExternalResourceDefinition,
64
- HumanCheckpointDefinition,
65
- WebhookProviderType,
66
- WebhookTriggerConfig,
67
- ScheduleTriggerConfig,
68
- EventTriggerConfig,
69
- TriggerConfig
70
- } from './types'
71
-
72
- // Serialized Types (for API responses)
73
- export type {
74
- SerializedAgentDefinition,
75
- SerializedWorkflowDefinition,
76
- SerializedOrganizationData
77
- } from './serialized-types'
78
-
79
- // Command View Types (for graph visualization)
80
- export type {
81
- CommandViewAgent,
82
- CommandViewWorkflow,
83
- CommandViewNode,
84
- CommandViewNodeType,
85
- CommandViewEdge,
86
- CommandViewData,
87
- RelationshipType
88
- } from './command-view'
89
-
90
- // Command View Utilities
91
- export {
92
- isAgent,
93
- isWorkflow,
94
- isTrigger,
95
- isIntegration,
96
- isExternalResource,
97
- isHumanCheckpoint,
98
- getNodeId,
99
- getNodeType
100
- } from './command-view'
101
-
102
- // Command View Stats types (moved from command-view/)
103
- export type {
104
- StatsTimeRange,
105
- ResourceStats,
106
- ResourceErrorsResponse,
107
- ErrorSummary,
108
- CommandViewExecution,
109
- ResourceExecutionsResponse,
110
- HumanCheckpointStats,
111
- CommandViewStatsResponse
112
- } from './stats-types'
113
-
114
- // Resource Metadata (icon names, colors)
115
- export type { ResourceDefinitionType, NodeColorType } from './resource-metadata'
116
- export { resourceTypeIconNames, resourceTypeColors, getResourceIconName, getResourceColor } from './resource-metadata'
43
+
44
+ export { bindResourceDescriptor } from './types'
45
+ export type { ApiInterfaceConformanceGap } from './types'
46
+
47
+ // Serialization utilities
48
+ export { serializeAllOrganizations, serializeOrganization, buildEdges } from './serialization'
49
+
50
+ // Types
51
+ export type {
52
+ ResourceStatus,
53
+ ResourceType,
54
+ ExecutableResourceType,
55
+ ResourceDefinition,
56
+ RuntimeResourceDescriptor,
57
+ DescriptorBackedResourceDefinition,
58
+ BoundResourceDefinition,
59
+ ResourceList,
60
+ TriggerDefinition,
61
+ IntegrationDefinition,
62
+ RelationshipDeclaration,
63
+ ResourceRelationships,
64
+ ExternalPlatform,
65
+ ExternalResourceDefinition,
66
+ HumanCheckpointDefinition,
67
+ WebhookProviderType,
68
+ WebhookTriggerConfig,
69
+ ScheduleTriggerConfig,
70
+ EventTriggerConfig,
71
+ TriggerConfig
72
+ } from './types'
73
+
74
+ // Serialized Types (for API responses)
75
+ export type {
76
+ SerializedAgentDefinition,
77
+ SerializedWorkflowDefinition,
78
+ SerializedOrganizationData
79
+ } from './serialized-types'
80
+
81
+ // Command View Types (for graph visualization)
82
+ export type {
83
+ CommandViewAgent,
84
+ CommandViewWorkflow,
85
+ CommandViewNode,
86
+ CommandViewNodeType,
87
+ CommandViewEdge,
88
+ CommandViewData,
89
+ RelationshipType
90
+ } from './command-view'
91
+
92
+ // Command View Utilities
93
+ export {
94
+ isAgent,
95
+ isWorkflow,
96
+ isTrigger,
97
+ isIntegration,
98
+ isExternalResource,
99
+ isHumanCheckpoint,
100
+ getNodeId,
101
+ getNodeType
102
+ } from './command-view'
103
+
104
+ // Command View Stats types (moved from command-view/)
105
+ export type {
106
+ StatsTimeRange,
107
+ ResourceStats,
108
+ ResourceErrorsResponse,
109
+ ErrorSummary,
110
+ CommandViewExecution,
111
+ ResourceExecutionsResponse,
112
+ HumanCheckpointStats,
113
+ CommandViewStatsResponse
114
+ } from './stats-types'
115
+
116
+ // Resource Metadata (icon names, colors)
117
+ export type { ResourceDefinitionType, NodeColorType } from './resource-metadata'
118
+ export { resourceTypeIconNames, resourceTypeColors, getResourceIconName, getResourceColor } from './resource-metadata'