@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,124 +1,124 @@
|
|
|
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_schema343 from "@lssm/lib.schema";
|
|
5
5
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
6
6
|
|
|
7
7
|
//#region src/integrations/openbanking/contracts/accounts.d.ts
|
|
8
8
|
declare const OpenBankingListAccounts: ContractSpec<SchemaModel<{
|
|
9
9
|
tenantId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
userId: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
connectionId: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
19
19
|
isOptional: true;
|
|
20
20
|
};
|
|
21
21
|
includeBalances: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
institutionId: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
27
27
|
isOptional: true;
|
|
28
28
|
};
|
|
29
29
|
cursor: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
33
|
pageSize: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
35
35
|
isOptional: true;
|
|
36
36
|
};
|
|
37
37
|
}>, SchemaModel<{
|
|
38
38
|
accounts: {
|
|
39
39
|
type: SchemaModel<{
|
|
40
40
|
id: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
tenantId: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
userId: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
connectionId: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
54
54
|
isOptional: false;
|
|
55
55
|
};
|
|
56
56
|
externalId: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
58
58
|
isOptional: false;
|
|
59
59
|
};
|
|
60
60
|
institutionId: {
|
|
61
|
-
type:
|
|
61
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
62
62
|
isOptional: false;
|
|
63
63
|
};
|
|
64
64
|
institutionName: {
|
|
65
|
-
type:
|
|
65
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
66
66
|
isOptional: false;
|
|
67
67
|
};
|
|
68
68
|
institutionLogoUrl: {
|
|
69
|
-
type:
|
|
69
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
70
70
|
isOptional: true;
|
|
71
71
|
};
|
|
72
72
|
iban: {
|
|
73
|
-
type:
|
|
73
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
74
74
|
isOptional: true;
|
|
75
75
|
};
|
|
76
76
|
bic: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
78
78
|
isOptional: true;
|
|
79
79
|
};
|
|
80
80
|
accountType: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
currency: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
displayName: {
|
|
89
|
-
type:
|
|
89
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
accountNumberMasked: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
productCode: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
balance: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
availableBalance: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
106
106
|
isOptional: true;
|
|
107
107
|
};
|
|
108
108
|
lastSyncedAt: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
createdAt: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
updatedAt: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
metadata: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema343.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
122
122
|
isOptional: true;
|
|
123
123
|
};
|
|
124
124
|
}>;
|
|
@@ -126,159 +126,159 @@ declare const OpenBankingListAccounts: ContractSpec<SchemaModel<{
|
|
|
126
126
|
isArray: true;
|
|
127
127
|
};
|
|
128
128
|
nextCursor: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
130
130
|
isOptional: true;
|
|
131
131
|
};
|
|
132
132
|
hasMore: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
134
134
|
isOptional: true;
|
|
135
135
|
};
|
|
136
136
|
}>, undefined>;
|
|
137
137
|
declare const OpenBankingGetAccount: ContractSpec<SchemaModel<{
|
|
138
138
|
tenantId: {
|
|
139
|
-
type:
|
|
139
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
140
140
|
isOptional: false;
|
|
141
141
|
};
|
|
142
142
|
accountId: {
|
|
143
|
-
type:
|
|
143
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
144
144
|
isOptional: false;
|
|
145
145
|
};
|
|
146
146
|
includeBalances: {
|
|
147
|
-
type:
|
|
147
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
148
148
|
isOptional: true;
|
|
149
149
|
};
|
|
150
150
|
includeLatestTransactions: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
152
152
|
isOptional: true;
|
|
153
153
|
};
|
|
154
154
|
}>, SchemaModel<{
|
|
155
155
|
id: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
tenantId: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
userId: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
165
165
|
isOptional: false;
|
|
166
166
|
};
|
|
167
167
|
connectionId: {
|
|
168
|
-
type:
|
|
168
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
169
169
|
isOptional: false;
|
|
170
170
|
};
|
|
171
171
|
externalId: {
|
|
172
|
-
type:
|
|
172
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
173
173
|
isOptional: false;
|
|
174
174
|
};
|
|
175
175
|
institutionId: {
|
|
176
|
-
type:
|
|
176
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
177
177
|
isOptional: false;
|
|
178
178
|
};
|
|
179
179
|
institutionName: {
|
|
180
|
-
type:
|
|
180
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
181
181
|
isOptional: false;
|
|
182
182
|
};
|
|
183
183
|
institutionLogoUrl: {
|
|
184
|
-
type:
|
|
184
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
185
185
|
isOptional: true;
|
|
186
186
|
};
|
|
187
187
|
iban: {
|
|
188
|
-
type:
|
|
188
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
189
189
|
isOptional: true;
|
|
190
190
|
};
|
|
191
191
|
bic: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
193
193
|
isOptional: true;
|
|
194
194
|
};
|
|
195
195
|
accountType: {
|
|
196
|
-
type:
|
|
196
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
197
197
|
isOptional: false;
|
|
198
198
|
};
|
|
199
199
|
currency: {
|
|
200
|
-
type:
|
|
200
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
201
201
|
isOptional: false;
|
|
202
202
|
};
|
|
203
203
|
displayName: {
|
|
204
|
-
type:
|
|
204
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
205
205
|
isOptional: false;
|
|
206
206
|
};
|
|
207
207
|
accountNumberMasked: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
209
209
|
isOptional: true;
|
|
210
210
|
};
|
|
211
211
|
productCode: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
213
213
|
isOptional: true;
|
|
214
214
|
};
|
|
215
215
|
balance: {
|
|
216
|
-
type:
|
|
216
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
217
217
|
isOptional: true;
|
|
218
218
|
};
|
|
219
219
|
availableBalance: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
221
221
|
isOptional: true;
|
|
222
222
|
};
|
|
223
223
|
lastSyncedAt: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
225
225
|
isOptional: false;
|
|
226
226
|
};
|
|
227
227
|
createdAt: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
updatedAt: {
|
|
232
|
-
type:
|
|
232
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
233
233
|
isOptional: false;
|
|
234
234
|
};
|
|
235
235
|
metadata: {
|
|
236
|
-
type:
|
|
236
|
+
type: _lssm_lib_schema343.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
237
237
|
isOptional: true;
|
|
238
238
|
};
|
|
239
239
|
}>, undefined>;
|
|
240
240
|
declare const OpenBankingSyncAccounts: ContractSpec<SchemaModel<{
|
|
241
241
|
tenantId: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
243
243
|
isOptional: false;
|
|
244
244
|
};
|
|
245
245
|
userId: {
|
|
246
|
-
type:
|
|
246
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
247
247
|
isOptional: true;
|
|
248
248
|
};
|
|
249
249
|
connectionId: {
|
|
250
|
-
type:
|
|
250
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
251
251
|
isOptional: false;
|
|
252
252
|
};
|
|
253
253
|
accountIds: {
|
|
254
|
-
type:
|
|
254
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
255
255
|
isArray: true;
|
|
256
256
|
isOptional: true;
|
|
257
257
|
};
|
|
258
258
|
forceFullRefresh: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
260
260
|
isOptional: true;
|
|
261
261
|
};
|
|
262
262
|
triggerWorkflows: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema343.FieldType<boolean, boolean>;
|
|
264
264
|
isOptional: true;
|
|
265
265
|
};
|
|
266
266
|
}>, SchemaModel<{
|
|
267
267
|
synced: {
|
|
268
|
-
type:
|
|
268
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
269
269
|
isOptional: false;
|
|
270
270
|
};
|
|
271
271
|
failed: {
|
|
272
|
-
type:
|
|
272
|
+
type: _lssm_lib_schema343.FieldType<number, number>;
|
|
273
273
|
isOptional: false;
|
|
274
274
|
};
|
|
275
275
|
errors: {
|
|
276
|
-
type:
|
|
276
|
+
type: _lssm_lib_schema343.FieldType<string, string>;
|
|
277
277
|
isArray: true;
|
|
278
278
|
isOptional: true;
|
|
279
279
|
};
|
|
280
280
|
nextSyncSuggestedAt: {
|
|
281
|
-
type:
|
|
281
|
+
type: _lssm_lib_schema343.FieldType<Date, string>;
|
|
282
282
|
isOptional: true;
|
|
283
283
|
};
|
|
284
284
|
}>, undefined>;
|
|
@@ -1,21 +1,21 @@
|
|
|
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_schema263 from "@lssm/lib.schema";
|
|
5
5
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
6
6
|
|
|
7
7
|
//#region src/integrations/openbanking/contracts/balances.d.ts
|
|
8
8
|
declare const OpenBankingGetBalances: ContractSpec<SchemaModel<{
|
|
9
9
|
tenantId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
accountId: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
balanceTypes: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
19
19
|
isArray: true;
|
|
20
20
|
isOptional: true;
|
|
21
21
|
};
|
|
@@ -23,47 +23,47 @@ declare const OpenBankingGetBalances: ContractSpec<SchemaModel<{
|
|
|
23
23
|
balances: {
|
|
24
24
|
type: SchemaModel<{
|
|
25
25
|
id: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
accountId: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
tenantId: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
connectionId: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
balanceType: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
currentBalance: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema263.FieldType<number, number>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
availableBalance: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema263.FieldType<number, number>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
currency: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
55
55
|
isOptional: false;
|
|
56
56
|
};
|
|
57
57
|
lastUpdatedAt: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
};
|
|
61
61
|
createdAt: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
63
63
|
isOptional: false;
|
|
64
64
|
};
|
|
65
65
|
metadata: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema263.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
67
67
|
isOptional: true;
|
|
68
68
|
};
|
|
69
69
|
}>;
|
|
@@ -71,77 +71,77 @@ declare const OpenBankingGetBalances: ContractSpec<SchemaModel<{
|
|
|
71
71
|
isArray: true;
|
|
72
72
|
};
|
|
73
73
|
asOf: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
};
|
|
77
77
|
}>, undefined>;
|
|
78
78
|
declare const OpenBankingRefreshBalances: ContractSpec<SchemaModel<{
|
|
79
79
|
tenantId: {
|
|
80
|
-
type:
|
|
80
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
81
81
|
isOptional: false;
|
|
82
82
|
};
|
|
83
83
|
accountId: {
|
|
84
|
-
type:
|
|
84
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
85
85
|
isOptional: false;
|
|
86
86
|
};
|
|
87
87
|
connectionId: {
|
|
88
|
-
type:
|
|
88
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
89
89
|
isOptional: true;
|
|
90
90
|
};
|
|
91
91
|
balanceTypes: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
93
93
|
isArray: true;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
forceRefresh: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema263.FieldType<boolean, boolean>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
}>, SchemaModel<{
|
|
101
101
|
balances: {
|
|
102
102
|
type: SchemaModel<{
|
|
103
103
|
id: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
105
105
|
isOptional: false;
|
|
106
106
|
};
|
|
107
107
|
accountId: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
109
109
|
isOptional: false;
|
|
110
110
|
};
|
|
111
111
|
tenantId: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
113
113
|
isOptional: false;
|
|
114
114
|
};
|
|
115
115
|
connectionId: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
balanceType: {
|
|
120
|
-
type:
|
|
120
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
121
121
|
isOptional: false;
|
|
122
122
|
};
|
|
123
123
|
currentBalance: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema263.FieldType<number, number>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
availableBalance: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema263.FieldType<number, number>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
currency: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
133
133
|
isOptional: false;
|
|
134
134
|
};
|
|
135
135
|
lastUpdatedAt: {
|
|
136
|
-
type:
|
|
136
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
137
137
|
isOptional: false;
|
|
138
138
|
};
|
|
139
139
|
createdAt: {
|
|
140
|
-
type:
|
|
140
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
141
141
|
isOptional: false;
|
|
142
142
|
};
|
|
143
143
|
metadata: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema263.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
145
145
|
isOptional: true;
|
|
146
146
|
};
|
|
147
147
|
}>;
|
|
@@ -149,11 +149,11 @@ declare const OpenBankingRefreshBalances: ContractSpec<SchemaModel<{
|
|
|
149
149
|
isArray: true;
|
|
150
150
|
};
|
|
151
151
|
refreshedAt: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema263.FieldType<Date, string>;
|
|
153
153
|
isOptional: false;
|
|
154
154
|
};
|
|
155
155
|
errors: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema263.FieldType<string, string>;
|
|
157
157
|
isArray: true;
|
|
158
158
|
isOptional: true;
|
|
159
159
|
};
|