@carbonstopper/agent-mcp 0.1.8 → 0.1.9
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 +90 -11
- package/dist/tools.js +23 -45
- package/dist/tools.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -151,9 +151,9 @@ Only product carbon modeling and report tools are exposed to the Agent in this r
|
|
|
151
151
|
| --- | --- |
|
|
152
152
|
| `modeling_execute` | Create a new product carbon AI model. Requires `idempotencyKey` and `input.content`. |
|
|
153
153
|
| `modeling_re_modeling` | Re-run product carbon AI modeling for an existing account. Requires `accountId` and `idempotencyKey`. |
|
|
154
|
-
| `modeling_update` | Supplement or update emission sources for an existing model. Requires `accountId` and `
|
|
154
|
+
| `modeling_update` | Supplement or update emission sources for an existing model. Requires `accountId`, `idempotencyKey`, and `input.content`. |
|
|
155
155
|
| `modeling_detail` | Get product carbon model details. |
|
|
156
|
-
| `report_generate` | Generate a product carbon report. Requires `idempotencyKey`. |
|
|
156
|
+
| `report_generate` | Generate a product carbon report. Requires `accountId` and `idempotencyKey`. |
|
|
157
157
|
| `report_regenerate` | Regenerate an existing product carbon report. Requires `reportId` and `idempotencyKey`. |
|
|
158
158
|
| `report_detail` | Get product carbon report detail and latest report URL. |
|
|
159
159
|
|
|
@@ -167,23 +167,102 @@ Use the product carbon modeling tools as follows:
|
|
|
167
167
|
|
|
168
168
|
## Tool Request Shape
|
|
169
169
|
|
|
170
|
-
|
|
170
|
+
The MCP schema only exposes fields the Agent should fill. Do not pass platform, trace, confirmation, or unrelated id fields unless they are listed for the selected tool.
|
|
171
|
+
|
|
172
|
+
### `modeling_execute`
|
|
171
173
|
|
|
172
174
|
```json
|
|
173
175
|
{
|
|
174
176
|
"sessionId": "agent_xxx",
|
|
175
|
-
"projectId": 1001,
|
|
176
|
-
"accountId": 2001,
|
|
177
|
-
"modelId": null,
|
|
178
|
-
"reportId": null,
|
|
179
177
|
"idempotencyKey": "agent_xxx_modeling_execute_v1",
|
|
180
|
-
"
|
|
181
|
-
|
|
182
|
-
|
|
178
|
+
"input": {
|
|
179
|
+
"content": "500ml bottled mineral water",
|
|
180
|
+
"message": "Supplemental modeling context",
|
|
181
|
+
"scope": 1,
|
|
182
|
+
"scopeValue": "0,1,2",
|
|
183
|
+
"factorScope": 3
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
### `modeling_re_modeling`
|
|
189
|
+
|
|
190
|
+
```json
|
|
191
|
+
{
|
|
192
|
+
"sessionId": "agent_xxx",
|
|
193
|
+
"accountId": 2001,
|
|
194
|
+
"idempotencyKey": "agent_xxx_modeling_re_modeling_v1",
|
|
195
|
+
"input": {
|
|
196
|
+
"content": "Updated product description",
|
|
197
|
+
"message": "Recalculate with updated packaging",
|
|
198
|
+
"scope": 1,
|
|
199
|
+
"scopeValue": "0,1,2",
|
|
200
|
+
"factorScope": 3
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### `modeling_update`
|
|
206
|
+
|
|
207
|
+
```json
|
|
208
|
+
{
|
|
209
|
+
"sessionId": "agent_xxx",
|
|
210
|
+
"accountId": 2001,
|
|
211
|
+
"idempotencyKey": "agent_xxx_modeling_update_v1",
|
|
212
|
+
"input": {
|
|
213
|
+
"content": "Add corrugated box packaging",
|
|
214
|
+
"message": "Supplemental emission source details"
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
### `modeling_detail`
|
|
220
|
+
|
|
221
|
+
```json
|
|
222
|
+
{
|
|
223
|
+
"sessionId": "agent_xxx",
|
|
224
|
+
"accountId": 2001
|
|
225
|
+
}
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
### `report_generate`
|
|
229
|
+
|
|
230
|
+
```json
|
|
231
|
+
{
|
|
232
|
+
"sessionId": "agent_xxx",
|
|
233
|
+
"accountId": 2001,
|
|
234
|
+
"idempotencyKey": "agent_xxx_report_generate_v1",
|
|
235
|
+
"input": {
|
|
236
|
+
"reportName": "Product carbon footprint report",
|
|
237
|
+
"standard": "ISO 14067",
|
|
238
|
+
"message": "Generate report for customer review"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
### `report_regenerate`
|
|
244
|
+
|
|
245
|
+
```json
|
|
246
|
+
{
|
|
247
|
+
"sessionId": "agent_xxx",
|
|
248
|
+
"reportId": 3001,
|
|
249
|
+
"idempotencyKey": "agent_xxx_report_regenerate_v1",
|
|
250
|
+
"input": {
|
|
251
|
+
"message": "Regenerate after model update"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
```
|
|
255
|
+
|
|
256
|
+
### `report_detail`
|
|
257
|
+
|
|
258
|
+
```json
|
|
259
|
+
{
|
|
260
|
+
"sessionId": "agent_xxx",
|
|
261
|
+
"reportId": 3001
|
|
183
262
|
}
|
|
184
263
|
```
|
|
185
264
|
|
|
186
|
-
ID fields such as `
|
|
265
|
+
ID fields such as `accountId` and `reportId` accept either numbers or numeric strings. Safe numeric strings are normalized before forwarding to the Agent internal API; very large numeric strings are preserved to avoid JavaScript precision loss.
|
|
187
266
|
|
|
188
267
|
Write or high-risk tools require `idempotencyKey`, especially:
|
|
189
268
|
|
package/dist/tools.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import * as apipath from "./apipath.js";
|
|
3
|
-
const jsonObject = z.record(z.string(), z.unknown());
|
|
4
3
|
const sessionId = z
|
|
5
4
|
.string()
|
|
6
5
|
.min(1)
|
|
@@ -15,100 +14,76 @@ const longId = z
|
|
|
15
14
|
z.string().regex(/^\d+$/, "Expected a numeric id string"),
|
|
16
15
|
])
|
|
17
16
|
.describe("Numeric id. Accepts either a number or a numeric string.");
|
|
18
|
-
const
|
|
19
|
-
messageId: z.string().optional().describe("Agent message id for grouping multiple skill nodes in one turn."),
|
|
20
|
-
traceId: z.string().optional().describe("Agent trace id for runtime trace aggregation."),
|
|
21
|
-
taskId: z.string().optional().describe("Agent task id, for example LangGraph run id."),
|
|
22
|
-
};
|
|
23
|
-
const commonSkillFields = {
|
|
24
|
-
sessionId,
|
|
25
|
-
projectId: longId.optional().describe("Agent project id"),
|
|
26
|
-
...traceFields,
|
|
27
|
-
accountId: longId.optional().describe("Product carbon account id"),
|
|
28
|
-
modelId: longId.optional().describe("Reserved model id"),
|
|
29
|
-
reportId: longId.optional().describe("Report id"),
|
|
30
|
-
idempotencyKey: z.string().optional().describe("Required for write or high-risk skills"),
|
|
31
|
-
confirmed: z.boolean().optional().describe("Whether the user has confirmed a high-risk or high-cost action"),
|
|
32
|
-
pendingActionId: z.string().optional().describe("Pending action id returned by a confirmation response"),
|
|
33
|
-
};
|
|
34
|
-
const modelingInput = z.object({
|
|
35
|
-
content: z.string().optional().describe("Product description used for AI modeling. Required when creating a new model."),
|
|
36
|
-
message: z.string().optional().describe("Supplemental modeling information from the user or Agent."),
|
|
37
|
-
productName: z.string().optional().describe("Product name or short title."),
|
|
17
|
+
const modelingOptions = {
|
|
38
18
|
scope: z.union([z.number(), z.string()]).optional().describe("Lifecycle scope. Common values: 0 for partial lifecycle, 1 for full lifecycle."),
|
|
39
19
|
scopeValue: z.string().optional().describe("Lifecycle stage selection for partial lifecycle, for example 0,1,2."),
|
|
40
|
-
factorScope: z.number().optional().describe("Factor preference. Common values: 1 Ecoinvent, 2 domestic factors, 3 any source."),
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}).catchall(z.unknown());
|
|
44
|
-
const modelingExecuteInput = modelingInput.extend({
|
|
20
|
+
factorScope: z.union([z.number(), z.string().regex(/^\d+$/, "Expected a numeric factorScope string")]).optional().describe("Factor preference. Common values: 1 Ecoinvent, 2 domestic factors, 3 any source."),
|
|
21
|
+
};
|
|
22
|
+
const modelingExecuteInput = z.object({
|
|
45
23
|
content: z.string().min(1).describe("Required product description for creating a new product carbon model."),
|
|
46
24
|
message: z.string().optional().describe("Supplemental information for new modeling, such as user preferences or Agent-collected context."),
|
|
25
|
+
...modelingOptions,
|
|
47
26
|
});
|
|
48
|
-
const reModelingInput =
|
|
27
|
+
const reModelingInput = z.object({
|
|
49
28
|
content: z.string().optional().describe("Optional replacement or updated product description for re-modeling an existing account."),
|
|
50
29
|
message: z.string().optional().describe("Supplemental re-modeling instruction, such as why the existing account should be recalculated."),
|
|
30
|
+
...modelingOptions,
|
|
51
31
|
});
|
|
52
32
|
const modelUpdateInput = z.object({
|
|
53
|
-
|
|
54
|
-
content: z.string().optional().describe("Natural language instruction for supplementing emission sources, for example adding a material, energy, packaging, or transport source."),
|
|
33
|
+
content: z.string().min(1).describe("Required natural language instruction for supplementing emission sources, for example adding a material, energy, packaging, or transport source."),
|
|
55
34
|
message: z.string().optional().describe("Supplemental emission source information from the user or Agent."),
|
|
56
|
-
})
|
|
35
|
+
});
|
|
57
36
|
const reportGenerateInput = z.object({
|
|
58
|
-
accountId: longId.optional().describe("Product carbon account id. Top-level accountId is preferred."),
|
|
59
37
|
reportName: z.string().optional().describe("Report name to generate."),
|
|
60
38
|
standard: z.string().optional().describe("Report standard, for example ISO 14067."),
|
|
61
39
|
message: z.string().optional().describe("Supplemental report generation instruction from the user or Agent."),
|
|
62
|
-
})
|
|
40
|
+
});
|
|
41
|
+
const reportRegenerateInput = z.object({
|
|
42
|
+
message: z.string().optional().describe("Supplemental report regeneration instruction from the user or Agent."),
|
|
43
|
+
});
|
|
63
44
|
export const schemas = {
|
|
64
45
|
modeling_execute: z.object({
|
|
65
|
-
|
|
46
|
+
sessionId,
|
|
66
47
|
idempotencyKey,
|
|
67
48
|
input: modelingExecuteInput.describe("Required new-model input. input.content is required; input.message can carry user or Agent supplemental information."),
|
|
68
49
|
}),
|
|
69
50
|
modeling_re_modeling: z.object({
|
|
70
|
-
|
|
51
|
+
sessionId,
|
|
71
52
|
accountId: longId.describe("Product carbon account id"),
|
|
72
53
|
idempotencyKey,
|
|
73
54
|
input: reModelingInput.describe("Optional re-modeling input. Use input.content for updated product description and input.message for recalculation instructions.").optional(),
|
|
74
55
|
}),
|
|
75
56
|
modeling_update: z.object({
|
|
76
|
-
|
|
57
|
+
sessionId,
|
|
77
58
|
accountId: longId.describe("Product carbon account id"),
|
|
78
59
|
idempotencyKey,
|
|
79
60
|
input: modelUpdateInput.describe("Emission source update input. Use input.content for the source change instruction and input.message for supplemental context."),
|
|
80
61
|
}),
|
|
81
62
|
modeling_detail: z.object({
|
|
82
63
|
sessionId,
|
|
83
|
-
projectId: longId.optional(),
|
|
84
|
-
...traceFields,
|
|
85
64
|
accountId: longId.describe("Product carbon account id"),
|
|
86
|
-
input: jsonObject.describe("Optional detail query context.").optional(),
|
|
87
65
|
}),
|
|
88
66
|
report_generate: z.object({
|
|
89
|
-
|
|
67
|
+
sessionId,
|
|
90
68
|
accountId: longId.describe("Product carbon account id"),
|
|
91
69
|
idempotencyKey,
|
|
92
70
|
input: reportGenerateInput.describe("Optional report generation input, such as reportName, standard, or message.").optional(),
|
|
93
71
|
}),
|
|
94
72
|
report_regenerate: z.object({
|
|
95
|
-
|
|
73
|
+
sessionId,
|
|
96
74
|
reportId: longId.describe("Existing report id to regenerate"),
|
|
97
75
|
idempotencyKey,
|
|
98
|
-
input:
|
|
76
|
+
input: reportRegenerateInput.describe("Optional report regeneration input, such as message.").optional(),
|
|
99
77
|
}),
|
|
100
78
|
report_detail: z.object({
|
|
101
79
|
sessionId,
|
|
102
|
-
projectId: longId.optional(),
|
|
103
|
-
...traceFields,
|
|
104
80
|
reportId: longId.describe("Report id"),
|
|
105
|
-
input: jsonObject.describe("Optional report detail query context.").optional(),
|
|
106
81
|
}),
|
|
107
82
|
};
|
|
108
83
|
export const descriptions = {
|
|
109
84
|
modeling_execute: "Create a new product carbon model from input.content. Use this only when the user wants a new model and no existing account should be reused. Calls /modeling/execute. Requires idempotencyKey and input.content.",
|
|
110
85
|
modeling_re_modeling: "Re-model an existing product carbon account from updated context. Use this when the user wants to redo or recalculate the whole model for an existing account. Calls /modeling/reModeling. Requires accountId and idempotencyKey.",
|
|
111
|
-
modeling_update: "Supplement emission sources on an existing product carbon account. Use this when the user wants to add or adjust materials, energy, packaging, transport, or other emission sources without recreating the whole model. Calls /modeling/update. Requires accountId and
|
|
86
|
+
modeling_update: "Supplement emission sources on an existing product carbon account. Use this when the user wants to add or adjust materials, energy, packaging, transport, or other emission sources without recreating the whole model. Calls /modeling/update. Requires accountId, idempotencyKey, and input.content.",
|
|
112
87
|
modeling_detail: "Get product carbon model details for an account.",
|
|
113
88
|
report_generate: "Create a new product carbon report from an account. Requires accountId and idempotencyKey.",
|
|
114
89
|
report_regenerate: "Regenerate an existing product carbon report. Requires reportId and idempotencyKey.",
|
|
@@ -169,6 +144,9 @@ function normalizeIds(value) {
|
|
|
169
144
|
if (isIdField(key) && typeof childValue === "string" && /^\d+$/.test(childValue)) {
|
|
170
145
|
normalized[key] = normalizeNumericId(childValue);
|
|
171
146
|
}
|
|
147
|
+
else if (key === "factorScope" && typeof childValue === "string" && /^\d+$/.test(childValue)) {
|
|
148
|
+
normalized[key] = Number(childValue);
|
|
149
|
+
}
|
|
172
150
|
else {
|
|
173
151
|
normalized[key] = normalizeIds(childValue);
|
|
174
152
|
}
|
package/dist/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AAExC,MAAM,
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AAExC,MAAM,SAAS,GAAG,CAAC;KAChB,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,CAAC;KACN,QAAQ,CAAC,sGAAsG,CAAC,CAAC;AAEpH,MAAM,cAAc,GAAG,CAAC;KACrB,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,CAAC;KACN,QAAQ,CAAC,sGAAsG,CAAC,CAAC;AAEpH,MAAM,MAAM,GAAG,CAAC;KACb,KAAK,CAAC;IACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC3B,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,EAAE,8BAA8B,CAAC;CAC1D,CAAC;KACD,QAAQ,CAAC,0DAA0D,CAAC,CAAC;AAExE,MAAM,eAAe,GAAG;IACtB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gFAAgF,CAAC;IAC9I,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,qEAAqE,CAAC;IACjH,WAAW,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,EAAE,uCAAuC,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kFAAkF,CAAC;CAC/M,CAAC;AAEF,MAAM,oBAAoB,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,uEAAuE,CAAC;IAC5G,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iGAAiG,CAAC;IAC1I,GAAG,eAAe;CACnB,CAAC,CAAC;AAEH,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/B,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,0FAA0F,CAAC;IACnI,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gGAAgG,CAAC;IACzI,GAAG,eAAe;CACnB,CAAC,CAAC;AAEH,MAAM,gBAAgB,GAAG,CAAC,CAAC,MAAM,CAAC;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,kJAAkJ,CAAC;IACvL,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kEAAkE,CAAC;CAC5G,CAAC,CAAC;AAEH,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACtE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC;IACnF,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,oEAAoE,CAAC;CAC9G,CAAC,CAAC;AAEH,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,sEAAsE,CAAC;CAChH,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,OAAO,GAAiD;IACnE,gBAAgB,EAAE,CAAC,CAAC,MAAM,CAAC;QACzB,SAAS;QACT,cAAc;QACd,KAAK,EAAE,oBAAoB,CAAC,QAAQ,CAAC,sHAAsH,CAAC;KAC7J,CAAC;IACF,oBAAoB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC7B,SAAS;QACT,SAAS,EAAE,MAAM,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QACvD,cAAc;QACd,KAAK,EAAE,eAAe,CAAC,QAAQ,CAAC,iIAAiI,CAAC,CAAC,QAAQ,EAAE;KAC9K,CAAC;IACF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,SAAS;QACT,SAAS,EAAE,MAAM,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QACvD,cAAc;QACd,KAAK,EAAE,gBAAgB,CAAC,QAAQ,CAAC,+HAA+H,CAAC;KAClK,CAAC;IACF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,SAAS;QACT,SAAS,EAAE,MAAM,CAAC,QAAQ,CAAC,2BAA2B,CAAC;KACxD,CAAC;IACF,eAAe,EAAE,CAAC,CAAC,MAAM,CAAC;QACxB,SAAS;QACT,SAAS,EAAE,MAAM,CAAC,QAAQ,CAAC,2BAA2B,CAAC;QACvD,cAAc;QACd,KAAK,EAAE,mBAAmB,CAAC,QAAQ,CAAC,6EAA6E,CAAC,CAAC,QAAQ,EAAE;KAC9H,CAAC;IACF,iBAAiB,EAAE,CAAC,CAAC,MAAM,CAAC;QAC1B,SAAS;QACT,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC,kCAAkC,CAAC;QAC7D,cAAc;QACd,KAAK,EAAE,qBAAqB,CAAC,QAAQ,CAAC,sDAAsD,CAAC,CAAC,QAAQ,EAAE;KACzG,CAAC;IACF,aAAa,EAAE,CAAC,CAAC,MAAM,CAAC;QACtB,SAAS;QACT,QAAQ,EAAE,MAAM,CAAC,QAAQ,CAAC,WAAW,CAAC;KACvC,CAAC;CACH,CAAC;AAEF,MAAM,CAAC,MAAM,YAAY,GAA2B;IAClD,gBAAgB,EAAE,mNAAmN;IACrO,oBAAoB,EAAE,mOAAmO;IACzP,eAAe,EAAE,wSAAwS;IACzT,eAAe,EAAE,kDAAkD;IACnE,eAAe,EAAE,4FAA4F;IAC7G,iBAAiB,EAAE,qFAAqF;IACxG,aAAa,EAAE,yDAAyD;CACzE,CAAC;AAUF,MAAM,CAAC,MAAM,UAAU,GAA8B;IACnD,gBAAgB,EAAE;QAChB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,eAAe,EAAE;QAC/B,QAAQ,EAAE,YAAY;KACvB;IACD,oBAAoB,EAAE;QACpB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,kBAAkB,EAAE;QAClC,QAAQ,EAAE,YAAY;KACvB;IACD,eAAe,EAAE;QACf,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,cAAc,EAAE;QAC9B,QAAQ,EAAE,YAAY;KACvB;IACD,eAAe,EAAE;QACf,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,cAAc,EAAE;QAC9B,QAAQ,EAAE,YAAY;KACvB;IACD,eAAe,EAAE;QACf,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,cAAc,EAAE;QAC9B,QAAQ,EAAE,YAAY;KACvB;IACD,iBAAiB,EAAE;QACjB,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,cAAc,EAAE;QAC9B,QAAQ,EAAE,YAAY;KACvB;IACD,aAAa,EAAE;QACb,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,OAAO,CAAC,YAAY,EAAE;QAC5B,QAAQ,EAAE,YAAY;KACvB;CACF,CAAC;AAEF,MAAM,UAAU,SAAS,CAAC,KAAgB,EAAE,IAA6B;IACvE,IAAI,KAAK,CAAC,QAAQ,KAAK,gBAAgB,EAAE,CAAC;QACxC,OAAO,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,CAAC;IACvC,CAAC;IACD,OAAO,YAAY,CAAC,IAAI,CAAC,CAAC;AAC5B,CAAC;AAED,SAAS,YAAY,CAAC,KAAc;IAClC,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACzB,OAAO,KAAK,CAAC,GAAG,CAAC,YAAY,CAAC,CAAC;IACjC,CAAC;IAED,IAAI,CAAC,KAAK,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QACxC,OAAO,KAAK,CAAC;IACf,CAAC;IAED,MAAM,UAAU,GAA4B,EAAE,CAAC;IAC/C,KAAK,MAAM,CAAC,GAAG,EAAE,UAAU,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACtD,IAAI,SAAS,CAAC,GAAG,CAAC,IAAI,OAAO,UAAU,KAAK,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YACjF,UAAU,CAAC,GAAG,CAAC,GAAG,kBAAkB,CAAC,UAAU,CAAC,CAAC;QACnD,CAAC;aAAM,IAAI,GAAG,KAAK,aAAa,IAAI,OAAO,UAAU,KAAK,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAC/F,UAAU,CAAC,GAAG,CAAC,GAAG,MAAM,CAAC,UAAU,CAAC,CAAC;QACvC,CAAC;aAAM,CAAC;YACN,UAAU,CAAC,GAAG,CAAC,GAAG,YAAY,CAAC,UAAU,CAAC,CAAC;QAC7C,CAAC;IACH,CAAC;IACD,OAAO,UAAU,CAAC;AACpB,CAAC;AAED,SAAS,SAAS,CAAC,GAAW;IAC5B,OAAO,GAAG,KAAK,WAAW,IAAI,GAAG,KAAK,WAAW,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,UAAU,CAAC;AAC/F,CAAC;AAED,SAAS,kBAAkB,CAAC,KAAa;IACvC,MAAM,YAAY,GAAG,MAAM,CAAC,KAAK,CAAC,CAAC;IACnC,OAAO,MAAM,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,CAAC,KAAK,CAAC;AACnE,CAAC;AAED,MAAM,UAAU,YAAY,CAAC,IAA6B;IACxD,MAAM,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC;IAC7B,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,CAAC,IAAI,EAAE,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC3D,MAAM,IAAI,KAAK,CAAC,uBAAuB,CAAC,CAAC;IAC3C,CAAC;IACD,OAAO,KAAK,CAAC;AACf,CAAC"}
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED