@lssm/lib.contracts 0.0.0-canary-20251120170226 → 0.0.0-canary-20251120192244
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/data-views/query-generator.js.map +1 -1
- package/dist/data-views/runtime.js.map +1 -1
- package/dist/integrations/contracts.d.ts +102 -102
- package/dist/integrations/contracts.d.ts.map +1 -1
- package/dist/integrations/openbanking/contracts/accounts.d.ts +66 -66
- package/dist/integrations/openbanking/contracts/accounts.d.ts.map +1 -1
- package/dist/integrations/openbanking/contracts/balances.d.ts +34 -34
- package/dist/integrations/openbanking/contracts/transactions.d.ts +48 -48
- package/dist/knowledge/contracts.d.ts +66 -66
- package/dist/onboarding-base.d.ts +29 -29
- package/dist/workflow/sla-monitor.js.map +1 -1
- package/dist/workflow/spec.d.ts.map +1 -1
- package/package.json +4 -4
|
@@ -1,139 +1,139 @@
|
|
|
1
1
|
import { ContractSpec } from "../../../spec.js";
|
|
2
2
|
import { SpecRegistry } from "../../../registry.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema151 from "@lssm/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/integrations/openbanking/contracts/transactions.d.ts
|
|
7
7
|
declare const OpenBankingListTransactions: ContractSpec<SchemaModel<{
|
|
8
8
|
tenantId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
accountId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
from: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
to: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
cursor: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
pageSize: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
direction: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
34
34
|
isOptional: true;
|
|
35
35
|
};
|
|
36
36
|
minimumAmount: {
|
|
37
|
-
type:
|
|
37
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
38
38
|
isOptional: true;
|
|
39
39
|
};
|
|
40
40
|
maximumAmount: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
42
42
|
isOptional: true;
|
|
43
43
|
};
|
|
44
44
|
category: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
46
46
|
isOptional: true;
|
|
47
47
|
};
|
|
48
48
|
}>, SchemaModel<{
|
|
49
49
|
transactions: {
|
|
50
50
|
type: SchemaModel<{
|
|
51
51
|
id: {
|
|
52
|
-
type:
|
|
52
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
53
53
|
isOptional: false;
|
|
54
54
|
};
|
|
55
55
|
accountId: {
|
|
56
|
-
type:
|
|
56
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
57
57
|
isOptional: false;
|
|
58
58
|
};
|
|
59
59
|
tenantId: {
|
|
60
|
-
type:
|
|
60
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
61
61
|
isOptional: false;
|
|
62
62
|
};
|
|
63
63
|
connectionId: {
|
|
64
|
-
type:
|
|
64
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
65
65
|
isOptional: false;
|
|
66
66
|
};
|
|
67
67
|
externalId: {
|
|
68
|
-
type:
|
|
68
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
69
69
|
isOptional: false;
|
|
70
70
|
};
|
|
71
71
|
amount: {
|
|
72
|
-
type:
|
|
72
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
currency: {
|
|
76
|
-
type:
|
|
76
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
77
77
|
isOptional: false;
|
|
78
78
|
};
|
|
79
79
|
date: {
|
|
80
|
-
type:
|
|
80
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
81
81
|
isOptional: false;
|
|
82
82
|
};
|
|
83
83
|
bookingDate: {
|
|
84
|
-
type:
|
|
84
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
85
85
|
isOptional: true;
|
|
86
86
|
};
|
|
87
87
|
valueDate: {
|
|
88
|
-
type:
|
|
88
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
89
89
|
isOptional: true;
|
|
90
90
|
};
|
|
91
91
|
description: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
93
93
|
isOptional: true;
|
|
94
94
|
};
|
|
95
95
|
counterpartyName: {
|
|
96
|
-
type:
|
|
96
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
97
97
|
isOptional: true;
|
|
98
98
|
};
|
|
99
99
|
counterpartyAccount: {
|
|
100
|
-
type:
|
|
100
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
101
101
|
isOptional: true;
|
|
102
102
|
};
|
|
103
103
|
merchantCategoryCode: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
105
105
|
isOptional: true;
|
|
106
106
|
};
|
|
107
107
|
rawCategory: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
109
109
|
isOptional: true;
|
|
110
110
|
};
|
|
111
111
|
standardizedCategory: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
113
113
|
isOptional: true;
|
|
114
114
|
};
|
|
115
115
|
transactionType: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
status: {
|
|
120
|
-
type:
|
|
120
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
121
121
|
isOptional: false;
|
|
122
122
|
};
|
|
123
123
|
runningBalance: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
125
125
|
isOptional: true;
|
|
126
126
|
};
|
|
127
127
|
metadata: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema151.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
createdAt: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
133
133
|
isOptional: false;
|
|
134
134
|
};
|
|
135
135
|
updatedAt: {
|
|
136
|
-
type:
|
|
136
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
137
137
|
isOptional: false;
|
|
138
138
|
};
|
|
139
139
|
}>;
|
|
@@ -141,66 +141,66 @@ declare const OpenBankingListTransactions: ContractSpec<SchemaModel<{
|
|
|
141
141
|
isArray: true;
|
|
142
142
|
};
|
|
143
143
|
nextCursor: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
145
145
|
isOptional: true;
|
|
146
146
|
};
|
|
147
147
|
hasMore: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema151.FieldType<boolean, boolean>;
|
|
149
149
|
isOptional: true;
|
|
150
150
|
};
|
|
151
151
|
}>, undefined>;
|
|
152
152
|
declare const OpenBankingSyncTransactions: ContractSpec<SchemaModel<{
|
|
153
153
|
tenantId: {
|
|
154
|
-
type:
|
|
154
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
155
155
|
isOptional: false;
|
|
156
156
|
};
|
|
157
157
|
accountId: {
|
|
158
|
-
type:
|
|
158
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
159
159
|
isOptional: false;
|
|
160
160
|
};
|
|
161
161
|
from: {
|
|
162
|
-
type:
|
|
162
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
163
163
|
isOptional: true;
|
|
164
164
|
};
|
|
165
165
|
to: {
|
|
166
|
-
type:
|
|
166
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
167
167
|
isOptional: true;
|
|
168
168
|
};
|
|
169
169
|
connectionId: {
|
|
170
|
-
type:
|
|
170
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
171
171
|
isOptional: true;
|
|
172
172
|
};
|
|
173
173
|
includePending: {
|
|
174
|
-
type:
|
|
174
|
+
type: _lssm_lib_schema151.FieldType<boolean, boolean>;
|
|
175
175
|
isOptional: true;
|
|
176
176
|
};
|
|
177
177
|
backfillDays: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
179
179
|
isOptional: true;
|
|
180
180
|
};
|
|
181
181
|
}>, SchemaModel<{
|
|
182
182
|
synced: {
|
|
183
|
-
type:
|
|
183
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
184
184
|
isOptional: false;
|
|
185
185
|
};
|
|
186
186
|
failed: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema151.FieldType<number, number>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
};
|
|
190
190
|
earliestSyncedAt: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
192
192
|
isOptional: true;
|
|
193
193
|
};
|
|
194
194
|
latestSyncedAt: {
|
|
195
|
-
type:
|
|
195
|
+
type: _lssm_lib_schema151.FieldType<Date, string>;
|
|
196
196
|
isOptional: true;
|
|
197
197
|
};
|
|
198
198
|
nextSinceToken: {
|
|
199
|
-
type:
|
|
199
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
};
|
|
202
202
|
errors: {
|
|
203
|
-
type:
|
|
203
|
+
type: _lssm_lib_schema151.FieldType<string, string>;
|
|
204
204
|
isArray: true;
|
|
205
205
|
isOptional: true;
|
|
206
206
|
};
|
|
@@ -1,46 +1,46 @@
|
|
|
1
1
|
import { ContractSpec } from "../spec.js";
|
|
2
2
|
import { SpecRegistry } from "../registry.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema481 from "@lssm/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/knowledge/contracts.d.ts
|
|
7
7
|
declare const CreateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
8
8
|
tenantId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
spaceKey: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
spaceVersion: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
label: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
sourceType: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
config: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema481.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
syncSchedule: {
|
|
33
33
|
type: SchemaModel<{
|
|
34
34
|
enabled: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
cron: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
40
40
|
isOptional: true;
|
|
41
41
|
};
|
|
42
42
|
intervalMs: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
44
44
|
isOptional: true;
|
|
45
45
|
};
|
|
46
46
|
}>;
|
|
@@ -48,92 +48,92 @@ declare const CreateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
|
48
48
|
};
|
|
49
49
|
}>, SchemaModel<{
|
|
50
50
|
id: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
tenantId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
spaceKey: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
spaceVersion: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
label: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
sourceType: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
syncSchedule: {
|
|
75
75
|
type: SchemaModel<{
|
|
76
76
|
enabled: {
|
|
77
|
-
type:
|
|
77
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
78
78
|
isOptional: false;
|
|
79
79
|
};
|
|
80
80
|
cron: {
|
|
81
|
-
type:
|
|
81
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
82
82
|
isOptional: true;
|
|
83
83
|
};
|
|
84
84
|
intervalMs: {
|
|
85
|
-
type:
|
|
85
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
86
86
|
isOptional: true;
|
|
87
87
|
};
|
|
88
88
|
}>;
|
|
89
89
|
isOptional: true;
|
|
90
90
|
};
|
|
91
91
|
lastSyncStatus: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
93
93
|
isOptional: true;
|
|
94
94
|
};
|
|
95
95
|
lastSyncAt: {
|
|
96
|
-
type:
|
|
96
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
97
97
|
isOptional: true;
|
|
98
98
|
};
|
|
99
99
|
itemsProcessed: {
|
|
100
|
-
type:
|
|
100
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
101
101
|
isOptional: true;
|
|
102
102
|
};
|
|
103
103
|
createdAt: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
105
105
|
isOptional: true;
|
|
106
106
|
};
|
|
107
107
|
updatedAt: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
109
109
|
isOptional: true;
|
|
110
110
|
};
|
|
111
111
|
}>, undefined>;
|
|
112
112
|
declare const UpdateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
113
113
|
sourceId: {
|
|
114
|
-
type:
|
|
114
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
115
115
|
isOptional: false;
|
|
116
116
|
};
|
|
117
117
|
label: {
|
|
118
|
-
type:
|
|
118
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
119
119
|
isOptional: true;
|
|
120
120
|
};
|
|
121
121
|
config: {
|
|
122
|
-
type:
|
|
122
|
+
type: _lssm_lib_schema481.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
123
123
|
isOptional: true;
|
|
124
124
|
};
|
|
125
125
|
syncSchedule: {
|
|
126
126
|
type: SchemaModel<{
|
|
127
127
|
enabled: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
129
129
|
isOptional: false;
|
|
130
130
|
};
|
|
131
131
|
cron: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
133
133
|
isOptional: true;
|
|
134
134
|
};
|
|
135
135
|
intervalMs: {
|
|
136
|
-
type:
|
|
136
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
137
137
|
isOptional: true;
|
|
138
138
|
};
|
|
139
139
|
}>;
|
|
@@ -141,149 +141,149 @@ declare const UpdateKnowledgeSource: ContractSpec<SchemaModel<{
|
|
|
141
141
|
};
|
|
142
142
|
}>, SchemaModel<{
|
|
143
143
|
id: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
145
145
|
isOptional: false;
|
|
146
146
|
};
|
|
147
147
|
tenantId: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
spaceKey: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
153
153
|
isOptional: false;
|
|
154
154
|
};
|
|
155
155
|
spaceVersion: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
157
157
|
isOptional: false;
|
|
158
158
|
};
|
|
159
159
|
label: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
sourceType: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
165
165
|
isOptional: false;
|
|
166
166
|
};
|
|
167
167
|
syncSchedule: {
|
|
168
168
|
type: SchemaModel<{
|
|
169
169
|
enabled: {
|
|
170
|
-
type:
|
|
170
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
171
171
|
isOptional: false;
|
|
172
172
|
};
|
|
173
173
|
cron: {
|
|
174
|
-
type:
|
|
174
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
175
175
|
isOptional: true;
|
|
176
176
|
};
|
|
177
177
|
intervalMs: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
179
179
|
isOptional: true;
|
|
180
180
|
};
|
|
181
181
|
}>;
|
|
182
182
|
isOptional: true;
|
|
183
183
|
};
|
|
184
184
|
lastSyncStatus: {
|
|
185
|
-
type:
|
|
185
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
186
186
|
isOptional: true;
|
|
187
187
|
};
|
|
188
188
|
lastSyncAt: {
|
|
189
|
-
type:
|
|
189
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
190
190
|
isOptional: true;
|
|
191
191
|
};
|
|
192
192
|
itemsProcessed: {
|
|
193
|
-
type:
|
|
193
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
194
194
|
isOptional: true;
|
|
195
195
|
};
|
|
196
196
|
createdAt: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
198
198
|
isOptional: true;
|
|
199
199
|
};
|
|
200
200
|
updatedAt: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
202
202
|
isOptional: true;
|
|
203
203
|
};
|
|
204
204
|
}>, undefined>;
|
|
205
205
|
declare const DeleteKnowledgeSource: ContractSpec<SchemaModel<{
|
|
206
206
|
sourceId: {
|
|
207
|
-
type:
|
|
207
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
208
208
|
isOptional: false;
|
|
209
209
|
};
|
|
210
210
|
}>, SchemaModel<{
|
|
211
211
|
success: {
|
|
212
|
-
type:
|
|
212
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
213
213
|
isOptional: false;
|
|
214
214
|
};
|
|
215
215
|
}>, undefined>;
|
|
216
216
|
declare const ListKnowledgeSources: ContractSpec<SchemaModel<{
|
|
217
217
|
tenantId: {
|
|
218
|
-
type:
|
|
218
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
219
219
|
isOptional: false;
|
|
220
220
|
};
|
|
221
221
|
spaceKey: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
223
223
|
isOptional: true;
|
|
224
224
|
};
|
|
225
225
|
}>, SchemaModel<{
|
|
226
226
|
sources: {
|
|
227
227
|
type: SchemaModel<{
|
|
228
228
|
id: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
230
230
|
isOptional: false;
|
|
231
231
|
};
|
|
232
232
|
tenantId: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
234
234
|
isOptional: false;
|
|
235
235
|
};
|
|
236
236
|
spaceKey: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
238
238
|
isOptional: false;
|
|
239
239
|
};
|
|
240
240
|
spaceVersion: {
|
|
241
|
-
type:
|
|
241
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
242
242
|
isOptional: false;
|
|
243
243
|
};
|
|
244
244
|
label: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
246
246
|
isOptional: false;
|
|
247
247
|
};
|
|
248
248
|
sourceType: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
250
250
|
isOptional: false;
|
|
251
251
|
};
|
|
252
252
|
syncSchedule: {
|
|
253
253
|
type: SchemaModel<{
|
|
254
254
|
enabled: {
|
|
255
|
-
type:
|
|
255
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
256
256
|
isOptional: false;
|
|
257
257
|
};
|
|
258
258
|
cron: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
260
260
|
isOptional: true;
|
|
261
261
|
};
|
|
262
262
|
intervalMs: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
264
264
|
isOptional: true;
|
|
265
265
|
};
|
|
266
266
|
}>;
|
|
267
267
|
isOptional: true;
|
|
268
268
|
};
|
|
269
269
|
lastSyncStatus: {
|
|
270
|
-
type:
|
|
270
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
271
271
|
isOptional: true;
|
|
272
272
|
};
|
|
273
273
|
lastSyncAt: {
|
|
274
|
-
type:
|
|
274
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
275
275
|
isOptional: true;
|
|
276
276
|
};
|
|
277
277
|
itemsProcessed: {
|
|
278
|
-
type:
|
|
278
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
279
279
|
isOptional: true;
|
|
280
280
|
};
|
|
281
281
|
createdAt: {
|
|
282
|
-
type:
|
|
282
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
283
283
|
isOptional: true;
|
|
284
284
|
};
|
|
285
285
|
updatedAt: {
|
|
286
|
-
type:
|
|
286
|
+
type: _lssm_lib_schema481.FieldType<Date, string>;
|
|
287
287
|
isOptional: true;
|
|
288
288
|
};
|
|
289
289
|
}>;
|
|
@@ -293,20 +293,20 @@ declare const ListKnowledgeSources: ContractSpec<SchemaModel<{
|
|
|
293
293
|
}>, undefined>;
|
|
294
294
|
declare const TriggerKnowledgeSourceSync: ContractSpec<SchemaModel<{
|
|
295
295
|
sourceId: {
|
|
296
|
-
type:
|
|
296
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
297
297
|
isOptional: false;
|
|
298
298
|
};
|
|
299
299
|
}>, SchemaModel<{
|
|
300
300
|
success: {
|
|
301
|
-
type:
|
|
301
|
+
type: _lssm_lib_schema481.FieldType<boolean, boolean>;
|
|
302
302
|
isOptional: false;
|
|
303
303
|
};
|
|
304
304
|
itemsProcessed: {
|
|
305
|
-
type:
|
|
305
|
+
type: _lssm_lib_schema481.FieldType<number, number>;
|
|
306
306
|
isOptional: true;
|
|
307
307
|
};
|
|
308
308
|
error: {
|
|
309
|
-
type:
|
|
309
|
+
type: _lssm_lib_schema481.FieldType<string, string>;
|
|
310
310
|
isOptional: true;
|
|
311
311
|
};
|
|
312
312
|
}>, undefined>;
|