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