@ixo/editor 5.9.1 → 5.10.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.
@@ -0,0 +1,691 @@
1
+ import * as _blocknote_core from '@blocknote/core';
2
+ import { ac as IxoBlockProps, l as IxoEditorOptions, W as IxoEditorType, p as IxoCollaborativeEditorOptions, w as BlocknoteHandlers, y as BlockRequirements, aj as UnlMapConfig, af as DynamicListDataProvider, ag as DynamicListPanelRenderer, ah as DomainCardRenderer, R as Translate, k as DelegationGrant } from './index-DKKQa1q-.mjs';
3
+ import { Text, Doc, Map, Array as Array$1 } from 'yjs';
4
+ import React__default from 'react';
5
+
6
+ declare const CheckboxBlockSpec: {
7
+ config: {
8
+ readonly type: "checkbox";
9
+ readonly propSchema: {
10
+ readonly checked: {
11
+ readonly default: false;
12
+ };
13
+ readonly allowedCheckers: {
14
+ readonly default: "all";
15
+ };
16
+ readonly initialChecked: {
17
+ readonly default: false;
18
+ };
19
+ readonly title: {
20
+ readonly default: "";
21
+ };
22
+ readonly description: {
23
+ readonly default: "";
24
+ };
25
+ readonly icon: {
26
+ readonly default: "square-check";
27
+ };
28
+ readonly conditions: {
29
+ readonly default: "";
30
+ };
31
+ readonly ttlAbsoluteDueDate: {
32
+ readonly default: "";
33
+ };
34
+ readonly ttlFromEnablement: {
35
+ readonly default: "";
36
+ };
37
+ readonly ttlFromCommitment: {
38
+ readonly default: "";
39
+ };
40
+ readonly skill: {
41
+ readonly default: "";
42
+ };
43
+ };
44
+ readonly content: "none";
45
+ };
46
+ implementation: _blocknote_core.TiptapBlockImplementation<{
47
+ readonly type: "checkbox";
48
+ readonly propSchema: {
49
+ readonly checked: {
50
+ readonly default: false;
51
+ };
52
+ readonly allowedCheckers: {
53
+ readonly default: "all";
54
+ };
55
+ readonly initialChecked: {
56
+ readonly default: false;
57
+ };
58
+ readonly title: {
59
+ readonly default: "";
60
+ };
61
+ readonly description: {
62
+ readonly default: "";
63
+ };
64
+ readonly icon: {
65
+ readonly default: "square-check";
66
+ };
67
+ readonly conditions: {
68
+ readonly default: "";
69
+ };
70
+ readonly ttlAbsoluteDueDate: {
71
+ readonly default: "";
72
+ };
73
+ readonly ttlFromEnablement: {
74
+ readonly default: "";
75
+ };
76
+ readonly ttlFromCommitment: {
77
+ readonly default: "";
78
+ };
79
+ readonly skill: {
80
+ readonly default: "";
81
+ };
82
+ };
83
+ readonly content: "none";
84
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
85
+ };
86
+
87
+ type CheckboxBlockProps = IxoBlockProps;
88
+
89
+ declare const ListBlockSpec: {
90
+ config: {
91
+ readonly type: "list";
92
+ readonly propSchema: {
93
+ readonly listType: {
94
+ readonly default: "";
95
+ };
96
+ readonly sort: {
97
+ readonly default: "{}";
98
+ };
99
+ readonly filter: {
100
+ readonly default: "{}";
101
+ };
102
+ readonly filterOptions: {
103
+ readonly default: "{}";
104
+ };
105
+ readonly sortOptions: {
106
+ readonly default: "{}";
107
+ };
108
+ readonly listConfig: {
109
+ readonly default: "{}";
110
+ };
111
+ readonly icon: {
112
+ readonly default: "📋";
113
+ };
114
+ readonly skill: {
115
+ readonly default: "";
116
+ };
117
+ };
118
+ readonly content: "none";
119
+ };
120
+ implementation: _blocknote_core.TiptapBlockImplementation<{
121
+ readonly type: "list";
122
+ readonly propSchema: {
123
+ readonly listType: {
124
+ readonly default: "";
125
+ };
126
+ readonly sort: {
127
+ readonly default: "{}";
128
+ };
129
+ readonly filter: {
130
+ readonly default: "{}";
131
+ };
132
+ readonly filterOptions: {
133
+ readonly default: "{}";
134
+ };
135
+ readonly sortOptions: {
136
+ readonly default: "{}";
137
+ };
138
+ readonly listConfig: {
139
+ readonly default: "{}";
140
+ };
141
+ readonly icon: {
142
+ readonly default: "📋";
143
+ };
144
+ readonly skill: {
145
+ readonly default: "";
146
+ };
147
+ };
148
+ readonly content: "none";
149
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
150
+ };
151
+
152
+ interface ListBlockSettings {
153
+ listType: string | null;
154
+ listConfig: string;
155
+ }
156
+ interface ListBlockProps extends IxoBlockProps {
157
+ }
158
+
159
+ interface OverviewBlockProps {
160
+ block: any;
161
+ editor: any;
162
+ }
163
+ declare const OverviewBlock: {
164
+ config: {
165
+ readonly type: "overview";
166
+ readonly propSchema: {
167
+ readonly skill: {
168
+ readonly default: "";
169
+ };
170
+ };
171
+ readonly content: "none";
172
+ };
173
+ implementation: _blocknote_core.TiptapBlockImplementation<{
174
+ readonly type: "overview";
175
+ readonly propSchema: {
176
+ readonly skill: {
177
+ readonly default: "";
178
+ };
179
+ };
180
+ readonly content: "none";
181
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
182
+ };
183
+
184
+ declare const ProposalBlockSpec: {
185
+ config: {
186
+ readonly type: "proposal";
187
+ readonly propSchema: {
188
+ readonly status: {
189
+ readonly default: "draft";
190
+ readonly values: readonly ["draft", "open", "passed", "rejected", "executed", "closed", "execution_failed", "veto_timelock"];
191
+ };
192
+ readonly title: {
193
+ readonly default: "";
194
+ };
195
+ readonly description: {
196
+ readonly default: "";
197
+ };
198
+ readonly icon: {
199
+ readonly default: "file-text";
200
+ };
201
+ readonly proposalId: {
202
+ readonly default: "";
203
+ };
204
+ readonly actions: {
205
+ readonly default: "[]";
206
+ };
207
+ readonly voteEnabled: {
208
+ readonly default: true;
209
+ };
210
+ readonly voteTitle: {
211
+ readonly default: "";
212
+ };
213
+ readonly voteSubtitle: {
214
+ readonly default: "";
215
+ };
216
+ readonly voteIcon: {
217
+ readonly default: "checklist";
218
+ };
219
+ readonly daysLeft: {
220
+ readonly default: 0;
221
+ };
222
+ readonly proposalContractAddress: {
223
+ readonly default: "";
224
+ };
225
+ readonly coreAddress: {
226
+ readonly default: "";
227
+ };
228
+ readonly conditions: {
229
+ readonly default: "";
230
+ };
231
+ readonly ttlAbsoluteDueDate: {
232
+ readonly default: "";
233
+ };
234
+ readonly ttlFromEnablement: {
235
+ readonly default: "";
236
+ };
237
+ readonly ttlFromCommitment: {
238
+ readonly default: "";
239
+ };
240
+ readonly skill: {
241
+ readonly default: "";
242
+ };
243
+ };
244
+ readonly content: "none";
245
+ };
246
+ implementation: _blocknote_core.TiptapBlockImplementation<{
247
+ readonly type: "proposal";
248
+ readonly propSchema: {
249
+ readonly status: {
250
+ readonly default: "draft";
251
+ readonly values: readonly ["draft", "open", "passed", "rejected", "executed", "closed", "execution_failed", "veto_timelock"];
252
+ };
253
+ readonly title: {
254
+ readonly default: "";
255
+ };
256
+ readonly description: {
257
+ readonly default: "";
258
+ };
259
+ readonly icon: {
260
+ readonly default: "file-text";
261
+ };
262
+ readonly proposalId: {
263
+ readonly default: "";
264
+ };
265
+ readonly actions: {
266
+ readonly default: "[]";
267
+ };
268
+ readonly voteEnabled: {
269
+ readonly default: true;
270
+ };
271
+ readonly voteTitle: {
272
+ readonly default: "";
273
+ };
274
+ readonly voteSubtitle: {
275
+ readonly default: "";
276
+ };
277
+ readonly voteIcon: {
278
+ readonly default: "checklist";
279
+ };
280
+ readonly daysLeft: {
281
+ readonly default: 0;
282
+ };
283
+ readonly proposalContractAddress: {
284
+ readonly default: "";
285
+ };
286
+ readonly coreAddress: {
287
+ readonly default: "";
288
+ };
289
+ readonly conditions: {
290
+ readonly default: "";
291
+ };
292
+ readonly ttlAbsoluteDueDate: {
293
+ readonly default: "";
294
+ };
295
+ readonly ttlFromEnablement: {
296
+ readonly default: "";
297
+ };
298
+ readonly ttlFromCommitment: {
299
+ readonly default: "";
300
+ };
301
+ readonly skill: {
302
+ readonly default: "";
303
+ };
304
+ };
305
+ readonly content: "none";
306
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
307
+ };
308
+
309
+ type ProposalBlockProps = IxoBlockProps;
310
+
311
+ declare const ApiRequestBlockSpec: {
312
+ config: {
313
+ readonly type: "apiRequest";
314
+ readonly propSchema: {
315
+ readonly title: {
316
+ readonly default: "";
317
+ };
318
+ readonly description: {
319
+ readonly default: "";
320
+ };
321
+ readonly icon: {
322
+ readonly default: "square-check";
323
+ };
324
+ readonly endpoint: {
325
+ readonly default: "";
326
+ };
327
+ readonly method: {
328
+ readonly default: "GET";
329
+ };
330
+ readonly headers: {
331
+ readonly default: "[]";
332
+ };
333
+ readonly body: {
334
+ readonly default: "[]";
335
+ };
336
+ readonly response: {
337
+ readonly default: "";
338
+ };
339
+ readonly status: {
340
+ readonly default: "idle";
341
+ };
342
+ readonly responseSchema: {
343
+ readonly default: "";
344
+ };
345
+ readonly conditions: {
346
+ readonly default: "";
347
+ };
348
+ readonly ttlAbsoluteDueDate: {
349
+ readonly default: "";
350
+ };
351
+ readonly ttlFromEnablement: {
352
+ readonly default: "";
353
+ };
354
+ readonly ttlFromCommitment: {
355
+ readonly default: "";
356
+ };
357
+ readonly assignment: {
358
+ readonly default: string;
359
+ };
360
+ readonly commitment: {
361
+ readonly default: string;
362
+ };
363
+ readonly skill: {
364
+ readonly default: "";
365
+ };
366
+ };
367
+ readonly content: "none";
368
+ };
369
+ implementation: _blocknote_core.TiptapBlockImplementation<{
370
+ readonly type: "apiRequest";
371
+ readonly propSchema: {
372
+ readonly title: {
373
+ readonly default: "";
374
+ };
375
+ readonly description: {
376
+ readonly default: "";
377
+ };
378
+ readonly icon: {
379
+ readonly default: "square-check";
380
+ };
381
+ readonly endpoint: {
382
+ readonly default: "";
383
+ };
384
+ readonly method: {
385
+ readonly default: "GET";
386
+ };
387
+ readonly headers: {
388
+ readonly default: "[]";
389
+ };
390
+ readonly body: {
391
+ readonly default: "[]";
392
+ };
393
+ readonly response: {
394
+ readonly default: "";
395
+ };
396
+ readonly status: {
397
+ readonly default: "idle";
398
+ };
399
+ readonly responseSchema: {
400
+ readonly default: "";
401
+ };
402
+ readonly conditions: {
403
+ readonly default: "";
404
+ };
405
+ readonly ttlAbsoluteDueDate: {
406
+ readonly default: "";
407
+ };
408
+ readonly ttlFromEnablement: {
409
+ readonly default: "";
410
+ };
411
+ readonly ttlFromCommitment: {
412
+ readonly default: "";
413
+ };
414
+ readonly assignment: {
415
+ readonly default: string;
416
+ };
417
+ readonly commitment: {
418
+ readonly default: string;
419
+ };
420
+ readonly skill: {
421
+ readonly default: "";
422
+ };
423
+ };
424
+ readonly content: "none";
425
+ }, any, _blocknote_core.InlineContentSchema, _blocknote_core.StyleSchema>;
426
+ };
427
+
428
+ type ApiRequestBlockProps = IxoBlockProps;
429
+ type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
430
+ type KeyValuePair = {
431
+ key: string;
432
+ value: string;
433
+ };
434
+
435
+ /**
436
+ * Custom hook that wraps useCreateBlockNote with IXO-specific configurations (Mantine version)
437
+ * @param options - Configuration options for the IxoEditor
438
+ * @returns A configured IxoEditor instance with augmented type properties
439
+ */
440
+ declare function useCreateIxoEditor(options?: IxoEditorOptions): IxoEditorType | undefined;
441
+
442
+ /**
443
+ * Custom hook that wraps useCreateBlockNote with IXO-specific configurations (Mantine version)
444
+ * @param options - Configuration options for the IxoEditor
445
+ * @returns A configured collaborative IxoEditor instance with augmented type properties
446
+ */
447
+ declare function useCreateCollaborativeIxoEditor(options: IxoCollaborativeEditorOptions): {
448
+ editor: IxoEditorType | undefined;
449
+ connectionStatus: string;
450
+ title: Text;
451
+ yDoc: Doc;
452
+ root: Map<any>;
453
+ flowArray: Array$1<any>;
454
+ connectedUsers: Array<{
455
+ clientId: string;
456
+ state: any;
457
+ }>;
458
+ awarenessInstance: any;
459
+ };
460
+
461
+ /** Position info passed to drop callback */
462
+ interface DropPosition {
463
+ blockId: string;
464
+ placement: 'before' | 'after';
465
+ index: number;
466
+ }
467
+ interface ExternalDropZoneProps {
468
+ /** Editor instance to get block positions from */
469
+ editor: any;
470
+ /** Callback when external data is dropped or placed - position only, caller handles data */
471
+ onDrop: (position: DropPosition) => void;
472
+ /** MIME type to accept (default: 'application/x-artifact') */
473
+ acceptedType?: string;
474
+ /** Drop indicator element to show (provided by caller, already has data) */
475
+ dropIndicator?: React__default.ReactNode;
476
+ /** Whether placement mode is active (click-to-place) */
477
+ isPlacementMode?: boolean;
478
+ /** Callback when placement mode should be canceled */
479
+ onPlacementCancel?: () => void;
480
+ /** Children (the editor content) */
481
+ children: React__default.ReactNode;
482
+ }
483
+ declare const ExternalDropZone: React__default.FC<ExternalDropZoneProps>;
484
+
485
+ interface IxoEditorProps {
486
+ editor: IxoEditorType | undefined;
487
+ editable?: boolean;
488
+ className?: string;
489
+ onChange?: () => void;
490
+ onSelectionChange?: () => void;
491
+ children?: React__default.ReactNode;
492
+ mantineTheme?: any;
493
+ handlers?: BlocknoteHandlers;
494
+ blockRequirements?: BlockRequirements;
495
+ mapConfig?: UnlMapConfig;
496
+ isPanelVisible?: boolean;
497
+ coverImageUrl?: string;
498
+ logoUrl?: string;
499
+ visualizationRenderer?: (vizType: string, config: object) => React__default.ReactNode;
500
+ getDynamicListData?: DynamicListDataProvider;
501
+ dynamicListPanelRenderer?: DynamicListPanelRenderer;
502
+ domainCardRenderer?: DomainCardRenderer;
503
+ /** Callback when external content is dropped into the editor (receives position only) */
504
+ onExternalDrop?: (position: DropPosition) => void;
505
+ /** MIME type to accept for external drops (default: 'application/x-artifact') */
506
+ externalDropType?: string;
507
+ /** Drop indicator element to show during drag (caller provides with data already populated) */
508
+ dropIndicator?: React__default.ReactNode;
509
+ /** Whether placement mode is active (click-to-place) */
510
+ isPlacementMode?: boolean;
511
+ /** Callback when placement mode should be canceled */
512
+ onPlacementCancel?: () => void;
513
+ /** Connected users from awareness (for block presence) */
514
+ connectedUsers?: Array<{
515
+ clientId: string;
516
+ state: any;
517
+ }>;
518
+ /** Yjs awareness instance (for block presence) */
519
+ awarenessInstance?: any;
520
+ /** Slot rendered between the page title and the editor body (e.g. a details strip). */
521
+ belowTitleSlot?: React__default.ReactNode;
522
+ /** Translation function — pass `t` from the host app's i18n setup. Optional. */
523
+ translate?: Translate;
524
+ }
525
+ /**
526
+ * IxoEditor component - A customized BlockNote editor for IXO (Mantine UI)
527
+ */
528
+ declare function IxoEditor({ editor, editable, className, onChange, onSelectionChange, children, mantineTheme: _mantineTheme, handlers, blockRequirements, isPanelVisible, coverImageUrl, logoUrl, visualizationRenderer, getDynamicListData, dynamicListPanelRenderer, domainCardRenderer, onExternalDrop, externalDropType, dropIndicator, isPlacementMode, onPlacementCancel, mapConfig, connectedUsers, awarenessInstance, belowTitleSlot, translate, }: IxoEditorProps): React__default.ReactElement | null;
529
+
530
+ interface CoverImageProps {
531
+ coverImageUrl?: string;
532
+ logoUrl?: string;
533
+ }
534
+ declare function CoverImage({ coverImageUrl, logoUrl }: CoverImageProps): React__default.ReactElement | null;
535
+
536
+ /** @deprecated The activation gating fields were removed; this type is kept
537
+ * empty for any external imports during the transition. */
538
+ type AuthorizationTabState = Record<string, never>;
539
+ interface AuthorizationTabProps extends IxoBlockProps {
540
+ /** Flow URI for capability scoping */
541
+ flowUri?: string;
542
+ /** Entity DID that owns this flow */
543
+ entityDid?: string;
544
+ /** Callback to open flow permissions panel */
545
+ onOpenFlowPermissions?: () => void;
546
+ }
547
+ declare const AuthorizationTab: React__default.FC<AuthorizationTabProps>;
548
+
549
+ type EvaluationTabState = {
550
+ linkedClaimCollectionId: string;
551
+ };
552
+ interface EvaluationTabProps extends IxoBlockProps {
553
+ }
554
+ declare const EvaluationTab: React__default.FC<EvaluationTabProps>;
555
+
556
+ interface EntitySigningSetupProps {
557
+ opened: boolean;
558
+ onClose: () => void;
559
+ entityDid: string;
560
+ entityName?: string;
561
+ onSetup: (pin: string) => Promise<{
562
+ success: boolean;
563
+ error?: string;
564
+ }>;
565
+ }
566
+ declare const EntitySigningSetup: React__default.FC<EntitySigningSetupProps>;
567
+
568
+ interface FlowPermissionsPanelProps {
569
+ editor: IxoEditorType;
570
+ entityDid: string;
571
+ entityName?: string;
572
+ currentUserDid: string;
573
+ onGrantPermission: () => void;
574
+ onRevokePermission: (capabilityId: string) => Promise<void>;
575
+ getUserDisplayName?: (did: string) => Promise<string>;
576
+ }
577
+ declare const FlowPermissionsPanel: React__default.FC<FlowPermissionsPanelProps>;
578
+
579
+ interface GrantPermissionModalProps {
580
+ opened: boolean;
581
+ onClose: () => void;
582
+ flowUri: string;
583
+ /** Blocks available for scope selection. If single block, scope UI is hidden. */
584
+ blocks: Array<{
585
+ id: string;
586
+ type: string;
587
+ name?: string;
588
+ }>;
589
+ /** Optional: specific block to grant permission for (hides scope selection) */
590
+ targetBlockId?: string;
591
+ searchUsers: (query: string) => Promise<Array<{
592
+ did: string;
593
+ displayName: string;
594
+ avatarUrl?: string;
595
+ }>>;
596
+ getOracles?: () => Promise<Array<{
597
+ did: string;
598
+ name: string;
599
+ }>>;
600
+ onGrant: (grant: DelegationGrant, pin: string) => Promise<{
601
+ success: boolean;
602
+ error?: string;
603
+ }>;
604
+ }
605
+ declare const GrantPermissionModal: React__default.FC<GrantPermissionModalProps>;
606
+
607
+ interface BlockPresenceUser {
608
+ clientId: string;
609
+ name: string;
610
+ color: string;
611
+ avatar?: string;
612
+ }
613
+ /**
614
+ * Hook that returns the list of users currently active on a specific block.
615
+ * Subscribes directly to awareness changes for reliable updates.
616
+ * @param blockId - The block ID to check presence for
617
+ * @param options.includeSelf - If true, includes the local user in the results (default: false)
618
+ */
619
+ declare function useBlockPresence(blockId: string | undefined, options?: {
620
+ includeSelf?: boolean;
621
+ }): BlockPresenceUser[];
622
+
623
+ /**
624
+ * Hook that tracks when a user interacts with a block and updates awareness state.
625
+ * Returns event handlers (onPointerDown) to attach to block containers.
626
+ *
627
+ * For custom (non-editable) blocks: attach the returned onPointerDown to the container.
628
+ * For text blocks: use editor-level onSelectionChange instead.
629
+ */
630
+ declare function useTrackBlockFocus(blockId: string | undefined, editor: IxoEditorType | undefined): {
631
+ onPointerDown: () => void;
632
+ };
633
+
634
+ /**
635
+ * GraphQL queries and types for IXO network
636
+ */
637
+ interface Entity {
638
+ context: string;
639
+ relayerNode: string;
640
+ controller: string;
641
+ id: string;
642
+ type: string;
643
+ startDate: string;
644
+ endDate: string;
645
+ metadata: string;
646
+ linkedResource: any[];
647
+ settings: Record<string, Record<string, any>>;
648
+ service: string;
649
+ externalId: string;
650
+ }
651
+ interface EntityResponse {
652
+ entity: Entity;
653
+ }
654
+ interface EntityVariables {
655
+ entityId: string;
656
+ }
657
+ /**
658
+ * Fetches entity data by ID from the IXO network
659
+ * @param entityId - The unique identifier for the entity
660
+ * @returns Promise resolving to the entity data
661
+ */
662
+ declare function getEntity(entityId: string): Promise<Entity>;
663
+
664
+ /**
665
+ * Lightweight GraphQL client for IXO network queries
666
+ */
667
+ interface GraphQLResponse<T = any> {
668
+ data?: T;
669
+ errors?: Array<{
670
+ message: string;
671
+ locations?: Array<{
672
+ line: number;
673
+ column: number;
674
+ }>;
675
+ path?: Array<string | number>;
676
+ }>;
677
+ }
678
+ interface GraphQLRequest {
679
+ query: string;
680
+ variables?: Record<string, any>;
681
+ operationName?: string;
682
+ }
683
+ declare class GraphQLClient {
684
+ private endpoint;
685
+ private headers;
686
+ constructor(endpoint: string, headers?: Record<string, string>);
687
+ request<T = any>(request: GraphQLRequest): Promise<T>;
688
+ }
689
+ declare const ixoGraphQLClient: GraphQLClient;
690
+
691
+ export { AuthorizationTab as A, type BlockPresenceUser as B, CoverImage as C, type DropPosition as D, EvaluationTab as E, FlowPermissionsPanel as F, GrantPermissionModal as G, type HttpMethod as H, IxoEditor as I, type KeyValuePair as K, ListBlockSpec as L, OverviewBlock as O, ProposalBlockSpec as P, useCreateCollaborativeIxoEditor as a, type IxoEditorProps as b, type CoverImageProps as c, type AuthorizationTabState as d, type EvaluationTabState as e, EntitySigningSetup as f, CheckboxBlockSpec as g, ApiRequestBlockSpec as h, type CheckboxBlockProps as i, type ListBlockSettings as j, type ListBlockProps as k, type OverviewBlockProps as l, type ProposalBlockProps as m, type ApiRequestBlockProps as n, useBlockPresence as o, useTrackBlockFocus as p, getEntity as q, type Entity as r, type EntityResponse as s, type EntityVariables as t, useCreateIxoEditor as u, GraphQLClient as v, ixoGraphQLClient as w, type GraphQLResponse as x, type GraphQLRequest as y, ExternalDropZone as z };