@lssm/lib.contracts 0.0.0-canary-20251221153314 → 0.0.0-canary-20251221165922
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/events.d.ts +27 -27
- package/dist/app-config/lifecycle-contracts.d.ts +80 -80
- 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/integrations/operations.d.ts +102 -102
- package/dist/knowledge/operations.d.ts +66 -66
- package/dist/presentations/presentations.d.ts +3 -3
- package/dist/workspace-config/contractsrc-schema.d.ts +1 -1
- package/package.json +5 -5
|
@@ -1,120 +1,120 @@
|
|
|
1
1
|
import { EventSpec } from "../events.js";
|
|
2
2
|
import "../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema84 from "@lssm/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/app-config/events.d.ts
|
|
7
7
|
declare const ConfigDraftCreatedEvent: EventSpec<SchemaModel<{
|
|
8
8
|
tenantId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
appId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
version: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
blueprintName: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
blueprintVersion: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
createdBy: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
clonedFrom: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
34
34
|
isOptional: true;
|
|
35
35
|
};
|
|
36
36
|
}>>;
|
|
37
37
|
declare const ConfigPromotedToPreviewEvent: EventSpec<SchemaModel<{
|
|
38
38
|
tenantId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
appId: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
version: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
promotedBy: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
warnings: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
isArray: true;
|
|
58
58
|
};
|
|
59
59
|
}>>;
|
|
60
60
|
declare const ConfigPublishedEvent: EventSpec<SchemaModel<{
|
|
61
61
|
tenantId: {
|
|
62
|
-
type:
|
|
62
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
63
63
|
isOptional: false;
|
|
64
64
|
};
|
|
65
65
|
appId: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
version: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
71
71
|
isOptional: false;
|
|
72
72
|
};
|
|
73
73
|
previousVersion: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
};
|
|
77
77
|
publishedBy: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
changeSummary: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
83
83
|
isOptional: true;
|
|
84
84
|
};
|
|
85
85
|
changedSections: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
87
87
|
isOptional: true;
|
|
88
88
|
isArray: true;
|
|
89
89
|
};
|
|
90
90
|
}>>;
|
|
91
91
|
declare const ConfigRolledBackEvent: EventSpec<SchemaModel<{
|
|
92
92
|
tenantId: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
appId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
newVersion: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
rolledBackFrom: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
rolledBackTo: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema84.FieldType<number, number>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
rolledBackBy: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
reason: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema84.FieldType<string, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
}>>;
|
|
@@ -3,80 +3,80 @@ import { OperationSpec } from "../operations/operation.js";
|
|
|
3
3
|
import "../operations/index.js";
|
|
4
4
|
import { OperationSpecRegistry } from "../operations/registry.js";
|
|
5
5
|
import "../index.js";
|
|
6
|
-
import * as
|
|
6
|
+
import * as _lssm_lib_schema110 from "@lssm/lib.schema";
|
|
7
7
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
8
8
|
|
|
9
9
|
//#region src/app-config/lifecycle-contracts.d.ts
|
|
10
10
|
declare const CreateTenantConfigDraftCommand: OperationSpec<SchemaModel<{
|
|
11
11
|
tenantId: {
|
|
12
|
-
type:
|
|
12
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
13
13
|
isOptional: false;
|
|
14
14
|
};
|
|
15
15
|
appId: {
|
|
16
|
-
type:
|
|
16
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
17
17
|
isOptional: false;
|
|
18
18
|
};
|
|
19
19
|
blueprintName: {
|
|
20
|
-
type:
|
|
20
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
21
21
|
isOptional: false;
|
|
22
22
|
};
|
|
23
23
|
blueprintVersion: {
|
|
24
|
-
type:
|
|
24
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
25
25
|
isOptional: false;
|
|
26
26
|
};
|
|
27
27
|
environment: {
|
|
28
|
-
type:
|
|
28
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
29
29
|
isOptional: true;
|
|
30
30
|
};
|
|
31
31
|
fromVersion: {
|
|
32
|
-
type:
|
|
32
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
33
33
|
isOptional: true;
|
|
34
34
|
};
|
|
35
35
|
createdBy: {
|
|
36
|
-
type:
|
|
36
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
37
37
|
isOptional: false;
|
|
38
38
|
};
|
|
39
39
|
}>, SchemaModel<{
|
|
40
40
|
version: {
|
|
41
|
-
type:
|
|
41
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
42
42
|
isOptional: false;
|
|
43
43
|
};
|
|
44
44
|
status: {
|
|
45
|
-
type:
|
|
45
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
createdAt: {
|
|
49
|
-
type:
|
|
49
|
+
type: _lssm_lib_schema110.FieldType<Date, string>;
|
|
50
50
|
isOptional: false;
|
|
51
51
|
};
|
|
52
52
|
}>, {
|
|
53
53
|
ref: EventSpec<SchemaModel<{
|
|
54
54
|
tenantId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
56
56
|
isOptional: false;
|
|
57
57
|
};
|
|
58
58
|
appId: {
|
|
59
|
-
type:
|
|
59
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
60
60
|
isOptional: false;
|
|
61
61
|
};
|
|
62
62
|
version: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
blueprintName: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
blueprintVersion: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
createdBy: {
|
|
75
|
-
type:
|
|
75
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
clonedFrom: {
|
|
79
|
-
type:
|
|
79
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
80
80
|
isOptional: true;
|
|
81
81
|
};
|
|
82
82
|
}>>;
|
|
@@ -84,55 +84,55 @@ declare const CreateTenantConfigDraftCommand: OperationSpec<SchemaModel<{
|
|
|
84
84
|
}[]>;
|
|
85
85
|
declare const PromoteTenantConfigToPreviewCommand: OperationSpec<SchemaModel<{
|
|
86
86
|
tenantId: {
|
|
87
|
-
type:
|
|
87
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
88
88
|
isOptional: false;
|
|
89
89
|
};
|
|
90
90
|
appId: {
|
|
91
|
-
type:
|
|
91
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
92
92
|
isOptional: false;
|
|
93
93
|
};
|
|
94
94
|
version: {
|
|
95
|
-
type:
|
|
95
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
96
96
|
isOptional: false;
|
|
97
97
|
};
|
|
98
98
|
promotedBy: {
|
|
99
|
-
type:
|
|
99
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
100
100
|
isOptional: false;
|
|
101
101
|
};
|
|
102
102
|
}>, SchemaModel<{
|
|
103
103
|
version: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
105
105
|
isOptional: false;
|
|
106
106
|
};
|
|
107
107
|
status: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
109
109
|
isOptional: false;
|
|
110
110
|
};
|
|
111
111
|
warnings: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
113
113
|
isOptional: true;
|
|
114
114
|
isArray: true;
|
|
115
115
|
};
|
|
116
116
|
}>, {
|
|
117
117
|
ref: EventSpec<SchemaModel<{
|
|
118
118
|
tenantId: {
|
|
119
|
-
type:
|
|
119
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
120
120
|
isOptional: false;
|
|
121
121
|
};
|
|
122
122
|
appId: {
|
|
123
|
-
type:
|
|
123
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
124
124
|
isOptional: false;
|
|
125
125
|
};
|
|
126
126
|
version: {
|
|
127
|
-
type:
|
|
127
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
128
128
|
isOptional: false;
|
|
129
129
|
};
|
|
130
130
|
promotedBy: {
|
|
131
|
-
type:
|
|
131
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
132
132
|
isOptional: false;
|
|
133
133
|
};
|
|
134
134
|
warnings: {
|
|
135
|
-
type:
|
|
135
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
136
136
|
isOptional: true;
|
|
137
137
|
isArray: true;
|
|
138
138
|
};
|
|
@@ -141,74 +141,74 @@ declare const PromoteTenantConfigToPreviewCommand: OperationSpec<SchemaModel<{
|
|
|
141
141
|
}[]>;
|
|
142
142
|
declare const PublishTenantConfigCommand: OperationSpec<SchemaModel<{
|
|
143
143
|
tenantId: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
145
145
|
isOptional: false;
|
|
146
146
|
};
|
|
147
147
|
appId: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
version: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
153
153
|
isOptional: false;
|
|
154
154
|
};
|
|
155
155
|
environment: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
157
157
|
isOptional: true;
|
|
158
158
|
};
|
|
159
159
|
publishedBy: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
changeSummary: {
|
|
164
|
-
type:
|
|
164
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
165
165
|
isOptional: true;
|
|
166
166
|
};
|
|
167
167
|
}>, SchemaModel<{
|
|
168
168
|
version: {
|
|
169
|
-
type:
|
|
169
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
170
170
|
isOptional: false;
|
|
171
171
|
};
|
|
172
172
|
status: {
|
|
173
|
-
type:
|
|
173
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
174
174
|
isOptional: false;
|
|
175
175
|
};
|
|
176
176
|
previousVersion: {
|
|
177
|
-
type:
|
|
177
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
178
178
|
isOptional: true;
|
|
179
179
|
};
|
|
180
180
|
publishedAt: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema110.FieldType<Date, string>;
|
|
182
182
|
isOptional: false;
|
|
183
183
|
};
|
|
184
184
|
}>, {
|
|
185
185
|
ref: EventSpec<SchemaModel<{
|
|
186
186
|
tenantId: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
};
|
|
190
190
|
appId: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
version: {
|
|
195
|
-
type:
|
|
195
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
196
196
|
isOptional: false;
|
|
197
197
|
};
|
|
198
198
|
previousVersion: {
|
|
199
|
-
type:
|
|
199
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
};
|
|
202
202
|
publishedBy: {
|
|
203
|
-
type:
|
|
203
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
204
204
|
isOptional: false;
|
|
205
205
|
};
|
|
206
206
|
changeSummary: {
|
|
207
|
-
type:
|
|
207
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
208
208
|
isOptional: true;
|
|
209
209
|
};
|
|
210
210
|
changedSections: {
|
|
211
|
-
type:
|
|
211
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
212
212
|
isOptional: true;
|
|
213
213
|
isArray: true;
|
|
214
214
|
};
|
|
@@ -217,70 +217,70 @@ declare const PublishTenantConfigCommand: OperationSpec<SchemaModel<{
|
|
|
217
217
|
}[]>;
|
|
218
218
|
declare const RollbackTenantConfigCommand: OperationSpec<SchemaModel<{
|
|
219
219
|
tenantId: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
221
221
|
isOptional: false;
|
|
222
222
|
};
|
|
223
223
|
appId: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
225
225
|
isOptional: false;
|
|
226
226
|
};
|
|
227
227
|
toVersion: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
environment: {
|
|
232
|
-
type:
|
|
232
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
233
233
|
isOptional: true;
|
|
234
234
|
};
|
|
235
235
|
rolledBackBy: {
|
|
236
|
-
type:
|
|
236
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
237
237
|
isOptional: false;
|
|
238
238
|
};
|
|
239
239
|
reason: {
|
|
240
|
-
type:
|
|
240
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
241
241
|
isOptional: false;
|
|
242
242
|
};
|
|
243
243
|
}>, SchemaModel<{
|
|
244
244
|
newVersion: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
246
246
|
isOptional: false;
|
|
247
247
|
};
|
|
248
248
|
status: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
250
250
|
isOptional: false;
|
|
251
251
|
};
|
|
252
252
|
rolledBackFrom: {
|
|
253
|
-
type:
|
|
253
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
254
254
|
isOptional: false;
|
|
255
255
|
};
|
|
256
256
|
}>, {
|
|
257
257
|
ref: EventSpec<SchemaModel<{
|
|
258
258
|
tenantId: {
|
|
259
|
-
type:
|
|
259
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
260
260
|
isOptional: false;
|
|
261
261
|
};
|
|
262
262
|
appId: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
newVersion: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
268
268
|
isOptional: false;
|
|
269
269
|
};
|
|
270
270
|
rolledBackFrom: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
272
272
|
isOptional: false;
|
|
273
273
|
};
|
|
274
274
|
rolledBackTo: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
rolledBackBy: {
|
|
279
|
-
type:
|
|
279
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
280
280
|
isOptional: false;
|
|
281
281
|
};
|
|
282
282
|
reason: {
|
|
283
|
-
type:
|
|
283
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
284
284
|
isOptional: false;
|
|
285
285
|
};
|
|
286
286
|
}>>;
|
|
@@ -288,22 +288,22 @@ declare const RollbackTenantConfigCommand: OperationSpec<SchemaModel<{
|
|
|
288
288
|
}[]>;
|
|
289
289
|
declare const ListTenantConfigVersionsQuery: OperationSpec<SchemaModel<{
|
|
290
290
|
tenantId: {
|
|
291
|
-
type:
|
|
291
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
292
292
|
isOptional: false;
|
|
293
293
|
};
|
|
294
294
|
appId: {
|
|
295
|
-
type:
|
|
295
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
296
296
|
isOptional: false;
|
|
297
297
|
};
|
|
298
298
|
}>, SchemaModel<{
|
|
299
299
|
versions: {
|
|
300
300
|
type: SchemaModel<{
|
|
301
301
|
meta: {
|
|
302
|
-
type:
|
|
302
|
+
type: _lssm_lib_schema110.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
303
303
|
isOptional: false;
|
|
304
304
|
};
|
|
305
305
|
config: {
|
|
306
|
-
type:
|
|
306
|
+
type: _lssm_lib_schema110.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
307
307
|
isOptional: false;
|
|
308
308
|
};
|
|
309
309
|
}>;
|
|
@@ -313,35 +313,35 @@ declare const ListTenantConfigVersionsQuery: OperationSpec<SchemaModel<{
|
|
|
313
313
|
transitions: {
|
|
314
314
|
type: SchemaModel<{
|
|
315
315
|
tenantId: {
|
|
316
|
-
type:
|
|
316
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
317
317
|
isOptional: false;
|
|
318
318
|
};
|
|
319
319
|
appId: {
|
|
320
|
-
type:
|
|
320
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
321
321
|
isOptional: false;
|
|
322
322
|
};
|
|
323
323
|
fromStatus: {
|
|
324
|
-
type:
|
|
324
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
325
325
|
isOptional: false;
|
|
326
326
|
};
|
|
327
327
|
toStatus: {
|
|
328
|
-
type:
|
|
328
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
329
329
|
isOptional: false;
|
|
330
330
|
};
|
|
331
331
|
version: {
|
|
332
|
-
type:
|
|
332
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
333
333
|
isOptional: false;
|
|
334
334
|
};
|
|
335
335
|
timestamp: {
|
|
336
|
-
type:
|
|
336
|
+
type: _lssm_lib_schema110.FieldType<Date, string>;
|
|
337
337
|
isOptional: false;
|
|
338
338
|
};
|
|
339
339
|
actor: {
|
|
340
|
-
type:
|
|
340
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
341
341
|
isOptional: false;
|
|
342
342
|
};
|
|
343
343
|
reason: {
|
|
344
|
-
type:
|
|
344
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
345
345
|
isOptional: true;
|
|
346
346
|
};
|
|
347
347
|
}>;
|
|
@@ -351,26 +351,26 @@ declare const ListTenantConfigVersionsQuery: OperationSpec<SchemaModel<{
|
|
|
351
351
|
}>, undefined>;
|
|
352
352
|
declare const GetTenantConfigVersionQuery: OperationSpec<SchemaModel<{
|
|
353
353
|
tenantId: {
|
|
354
|
-
type:
|
|
354
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
355
355
|
isOptional: false;
|
|
356
356
|
};
|
|
357
357
|
appId: {
|
|
358
|
-
type:
|
|
358
|
+
type: _lssm_lib_schema110.FieldType<string, string>;
|
|
359
359
|
isOptional: false;
|
|
360
360
|
};
|
|
361
361
|
version: {
|
|
362
|
-
type:
|
|
362
|
+
type: _lssm_lib_schema110.FieldType<number, number>;
|
|
363
363
|
isOptional: false;
|
|
364
364
|
};
|
|
365
365
|
}>, SchemaModel<{
|
|
366
366
|
version: {
|
|
367
367
|
type: SchemaModel<{
|
|
368
368
|
meta: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema110.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
config: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema110.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
374
374
|
isOptional: false;
|
|
375
375
|
};
|
|
376
376
|
}>;
|