integrate-sdk 0.8.73-dev.0 → 0.8.75-dev.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/dist/adapters/auto-routes.js +51 -2
- package/dist/adapters/base-handler.d.ts +5 -0
- package/dist/adapters/base-handler.d.ts.map +1 -1
- package/dist/adapters/index.js +51 -2
- package/dist/adapters/nextjs.js +51 -2
- package/dist/adapters/node.js +51 -2
- package/dist/adapters/svelte-kit.js +51 -2
- package/dist/adapters/tanstack-start.js +51 -2
- package/dist/index.js +51 -2
- package/dist/oauth.js +51 -2
- package/dist/server.js +51 -2
- package/dist/src/adapters/base-handler.d.ts +5 -0
- package/dist/src/adapters/base-handler.d.ts.map +1 -1
- package/dist/src/integrations/airtable.d.ts +2 -0
- package/dist/src/integrations/airtable.d.ts.map +1 -1
- package/dist/src/integrations/calcom.d.ts +2 -0
- package/dist/src/integrations/calcom.d.ts.map +1 -1
- package/dist/src/integrations/figma.d.ts +2 -0
- package/dist/src/integrations/figma.d.ts.map +1 -1
- package/dist/src/integrations/gcal.d.ts +2 -0
- package/dist/src/integrations/gcal.d.ts.map +1 -1
- package/dist/src/integrations/generic.d.ts +2 -0
- package/dist/src/integrations/generic.d.ts.map +1 -1
- package/dist/src/integrations/github.d.ts +2 -0
- package/dist/src/integrations/github.d.ts.map +1 -1
- package/dist/src/integrations/gmail.d.ts +2 -0
- package/dist/src/integrations/gmail.d.ts.map +1 -1
- package/dist/src/integrations/gworkspace.d.ts +2 -0
- package/dist/src/integrations/gworkspace.d.ts.map +1 -1
- package/dist/src/integrations/hubspot-client.d.ts +212 -229
- package/dist/src/integrations/hubspot-client.d.ts.map +1 -1
- package/dist/src/integrations/hubspot.d.ts +3 -1
- package/dist/src/integrations/hubspot.d.ts.map +1 -1
- package/dist/src/integrations/intercom.d.ts +2 -0
- package/dist/src/integrations/intercom.d.ts.map +1 -1
- package/dist/src/integrations/linear.d.ts +2 -0
- package/dist/src/integrations/linear.d.ts.map +1 -1
- package/dist/src/integrations/notion.d.ts +2 -0
- package/dist/src/integrations/notion.d.ts.map +1 -1
- package/dist/src/integrations/onedrive.d.ts +2 -0
- package/dist/src/integrations/onedrive.d.ts.map +1 -1
- package/dist/src/integrations/outlook.d.ts +2 -0
- package/dist/src/integrations/outlook.d.ts.map +1 -1
- package/dist/src/integrations/polar.d.ts +2 -0
- package/dist/src/integrations/polar.d.ts.map +1 -1
- package/dist/src/integrations/ramp.d.ts +2 -0
- package/dist/src/integrations/ramp.d.ts.map +1 -1
- package/dist/src/integrations/slack.d.ts +2 -0
- package/dist/src/integrations/slack.d.ts.map +1 -1
- package/dist/src/integrations/stripe.d.ts +2 -0
- package/dist/src/integrations/stripe.d.ts.map +1 -1
- package/dist/src/integrations/todoist.d.ts +2 -0
- package/dist/src/integrations/todoist.d.ts.map +1 -1
- package/dist/src/integrations/types.d.ts +2 -0
- package/dist/src/integrations/types.d.ts.map +1 -1
- package/dist/src/integrations/vercel.d.ts +2 -0
- package/dist/src/integrations/vercel.d.ts.map +1 -1
- package/dist/src/integrations/whatsapp.d.ts +2 -0
- package/dist/src/integrations/whatsapp.d.ts.map +1 -1
- package/dist/src/integrations/youtube.d.ts +2 -0
- package/dist/src/integrations/youtube.d.ts.map +1 -1
- package/dist/src/integrations/zendesk.d.ts +2 -0
- package/dist/src/integrations/zendesk.d.ts.map +1 -1
- package/dist/src/server.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -92,276 +92,259 @@ export interface HubSpotTicket {
|
|
|
92
92
|
updatedAt: string;
|
|
93
93
|
archived: boolean;
|
|
94
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* HubSpot Owner
|
|
97
|
+
*/
|
|
98
|
+
export interface HubSpotOwner {
|
|
99
|
+
id: string;
|
|
100
|
+
email: string;
|
|
101
|
+
firstName: string;
|
|
102
|
+
lastName: string;
|
|
103
|
+
userId: number;
|
|
104
|
+
createdAt: string;
|
|
105
|
+
updatedAt: string;
|
|
106
|
+
archived: boolean;
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* HubSpot Pipeline
|
|
110
|
+
*/
|
|
111
|
+
export interface HubSpotPipeline {
|
|
112
|
+
id: string;
|
|
113
|
+
label: string;
|
|
114
|
+
displayOrder: number;
|
|
115
|
+
stages: HubSpotPipelineStage[];
|
|
116
|
+
createdAt: string;
|
|
117
|
+
updatedAt: string;
|
|
118
|
+
archived: boolean;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* HubSpot Pipeline Stage
|
|
122
|
+
*/
|
|
123
|
+
export interface HubSpotPipelineStage {
|
|
124
|
+
id: string;
|
|
125
|
+
label: string;
|
|
126
|
+
displayOrder: number;
|
|
127
|
+
metadata: Record<string, string>;
|
|
128
|
+
createdAt: string;
|
|
129
|
+
updatedAt: string;
|
|
130
|
+
archived: boolean;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* HubSpot Note
|
|
134
|
+
*/
|
|
135
|
+
export interface HubSpotNote {
|
|
136
|
+
id: string;
|
|
137
|
+
properties: {
|
|
138
|
+
hs_note_body?: string;
|
|
139
|
+
hs_timestamp?: string;
|
|
140
|
+
hubspot_owner_id?: string;
|
|
141
|
+
[key: string]: any;
|
|
142
|
+
};
|
|
143
|
+
createdAt: string;
|
|
144
|
+
updatedAt: string;
|
|
145
|
+
archived: boolean;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* HubSpot Task
|
|
149
|
+
*/
|
|
150
|
+
export interface HubSpotTask {
|
|
151
|
+
id: string;
|
|
152
|
+
properties: {
|
|
153
|
+
hs_task_subject?: string;
|
|
154
|
+
hs_task_body?: string;
|
|
155
|
+
hs_task_status?: string;
|
|
156
|
+
hs_task_priority?: string;
|
|
157
|
+
hs_task_type?: string;
|
|
158
|
+
hs_timestamp?: string;
|
|
159
|
+
hubspot_owner_id?: string;
|
|
160
|
+
[key: string]: any;
|
|
161
|
+
};
|
|
162
|
+
createdAt: string;
|
|
163
|
+
updatedAt: string;
|
|
164
|
+
archived: boolean;
|
|
165
|
+
}
|
|
166
|
+
/**
|
|
167
|
+
* HubSpot Association
|
|
168
|
+
*/
|
|
169
|
+
export interface HubSpotAssociation {
|
|
170
|
+
from: {
|
|
171
|
+
id: string;
|
|
172
|
+
};
|
|
173
|
+
to: {
|
|
174
|
+
id: string;
|
|
175
|
+
};
|
|
176
|
+
type: string;
|
|
177
|
+
}
|
|
95
178
|
/**
|
|
96
179
|
* HubSpot Integration Client Interface
|
|
97
180
|
* Provides type-safe methods for all HubSpot operations
|
|
98
181
|
*/
|
|
99
182
|
export interface HubSpotIntegrationClient {
|
|
100
|
-
/**
|
|
101
|
-
* List contacts
|
|
102
|
-
*
|
|
103
|
-
* @example
|
|
104
|
-
* ```typescript
|
|
105
|
-
* const contacts = await client.hubspot.listContacts({
|
|
106
|
-
* limit: 50,
|
|
107
|
-
* properties: ["email", "firstname", "lastname"]
|
|
108
|
-
* });
|
|
109
|
-
* ```
|
|
110
|
-
*/
|
|
111
183
|
listContacts(params?: {
|
|
112
|
-
/** Maximum number of results */
|
|
113
184
|
limit?: number;
|
|
114
|
-
/** Pagination cursor */
|
|
115
185
|
after?: string;
|
|
116
|
-
/** Properties to return */
|
|
117
|
-
properties?: string[];
|
|
118
|
-
/** Associations to include */
|
|
119
|
-
associations?: string[];
|
|
120
186
|
}): Promise<MCPToolCallResponse>;
|
|
121
|
-
/**
|
|
122
|
-
* Get contact details
|
|
123
|
-
*
|
|
124
|
-
* @example
|
|
125
|
-
* ```typescript
|
|
126
|
-
* const contact = await client.hubspot.getContact({
|
|
127
|
-
* contact_id: "123456"
|
|
128
|
-
* });
|
|
129
|
-
* ```
|
|
130
|
-
*/
|
|
131
187
|
getContact(params: {
|
|
132
|
-
/** Contact ID */
|
|
133
188
|
contact_id: string;
|
|
134
|
-
/** Properties to return */
|
|
135
|
-
properties?: string[];
|
|
136
|
-
/** Associations to include */
|
|
137
|
-
associations?: string[];
|
|
138
189
|
}): Promise<MCPToolCallResponse>;
|
|
139
|
-
/**
|
|
140
|
-
* Create a new contact
|
|
141
|
-
*
|
|
142
|
-
* @example
|
|
143
|
-
* ```typescript
|
|
144
|
-
* const contact = await client.hubspot.createContact({
|
|
145
|
-
* properties: {
|
|
146
|
-
* email: "user@example.com",
|
|
147
|
-
* firstname: "John",
|
|
148
|
-
* lastname: "Doe"
|
|
149
|
-
* }
|
|
150
|
-
* });
|
|
151
|
-
* ```
|
|
152
|
-
*/
|
|
153
190
|
createContact(params: {
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
website?: string;
|
|
162
|
-
lifecyclestage?: string;
|
|
163
|
-
[key: string]: any;
|
|
164
|
-
};
|
|
191
|
+
email?: string;
|
|
192
|
+
firstname?: string;
|
|
193
|
+
lastname?: string;
|
|
194
|
+
phone?: string;
|
|
195
|
+
company?: string;
|
|
196
|
+
website?: string;
|
|
197
|
+
lifecyclestage?: string;
|
|
165
198
|
}): Promise<MCPToolCallResponse>;
|
|
166
|
-
/**
|
|
167
|
-
* Update a contact
|
|
168
|
-
*
|
|
169
|
-
* @example
|
|
170
|
-
* ```typescript
|
|
171
|
-
* await client.hubspot.updateContact({
|
|
172
|
-
* contact_id: "123456",
|
|
173
|
-
* properties: {
|
|
174
|
-
* phone: "+1234567890"
|
|
175
|
-
* }
|
|
176
|
-
* });
|
|
177
|
-
* ```
|
|
178
|
-
*/
|
|
179
199
|
updateContact(params: {
|
|
180
|
-
/** Contact ID */
|
|
181
200
|
contact_id: string;
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
};
|
|
201
|
+
email?: string;
|
|
202
|
+
firstname?: string;
|
|
203
|
+
lastname?: string;
|
|
204
|
+
phone?: string;
|
|
205
|
+
company?: string;
|
|
206
|
+
website?: string;
|
|
207
|
+
lifecyclestage?: string;
|
|
208
|
+
}): Promise<MCPToolCallResponse>;
|
|
209
|
+
deleteContact(params: {
|
|
210
|
+
contact_id: string;
|
|
193
211
|
}): Promise<MCPToolCallResponse>;
|
|
194
|
-
/**
|
|
195
|
-
* List companies
|
|
196
|
-
*
|
|
197
|
-
* @example
|
|
198
|
-
* ```typescript
|
|
199
|
-
* const companies = await client.hubspot.listCompanies({
|
|
200
|
-
* limit: 50,
|
|
201
|
-
* properties: ["name", "domain"]
|
|
202
|
-
* });
|
|
203
|
-
* ```
|
|
204
|
-
*/
|
|
205
212
|
listCompanies(params?: {
|
|
206
|
-
/** Maximum number of results */
|
|
207
213
|
limit?: number;
|
|
208
|
-
/** Pagination cursor */
|
|
209
214
|
after?: string;
|
|
210
|
-
/** Properties to return */
|
|
211
|
-
properties?: string[];
|
|
212
|
-
/** Associations to include */
|
|
213
|
-
associations?: string[];
|
|
214
215
|
}): Promise<MCPToolCallResponse>;
|
|
215
|
-
/**
|
|
216
|
-
* Get company details
|
|
217
|
-
*
|
|
218
|
-
* @example
|
|
219
|
-
* ```typescript
|
|
220
|
-
* const company = await client.hubspot.getCompany({
|
|
221
|
-
* company_id: "123456"
|
|
222
|
-
* });
|
|
223
|
-
* ```
|
|
224
|
-
*/
|
|
225
216
|
getCompany(params: {
|
|
226
|
-
/** Company ID */
|
|
227
217
|
company_id: string;
|
|
228
|
-
/** Properties to return */
|
|
229
|
-
properties?: string[];
|
|
230
|
-
/** Associations to include */
|
|
231
|
-
associations?: string[];
|
|
232
218
|
}): Promise<MCPToolCallResponse>;
|
|
233
|
-
/**
|
|
234
|
-
* Create a new company
|
|
235
|
-
*
|
|
236
|
-
* @example
|
|
237
|
-
* ```typescript
|
|
238
|
-
* const company = await client.hubspot.createCompany({
|
|
239
|
-
* properties: {
|
|
240
|
-
* name: "Acme Corp",
|
|
241
|
-
* domain: "acme.com"
|
|
242
|
-
* }
|
|
243
|
-
* });
|
|
244
|
-
* ```
|
|
245
|
-
*/
|
|
246
219
|
createCompany(params: {
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
220
|
+
name?: string;
|
|
221
|
+
domain?: string;
|
|
222
|
+
phone?: string;
|
|
223
|
+
city?: string;
|
|
224
|
+
state?: string;
|
|
225
|
+
country?: string;
|
|
226
|
+
industry?: string;
|
|
227
|
+
numberofemployees?: string;
|
|
228
|
+
annualrevenue?: string;
|
|
229
|
+
}): Promise<MCPToolCallResponse>;
|
|
230
|
+
updateCompany(params: {
|
|
231
|
+
company_id: string;
|
|
232
|
+
name?: string;
|
|
233
|
+
domain?: string;
|
|
234
|
+
phone?: string;
|
|
235
|
+
city?: string;
|
|
236
|
+
state?: string;
|
|
237
|
+
country?: string;
|
|
238
|
+
industry?: string;
|
|
239
|
+
numberofemployees?: string;
|
|
240
|
+
annualrevenue?: string;
|
|
241
|
+
}): Promise<MCPToolCallResponse>;
|
|
242
|
+
deleteCompany(params: {
|
|
243
|
+
company_id: string;
|
|
260
244
|
}): Promise<MCPToolCallResponse>;
|
|
261
|
-
/**
|
|
262
|
-
* List deals
|
|
263
|
-
*
|
|
264
|
-
* @example
|
|
265
|
-
* ```typescript
|
|
266
|
-
* const deals = await client.hubspot.listDeals({
|
|
267
|
-
* limit: 50,
|
|
268
|
-
* properties: ["dealname", "amount", "dealstage"]
|
|
269
|
-
* });
|
|
270
|
-
* ```
|
|
271
|
-
*/
|
|
272
245
|
listDeals(params?: {
|
|
273
|
-
/** Maximum number of results */
|
|
274
246
|
limit?: number;
|
|
275
|
-
/** Pagination cursor */
|
|
276
247
|
after?: string;
|
|
277
|
-
/** Properties to return */
|
|
278
|
-
properties?: string[];
|
|
279
|
-
/** Associations to include */
|
|
280
|
-
associations?: string[];
|
|
281
248
|
}): Promise<MCPToolCallResponse>;
|
|
282
|
-
/**
|
|
283
|
-
* Get deal details
|
|
284
|
-
*
|
|
285
|
-
* @example
|
|
286
|
-
* ```typescript
|
|
287
|
-
* const deal = await client.hubspot.getDeal({
|
|
288
|
-
* deal_id: "123456"
|
|
289
|
-
* });
|
|
290
|
-
* ```
|
|
291
|
-
*/
|
|
292
249
|
getDeal(params: {
|
|
293
|
-
/** Deal ID */
|
|
294
250
|
deal_id: string;
|
|
295
|
-
/** Properties to return */
|
|
296
|
-
properties?: string[];
|
|
297
|
-
/** Associations to include */
|
|
298
|
-
associations?: string[];
|
|
299
251
|
}): Promise<MCPToolCallResponse>;
|
|
300
|
-
/**
|
|
301
|
-
* Create a new deal
|
|
302
|
-
*
|
|
303
|
-
* @example
|
|
304
|
-
* ```typescript
|
|
305
|
-
* const deal = await client.hubspot.createDeal({
|
|
306
|
-
* properties: {
|
|
307
|
-
* dealname: "New Deal",
|
|
308
|
-
* amount: "10000",
|
|
309
|
-
* dealstage: "appointmentscheduled"
|
|
310
|
-
* }
|
|
311
|
-
* });
|
|
312
|
-
* ```
|
|
313
|
-
*/
|
|
314
252
|
createDeal(params: {
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
253
|
+
dealname?: string;
|
|
254
|
+
dealstage?: string;
|
|
255
|
+
pipeline?: string;
|
|
256
|
+
amount?: string;
|
|
257
|
+
closedate?: string;
|
|
258
|
+
dealtype?: string;
|
|
259
|
+
description?: string;
|
|
260
|
+
}): Promise<MCPToolCallResponse>;
|
|
261
|
+
updateDeal(params: {
|
|
262
|
+
deal_id: string;
|
|
263
|
+
dealname?: string;
|
|
264
|
+
dealstage?: string;
|
|
265
|
+
pipeline?: string;
|
|
266
|
+
amount?: string;
|
|
267
|
+
closedate?: string;
|
|
268
|
+
dealtype?: string;
|
|
269
|
+
description?: string;
|
|
270
|
+
}): Promise<MCPToolCallResponse>;
|
|
271
|
+
deleteDeal(params: {
|
|
272
|
+
deal_id: string;
|
|
326
273
|
}): Promise<MCPToolCallResponse>;
|
|
327
|
-
/**
|
|
328
|
-
* List support tickets
|
|
329
|
-
*
|
|
330
|
-
* @example
|
|
331
|
-
* ```typescript
|
|
332
|
-
* const tickets = await client.hubspot.listTickets({
|
|
333
|
-
* limit: 50,
|
|
334
|
-
* properties: ["subject", "content", "hs_pipeline_stage"]
|
|
335
|
-
* });
|
|
336
|
-
* ```
|
|
337
|
-
*/
|
|
338
274
|
listTickets(params?: {
|
|
339
|
-
/** Maximum number of results */
|
|
340
275
|
limit?: number;
|
|
341
|
-
/** Pagination cursor */
|
|
342
276
|
after?: string;
|
|
343
|
-
/** Properties to return */
|
|
344
|
-
properties?: string[];
|
|
345
|
-
/** Associations to include */
|
|
346
|
-
associations?: string[];
|
|
347
277
|
}): Promise<MCPToolCallResponse>;
|
|
348
|
-
/**
|
|
349
|
-
* Get ticket details
|
|
350
|
-
*
|
|
351
|
-
* @example
|
|
352
|
-
* ```typescript
|
|
353
|
-
* const ticket = await client.hubspot.getTicket({
|
|
354
|
-
* ticket_id: "123456"
|
|
355
|
-
* });
|
|
356
|
-
* ```
|
|
357
|
-
*/
|
|
358
278
|
getTicket(params: {
|
|
359
|
-
/** Ticket ID */
|
|
360
279
|
ticket_id: string;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
280
|
+
}): Promise<MCPToolCallResponse>;
|
|
281
|
+
createTicket(params: {
|
|
282
|
+
subject: string;
|
|
283
|
+
content?: string;
|
|
284
|
+
hs_pipeline?: string;
|
|
285
|
+
hs_pipeline_stage?: string;
|
|
286
|
+
hs_ticket_priority?: string;
|
|
287
|
+
hs_ticket_category?: string;
|
|
288
|
+
}): Promise<MCPToolCallResponse>;
|
|
289
|
+
updateTicket(params: {
|
|
290
|
+
ticket_id: string;
|
|
291
|
+
subject?: string;
|
|
292
|
+
content?: string;
|
|
293
|
+
hs_pipeline?: string;
|
|
294
|
+
hs_pipeline_stage?: string;
|
|
295
|
+
hs_ticket_priority?: string;
|
|
296
|
+
hs_ticket_category?: string;
|
|
297
|
+
}): Promise<MCPToolCallResponse>;
|
|
298
|
+
deleteTicket(params: {
|
|
299
|
+
ticket_id: string;
|
|
300
|
+
}): Promise<MCPToolCallResponse>;
|
|
301
|
+
searchCrm(params: {
|
|
302
|
+
object_type: string;
|
|
303
|
+
query?: string;
|
|
304
|
+
filter_property?: string;
|
|
305
|
+
filter_operator?: string;
|
|
306
|
+
filter_value?: string;
|
|
307
|
+
limit?: number;
|
|
308
|
+
after?: string;
|
|
309
|
+
}): Promise<MCPToolCallResponse>;
|
|
310
|
+
createNote(params: {
|
|
311
|
+
body: string;
|
|
312
|
+
timestamp?: string;
|
|
313
|
+
owner_id?: string;
|
|
314
|
+
associated_object_type?: string;
|
|
315
|
+
associated_object_id?: string;
|
|
316
|
+
}): Promise<MCPToolCallResponse>;
|
|
317
|
+
createTask(params: {
|
|
318
|
+
subject: string;
|
|
319
|
+
due_date?: string;
|
|
320
|
+
body?: string;
|
|
321
|
+
status?: string;
|
|
322
|
+
priority?: string;
|
|
323
|
+
task_type?: string;
|
|
324
|
+
owner_id?: string;
|
|
325
|
+
associated_object_type?: string;
|
|
326
|
+
associated_object_id?: string;
|
|
327
|
+
}): Promise<MCPToolCallResponse>;
|
|
328
|
+
listOwners(params?: {
|
|
329
|
+
limit?: number;
|
|
330
|
+
after?: string;
|
|
331
|
+
}): Promise<MCPToolCallResponse>;
|
|
332
|
+
getOwner(params: {
|
|
333
|
+
owner_id: string;
|
|
334
|
+
}): Promise<MCPToolCallResponse>;
|
|
335
|
+
listPipelines(params: {
|
|
336
|
+
object_type: string;
|
|
337
|
+
}): Promise<MCPToolCallResponse>;
|
|
338
|
+
listPipelineStages(params: {
|
|
339
|
+
object_type: string;
|
|
340
|
+
pipeline_id: string;
|
|
341
|
+
}): Promise<MCPToolCallResponse>;
|
|
342
|
+
createAssociation(params: {
|
|
343
|
+
from_object_type: string;
|
|
344
|
+
from_object_id: string;
|
|
345
|
+
to_object_type: string;
|
|
346
|
+
to_object_id: string;
|
|
347
|
+
association_type_id: string;
|
|
365
348
|
}): Promise<MCPToolCallResponse>;
|
|
366
349
|
}
|
|
367
350
|
//# sourceMappingURL=hubspot-client.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hubspot-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot-client.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"hubspot-client.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot-client.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,6 +17,8 @@ export interface HubSpotIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** Additional OAuth scopes (default: CRM scopes for contacts, companies, deals, tickets) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
}
|
|
@@ -24,7 +26,7 @@ export interface HubSpotIntegrationConfig {
|
|
|
24
26
|
* Default HubSpot tools that this integration enables
|
|
25
27
|
* These should match the tool names exposed by your MCP server
|
|
26
28
|
*/
|
|
27
|
-
declare const HUBSPOT_TOOLS: readonly ["hubspot_list_contacts", "hubspot_get_contact", "hubspot_create_contact", "hubspot_update_contact", "hubspot_list_companies", "hubspot_get_company", "hubspot_create_company", "hubspot_list_deals", "hubspot_get_deal", "hubspot_create_deal", "hubspot_list_tickets", "hubspot_get_ticket"];
|
|
29
|
+
declare const HUBSPOT_TOOLS: readonly ["hubspot_list_contacts", "hubspot_get_contact", "hubspot_create_contact", "hubspot_update_contact", "hubspot_delete_contact", "hubspot_list_companies", "hubspot_get_company", "hubspot_create_company", "hubspot_update_company", "hubspot_delete_company", "hubspot_list_deals", "hubspot_get_deal", "hubspot_create_deal", "hubspot_update_deal", "hubspot_delete_deal", "hubspot_list_tickets", "hubspot_get_ticket", "hubspot_create_ticket", "hubspot_update_ticket", "hubspot_delete_ticket", "hubspot_search_crm", "hubspot_create_note", "hubspot_create_task", "hubspot_list_owners", "hubspot_get_owner", "hubspot_list_pipelines", "hubspot_list_pipeline_stages", "hubspot_create_association"];
|
|
28
30
|
export declare function hubspotIntegration(config?: HubSpotIntegrationConfig): MCPIntegration<"hubspot">;
|
|
29
31
|
/**
|
|
30
32
|
* Export tool names for type inference
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hubspot.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,sEAAsE;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4FAA4F;IAC5F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"hubspot.d.ts","sourceRoot":"","sources":["../../../src/integrations/hubspot.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,sEAAsE;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,8EAA8E;IAC9E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4FAA4F;IAC5F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,wrBAuCT,CAAC;AAGX,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,wBAA6B,GAAG,cAAc,CAAC,SAAS,CAAC,CAsCnG;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,CAAC;AAExD;;GAEG;AACH,YAAY,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -17,6 +17,8 @@ export interface IntercomIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** OAuth scopes (Intercom uses app-level permissions, typically empty) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intercom.d.ts","sourceRoot":"","sources":["../../../src/integrations/intercom.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,kQAUV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"intercom.d.ts","sourceRoot":"","sources":["../../../src/integrations/intercom.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,kQAUV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,CA4BtG;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;AAE1D;;GAEG;AACH,YAAY,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -17,6 +17,8 @@ export interface LinearIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** Additional OAuth scopes (default: ['read', 'write', 'issues:create', 'comments:create']) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"linear.d.ts","sourceRoot":"","sources":["../../../src/integrations/linear.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,uBAAuB;IACtC,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,4EAA4E;IAC5E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+FAA+F;IAC/F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,YAAY,0zBAyDR,CAAC;AAGX,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,uBAA4B,GAAG,cAAc,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"linear.d.ts","sourceRoot":"","sources":["../../../src/integrations/linear.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,uBAAuB;IACtC,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,4EAA4E;IAC5E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+FAA+F;IAC/F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,YAAY,0zBAyDR,CAAC;AAGX,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,uBAA4B,GAAG,cAAc,CAAC,QAAQ,CAAC,CA4BhG;AAED;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAEtD;;GAEG;AACH,YAAY,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -10,6 +10,8 @@ export interface NotionIntegrationConfig {
|
|
|
10
10
|
clientSecret?: string;
|
|
11
11
|
/** OAuth redirect URI (optional - auto-detected from environment) */
|
|
12
12
|
redirectUri?: string;
|
|
13
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
14
|
+
optionalScopes?: string[];
|
|
13
15
|
/**
|
|
14
16
|
* Notion OAuth owner parameter
|
|
15
17
|
* - 'user': Integration will be added to the user's workspace (default)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notion.d.ts","sourceRoot":"","sources":["../../../src/integrations/notion.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAK9D,MAAM,WAAW,uBAAuB;IACtC,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,4EAA4E;IAC5E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,qEAAqE;IACrE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;CAC9B;AAED;;;GAGG;AACH,QAAA,MAAM,YAAY,2rBAsCR,CAAC;AAEX;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,uBAA4B,GAAG,cAAc,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"notion.d.ts","sourceRoot":"","sources":["../../../src/integrations/notion.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAK9D,MAAM,WAAW,uBAAuB;IACtC,oEAAoE;IACpE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,4EAA4E;IAC5E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,qEAAqE;IACrE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B;;;;OAIG;IACH,KAAK,CAAC,EAAE,MAAM,GAAG,WAAW,CAAC;CAC9B;AAED;;;GAGG;AACH,QAAA,MAAM,YAAY,2rBAsCR,CAAC;AAEX;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,GAAE,uBAA4B,GAAG,cAAc,CAAC,QAAQ,CAAC,CA+BhG;AAED;;GAEG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,YAAY,CAAC,MAAM,CAAC,CAAC;AAEtD;;GAEG;AACH,YAAY,EAAE,uBAAuB,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -17,6 +17,8 @@ export interface OneDriveIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** Additional OAuth scopes (default: ['Files.Read', 'Files.ReadWrite', 'offline_access']) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onedrive.d.ts","sourceRoot":"","sources":["../../../src/integrations/onedrive.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6FAA6F;IAC7F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,4UAaV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"onedrive.d.ts","sourceRoot":"","sources":["../../../src/integrations/onedrive.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,yBAAyB;IACxC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6FAA6F;IAC7F,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,cAAc,4UAaV,CAAC;AAGX,wBAAgB,mBAAmB,CAAC,MAAM,GAAE,yBAA8B,GAAG,cAAc,CAAC,UAAU,CAAC,CA4BtG;AAED;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,cAAc,CAAC,MAAM,CAAC,CAAC;AAE1D;;GAEG;AACH,YAAY,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC"}
|
|
@@ -17,6 +17,8 @@ export interface OutlookIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** Additional OAuth scopes (default: ['Mail.Read', 'Mail.Send', 'Calendars.ReadWrite', 'Contacts.Read']) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"outlook.d.ts","sourceRoot":"","sources":["../../../src/integrations/outlook.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4GAA4G;IAC5G,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,yNAUT,CAAC;AAGX,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,wBAA6B,GAAG,cAAc,CAAC,SAAS,CAAC,
|
|
1
|
+
{"version":3,"file":"outlook.d.ts","sourceRoot":"","sources":["../../../src/integrations/outlook.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,wBAAwB;IACvC,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gFAAgF;IAChF,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,4GAA4G;IAC5G,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED;;;GAGG;AACH,QAAA,MAAM,aAAa,yNAUT,CAAC;AAGX,wBAAgB,kBAAkB,CAAC,MAAM,GAAE,wBAA6B,GAAG,cAAc,CAAC,SAAS,CAAC,CA4BnG;AAED;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,CAAC;AAExD;;GAEG;AACH,YAAY,EAAE,wBAAwB,EAAE,MAAM,qBAAqB,CAAC"}
|
|
@@ -17,6 +17,8 @@ export interface PolarIntegrationConfig {
|
|
|
17
17
|
clientSecret?: string;
|
|
18
18
|
/** Additional OAuth scopes (default includes read/write for products, subscriptions, customers, orders, benefits, license_keys, checkout_links, discounts, metrics, organizations) */
|
|
19
19
|
scopes?: string[];
|
|
20
|
+
/** Optional OAuth scopes (user may choose to grant or deny) */
|
|
21
|
+
optionalScopes?: string[];
|
|
20
22
|
/** OAuth redirect URI */
|
|
21
23
|
redirectUri?: string;
|
|
22
24
|
/** Polar API base URL (default: https://api.polar.sh) */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"polar.d.ts","sourceRoot":"","sources":["../../../src/integrations/polar.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,kEAAkE;IAClE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sLAAsL;IACtL,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,43BAuDP,CAAC;AAGX,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,
|
|
1
|
+
{"version":3,"file":"polar.d.ts","sourceRoot":"","sources":["../../../src/integrations/polar.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAe,MAAM,YAAY,CAAC;AAM9D;;;;;;GAMG;AACH,MAAM,WAAW,sBAAsB;IACrC,kEAAkE;IAClE,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0EAA0E;IAC1E,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,sLAAsL;IACtL,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,+DAA+D;IAC/D,cAAc,CAAC,EAAE,MAAM,EAAE,CAAC;IAC1B,yBAAyB;IACzB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;GAGG;AACH,QAAA,MAAM,WAAW,43BAuDP,CAAC;AAGX,wBAAgB,gBAAgB,CAAC,MAAM,GAAE,sBAA2B,GAAG,cAAc,CAAC,OAAO,CAAC,CAwC7F;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,OAAO,WAAW,CAAC,MAAM,CAAC,CAAC;AAEpD;;GAEG;AACH,YAAY,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC"}
|