@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
|
@@ -1,170 +1,170 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema0 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/contracts/index.d.ts
|
|
5
|
-
declare const IntegrationModel:
|
|
5
|
+
declare const IntegrationModel: _lssm_lib_schema0.SchemaModel<{
|
|
6
6
|
id: {
|
|
7
|
-
type:
|
|
7
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
9
9
|
};
|
|
10
10
|
name: {
|
|
11
|
-
type:
|
|
11
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
12
12
|
isOptional: false;
|
|
13
13
|
};
|
|
14
14
|
slug: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
description: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
20
20
|
isOptional: true;
|
|
21
21
|
};
|
|
22
22
|
provider: {
|
|
23
|
-
type:
|
|
23
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
24
24
|
isOptional: false;
|
|
25
25
|
};
|
|
26
26
|
status: {
|
|
27
|
-
type:
|
|
27
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
createdAt: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
}>;
|
|
35
|
-
declare const ConnectionModel:
|
|
35
|
+
declare const ConnectionModel: _lssm_lib_schema0.SchemaModel<{
|
|
36
36
|
id: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
integrationId: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
name: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
status: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
authType: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
54
54
|
isOptional: false;
|
|
55
55
|
};
|
|
56
56
|
externalAccountName: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
58
58
|
isOptional: true;
|
|
59
59
|
};
|
|
60
60
|
connectedAt: {
|
|
61
|
-
type:
|
|
61
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
62
62
|
isOptional: true;
|
|
63
63
|
};
|
|
64
64
|
lastHealthCheck: {
|
|
65
|
-
type:
|
|
65
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
66
66
|
isOptional: true;
|
|
67
67
|
};
|
|
68
68
|
healthStatus: {
|
|
69
|
-
type:
|
|
69
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
70
70
|
isOptional: true;
|
|
71
71
|
};
|
|
72
72
|
}>;
|
|
73
|
-
declare const FieldMappingModel:
|
|
73
|
+
declare const FieldMappingModel: _lssm_lib_schema0.SchemaModel<{
|
|
74
74
|
id: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
sourceField: {
|
|
79
|
-
type:
|
|
79
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
80
80
|
isOptional: false;
|
|
81
81
|
};
|
|
82
82
|
targetField: {
|
|
83
|
-
type:
|
|
83
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
84
84
|
isOptional: false;
|
|
85
85
|
};
|
|
86
86
|
mappingType: {
|
|
87
|
-
type:
|
|
87
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
88
88
|
isOptional: false;
|
|
89
89
|
};
|
|
90
90
|
transformExpression: {
|
|
91
|
-
type:
|
|
91
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
92
92
|
isOptional: true;
|
|
93
93
|
};
|
|
94
94
|
isRequired: {
|
|
95
|
-
type:
|
|
95
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
96
96
|
isOptional: false;
|
|
97
97
|
};
|
|
98
98
|
}>;
|
|
99
|
-
declare const SyncConfigModel:
|
|
99
|
+
declare const SyncConfigModel: _lssm_lib_schema0.SchemaModel<{
|
|
100
100
|
id: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
integrationId: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
connectionId: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
name: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
direction: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
sourceObject: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
targetObject: {
|
|
125
|
-
type:
|
|
125
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
126
126
|
isOptional: false;
|
|
127
127
|
};
|
|
128
128
|
scheduleEnabled: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
130
130
|
isOptional: false;
|
|
131
131
|
};
|
|
132
132
|
scheduleCron: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
134
134
|
isOptional: true;
|
|
135
135
|
};
|
|
136
136
|
isActive: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
lastSyncAt: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
142
142
|
isOptional: true;
|
|
143
143
|
};
|
|
144
144
|
fieldMappings: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
146
146
|
id: {
|
|
147
|
-
type:
|
|
147
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
148
148
|
isOptional: false;
|
|
149
149
|
};
|
|
150
150
|
sourceField: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
targetField: {
|
|
155
|
-
type:
|
|
155
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
156
156
|
isOptional: false;
|
|
157
157
|
};
|
|
158
158
|
mappingType: {
|
|
159
|
-
type:
|
|
159
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
160
160
|
isOptional: false;
|
|
161
161
|
};
|
|
162
162
|
transformExpression: {
|
|
163
|
-
type:
|
|
163
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
164
164
|
isOptional: true;
|
|
165
165
|
};
|
|
166
166
|
isRequired: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
168
168
|
isOptional: false;
|
|
169
169
|
};
|
|
170
170
|
}>;
|
|
@@ -172,263 +172,263 @@ declare const SyncConfigModel: _lssm_lib_schema343.SchemaModel<{
|
|
|
172
172
|
isOptional: true;
|
|
173
173
|
};
|
|
174
174
|
}>;
|
|
175
|
-
declare const SyncRunModel:
|
|
175
|
+
declare const SyncRunModel: _lssm_lib_schema0.SchemaModel<{
|
|
176
176
|
id: {
|
|
177
|
-
type:
|
|
177
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
178
178
|
isOptional: false;
|
|
179
179
|
};
|
|
180
180
|
syncConfigId: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
182
182
|
isOptional: false;
|
|
183
183
|
};
|
|
184
184
|
status: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
186
186
|
isOptional: false;
|
|
187
187
|
};
|
|
188
188
|
direction: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
190
190
|
isOptional: false;
|
|
191
191
|
};
|
|
192
192
|
trigger: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
194
194
|
isOptional: false;
|
|
195
195
|
};
|
|
196
196
|
recordsProcessed: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
};
|
|
200
200
|
recordsCreated: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
recordsUpdated: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
206
206
|
isOptional: false;
|
|
207
207
|
};
|
|
208
208
|
recordsFailed: {
|
|
209
|
-
type:
|
|
209
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
210
210
|
isOptional: false;
|
|
211
211
|
};
|
|
212
212
|
errorMessage: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
214
214
|
isOptional: true;
|
|
215
215
|
};
|
|
216
216
|
startedAt: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
218
218
|
isOptional: true;
|
|
219
219
|
};
|
|
220
220
|
completedAt: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
222
222
|
isOptional: true;
|
|
223
223
|
};
|
|
224
224
|
createdAt: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
}>;
|
|
229
|
-
declare const CreateIntegrationInputModel:
|
|
229
|
+
declare const CreateIntegrationInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
230
230
|
name: {
|
|
231
|
-
type:
|
|
231
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
232
232
|
isOptional: false;
|
|
233
233
|
};
|
|
234
234
|
slug: {
|
|
235
|
-
type:
|
|
235
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
236
236
|
isOptional: false;
|
|
237
237
|
};
|
|
238
238
|
description: {
|
|
239
|
-
type:
|
|
239
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
240
240
|
isOptional: true;
|
|
241
241
|
};
|
|
242
242
|
provider: {
|
|
243
|
-
type:
|
|
243
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
244
244
|
isOptional: false;
|
|
245
245
|
};
|
|
246
246
|
config: {
|
|
247
|
-
type:
|
|
247
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
248
248
|
isOptional: true;
|
|
249
249
|
};
|
|
250
250
|
featureFlagKey: {
|
|
251
|
-
type:
|
|
251
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
252
252
|
isOptional: true;
|
|
253
253
|
};
|
|
254
254
|
}>;
|
|
255
|
-
declare const CreateConnectionInputModel:
|
|
255
|
+
declare const CreateConnectionInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
256
256
|
integrationId: {
|
|
257
|
-
type:
|
|
257
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
258
258
|
isOptional: false;
|
|
259
259
|
};
|
|
260
260
|
name: {
|
|
261
|
-
type:
|
|
261
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
262
262
|
isOptional: false;
|
|
263
263
|
};
|
|
264
264
|
authType: {
|
|
265
|
-
type:
|
|
265
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
266
266
|
isOptional: false;
|
|
267
267
|
};
|
|
268
268
|
credentials: {
|
|
269
|
-
type:
|
|
269
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
270
270
|
isOptional: true;
|
|
271
271
|
};
|
|
272
272
|
}>;
|
|
273
|
-
declare const CreateSyncConfigInputModel:
|
|
273
|
+
declare const CreateSyncConfigInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
274
274
|
integrationId: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
connectionId: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
name: {
|
|
283
|
-
type:
|
|
283
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
284
284
|
isOptional: false;
|
|
285
285
|
};
|
|
286
286
|
direction: {
|
|
287
|
-
type:
|
|
287
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
288
288
|
isOptional: false;
|
|
289
289
|
};
|
|
290
290
|
sourceObject: {
|
|
291
|
-
type:
|
|
291
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
292
292
|
isOptional: false;
|
|
293
293
|
};
|
|
294
294
|
targetObject: {
|
|
295
|
-
type:
|
|
295
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
296
296
|
isOptional: false;
|
|
297
297
|
};
|
|
298
298
|
scheduleEnabled: {
|
|
299
|
-
type:
|
|
299
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
300
300
|
isOptional: true;
|
|
301
301
|
};
|
|
302
302
|
scheduleCron: {
|
|
303
|
-
type:
|
|
303
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
304
304
|
isOptional: true;
|
|
305
305
|
};
|
|
306
306
|
}>;
|
|
307
|
-
declare const AddFieldMappingInputModel:
|
|
307
|
+
declare const AddFieldMappingInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
308
308
|
syncConfigId: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
310
310
|
isOptional: false;
|
|
311
311
|
};
|
|
312
312
|
sourceField: {
|
|
313
|
-
type:
|
|
313
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
314
314
|
isOptional: false;
|
|
315
315
|
};
|
|
316
316
|
targetField: {
|
|
317
|
-
type:
|
|
317
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
318
318
|
isOptional: false;
|
|
319
319
|
};
|
|
320
320
|
mappingType: {
|
|
321
|
-
type:
|
|
321
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
322
322
|
isOptional: false;
|
|
323
323
|
};
|
|
324
324
|
transformExpression: {
|
|
325
|
-
type:
|
|
325
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
326
326
|
isOptional: true;
|
|
327
327
|
};
|
|
328
328
|
lookupConfig: {
|
|
329
|
-
type:
|
|
329
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
330
330
|
isOptional: true;
|
|
331
331
|
};
|
|
332
332
|
constantValue: {
|
|
333
|
-
type:
|
|
333
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
334
334
|
isOptional: true;
|
|
335
335
|
};
|
|
336
336
|
isRequired: {
|
|
337
|
-
type:
|
|
337
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
338
338
|
isOptional: true;
|
|
339
339
|
};
|
|
340
340
|
defaultValue: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
342
342
|
isOptional: true;
|
|
343
343
|
};
|
|
344
344
|
}>;
|
|
345
|
-
declare const TriggerSyncInputModel:
|
|
345
|
+
declare const TriggerSyncInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
346
346
|
syncConfigId: {
|
|
347
|
-
type:
|
|
347
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
348
348
|
isOptional: false;
|
|
349
349
|
};
|
|
350
350
|
direction: {
|
|
351
|
-
type:
|
|
351
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
352
352
|
isOptional: true;
|
|
353
353
|
};
|
|
354
354
|
fullSync: {
|
|
355
|
-
type:
|
|
355
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
356
356
|
isOptional: true;
|
|
357
357
|
};
|
|
358
358
|
}>;
|
|
359
|
-
declare const ListSyncRunsInputModel:
|
|
359
|
+
declare const ListSyncRunsInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
360
360
|
syncConfigId: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
362
362
|
isOptional: false;
|
|
363
363
|
};
|
|
364
364
|
status: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
366
366
|
isOptional: true;
|
|
367
367
|
};
|
|
368
368
|
limit: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
370
370
|
isOptional: true;
|
|
371
371
|
defaultValue: number;
|
|
372
372
|
};
|
|
373
373
|
offset: {
|
|
374
|
-
type:
|
|
374
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
375
375
|
isOptional: true;
|
|
376
376
|
defaultValue: number;
|
|
377
377
|
};
|
|
378
378
|
}>;
|
|
379
|
-
declare const ListSyncRunsOutputModel:
|
|
379
|
+
declare const ListSyncRunsOutputModel: _lssm_lib_schema0.SchemaModel<{
|
|
380
380
|
runs: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
382
382
|
id: {
|
|
383
|
-
type:
|
|
383
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
384
384
|
isOptional: false;
|
|
385
385
|
};
|
|
386
386
|
syncConfigId: {
|
|
387
|
-
type:
|
|
387
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
388
388
|
isOptional: false;
|
|
389
389
|
};
|
|
390
390
|
status: {
|
|
391
|
-
type:
|
|
391
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
392
392
|
isOptional: false;
|
|
393
393
|
};
|
|
394
394
|
direction: {
|
|
395
|
-
type:
|
|
395
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
396
396
|
isOptional: false;
|
|
397
397
|
};
|
|
398
398
|
trigger: {
|
|
399
|
-
type:
|
|
399
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
400
400
|
isOptional: false;
|
|
401
401
|
};
|
|
402
402
|
recordsProcessed: {
|
|
403
|
-
type:
|
|
403
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
404
404
|
isOptional: false;
|
|
405
405
|
};
|
|
406
406
|
recordsCreated: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
recordsUpdated: {
|
|
411
|
-
type:
|
|
411
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
412
412
|
isOptional: false;
|
|
413
413
|
};
|
|
414
414
|
recordsFailed: {
|
|
415
|
-
type:
|
|
415
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
416
416
|
isOptional: false;
|
|
417
417
|
};
|
|
418
418
|
errorMessage: {
|
|
419
|
-
type:
|
|
419
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
420
420
|
isOptional: true;
|
|
421
421
|
};
|
|
422
422
|
startedAt: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
424
424
|
isOptional: true;
|
|
425
425
|
};
|
|
426
426
|
completedAt: {
|
|
427
|
-
type:
|
|
427
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
428
428
|
isOptional: true;
|
|
429
429
|
};
|
|
430
430
|
createdAt: {
|
|
431
|
-
type:
|
|
431
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
432
432
|
isOptional: false;
|
|
433
433
|
};
|
|
434
434
|
}>;
|
|
@@ -436,298 +436,298 @@ declare const ListSyncRunsOutputModel: _lssm_lib_schema343.SchemaModel<{
|
|
|
436
436
|
isOptional: false;
|
|
437
437
|
};
|
|
438
438
|
total: {
|
|
439
|
-
type:
|
|
439
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
440
440
|
isOptional: false;
|
|
441
441
|
};
|
|
442
442
|
}>;
|
|
443
|
-
declare const CreateIntegrationContract:
|
|
443
|
+
declare const CreateIntegrationContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
444
444
|
name: {
|
|
445
|
-
type:
|
|
445
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
446
446
|
isOptional: false;
|
|
447
447
|
};
|
|
448
448
|
slug: {
|
|
449
|
-
type:
|
|
449
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
450
450
|
isOptional: false;
|
|
451
451
|
};
|
|
452
452
|
description: {
|
|
453
|
-
type:
|
|
453
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
454
454
|
isOptional: true;
|
|
455
455
|
};
|
|
456
456
|
provider: {
|
|
457
|
-
type:
|
|
457
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
458
458
|
isOptional: false;
|
|
459
459
|
};
|
|
460
460
|
config: {
|
|
461
|
-
type:
|
|
461
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
462
462
|
isOptional: true;
|
|
463
463
|
};
|
|
464
464
|
featureFlagKey: {
|
|
465
|
-
type:
|
|
465
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
466
466
|
isOptional: true;
|
|
467
467
|
};
|
|
468
|
-
}>,
|
|
468
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
469
469
|
id: {
|
|
470
|
-
type:
|
|
470
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
471
471
|
isOptional: false;
|
|
472
472
|
};
|
|
473
473
|
name: {
|
|
474
|
-
type:
|
|
474
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
475
475
|
isOptional: false;
|
|
476
476
|
};
|
|
477
477
|
slug: {
|
|
478
|
-
type:
|
|
478
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
479
479
|
isOptional: false;
|
|
480
480
|
};
|
|
481
481
|
description: {
|
|
482
|
-
type:
|
|
482
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
483
483
|
isOptional: true;
|
|
484
484
|
};
|
|
485
485
|
provider: {
|
|
486
|
-
type:
|
|
486
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
487
487
|
isOptional: false;
|
|
488
488
|
};
|
|
489
489
|
status: {
|
|
490
|
-
type:
|
|
490
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
491
491
|
isOptional: false;
|
|
492
492
|
};
|
|
493
493
|
createdAt: {
|
|
494
|
-
type:
|
|
494
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
495
495
|
isOptional: false;
|
|
496
496
|
};
|
|
497
497
|
}>, {
|
|
498
498
|
name: string;
|
|
499
499
|
version: number;
|
|
500
500
|
when: string;
|
|
501
|
-
payload:
|
|
501
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
502
502
|
id: {
|
|
503
|
-
type:
|
|
503
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
504
504
|
isOptional: false;
|
|
505
505
|
};
|
|
506
506
|
name: {
|
|
507
|
-
type:
|
|
507
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
508
508
|
isOptional: false;
|
|
509
509
|
};
|
|
510
510
|
slug: {
|
|
511
|
-
type:
|
|
511
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
512
512
|
isOptional: false;
|
|
513
513
|
};
|
|
514
514
|
description: {
|
|
515
|
-
type:
|
|
515
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
516
516
|
isOptional: true;
|
|
517
517
|
};
|
|
518
518
|
provider: {
|
|
519
|
-
type:
|
|
519
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
520
520
|
isOptional: false;
|
|
521
521
|
};
|
|
522
522
|
status: {
|
|
523
|
-
type:
|
|
523
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
524
524
|
isOptional: false;
|
|
525
525
|
};
|
|
526
526
|
createdAt: {
|
|
527
|
-
type:
|
|
527
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
528
528
|
isOptional: false;
|
|
529
529
|
};
|
|
530
530
|
}>;
|
|
531
531
|
}[]>;
|
|
532
|
-
declare const CreateConnectionContract:
|
|
532
|
+
declare const CreateConnectionContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
533
533
|
integrationId: {
|
|
534
|
-
type:
|
|
534
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
535
535
|
isOptional: false;
|
|
536
536
|
};
|
|
537
537
|
name: {
|
|
538
|
-
type:
|
|
538
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
539
539
|
isOptional: false;
|
|
540
540
|
};
|
|
541
541
|
authType: {
|
|
542
|
-
type:
|
|
542
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
543
543
|
isOptional: false;
|
|
544
544
|
};
|
|
545
545
|
credentials: {
|
|
546
|
-
type:
|
|
546
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
547
547
|
isOptional: true;
|
|
548
548
|
};
|
|
549
|
-
}>,
|
|
549
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
550
550
|
id: {
|
|
551
|
-
type:
|
|
551
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
552
552
|
isOptional: false;
|
|
553
553
|
};
|
|
554
554
|
integrationId: {
|
|
555
|
-
type:
|
|
555
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
556
556
|
isOptional: false;
|
|
557
557
|
};
|
|
558
558
|
name: {
|
|
559
|
-
type:
|
|
559
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
560
560
|
isOptional: false;
|
|
561
561
|
};
|
|
562
562
|
status: {
|
|
563
|
-
type:
|
|
563
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
564
564
|
isOptional: false;
|
|
565
565
|
};
|
|
566
566
|
authType: {
|
|
567
|
-
type:
|
|
567
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
568
568
|
isOptional: false;
|
|
569
569
|
};
|
|
570
570
|
externalAccountName: {
|
|
571
|
-
type:
|
|
571
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
572
572
|
isOptional: true;
|
|
573
573
|
};
|
|
574
574
|
connectedAt: {
|
|
575
|
-
type:
|
|
575
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
576
576
|
isOptional: true;
|
|
577
577
|
};
|
|
578
578
|
lastHealthCheck: {
|
|
579
|
-
type:
|
|
579
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
580
580
|
isOptional: true;
|
|
581
581
|
};
|
|
582
582
|
healthStatus: {
|
|
583
|
-
type:
|
|
583
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
584
584
|
isOptional: true;
|
|
585
585
|
};
|
|
586
586
|
}>, {
|
|
587
587
|
name: string;
|
|
588
588
|
version: number;
|
|
589
589
|
when: string;
|
|
590
|
-
payload:
|
|
590
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
591
591
|
id: {
|
|
592
|
-
type:
|
|
592
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
593
593
|
isOptional: false;
|
|
594
594
|
};
|
|
595
595
|
integrationId: {
|
|
596
|
-
type:
|
|
596
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
597
597
|
isOptional: false;
|
|
598
598
|
};
|
|
599
599
|
name: {
|
|
600
|
-
type:
|
|
600
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
601
601
|
isOptional: false;
|
|
602
602
|
};
|
|
603
603
|
status: {
|
|
604
|
-
type:
|
|
604
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
605
605
|
isOptional: false;
|
|
606
606
|
};
|
|
607
607
|
authType: {
|
|
608
|
-
type:
|
|
608
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
609
609
|
isOptional: false;
|
|
610
610
|
};
|
|
611
611
|
externalAccountName: {
|
|
612
|
-
type:
|
|
612
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
613
613
|
isOptional: true;
|
|
614
614
|
};
|
|
615
615
|
connectedAt: {
|
|
616
|
-
type:
|
|
616
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
617
617
|
isOptional: true;
|
|
618
618
|
};
|
|
619
619
|
lastHealthCheck: {
|
|
620
|
-
type:
|
|
620
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
621
621
|
isOptional: true;
|
|
622
622
|
};
|
|
623
623
|
healthStatus: {
|
|
624
|
-
type:
|
|
624
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
625
625
|
isOptional: true;
|
|
626
626
|
};
|
|
627
627
|
}>;
|
|
628
628
|
}[]>;
|
|
629
|
-
declare const CreateSyncConfigContract:
|
|
629
|
+
declare const CreateSyncConfigContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
630
630
|
integrationId: {
|
|
631
|
-
type:
|
|
631
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
632
632
|
isOptional: false;
|
|
633
633
|
};
|
|
634
634
|
connectionId: {
|
|
635
|
-
type:
|
|
635
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
636
636
|
isOptional: false;
|
|
637
637
|
};
|
|
638
638
|
name: {
|
|
639
|
-
type:
|
|
639
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
640
640
|
isOptional: false;
|
|
641
641
|
};
|
|
642
642
|
direction: {
|
|
643
|
-
type:
|
|
643
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
644
644
|
isOptional: false;
|
|
645
645
|
};
|
|
646
646
|
sourceObject: {
|
|
647
|
-
type:
|
|
647
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
648
648
|
isOptional: false;
|
|
649
649
|
};
|
|
650
650
|
targetObject: {
|
|
651
|
-
type:
|
|
651
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
652
652
|
isOptional: false;
|
|
653
653
|
};
|
|
654
654
|
scheduleEnabled: {
|
|
655
|
-
type:
|
|
655
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
656
656
|
isOptional: true;
|
|
657
657
|
};
|
|
658
658
|
scheduleCron: {
|
|
659
|
-
type:
|
|
659
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
660
660
|
isOptional: true;
|
|
661
661
|
};
|
|
662
|
-
}>,
|
|
662
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
663
663
|
id: {
|
|
664
|
-
type:
|
|
664
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
665
665
|
isOptional: false;
|
|
666
666
|
};
|
|
667
667
|
integrationId: {
|
|
668
|
-
type:
|
|
668
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
669
669
|
isOptional: false;
|
|
670
670
|
};
|
|
671
671
|
connectionId: {
|
|
672
|
-
type:
|
|
672
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
673
673
|
isOptional: false;
|
|
674
674
|
};
|
|
675
675
|
name: {
|
|
676
|
-
type:
|
|
676
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
677
677
|
isOptional: false;
|
|
678
678
|
};
|
|
679
679
|
direction: {
|
|
680
|
-
type:
|
|
680
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
681
681
|
isOptional: false;
|
|
682
682
|
};
|
|
683
683
|
sourceObject: {
|
|
684
|
-
type:
|
|
684
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
685
685
|
isOptional: false;
|
|
686
686
|
};
|
|
687
687
|
targetObject: {
|
|
688
|
-
type:
|
|
688
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
689
689
|
isOptional: false;
|
|
690
690
|
};
|
|
691
691
|
scheduleEnabled: {
|
|
692
|
-
type:
|
|
692
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
693
693
|
isOptional: false;
|
|
694
694
|
};
|
|
695
695
|
scheduleCron: {
|
|
696
|
-
type:
|
|
696
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
697
697
|
isOptional: true;
|
|
698
698
|
};
|
|
699
699
|
isActive: {
|
|
700
|
-
type:
|
|
700
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
701
701
|
isOptional: false;
|
|
702
702
|
};
|
|
703
703
|
lastSyncAt: {
|
|
704
|
-
type:
|
|
704
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
705
705
|
isOptional: true;
|
|
706
706
|
};
|
|
707
707
|
fieldMappings: {
|
|
708
|
-
type:
|
|
708
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
709
709
|
id: {
|
|
710
|
-
type:
|
|
710
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
711
711
|
isOptional: false;
|
|
712
712
|
};
|
|
713
713
|
sourceField: {
|
|
714
|
-
type:
|
|
714
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
715
715
|
isOptional: false;
|
|
716
716
|
};
|
|
717
717
|
targetField: {
|
|
718
|
-
type:
|
|
718
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
719
719
|
isOptional: false;
|
|
720
720
|
};
|
|
721
721
|
mappingType: {
|
|
722
|
-
type:
|
|
722
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
723
723
|
isOptional: false;
|
|
724
724
|
};
|
|
725
725
|
transformExpression: {
|
|
726
|
-
type:
|
|
726
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
727
727
|
isOptional: true;
|
|
728
728
|
};
|
|
729
729
|
isRequired: {
|
|
730
|
-
type:
|
|
730
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
731
731
|
isOptional: false;
|
|
732
732
|
};
|
|
733
733
|
}>;
|
|
@@ -738,75 +738,75 @@ declare const CreateSyncConfigContract: _lssm_lib_contracts15.ContractSpec<_lssm
|
|
|
738
738
|
name: string;
|
|
739
739
|
version: number;
|
|
740
740
|
when: string;
|
|
741
|
-
payload:
|
|
741
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
742
742
|
id: {
|
|
743
|
-
type:
|
|
743
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
744
744
|
isOptional: false;
|
|
745
745
|
};
|
|
746
746
|
integrationId: {
|
|
747
|
-
type:
|
|
747
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
748
748
|
isOptional: false;
|
|
749
749
|
};
|
|
750
750
|
connectionId: {
|
|
751
|
-
type:
|
|
751
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
752
752
|
isOptional: false;
|
|
753
753
|
};
|
|
754
754
|
name: {
|
|
755
|
-
type:
|
|
755
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
756
756
|
isOptional: false;
|
|
757
757
|
};
|
|
758
758
|
direction: {
|
|
759
|
-
type:
|
|
759
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
760
760
|
isOptional: false;
|
|
761
761
|
};
|
|
762
762
|
sourceObject: {
|
|
763
|
-
type:
|
|
763
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
764
764
|
isOptional: false;
|
|
765
765
|
};
|
|
766
766
|
targetObject: {
|
|
767
|
-
type:
|
|
767
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
768
768
|
isOptional: false;
|
|
769
769
|
};
|
|
770
770
|
scheduleEnabled: {
|
|
771
|
-
type:
|
|
771
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
772
772
|
isOptional: false;
|
|
773
773
|
};
|
|
774
774
|
scheduleCron: {
|
|
775
|
-
type:
|
|
775
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
776
776
|
isOptional: true;
|
|
777
777
|
};
|
|
778
778
|
isActive: {
|
|
779
|
-
type:
|
|
779
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
780
780
|
isOptional: false;
|
|
781
781
|
};
|
|
782
782
|
lastSyncAt: {
|
|
783
|
-
type:
|
|
783
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
784
784
|
isOptional: true;
|
|
785
785
|
};
|
|
786
786
|
fieldMappings: {
|
|
787
|
-
type:
|
|
787
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
788
788
|
id: {
|
|
789
|
-
type:
|
|
789
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
790
790
|
isOptional: false;
|
|
791
791
|
};
|
|
792
792
|
sourceField: {
|
|
793
|
-
type:
|
|
793
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
794
794
|
isOptional: false;
|
|
795
795
|
};
|
|
796
796
|
targetField: {
|
|
797
|
-
type:
|
|
797
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
798
798
|
isOptional: false;
|
|
799
799
|
};
|
|
800
800
|
mappingType: {
|
|
801
|
-
type:
|
|
801
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
802
802
|
isOptional: false;
|
|
803
803
|
};
|
|
804
804
|
transformExpression: {
|
|
805
|
-
type:
|
|
805
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
806
806
|
isOptional: true;
|
|
807
807
|
};
|
|
808
808
|
isRequired: {
|
|
809
|
-
type:
|
|
809
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
810
810
|
isOptional: false;
|
|
811
811
|
};
|
|
812
812
|
}>;
|
|
@@ -815,296 +815,296 @@ declare const CreateSyncConfigContract: _lssm_lib_contracts15.ContractSpec<_lssm
|
|
|
815
815
|
};
|
|
816
816
|
}>;
|
|
817
817
|
}[]>;
|
|
818
|
-
declare const AddFieldMappingContract:
|
|
818
|
+
declare const AddFieldMappingContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
819
819
|
syncConfigId: {
|
|
820
|
-
type:
|
|
820
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
821
821
|
isOptional: false;
|
|
822
822
|
};
|
|
823
823
|
sourceField: {
|
|
824
|
-
type:
|
|
824
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
825
825
|
isOptional: false;
|
|
826
826
|
};
|
|
827
827
|
targetField: {
|
|
828
|
-
type:
|
|
828
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
829
829
|
isOptional: false;
|
|
830
830
|
};
|
|
831
831
|
mappingType: {
|
|
832
|
-
type:
|
|
832
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
833
833
|
isOptional: false;
|
|
834
834
|
};
|
|
835
835
|
transformExpression: {
|
|
836
|
-
type:
|
|
836
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
837
837
|
isOptional: true;
|
|
838
838
|
};
|
|
839
839
|
lookupConfig: {
|
|
840
|
-
type:
|
|
840
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
841
841
|
isOptional: true;
|
|
842
842
|
};
|
|
843
843
|
constantValue: {
|
|
844
|
-
type:
|
|
844
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
845
845
|
isOptional: true;
|
|
846
846
|
};
|
|
847
847
|
isRequired: {
|
|
848
|
-
type:
|
|
848
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
849
849
|
isOptional: true;
|
|
850
850
|
};
|
|
851
851
|
defaultValue: {
|
|
852
|
-
type:
|
|
852
|
+
type: _lssm_lib_schema0.FieldType<unknown, unknown>;
|
|
853
853
|
isOptional: true;
|
|
854
854
|
};
|
|
855
|
-
}>,
|
|
855
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
856
856
|
id: {
|
|
857
|
-
type:
|
|
857
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
858
858
|
isOptional: false;
|
|
859
859
|
};
|
|
860
860
|
sourceField: {
|
|
861
|
-
type:
|
|
861
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
862
862
|
isOptional: false;
|
|
863
863
|
};
|
|
864
864
|
targetField: {
|
|
865
|
-
type:
|
|
865
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
866
866
|
isOptional: false;
|
|
867
867
|
};
|
|
868
868
|
mappingType: {
|
|
869
|
-
type:
|
|
869
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
870
870
|
isOptional: false;
|
|
871
871
|
};
|
|
872
872
|
transformExpression: {
|
|
873
|
-
type:
|
|
873
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
874
874
|
isOptional: true;
|
|
875
875
|
};
|
|
876
876
|
isRequired: {
|
|
877
|
-
type:
|
|
877
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
878
878
|
isOptional: false;
|
|
879
879
|
};
|
|
880
880
|
}>, {
|
|
881
881
|
name: string;
|
|
882
882
|
version: number;
|
|
883
883
|
when: string;
|
|
884
|
-
payload:
|
|
884
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
885
885
|
id: {
|
|
886
|
-
type:
|
|
886
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
887
887
|
isOptional: false;
|
|
888
888
|
};
|
|
889
889
|
sourceField: {
|
|
890
|
-
type:
|
|
890
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
891
891
|
isOptional: false;
|
|
892
892
|
};
|
|
893
893
|
targetField: {
|
|
894
|
-
type:
|
|
894
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
895
895
|
isOptional: false;
|
|
896
896
|
};
|
|
897
897
|
mappingType: {
|
|
898
|
-
type:
|
|
898
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
899
899
|
isOptional: false;
|
|
900
900
|
};
|
|
901
901
|
transformExpression: {
|
|
902
|
-
type:
|
|
902
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
903
903
|
isOptional: true;
|
|
904
904
|
};
|
|
905
905
|
isRequired: {
|
|
906
|
-
type:
|
|
906
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
907
907
|
isOptional: false;
|
|
908
908
|
};
|
|
909
909
|
}>;
|
|
910
910
|
}[]>;
|
|
911
|
-
declare const TriggerSyncContract:
|
|
911
|
+
declare const TriggerSyncContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
912
912
|
syncConfigId: {
|
|
913
|
-
type:
|
|
913
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
914
914
|
isOptional: false;
|
|
915
915
|
};
|
|
916
916
|
direction: {
|
|
917
|
-
type:
|
|
917
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
918
918
|
isOptional: true;
|
|
919
919
|
};
|
|
920
920
|
fullSync: {
|
|
921
|
-
type:
|
|
921
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
922
922
|
isOptional: true;
|
|
923
923
|
};
|
|
924
|
-
}>,
|
|
924
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
925
925
|
id: {
|
|
926
|
-
type:
|
|
926
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
927
927
|
isOptional: false;
|
|
928
928
|
};
|
|
929
929
|
syncConfigId: {
|
|
930
|
-
type:
|
|
930
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
931
931
|
isOptional: false;
|
|
932
932
|
};
|
|
933
933
|
status: {
|
|
934
|
-
type:
|
|
934
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
935
935
|
isOptional: false;
|
|
936
936
|
};
|
|
937
937
|
direction: {
|
|
938
|
-
type:
|
|
938
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
939
939
|
isOptional: false;
|
|
940
940
|
};
|
|
941
941
|
trigger: {
|
|
942
|
-
type:
|
|
942
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
943
943
|
isOptional: false;
|
|
944
944
|
};
|
|
945
945
|
recordsProcessed: {
|
|
946
|
-
type:
|
|
946
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
947
947
|
isOptional: false;
|
|
948
948
|
};
|
|
949
949
|
recordsCreated: {
|
|
950
|
-
type:
|
|
950
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
951
951
|
isOptional: false;
|
|
952
952
|
};
|
|
953
953
|
recordsUpdated: {
|
|
954
|
-
type:
|
|
954
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
955
955
|
isOptional: false;
|
|
956
956
|
};
|
|
957
957
|
recordsFailed: {
|
|
958
|
-
type:
|
|
958
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
959
959
|
isOptional: false;
|
|
960
960
|
};
|
|
961
961
|
errorMessage: {
|
|
962
|
-
type:
|
|
962
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
963
963
|
isOptional: true;
|
|
964
964
|
};
|
|
965
965
|
startedAt: {
|
|
966
|
-
type:
|
|
966
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
967
967
|
isOptional: true;
|
|
968
968
|
};
|
|
969
969
|
completedAt: {
|
|
970
|
-
type:
|
|
970
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
971
971
|
isOptional: true;
|
|
972
972
|
};
|
|
973
973
|
createdAt: {
|
|
974
|
-
type:
|
|
974
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
975
975
|
isOptional: false;
|
|
976
976
|
};
|
|
977
977
|
}>, {
|
|
978
978
|
name: string;
|
|
979
979
|
version: number;
|
|
980
980
|
when: string;
|
|
981
|
-
payload:
|
|
981
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
982
982
|
id: {
|
|
983
|
-
type:
|
|
983
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
984
984
|
isOptional: false;
|
|
985
985
|
};
|
|
986
986
|
syncConfigId: {
|
|
987
|
-
type:
|
|
987
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
988
988
|
isOptional: false;
|
|
989
989
|
};
|
|
990
990
|
status: {
|
|
991
|
-
type:
|
|
991
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
992
992
|
isOptional: false;
|
|
993
993
|
};
|
|
994
994
|
direction: {
|
|
995
|
-
type:
|
|
995
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
996
996
|
isOptional: false;
|
|
997
997
|
};
|
|
998
998
|
trigger: {
|
|
999
|
-
type:
|
|
999
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1000
1000
|
isOptional: false;
|
|
1001
1001
|
};
|
|
1002
1002
|
recordsProcessed: {
|
|
1003
|
-
type:
|
|
1003
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1004
1004
|
isOptional: false;
|
|
1005
1005
|
};
|
|
1006
1006
|
recordsCreated: {
|
|
1007
|
-
type:
|
|
1007
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1008
1008
|
isOptional: false;
|
|
1009
1009
|
};
|
|
1010
1010
|
recordsUpdated: {
|
|
1011
|
-
type:
|
|
1011
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1012
1012
|
isOptional: false;
|
|
1013
1013
|
};
|
|
1014
1014
|
recordsFailed: {
|
|
1015
|
-
type:
|
|
1015
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1016
1016
|
isOptional: false;
|
|
1017
1017
|
};
|
|
1018
1018
|
errorMessage: {
|
|
1019
|
-
type:
|
|
1019
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1020
1020
|
isOptional: true;
|
|
1021
1021
|
};
|
|
1022
1022
|
startedAt: {
|
|
1023
|
-
type:
|
|
1023
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1024
1024
|
isOptional: true;
|
|
1025
1025
|
};
|
|
1026
1026
|
completedAt: {
|
|
1027
|
-
type:
|
|
1027
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1028
1028
|
isOptional: true;
|
|
1029
1029
|
};
|
|
1030
1030
|
createdAt: {
|
|
1031
|
-
type:
|
|
1031
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1032
1032
|
isOptional: false;
|
|
1033
1033
|
};
|
|
1034
1034
|
}>;
|
|
1035
1035
|
}[]>;
|
|
1036
|
-
declare const ListSyncRunsContract:
|
|
1036
|
+
declare const ListSyncRunsContract: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
1037
1037
|
syncConfigId: {
|
|
1038
|
-
type:
|
|
1038
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1039
1039
|
isOptional: false;
|
|
1040
1040
|
};
|
|
1041
1041
|
status: {
|
|
1042
|
-
type:
|
|
1042
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
1043
1043
|
isOptional: true;
|
|
1044
1044
|
};
|
|
1045
1045
|
limit: {
|
|
1046
|
-
type:
|
|
1046
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1047
1047
|
isOptional: true;
|
|
1048
1048
|
defaultValue: number;
|
|
1049
1049
|
};
|
|
1050
1050
|
offset: {
|
|
1051
|
-
type:
|
|
1051
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1052
1052
|
isOptional: true;
|
|
1053
1053
|
defaultValue: number;
|
|
1054
1054
|
};
|
|
1055
|
-
}>,
|
|
1055
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
1056
1056
|
runs: {
|
|
1057
|
-
type:
|
|
1057
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
1058
1058
|
id: {
|
|
1059
|
-
type:
|
|
1059
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1060
1060
|
isOptional: false;
|
|
1061
1061
|
};
|
|
1062
1062
|
syncConfigId: {
|
|
1063
|
-
type:
|
|
1063
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1064
1064
|
isOptional: false;
|
|
1065
1065
|
};
|
|
1066
1066
|
status: {
|
|
1067
|
-
type:
|
|
1067
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string]>;
|
|
1068
1068
|
isOptional: false;
|
|
1069
1069
|
};
|
|
1070
1070
|
direction: {
|
|
1071
|
-
type:
|
|
1071
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
1072
1072
|
isOptional: false;
|
|
1073
1073
|
};
|
|
1074
1074
|
trigger: {
|
|
1075
|
-
type:
|
|
1075
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1076
1076
|
isOptional: false;
|
|
1077
1077
|
};
|
|
1078
1078
|
recordsProcessed: {
|
|
1079
|
-
type:
|
|
1079
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1080
1080
|
isOptional: false;
|
|
1081
1081
|
};
|
|
1082
1082
|
recordsCreated: {
|
|
1083
|
-
type:
|
|
1083
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1084
1084
|
isOptional: false;
|
|
1085
1085
|
};
|
|
1086
1086
|
recordsUpdated: {
|
|
1087
|
-
type:
|
|
1087
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1088
1088
|
isOptional: false;
|
|
1089
1089
|
};
|
|
1090
1090
|
recordsFailed: {
|
|
1091
|
-
type:
|
|
1091
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1092
1092
|
isOptional: false;
|
|
1093
1093
|
};
|
|
1094
1094
|
errorMessage: {
|
|
1095
|
-
type:
|
|
1095
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
1096
1096
|
isOptional: true;
|
|
1097
1097
|
};
|
|
1098
1098
|
startedAt: {
|
|
1099
|
-
type:
|
|
1099
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1100
1100
|
isOptional: true;
|
|
1101
1101
|
};
|
|
1102
1102
|
completedAt: {
|
|
1103
|
-
type:
|
|
1103
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1104
1104
|
isOptional: true;
|
|
1105
1105
|
};
|
|
1106
1106
|
createdAt: {
|
|
1107
|
-
type:
|
|
1107
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
1108
1108
|
isOptional: false;
|
|
1109
1109
|
};
|
|
1110
1110
|
}>;
|
|
@@ -1112,7 +1112,7 @@ declare const ListSyncRunsContract: _lssm_lib_contracts15.ContractSpec<_lssm_lib
|
|
|
1112
1112
|
isOptional: false;
|
|
1113
1113
|
};
|
|
1114
1114
|
total: {
|
|
1115
|
-
type:
|
|
1115
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
1116
1116
|
isOptional: false;
|
|
1117
1117
|
};
|
|
1118
1118
|
}>, undefined>;
|