@scoutflo/topology-contracts 0.3.0 → 0.5.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.
@@ -0,0 +1,173 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.topologyCorrelationApplyResponseSchema = exports.topologyCorrelationApplySummarySchema = exports.topologyCorrelationApplyUnitSchema = exports.topologyCorrelationApplyRequestSchema = exports.topologyCorrelationDryRunResponseSchema = exports.topologyCorrelationDryRunSummarySchema = exports.topologyCorrelationDryRunRequestSchema = exports.topologyCorrelationDryRunOptionsSchema = exports.topologyCorrelationDryRunUnitSchema = exports.topologyCorrelationApiUnitResultSchema = exports.topologyCorrelationApiUnitSpecSchema = exports.topologyCorrelationApiInputScopeSchema = exports.topologyCorrelationApiDiffSchema = exports.topologyCorrelationApiDiffSummarySchema = exports.topologyCorrelationApiRefreshSchema = exports.topologyCorrelationApiFindingSchema = exports.topologyCorrelationApiCandidateSchema = exports.topologyCorrelationApiEndpointSchema = exports.topologyCorrelationApiEvidenceRefSchema = exports.topologyCorrelationApiWarningSchema = exports.topologyCorrelationApiDecisionSchema = exports.topologyCorrelationSyncVersionSchema = exports.TOPOLOGY_CORRELATION_SYNC_VERSION = void 0;
4
+ const zod_1 = require("zod");
5
+ const common_1 = require("../source-sync/common");
6
+ const lifecycle_1 = require("../source-sync/lifecycle");
7
+ exports.TOPOLOGY_CORRELATION_SYNC_VERSION = 'topology.correlation_sync.v1';
8
+ exports.topologyCorrelationSyncVersionSchema = zod_1.z.literal(exports.TOPOLOGY_CORRELATION_SYNC_VERSION);
9
+ exports.topologyCorrelationApiDecisionSchema = zod_1.z.enum([
10
+ 'ready',
11
+ 'warning_only',
12
+ 'ambiguous',
13
+ 'blocked',
14
+ ]);
15
+ exports.topologyCorrelationApiWarningSchema = zod_1.z.object({
16
+ code: common_1.nonEmptyStringSchema,
17
+ message: common_1.nonEmptyStringSchema,
18
+ scope_key: common_1.nonEmptyStringSchema.optional(),
19
+ details: common_1.recordSchema.optional(),
20
+ }).passthrough();
21
+ exports.topologyCorrelationApiEvidenceRefSchema = zod_1.z.object({
22
+ type: common_1.nonEmptyStringSchema,
23
+ ref: common_1.nonEmptyStringSchema,
24
+ summary: common_1.nonEmptyStringSchema.optional(),
25
+ }).passthrough();
26
+ exports.topologyCorrelationApiEndpointSchema = zod_1.z.object({
27
+ entity_type: common_1.entityKindSchema,
28
+ id: common_1.nonEmptyStringSchema,
29
+ resource_type: common_1.nonEmptyStringSchema.optional(),
30
+ }).passthrough();
31
+ exports.topologyCorrelationApiCandidateSchema = zod_1.z.object({
32
+ candidate_key: common_1.nonEmptyStringSchema,
33
+ correlation_rule_key: common_1.nonEmptyStringSchema,
34
+ correlation_rule_version: common_1.nonEmptyStringSchema,
35
+ correlation_unit_key: common_1.nonEmptyStringSchema,
36
+ relationship_lane: common_1.nonEmptyStringSchema,
37
+ relationship_kind: common_1.nonEmptyStringSchema,
38
+ relation: common_1.nonEmptyStringSchema,
39
+ from: exports.topologyCorrelationApiEndpointSchema,
40
+ to: exports.topologyCorrelationApiEndpointSchema,
41
+ canonical_key: common_1.nonEmptyStringSchema,
42
+ semantic_key: common_1.nonEmptyStringSchema,
43
+ confidence: zod_1.z.number().min(0),
44
+ confidence_source: common_1.nonEmptyStringSchema,
45
+ assertion_type: common_1.nonEmptyStringSchema,
46
+ attributes: common_1.recordSchema,
47
+ source_attributes: common_1.recordSchema.optional(),
48
+ evidence: zod_1.z.array(exports.topologyCorrelationApiEvidenceRefSchema),
49
+ decision: exports.topologyCorrelationApiDecisionSchema,
50
+ warnings: zod_1.z.array(exports.topologyCorrelationApiWarningSchema).optional(),
51
+ }).passthrough();
52
+ exports.topologyCorrelationApiFindingSchema = zod_1.z.object({
53
+ correlation_rule_key: common_1.nonEmptyStringSchema,
54
+ correlation_unit_key: common_1.nonEmptyStringSchema,
55
+ candidate_keys: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
56
+ reason: common_1.nonEmptyStringSchema,
57
+ details: common_1.recordSchema.optional(),
58
+ }).passthrough();
59
+ exports.topologyCorrelationApiRefreshSchema = zod_1.z.object({
60
+ existing_id: common_1.nonEmptyStringSchema,
61
+ existing_document_id: common_1.nonEmptyStringSchema.optional(),
62
+ candidate: exports.topologyCorrelationApiCandidateSchema,
63
+ }).passthrough();
64
+ exports.topologyCorrelationApiDiffSummarySchema = zod_1.z.object({
65
+ relationships_to_create: zod_1.z.number().int().min(0),
66
+ relationships_to_refresh: zod_1.z.number().int().min(0),
67
+ relationship_support_to_mark_stale: zod_1.z.number().int().min(0),
68
+ relationship_support_to_retire: zod_1.z.number().int().min(0),
69
+ conflicts: zod_1.z.number().int().min(0),
70
+ ambiguous_matches: zod_1.z.number().int().min(0),
71
+ warnings: zod_1.z.number().int().min(0),
72
+ }).passthrough();
73
+ exports.topologyCorrelationApiDiffSchema = zod_1.z.object({
74
+ relationships_to_create: zod_1.z.array(exports.topologyCorrelationApiCandidateSchema),
75
+ relationships_to_refresh: zod_1.z.array(exports.topologyCorrelationApiRefreshSchema),
76
+ relationship_support_to_mark_stale: zod_1.z.array(exports.topologyCorrelationApiCandidateSchema),
77
+ relationship_support_to_retire: zod_1.z.array(exports.topologyCorrelationApiCandidateSchema),
78
+ conflicts: zod_1.z.array(exports.topologyCorrelationApiFindingSchema),
79
+ ambiguous_matches: zod_1.z.array(exports.topologyCorrelationApiFindingSchema),
80
+ warnings: zod_1.z.array(exports.topologyCorrelationApiWarningSchema),
81
+ summary: exports.topologyCorrelationApiDiffSummarySchema,
82
+ }).passthrough();
83
+ exports.topologyCorrelationApiInputScopeSchema = zod_1.z.object({
84
+ providers: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
85
+ source_run_ids: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
86
+ scan_unit_ids: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
87
+ source_ref_scope_keys: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
88
+ canonical_entity_filters: zod_1.z.array(common_1.recordSchema).optional(),
89
+ }).passthrough();
90
+ exports.topologyCorrelationApiUnitSpecSchema = zod_1.z.object({
91
+ correlation_unit_key: common_1.nonEmptyStringSchema,
92
+ correlation_rule_key: common_1.nonEmptyStringSchema,
93
+ correlation_rule_version: common_1.nonEmptyStringSchema,
94
+ relationship_lane: common_1.nonEmptyStringSchema,
95
+ input_scope: exports.topologyCorrelationApiInputScopeSchema,
96
+ lifecycle_authority_scope_key: common_1.nonEmptyStringSchema,
97
+ }).passthrough();
98
+ exports.topologyCorrelationApiUnitResultSchema = zod_1.z.object({
99
+ candidates: zod_1.z.array(exports.topologyCorrelationApiCandidateSchema),
100
+ warnings: zod_1.z.array(exports.topologyCorrelationApiWarningSchema),
101
+ ambiguous_matches: zod_1.z.array(exports.topologyCorrelationApiFindingSchema).optional(),
102
+ conflicts: zod_1.z.array(exports.topologyCorrelationApiFindingSchema).optional(),
103
+ }).passthrough();
104
+ exports.topologyCorrelationDryRunUnitSchema = zod_1.z.object({
105
+ correlation_unit_id: common_1.nonEmptyStringSchema,
106
+ plan_unit_id: common_1.nonEmptyStringSchema,
107
+ unit: exports.topologyCorrelationApiUnitSpecSchema,
108
+ result: exports.topologyCorrelationApiUnitResultSchema,
109
+ diff: exports.topologyCorrelationApiDiffSchema,
110
+ diff_hash: common_1.nonEmptyStringSchema,
111
+ warnings: zod_1.z.array(exports.topologyCorrelationApiWarningSchema),
112
+ }).passthrough();
113
+ exports.topologyCorrelationDryRunOptionsSchema = zod_1.z.object({
114
+ min_confidence: zod_1.z.number().min(0).optional(),
115
+ include_warning_only: zod_1.z.boolean().optional(),
116
+ include_partial_live: zod_1.z.boolean().optional(),
117
+ max_proposals: zod_1.z.number().int().min(0).optional(),
118
+ }).passthrough();
119
+ exports.topologyCorrelationDryRunRequestSchema = zod_1.z.object({
120
+ version: exports.topologyCorrelationSyncVersionSchema,
121
+ sync_batch_id: common_1.nonEmptyStringSchema,
122
+ profile_key: common_1.nonEmptyStringSchema.optional(),
123
+ rules: zod_1.z.array(common_1.recordSchema).optional(),
124
+ providers: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
125
+ service_ids: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
126
+ input_source_run_ids: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
127
+ input_scan_unit_ids: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
128
+ options: exports.topologyCorrelationDryRunOptionsSchema.optional(),
129
+ }).passthrough();
130
+ exports.topologyCorrelationDryRunSummarySchema = zod_1.z.object({
131
+ correlation_units: zod_1.z.number().int().min(0),
132
+ plan_units: zod_1.z.number().int().min(0),
133
+ ready_candidates: zod_1.z.number().int().min(0),
134
+ warning_only_candidates: zod_1.z.number().int().min(0),
135
+ ambiguous_candidates: zod_1.z.number().int().min(0),
136
+ blocked_candidates: zod_1.z.number().int().min(0),
137
+ warnings: zod_1.z.number().int().min(0),
138
+ }).passthrough();
139
+ exports.topologyCorrelationDryRunResponseSchema = zod_1.z.object({
140
+ status: zod_1.z.number().int(),
141
+ mode: zod_1.z.literal('dry_run'),
142
+ correlation_run_id: common_1.nonEmptyStringSchema,
143
+ sync_batch_id: common_1.nonEmptyStringSchema,
144
+ profile_key: common_1.nonEmptyStringSchema,
145
+ profile_version: common_1.nonEmptyStringSchema,
146
+ units: zod_1.z.array(exports.topologyCorrelationDryRunUnitSchema),
147
+ summary: exports.topologyCorrelationDryRunSummarySchema,
148
+ }).passthrough();
149
+ exports.topologyCorrelationApplyRequestSchema = zod_1.z.object({
150
+ version: exports.topologyCorrelationSyncVersionSchema,
151
+ correlation_run_id: common_1.nonEmptyStringSchema,
152
+ confirm_diff_hash: common_1.nonEmptyStringSchema,
153
+ selected_plan_unit_ids: zod_1.z.array(common_1.nonEmptyStringSchema),
154
+ }).passthrough();
155
+ exports.topologyCorrelationApplyUnitSchema = zod_1.z.object({
156
+ apply_unit_id: common_1.nonEmptyStringSchema,
157
+ plan_unit_id: common_1.nonEmptyStringSchema,
158
+ status: lifecycle_1.sourceSyncUnitStatusSchema,
159
+ }).passthrough();
160
+ exports.topologyCorrelationApplySummarySchema = zod_1.z.object({
161
+ plan_units: zod_1.z.number().int().min(0),
162
+ relationships_created: zod_1.z.number().int().min(0),
163
+ relationships_refreshed: zod_1.z.number().int().min(0),
164
+ audit_events: zod_1.z.number().int().min(0),
165
+ }).passthrough();
166
+ exports.topologyCorrelationApplyResponseSchema = zod_1.z.object({
167
+ status: zod_1.z.number().int(),
168
+ mode: zod_1.z.literal('apply'),
169
+ correlation_run_id: common_1.nonEmptyStringSchema,
170
+ apply_units: zod_1.z.array(exports.topologyCorrelationApplyUnitSchema),
171
+ summary: exports.topologyCorrelationApplySummarySchema,
172
+ }).passthrough();
173
+ //# sourceMappingURL=lifecycle.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lifecycle.js","sourceRoot":"","sources":["../../../src/correlation/lifecycle.ts"],"names":[],"mappings":"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"}
@@ -1,7 +1,7 @@
1
1
  export { topologyProviderSchema, topologyProviderInputSchema, } from '../providers';
2
2
  export { awsTopologyFamilySchema, kubernetesTopologyFamilySchema, integrationTopologyFamilySchema, topologyFamilySchema, } from '../families';
3
- export { sourceSyncCapabilitySchema, topologySourceIntentIncludeSchema, topologySourceIntentSchema, topologySyncIntentOptionsSchema, topologySyncIntentSchema, topologySyncScopeSchema, topologySyncCompletenessStatusSchema, topologySyncCompletenessSchema, topologySyncWarningSeveritySchema, topologySyncWarningSchema, topologySourceRefStatusSchema, topologyEntitySourceRefCandidateSchema, topologyAccessRefCandidateSchema, topologySourceNodeCandidateSchema, topologyExistingEntityRefSchema, topologySourceRelationshipCandidateSchema, } from '../source-sync';
4
- export { topologyCorrelationApplyPolicySchema, topologyCorrelationRequiredEndpointSchema, topologyCorrelationRuleMetadataSchema, topologyCorrelationDecisionSchema, topologyCorrelationCandidateSchema, } from '../correlation';
3
+ export { sourceSyncCapabilitySchema, sourceSyncPartialScopeApplySchema, topologySourceIntentIncludeSchema, topologySourceIntentSchema, topologySyncIntentOptionsSchema, topologySyncIntentSchema, topologySyncScopeSchema, topologySyncCompletenessStatusSchema, topologySyncCompletenessSchema, topologySyncWarningSeveritySchema, topologySyncWarningSchema, topologySourceRefStatusSchema, topologyEntitySourceRefCandidateSchema, topologyAccessRefCandidateSchema, topologySourceNodeCandidateSchema, topologyExistingEntityRefSchema, topologySourceRelationshipCandidateSchema, sourceSyncUnitStatusSchema, sourceSyncCapabilitiesResponseSchema, sourceSyncRecordSchema, sourceSyncJobSchema, sourceSyncSourceSummarySchema, sourceSyncDryRunSourceResultSchema, sourceSyncErrorSchema, sourceSyncDuplicateSchema, sourceSyncDryRunResponseSchema, sourceSyncApplySelectionSchema, sourceSyncApplyRequestSchema, sourceSyncApplyResponseSchema, sourceSyncBatchResponseSchema, sourceSyncBatchUnitsResponseSchema, } from '../source-sync';
4
+ export { topologyCorrelationApplyPolicySchema, topologyCorrelationRequiredEndpointSchema, topologyCorrelationRuleMetadataSchema, topologyCorrelationDecisionSchema, topologyCorrelationCandidateSchema, topologyCorrelationSyncVersionSchema, topologyCorrelationApiDecisionSchema, topologyCorrelationApiWarningSchema, topologyCorrelationApiEvidenceRefSchema, topologyCorrelationApiEndpointSchema, topologyCorrelationApiCandidateSchema, topologyCorrelationApiFindingSchema, topologyCorrelationApiRefreshSchema, topologyCorrelationApiDiffSummarySchema, topologyCorrelationApiDiffSchema, topologyCorrelationApiInputScopeSchema, topologyCorrelationApiUnitSpecSchema, topologyCorrelationApiUnitResultSchema, topologyCorrelationDryRunUnitSchema, topologyCorrelationDryRunOptionsSchema, topologyCorrelationDryRunRequestSchema, topologyCorrelationDryRunSummarySchema, topologyCorrelationDryRunResponseSchema, topologyCorrelationApplyRequestSchema, topologyCorrelationApplyUnitSchema, topologyCorrelationApplySummarySchema, topologyCorrelationApplyResponseSchema, } from '../correlation';
5
5
  export { topologyResourceTypeSchema, topologyRelationTypeSchema, } from '../topology';
6
6
  export { credentialSourceEntityTypeSchema, credentialResolutionModeSchema, credentialSourceExternalRefSchema, credentialSourceResultItemSchema, credentialSourceSingleResponseSchema, credentialSourceBulkRequestSchema, credentialSourceBulkResponseSchema, topologyApiErrorCodeSchema, topologyApiErrorEnvelopeSchema, } from '../credential-source';
7
7
  export { diagnosticCriticalitySchema, nestedTopologyRelationshipSchema, nestedTopologyNodeSchema, nestedTopologyChildSchema, nestedTopologyResponseSchema, topologyReasonCodeSchema, topologyCandidateTargetSchema, topologyPrimaryAnchorSchema, topologyInitializationStateSchema, targetServiceInfoSchema, investigationResourceSchema, relatedServiceInfoSchema, topologyInvestigationContextSchema, topologyBindingHintSchema, topologyBindingHintsSchema, gatewayTopologyContextSchema, } from '../investigation';
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.relatedServiceInfoSchema = exports.investigationResourceSchema = exports.targetServiceInfoSchema = exports.topologyInitializationStateSchema = exports.topologyPrimaryAnchorSchema = exports.topologyCandidateTargetSchema = exports.topologyReasonCodeSchema = exports.nestedTopologyResponseSchema = exports.nestedTopologyChildSchema = exports.nestedTopologyNodeSchema = exports.nestedTopologyRelationshipSchema = exports.diagnosticCriticalitySchema = exports.topologyApiErrorEnvelopeSchema = exports.topologyApiErrorCodeSchema = exports.credentialSourceBulkResponseSchema = exports.credentialSourceBulkRequestSchema = exports.credentialSourceSingleResponseSchema = exports.credentialSourceResultItemSchema = exports.credentialSourceExternalRefSchema = exports.credentialResolutionModeSchema = exports.credentialSourceEntityTypeSchema = exports.topologyRelationTypeSchema = exports.topologyResourceTypeSchema = exports.topologyCorrelationCandidateSchema = exports.topologyCorrelationDecisionSchema = exports.topologyCorrelationRuleMetadataSchema = exports.topologyCorrelationRequiredEndpointSchema = exports.topologyCorrelationApplyPolicySchema = exports.topologySourceRelationshipCandidateSchema = exports.topologyExistingEntityRefSchema = exports.topologySourceNodeCandidateSchema = exports.topologyAccessRefCandidateSchema = exports.topologyEntitySourceRefCandidateSchema = exports.topologySourceRefStatusSchema = exports.topologySyncWarningSchema = exports.topologySyncWarningSeveritySchema = exports.topologySyncCompletenessSchema = exports.topologySyncCompletenessStatusSchema = exports.topologySyncScopeSchema = exports.topologySyncIntentSchema = exports.topologySyncIntentOptionsSchema = exports.topologySourceIntentSchema = exports.topologySourceIntentIncludeSchema = exports.sourceSyncCapabilitySchema = exports.topologyFamilySchema = exports.integrationTopologyFamilySchema = exports.kubernetesTopologyFamilySchema = exports.awsTopologyFamilySchema = exports.topologyProviderInputSchema = exports.topologyProviderSchema = void 0;
4
- exports.gatewayTopologyContextSchema = exports.topologyBindingHintsSchema = exports.topologyBindingHintSchema = exports.topologyInvestigationContextSchema = void 0;
3
+ exports.topologyCorrelationApiRefreshSchema = exports.topologyCorrelationApiFindingSchema = exports.topologyCorrelationApiCandidateSchema = exports.topologyCorrelationApiEndpointSchema = exports.topologyCorrelationApiEvidenceRefSchema = exports.topologyCorrelationApiWarningSchema = exports.topologyCorrelationApiDecisionSchema = exports.topologyCorrelationSyncVersionSchema = exports.topologyCorrelationCandidateSchema = exports.topologyCorrelationDecisionSchema = exports.topologyCorrelationRuleMetadataSchema = exports.topologyCorrelationRequiredEndpointSchema = exports.topologyCorrelationApplyPolicySchema = exports.sourceSyncBatchUnitsResponseSchema = exports.sourceSyncBatchResponseSchema = exports.sourceSyncApplyResponseSchema = exports.sourceSyncApplyRequestSchema = exports.sourceSyncApplySelectionSchema = exports.sourceSyncDryRunResponseSchema = exports.sourceSyncDuplicateSchema = exports.sourceSyncErrorSchema = exports.sourceSyncDryRunSourceResultSchema = exports.sourceSyncSourceSummarySchema = exports.sourceSyncJobSchema = exports.sourceSyncRecordSchema = exports.sourceSyncCapabilitiesResponseSchema = exports.sourceSyncUnitStatusSchema = exports.topologySourceRelationshipCandidateSchema = exports.topologyExistingEntityRefSchema = exports.topologySourceNodeCandidateSchema = exports.topologyAccessRefCandidateSchema = exports.topologyEntitySourceRefCandidateSchema = exports.topologySourceRefStatusSchema = exports.topologySyncWarningSchema = exports.topologySyncWarningSeveritySchema = exports.topologySyncCompletenessSchema = exports.topologySyncCompletenessStatusSchema = exports.topologySyncScopeSchema = exports.topologySyncIntentSchema = exports.topologySyncIntentOptionsSchema = exports.topologySourceIntentSchema = exports.topologySourceIntentIncludeSchema = exports.sourceSyncPartialScopeApplySchema = exports.sourceSyncCapabilitySchema = exports.topologyFamilySchema = exports.integrationTopologyFamilySchema = exports.kubernetesTopologyFamilySchema = exports.awsTopologyFamilySchema = exports.topologyProviderInputSchema = exports.topologyProviderSchema = void 0;
4
+ exports.gatewayTopologyContextSchema = exports.topologyBindingHintsSchema = exports.topologyBindingHintSchema = exports.topologyInvestigationContextSchema = exports.relatedServiceInfoSchema = exports.investigationResourceSchema = exports.targetServiceInfoSchema = exports.topologyInitializationStateSchema = exports.topologyPrimaryAnchorSchema = exports.topologyCandidateTargetSchema = exports.topologyReasonCodeSchema = exports.nestedTopologyResponseSchema = exports.nestedTopologyChildSchema = exports.nestedTopologyNodeSchema = exports.nestedTopologyRelationshipSchema = exports.diagnosticCriticalitySchema = exports.topologyApiErrorEnvelopeSchema = exports.topologyApiErrorCodeSchema = exports.credentialSourceBulkResponseSchema = exports.credentialSourceBulkRequestSchema = exports.credentialSourceSingleResponseSchema = exports.credentialSourceResultItemSchema = exports.credentialSourceExternalRefSchema = exports.credentialResolutionModeSchema = exports.credentialSourceEntityTypeSchema = exports.topologyRelationTypeSchema = exports.topologyResourceTypeSchema = exports.topologyCorrelationApplyResponseSchema = exports.topologyCorrelationApplySummarySchema = exports.topologyCorrelationApplyUnitSchema = exports.topologyCorrelationApplyRequestSchema = exports.topologyCorrelationDryRunResponseSchema = exports.topologyCorrelationDryRunSummarySchema = exports.topologyCorrelationDryRunRequestSchema = exports.topologyCorrelationDryRunOptionsSchema = exports.topologyCorrelationDryRunUnitSchema = exports.topologyCorrelationApiUnitResultSchema = exports.topologyCorrelationApiUnitSpecSchema = exports.topologyCorrelationApiInputScopeSchema = exports.topologyCorrelationApiDiffSchema = exports.topologyCorrelationApiDiffSummarySchema = void 0;
5
5
  var providers_1 = require("../providers");
6
6
  Object.defineProperty(exports, "topologyProviderSchema", { enumerable: true, get: function () { return providers_1.topologyProviderSchema; } });
7
7
  Object.defineProperty(exports, "topologyProviderInputSchema", { enumerable: true, get: function () { return providers_1.topologyProviderInputSchema; } });
@@ -12,6 +12,7 @@ Object.defineProperty(exports, "integrationTopologyFamilySchema", { enumerable:
12
12
  Object.defineProperty(exports, "topologyFamilySchema", { enumerable: true, get: function () { return families_1.topologyFamilySchema; } });
13
13
  var source_sync_1 = require("../source-sync");
14
14
  Object.defineProperty(exports, "sourceSyncCapabilitySchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncCapabilitySchema; } });
15
+ Object.defineProperty(exports, "sourceSyncPartialScopeApplySchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncPartialScopeApplySchema; } });
15
16
  Object.defineProperty(exports, "topologySourceIntentIncludeSchema", { enumerable: true, get: function () { return source_sync_1.topologySourceIntentIncludeSchema; } });
16
17
  Object.defineProperty(exports, "topologySourceIntentSchema", { enumerable: true, get: function () { return source_sync_1.topologySourceIntentSchema; } });
17
18
  Object.defineProperty(exports, "topologySyncIntentOptionsSchema", { enumerable: true, get: function () { return source_sync_1.topologySyncIntentOptionsSchema; } });
@@ -27,12 +28,48 @@ Object.defineProperty(exports, "topologyAccessRefCandidateSchema", { enumerable:
27
28
  Object.defineProperty(exports, "topologySourceNodeCandidateSchema", { enumerable: true, get: function () { return source_sync_1.topologySourceNodeCandidateSchema; } });
28
29
  Object.defineProperty(exports, "topologyExistingEntityRefSchema", { enumerable: true, get: function () { return source_sync_1.topologyExistingEntityRefSchema; } });
29
30
  Object.defineProperty(exports, "topologySourceRelationshipCandidateSchema", { enumerable: true, get: function () { return source_sync_1.topologySourceRelationshipCandidateSchema; } });
31
+ Object.defineProperty(exports, "sourceSyncUnitStatusSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncUnitStatusSchema; } });
32
+ Object.defineProperty(exports, "sourceSyncCapabilitiesResponseSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncCapabilitiesResponseSchema; } });
33
+ Object.defineProperty(exports, "sourceSyncRecordSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncRecordSchema; } });
34
+ Object.defineProperty(exports, "sourceSyncJobSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncJobSchema; } });
35
+ Object.defineProperty(exports, "sourceSyncSourceSummarySchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncSourceSummarySchema; } });
36
+ Object.defineProperty(exports, "sourceSyncDryRunSourceResultSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncDryRunSourceResultSchema; } });
37
+ Object.defineProperty(exports, "sourceSyncErrorSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncErrorSchema; } });
38
+ Object.defineProperty(exports, "sourceSyncDuplicateSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncDuplicateSchema; } });
39
+ Object.defineProperty(exports, "sourceSyncDryRunResponseSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncDryRunResponseSchema; } });
40
+ Object.defineProperty(exports, "sourceSyncApplySelectionSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncApplySelectionSchema; } });
41
+ Object.defineProperty(exports, "sourceSyncApplyRequestSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncApplyRequestSchema; } });
42
+ Object.defineProperty(exports, "sourceSyncApplyResponseSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncApplyResponseSchema; } });
43
+ Object.defineProperty(exports, "sourceSyncBatchResponseSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncBatchResponseSchema; } });
44
+ Object.defineProperty(exports, "sourceSyncBatchUnitsResponseSchema", { enumerable: true, get: function () { return source_sync_1.sourceSyncBatchUnitsResponseSchema; } });
30
45
  var correlation_1 = require("../correlation");
31
46
  Object.defineProperty(exports, "topologyCorrelationApplyPolicySchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApplyPolicySchema; } });
32
47
  Object.defineProperty(exports, "topologyCorrelationRequiredEndpointSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationRequiredEndpointSchema; } });
33
48
  Object.defineProperty(exports, "topologyCorrelationRuleMetadataSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationRuleMetadataSchema; } });
34
49
  Object.defineProperty(exports, "topologyCorrelationDecisionSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDecisionSchema; } });
35
50
  Object.defineProperty(exports, "topologyCorrelationCandidateSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationCandidateSchema; } });
51
+ Object.defineProperty(exports, "topologyCorrelationSyncVersionSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationSyncVersionSchema; } });
52
+ Object.defineProperty(exports, "topologyCorrelationApiDecisionSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiDecisionSchema; } });
53
+ Object.defineProperty(exports, "topologyCorrelationApiWarningSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiWarningSchema; } });
54
+ Object.defineProperty(exports, "topologyCorrelationApiEvidenceRefSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiEvidenceRefSchema; } });
55
+ Object.defineProperty(exports, "topologyCorrelationApiEndpointSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiEndpointSchema; } });
56
+ Object.defineProperty(exports, "topologyCorrelationApiCandidateSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiCandidateSchema; } });
57
+ Object.defineProperty(exports, "topologyCorrelationApiFindingSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiFindingSchema; } });
58
+ Object.defineProperty(exports, "topologyCorrelationApiRefreshSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiRefreshSchema; } });
59
+ Object.defineProperty(exports, "topologyCorrelationApiDiffSummarySchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiDiffSummarySchema; } });
60
+ Object.defineProperty(exports, "topologyCorrelationApiDiffSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiDiffSchema; } });
61
+ Object.defineProperty(exports, "topologyCorrelationApiInputScopeSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiInputScopeSchema; } });
62
+ Object.defineProperty(exports, "topologyCorrelationApiUnitSpecSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiUnitSpecSchema; } });
63
+ Object.defineProperty(exports, "topologyCorrelationApiUnitResultSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApiUnitResultSchema; } });
64
+ Object.defineProperty(exports, "topologyCorrelationDryRunUnitSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDryRunUnitSchema; } });
65
+ Object.defineProperty(exports, "topologyCorrelationDryRunOptionsSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDryRunOptionsSchema; } });
66
+ Object.defineProperty(exports, "topologyCorrelationDryRunRequestSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDryRunRequestSchema; } });
67
+ Object.defineProperty(exports, "topologyCorrelationDryRunSummarySchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDryRunSummarySchema; } });
68
+ Object.defineProperty(exports, "topologyCorrelationDryRunResponseSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationDryRunResponseSchema; } });
69
+ Object.defineProperty(exports, "topologyCorrelationApplyRequestSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApplyRequestSchema; } });
70
+ Object.defineProperty(exports, "topologyCorrelationApplyUnitSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApplyUnitSchema; } });
71
+ Object.defineProperty(exports, "topologyCorrelationApplySummarySchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApplySummarySchema; } });
72
+ Object.defineProperty(exports, "topologyCorrelationApplyResponseSchema", { enumerable: true, get: function () { return correlation_1.topologyCorrelationApplyResponseSchema; } });
36
73
  var topology_1 = require("../topology");
37
74
  Object.defineProperty(exports, "topologyResourceTypeSchema", { enumerable: true, get: function () { return topology_1.topologyResourceTypeSchema; } });
38
75
  Object.defineProperty(exports, "topologyRelationTypeSchema", { enumerable: true, get: function () { return topology_1.topologyRelationTypeSchema; } });
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schemas/index.ts"],"names":[],"mappings":";;;;AAAA,0CAGsB;AAFpB,mHAAA,sBAAsB,OAAA;AACtB,wHAAA,2BAA2B,OAAA;AAG7B,wCAKqB;AAJnB,mHAAA,uBAAuB,OAAA;AACvB,0HAAA,8BAA8B,OAAA;AAC9B,2HAAA,+BAA+B,OAAA;AAC/B,gHAAA,oBAAoB,OAAA;AAGtB,8CAiBwB;AAhBtB,yHAAA,0BAA0B,OAAA;AAC1B,gIAAA,iCAAiC,OAAA;AACjC,yHAAA,0BAA0B,OAAA;AAC1B,8HAAA,+BAA+B,OAAA;AAC/B,uHAAA,wBAAwB,OAAA;AACxB,sHAAA,uBAAuB,OAAA;AACvB,mIAAA,oCAAoC,OAAA;AACpC,6HAAA,8BAA8B,OAAA;AAC9B,gIAAA,iCAAiC,OAAA;AACjC,wHAAA,yBAAyB,OAAA;AACzB,4HAAA,6BAA6B,OAAA;AAC7B,qIAAA,sCAAsC,OAAA;AACtC,+HAAA,gCAAgC,OAAA;AAChC,gIAAA,iCAAiC,OAAA;AACjC,8HAAA,+BAA+B,OAAA;AAC/B,wIAAA,yCAAyC,OAAA;AAG3C,8CAMwB;AALtB,mIAAA,oCAAoC,OAAA;AACpC,wIAAA,yCAAyC,OAAA;AACzC,oIAAA,qCAAqC,OAAA;AACrC,gIAAA,iCAAiC,OAAA;AACjC,iIAAA,kCAAkC,OAAA;AAGpC,wCAGqB;AAFnB,sHAAA,0BAA0B,OAAA;AAC1B,sHAAA,0BAA0B,OAAA;AAG5B,0DAU8B;AAT5B,qIAAA,gCAAgC,OAAA;AAChC,mIAAA,8BAA8B,OAAA;AAC9B,sIAAA,iCAAiC,OAAA;AACjC,qIAAA,gCAAgC,OAAA;AAChC,yIAAA,oCAAoC,OAAA;AACpC,sIAAA,iCAAiC,OAAA;AACjC,uIAAA,kCAAkC,OAAA;AAClC,+HAAA,0BAA0B,OAAA;AAC1B,mIAAA,8BAA8B,OAAA;AAGhC,kDAiB0B;AAhBxB,4HAAA,2BAA2B,OAAA;AAC3B,iIAAA,gCAAgC,OAAA;AAChC,yHAAA,wBAAwB,OAAA;AACxB,0HAAA,yBAAyB,OAAA;AACzB,6HAAA,4BAA4B,OAAA;AAC5B,yHAAA,wBAAwB,OAAA;AACxB,8HAAA,6BAA6B,OAAA;AAC7B,4HAAA,2BAA2B,OAAA;AAC3B,kIAAA,iCAAiC,OAAA;AACjC,wHAAA,uBAAuB,OAAA;AACvB,4HAAA,2BAA2B,OAAA;AAC3B,yHAAA,wBAAwB,OAAA;AACxB,mIAAA,kCAAkC,OAAA;AAClC,0HAAA,yBAAyB,OAAA;AACzB,2HAAA,0BAA0B,OAAA;AAC1B,6HAAA,4BAA4B,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schemas/index.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,21 @@
1
1
  import { z } from 'zod';
2
2
  export declare const sourceSyncCapabilityStatusSchema: z.ZodString;
3
+ export declare const sourceSyncPartialScopeApplySchema: z.ZodObject<{
4
+ supported: z.ZodOptional<z.ZodBoolean>;
5
+ mode: z.ZodOptional<z.ZodString>;
6
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
8
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
9
+ supported: z.ZodOptional<z.ZodBoolean>;
10
+ mode: z.ZodOptional<z.ZodString>;
11
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
13
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
14
+ supported: z.ZodOptional<z.ZodBoolean>;
15
+ mode: z.ZodOptional<z.ZodString>;
16
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
17
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
18
+ }, z.ZodTypeAny, "passthrough">>;
3
19
  export declare const sourceSyncCapabilitySchema: z.ZodObject<{
4
20
  provider: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["aws", "k8s", "gcp", "azure", "sentry", "prometheus", "grafana", "loki", "tempo", "mimir", "victoriametrics", "victorialogs", "victoriatraces", "github", "gitlab", "bitbucket", "argocd", "datadog", "groundcover", "elk", "jira", "confluence", "jsm", "custom"]>, z.ZodLiteral<"kubernetes">]>, "aws" | "k8s" | "gcp" | "azure" | "sentry" | "prometheus" | "grafana" | "loki" | "tempo" | "mimir" | "victoriametrics" | "victorialogs" | "victoriatraces" | "github" | "gitlab" | "bitbucket" | "argocd" | "datadog" | "groundcover" | "elk" | "jira" | "confluence" | "jsm" | "custom", "aws" | "k8s" | "gcp" | "azure" | "sentry" | "prometheus" | "grafana" | "loki" | "tempo" | "mimir" | "victoriametrics" | "victorialogs" | "victoriatraces" | "github" | "gitlab" | "bitbucket" | "argocd" | "datadog" | "groundcover" | "elk" | "jira" | "confluence" | "jsm" | "custom" | "kubernetes">;
5
21
  status: z.ZodString;
@@ -8,6 +24,23 @@ export declare const sourceSyncCapabilitySchema: z.ZodObject<{
8
24
  supports_apply: z.ZodBoolean;
9
25
  supports_selected_apply: z.ZodBoolean;
10
26
  supports_correlation: z.ZodBoolean;
27
+ selected_apply_modes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
28
+ partial_scope_apply: z.ZodOptional<z.ZodObject<{
29
+ supported: z.ZodOptional<z.ZodBoolean>;
30
+ mode: z.ZodOptional<z.ZodString>;
31
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
32
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
33
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
34
+ supported: z.ZodOptional<z.ZodBoolean>;
35
+ mode: z.ZodOptional<z.ZodString>;
36
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
37
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
38
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
39
+ supported: z.ZodOptional<z.ZodBoolean>;
40
+ mode: z.ZodOptional<z.ZodString>;
41
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
42
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
43
+ }, z.ZodTypeAny, "passthrough">>>;
11
44
  families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
12
45
  locality_options: z.ZodOptional<z.ZodArray<z.ZodObject<{
13
46
  kind: z.ZodString;
@@ -28,6 +61,23 @@ export declare const sourceSyncCapabilitySchema: z.ZodObject<{
28
61
  supports_apply: z.ZodBoolean;
29
62
  supports_selected_apply: z.ZodBoolean;
30
63
  supports_correlation: z.ZodBoolean;
64
+ selected_apply_modes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
65
+ partial_scope_apply: z.ZodOptional<z.ZodObject<{
66
+ supported: z.ZodOptional<z.ZodBoolean>;
67
+ mode: z.ZodOptional<z.ZodString>;
68
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
69
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
70
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
71
+ supported: z.ZodOptional<z.ZodBoolean>;
72
+ mode: z.ZodOptional<z.ZodString>;
73
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
74
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
75
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
76
+ supported: z.ZodOptional<z.ZodBoolean>;
77
+ mode: z.ZodOptional<z.ZodString>;
78
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
79
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
80
+ }, z.ZodTypeAny, "passthrough">>>;
31
81
  families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
32
82
  locality_options: z.ZodOptional<z.ZodArray<z.ZodObject<{
33
83
  kind: z.ZodString;
@@ -48,6 +98,23 @@ export declare const sourceSyncCapabilitySchema: z.ZodObject<{
48
98
  supports_apply: z.ZodBoolean;
49
99
  supports_selected_apply: z.ZodBoolean;
50
100
  supports_correlation: z.ZodBoolean;
101
+ selected_apply_modes: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
102
+ partial_scope_apply: z.ZodOptional<z.ZodObject<{
103
+ supported: z.ZodOptional<z.ZodBoolean>;
104
+ mode: z.ZodOptional<z.ZodString>;
105
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
106
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
107
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
108
+ supported: z.ZodOptional<z.ZodBoolean>;
109
+ mode: z.ZodOptional<z.ZodString>;
110
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
111
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
112
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
113
+ supported: z.ZodOptional<z.ZodBoolean>;
114
+ mode: z.ZodOptional<z.ZodString>;
115
+ families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
116
+ lifecycle_writes: z.ZodOptional<z.ZodBoolean>;
117
+ }, z.ZodTypeAny, "passthrough">>>;
51
118
  families: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
52
119
  locality_options: z.ZodOptional<z.ZodArray<z.ZodObject<{
53
120
  kind: z.ZodString;
@@ -61,4 +128,5 @@ export declare const sourceSyncCapabilitySchema: z.ZodObject<{
61
128
  }, z.ZodTypeAny, "passthrough">>, "many">>;
62
129
  non_goals: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
63
130
  }, z.ZodTypeAny, "passthrough">>;
131
+ export type SourceSyncPartialScopeApply = z.infer<typeof sourceSyncPartialScopeApplySchema>;
64
132
  export type SourceSyncCapability = z.infer<typeof sourceSyncCapabilitySchema>;
@@ -1,10 +1,16 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.sourceSyncCapabilitySchema = exports.sourceSyncCapabilityStatusSchema = void 0;
3
+ exports.sourceSyncCapabilitySchema = exports.sourceSyncPartialScopeApplySchema = exports.sourceSyncCapabilityStatusSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const providers_1 = require("../providers");
6
6
  const common_1 = require("./common");
7
7
  exports.sourceSyncCapabilityStatusSchema = common_1.nonEmptyStringSchema;
8
+ exports.sourceSyncPartialScopeApplySchema = zod_1.z.object({
9
+ supported: zod_1.z.boolean().optional(),
10
+ mode: common_1.nonEmptyStringSchema.optional(),
11
+ families: zod_1.z.array(common_1.sourceSyncFamilySchema).optional(),
12
+ lifecycle_writes: zod_1.z.boolean().optional(),
13
+ }).passthrough();
8
14
  exports.sourceSyncCapabilitySchema = zod_1.z.object({
9
15
  provider: providers_1.topologyProviderInputSchema,
10
16
  status: exports.sourceSyncCapabilityStatusSchema,
@@ -13,6 +19,8 @@ exports.sourceSyncCapabilitySchema = zod_1.z.object({
13
19
  supports_apply: zod_1.z.boolean(),
14
20
  supports_selected_apply: zod_1.z.boolean(),
15
21
  supports_correlation: zod_1.z.boolean(),
22
+ selected_apply_modes: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
23
+ partial_scope_apply: exports.sourceSyncPartialScopeApplySchema.optional(),
16
24
  families: zod_1.z.array(common_1.sourceSyncFamilySchema).optional(),
17
25
  locality_options: zod_1.z.array(common_1.sourceSyncLocalitySchema).optional(),
18
26
  non_goals: zod_1.z.array(common_1.nonEmptyStringSchema).optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"capability.js","sourceRoot":"","sources":["../../../src/source-sync/capability.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA2D;AAC3D,qCAIkB;AAEL,QAAA,gCAAgC,GAAG,6BAAoB,CAAC;AAExD,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,QAAQ,EAAE,uCAA2B;IACrC,MAAM,EAAE,wCAAgC;IACxC,mBAAmB,EAAE,6BAAoB,CAAC,QAAQ,EAAE;IACpD,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE;IAC7B,cAAc,EAAE,OAAC,CAAC,OAAO,EAAE;IAC3B,uBAAuB,EAAE,OAAC,CAAC,OAAO,EAAE;IACpC,oBAAoB,EAAE,OAAC,CAAC,OAAO,EAAE;IACjC,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAsB,CAAC,CAAC,QAAQ,EAAE;IACpD,gBAAgB,EAAE,OAAC,CAAC,KAAK,CAAC,iCAAwB,CAAC,CAAC,QAAQ,EAAE;IAC9D,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,6BAAoB,CAAC,CAAC,QAAQ,EAAE;CACpD,CAAC,CAAC,WAAW,EAAE,CAAC"}
1
+ {"version":3,"file":"capability.js","sourceRoot":"","sources":["../../../src/source-sync/capability.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,4CAA2D;AAC3D,qCAIkB;AAEL,QAAA,gCAAgC,GAAG,6BAAoB,CAAC;AAExD,QAAA,iCAAiC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,SAAS,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACjC,IAAI,EAAE,6BAAoB,CAAC,QAAQ,EAAE;IACrC,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAsB,CAAC,CAAC,QAAQ,EAAE;IACpD,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CACzC,CAAC,CAAC,WAAW,EAAE,CAAC;AAEJ,QAAA,0BAA0B,GAAG,OAAC,CAAC,MAAM,CAAC;IACjD,QAAQ,EAAE,uCAA2B;IACrC,MAAM,EAAE,wCAAgC;IACxC,mBAAmB,EAAE,6BAAoB,CAAC,QAAQ,EAAE;IACpD,gBAAgB,EAAE,OAAC,CAAC,OAAO,EAAE;IAC7B,cAAc,EAAE,OAAC,CAAC,OAAO,EAAE;IAC3B,uBAAuB,EAAE,OAAC,CAAC,OAAO,EAAE;IACpC,oBAAoB,EAAE,OAAC,CAAC,OAAO,EAAE;IACjC,oBAAoB,EAAE,OAAC,CAAC,KAAK,CAAC,6BAAoB,CAAC,CAAC,QAAQ,EAAE;IAC9D,mBAAmB,EAAE,yCAAiC,CAAC,QAAQ,EAAE;IACjE,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,+BAAsB,CAAC,CAAC,QAAQ,EAAE;IACpD,gBAAgB,EAAE,OAAC,CAAC,KAAK,CAAC,iCAAwB,CAAC,CAAC,QAAQ,EAAE;IAC9D,SAAS,EAAE,OAAC,CAAC,KAAK,CAAC,6BAAoB,CAAC,CAAC,QAAQ,EAAE;CACpD,CAAC,CAAC,WAAW,EAAE,CAAC"}
@@ -4,3 +4,4 @@ export * from './scope';
4
4
  export * from './completeness';
5
5
  export * from './warning';
6
6
  export * from './candidate';
7
+ export * from './lifecycle';
@@ -20,4 +20,5 @@ __exportStar(require("./scope"), exports);
20
20
  __exportStar(require("./completeness"), exports);
21
21
  __exportStar(require("./warning"), exports);
22
22
  __exportStar(require("./candidate"), exports);
23
+ __exportStar(require("./lifecycle"), exports);
23
24
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/source-sync/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,2CAAyB;AACzB,0CAAwB;AACxB,iDAA+B;AAC/B,4CAA0B;AAC1B,8CAA4B"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/source-sync/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,+CAA6B;AAC7B,2CAAyB;AACzB,0CAAwB;AACxB,iDAA+B;AAC/B,4CAA0B;AAC1B,8CAA4B;AAC5B,8CAA4B"}