@auxiora/connector-microsoft 1.0.0 → 1.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@auxiora/connector-microsoft",
3
- "version": "1.0.0",
3
+ "version": "1.3.0",
4
4
  "description": "Microsoft 365 connector: Outlook Mail, Calendar, OneDrive, Contacts via Graph API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -12,11 +12,17 @@
12
12
  }
13
13
  },
14
14
  "dependencies": {
15
- "@auxiora/connectors": "1.0.0"
15
+ "@auxiora/connectors": "1.3.0"
16
16
  },
17
17
  "engines": {
18
18
  "node": ">=22.0.0"
19
19
  },
20
+ "publishConfig": {
21
+ "access": "public"
22
+ },
23
+ "files": [
24
+ "dist/"
25
+ ],
20
26
  "scripts": {
21
27
  "build": "tsc",
22
28
  "clean": "rm -rf dist",
package/src/connector.ts DELETED
@@ -1,679 +0,0 @@
1
- import { defineConnector } from '@auxiora/connectors';
2
- import type { TriggerEvent } from '@auxiora/connectors';
3
-
4
- const GRAPH_BASE = 'https://graph.microsoft.com/v1.0';
5
-
6
- async function graphFetch(token: string, path: string, options?: { method?: string; body?: unknown }) {
7
- const res = await fetch(`${GRAPH_BASE}${path}`, {
8
- method: options?.method ?? 'GET',
9
- headers: {
10
- 'Authorization': `Bearer ${token}`,
11
- 'Content-Type': 'application/json',
12
- },
13
- body: options?.body ? JSON.stringify(options.body) : undefined,
14
- });
15
- if (!res.ok) {
16
- const err = await res.json().catch(() => ({})) as { error?: { message?: string } };
17
- throw new Error(`Graph API error: ${res.status} ${err.error?.message ?? res.statusText}`);
18
- }
19
- if (res.status === 204) return undefined;
20
- return res.json();
21
- }
22
-
23
- export const microsoftConnector = defineConnector({
24
- id: 'microsoft-365',
25
- name: 'Microsoft 365',
26
- description: 'Integration with Outlook Mail, Calendar, OneDrive, and Contacts via Microsoft Graph API',
27
- version: '1.0.0',
28
- category: 'productivity',
29
- icon: 'microsoft',
30
-
31
- auth: {
32
- type: 'oauth2',
33
- oauth2: {
34
- authUrl: 'https://login.microsoftonline.com/common/oauth2/v2/authorize',
35
- tokenUrl: 'https://login.microsoftonline.com/common/oauth2/v2/token',
36
- scopes: [
37
- 'Mail.ReadWrite',
38
- 'Mail.Send',
39
- 'Calendars.ReadWrite',
40
- 'Contacts.Read',
41
- 'Files.ReadWrite',
42
- 'User.Read',
43
- ],
44
- },
45
- },
46
-
47
- actions: [
48
- // --- Mail ---
49
- {
50
- id: 'mail-list-messages',
51
- name: 'List Mail Messages',
52
- description: 'List recent emails from Outlook',
53
- trustMinimum: 1,
54
- trustDomain: 'email',
55
- reversible: false,
56
- sideEffects: false,
57
- params: {
58
- folderId: { type: 'string', description: 'Mail folder ID' },
59
- maxResults: { type: 'number', description: 'Max messages to return', default: 10 },
60
- query: { type: 'string', description: 'OData filter query' },
61
- },
62
- },
63
- {
64
- id: 'mail-read-message',
65
- name: 'Read Mail Message',
66
- description: 'Read a specific email message',
67
- trustMinimum: 1,
68
- trustDomain: 'email',
69
- reversible: false,
70
- sideEffects: false,
71
- params: {
72
- messageId: { type: 'string', description: 'Message ID', required: true },
73
- },
74
- },
75
- {
76
- id: 'mail-send',
77
- name: 'Send Email',
78
- description: 'Send an email via Outlook',
79
- trustMinimum: 3,
80
- trustDomain: 'email',
81
- reversible: false,
82
- sideEffects: true,
83
- params: {
84
- to: { type: 'string', description: 'Recipient email', required: true },
85
- subject: { type: 'string', description: 'Email subject', required: true },
86
- body: { type: 'string', description: 'Email body', required: true },
87
- cc: { type: 'string', description: 'CC recipients' },
88
- bcc: { type: 'string', description: 'BCC recipients' },
89
- },
90
- },
91
- {
92
- id: 'mail-reply',
93
- name: 'Reply to Email',
94
- description: 'Reply to an email message',
95
- trustMinimum: 3,
96
- trustDomain: 'email',
97
- reversible: false,
98
- sideEffects: true,
99
- params: {
100
- messageId: { type: 'string', description: 'Message ID to reply to', required: true },
101
- body: { type: 'string', description: 'Reply body', required: true },
102
- replyAll: { type: 'boolean', description: 'Reply to all recipients' },
103
- },
104
- },
105
- {
106
- id: 'mail-forward',
107
- name: 'Forward Email',
108
- description: 'Forward an email message',
109
- trustMinimum: 3,
110
- trustDomain: 'email',
111
- reversible: false,
112
- sideEffects: true,
113
- params: {
114
- messageId: { type: 'string', description: 'Message ID to forward', required: true },
115
- to: { type: 'string', description: 'Recipient email', required: true },
116
- comment: { type: 'string', description: 'Comment to include' },
117
- },
118
- },
119
- {
120
- id: 'mail-move',
121
- name: 'Move Email',
122
- description: 'Move an email to a different folder',
123
- trustMinimum: 2,
124
- trustDomain: 'email',
125
- reversible: true,
126
- sideEffects: true,
127
- params: {
128
- messageId: { type: 'string', description: 'Message ID', required: true },
129
- destinationFolderId: { type: 'string', description: 'Destination folder ID', required: true },
130
- },
131
- },
132
- {
133
- id: 'mail-archive',
134
- name: 'Archive Email',
135
- description: 'Archive an email message',
136
- trustMinimum: 2,
137
- trustDomain: 'email',
138
- reversible: true,
139
- sideEffects: true,
140
- params: {
141
- messageId: { type: 'string', description: 'Message ID', required: true },
142
- },
143
- },
144
- {
145
- id: 'mail-flag',
146
- name: 'Flag Email',
147
- description: 'Flag an email message for follow-up',
148
- trustMinimum: 1,
149
- trustDomain: 'email',
150
- reversible: true,
151
- sideEffects: true,
152
- params: {
153
- messageId: { type: 'string', description: 'Message ID', required: true },
154
- flagStatus: { type: 'string', description: 'Flag status', default: 'flagged' },
155
- },
156
- },
157
- {
158
- id: 'mail-search',
159
- name: 'Search Mail',
160
- description: 'Search emails in Outlook',
161
- trustMinimum: 1,
162
- trustDomain: 'email',
163
- reversible: false,
164
- sideEffects: false,
165
- params: {
166
- query: { type: 'string', description: 'Search query', required: true },
167
- maxResults: { type: 'number', description: 'Max results', default: 10 },
168
- },
169
- },
170
- {
171
- id: 'mail-draft',
172
- name: 'Create Draft',
173
- description: 'Create a draft email in Outlook',
174
- trustMinimum: 2,
175
- trustDomain: 'email',
176
- reversible: true,
177
- sideEffects: true,
178
- params: {
179
- to: { type: 'string', description: 'Recipient email', required: true },
180
- subject: { type: 'string', description: 'Email subject', required: true },
181
- body: { type: 'string', description: 'Email body', required: true },
182
- },
183
- },
184
- // --- Calendar ---
185
- {
186
- id: 'calendar-list-events',
187
- name: 'List Calendar Events',
188
- description: 'List upcoming events from Outlook Calendar',
189
- trustMinimum: 1,
190
- trustDomain: 'calendar',
191
- reversible: false,
192
- sideEffects: false,
193
- params: {
194
- calendarId: { type: 'string', description: 'Calendar ID' },
195
- maxResults: { type: 'number', description: 'Max events to return', default: 10 },
196
- startDateTime: { type: 'string', description: 'Start time (ISO 8601)' },
197
- endDateTime: { type: 'string', description: 'End time (ISO 8601)' },
198
- },
199
- },
200
- {
201
- id: 'calendar-create-event',
202
- name: 'Create Calendar Event',
203
- description: 'Create a new event in Outlook Calendar',
204
- trustMinimum: 2,
205
- trustDomain: 'calendar',
206
- reversible: true,
207
- sideEffects: true,
208
- params: {
209
- subject: { type: 'string', description: 'Event subject', required: true },
210
- start: { type: 'string', description: 'Start time (ISO 8601)', required: true },
211
- end: { type: 'string', description: 'End time (ISO 8601)', required: true },
212
- body: { type: 'string', description: 'Event body' },
213
- attendees: { type: 'array', description: 'List of attendee emails' },
214
- location: { type: 'string', description: 'Event location' },
215
- isOnlineMeeting: { type: 'boolean', description: 'Create as online meeting' },
216
- },
217
- },
218
- {
219
- id: 'calendar-update-event',
220
- name: 'Update Calendar Event',
221
- description: 'Update an existing calendar event',
222
- trustMinimum: 2,
223
- trustDomain: 'calendar',
224
- reversible: true,
225
- sideEffects: true,
226
- params: {
227
- eventId: { type: 'string', description: 'Event ID', required: true },
228
- subject: { type: 'string', description: 'Updated subject' },
229
- start: { type: 'string', description: 'Updated start time' },
230
- end: { type: 'string', description: 'Updated end time' },
231
- },
232
- },
233
- {
234
- id: 'calendar-delete-event',
235
- name: 'Delete Calendar Event',
236
- description: 'Delete a calendar event',
237
- trustMinimum: 3,
238
- trustDomain: 'calendar',
239
- reversible: false,
240
- sideEffects: true,
241
- params: {
242
- eventId: { type: 'string', description: 'Event ID', required: true },
243
- },
244
- },
245
- {
246
- id: 'calendar-find-availability',
247
- name: 'Find Availability',
248
- description: 'Find free time slots for attendees',
249
- trustMinimum: 1,
250
- trustDomain: 'calendar',
251
- reversible: false,
252
- sideEffects: false,
253
- params: {
254
- attendees: { type: 'array', description: 'List of attendee emails', required: true },
255
- startDateTime: { type: 'string', description: 'Start of window (ISO 8601)', required: true },
256
- endDateTime: { type: 'string', description: 'End of window (ISO 8601)', required: true },
257
- durationMinutes: { type: 'number', description: 'Desired slot duration in minutes', default: 30 },
258
- },
259
- },
260
- // --- Contacts ---
261
- {
262
- id: 'contacts-list',
263
- name: 'List Contacts',
264
- description: 'List contacts from Outlook',
265
- trustMinimum: 1,
266
- trustDomain: 'integrations',
267
- reversible: false,
268
- sideEffects: false,
269
- params: {
270
- maxResults: { type: 'number', description: 'Max contacts to return', default: 20 },
271
- search: { type: 'string', description: 'Search query' },
272
- },
273
- },
274
- {
275
- id: 'contacts-get',
276
- name: 'Get Contact',
277
- description: 'Get a specific contact',
278
- trustMinimum: 1,
279
- trustDomain: 'integrations',
280
- reversible: false,
281
- sideEffects: false,
282
- params: {
283
- contactId: { type: 'string', description: 'Contact ID', required: true },
284
- },
285
- },
286
- // --- OneDrive ---
287
- {
288
- id: 'files-list',
289
- name: 'List OneDrive Files',
290
- description: 'List files in OneDrive',
291
- trustMinimum: 1,
292
- trustDomain: 'files',
293
- reversible: false,
294
- sideEffects: false,
295
- params: {
296
- folderId: { type: 'string', description: 'Folder ID (default: root)' },
297
- maxResults: { type: 'number', description: 'Max files to return', default: 20 },
298
- },
299
- },
300
- {
301
- id: 'files-download',
302
- name: 'Download File',
303
- description: 'Download a file from OneDrive',
304
- trustMinimum: 1,
305
- trustDomain: 'files',
306
- reversible: false,
307
- sideEffects: false,
308
- params: {
309
- fileId: { type: 'string', description: 'File ID', required: true },
310
- },
311
- },
312
- {
313
- id: 'files-upload',
314
- name: 'Upload File',
315
- description: 'Upload a file to OneDrive',
316
- trustMinimum: 2,
317
- trustDomain: 'files',
318
- reversible: true,
319
- sideEffects: true,
320
- params: {
321
- name: { type: 'string', description: 'File name', required: true },
322
- content: { type: 'string', description: 'File content', required: true },
323
- folderId: { type: 'string', description: 'Parent folder ID' },
324
- },
325
- },
326
- {
327
- id: 'files-search',
328
- name: 'Search Files',
329
- description: 'Search files in OneDrive',
330
- trustMinimum: 1,
331
- trustDomain: 'files',
332
- reversible: false,
333
- sideEffects: false,
334
- params: {
335
- query: { type: 'string', description: 'Search query', required: true },
336
- maxResults: { type: 'number', description: 'Max results', default: 10 },
337
- },
338
- },
339
- ],
340
-
341
- triggers: [
342
- {
343
- id: 'new-email',
344
- name: 'New Email',
345
- description: 'Triggered when a new email arrives',
346
- type: 'poll',
347
- pollIntervalMs: 60_000,
348
- },
349
- {
350
- id: 'event-starting-soon',
351
- name: 'Event Starting Soon',
352
- description: 'Triggered when a calendar event is about to start',
353
- type: 'poll',
354
- pollIntervalMs: 60_000,
355
- },
356
- {
357
- id: 'calendar-event-created',
358
- name: 'Calendar Event Created',
359
- description: 'Triggered when a new calendar event is created',
360
- type: 'poll',
361
- pollIntervalMs: 300_000,
362
- },
363
- ],
364
-
365
- entities: [
366
- {
367
- id: 'email-message',
368
- name: 'Email Message',
369
- description: 'An Outlook email message',
370
- fields: { id: 'string', from: 'string', to: 'string', subject: 'string', bodyPreview: 'string', receivedDateTime: 'string', importance: 'string', isRead: 'string' },
371
- },
372
- {
373
- id: 'calendar-event',
374
- name: 'Calendar Event',
375
- description: 'An Outlook Calendar event',
376
- fields: { id: 'string', subject: 'string', start: 'string', end: 'string', attendees: 'array', location: 'string', isOnlineMeeting: 'string' },
377
- },
378
- {
379
- id: 'contact',
380
- name: 'Contact',
381
- description: 'An Outlook contact',
382
- fields: { id: 'string', displayName: 'string', emailAddresses: 'array', companyName: 'string', jobTitle: 'string' },
383
- },
384
- {
385
- id: 'drive-item',
386
- name: 'Drive Item',
387
- description: 'A OneDrive file or folder',
388
- fields: { id: 'string', name: 'string', size: 'number', lastModifiedDateTime: 'string', webUrl: 'string' },
389
- },
390
- ],
391
-
392
- async executeAction(actionId: string, params: Record<string, unknown>, token: string): Promise<unknown> {
393
- switch (actionId) {
394
- // --- Mail ---
395
- case 'mail-list-messages': {
396
- const folderId = (params.folderId as string) ?? 'inbox';
397
- const top = (params.maxResults as number) ?? 10;
398
- let path = `/me/mailFolders/${encodeURIComponent(folderId)}/messages?$top=${top}`;
399
- if (params.query) path += `&$filter=${encodeURIComponent(params.query as string)}`;
400
- const res = await graphFetch(token, path) as { value: unknown[] };
401
- return { messages: res.value, folderId };
402
- }
403
-
404
- case 'mail-read-message': {
405
- const msg = await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}`);
406
- return msg;
407
- }
408
-
409
- case 'mail-send': {
410
- const toRecipients = [{ emailAddress: { address: params.to as string } }];
411
- const ccRecipients = params.cc
412
- ? (params.cc as string).split(',').map(e => ({ emailAddress: { address: e.trim() } }))
413
- : undefined;
414
- const bccRecipients = params.bcc
415
- ? (params.bcc as string).split(',').map(e => ({ emailAddress: { address: e.trim() } }))
416
- : undefined;
417
- await graphFetch(token, '/me/sendMail', {
418
- method: 'POST',
419
- body: {
420
- message: {
421
- toRecipients,
422
- subject: params.subject as string,
423
- body: { contentType: 'Text', content: params.body as string },
424
- ...(ccRecipients ? { ccRecipients } : {}),
425
- ...(bccRecipients ? { bccRecipients } : {}),
426
- },
427
- },
428
- });
429
- return { status: 'sent' };
430
- }
431
-
432
- case 'mail-reply': {
433
- const action = params.replyAll ? 'replyAll' : 'reply';
434
- await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}/${action}`, {
435
- method: 'POST',
436
- body: { comment: params.body as string },
437
- });
438
- return { messageId: params.messageId, status: 'replied' };
439
- }
440
-
441
- case 'mail-forward': {
442
- await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}/forward`, {
443
- method: 'POST',
444
- body: {
445
- toRecipients: [{ emailAddress: { address: params.to as string } }],
446
- comment: (params.comment as string) ?? '',
447
- },
448
- });
449
- return { messageId: params.messageId, status: 'forwarded', to: params.to };
450
- }
451
-
452
- case 'mail-move': {
453
- const moved = await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}/move`, {
454
- method: 'POST',
455
- body: { destinationId: params.destinationFolderId as string },
456
- });
457
- return { messageId: (moved as { id: string }).id, status: 'moved', destinationFolderId: params.destinationFolderId };
458
- }
459
-
460
- case 'mail-archive': {
461
- const archived = await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}/move`, {
462
- method: 'POST',
463
- body: { destinationId: 'archive' },
464
- });
465
- return { messageId: (archived as { id: string }).id, status: 'archived' };
466
- }
467
-
468
- case 'mail-flag': {
469
- const flagged = await graphFetch(token, `/me/messages/${encodeURIComponent(params.messageId as string)}`, {
470
- method: 'PATCH',
471
- body: { flag: { flagStatus: (params.flagStatus as string) ?? 'flagged' } },
472
- });
473
- return { messageId: (flagged as { id: string }).id, status: 'flagged' };
474
- }
475
-
476
- case 'mail-search': {
477
- const top = (params.maxResults as number) ?? 10;
478
- const query = encodeURIComponent(`"${params.query as string}"`);
479
- const res = await graphFetch(token, `/me/messages?$search=${query}&$top=${top}`) as { value: unknown[] };
480
- return { messages: res.value, query: params.query };
481
- }
482
-
483
- case 'mail-draft': {
484
- const draft = await graphFetch(token, '/me/messages', {
485
- method: 'POST',
486
- body: {
487
- toRecipients: [{ emailAddress: { address: params.to as string } }],
488
- subject: params.subject as string,
489
- body: { contentType: 'Text', content: params.body as string },
490
- isDraft: true,
491
- },
492
- }) as { id: string };
493
- return { draftId: draft.id, status: 'created' };
494
- }
495
-
496
- // --- Calendar ---
497
- case 'calendar-list-events': {
498
- const top = (params.maxResults as number) ?? 10;
499
- let res: { value: unknown[] };
500
- if (params.startDateTime && params.endDateTime) {
501
- const start = encodeURIComponent(params.startDateTime as string);
502
- const end = encodeURIComponent(params.endDateTime as string);
503
- res = await graphFetch(token, `/me/calendarView?startDateTime=${start}&endDateTime=${end}&$top=${top}`) as { value: unknown[] };
504
- } else {
505
- res = await graphFetch(token, `/me/events?$top=${top}&$orderby=start/dateTime`) as { value: unknown[] };
506
- }
507
- return { events: res.value };
508
- }
509
-
510
- case 'calendar-create-event': {
511
- const attendees = params.attendees
512
- ? (params.attendees as string[]).map(email => ({
513
- emailAddress: { address: email },
514
- type: 'required',
515
- }))
516
- : undefined;
517
- const eventBody: Record<string, unknown> = {
518
- subject: params.subject as string,
519
- start: { dateTime: params.start as string, timeZone: 'UTC' },
520
- end: { dateTime: params.end as string, timeZone: 'UTC' },
521
- };
522
- if (params.body) eventBody.body = { contentType: 'Text', content: params.body as string };
523
- if (attendees) eventBody.attendees = attendees;
524
- if (params.location) eventBody.location = { displayName: params.location as string };
525
- if (params.isOnlineMeeting) eventBody.isOnlineMeeting = true;
526
- const created = await graphFetch(token, '/me/events', {
527
- method: 'POST',
528
- body: eventBody,
529
- }) as { id: string; subject: string };
530
- return { eventId: created.id, status: 'created', subject: created.subject };
531
- }
532
-
533
- case 'calendar-update-event': {
534
- const updates: Record<string, unknown> = {};
535
- if (params.subject) updates.subject = params.subject;
536
- if (params.start) updates.start = { dateTime: params.start as string, timeZone: 'UTC' };
537
- if (params.end) updates.end = { dateTime: params.end as string, timeZone: 'UTC' };
538
- const updated = await graphFetch(token, `/me/events/${encodeURIComponent(params.eventId as string)}`, {
539
- method: 'PATCH',
540
- body: updates,
541
- }) as { id: string };
542
- return { eventId: updated.id, status: 'updated' };
543
- }
544
-
545
- case 'calendar-delete-event': {
546
- await graphFetch(token, `/me/events/${encodeURIComponent(params.eventId as string)}`, {
547
- method: 'DELETE',
548
- });
549
- return { eventId: params.eventId, status: 'deleted' };
550
- }
551
-
552
- case 'calendar-find-availability': {
553
- const schedules = (params.attendees as string[]);
554
- const res = await graphFetch(token, '/me/calendar/getSchedule', {
555
- method: 'POST',
556
- body: {
557
- schedules,
558
- startTime: { dateTime: params.startDateTime as string, timeZone: 'UTC' },
559
- endTime: { dateTime: params.endDateTime as string, timeZone: 'UTC' },
560
- availabilityViewInterval: (params.durationMinutes as number) ?? 30,
561
- },
562
- });
563
- return res;
564
- }
565
-
566
- // --- Contacts ---
567
- case 'contacts-list': {
568
- const top = (params.maxResults as number) ?? 20;
569
- let path = `/me/contacts?$top=${top}`;
570
- if (params.search) path += `&$search="${encodeURIComponent(params.search as string)}"`;
571
- const res = await graphFetch(token, path) as { value: unknown[] };
572
- return { contacts: res.value };
573
- }
574
-
575
- case 'contacts-get': {
576
- const contact = await graphFetch(token, `/me/contacts/${encodeURIComponent(params.contactId as string)}`);
577
- return contact;
578
- }
579
-
580
- // --- OneDrive ---
581
- case 'files-list': {
582
- const top = (params.maxResults as number) ?? 20;
583
- const path = params.folderId
584
- ? `/me/drive/items/${encodeURIComponent(params.folderId as string)}/children?$top=${top}`
585
- : `/me/drive/root/children?$top=${top}`;
586
- const res = await graphFetch(token, path) as { value: unknown[] };
587
- return { files: res.value };
588
- }
589
-
590
- case 'files-download': {
591
- const downloadRes = await fetch(`${GRAPH_BASE}/me/drive/items/${encodeURIComponent(params.fileId as string)}/content`, {
592
- headers: { 'Authorization': `Bearer ${token}` },
593
- redirect: 'follow',
594
- });
595
- if (!downloadRes.ok) {
596
- throw new Error(`Graph API error: ${downloadRes.status} ${downloadRes.statusText}`);
597
- }
598
- const content = await downloadRes.text();
599
- return { fileId: params.fileId, content };
600
- }
601
-
602
- case 'files-upload': {
603
- const fileName = encodeURIComponent(params.name as string);
604
- const uploadPath = params.folderId
605
- ? `/me/drive/items/${encodeURIComponent(params.folderId as string)}:/${fileName}:/content`
606
- : `/me/drive/root:/${fileName}:/content`;
607
- const uploadRes = await fetch(`${GRAPH_BASE}${uploadPath}`, {
608
- method: 'PUT',
609
- headers: {
610
- 'Authorization': `Bearer ${token}`,
611
- 'Content-Type': 'application/octet-stream',
612
- },
613
- body: params.content as string,
614
- });
615
- if (!uploadRes.ok) {
616
- const err = await uploadRes.json().catch(() => ({})) as { error?: { message?: string } };
617
- throw new Error(`Graph API error: ${uploadRes.status} ${err.error?.message ?? uploadRes.statusText}`);
618
- }
619
- const uploaded = await uploadRes.json() as { id: string; name: string };
620
- return { fileId: uploaded.id, status: 'uploaded', name: uploaded.name };
621
- }
622
-
623
- case 'files-search': {
624
- const q = encodeURIComponent(params.query as string);
625
- const top = (params.maxResults as number) ?? 10;
626
- const res = await graphFetch(token, `/me/drive/root/search(q='${q}')?$top=${top}`) as { value: unknown[] };
627
- return { files: res.value, query: params.query };
628
- }
629
-
630
- default:
631
- throw new Error(`Unknown action: ${actionId}`);
632
- }
633
- },
634
-
635
- async pollTrigger(triggerId: string, token: string, lastPollAt?: number): Promise<TriggerEvent[]> {
636
- switch (triggerId) {
637
- case 'new-email': {
638
- const res = await graphFetch(token, '/me/mailFolders/inbox/messages?$orderby=receivedDateTime desc&$top=10') as { value: Array<{ id: string; receivedDateTime: string; subject?: string; from?: unknown }> };
639
- const since = lastPollAt ?? (Date.now() - 120_000);
640
- const newMessages = res.value.filter(m => new Date(m.receivedDateTime).getTime() > since);
641
- return newMessages.map(m => ({
642
- triggerId: 'new-email',
643
- connectorId: 'microsoft-365',
644
- timestamp: new Date(m.receivedDateTime).getTime(),
645
- data: { messageId: m.id, subject: m.subject, from: m.from },
646
- }));
647
- }
648
-
649
- case 'event-starting-soon': {
650
- const now = new Date();
651
- const soon = new Date(now.getTime() + 15 * 60_000);
652
- const start = encodeURIComponent(now.toISOString());
653
- const end = encodeURIComponent(soon.toISOString());
654
- const res = await graphFetch(token, `/me/calendarView?startDateTime=${start}&endDateTime=${end}&$top=10`) as { value: Array<{ id: string; subject?: string; start?: unknown; end?: unknown }> };
655
- return res.value.map(e => ({
656
- triggerId: 'event-starting-soon',
657
- connectorId: 'microsoft-365',
658
- timestamp: Date.now(),
659
- data: { eventId: e.id, subject: e.subject, start: e.start, end: e.end },
660
- }));
661
- }
662
-
663
- case 'calendar-event-created': {
664
- const res = await graphFetch(token, '/me/events?$orderby=createdDateTime desc&$top=10') as { value: Array<{ id: string; createdDateTime: string; subject?: string; start?: unknown }> };
665
- const since = lastPollAt ?? (Date.now() - 300_000);
666
- const newEvents = res.value.filter(e => new Date(e.createdDateTime).getTime() > since);
667
- return newEvents.map(e => ({
668
- triggerId: 'calendar-event-created',
669
- connectorId: 'microsoft-365',
670
- timestamp: new Date(e.createdDateTime).getTime(),
671
- data: { eventId: e.id, subject: e.subject, start: e.start },
672
- }));
673
- }
674
-
675
- default:
676
- return [];
677
- }
678
- },
679
- });
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export { microsoftConnector } from './connector.js';
@@ -1,294 +0,0 @@
1
- import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
2
- import { microsoftConnector } from '../src/connector.js';
3
-
4
- let fetchMock: ReturnType<typeof vi.fn>;
5
-
6
- beforeEach(() => {
7
- fetchMock = vi.fn();
8
- vi.stubGlobal('fetch', fetchMock);
9
- });
10
-
11
- afterEach(() => {
12
- vi.restoreAllMocks();
13
- });
14
-
15
- /** Helper to create a mock Response with JSON body */
16
- function mockJsonResponse(body: unknown, status = 200) {
17
- return { ok: true, status, json: async () => body, text: async () => JSON.stringify(body) };
18
- }
19
-
20
- /** Helper to create a mock 204 No Content response */
21
- function mockNoContentResponse() {
22
- return { ok: true, status: 204, json: async () => ({}), text: async () => '' };
23
- }
24
-
25
- describe('Microsoft 365 Connector', () => {
26
- it('should have correct metadata', () => {
27
- expect(microsoftConnector.id).toBe('microsoft-365');
28
- expect(microsoftConnector.name).toBe('Microsoft 365');
29
- expect(microsoftConnector.category).toBe('productivity');
30
- expect(microsoftConnector.version).toBe('1.0.0');
31
- });
32
-
33
- it('should use OAuth2 authentication with correct URLs', () => {
34
- expect(microsoftConnector.auth.type).toBe('oauth2');
35
- expect(microsoftConnector.auth.oauth2).toBeDefined();
36
- expect(microsoftConnector.auth.oauth2!.authUrl).toBe('https://login.microsoftonline.com/common/oauth2/v2/authorize');
37
- expect(microsoftConnector.auth.oauth2!.tokenUrl).toBe('https://login.microsoftonline.com/common/oauth2/v2/token');
38
- });
39
-
40
- it('should have correct OAuth2 scopes', () => {
41
- const scopes = microsoftConnector.auth.oauth2!.scopes;
42
- expect(scopes).toContain('Mail.ReadWrite');
43
- expect(scopes).toContain('Mail.Send');
44
- expect(scopes).toContain('Calendars.ReadWrite');
45
- expect(scopes).toContain('Contacts.Read');
46
- expect(scopes).toContain('Files.ReadWrite');
47
- expect(scopes).toContain('User.Read');
48
- expect(scopes).toHaveLength(6);
49
- });
50
-
51
- it('should define all mail actions', () => {
52
- const mailActions = microsoftConnector.actions.filter((a) => a.id.startsWith('mail-'));
53
- expect(mailActions).toHaveLength(10);
54
- const ids = mailActions.map((a) => a.id);
55
- expect(ids).toContain('mail-list-messages');
56
- expect(ids).toContain('mail-read-message');
57
- expect(ids).toContain('mail-send');
58
- expect(ids).toContain('mail-reply');
59
- expect(ids).toContain('mail-forward');
60
- expect(ids).toContain('mail-move');
61
- expect(ids).toContain('mail-archive');
62
- expect(ids).toContain('mail-flag');
63
- expect(ids).toContain('mail-search');
64
- expect(ids).toContain('mail-draft');
65
- });
66
-
67
- it('should define all calendar actions', () => {
68
- const calendarActions = microsoftConnector.actions.filter((a) => a.id.startsWith('calendar-'));
69
- expect(calendarActions).toHaveLength(5);
70
- const ids = calendarActions.map((a) => a.id);
71
- expect(ids).toContain('calendar-list-events');
72
- expect(ids).toContain('calendar-create-event');
73
- expect(ids).toContain('calendar-update-event');
74
- expect(ids).toContain('calendar-delete-event');
75
- expect(ids).toContain('calendar-find-availability');
76
- });
77
-
78
- it('should define all contacts actions', () => {
79
- const contactsActions = microsoftConnector.actions.filter((a) => a.id.startsWith('contacts-'));
80
- expect(contactsActions).toHaveLength(2);
81
- const ids = contactsActions.map((a) => a.id);
82
- expect(ids).toContain('contacts-list');
83
- expect(ids).toContain('contacts-get');
84
- });
85
-
86
- it('should define all files actions', () => {
87
- const filesActions = microsoftConnector.actions.filter((a) => a.id.startsWith('files-'));
88
- expect(filesActions).toHaveLength(4);
89
- const ids = filesActions.map((a) => a.id);
90
- expect(ids).toContain('files-list');
91
- expect(ids).toContain('files-download');
92
- expect(ids).toContain('files-upload');
93
- expect(ids).toContain('files-search');
94
- });
95
-
96
- it('should have all actions with required fields', () => {
97
- for (const action of microsoftConnector.actions) {
98
- expect(action.id).toBeTruthy();
99
- expect(action.name).toBeTruthy();
100
- expect(action.description).toBeTruthy();
101
- expect(typeof action.trustMinimum).toBe('number');
102
- expect(action.trustDomain).toBeTruthy();
103
- expect(typeof action.reversible).toBe('boolean');
104
- expect(typeof action.sideEffects).toBe('boolean');
105
- expect(action.params).toBeDefined();
106
- }
107
- });
108
-
109
- it('should define triggers', () => {
110
- expect(microsoftConnector.triggers).toHaveLength(3);
111
- const triggerIds = microsoftConnector.triggers.map((t) => t.id);
112
- expect(triggerIds).toContain('new-email');
113
- expect(triggerIds).toContain('event-starting-soon');
114
- expect(triggerIds).toContain('calendar-event-created');
115
- });
116
-
117
- it('should define entities', () => {
118
- expect(microsoftConnector.entities).toHaveLength(4);
119
- const entityIds = microsoftConnector.entities.map((e) => e.id);
120
- expect(entityIds).toContain('email-message');
121
- expect(entityIds).toContain('calendar-event');
122
- expect(entityIds).toContain('contact');
123
- expect(entityIds).toContain('drive-item');
124
- });
125
-
126
- it('should assign correct trust domains', () => {
127
- const mailAction = microsoftConnector.actions.find((a) => a.id === 'mail-send');
128
- expect(mailAction?.trustDomain).toBe('email');
129
-
130
- const calendarAction = microsoftConnector.actions.find((a) => a.id === 'calendar-create-event');
131
- expect(calendarAction?.trustDomain).toBe('calendar');
132
-
133
- const contactsAction = microsoftConnector.actions.find((a) => a.id === 'contacts-list');
134
- expect(contactsAction?.trustDomain).toBe('integrations');
135
-
136
- const filesAction = microsoftConnector.actions.find((a) => a.id === 'files-upload');
137
- expect(filesAction?.trustDomain).toBe('files');
138
- });
139
-
140
- it('should require higher trust for sending email', () => {
141
- const sendAction = microsoftConnector.actions.find((a) => a.id === 'mail-send');
142
- const readAction = microsoftConnector.actions.find((a) => a.id === 'mail-read-message');
143
- expect(sendAction!.trustMinimum).toBeGreaterThan(readAction!.trustMinimum);
144
- });
145
-
146
- // --- executeAction tests with fetch mocking ---
147
-
148
- it('should execute mail-list-messages action', async () => {
149
- // graphFetch GET /me/mailFolders/inbox/messages?$top=10 -> { value: [] }
150
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
151
- const result = await microsoftConnector.executeAction('mail-list-messages', {}, 'token');
152
- expect(result).toEqual({ messages: [], folderId: 'inbox' });
153
- });
154
-
155
- it('should execute mail-send action', async () => {
156
- // POST /me/sendMail returns 202 no content; mock as 204 so graphFetch returns undefined
157
- fetchMock.mockResolvedValueOnce(mockNoContentResponse());
158
- const result = await microsoftConnector.executeAction('mail-send', { to: 'a@b.com', subject: 'Hi', body: 'Hello' }, 'token') as any;
159
- expect(result.status).toBe('sent');
160
- });
161
-
162
- it('should execute mail-reply action', async () => {
163
- // POST /me/messages/{id}/reply returns no content
164
- fetchMock.mockResolvedValueOnce(mockNoContentResponse());
165
- const result = await microsoftConnector.executeAction('mail-reply', { messageId: 'm1', body: 'Reply' }, 'token') as any;
166
- expect(result.status).toBe('replied');
167
- });
168
-
169
- it('should execute mail-forward action', async () => {
170
- // POST /me/messages/{id}/forward returns no content
171
- fetchMock.mockResolvedValueOnce(mockNoContentResponse());
172
- const result = await microsoftConnector.executeAction('mail-forward', { messageId: 'm1', to: 'a@b.com' }, 'token') as any;
173
- expect(result.status).toBe('forwarded');
174
- expect(result.to).toBe('a@b.com');
175
- });
176
-
177
- it('should execute mail-move action', async () => {
178
- // POST /me/messages/{id}/move returns moved message with id
179
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ id: 'm1-moved' }));
180
- const result = await microsoftConnector.executeAction('mail-move', { messageId: 'm1', destinationFolderId: 'f1' }, 'token') as any;
181
- expect(result.status).toBe('moved');
182
- });
183
-
184
- it('should execute mail-archive action', async () => {
185
- // POST /me/messages/{id}/move with destinationId: 'archive' returns moved message
186
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ id: 'm1-archived' }));
187
- const result = await microsoftConnector.executeAction('mail-archive', { messageId: 'm1' }, 'token') as any;
188
- expect(result.status).toBe('archived');
189
- });
190
-
191
- it('should execute mail-flag action', async () => {
192
- // PATCH /me/messages/{id} returns updated message with id
193
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ id: 'm1' }));
194
- const result = await microsoftConnector.executeAction('mail-flag', { messageId: 'm1' }, 'token') as any;
195
- expect(result.status).toBe('flagged');
196
- });
197
-
198
- it('should execute calendar-list-events action', async () => {
199
- // GET /me/events?$top=10&$orderby=start/dateTime -> { value: [] }
200
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
201
- const result = await microsoftConnector.executeAction('calendar-list-events', {}, 'token');
202
- // Source returns { events: res.value } (no calendarId field)
203
- expect(result).toEqual({ events: [] });
204
- });
205
-
206
- it('should execute calendar-create-event action', async () => {
207
- // POST /me/events returns created event with id and subject
208
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ id: 'evt1', subject: 'Meeting' }));
209
- const result = await microsoftConnector.executeAction('calendar-create-event', {
210
- subject: 'Meeting',
211
- start: '2025-01-01T10:00:00Z',
212
- end: '2025-01-01T11:00:00Z',
213
- }, 'token') as any;
214
- expect(result.status).toBe('created');
215
- expect(result.subject).toBe('Meeting');
216
- });
217
-
218
- it('should execute calendar-delete-event action', async () => {
219
- // DELETE /me/events/{id} returns 204 no content
220
- fetchMock.mockResolvedValueOnce(mockNoContentResponse());
221
- const result = await microsoftConnector.executeAction('calendar-delete-event', { eventId: 'e1' }, 'token') as any;
222
- expect(result.status).toBe('deleted');
223
- });
224
-
225
- it('should execute calendar-find-availability action', async () => {
226
- // POST /me/calendar/getSchedule returns schedule data; source returns res directly
227
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ slots: [] }));
228
- const result = await microsoftConnector.executeAction('calendar-find-availability', { attendees: [], startDateTime: '', endDateTime: '' }, 'token');
229
- expect(result).toEqual({ slots: [] });
230
- });
231
-
232
- it('should execute contacts-list action', async () => {
233
- // GET /me/contacts?$top=20 -> { value: [] }
234
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
235
- const result = await microsoftConnector.executeAction('contacts-list', {}, 'token');
236
- expect(result).toEqual({ contacts: [] });
237
- });
238
-
239
- it('should execute contacts-get action', async () => {
240
- // GET /me/contacts/{id} returns contact object; source returns it directly
241
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ contactId: 'c1' }));
242
- const result = await microsoftConnector.executeAction('contacts-get', { contactId: 'c1' }, 'token') as any;
243
- expect(result.contactId).toBe('c1');
244
- });
245
-
246
- it('should execute files-list action', async () => {
247
- // GET /me/drive/root/children?$top=20 -> { value: [] }
248
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
249
- const result = await microsoftConnector.executeAction('files-list', {}, 'token');
250
- expect(result).toEqual({ files: [] });
251
- });
252
-
253
- it('should execute files-download action', async () => {
254
- // files-download uses fetch directly (not graphFetch), returns text content
255
- fetchMock.mockResolvedValueOnce({
256
- ok: true,
257
- status: 200,
258
- text: async () => 'file-content',
259
- });
260
- const result = await microsoftConnector.executeAction('files-download', { fileId: 'f1' }, 'token') as any;
261
- expect(result.fileId).toBe('f1');
262
- });
263
-
264
- it('should execute files-upload action', async () => {
265
- // files-upload uses fetch directly (PUT), returns { id, name }
266
- fetchMock.mockResolvedValueOnce({
267
- ok: true,
268
- status: 200,
269
- json: async () => ({ id: 'uploaded-id', name: 'test.txt' }),
270
- });
271
- const result = await microsoftConnector.executeAction('files-upload', { name: 'test.txt', content: 'data' }, 'token') as any;
272
- expect(result.status).toBe('uploaded');
273
- expect(result.name).toBe('test.txt');
274
- });
275
-
276
- it('should execute files-search action', async () => {
277
- // graphFetch GET /me/drive/root/search(q='...')?$top=10 -> { value: [] }
278
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
279
- const result = await microsoftConnector.executeAction('files-search', { query: 'test' }, 'token') as any;
280
- expect(result.query).toBe('test');
281
- });
282
-
283
- it('should throw for unknown action', async () => {
284
- await expect(microsoftConnector.executeAction('unknown', {}, 'token')).rejects.toThrow('Unknown action');
285
- });
286
-
287
- it('should return empty events from pollTrigger', async () => {
288
- // pollTrigger 'new-email' fetches inbox messages, filters by receivedDateTime > lastPollAt
289
- // Pass current time as lastPollAt so no messages match the filter
290
- fetchMock.mockResolvedValueOnce(mockJsonResponse({ value: [] }));
291
- const events = await microsoftConnector.pollTrigger!('new-email', 'token');
292
- expect(events).toEqual([]);
293
- });
294
- });
package/tsconfig.json DELETED
@@ -1,11 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.base.json",
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "rootDir": "./src"
6
- },
7
- "include": ["src/**/*"],
8
- "references": [
9
- { "path": "../connectors" }
10
- ]
11
- }
@@ -1 +0,0 @@
1
- {"fileNames":["../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../autonomy/dist/types.d.ts","../autonomy/dist/trust-engine.d.ts","../autonomy/dist/audit-trail.d.ts","../autonomy/dist/rollback.d.ts","../autonomy/dist/trust-gate.d.ts","../autonomy/dist/index.d.ts","../connectors/dist/types.d.ts","../connectors/dist/registry.d.ts","../connectors/dist/auth-manager.d.ts","../connectors/dist/executor.d.ts","../connectors/dist/trigger-manager.d.ts","../connectors/dist/define-connector.d.ts","../connectors/dist/index.d.ts","./src/connector.ts","./src/index.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/compatibility/iterators.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/globals.typedarray.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/buffer.buffer.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/globals.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/blob.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/console.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/crypto.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/domexception.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/encoding.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/events.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/utility.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/header.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/readable.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/fetch.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/formdata.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/connector.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client-stats.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/errors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/global-origin.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool-stats.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/handlers.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/balanced-pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/h2c-client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-call-history.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-client.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-pool.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/snapshot-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/mock-errors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-handler.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/retry-agent.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/api.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache-interceptor.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/interceptors.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/util.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cookies.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/patch.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/websocket.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/eventsource.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/content-type.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/cache.d.ts","../../node_modules/.pnpm/undici-types@7.16.0/node_modules/undici-types/index.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/fetch.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/importmeta.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/messaging.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/navigator.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/performance.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/storage.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/streams.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/timers.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/web-globals/url.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/assert.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/assert/strict.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/async_hooks.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/buffer.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/child_process.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/cluster.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/console.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/constants.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/crypto.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/dgram.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/dns.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/dns/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/domain.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/events.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/fs.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/fs/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/http.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/http2.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/https.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/inspector.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/inspector.generated.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/inspector/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/module.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/net.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/os.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/path.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/path/posix.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/path/win32.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/perf_hooks.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/process.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/punycode.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/querystring.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/quic.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/readline.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/readline/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/repl.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/sea.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/sqlite.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/stream.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/stream/consumers.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/stream/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/stream/web.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/string_decoder.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/test.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/test/reporters.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/timers.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/timers/promises.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/tls.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/trace_events.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/tty.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/url.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/util.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/util/types.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/v8.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/vm.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/wasi.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/worker_threads.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/zlib.d.ts","../../node_modules/.pnpm/@types+node@25.1.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[81,140,141,143,151,155,158,160,161,162,174],[81,142,143,151,155,158,160,161,162,174],[143,151,155,158,160,161,162,174],[81,143,151,155,158,160,161,162,174,182],[81,143,144,149,151,154,155,158,160,161,162,164,174,179,191],[81,143,144,145,151,154,155,158,160,161,162,174],[81,143,151,155,158,160,161,162,174],[81,143,146,151,155,158,160,161,162,174,192],[81,143,147,148,151,155,158,160,161,162,165,174],[81,143,148,151,155,158,160,161,162,174,179,188],[81,143,149,151,154,155,158,160,161,162,164,174],[81,142,143,150,151,155,158,160,161,162,174],[81,143,151,152,155,158,160,161,162,174],[81,143,151,153,154,155,158,160,161,162,174],[81,142,143,151,154,155,158,160,161,162,174],[81,143,151,154,155,156,158,160,161,162,174,179,191],[81,143,151,154,155,156,158,160,161,162,174,179,182],[81,130,143,151,154,155,157,158,160,161,162,164,174,179,191],[81,143,151,154,155,157,158,160,161,162,164,174,179,188,191],[81,143,151,155,157,158,159,160,161,162,174,179,188,191],[79,80,81,82,83,84,85,86,87,88,89,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[81,143,151,154,155,158,160,161,162,174],[81,143,151,155,158,160,162,174],[81,143,151,155,158,160,161,162,163,174,191],[81,143,151,154,155,158,160,161,162,164,174,179],[81,143,151,155,158,160,161,162,165,174],[81,143,151,155,158,160,161,162,166,174],[81,143,151,154,155,158,160,161,162,169,174],[81,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[81,143,151,155,158,160,161,162,171,174],[81,143,151,155,158,160,161,162,172,174],[81,143,148,151,155,158,160,161,162,164,174,182],[81,143,151,154,155,158,160,161,162,174,175],[81,143,151,155,158,160,161,162,174,176,192,195],[81,143,151,154,155,158,160,161,162,174,179,181,182],[81,143,151,155,158,160,161,162,174,180,182],[81,143,151,155,158,160,161,162,174,182,192],[81,143,151,155,158,160,161,162,174,183],[81,140,143,151,155,158,160,161,162,174,179,185],[81,143,151,155,158,160,161,162,174,179,184],[81,143,151,154,155,158,160,161,162,174,186,187],[81,143,151,155,158,160,161,162,174,186,187],[81,143,148,151,155,158,160,161,162,164,174,179,188],[81,143,151,155,158,160,161,162,174,189],[81,143,151,155,158,160,161,162,164,174,190],[81,143,151,155,157,158,160,161,162,172,174,191],[81,143,151,155,158,160,161,162,174,192,193],[81,143,148,151,155,158,160,161,162,174,193],[81,143,151,155,158,160,161,162,174,179,194],[81,143,151,155,158,160,161,162,163,174,195],[81,143,151,155,158,160,161,162,174,196],[81,143,146,151,155,158,160,161,162,174],[81,143,148,151,155,158,160,161,162,174],[81,143,151,155,158,160,161,162,174,192],[81,130,143,151,155,158,160,161,162,174],[81,143,151,155,158,160,161,162,174,191],[81,143,151,155,158,160,161,162,174,197],[81,143,151,155,158,160,161,162,169,174],[81,143,151,155,158,160,161,162,174,187],[81,130,143,151,154,155,156,158,160,161,162,169,174,179,182,191,194,195,197],[81,143,151,155,158,160,161,162,174,179,198],[81,96,99,102,103,143,151,155,158,160,161,162,174,191],[81,99,143,151,155,158,160,161,162,174,179,191],[81,99,103,143,151,155,158,160,161,162,174,191],[81,143,151,155,158,160,161,162,174,179],[81,93,143,151,155,158,160,161,162,174],[81,97,143,151,155,158,160,161,162,174],[81,95,96,99,143,151,155,158,160,161,162,174,191],[81,143,151,155,158,160,161,162,164,174,188],[81,143,151,155,158,160,161,162,174,199],[81,93,143,151,155,158,160,161,162,174,199],[81,95,99,143,151,155,158,160,161,162,164,174,191],[81,90,91,92,94,98,143,151,154,155,158,160,161,162,174,179,191],[81,99,107,115,143,151,155,158,160,161,162,174],[81,91,97,143,151,155,158,160,161,162,174],[81,99,124,125,143,151,155,158,160,161,162,174],[81,91,94,99,143,151,155,158,160,161,162,174,182,191,199],[81,99,143,151,155,158,160,161,162,174],[81,95,99,143,151,155,158,160,161,162,174,191],[81,90,143,151,155,158,160,161,162,174],[81,93,94,95,97,98,99,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,125,126,127,128,129,143,151,155,158,160,161,162,174],[81,99,117,120,143,151,155,158,160,161,162,174],[81,99,107,108,109,143,151,155,158,160,161,162,174],[81,97,99,108,110,143,151,155,158,160,161,162,174],[81,98,143,151,155,158,160,161,162,174],[81,91,93,99,143,151,155,158,160,161,162,174],[81,99,103,108,110,143,151,155,158,160,161,162,174],[81,103,143,151,155,158,160,161,162,174],[81,97,99,102,143,151,155,158,160,161,162,174,191],[81,91,95,99,107,143,151,155,158,160,161,162,174],[81,99,117,143,151,155,158,160,161,162,174],[81,110,143,151,155,158,160,161,162,174],[81,93,99,124,143,151,155,158,160,161,162,174,182,197,199],[64,81,143,151,155,158,160,161,162,174],[64,65,66,67,68,81,143,151,155,158,160,161,162,174],[64,66,81,143,151,155,158,160,161,162,174],[64,65,81,143,151,155,158,160,161,162,174],[76,81,143,151,155,158,160,161,162,174],[77,81,143,151,155,158,160,161,162,174],[70,81,143,151,155,158,160,161,162,174],[69,71,72,81,143,151,155,158,160,161,162,174],[70,71,72,73,74,75,81,143,151,155,158,160,161,162,174],[70,71,72,81,143,151,155,158,160,161,162,174],[69,81,143,151,155,158,160,161,162,174]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b79d8afa5f63a941b792d1961f843732636999b1923bda4e4a6d27c96d15c39","impliedFormat":99},{"version":"58966f3a2cc1ec0b189ffce6cc70fe99c61311c807f348adc71073d9eb0dd103","impliedFormat":99},{"version":"8eb4413a478a94ec66deb5c2da4ede9b88df649bbff511733b84927e52dd9a03","impliedFormat":99},{"version":"88ba2f77196f216493de4e88d966f27363b114a44e0fec72cb0b7b3b6c1fad76","impliedFormat":99},{"version":"1b4ac0bca7b60fa7721c6ef8f02961de85e4b3ccf0127842760fb68e0a8e4dd9","impliedFormat":99},{"version":"58d36f1908dc20ea730fe4175613f5995e8f7f2ec8c33408b1d4decdd82729e4","impliedFormat":99},{"version":"370e59232d06a73cea1b0e07d6dfbd4fefd434c4bd4edc93235b95aa2135ca5a","impliedFormat":99},{"version":"f32094b8c23f4d5b75a4a6fff3da6b8f9550cb645010f1d6881ab68ba537994d","impliedFormat":99},{"version":"6f35f2530fdec9df044df09030cb89e3b966b78755293bb9db3e38a5df566766","impliedFormat":99},{"version":"065ad68f46401fded391aa2f77cfae3e7f2c131610a3e1cede9acf4e9dfe6acb","impliedFormat":99},{"version":"1f17aadce352944f0778f9b8b93cb397554aa9ac22875d001a5598449a28f4be","impliedFormat":99},{"version":"37a5f8d155e4cf79bcef8f3eec9183c2db128baccc630c22f3c37936f203a2ef","impliedFormat":99},{"version":"b64cdb71a837b444d5a615a6a665c9516d6e98ca2b095547ea061fe7a7ec5cfc","impliedFormat":99},{"version":"039428d00f38741be080dd5eb0c0710eefe04618bbf57eac71708bb91f1a1ddf","signature":"9c580210e7ffed4fb8cd4f53ab86b5880df9929fb5144cc5619b4b83a76b8d05","impliedFormat":99},{"version":"df88b205b26d7bb811bbb582c96b0282dd8e6a0914de934a05afdf4677a43b05","impliedFormat":99},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"dd0109710de4cd93e245121ab86d8c66d20f3ead80074b68e9c3e349c4f53342","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"435b3711465425770ed2ee2f1cf00ce071835265e0851a7dc4600ab4b007550e","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"cf83d90d5faf27b994c2e79af02e32b555dbfe42cd9bd1571445f2168d1f4e2d","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"0e28335ac43f4d94dd2fe6d9e6fa6813570640839addd10d309d7985f33a6308","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"b0b69c61b0f0ec8ca15db4c8c41f6e77f4cacb784d42bca948f42dea33e8757e","affectsGlobalScope":true,"impliedFormat":1},{"version":"f96a48183254c00d24575401f1a761b4ce4927d927407e7862a83e06ce5d6964","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"e6f370b5c1d52edabb93ef055d0c0c396a98be77db8aa022fcc3670787b8b5f5","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"9d96a7ce809392ff2cb99691acf7c62e632fe56897356ba013b689277aca3619","impliedFormat":1},{"version":"42a05d8f239f74587d4926aba8cc54792eed8e8a442c7adc9b38b516642aadfe","impliedFormat":1},{"version":"5d21b58d60383cc6ab9ad3d3e265d7d25af24a2c9b506247e0e50b0a884920be","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"ae6757460f37078884b1571a3de3ebaf724d827d7e1d53626c02b3c2a408ac63","affectsGlobalScope":true,"impliedFormat":1},{"version":"27c0a08e343c6a0ae17bd13ba6d44a9758236dc904cd5e4b43456996cd51f520","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"6f80e51ba310608cd71bcdc09a171d7bbfb3b316048601c9ec215ce16a8dcfbc","impliedFormat":1},{"version":"10947bb49601aeec9ea1dddf61ef6e4f8442f949bd40a8008e12b129deb037be","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"af4ab0aa8908fc9a655bb833d3bc28e117c4f0e1038c5a891546158beb25accb","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"1641d32611fc7aa82cdd9fa38ff18349aac4eda9e032ced76b21943673887f9a","impliedFormat":1},{"version":"ed4f674fc8c0c993cc7e145069ac44129e03519b910c62be206a0cc777bdc60b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"17d06eb5709839c7ce719f0c38ada6f308fb433f2cd6d8c87b35856e07400950","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"2a00d005e3af99cd1cfa75220e60c61b04bfb6be7ca7453bfe2ef6cca37cc03c","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"14d4bd22d1b05824971b98f7e91b2484c90f1a684805c330476641417c3d9735","impliedFormat":1},{"version":"586eaf66bace2e731cee0ddfbfac326ad74a83c1acfeac4afb2db85ad23226c7","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"d1a14d87cedcf4f0b8173720d6eb29cc02878bf2b6dabf9c9d9cee742f275368","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"b37f83e7deea729aa9ce5593f78905afb45b7532fdff63041d374f60059e7852","impliedFormat":1},{"version":"e1cb68f3ef3a8dd7b2a9dfb3de482ed6c0f1586ba0db4e7d73c1d2147b6ffc51","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[77,78],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"outDir":"./dist","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":10},"referencedMap":[[140,1],[141,1],[142,2],[81,3],[143,4],[144,5],[145,6],[79,7],[146,8],[147,9],[148,10],[149,11],[150,12],[151,13],[152,13],[153,14],[154,15],[155,16],[156,17],[82,7],[80,7],[157,18],[158,19],[159,20],[199,21],[160,22],[161,23],[162,22],[163,24],[164,25],[165,26],[166,27],[167,27],[168,27],[169,28],[170,29],[171,30],[172,31],[173,32],[174,33],[175,33],[176,34],[177,7],[178,7],[179,35],[180,36],[181,35],[182,37],[183,38],[184,39],[185,40],[186,41],[187,42],[188,43],[189,44],[190,45],[191,46],[192,47],[193,48],[194,49],[195,50],[196,51],[83,22],[84,7],[85,52],[86,53],[87,7],[88,54],[89,7],[131,55],[132,56],[133,57],[134,57],[135,58],[136,7],[137,4],[138,59],[139,56],[197,60],[198,61],[62,7],[63,7],[12,7],[11,7],[2,7],[13,7],[14,7],[15,7],[16,7],[17,7],[18,7],[19,7],[20,7],[3,7],[21,7],[22,7],[4,7],[23,7],[27,7],[24,7],[25,7],[26,7],[28,7],[29,7],[30,7],[5,7],[31,7],[32,7],[33,7],[34,7],[6,7],[38,7],[35,7],[36,7],[37,7],[39,7],[7,7],[40,7],[45,7],[46,7],[41,7],[42,7],[43,7],[44,7],[8,7],[50,7],[47,7],[48,7],[49,7],[51,7],[9,7],[52,7],[53,7],[54,7],[56,7],[55,7],[57,7],[58,7],[10,7],[59,7],[1,7],[60,7],[61,7],[107,62],[119,63],[105,64],[120,65],[129,66],[96,67],[97,68],[95,69],[128,70],[123,71],[127,72],[99,73],[116,74],[98,75],[126,76],[93,77],[94,71],[100,78],[101,7],[106,79],[104,78],[91,80],[130,81],[121,82],[110,83],[109,78],[111,84],[114,85],[108,86],[112,87],[124,70],[102,88],[103,89],[115,90],[92,65],[118,91],[117,78],[113,92],[122,7],[90,7],[125,93],[66,94],[69,95],[67,96],[65,94],[68,97],[64,7],[77,98],[78,99],[72,100],[75,100],[73,101],[76,102],[71,100],[74,103],[70,104]],"latestChangedDtsFile":"./dist/index.d.ts","version":"5.9.3"}