listbee-mcp 0.1.0 → 0.2.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 +24 -0
- package/dist/generated/meta.d.ts +8 -0
- package/dist/generated/meta.d.ts.map +1 -0
- package/dist/generated/meta.js +93 -0
- package/dist/generated/meta.js.map +1 -0
- package/dist/generated/schemas.d.ts +381 -0
- package/dist/generated/schemas.d.ts.map +1 -0
- package/dist/generated/schemas.js +25 -0
- package/dist/generated/schemas.js.map +1 -0
- package/dist/index.js +62 -65
- package/dist/index.js.map +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +49 -46
- package/dist/server.js.map +1 -1
- package/dist/tools/orders.d.ts +1 -0
- package/dist/tools/orders.d.ts.map +1 -1
- package/dist/tools/orders.js +13 -0
- package/dist/tools/orders.js.map +1 -1
- package/dist/transports/http.d.ts +7 -0
- package/dist/transports/http.d.ts.map +1 -0
- package/dist/transports/http.js +96 -0
- package/dist/transports/http.js.map +1 -0
- package/dist/transports/stdio.d.ts +7 -0
- package/dist/transports/stdio.d.ts.map +1 -0
- package/dist/transports/stdio.js +18 -0
- package/dist/transports/stdio.js.map +1 -0
- package/mcp-tools.yaml +18 -0
- package/package.json +9 -4
- package/dist/schemas.d.ts +0 -87
- package/dist/schemas.d.ts.map +0 -1
- package/dist/schemas.js +0 -137
- package/dist/schemas.js.map +0 -1
package/dist/schemas.d.ts
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
export declare const createListingSchema: {
|
|
3
|
-
name: z.ZodString;
|
|
4
|
-
price: z.ZodNumber;
|
|
5
|
-
description: z.ZodOptional<z.ZodString>;
|
|
6
|
-
tagline: z.ZodOptional<z.ZodString>;
|
|
7
|
-
stock: z.ZodOptional<z.ZodNumber>;
|
|
8
|
-
cover: z.ZodOptional<z.ZodString>;
|
|
9
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
10
|
-
};
|
|
11
|
-
export declare const getListingSchema: {
|
|
12
|
-
listing_id: z.ZodString;
|
|
13
|
-
};
|
|
14
|
-
export declare const updateListingSchema: {
|
|
15
|
-
listing_id: z.ZodString;
|
|
16
|
-
name: z.ZodOptional<z.ZodString>;
|
|
17
|
-
slug: z.ZodOptional<z.ZodString>;
|
|
18
|
-
price: z.ZodOptional<z.ZodNumber>;
|
|
19
|
-
description: z.ZodOptional<z.ZodString>;
|
|
20
|
-
tagline: z.ZodOptional<z.ZodString>;
|
|
21
|
-
stock: z.ZodOptional<z.ZodNumber>;
|
|
22
|
-
cover: z.ZodOptional<z.ZodString>;
|
|
23
|
-
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
24
|
-
};
|
|
25
|
-
export declare const listListingsSchema: {
|
|
26
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
27
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
28
|
-
};
|
|
29
|
-
export declare const publishListingSchema: {
|
|
30
|
-
listing_id: z.ZodString;
|
|
31
|
-
};
|
|
32
|
-
export declare const setDeliverablesSchema: {
|
|
33
|
-
listing_id: z.ZodString;
|
|
34
|
-
deliverables: z.ZodArray<z.ZodObject<{
|
|
35
|
-
type: z.ZodEnum<["file", "url", "text"]>;
|
|
36
|
-
token: z.ZodOptional<z.ZodString>;
|
|
37
|
-
value: z.ZodOptional<z.ZodString>;
|
|
38
|
-
label: z.ZodOptional<z.ZodString>;
|
|
39
|
-
}, "strip", z.ZodTypeAny, {
|
|
40
|
-
type: "url" | "text" | "file";
|
|
41
|
-
token?: string | undefined;
|
|
42
|
-
value?: string | undefined;
|
|
43
|
-
label?: string | undefined;
|
|
44
|
-
}, {
|
|
45
|
-
type: "url" | "text" | "file";
|
|
46
|
-
token?: string | undefined;
|
|
47
|
-
value?: string | undefined;
|
|
48
|
-
label?: string | undefined;
|
|
49
|
-
}>, "many">;
|
|
50
|
-
};
|
|
51
|
-
export declare const removeDeliverablesSchema: {
|
|
52
|
-
listing_id: z.ZodString;
|
|
53
|
-
};
|
|
54
|
-
export declare const deleteListingSchema: {
|
|
55
|
-
listing_id: z.ZodString;
|
|
56
|
-
};
|
|
57
|
-
export declare const uploadFileSchema: {
|
|
58
|
-
url: z.ZodString;
|
|
59
|
-
filename: z.ZodOptional<z.ZodString>;
|
|
60
|
-
};
|
|
61
|
-
export declare const listOrdersSchema: {
|
|
62
|
-
cursor: z.ZodOptional<z.ZodString>;
|
|
63
|
-
limit: z.ZodOptional<z.ZodNumber>;
|
|
64
|
-
};
|
|
65
|
-
export declare const getOrderSchema: {
|
|
66
|
-
order_id: z.ZodString;
|
|
67
|
-
};
|
|
68
|
-
export declare const deliverOrderSchema: {
|
|
69
|
-
order_id: z.ZodString;
|
|
70
|
-
deliverables: z.ZodArray<z.ZodObject<{
|
|
71
|
-
type: z.ZodEnum<["file", "url", "text"]>;
|
|
72
|
-
token: z.ZodOptional<z.ZodString>;
|
|
73
|
-
value: z.ZodOptional<z.ZodString>;
|
|
74
|
-
label: z.ZodOptional<z.ZodString>;
|
|
75
|
-
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
type: "url" | "text" | "file";
|
|
77
|
-
token?: string | undefined;
|
|
78
|
-
value?: string | undefined;
|
|
79
|
-
label?: string | undefined;
|
|
80
|
-
}, {
|
|
81
|
-
type: "url" | "text" | "file";
|
|
82
|
-
token?: string | undefined;
|
|
83
|
-
value?: string | undefined;
|
|
84
|
-
label?: string | undefined;
|
|
85
|
-
}>, "many">;
|
|
86
|
-
};
|
|
87
|
-
//# sourceMappingURL=schemas.d.ts.map
|
package/dist/schemas.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.d.ts","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAkCxB,eAAO,MAAM,mBAAmB;;;;;;;;CA6B/B,CAAC;AAEF,eAAO,MAAM,gBAAgB;;CAE5B,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;CA6B/B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;CAG9B,CAAC;AAEF,eAAO,MAAM,oBAAoB;;CAEhC,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;CAMjC,CAAC;AAEF,eAAO,MAAM,wBAAwB;;CAEpC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;CAE/B,CAAC;AAIF,eAAO,MAAM,gBAAgB;;;CAa5B,CAAC;AAIF,eAAO,MAAM,gBAAgB;;;CAG5B,CAAC;AAEF,eAAO,MAAM,cAAc;;CAE1B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;CAM9B,CAAC"}
|
package/dist/schemas.js
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import { z } from "zod";
|
|
2
|
-
// --- Shared field descriptions ---
|
|
3
|
-
const listingIdDesc = "Listing ID (lst_...). You MUST use an actual listing ID from a previous response.";
|
|
4
|
-
const orderIdDesc = "Order ID (ord_...). You MUST use an actual order ID from a previous response.";
|
|
5
|
-
const cursorDesc = "Pagination cursor from a previous list response. Omit to start from the beginning.";
|
|
6
|
-
const limitDesc = "Number of items to return (1-100). Defaults to 20.";
|
|
7
|
-
// --- Deliverable schema (reused in set_deliverables and deliver_order) ---
|
|
8
|
-
const deliverableSchema = z.object({
|
|
9
|
-
type: z
|
|
10
|
-
.enum(["file", "url", "text"])
|
|
11
|
-
.describe("Deliverable type: 'file' (uploaded file token), 'url' (link), or 'text' (plain text)."),
|
|
12
|
-
token: z
|
|
13
|
-
.string()
|
|
14
|
-
.optional()
|
|
15
|
-
.describe("File token from upload_file. Required when type is 'file'."),
|
|
16
|
-
value: z
|
|
17
|
-
.string()
|
|
18
|
-
.optional()
|
|
19
|
-
.describe("URL or text content. Required when type is 'url' or 'text'."),
|
|
20
|
-
label: z
|
|
21
|
-
.string()
|
|
22
|
-
.optional()
|
|
23
|
-
.describe("Human-readable label shown to the buyer (e.g. 'Download link')."),
|
|
24
|
-
});
|
|
25
|
-
// --- Listing tools ---
|
|
26
|
-
export const createListingSchema = {
|
|
27
|
-
name: z.string().describe("Product name shown to buyers."),
|
|
28
|
-
price: z
|
|
29
|
-
.number()
|
|
30
|
-
.int()
|
|
31
|
-
.min(100)
|
|
32
|
-
.describe("Price in minor units (cents). Minimum $1.00 (100 cents)."),
|
|
33
|
-
description: z
|
|
34
|
-
.string()
|
|
35
|
-
.optional()
|
|
36
|
-
.describe("Product description shown on the product page. Supports markdown."),
|
|
37
|
-
tagline: z
|
|
38
|
-
.string()
|
|
39
|
-
.optional()
|
|
40
|
-
.describe("Short tagline displayed below the product name."),
|
|
41
|
-
stock: z
|
|
42
|
-
.number()
|
|
43
|
-
.int()
|
|
44
|
-
.min(0)
|
|
45
|
-
.optional()
|
|
46
|
-
.describe("Available stock quantity. Omit for unlimited."),
|
|
47
|
-
cover: z
|
|
48
|
-
.string()
|
|
49
|
-
.optional()
|
|
50
|
-
.describe("File token for cover image (from upload_file)."),
|
|
51
|
-
metadata: z
|
|
52
|
-
.record(z.unknown())
|
|
53
|
-
.optional()
|
|
54
|
-
.describe("Arbitrary key-value metadata attached to the listing."),
|
|
55
|
-
};
|
|
56
|
-
export const getListingSchema = {
|
|
57
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
58
|
-
};
|
|
59
|
-
export const updateListingSchema = {
|
|
60
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
61
|
-
name: z.string().optional().describe("New product name."),
|
|
62
|
-
slug: z
|
|
63
|
-
.string()
|
|
64
|
-
.optional()
|
|
65
|
-
.describe("New URL slug. Must be globally unique."),
|
|
66
|
-
price: z
|
|
67
|
-
.number()
|
|
68
|
-
.int()
|
|
69
|
-
.min(100)
|
|
70
|
-
.optional()
|
|
71
|
-
.describe("New price in minor units (cents)."),
|
|
72
|
-
description: z.string().optional().describe("New product description."),
|
|
73
|
-
tagline: z.string().optional().describe("New tagline."),
|
|
74
|
-
stock: z
|
|
75
|
-
.number()
|
|
76
|
-
.int()
|
|
77
|
-
.min(0)
|
|
78
|
-
.optional()
|
|
79
|
-
.describe("New stock quantity. Omit for unlimited."),
|
|
80
|
-
cover: z
|
|
81
|
-
.string()
|
|
82
|
-
.optional()
|
|
83
|
-
.describe("New cover image file token."),
|
|
84
|
-
metadata: z
|
|
85
|
-
.record(z.unknown())
|
|
86
|
-
.optional()
|
|
87
|
-
.describe("Replace all metadata with these key-value pairs."),
|
|
88
|
-
};
|
|
89
|
-
export const listListingsSchema = {
|
|
90
|
-
cursor: z.string().optional().describe(cursorDesc),
|
|
91
|
-
limit: z.number().int().min(1).max(100).optional().describe(limitDesc),
|
|
92
|
-
};
|
|
93
|
-
export const publishListingSchema = {
|
|
94
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
95
|
-
};
|
|
96
|
-
export const setDeliverablesSchema = {
|
|
97
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
98
|
-
deliverables: z
|
|
99
|
-
.array(deliverableSchema)
|
|
100
|
-
.min(1)
|
|
101
|
-
.describe("Array of deliverables to attach. At least one required."),
|
|
102
|
-
};
|
|
103
|
-
export const removeDeliverablesSchema = {
|
|
104
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
105
|
-
};
|
|
106
|
-
export const deleteListingSchema = {
|
|
107
|
-
listing_id: z.string().describe(listingIdDesc),
|
|
108
|
-
};
|
|
109
|
-
// --- File tools ---
|
|
110
|
-
export const uploadFileSchema = {
|
|
111
|
-
url: z
|
|
112
|
-
.string()
|
|
113
|
-
.url()
|
|
114
|
-
.describe("Public URL of a file to upload. The server fetches this URL — only provide URLs from the user or trusted sources."),
|
|
115
|
-
filename: z
|
|
116
|
-
.string()
|
|
117
|
-
.optional()
|
|
118
|
-
.describe("Filename for the uploaded file. If omitted, derived from the URL."),
|
|
119
|
-
};
|
|
120
|
-
// --- Order tools ---
|
|
121
|
-
export const listOrdersSchema = {
|
|
122
|
-
cursor: z.string().optional().describe(cursorDesc),
|
|
123
|
-
limit: z.number().int().min(1).max(100).optional().describe(limitDesc),
|
|
124
|
-
};
|
|
125
|
-
export const getOrderSchema = {
|
|
126
|
-
order_id: z.string().describe(orderIdDesc),
|
|
127
|
-
};
|
|
128
|
-
export const deliverOrderSchema = {
|
|
129
|
-
order_id: z.string().describe(orderIdDesc),
|
|
130
|
-
deliverables: z
|
|
131
|
-
.array(deliverableSchema)
|
|
132
|
-
.min(1)
|
|
133
|
-
.describe("Deliverables to send to the buyer."),
|
|
134
|
-
};
|
|
135
|
-
// --- Stripe tools (no input params) ---
|
|
136
|
-
// start_stripe_connect has no input schema
|
|
137
|
-
//# sourceMappingURL=schemas.js.map
|
package/dist/schemas.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../src/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,oCAAoC;AAEpC,MAAM,aAAa,GACjB,mFAAmF,CAAC;AACtF,MAAM,WAAW,GACf,+EAA+E,CAAC;AAClF,MAAM,UAAU,GACd,oFAAoF,CAAC;AACvF,MAAM,SAAS,GAAG,oDAAoD,CAAC;AAEvE,4EAA4E;AAE5E,MAAM,iBAAiB,GAAG,CAAC,CAAC,MAAM,CAAC;IACjC,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,CAAC,MAAM,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;SAC7B,QAAQ,CAAC,uFAAuF,CAAC;IACpG,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,4DAA4D,CAAC;IACzE,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iEAAiE,CAAC;CAC/E,CAAC,CAAC;AAEH,wBAAwB;AAExB,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,+BAA+B,CAAC;IAC1D,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,GAAG,CAAC;SACR,QAAQ,CAAC,0DAA0D,CAAC;IACvE,WAAW,EAAE,CAAC;SACX,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,mEAAmE,CAAC;IAChF,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,+CAA+C,CAAC;IAC5D,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,QAAQ,EAAE,CAAC;SACR,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,uDAAuD,CAAC;CACrE,CAAC;AAEF,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;CAC/C,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC9C,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,mBAAmB,CAAC;IACzD,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,wCAAwC,CAAC;IACrD,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,GAAG,CAAC;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,mCAAmC,CAAC;IAChD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,0BAA0B,CAAC;IACvE,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,cAAc,CAAC;IACvD,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,GAAG,EAAE;SACL,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,6BAA6B,CAAC;IAC1C,QAAQ,EAAE,CAAC;SACR,MAAM,CAAC,CAAC,CAAC,OAAO,EAAE,CAAC;SACnB,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;CAChE,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC;IAClD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC;CACvE,CAAC;AAEF,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;CAC/C,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG;IACnC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;IAC9C,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,iBAAiB,CAAC;SACxB,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CAAC,yDAAyD,CAAC;CACvE,CAAC;AAEF,MAAM,CAAC,MAAM,wBAAwB,GAAG;IACtC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;CAC/C,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG;IACjC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC;CAC/C,CAAC;AAEF,qBAAqB;AAErB,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,GAAG,EAAE,CAAC;SACH,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,CACP,mHAAmH,CACpH;IACH,QAAQ,EAAE,CAAC;SACR,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,mEAAmE,CACpE;CACJ,CAAC;AAEF,sBAAsB;AAEtB,MAAM,CAAC,MAAM,gBAAgB,GAAG;IAC9B,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,UAAU,CAAC;IAClD,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC;CACvE,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,WAAW,CAAC;CAC3C,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG;IAChC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,WAAW,CAAC;IAC1C,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,iBAAiB,CAAC;SACxB,GAAG,CAAC,CAAC,CAAC;SACN,QAAQ,CAAC,oCAAoC,CAAC;CAClD,CAAC;AAEF,yCAAyC;AACzC,2CAA2C"}
|