@lssm/lib.contracts 0.0.0-canary-20251217062139 → 0.0.0-canary-20251217062943
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/app-config/contracts.d.ts +50 -50
- package/dist/app-config/events.d.ts +27 -27
- package/dist/app-config/lifecycle-contracts.d.ts +80 -80
- package/dist/integrations/contracts.d.ts +102 -102
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/integrations/openbanking/models.d.ts +55 -55
- package/dist/jsonschema.d.ts +3 -3
- package/dist/knowledge/contracts.d.ts +66 -66
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/presentations.d.ts +3 -3
- package/package.json +4 -4
|
@@ -1,400 +1,400 @@
|
|
|
1
1
|
import { ContractSpec } from "../spec.js";
|
|
2
2
|
import { SpecRegistry } from "../registry.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema244 from "@lssm/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/integrations/contracts.d.ts
|
|
7
7
|
declare const CreateIntegrationConnection: ContractSpec<SchemaModel<{
|
|
8
8
|
tenantId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
integrationKey: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
integrationVersion: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
label: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
ownershipMode: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
externalAccountId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
secretProvider: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
34
34
|
isOptional: false;
|
|
35
35
|
};
|
|
36
36
|
secretRef: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
38
38
|
isOptional: false;
|
|
39
39
|
};
|
|
40
40
|
environment: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
42
42
|
isOptional: true;
|
|
43
43
|
};
|
|
44
44
|
config: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema244.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
}>, SchemaModel<{
|
|
49
49
|
id: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
51
51
|
isOptional: false;
|
|
52
52
|
};
|
|
53
53
|
tenantId: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
55
55
|
isOptional: false;
|
|
56
56
|
};
|
|
57
57
|
integrationKey: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
};
|
|
61
61
|
integrationVersion: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
63
63
|
isOptional: false;
|
|
64
64
|
};
|
|
65
65
|
label: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
ownershipMode: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
71
71
|
isOptional: false;
|
|
72
72
|
};
|
|
73
73
|
externalAccountId: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
};
|
|
77
77
|
secretProvider: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
secretRef: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
83
83
|
isOptional: false;
|
|
84
84
|
};
|
|
85
85
|
status: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
environment: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
91
91
|
isOptional: true;
|
|
92
92
|
};
|
|
93
93
|
healthStatus: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
95
95
|
isOptional: true;
|
|
96
96
|
};
|
|
97
97
|
healthCheckedAt: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
99
99
|
isOptional: true;
|
|
100
100
|
};
|
|
101
101
|
healthLatencyMs: {
|
|
102
|
-
type:
|
|
102
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
103
103
|
isOptional: true;
|
|
104
104
|
};
|
|
105
105
|
healthErrorCode: {
|
|
106
|
-
type:
|
|
106
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
107
107
|
isOptional: true;
|
|
108
108
|
};
|
|
109
109
|
healthErrorMessage: {
|
|
110
|
-
type:
|
|
110
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
111
111
|
isOptional: true;
|
|
112
112
|
};
|
|
113
113
|
usageRequestCount: {
|
|
114
|
-
type:
|
|
114
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
115
115
|
isOptional: true;
|
|
116
116
|
};
|
|
117
117
|
usageSuccessCount: {
|
|
118
|
-
type:
|
|
118
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
119
119
|
isOptional: true;
|
|
120
120
|
};
|
|
121
121
|
usageErrorCount: {
|
|
122
|
-
type:
|
|
122
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
123
123
|
isOptional: true;
|
|
124
124
|
};
|
|
125
125
|
usageLastUsedAt: {
|
|
126
|
-
type:
|
|
126
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
127
127
|
isOptional: true;
|
|
128
128
|
};
|
|
129
129
|
usageLastErrorAt: {
|
|
130
|
-
type:
|
|
130
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
131
131
|
isOptional: true;
|
|
132
132
|
};
|
|
133
133
|
usageLastErrorCode: {
|
|
134
|
-
type:
|
|
134
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
135
135
|
isOptional: true;
|
|
136
136
|
};
|
|
137
137
|
createdAt: {
|
|
138
|
-
type:
|
|
138
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
139
139
|
isOptional: true;
|
|
140
140
|
};
|
|
141
141
|
updatedAt: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
143
143
|
isOptional: true;
|
|
144
144
|
};
|
|
145
145
|
}>, undefined>;
|
|
146
146
|
declare const UpdateIntegrationConnection: ContractSpec<SchemaModel<{
|
|
147
147
|
connectionId: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
label: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
153
153
|
isOptional: true;
|
|
154
154
|
};
|
|
155
155
|
status: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
157
157
|
isOptional: true;
|
|
158
158
|
};
|
|
159
159
|
ownershipMode: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
161
161
|
isOptional: true;
|
|
162
162
|
};
|
|
163
163
|
externalAccountId: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
165
165
|
isOptional: true;
|
|
166
166
|
};
|
|
167
167
|
secretProvider: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
169
169
|
isOptional: true;
|
|
170
170
|
};
|
|
171
171
|
secretRef: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
173
173
|
isOptional: true;
|
|
174
174
|
};
|
|
175
175
|
config: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema244.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
177
177
|
isOptional: true;
|
|
178
178
|
};
|
|
179
179
|
}>, SchemaModel<{
|
|
180
180
|
id: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
182
182
|
isOptional: false;
|
|
183
183
|
};
|
|
184
184
|
tenantId: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
186
186
|
isOptional: false;
|
|
187
187
|
};
|
|
188
188
|
integrationKey: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
190
190
|
isOptional: false;
|
|
191
191
|
};
|
|
192
192
|
integrationVersion: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
194
194
|
isOptional: false;
|
|
195
195
|
};
|
|
196
196
|
label: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
};
|
|
200
200
|
ownershipMode: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
externalAccountId: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
206
206
|
isOptional: true;
|
|
207
207
|
};
|
|
208
208
|
secretProvider: {
|
|
209
|
-
type:
|
|
209
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
210
210
|
isOptional: false;
|
|
211
211
|
};
|
|
212
212
|
secretRef: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
214
214
|
isOptional: false;
|
|
215
215
|
};
|
|
216
216
|
status: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
218
218
|
isOptional: false;
|
|
219
219
|
};
|
|
220
220
|
environment: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
222
222
|
isOptional: true;
|
|
223
223
|
};
|
|
224
224
|
healthStatus: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
226
226
|
isOptional: true;
|
|
227
227
|
};
|
|
228
228
|
healthCheckedAt: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
230
230
|
isOptional: true;
|
|
231
231
|
};
|
|
232
232
|
healthLatencyMs: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
234
234
|
isOptional: true;
|
|
235
235
|
};
|
|
236
236
|
healthErrorCode: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
238
238
|
isOptional: true;
|
|
239
239
|
};
|
|
240
240
|
healthErrorMessage: {
|
|
241
|
-
type:
|
|
241
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
242
242
|
isOptional: true;
|
|
243
243
|
};
|
|
244
244
|
usageRequestCount: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
246
246
|
isOptional: true;
|
|
247
247
|
};
|
|
248
248
|
usageSuccessCount: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
250
250
|
isOptional: true;
|
|
251
251
|
};
|
|
252
252
|
usageErrorCount: {
|
|
253
|
-
type:
|
|
253
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
254
254
|
isOptional: true;
|
|
255
255
|
};
|
|
256
256
|
usageLastUsedAt: {
|
|
257
|
-
type:
|
|
257
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
258
258
|
isOptional: true;
|
|
259
259
|
};
|
|
260
260
|
usageLastErrorAt: {
|
|
261
|
-
type:
|
|
261
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
262
262
|
isOptional: true;
|
|
263
263
|
};
|
|
264
264
|
usageLastErrorCode: {
|
|
265
|
-
type:
|
|
265
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
266
266
|
isOptional: true;
|
|
267
267
|
};
|
|
268
268
|
createdAt: {
|
|
269
|
-
type:
|
|
269
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
270
270
|
isOptional: true;
|
|
271
271
|
};
|
|
272
272
|
updatedAt: {
|
|
273
|
-
type:
|
|
273
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
274
274
|
isOptional: true;
|
|
275
275
|
};
|
|
276
276
|
}>, undefined>;
|
|
277
277
|
declare const DeleteIntegrationConnection: ContractSpec<SchemaModel<{
|
|
278
278
|
connectionId: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
}>, SchemaModel<{
|
|
283
283
|
success: {
|
|
284
|
-
type:
|
|
284
|
+
type: _lssm_lib_schema244.FieldType<boolean, boolean>;
|
|
285
285
|
isOptional: false;
|
|
286
286
|
};
|
|
287
287
|
}>, undefined>;
|
|
288
288
|
declare const ListIntegrationConnections: ContractSpec<SchemaModel<{
|
|
289
289
|
tenantId: {
|
|
290
|
-
type:
|
|
290
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
291
291
|
isOptional: false;
|
|
292
292
|
};
|
|
293
293
|
category: {
|
|
294
|
-
type:
|
|
294
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
295
295
|
isOptional: true;
|
|
296
296
|
};
|
|
297
297
|
status: {
|
|
298
|
-
type:
|
|
298
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
299
299
|
isOptional: true;
|
|
300
300
|
};
|
|
301
301
|
}>, SchemaModel<{
|
|
302
302
|
connections: {
|
|
303
303
|
type: SchemaModel<{
|
|
304
304
|
id: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
306
306
|
isOptional: false;
|
|
307
307
|
};
|
|
308
308
|
tenantId: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
310
310
|
isOptional: false;
|
|
311
311
|
};
|
|
312
312
|
integrationKey: {
|
|
313
|
-
type:
|
|
313
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
314
314
|
isOptional: false;
|
|
315
315
|
};
|
|
316
316
|
integrationVersion: {
|
|
317
|
-
type:
|
|
317
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
318
318
|
isOptional: false;
|
|
319
319
|
};
|
|
320
320
|
label: {
|
|
321
|
-
type:
|
|
321
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
322
322
|
isOptional: false;
|
|
323
323
|
};
|
|
324
324
|
ownershipMode: {
|
|
325
|
-
type:
|
|
325
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
326
326
|
isOptional: false;
|
|
327
327
|
};
|
|
328
328
|
externalAccountId: {
|
|
329
|
-
type:
|
|
329
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
330
330
|
isOptional: true;
|
|
331
331
|
};
|
|
332
332
|
secretProvider: {
|
|
333
|
-
type:
|
|
333
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
334
334
|
isOptional: false;
|
|
335
335
|
};
|
|
336
336
|
secretRef: {
|
|
337
|
-
type:
|
|
337
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
338
338
|
isOptional: false;
|
|
339
339
|
};
|
|
340
340
|
status: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
342
342
|
isOptional: false;
|
|
343
343
|
};
|
|
344
344
|
environment: {
|
|
345
|
-
type:
|
|
345
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
346
346
|
isOptional: true;
|
|
347
347
|
};
|
|
348
348
|
healthStatus: {
|
|
349
|
-
type:
|
|
349
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
350
350
|
isOptional: true;
|
|
351
351
|
};
|
|
352
352
|
healthCheckedAt: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
354
354
|
isOptional: true;
|
|
355
355
|
};
|
|
356
356
|
healthLatencyMs: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
358
358
|
isOptional: true;
|
|
359
359
|
};
|
|
360
360
|
healthErrorCode: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
362
362
|
isOptional: true;
|
|
363
363
|
};
|
|
364
364
|
healthErrorMessage: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
366
366
|
isOptional: true;
|
|
367
367
|
};
|
|
368
368
|
usageRequestCount: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
370
370
|
isOptional: true;
|
|
371
371
|
};
|
|
372
372
|
usageSuccessCount: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
374
374
|
isOptional: true;
|
|
375
375
|
};
|
|
376
376
|
usageErrorCount: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
378
378
|
isOptional: true;
|
|
379
379
|
};
|
|
380
380
|
usageLastUsedAt: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
382
382
|
isOptional: true;
|
|
383
383
|
};
|
|
384
384
|
usageLastErrorAt: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
386
386
|
isOptional: true;
|
|
387
387
|
};
|
|
388
388
|
usageLastErrorCode: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
390
390
|
isOptional: true;
|
|
391
391
|
};
|
|
392
392
|
createdAt: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
394
394
|
isOptional: true;
|
|
395
395
|
};
|
|
396
396
|
updatedAt: {
|
|
397
|
-
type:
|
|
397
|
+
type: _lssm_lib_schema244.FieldType<Date, string>;
|
|
398
398
|
isOptional: true;
|
|
399
399
|
};
|
|
400
400
|
}>;
|
|
@@ -404,28 +404,28 @@ declare const ListIntegrationConnections: ContractSpec<SchemaModel<{
|
|
|
404
404
|
}>, undefined>;
|
|
405
405
|
declare const TestIntegrationConnection: ContractSpec<SchemaModel<{
|
|
406
406
|
connectionId: {
|
|
407
|
-
type:
|
|
407
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
408
408
|
isOptional: false;
|
|
409
409
|
};
|
|
410
410
|
}>, SchemaModel<{
|
|
411
411
|
success: {
|
|
412
|
-
type:
|
|
412
|
+
type: _lssm_lib_schema244.FieldType<boolean, boolean>;
|
|
413
413
|
isOptional: false;
|
|
414
414
|
};
|
|
415
415
|
status: {
|
|
416
|
-
type:
|
|
416
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
417
417
|
isOptional: true;
|
|
418
418
|
};
|
|
419
419
|
latencyMs: {
|
|
420
|
-
type:
|
|
420
|
+
type: _lssm_lib_schema244.FieldType<number, number>;
|
|
421
421
|
isOptional: true;
|
|
422
422
|
};
|
|
423
423
|
error: {
|
|
424
|
-
type:
|
|
424
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
425
425
|
isOptional: true;
|
|
426
426
|
};
|
|
427
427
|
errorCode: {
|
|
428
|
-
type:
|
|
428
|
+
type: _lssm_lib_schema244.FieldType<string, string>;
|
|
429
429
|
isOptional: true;
|
|
430
430
|
};
|
|
431
431
|
}>, undefined>;
|