@lssm/lib.contracts 0.0.0-canary-20251220021406 → 0.0.0-canary-20251220041653
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/package.json +5 -5
|
@@ -1,47 +1,47 @@
|
|
|
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_schema352 from "@lssm/lib.schema";
|
|
5
5
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
6
6
|
|
|
7
7
|
//#region src/knowledge/contracts.d.ts
|
|
8
8
|
declare const CreateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
9
9
|
tenantId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
spaceKey: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
spaceVersion: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
label: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
sourceType: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
config: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema352.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
syncSchedule: {
|
|
34
34
|
type: SchemaModel<{
|
|
35
35
|
enabled: {
|
|
36
|
-
type:
|
|
36
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
37
37
|
isOptional: false;
|
|
38
38
|
};
|
|
39
39
|
cron: {
|
|
40
|
-
type:
|
|
40
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
41
41
|
isOptional: true;
|
|
42
42
|
};
|
|
43
43
|
intervalMs: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
45
45
|
isOptional: true;
|
|
46
46
|
};
|
|
47
47
|
}>;
|
|
@@ -49,92 +49,92 @@ declare const CreateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
|
49
49
|
};
|
|
50
50
|
}>, SchemaModel<{
|
|
51
51
|
id: {
|
|
52
|
-
type:
|
|
52
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
53
53
|
isOptional: false;
|
|
54
54
|
};
|
|
55
55
|
tenantId: {
|
|
56
|
-
type:
|
|
56
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
57
57
|
isOptional: false;
|
|
58
58
|
};
|
|
59
59
|
spaceKey: {
|
|
60
|
-
type:
|
|
60
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
61
61
|
isOptional: false;
|
|
62
62
|
};
|
|
63
63
|
spaceVersion: {
|
|
64
|
-
type:
|
|
64
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
65
65
|
isOptional: false;
|
|
66
66
|
};
|
|
67
67
|
label: {
|
|
68
|
-
type:
|
|
68
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
69
69
|
isOptional: false;
|
|
70
70
|
};
|
|
71
71
|
sourceType: {
|
|
72
|
-
type:
|
|
72
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
syncSchedule: {
|
|
76
76
|
type: SchemaModel<{
|
|
77
77
|
enabled: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
cron: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
83
83
|
isOptional: true;
|
|
84
84
|
};
|
|
85
85
|
intervalMs: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
87
87
|
isOptional: true;
|
|
88
88
|
};
|
|
89
89
|
}>;
|
|
90
90
|
isOptional: true;
|
|
91
91
|
};
|
|
92
92
|
lastSyncStatus: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
94
94
|
isOptional: true;
|
|
95
95
|
};
|
|
96
96
|
lastSyncAt: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
itemsProcessed: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
createdAt: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
106
106
|
isOptional: true;
|
|
107
107
|
};
|
|
108
108
|
updatedAt: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
110
110
|
isOptional: true;
|
|
111
111
|
};
|
|
112
112
|
}>, undefined>;
|
|
113
113
|
declare const UpdateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
114
114
|
sourceId: {
|
|
115
|
-
type:
|
|
115
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
label: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
120
120
|
isOptional: true;
|
|
121
121
|
};
|
|
122
122
|
config: {
|
|
123
|
-
type:
|
|
123
|
+
type: _lssm_lib_schema352.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
124
124
|
isOptional: true;
|
|
125
125
|
};
|
|
126
126
|
syncSchedule: {
|
|
127
127
|
type: SchemaModel<{
|
|
128
128
|
enabled: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
130
130
|
isOptional: false;
|
|
131
131
|
};
|
|
132
132
|
cron: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
134
134
|
isOptional: true;
|
|
135
135
|
};
|
|
136
136
|
intervalMs: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
138
138
|
isOptional: true;
|
|
139
139
|
};
|
|
140
140
|
}>;
|
|
@@ -142,149 +142,149 @@ declare const UpdateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
|
142
142
|
};
|
|
143
143
|
}>, SchemaModel<{
|
|
144
144
|
id: {
|
|
145
|
-
type:
|
|
145
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
146
146
|
isOptional: false;
|
|
147
147
|
};
|
|
148
148
|
tenantId: {
|
|
149
|
-
type:
|
|
149
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
150
150
|
isOptional: false;
|
|
151
151
|
};
|
|
152
152
|
spaceKey: {
|
|
153
|
-
type:
|
|
153
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
154
154
|
isOptional: false;
|
|
155
155
|
};
|
|
156
156
|
spaceVersion: {
|
|
157
|
-
type:
|
|
157
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
158
158
|
isOptional: false;
|
|
159
159
|
};
|
|
160
160
|
label: {
|
|
161
|
-
type:
|
|
161
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
162
162
|
isOptional: false;
|
|
163
163
|
};
|
|
164
164
|
sourceType: {
|
|
165
|
-
type:
|
|
165
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
166
166
|
isOptional: false;
|
|
167
167
|
};
|
|
168
168
|
syncSchedule: {
|
|
169
169
|
type: SchemaModel<{
|
|
170
170
|
enabled: {
|
|
171
|
-
type:
|
|
171
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
172
172
|
isOptional: false;
|
|
173
173
|
};
|
|
174
174
|
cron: {
|
|
175
|
-
type:
|
|
175
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
176
176
|
isOptional: true;
|
|
177
177
|
};
|
|
178
178
|
intervalMs: {
|
|
179
|
-
type:
|
|
179
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
180
180
|
isOptional: true;
|
|
181
181
|
};
|
|
182
182
|
}>;
|
|
183
183
|
isOptional: true;
|
|
184
184
|
};
|
|
185
185
|
lastSyncStatus: {
|
|
186
|
-
type:
|
|
186
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
187
187
|
isOptional: true;
|
|
188
188
|
};
|
|
189
189
|
lastSyncAt: {
|
|
190
|
-
type:
|
|
190
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
191
191
|
isOptional: true;
|
|
192
192
|
};
|
|
193
193
|
itemsProcessed: {
|
|
194
|
-
type:
|
|
194
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
195
195
|
isOptional: true;
|
|
196
196
|
};
|
|
197
197
|
createdAt: {
|
|
198
|
-
type:
|
|
198
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
199
199
|
isOptional: true;
|
|
200
200
|
};
|
|
201
201
|
updatedAt: {
|
|
202
|
-
type:
|
|
202
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
203
203
|
isOptional: true;
|
|
204
204
|
};
|
|
205
205
|
}>, undefined>;
|
|
206
206
|
declare const DeleteKnowledgeSource: ContractSpec<SchemaModel<{
|
|
207
207
|
sourceId: {
|
|
208
|
-
type:
|
|
208
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
209
209
|
isOptional: false;
|
|
210
210
|
};
|
|
211
211
|
}>, SchemaModel<{
|
|
212
212
|
success: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
214
214
|
isOptional: false;
|
|
215
215
|
};
|
|
216
216
|
}>, undefined>;
|
|
217
217
|
declare const ListKnowledgeSources: ContractSpec<SchemaModel<{
|
|
218
218
|
tenantId: {
|
|
219
|
-
type:
|
|
219
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
220
220
|
isOptional: false;
|
|
221
221
|
};
|
|
222
222
|
spaceKey: {
|
|
223
|
-
type:
|
|
223
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
224
224
|
isOptional: true;
|
|
225
225
|
};
|
|
226
226
|
}>, SchemaModel<{
|
|
227
227
|
sources: {
|
|
228
228
|
type: SchemaModel<{
|
|
229
229
|
id: {
|
|
230
|
-
type:
|
|
230
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
231
231
|
isOptional: false;
|
|
232
232
|
};
|
|
233
233
|
tenantId: {
|
|
234
|
-
type:
|
|
234
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
spaceKey: {
|
|
238
|
-
type:
|
|
238
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
239
239
|
isOptional: false;
|
|
240
240
|
};
|
|
241
241
|
spaceVersion: {
|
|
242
|
-
type:
|
|
242
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
243
243
|
isOptional: false;
|
|
244
244
|
};
|
|
245
245
|
label: {
|
|
246
|
-
type:
|
|
246
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
247
247
|
isOptional: false;
|
|
248
248
|
};
|
|
249
249
|
sourceType: {
|
|
250
|
-
type:
|
|
250
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
251
251
|
isOptional: false;
|
|
252
252
|
};
|
|
253
253
|
syncSchedule: {
|
|
254
254
|
type: SchemaModel<{
|
|
255
255
|
enabled: {
|
|
256
|
-
type:
|
|
256
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
257
257
|
isOptional: false;
|
|
258
258
|
};
|
|
259
259
|
cron: {
|
|
260
|
-
type:
|
|
260
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
261
261
|
isOptional: true;
|
|
262
262
|
};
|
|
263
263
|
intervalMs: {
|
|
264
|
-
type:
|
|
264
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
265
265
|
isOptional: true;
|
|
266
266
|
};
|
|
267
267
|
}>;
|
|
268
268
|
isOptional: true;
|
|
269
269
|
};
|
|
270
270
|
lastSyncStatus: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
272
272
|
isOptional: true;
|
|
273
273
|
};
|
|
274
274
|
lastSyncAt: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
276
276
|
isOptional: true;
|
|
277
277
|
};
|
|
278
278
|
itemsProcessed: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
280
280
|
isOptional: true;
|
|
281
281
|
};
|
|
282
282
|
createdAt: {
|
|
283
|
-
type:
|
|
283
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
284
284
|
isOptional: true;
|
|
285
285
|
};
|
|
286
286
|
updatedAt: {
|
|
287
|
-
type:
|
|
287
|
+
type: _lssm_lib_schema352.FieldType<Date, string>;
|
|
288
288
|
isOptional: true;
|
|
289
289
|
};
|
|
290
290
|
}>;
|
|
@@ -294,20 +294,20 @@ declare const ListKnowledgeSources: ContractSpec<SchemaModel<{
|
|
|
294
294
|
}>, undefined>;
|
|
295
295
|
declare const TriggerKnowledgeSourceSync: ContractSpec<SchemaModel<{
|
|
296
296
|
sourceId: {
|
|
297
|
-
type:
|
|
297
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
298
298
|
isOptional: false;
|
|
299
299
|
};
|
|
300
300
|
}>, SchemaModel<{
|
|
301
301
|
success: {
|
|
302
|
-
type:
|
|
302
|
+
type: _lssm_lib_schema352.FieldType<boolean, boolean>;
|
|
303
303
|
isOptional: false;
|
|
304
304
|
};
|
|
305
305
|
itemsProcessed: {
|
|
306
|
-
type:
|
|
306
|
+
type: _lssm_lib_schema352.FieldType<number, number>;
|
|
307
307
|
isOptional: true;
|
|
308
308
|
};
|
|
309
309
|
error: {
|
|
310
|
-
type:
|
|
310
|
+
type: _lssm_lib_schema352.FieldType<string, string>;
|
|
311
311
|
isOptional: true;
|
|
312
312
|
};
|
|
313
313
|
}>, undefined>;
|
|
@@ -1,135 +1,135 @@
|
|
|
1
1
|
import { ContractSpec } from "./spec.js";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _lssm_lib_schema7 from "@lssm/lib.schema";
|
|
3
3
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
4
4
|
|
|
5
5
|
//#region src/onboarding-base.d.ts
|
|
6
6
|
/** Save/update onboarding draft (auto-save during flow) */
|
|
7
7
|
declare const SaveOnboardingDraftInput: SchemaModel<{
|
|
8
8
|
data: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
}>;
|
|
13
13
|
declare const SaveOnboardingDraftOutput: SchemaModel<{
|
|
14
14
|
id: {
|
|
15
|
-
type:
|
|
15
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
16
16
|
isOptional: false;
|
|
17
17
|
};
|
|
18
18
|
organizationId: {
|
|
19
|
-
type:
|
|
19
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
}>;
|
|
23
23
|
declare const SaveOnboardingDraftBaseSpec: ContractSpec<SchemaModel<{
|
|
24
24
|
data: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
}>, SchemaModel<{
|
|
29
29
|
id: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
organizationId: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
}>, undefined>;
|
|
38
38
|
/** Get current onboarding draft (on mount/restore) */
|
|
39
39
|
declare const GetOnboardingDraftOutput: SchemaModel<{
|
|
40
40
|
id: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
42
42
|
isOptional: true;
|
|
43
43
|
};
|
|
44
44
|
organizationId: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
46
46
|
isOptional: true;
|
|
47
47
|
};
|
|
48
48
|
data: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
50
50
|
isOptional: true;
|
|
51
51
|
};
|
|
52
52
|
createdAt: {
|
|
53
|
-
type:
|
|
53
|
+
type: _lssm_lib_schema7.FieldType<Date, string>;
|
|
54
54
|
isOptional: true;
|
|
55
55
|
};
|
|
56
56
|
updatedAt: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema7.FieldType<Date, string>;
|
|
58
58
|
isOptional: true;
|
|
59
59
|
};
|
|
60
60
|
}>;
|
|
61
|
-
declare const GetOnboardingDraftBaseSpec: ContractSpec<
|
|
61
|
+
declare const GetOnboardingDraftBaseSpec: ContractSpec<_lssm_lib_schema7.AnySchemaModel, SchemaModel<{
|
|
62
62
|
id: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
organizationId: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
68
68
|
isOptional: true;
|
|
69
69
|
};
|
|
70
70
|
data: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
72
72
|
isOptional: true;
|
|
73
73
|
};
|
|
74
74
|
createdAt: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema7.FieldType<Date, string>;
|
|
76
76
|
isOptional: true;
|
|
77
77
|
};
|
|
78
78
|
updatedAt: {
|
|
79
|
-
type:
|
|
79
|
+
type: _lssm_lib_schema7.FieldType<Date, string>;
|
|
80
80
|
isOptional: true;
|
|
81
81
|
};
|
|
82
82
|
}>, undefined>;
|
|
83
83
|
/** Delete onboarding draft (cleanup after completion or cancel) */
|
|
84
84
|
declare const DeleteOnboardingDraftOutput: SchemaModel<{
|
|
85
85
|
ok: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema7.FieldType<boolean, boolean>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
}>;
|
|
90
|
-
declare const DeleteOnboardingDraftBaseSpec: ContractSpec<
|
|
90
|
+
declare const DeleteOnboardingDraftBaseSpec: ContractSpec<_lssm_lib_schema7.AnySchemaModel, SchemaModel<{
|
|
91
91
|
ok: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema7.FieldType<boolean, boolean>;
|
|
93
93
|
isOptional: false;
|
|
94
94
|
};
|
|
95
95
|
}>, undefined>;
|
|
96
96
|
/** Complete onboarding (final submit, creates entities) */
|
|
97
97
|
declare const CompleteOnboardingBaseInput: SchemaModel<{
|
|
98
98
|
data: {
|
|
99
|
-
type:
|
|
99
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
100
100
|
isOptional: false;
|
|
101
101
|
};
|
|
102
102
|
}>;
|
|
103
103
|
declare const CompleteOnboardingBaseOutput: SchemaModel<{
|
|
104
104
|
success: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema7.FieldType<boolean, boolean>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
userId: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
110
110
|
isOptional: true;
|
|
111
111
|
};
|
|
112
112
|
organizationId: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
114
114
|
isOptional: true;
|
|
115
115
|
};
|
|
116
116
|
}>;
|
|
117
117
|
declare const CompleteOnboardingBaseSpec: ContractSpec<SchemaModel<{
|
|
118
118
|
data: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema7.FieldType<unknown, unknown>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
}>, SchemaModel<{
|
|
123
123
|
success: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema7.FieldType<boolean, boolean>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
userId: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
organizationId: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema7.FieldType<string, string>;
|
|
133
133
|
isOptional: true;
|
|
134
134
|
};
|
|
135
135
|
}>, undefined>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/lib.contracts",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251220041653",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
|
|
6
6
|
"publish:pkg:canary": "bun publish:pkg --tag canary",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"test": "bun run"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
20
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
19
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251220041653",
|
|
20
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251220041653",
|
|
21
21
|
"@types/express": "^5.0.3",
|
|
22
22
|
"@types/turndown": "^5.0.6",
|
|
23
23
|
"tsdown": "^0.18.1",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"@elevenlabs/elevenlabs-js": "^2.27.0",
|
|
36
36
|
"@google-cloud/secret-manager": "^6.1.1",
|
|
37
37
|
"@google-cloud/storage": "^7.18.0",
|
|
38
|
-
"@lssm/lib.logger": "0.0.0-canary-
|
|
39
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
38
|
+
"@lssm/lib.logger": "0.0.0-canary-20251220041653",
|
|
39
|
+
"@lssm/lib.schema": "0.0.0-canary-20251220041653",
|
|
40
40
|
"@mistralai/mistralai": "^1.11.0",
|
|
41
41
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
42
42
|
"@qdrant/js-client-rest": "^1.16.2",
|