@lssm/lib.contracts 1.10.0 → 1.11.0
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/README.md +3 -1
- package/dist/app-config/contracts.d.ts +50 -50
- package/dist/app-config/events.d.ts +27 -27
- package/dist/install.d.ts.map +1 -1
- package/dist/integrations/contracts.d.ts.map +1 -1
- 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/package.json +14 -12
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# @lssm/lib.contracts
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**The core of ContractSpec** — Define contracts once, generate consistent code across all surfaces.
|
|
4
|
+
|
|
5
|
+
Unified specifications for Operations (commands/queries), Events, and Presentations. Contracts serve as the canonical source of truth that AI agents and code generators read to understand system constraints.
|
|
4
6
|
|
|
5
7
|
## Purpose
|
|
6
8
|
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
import { ContractSpec } from "../spec.js";
|
|
2
2
|
import { SpecRegistry } from "../registry.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema128 from "@lssm/lib.schema";
|
|
4
4
|
import { SchemaModel } from "@lssm/lib.schema";
|
|
5
5
|
|
|
6
6
|
//#region src/app-config/contracts.d.ts
|
|
7
7
|
declare const UpdateTenantBrandingCommand: ContractSpec<SchemaModel<{
|
|
8
8
|
tenantId: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
appId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
environment: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
appName: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema128.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
22
22
|
isOptional: true;
|
|
23
23
|
};
|
|
24
24
|
assets: {
|
|
25
25
|
type: SchemaModel<{
|
|
26
26
|
type: {
|
|
27
|
-
type:
|
|
27
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
url: {
|
|
31
|
-
type:
|
|
31
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
mimeType: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
36
36
|
isOptional: true;
|
|
37
37
|
};
|
|
38
38
|
}>;
|
|
@@ -40,92 +40,92 @@ declare const UpdateTenantBrandingCommand: ContractSpec<SchemaModel<{
|
|
|
40
40
|
isArray: true;
|
|
41
41
|
};
|
|
42
42
|
colors: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema128.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
44
44
|
isOptional: true;
|
|
45
45
|
};
|
|
46
46
|
customDomain: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
48
48
|
isOptional: true;
|
|
49
49
|
};
|
|
50
50
|
subdomain: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
}>, SchemaModel<{
|
|
55
55
|
success: {
|
|
56
|
-
type:
|
|
56
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
57
57
|
isOptional: false;
|
|
58
58
|
};
|
|
59
59
|
updatedAt: {
|
|
60
|
-
type:
|
|
60
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
61
61
|
isOptional: false;
|
|
62
62
|
};
|
|
63
63
|
}>, undefined>;
|
|
64
64
|
declare const VerifyCustomDomainCommand: ContractSpec<SchemaModel<{
|
|
65
65
|
tenantId: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
appId: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
71
71
|
isOptional: false;
|
|
72
72
|
};
|
|
73
73
|
domain: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
75
75
|
isOptional: false;
|
|
76
76
|
};
|
|
77
77
|
}>, SchemaModel<{
|
|
78
78
|
status: {
|
|
79
|
-
type:
|
|
79
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
80
80
|
isOptional: false;
|
|
81
81
|
};
|
|
82
82
|
message: {
|
|
83
|
-
type:
|
|
83
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
84
84
|
isOptional: true;
|
|
85
85
|
};
|
|
86
86
|
}>, undefined>;
|
|
87
87
|
declare const UpdateBlueprintTranslationCatalogCommand: ContractSpec<SchemaModel<{
|
|
88
88
|
blueprintName: {
|
|
89
|
-
type:
|
|
89
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
blueprintVersion: {
|
|
93
|
-
type:
|
|
93
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
catalogName: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
catalogVersion: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema128.FieldType<number, number>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
defaultLocale: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
supportedLocales: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
isArray: true;
|
|
112
112
|
};
|
|
113
113
|
entries: {
|
|
114
114
|
type: SchemaModel<{
|
|
115
115
|
key: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
locale: {
|
|
120
|
-
type:
|
|
120
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
121
121
|
isOptional: false;
|
|
122
122
|
};
|
|
123
123
|
value: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
context: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
129
129
|
isOptional: true;
|
|
130
130
|
};
|
|
131
131
|
}>;
|
|
@@ -134,39 +134,39 @@ declare const UpdateBlueprintTranslationCatalogCommand: ContractSpec<SchemaModel
|
|
|
134
134
|
};
|
|
135
135
|
}>, SchemaModel<{
|
|
136
136
|
success: {
|
|
137
|
-
type:
|
|
137
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
138
138
|
isOptional: false;
|
|
139
139
|
};
|
|
140
140
|
updatedAt: {
|
|
141
|
-
type:
|
|
141
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
142
142
|
isOptional: false;
|
|
143
143
|
};
|
|
144
144
|
}>, undefined>;
|
|
145
145
|
declare const UpdateTenantTranslationOverridesCommand: ContractSpec<SchemaModel<{
|
|
146
146
|
tenantId: {
|
|
147
|
-
type:
|
|
147
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
148
148
|
isOptional: false;
|
|
149
149
|
};
|
|
150
150
|
appId: {
|
|
151
|
-
type:
|
|
151
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
152
152
|
isOptional: false;
|
|
153
153
|
};
|
|
154
154
|
entries: {
|
|
155
155
|
type: SchemaModel<{
|
|
156
156
|
key: {
|
|
157
|
-
type:
|
|
157
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
158
158
|
isOptional: false;
|
|
159
159
|
};
|
|
160
160
|
locale: {
|
|
161
|
-
type:
|
|
161
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
162
162
|
isOptional: false;
|
|
163
163
|
};
|
|
164
164
|
value: {
|
|
165
|
-
type:
|
|
165
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
166
166
|
isOptional: false;
|
|
167
167
|
};
|
|
168
168
|
context: {
|
|
169
|
-
type:
|
|
169
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
170
170
|
isOptional: true;
|
|
171
171
|
};
|
|
172
172
|
}>;
|
|
@@ -174,67 +174,67 @@ declare const UpdateTenantTranslationOverridesCommand: ContractSpec<SchemaModel<
|
|
|
174
174
|
isArray: true;
|
|
175
175
|
};
|
|
176
176
|
defaultLocale: {
|
|
177
|
-
type:
|
|
177
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
178
178
|
isOptional: true;
|
|
179
179
|
};
|
|
180
180
|
enabledLocales: {
|
|
181
|
-
type:
|
|
181
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
182
182
|
isOptional: true;
|
|
183
183
|
isArray: true;
|
|
184
184
|
};
|
|
185
185
|
}>, SchemaModel<{
|
|
186
186
|
success: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema128.FieldType<boolean, boolean>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
};
|
|
190
190
|
updatedAt: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema128.FieldType<Date, string>;
|
|
192
192
|
isOptional: false;
|
|
193
193
|
};
|
|
194
194
|
}>, undefined>;
|
|
195
195
|
declare const GetResolvedBrandingQuery: ContractSpec<SchemaModel<{
|
|
196
196
|
tenantId: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
};
|
|
200
200
|
appId: {
|
|
201
|
-
type:
|
|
201
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
202
202
|
isOptional: false;
|
|
203
203
|
};
|
|
204
204
|
environment: {
|
|
205
|
-
type:
|
|
205
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
206
206
|
isOptional: true;
|
|
207
207
|
};
|
|
208
208
|
}>, SchemaModel<{
|
|
209
209
|
branding: {
|
|
210
|
-
type:
|
|
210
|
+
type: _lssm_lib_schema128.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
211
211
|
isOptional: false;
|
|
212
212
|
};
|
|
213
213
|
}>, undefined>;
|
|
214
214
|
declare const ResolveMessageQuery: ContractSpec<SchemaModel<{
|
|
215
215
|
tenantId: {
|
|
216
|
-
type:
|
|
216
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
217
217
|
isOptional: false;
|
|
218
218
|
};
|
|
219
219
|
appId: {
|
|
220
|
-
type:
|
|
220
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
221
221
|
isOptional: false;
|
|
222
222
|
};
|
|
223
223
|
locale: {
|
|
224
|
-
type:
|
|
224
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
225
225
|
isOptional: false;
|
|
226
226
|
};
|
|
227
227
|
key: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
}>, SchemaModel<{
|
|
232
232
|
value: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
234
234
|
isOptional: true;
|
|
235
235
|
};
|
|
236
236
|
source: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema128.FieldType<string, string>;
|
|
238
238
|
isOptional: true;
|
|
239
239
|
};
|
|
240
240
|
}>, undefined>;
|
|
@@ -1,120 +1,120 @@
|
|
|
1
1
|
import { EventSpec } from "../events.js";
|
|
2
2
|
import "../index.js";
|
|
3
|
-
import * as
|
|
3
|
+
import * as _lssm_lib_schema177 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_schema177.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
appId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
version: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
blueprintName: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
blueprintVersion: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
createdBy: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
30
30
|
isOptional: false;
|
|
31
31
|
};
|
|
32
32
|
clonedFrom: {
|
|
33
|
-
type:
|
|
33
|
+
type: _lssm_lib_schema177.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_schema177.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
appId: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
version: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
promotedBy: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
53
53
|
};
|
|
54
54
|
warnings: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema177.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_schema177.FieldType<string, string>;
|
|
63
63
|
isOptional: false;
|
|
64
64
|
};
|
|
65
65
|
appId: {
|
|
66
|
-
type:
|
|
66
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
67
67
|
isOptional: false;
|
|
68
68
|
};
|
|
69
69
|
version: {
|
|
70
|
-
type:
|
|
70
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
71
71
|
isOptional: false;
|
|
72
72
|
};
|
|
73
73
|
previousVersion: {
|
|
74
|
-
type:
|
|
74
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
75
75
|
isOptional: true;
|
|
76
76
|
};
|
|
77
77
|
publishedBy: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
changeSummary: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
83
83
|
isOptional: true;
|
|
84
84
|
};
|
|
85
85
|
changedSections: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema177.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_schema177.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
appId: {
|
|
97
|
-
type:
|
|
97
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
98
98
|
isOptional: false;
|
|
99
99
|
};
|
|
100
100
|
newVersion: {
|
|
101
|
-
type:
|
|
101
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
102
102
|
isOptional: false;
|
|
103
103
|
};
|
|
104
104
|
rolledBackFrom: {
|
|
105
|
-
type:
|
|
105
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
106
106
|
isOptional: false;
|
|
107
107
|
};
|
|
108
108
|
rolledBackTo: {
|
|
109
|
-
type:
|
|
109
|
+
type: _lssm_lib_schema177.FieldType<number, number>;
|
|
110
110
|
isOptional: false;
|
|
111
111
|
};
|
|
112
112
|
rolledBackBy: {
|
|
113
|
-
type:
|
|
113
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
114
114
|
isOptional: false;
|
|
115
115
|
};
|
|
116
116
|
reason: {
|
|
117
|
-
type:
|
|
117
|
+
type: _lssm_lib_schema177.FieldType<string, string>;
|
|
118
118
|
isOptional: false;
|
|
119
119
|
};
|
|
120
120
|
}>>;
|
package/dist/install.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"install.d.ts","names":[],"sources":["../src/install.ts"],"sourcesContent":[],"mappings":";;;;;;;;;;KASY,uBAAuB,mBAAmB;AAA1C,KACA,YADS,CAAA,aACiB,eADgB,
|
|
1
|
+
{"version":3,"file":"install.d.ts","names":[],"sources":["../src/install.ts"],"sourcesContent":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contracts.d.ts","names":[],"sources":["../../src/integrations/contracts.ts"],"sourcesContent":[],"mappings":";;;;;;cAmLa,6BAA2B,aAAA;;UAoBtC,iBAAA,CAAA;IApBW,UAAA,EAAA,KAAA;EAoBX,CAAA;;;;;;;;;;;;EApBsC,CAAA;EAAA,aAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;UAAA,iBAAA,CAAA;;;;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,KAAA;EAsB3B,CAAA;EAqBX,cAAA,EAAA;;;;;;;;;;IArBsC,UAAA,EAAA,KAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,IAAA,6BAAA,KAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAuB3B,CAAA;EAoBX,eAAA,EAAA;IApBsC,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;EAAA,eAAA,EAAA;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAsB3B,UAAA,EAAA,IAAA;EAoBX,CAAA;;;IApBqC,UAAA,EAAA,IAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,UAAA,EAAA,IAAA;EAAA,CAAA;AAsBvC,CAAA,CAAA,EAAa,SAAA,CAAA;AAqBX,cAxFW,2BAwFX,EAxFsC,YAwFtC,CAxFsC,WAwFtC,CAAA;EArBoC,YAAA,EAAA;IAAA,IAAA,EA9CpC,iBAAA,CAAA,SA8CoC,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;EAAA,CAAA;EAAA,MAAA,EAAA;IAuBzB,IAAA,6BAAqC,CAAA,MAAf,
|
|
1
|
+
{"version":3,"file":"contracts.d.ts","names":[],"sources":["../../src/integrations/contracts.ts"],"sourcesContent":[],"mappings":";;;;;;cAmLa,6BAA2B,aAAA;;UAoBtC,iBAAA,CAAA;IApBW,UAAA,EAAA,KAAA;EAoBX,CAAA;;;;;;;;;;;;EApBsC,CAAA;EAAA,aAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;UAAA,iBAAA,CAAA;;;;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,KAAA;EAsB3B,CAAA;EAqBX,cAAA,EAAA;;;;;;;;;;IArBsC,UAAA,EAAA,KAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,IAAA,6BAAA,KAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAuB3B,CAAA;EAoBX,eAAA,EAAA;IApBsC,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;EAAA,eAAA,EAAA;IAAA,IAAA,6BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAsB3B,UAAA,EAAA,IAAA;EAoBX,CAAA;;;IApBqC,UAAA,EAAA,IAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAAA,UAAA,EAAA,IAAA;EAAA,CAAA;AAsBvC,CAAA,CAAA,EAAa,SAAA,CAAA;AAqBX,cAxFW,2BAwFX,EAxFsC,YAwFtC,CAxFsC,WAwFtC,CAAA;EArBoC,YAAA,EAAA;IAAA,IAAA,EA9CpC,iBAAA,CAAA,SA8CoC,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;EAAA,CAAA;EAAA,MAAA,EAAA;IAuBzB,IAAA,6BAAqC,CAAA,MAAf,EAAA,MAAM,CAAA;IAQzB,UAAA,EAAA,IAAA;;;;;;;;;;;;;;;;;;;;;;;;UAlGwB,iBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAuB3B,6BAA2B,aAAA;;UAoBtC,iBAAA,CAAA;;;;;UApBsC,iBAAA,CAAA;;;;cAsB3B,4BAA0B,aAAA;;UAoBrC,iBAAA,CAAA;;;;;;;;;;;;;;;cApBqC,iBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAsB1B,2BAAyB,aAAA;;UAqBpC,iBAAA,CAAA;;;;;UArBoC,iBAAA,CAAA;;;;;;;;;;;;;;;;;;;;cAuBzB,sBAAsB,eAAe;iBAQlC,4BAAA,WAAuC,eAAY"}
|