@lssm/example.integration-hub 0.0.0-canary-20251207012602 → 0.0.0-canary-20251207013726
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/contracts/index.d.ts +288 -288
- package/dist/entities/index.d.ts +234 -234
- package/dist/events.d.ts +112 -112
- package/dist/index.d.ts +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
|
@@ -1,413 +1,413 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema519 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts5 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/events.d.ts
|
|
5
|
-
declare const IntegrationCreatedEvent:
|
|
5
|
+
declare const IntegrationCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
6
6
|
integrationId: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
name: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
provider: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
organizationId: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
timestamp: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
}>>;
|
|
27
|
-
declare const ConnectionCreatedEvent:
|
|
27
|
+
declare const ConnectionCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
28
28
|
connectionId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
integrationId: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
name: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
authType: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
timestamp: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
}>>;
|
|
49
|
-
declare const ConnectionStatusChangedEvent:
|
|
49
|
+
declare const ConnectionStatusChangedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
50
50
|
connectionId: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
integrationId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
previousStatus: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
newStatus: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
reason: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
timestamp: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
}>>;
|
|
75
|
-
declare const SyncConfigCreatedEvent:
|
|
75
|
+
declare const SyncConfigCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
76
76
|
syncConfigId: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
integrationId: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
name: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
sourceObject: {
|
|
89
|
-
type:
|
|
89
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
targetObject: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
timestamp: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
}>>;
|
|
101
|
-
declare const SyncStartedEvent:
|
|
101
|
+
declare const SyncStartedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
102
102
|
syncRunId: {
|
|
103
|
-
type:
|
|
103
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
104
104
|
isOptional: false;
|
|
105
105
|
};
|
|
106
106
|
syncConfigId: {
|
|
107
|
-
type:
|
|
107
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
108
108
|
isOptional: false;
|
|
109
109
|
};
|
|
110
110
|
direction: {
|
|
111
|
-
type:
|
|
111
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
112
112
|
isOptional: false;
|
|
113
113
|
};
|
|
114
114
|
trigger: {
|
|
115
|
-
type:
|
|
115
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
timestamp: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
}>>;
|
|
123
|
-
declare const SyncCompletedEvent:
|
|
123
|
+
declare const SyncCompletedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
124
124
|
syncRunId: {
|
|
125
|
-
type:
|
|
125
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
126
126
|
isOptional: false;
|
|
127
127
|
};
|
|
128
128
|
syncConfigId: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
130
130
|
isOptional: false;
|
|
131
131
|
};
|
|
132
132
|
status: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
recordsProcessed: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
recordsCreated: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
142
142
|
isOptional: false;
|
|
143
143
|
};
|
|
144
144
|
recordsUpdated: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
146
146
|
isOptional: false;
|
|
147
147
|
};
|
|
148
148
|
recordsFailed: {
|
|
149
|
-
type:
|
|
149
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
150
150
|
isOptional: false;
|
|
151
151
|
};
|
|
152
152
|
durationMs: {
|
|
153
|
-
type:
|
|
153
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
154
154
|
isOptional: false;
|
|
155
155
|
};
|
|
156
156
|
timestamp: {
|
|
157
|
-
type:
|
|
157
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
158
158
|
isOptional: false;
|
|
159
159
|
};
|
|
160
160
|
}>>;
|
|
161
|
-
declare const SyncFailedEvent:
|
|
161
|
+
declare const SyncFailedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
162
162
|
syncRunId: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
164
164
|
isOptional: false;
|
|
165
165
|
};
|
|
166
166
|
syncConfigId: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
168
168
|
isOptional: false;
|
|
169
169
|
};
|
|
170
170
|
errorMessage: {
|
|
171
|
-
type:
|
|
171
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
172
172
|
isOptional: false;
|
|
173
173
|
};
|
|
174
174
|
recordsProcessed: {
|
|
175
|
-
type:
|
|
175
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
176
176
|
isOptional: false;
|
|
177
177
|
};
|
|
178
178
|
timestamp: {
|
|
179
|
-
type:
|
|
179
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
180
180
|
isOptional: false;
|
|
181
181
|
};
|
|
182
182
|
}>>;
|
|
183
|
-
declare const RecordSyncedEvent:
|
|
183
|
+
declare const RecordSyncedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
184
184
|
syncRunId: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
186
186
|
isOptional: false;
|
|
187
187
|
};
|
|
188
188
|
syncConfigId: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
190
190
|
isOptional: false;
|
|
191
191
|
};
|
|
192
192
|
sourceId: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
194
194
|
isOptional: false;
|
|
195
195
|
};
|
|
196
196
|
targetId: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
};
|
|
200
200
|
operation: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
timestamp: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
206
206
|
isOptional: false;
|
|
207
207
|
};
|
|
208
208
|
}>>;
|
|
209
209
|
declare const IntegrationHubEvents: {
|
|
210
|
-
IntegrationCreatedEvent:
|
|
210
|
+
IntegrationCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
211
211
|
integrationId: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
213
213
|
isOptional: false;
|
|
214
214
|
};
|
|
215
215
|
name: {
|
|
216
|
-
type:
|
|
216
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
217
217
|
isOptional: false;
|
|
218
218
|
};
|
|
219
219
|
provider: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
221
221
|
isOptional: false;
|
|
222
222
|
};
|
|
223
223
|
organizationId: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
225
225
|
isOptional: false;
|
|
226
226
|
};
|
|
227
227
|
timestamp: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
}>>;
|
|
232
|
-
ConnectionCreatedEvent:
|
|
232
|
+
ConnectionCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
233
233
|
connectionId: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
integrationId: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
239
239
|
isOptional: false;
|
|
240
240
|
};
|
|
241
241
|
name: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
243
243
|
isOptional: false;
|
|
244
244
|
};
|
|
245
245
|
authType: {
|
|
246
|
-
type:
|
|
246
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
247
247
|
isOptional: false;
|
|
248
248
|
};
|
|
249
249
|
timestamp: {
|
|
250
|
-
type:
|
|
250
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
251
251
|
isOptional: false;
|
|
252
252
|
};
|
|
253
253
|
}>>;
|
|
254
|
-
ConnectionStatusChangedEvent:
|
|
254
|
+
ConnectionStatusChangedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
255
255
|
connectionId: {
|
|
256
|
-
type:
|
|
256
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
257
257
|
isOptional: false;
|
|
258
258
|
};
|
|
259
259
|
integrationId: {
|
|
260
|
-
type:
|
|
260
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
261
261
|
isOptional: false;
|
|
262
262
|
};
|
|
263
263
|
previousStatus: {
|
|
264
|
-
type:
|
|
264
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
265
265
|
isOptional: false;
|
|
266
266
|
};
|
|
267
267
|
newStatus: {
|
|
268
|
-
type:
|
|
268
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
269
269
|
isOptional: false;
|
|
270
270
|
};
|
|
271
271
|
reason: {
|
|
272
|
-
type:
|
|
272
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
273
273
|
isOptional: true;
|
|
274
274
|
};
|
|
275
275
|
timestamp: {
|
|
276
|
-
type:
|
|
276
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
277
277
|
isOptional: false;
|
|
278
278
|
};
|
|
279
279
|
}>>;
|
|
280
|
-
SyncConfigCreatedEvent:
|
|
280
|
+
SyncConfigCreatedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
281
281
|
syncConfigId: {
|
|
282
|
-
type:
|
|
282
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
283
283
|
isOptional: false;
|
|
284
284
|
};
|
|
285
285
|
integrationId: {
|
|
286
|
-
type:
|
|
286
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
287
287
|
isOptional: false;
|
|
288
288
|
};
|
|
289
289
|
name: {
|
|
290
|
-
type:
|
|
290
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
291
291
|
isOptional: false;
|
|
292
292
|
};
|
|
293
293
|
sourceObject: {
|
|
294
|
-
type:
|
|
294
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
295
295
|
isOptional: false;
|
|
296
296
|
};
|
|
297
297
|
targetObject: {
|
|
298
|
-
type:
|
|
298
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
299
299
|
isOptional: false;
|
|
300
300
|
};
|
|
301
301
|
timestamp: {
|
|
302
|
-
type:
|
|
302
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
303
303
|
isOptional: false;
|
|
304
304
|
};
|
|
305
305
|
}>>;
|
|
306
|
-
SyncStartedEvent:
|
|
306
|
+
SyncStartedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
307
307
|
syncRunId: {
|
|
308
|
-
type:
|
|
308
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
309
309
|
isOptional: false;
|
|
310
310
|
};
|
|
311
311
|
syncConfigId: {
|
|
312
|
-
type:
|
|
312
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
313
313
|
isOptional: false;
|
|
314
314
|
};
|
|
315
315
|
direction: {
|
|
316
|
-
type:
|
|
316
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
317
317
|
isOptional: false;
|
|
318
318
|
};
|
|
319
319
|
trigger: {
|
|
320
|
-
type:
|
|
320
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
321
321
|
isOptional: false;
|
|
322
322
|
};
|
|
323
323
|
timestamp: {
|
|
324
|
-
type:
|
|
324
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
325
325
|
isOptional: false;
|
|
326
326
|
};
|
|
327
327
|
}>>;
|
|
328
|
-
SyncCompletedEvent:
|
|
328
|
+
SyncCompletedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
329
329
|
syncRunId: {
|
|
330
|
-
type:
|
|
330
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
331
331
|
isOptional: false;
|
|
332
332
|
};
|
|
333
333
|
syncConfigId: {
|
|
334
|
-
type:
|
|
334
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
335
335
|
isOptional: false;
|
|
336
336
|
};
|
|
337
337
|
status: {
|
|
338
|
-
type:
|
|
338
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
339
339
|
isOptional: false;
|
|
340
340
|
};
|
|
341
341
|
recordsProcessed: {
|
|
342
|
-
type:
|
|
342
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
343
343
|
isOptional: false;
|
|
344
344
|
};
|
|
345
345
|
recordsCreated: {
|
|
346
|
-
type:
|
|
346
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
347
347
|
isOptional: false;
|
|
348
348
|
};
|
|
349
349
|
recordsUpdated: {
|
|
350
|
-
type:
|
|
350
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
351
351
|
isOptional: false;
|
|
352
352
|
};
|
|
353
353
|
recordsFailed: {
|
|
354
|
-
type:
|
|
354
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
355
355
|
isOptional: false;
|
|
356
356
|
};
|
|
357
357
|
durationMs: {
|
|
358
|
-
type:
|
|
358
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
359
359
|
isOptional: false;
|
|
360
360
|
};
|
|
361
361
|
timestamp: {
|
|
362
|
-
type:
|
|
362
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
363
363
|
isOptional: false;
|
|
364
364
|
};
|
|
365
365
|
}>>;
|
|
366
|
-
SyncFailedEvent:
|
|
366
|
+
SyncFailedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
367
367
|
syncRunId: {
|
|
368
|
-
type:
|
|
368
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
369
369
|
isOptional: false;
|
|
370
370
|
};
|
|
371
371
|
syncConfigId: {
|
|
372
|
-
type:
|
|
372
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
373
373
|
isOptional: false;
|
|
374
374
|
};
|
|
375
375
|
errorMessage: {
|
|
376
|
-
type:
|
|
376
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
377
377
|
isOptional: false;
|
|
378
378
|
};
|
|
379
379
|
recordsProcessed: {
|
|
380
|
-
type:
|
|
380
|
+
type: _lssm_lib_schema519.FieldType<number, number>;
|
|
381
381
|
isOptional: false;
|
|
382
382
|
};
|
|
383
383
|
timestamp: {
|
|
384
|
-
type:
|
|
384
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
385
385
|
isOptional: false;
|
|
386
386
|
};
|
|
387
387
|
}>>;
|
|
388
|
-
RecordSyncedEvent:
|
|
388
|
+
RecordSyncedEvent: _lssm_lib_contracts5.EventSpec<_lssm_lib_schema519.SchemaModel<{
|
|
389
389
|
syncRunId: {
|
|
390
|
-
type:
|
|
390
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
391
391
|
isOptional: false;
|
|
392
392
|
};
|
|
393
393
|
syncConfigId: {
|
|
394
|
-
type:
|
|
394
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
395
395
|
isOptional: false;
|
|
396
396
|
};
|
|
397
397
|
sourceId: {
|
|
398
|
-
type:
|
|
398
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
399
399
|
isOptional: false;
|
|
400
400
|
};
|
|
401
401
|
targetId: {
|
|
402
|
-
type:
|
|
402
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
403
403
|
isOptional: false;
|
|
404
404
|
};
|
|
405
405
|
operation: {
|
|
406
|
-
type:
|
|
406
|
+
type: _lssm_lib_schema519.FieldType<string, string>;
|
|
407
407
|
isOptional: false;
|
|
408
408
|
};
|
|
409
409
|
timestamp: {
|
|
410
|
-
type:
|
|
410
|
+
type: _lssm_lib_schema519.FieldType<Date, string>;
|
|
411
411
|
isOptional: false;
|
|
412
412
|
};
|
|
413
413
|
}>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import { IntegrationHubFeature } from "./feature.js";
|
|
|
5
5
|
import { IntegrationHandlerContext, handleAddFieldMapping, handleCreateConnection, handleCreateIntegration, handleCreateSyncConfig, handleListSyncRuns, handleTriggerSync, mockIntegrationStore } from "./handlers/index.js";
|
|
6
6
|
import { ConnectionListPresentation, ConnectionSetupPresentation, FieldMappingEditorPresentation, IntegrationDetailPresentation, IntegrationHealthPresentation, IntegrationHubPresentations, IntegrationListPresentation, SyncActivityPresentation, SyncConfigEditorPresentation, SyncConfigListPresentation, SyncRunDetailPresentation, SyncRunListPresentation } from "./presentations/index.js";
|
|
7
7
|
import { BasicFieldTransformer, BasicSyncEngine, FieldMapping, IFieldTransformer, ISyncEngine, LookupConfig, SourceRecord, SyncConfig, SyncContext, SyncError, SyncResult, TargetRecord, computeChecksum, createSyncEngine, hasChanges } from "./sync-engine/index.js";
|
|
8
|
-
import * as
|
|
8
|
+
import * as _lssm_lib_schema285 from "@lssm/lib.schema";
|
|
9
9
|
|
|
10
10
|
//#region src/index.d.ts
|
|
11
11
|
|
|
@@ -22,7 +22,7 @@ import * as _lssm_lib_schema109 from "@lssm/lib.schema";
|
|
|
22
22
|
* - Feature flag controlled rollout
|
|
23
23
|
*/
|
|
24
24
|
declare const schemaComposition: {
|
|
25
|
-
modules:
|
|
25
|
+
modules: _lssm_lib_schema285.ModuleSchemaContribution[];
|
|
26
26
|
provider: "postgresql";
|
|
27
27
|
outputPath: string;
|
|
28
28
|
};
|