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