@contractspec/example.integration-hub 1.44.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.
Files changed (80) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +156 -0
  3. package/dist/connection/connection.enum.d.ts +10 -0
  4. package/dist/connection/connection.enum.d.ts.map +1 -0
  5. package/dist/connection/connection.enum.js +17 -0
  6. package/dist/connection/connection.enum.js.map +1 -0
  7. package/dist/connection/connection.operation.d.ts +107 -0
  8. package/dist/connection/connection.operation.d.ts.map +1 -0
  9. package/dist/connection/connection.operation.js +63 -0
  10. package/dist/connection/connection.operation.js.map +1 -0
  11. package/dist/connection/connection.presentation.d.ts +8 -0
  12. package/dist/connection/connection.presentation.d.ts.map +1 -0
  13. package/dist/connection/connection.presentation.js +60 -0
  14. package/dist/connection/connection.presentation.js.map +1 -0
  15. package/dist/connection/connection.schema.d.ts +68 -0
  16. package/dist/connection/connection.schema.d.ts.map +1 -0
  17. package/dist/connection/connection.schema.js +76 -0
  18. package/dist/connection/connection.schema.js.map +1 -0
  19. package/dist/connection/index.d.ts +4 -0
  20. package/dist/connection/index.js +5 -0
  21. package/dist/docs/index.d.ts +1 -0
  22. package/dist/docs/index.js +1 -0
  23. package/dist/docs/integration-hub.docblock.d.ts +1 -0
  24. package/dist/docs/integration-hub.docblock.js +115 -0
  25. package/dist/docs/integration-hub.docblock.js.map +1 -0
  26. package/dist/events.d.ts +153 -0
  27. package/dist/events.d.ts.map +1 -0
  28. package/dist/events.js +289 -0
  29. package/dist/events.js.map +1 -0
  30. package/dist/example.d.ts +40 -0
  31. package/dist/example.d.ts.map +1 -0
  32. package/dist/example.js +51 -0
  33. package/dist/example.js.map +1 -0
  34. package/dist/index.d.ts +14 -0
  35. package/dist/index.js +15 -0
  36. package/dist/integration/index.d.ts +4 -0
  37. package/dist/integration/index.js +5 -0
  38. package/dist/integration/integration.enum.d.ts +10 -0
  39. package/dist/integration/integration.enum.d.ts.map +1 -0
  40. package/dist/integration/integration.enum.js +17 -0
  41. package/dist/integration/integration.enum.js.map +1 -0
  42. package/dist/integration/integration.operations.d.ts +99 -0
  43. package/dist/integration/integration.operations.d.ts.map +1 -0
  44. package/dist/integration/integration.operations.js +57 -0
  45. package/dist/integration/integration.operations.js.map +1 -0
  46. package/dist/integration/integration.presentation.d.ts +9 -0
  47. package/dist/integration/integration.presentation.d.ts.map +1 -0
  48. package/dist/integration/integration.presentation.js +77 -0
  49. package/dist/integration/integration.presentation.js.map +1 -0
  50. package/dist/integration/integration.schema.d.ts +68 -0
  51. package/dist/integration/integration.schema.d.ts.map +1 -0
  52. package/dist/integration/integration.schema.js +76 -0
  53. package/dist/integration/integration.schema.js.map +1 -0
  54. package/dist/integration-hub.feature.d.ts +8 -0
  55. package/dist/integration-hub.feature.d.ts.map +1 -0
  56. package/dist/integration-hub.feature.js +239 -0
  57. package/dist/integration-hub.feature.js.map +1 -0
  58. package/dist/sync/index.d.ts +4 -0
  59. package/dist/sync/index.js +5 -0
  60. package/dist/sync/sync.enum.d.ts +18 -0
  61. package/dist/sync/sync.enum.d.ts.map +1 -0
  62. package/dist/sync/sync.enum.js +35 -0
  63. package/dist/sync/sync.enum.js.map +1 -0
  64. package/dist/sync/sync.operations.d.ts +509 -0
  65. package/dist/sync/sync.operations.d.ts.map +1 -0
  66. package/dist/sync/sync.operations.js +203 -0
  67. package/dist/sync/sync.operations.js.map +1 -0
  68. package/dist/sync/sync.presentation.d.ts +12 -0
  69. package/dist/sync/sync.presentation.d.ts.map +1 -0
  70. package/dist/sync/sync.presentation.js +168 -0
  71. package/dist/sync/sync.presentation.js.map +1 -0
  72. package/dist/sync/sync.schema.d.ts +356 -0
  73. package/dist/sync/sync.schema.d.ts.map +1 -0
  74. package/dist/sync/sync.schema.js +304 -0
  75. package/dist/sync/sync.schema.js.map +1 -0
  76. package/dist/sync-engine/index.d.ts +109 -0
  77. package/dist/sync-engine/index.d.ts.map +1 -0
  78. package/dist/sync-engine/index.js +148 -0
  79. package/dist/sync-engine/index.js.map +1 -0
  80. package/package.json +103 -0
@@ -0,0 +1,239 @@
1
+ //#region src/integration-hub.feature.ts
2
+ const IntegrationHubFeature = {
3
+ meta: {
4
+ key: "integration-hub",
5
+ version: 1,
6
+ title: "Integration Hub",
7
+ description: "Connect and sync data with external systems through configurable integrations",
8
+ domain: "integration",
9
+ owners: ["@integration-team"],
10
+ tags: [
11
+ "integration",
12
+ "sync",
13
+ "etl",
14
+ "connectors"
15
+ ],
16
+ stability: "experimental"
17
+ },
18
+ operations: [
19
+ {
20
+ key: "integration.create",
21
+ version: 1
22
+ },
23
+ {
24
+ key: "integration.connection.create",
25
+ version: 1
26
+ },
27
+ {
28
+ key: "integration.syncConfig.create",
29
+ version: 1
30
+ },
31
+ {
32
+ key: "integration.fieldMapping.add",
33
+ version: 1
34
+ },
35
+ {
36
+ key: "integration.sync.trigger",
37
+ version: 1
38
+ },
39
+ {
40
+ key: "integration.syncRun.list",
41
+ version: 1
42
+ }
43
+ ],
44
+ events: [
45
+ {
46
+ key: "integration.created",
47
+ version: 1
48
+ },
49
+ {
50
+ key: "integration.connection.created",
51
+ version: 1
52
+ },
53
+ {
54
+ key: "integration.connection.statusChanged",
55
+ version: 1
56
+ },
57
+ {
58
+ key: "integration.syncConfig.created",
59
+ version: 1
60
+ },
61
+ {
62
+ key: "integration.sync.started",
63
+ version: 1
64
+ },
65
+ {
66
+ key: "integration.sync.completed",
67
+ version: 1
68
+ },
69
+ {
70
+ key: "integration.sync.failed",
71
+ version: 1
72
+ },
73
+ {
74
+ key: "integration.record.synced",
75
+ version: 1
76
+ },
77
+ {
78
+ key: "integration.fieldMapping.added",
79
+ version: 1
80
+ }
81
+ ],
82
+ presentations: [
83
+ {
84
+ key: "integration.list",
85
+ version: 1
86
+ },
87
+ {
88
+ key: "integration.detail",
89
+ version: 1
90
+ },
91
+ {
92
+ key: "integration.connection.list",
93
+ version: 1
94
+ },
95
+ {
96
+ key: "integration.connection.setup",
97
+ version: 1
98
+ },
99
+ {
100
+ key: "integration.syncConfig.list",
101
+ version: 1
102
+ },
103
+ {
104
+ key: "integration.syncConfig.editor",
105
+ version: 1
106
+ },
107
+ {
108
+ key: "integration.fieldMapping.editor",
109
+ version: 1
110
+ },
111
+ {
112
+ key: "integration.syncRun.list",
113
+ version: 1
114
+ },
115
+ {
116
+ key: "integration.syncRun.detail",
117
+ version: 1
118
+ },
119
+ {
120
+ key: "integration.health",
121
+ version: 1
122
+ },
123
+ {
124
+ key: "integration.sync.activity",
125
+ version: 1
126
+ }
127
+ ],
128
+ opToPresentation: [
129
+ {
130
+ op: {
131
+ key: "integration.syncConfig.create",
132
+ version: 1
133
+ },
134
+ pres: {
135
+ key: "integration.syncConfig.editor",
136
+ version: 1
137
+ }
138
+ },
139
+ {
140
+ op: {
141
+ key: "integration.fieldMapping.add",
142
+ version: 1
143
+ },
144
+ pres: {
145
+ key: "integration.fieldMapping.editor",
146
+ version: 1
147
+ }
148
+ },
149
+ {
150
+ op: {
151
+ key: "integration.syncRun.list",
152
+ version: 1
153
+ },
154
+ pres: {
155
+ key: "integration.syncRun.list",
156
+ version: 1
157
+ }
158
+ }
159
+ ],
160
+ presentationsTargets: [
161
+ {
162
+ key: "integration.list",
163
+ version: 1,
164
+ targets: ["react", "markdown"]
165
+ },
166
+ {
167
+ key: "integration.detail",
168
+ version: 1,
169
+ targets: ["react", "markdown"]
170
+ },
171
+ {
172
+ key: "integration.syncConfig.list",
173
+ version: 1,
174
+ targets: ["react", "markdown"]
175
+ },
176
+ {
177
+ key: "integration.syncConfig.editor",
178
+ version: 1,
179
+ targets: ["react"]
180
+ },
181
+ {
182
+ key: "integration.fieldMapping.editor",
183
+ version: 1,
184
+ targets: ["react"]
185
+ },
186
+ {
187
+ key: "integration.syncRun.list",
188
+ version: 1,
189
+ targets: ["react", "markdown"]
190
+ },
191
+ {
192
+ key: "integration.syncRun.detail",
193
+ version: 1,
194
+ targets: ["react", "markdown"]
195
+ }
196
+ ],
197
+ capabilities: {
198
+ requires: [
199
+ {
200
+ key: "identity",
201
+ version: 1
202
+ },
203
+ {
204
+ key: "audit-trail",
205
+ version: 1
206
+ },
207
+ {
208
+ key: "feature-flags",
209
+ version: 1
210
+ },
211
+ {
212
+ key: "jobs",
213
+ version: 1
214
+ },
215
+ {
216
+ key: "files",
217
+ version: 1
218
+ }
219
+ ],
220
+ provides: [
221
+ {
222
+ key: "integration",
223
+ version: 1
224
+ },
225
+ {
226
+ key: "sync",
227
+ version: 1
228
+ },
229
+ {
230
+ key: "etl",
231
+ version: 1
232
+ }
233
+ ]
234
+ }
235
+ };
236
+
237
+ //#endregion
238
+ export { IntegrationHubFeature };
239
+ //# sourceMappingURL=integration-hub.feature.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"integration-hub.feature.js","names":["IntegrationHubFeature: FeatureModuleSpec"],"sources":["../src/integration-hub.feature.ts"],"sourcesContent":["/**\n * Integration Hub Feature Module Specification\n */\nimport type { FeatureModuleSpec } from '@contractspec/lib.contracts';\n\nexport const IntegrationHubFeature: FeatureModuleSpec = {\n meta: {\n key: 'integration-hub',\n version: 1,\n title: 'Integration Hub',\n description:\n 'Connect and sync data with external systems through configurable integrations',\n domain: 'integration',\n owners: ['@integration-team'],\n tags: ['integration', 'sync', 'etl', 'connectors'],\n stability: 'experimental',\n },\n\n operations: [\n { key: 'integration.create', version: 1 },\n { key: 'integration.connection.create', version: 1 },\n { key: 'integration.syncConfig.create', version: 1 },\n { key: 'integration.fieldMapping.add', version: 1 },\n { key: 'integration.sync.trigger', version: 1 },\n { key: 'integration.syncRun.list', version: 1 },\n ],\n\n events: [\n { key: 'integration.created', version: 1 },\n { key: 'integration.connection.created', version: 1 },\n { key: 'integration.connection.statusChanged', version: 1 },\n { key: 'integration.syncConfig.created', version: 1 },\n { key: 'integration.sync.started', version: 1 },\n { key: 'integration.sync.completed', version: 1 },\n { key: 'integration.sync.failed', version: 1 },\n { key: 'integration.record.synced', version: 1 },\n { key: 'integration.fieldMapping.added', version: 1 },\n ],\n\n presentations: [\n { key: 'integration.list', version: 1 },\n { key: 'integration.detail', version: 1 },\n { key: 'integration.connection.list', version: 1 },\n { key: 'integration.connection.setup', version: 1 },\n { key: 'integration.syncConfig.list', version: 1 },\n { key: 'integration.syncConfig.editor', version: 1 },\n { key: 'integration.fieldMapping.editor', version: 1 },\n { key: 'integration.syncRun.list', version: 1 },\n { key: 'integration.syncRun.detail', version: 1 },\n { key: 'integration.health', version: 1 },\n { key: 'integration.sync.activity', version: 1 },\n ],\n\n opToPresentation: [\n {\n op: { key: 'integration.syncConfig.create', version: 1 },\n pres: { key: 'integration.syncConfig.editor', version: 1 },\n },\n {\n op: { key: 'integration.fieldMapping.add', version: 1 },\n pres: { key: 'integration.fieldMapping.editor', version: 1 },\n },\n {\n op: { key: 'integration.syncRun.list', version: 1 },\n pres: { key: 'integration.syncRun.list', version: 1 },\n },\n ],\n\n presentationsTargets: [\n { key: 'integration.list', version: 1, targets: ['react', 'markdown'] },\n { key: 'integration.detail', version: 1, targets: ['react', 'markdown'] },\n {\n key: 'integration.syncConfig.list',\n version: 1,\n targets: ['react', 'markdown'],\n },\n { key: 'integration.syncConfig.editor', version: 1, targets: ['react'] },\n { key: 'integration.fieldMapping.editor', version: 1, targets: ['react'] },\n {\n key: 'integration.syncRun.list',\n version: 1,\n targets: ['react', 'markdown'],\n },\n {\n key: 'integration.syncRun.detail',\n version: 1,\n targets: ['react', 'markdown'],\n },\n ],\n\n capabilities: {\n requires: [\n { key: 'identity', version: 1 },\n { key: 'audit-trail', version: 1 },\n { key: 'feature-flags', version: 1 },\n { key: 'jobs', version: 1 },\n { key: 'files', version: 1 },\n ],\n provides: [\n { key: 'integration', version: 1 },\n { key: 'sync', version: 1 },\n { key: 'etl', version: 1 },\n ],\n },\n};\n"],"mappings":"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"}
@@ -0,0 +1,4 @@
1
+ import { MappingTypeEnum, SyncDirectionEnum, SyncStatusEnum } from "./sync.enum.js";
2
+ import { AddFieldMappingInputModel, CreateSyncConfigInputModel, FieldMappingModel, ListSyncRunsInputModel, ListSyncRunsOutputModel, SyncConfigModel, SyncRunModel, TriggerSyncInputModel } from "./sync.schema.js";
3
+ import { AddFieldMappingContract, CreateSyncConfigContract, ListSyncRunsContract, TriggerSyncContract } from "./sync.operations.js";
4
+ export { AddFieldMappingContract, AddFieldMappingInputModel, CreateSyncConfigContract, CreateSyncConfigInputModel, FieldMappingModel, ListSyncRunsContract, ListSyncRunsInputModel, ListSyncRunsOutputModel, MappingTypeEnum, SyncConfigModel, SyncDirectionEnum, SyncRunModel, SyncStatusEnum, TriggerSyncContract, TriggerSyncInputModel };
@@ -0,0 +1,5 @@
1
+ import { MappingTypeEnum, SyncDirectionEnum, SyncStatusEnum } from "./sync.enum.js";
2
+ import { AddFieldMappingInputModel, CreateSyncConfigInputModel, FieldMappingModel, ListSyncRunsInputModel, ListSyncRunsOutputModel, SyncConfigModel, SyncRunModel, TriggerSyncInputModel } from "./sync.schema.js";
3
+ import { AddFieldMappingContract, CreateSyncConfigContract, ListSyncRunsContract, TriggerSyncContract } from "./sync.operations.js";
4
+
5
+ export { AddFieldMappingContract, AddFieldMappingInputModel, CreateSyncConfigContract, CreateSyncConfigInputModel, FieldMappingModel, ListSyncRunsContract, ListSyncRunsInputModel, ListSyncRunsOutputModel, MappingTypeEnum, SyncConfigModel, SyncDirectionEnum, SyncRunModel, SyncStatusEnum, TriggerSyncContract, TriggerSyncInputModel };
@@ -0,0 +1,18 @@
1
+ import * as _contractspec_lib_schema120 from "@contractspec/lib.schema";
2
+
3
+ //#region src/sync/sync.enum.d.ts
4
+ /**
5
+ * Sync direction enum.
6
+ */
7
+ declare const SyncDirectionEnum: _contractspec_lib_schema120.EnumType<[string, string, string]>;
8
+ /**
9
+ * Sync status enum.
10
+ */
11
+ declare const SyncStatusEnum: _contractspec_lib_schema120.EnumType<[string, string, string, string, string]>;
12
+ /**
13
+ * Mapping type enum.
14
+ */
15
+ declare const MappingTypeEnum: _contractspec_lib_schema120.EnumType<[string, string, string, string, string]>;
16
+ //#endregion
17
+ export { MappingTypeEnum, SyncDirectionEnum, SyncStatusEnum };
18
+ //# sourceMappingURL=sync.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sync.enum.d.ts","names":[],"sources":["../../src/sync/sync.enum.ts"],"sourcesContent":[],"mappings":";;;;;;AAKa,cAAA,iBAIX,EAAA,2BAAA,CAJ4B,QAAA,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;AAS9B;AAWA;;cAXa,gBAMX,2BAAA,CANyB;;;;cAWd,iBAMX,2BAAA,CAN0B"}
@@ -0,0 +1,35 @@
1
+ import { defineEnum } from "@contractspec/lib.schema";
2
+
3
+ //#region src/sync/sync.enum.ts
4
+ /**
5
+ * Sync direction enum.
6
+ */
7
+ const SyncDirectionEnum = defineEnum("SyncDirection", [
8
+ "INBOUND",
9
+ "OUTBOUND",
10
+ "BIDIRECTIONAL"
11
+ ]);
12
+ /**
13
+ * Sync status enum.
14
+ */
15
+ const SyncStatusEnum = defineEnum("SyncStatus", [
16
+ "PENDING",
17
+ "RUNNING",
18
+ "COMPLETED",
19
+ "FAILED",
20
+ "CANCELLED"
21
+ ]);
22
+ /**
23
+ * Mapping type enum.
24
+ */
25
+ const MappingTypeEnum = defineEnum("MappingType", [
26
+ "DIRECT",
27
+ "TRANSFORM",
28
+ "LOOKUP",
29
+ "CONSTANT",
30
+ "COMPUTED"
31
+ ]);
32
+
33
+ //#endregion
34
+ export { MappingTypeEnum, SyncDirectionEnum, SyncStatusEnum };
35
+ //# sourceMappingURL=sync.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sync.enum.js","names":[],"sources":["../../src/sync/sync.enum.ts"],"sourcesContent":["import { defineEnum } from '@contractspec/lib.schema';\n\n/**\n * Sync direction enum.\n */\nexport const SyncDirectionEnum = defineEnum('SyncDirection', [\n 'INBOUND',\n 'OUTBOUND',\n 'BIDIRECTIONAL',\n]);\n\n/**\n * Sync status enum.\n */\nexport const SyncStatusEnum = defineEnum('SyncStatus', [\n 'PENDING',\n 'RUNNING',\n 'COMPLETED',\n 'FAILED',\n 'CANCELLED',\n]);\n\n/**\n * Mapping type enum.\n */\nexport const MappingTypeEnum = defineEnum('MappingType', [\n 'DIRECT',\n 'TRANSFORM',\n 'LOOKUP',\n 'CONSTANT',\n 'COMPUTED',\n]);\n"],"mappings":";;;;;;AAKA,MAAa,oBAAoB,WAAW,iBAAiB;CAC3D;CACA;CACA;CACD,CAAC;;;;AAKF,MAAa,iBAAiB,WAAW,cAAc;CACrD;CACA;CACA;CACA;CACA;CACD,CAAC;;;;AAKF,MAAa,kBAAkB,WAAW,eAAe;CACvD;CACA;CACA;CACA;CACA;CACD,CAAC"}