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