@dropins/mcp 0.1.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.
Files changed (103) hide show
  1. package/LICENSE.md +127 -0
  2. package/README.md +314 -0
  3. package/dist/common/project-reader.d.ts +55 -0
  4. package/dist/common/project-reader.js +173 -0
  5. package/dist/common/registry-loader.d.ts +101 -0
  6. package/dist/common/registry-loader.js +386 -0
  7. package/dist/common/response-handling.d.ts +12 -0
  8. package/dist/common/response-handling.js +21 -0
  9. package/dist/common/sanitize.d.ts +8 -0
  10. package/dist/common/sanitize.js +45 -0
  11. package/dist/common/synonyms.d.ts +9 -0
  12. package/dist/common/synonyms.js +127 -0
  13. package/dist/common/telemetry.d.ts +14 -0
  14. package/dist/common/telemetry.js +54 -0
  15. package/dist/common/types.d.ts +308 -0
  16. package/dist/common/types.js +1 -0
  17. package/dist/common/version.d.ts +2 -0
  18. package/dist/common/version.js +14 -0
  19. package/dist/index.d.ts +2 -0
  20. package/dist/index.js +136 -0
  21. package/dist/operations/analyze-project.d.ts +13 -0
  22. package/dist/operations/analyze-project.js +125 -0
  23. package/dist/operations/check-block-health.d.ts +19 -0
  24. package/dist/operations/check-block-health.js +1149 -0
  25. package/dist/operations/check-config.d.ts +13 -0
  26. package/dist/operations/check-config.js +228 -0
  27. package/dist/operations/explain-event-flow.d.ts +16 -0
  28. package/dist/operations/explain-event-flow.js +218 -0
  29. package/dist/operations/get-upgrade-diff.d.ts +13 -0
  30. package/dist/operations/get-upgrade-diff.js +144 -0
  31. package/dist/operations/list-api-functions.d.ts +13 -0
  32. package/dist/operations/list-api-functions.js +53 -0
  33. package/dist/operations/list-containers.d.ts +13 -0
  34. package/dist/operations/list-containers.js +44 -0
  35. package/dist/operations/list-design-tokens.d.ts +13 -0
  36. package/dist/operations/list-design-tokens.js +47 -0
  37. package/dist/operations/list-events.d.ts +16 -0
  38. package/dist/operations/list-events.js +39 -0
  39. package/dist/operations/list-graphql-queries.d.ts +19 -0
  40. package/dist/operations/list-graphql-queries.js +84 -0
  41. package/dist/operations/list-i18n-keys.d.ts +19 -0
  42. package/dist/operations/list-i18n-keys.js +105 -0
  43. package/dist/operations/list-models.d.ts +16 -0
  44. package/dist/operations/list-models.js +80 -0
  45. package/dist/operations/list-slots.d.ts +16 -0
  46. package/dist/operations/list-slots.js +81 -0
  47. package/dist/operations/scaffold-block.d.ts +31 -0
  48. package/dist/operations/scaffold-block.js +331 -0
  49. package/dist/operations/scaffold-extension.d.ts +28 -0
  50. package/dist/operations/scaffold-extension.js +346 -0
  51. package/dist/operations/scaffold-slot.d.ts +22 -0
  52. package/dist/operations/scaffold-slot.js +189 -0
  53. package/dist/operations/search-commerce-docs.d.ts +16 -0
  54. package/dist/operations/search-commerce-docs.js +101 -0
  55. package/dist/operations/search-docs.d.ts +23 -0
  56. package/dist/operations/search-docs.js +298 -0
  57. package/dist/operations/suggest-event-handler.d.ts +16 -0
  58. package/dist/operations/suggest-event-handler.js +175 -0
  59. package/dist/operations/suggest-slot-implementation.d.ts +19 -0
  60. package/dist/operations/suggest-slot-implementation.js +183 -0
  61. package/dist/registry/api-functions.json +3045 -0
  62. package/dist/registry/block-patterns.json +78 -0
  63. package/dist/registry/containers.json +2003 -0
  64. package/dist/registry/design-tokens.json +577 -0
  65. package/dist/registry/docs/boilerplate.json +55 -0
  66. package/dist/registry/docs/dropins-all.json +97 -0
  67. package/dist/registry/docs/dropins-b2b.json +607 -0
  68. package/dist/registry/docs/dropins-cart.json +163 -0
  69. package/dist/registry/docs/dropins-checkout.json +193 -0
  70. package/dist/registry/docs/dropins-order.json +139 -0
  71. package/dist/registry/docs/dropins-payment-services.json +73 -0
  72. package/dist/registry/docs/dropins-personalization.json +67 -0
  73. package/dist/registry/docs/dropins-product-details.json +139 -0
  74. package/dist/registry/docs/dropins-product-discovery.json +85 -0
  75. package/dist/registry/docs/dropins-recommendations.json +67 -0
  76. package/dist/registry/docs/dropins-user-account.json +121 -0
  77. package/dist/registry/docs/dropins-user-auth.json +103 -0
  78. package/dist/registry/docs/dropins-wishlist.json +85 -0
  79. package/dist/registry/docs/get-started.json +85 -0
  80. package/dist/registry/docs/how-tos.json +19 -0
  81. package/dist/registry/docs/index.json +139 -0
  82. package/dist/registry/docs/licensing.json +19 -0
  83. package/dist/registry/docs/merchants.json +523 -0
  84. package/dist/registry/docs/resources.json +13 -0
  85. package/dist/registry/docs/sdk.json +139 -0
  86. package/dist/registry/docs/setup.json +145 -0
  87. package/dist/registry/docs/troubleshooting.json +19 -0
  88. package/dist/registry/events.json +2200 -0
  89. package/dist/registry/examples/index.json +19 -0
  90. package/dist/registry/examples/storefront-checkout.json +377 -0
  91. package/dist/registry/examples/storefront-quote-management.json +49 -0
  92. package/dist/registry/extensions.json +272 -0
  93. package/dist/registry/graphql.json +3469 -0
  94. package/dist/registry/i18n.json +1873 -0
  95. package/dist/registry/models.json +1001 -0
  96. package/dist/registry/sdk.json +2357 -0
  97. package/dist/registry/slots.json +2270 -0
  98. package/dist/registry/tools-components.json +595 -0
  99. package/dist/resources/guides.d.ts +7 -0
  100. package/dist/resources/guides.js +625 -0
  101. package/dist/resources/handlers.d.ts +31 -0
  102. package/dist/resources/handlers.js +322 -0
  103. package/package.json +47 -0
@@ -0,0 +1,2200 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Auto-generated event catalog",
4
+ "events": [
5
+ {
6
+ "name": "account/customerPaymentTokens",
7
+ "payloadType": "StoredPaymentMethodDisplay[] | null",
8
+ "description": "",
9
+ "emittedBy": [],
10
+ "consumedBy": [
11
+ {
12
+ "dropin": "storefront-account",
13
+ "function": ""
14
+ }
15
+ ]
16
+ },
17
+ {
18
+ "name": "aem/lcp",
19
+ "payloadType": "",
20
+ "description": "",
21
+ "emittedBy": [],
22
+ "consumedBy": [
23
+ {
24
+ "dropin": "boilerplate/product-details",
25
+ "file": "blocks/product-details/product-details.js",
26
+ "function": ""
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "name": "auth/adobe-commerce-optimizer",
32
+ "payloadType": "AdobeCommerceOptimizerModel",
33
+ "description": "",
34
+ "emittedBy": [
35
+ {
36
+ "dropin": "storefront-auth",
37
+ "function": ""
38
+ }
39
+ ],
40
+ "consumedBy": []
41
+ },
42
+ {
43
+ "name": "auth/error",
44
+ "payloadType": "{ source: string; type: string; error: Error | string }",
45
+ "description": "",
46
+ "emittedBy": [
47
+ {
48
+ "dropin": "storefront-auth",
49
+ "function": ""
50
+ }
51
+ ],
52
+ "consumedBy": []
53
+ },
54
+ {
55
+ "name": "auth/group-uid",
56
+ "payloadType": "string",
57
+ "description": "",
58
+ "emittedBy": [
59
+ {
60
+ "dropin": "storefront-auth",
61
+ "function": ""
62
+ }
63
+ ],
64
+ "consumedBy": []
65
+ },
66
+ {
67
+ "name": "auth/permissions",
68
+ "payloadType": "PermissionsModel",
69
+ "description": "",
70
+ "emittedBy": [
71
+ {
72
+ "dropin": "storefront-auth",
73
+ "function": ""
74
+ }
75
+ ],
76
+ "consumedBy": [
77
+ {
78
+ "dropin": "storefront-purchase-order",
79
+ "function": ""
80
+ },
81
+ {
82
+ "dropin": "storefront-quote-management",
83
+ "function": ""
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "name": "authenticated",
89
+ "payloadType": "boolean",
90
+ "description": "",
91
+ "emittedBy": [
92
+ {
93
+ "dropin": "storefront-auth",
94
+ "function": ""
95
+ },
96
+ {
97
+ "dropin": "storefront-auth",
98
+ "function": ""
99
+ },
100
+ {
101
+ "dropin": "storefront-auth",
102
+ "function": ""
103
+ }
104
+ ],
105
+ "consumedBy": [
106
+ {
107
+ "dropin": "storefront-auth",
108
+ "function": ""
109
+ },
110
+ {
111
+ "dropin": "storefront-cart",
112
+ "function": ""
113
+ },
114
+ {
115
+ "dropin": "storefront-checkout",
116
+ "function": ""
117
+ },
118
+ {
119
+ "dropin": "storefront-company-switcher",
120
+ "function": ""
121
+ },
122
+ {
123
+ "dropin": "storefront-company-switcher",
124
+ "function": ""
125
+ },
126
+ {
127
+ "dropin": "storefront-order",
128
+ "function": ""
129
+ },
130
+ {
131
+ "dropin": "storefront-order",
132
+ "function": ""
133
+ },
134
+ {
135
+ "dropin": "storefront-payment-services",
136
+ "function": ""
137
+ },
138
+ {
139
+ "dropin": "storefront-personalization",
140
+ "function": ""
141
+ },
142
+ {
143
+ "dropin": "storefront-quote-management",
144
+ "function": ""
145
+ },
146
+ {
147
+ "dropin": "storefront-quote-management",
148
+ "function": ""
149
+ },
150
+ {
151
+ "dropin": "storefront-quote-management",
152
+ "function": ""
153
+ },
154
+ {
155
+ "dropin": "storefront-quote-management",
156
+ "function": ""
157
+ },
158
+ {
159
+ "dropin": "storefront-requisition-list",
160
+ "function": ""
161
+ },
162
+ {
163
+ "dropin": "storefront-wishlist",
164
+ "function": ""
165
+ },
166
+ {
167
+ "dropin": "storefront-wishlist",
168
+ "function": ""
169
+ },
170
+ {
171
+ "dropin": "storefront-wishlist",
172
+ "function": ""
173
+ },
174
+ {
175
+ "dropin": "boilerplate/commerce-checkout",
176
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
177
+ "function": ""
178
+ },
179
+ {
180
+ "dropin": "boilerplate/commerce-checkout-success",
181
+ "file": "blocks/commerce-checkout-success/commerce-checkout-success.js",
182
+ "function": ""
183
+ },
184
+ {
185
+ "dropin": "boilerplate/commerce-forgot-password",
186
+ "file": "blocks/commerce-forgot-password/commerce-forgot-password.js",
187
+ "function": ""
188
+ },
189
+ {
190
+ "dropin": "boilerplate/header",
191
+ "file": "blocks/header/renderAuthCombine.js",
192
+ "function": ""
193
+ }
194
+ ]
195
+ },
196
+ {
197
+ "name": "b2b-quick-order/error",
198
+ "payloadType": "",
199
+ "description": "",
200
+ "emittedBy": [
201
+ {
202
+ "dropin": "storefront-quick-order",
203
+ "function": ""
204
+ }
205
+ ],
206
+ "consumedBy": []
207
+ },
208
+ {
209
+ "name": "cart/data",
210
+ "payloadType": "",
211
+ "description": "",
212
+ "emittedBy": [
213
+ {
214
+ "dropin": "storefront-cart",
215
+ "function": ""
216
+ },
217
+ {
218
+ "dropin": "storefront-cart",
219
+ "function": ""
220
+ },
221
+ {
222
+ "dropin": "storefront-cart",
223
+ "function": ""
224
+ },
225
+ {
226
+ "dropin": "storefront-cart",
227
+ "function": ""
228
+ },
229
+ {
230
+ "dropin": "storefront-cart",
231
+ "function": ""
232
+ },
233
+ {
234
+ "dropin": "storefront-cart",
235
+ "function": ""
236
+ },
237
+ {
238
+ "dropin": "storefront-cart",
239
+ "function": ""
240
+ },
241
+ {
242
+ "dropin": "storefront-cart",
243
+ "function": ""
244
+ },
245
+ {
246
+ "dropin": "storefront-cart",
247
+ "function": ""
248
+ }
249
+ ],
250
+ "consumedBy": [
251
+ {
252
+ "dropin": "storefront-cart",
253
+ "function": ""
254
+ },
255
+ {
256
+ "dropin": "storefront-cart",
257
+ "function": ""
258
+ },
259
+ {
260
+ "dropin": "storefront-cart",
261
+ "function": ""
262
+ },
263
+ {
264
+ "dropin": "storefront-cart",
265
+ "function": ""
266
+ },
267
+ {
268
+ "dropin": "storefront-cart",
269
+ "function": ""
270
+ },
271
+ {
272
+ "dropin": "storefront-cart",
273
+ "function": ""
274
+ },
275
+ {
276
+ "dropin": "storefront-cart",
277
+ "function": ""
278
+ },
279
+ {
280
+ "dropin": "storefront-cart",
281
+ "function": ""
282
+ },
283
+ {
284
+ "dropin": "storefront-cart",
285
+ "function": ""
286
+ },
287
+ {
288
+ "dropin": "storefront-checkout",
289
+ "function": ""
290
+ },
291
+ {
292
+ "dropin": "storefront-checkout",
293
+ "function": ""
294
+ },
295
+ {
296
+ "dropin": "storefront-quick-order",
297
+ "function": ""
298
+ },
299
+ {
300
+ "dropin": "boilerplate/commerce-cart",
301
+ "file": "blocks/commerce-cart/commerce-cart.js",
302
+ "function": ""
303
+ },
304
+ {
305
+ "dropin": "boilerplate/commerce-checkout",
306
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
307
+ "function": ""
308
+ },
309
+ {
310
+ "dropin": "boilerplate/header",
311
+ "file": "blocks/header/header.js",
312
+ "function": ""
313
+ },
314
+ {
315
+ "dropin": "boilerplate/product-details",
316
+ "file": "blocks/product-details/product-details.js",
317
+ "function": ""
318
+ }
319
+ ]
320
+ },
321
+ {
322
+ "name": "cart/initialized",
323
+ "payloadType": "CartModel | null",
324
+ "description": "",
325
+ "emittedBy": [
326
+ {
327
+ "dropin": "storefront-cart",
328
+ "function": ""
329
+ }
330
+ ],
331
+ "consumedBy": [
332
+ {
333
+ "dropin": "storefront-checkout",
334
+ "function": ""
335
+ },
336
+ {
337
+ "dropin": "storefront-personalization",
338
+ "function": ""
339
+ },
340
+ {
341
+ "dropin": "boilerplate/commerce-checkout",
342
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
343
+ "function": ""
344
+ }
345
+ ]
346
+ },
347
+ {
348
+ "name": "cart/merged",
349
+ "payloadType": "{\n oldCartItems: Item[] | null;\n newCart: CartModel | null;\n }",
350
+ "description": "",
351
+ "emittedBy": [
352
+ {
353
+ "dropin": "storefront-cart",
354
+ "function": ""
355
+ }
356
+ ],
357
+ "consumedBy": [
358
+ {
359
+ "dropin": "storefront-cart",
360
+ "function": ""
361
+ },
362
+ {
363
+ "dropin": "storefront-checkout",
364
+ "function": ""
365
+ }
366
+ ]
367
+ },
368
+ {
369
+ "name": "cart/product/added",
370
+ "payloadType": "Item[] | null",
371
+ "description": "",
372
+ "emittedBy": [
373
+ {
374
+ "dropin": "storefront-cart",
375
+ "function": ""
376
+ }
377
+ ],
378
+ "consumedBy": [
379
+ {
380
+ "dropin": "storefront-quick-order",
381
+ "function": ""
382
+ },
383
+ {
384
+ "dropin": "boilerplate/commerce-mini-cart",
385
+ "file": "blocks/commerce-mini-cart/commerce-mini-cart.js",
386
+ "function": ""
387
+ }
388
+ ]
389
+ },
390
+ {
391
+ "name": "cart/product/removed",
392
+ "payloadType": "",
393
+ "description": "",
394
+ "emittedBy": [
395
+ {
396
+ "dropin": "storefront-cart",
397
+ "function": ""
398
+ },
399
+ {
400
+ "dropin": "storefront-cart",
401
+ "function": ""
402
+ }
403
+ ],
404
+ "consumedBy": []
405
+ },
406
+ {
407
+ "name": "cart/product/updated",
408
+ "payloadType": "Item[] | null",
409
+ "description": "",
410
+ "emittedBy": [
411
+ {
412
+ "dropin": "storefront-cart",
413
+ "function": ""
414
+ },
415
+ {
416
+ "dropin": "storefront-cart",
417
+ "function": ""
418
+ }
419
+ ],
420
+ "consumedBy": [
421
+ {
422
+ "dropin": "boilerplate/commerce-mini-cart",
423
+ "file": "blocks/commerce-mini-cart/commerce-mini-cart.js",
424
+ "function": ""
425
+ }
426
+ ]
427
+ },
428
+ {
429
+ "name": "cart/reset",
430
+ "payloadType": "void",
431
+ "description": "",
432
+ "emittedBy": [
433
+ {
434
+ "dropin": "storefront-cart",
435
+ "function": ""
436
+ },
437
+ {
438
+ "dropin": "storefront-order",
439
+ "function": ""
440
+ },
441
+ {
442
+ "dropin": "storefront-order",
443
+ "function": ""
444
+ }
445
+ ],
446
+ "consumedBy": [
447
+ {
448
+ "dropin": "storefront-cart",
449
+ "function": ""
450
+ },
451
+ {
452
+ "dropin": "storefront-cart",
453
+ "function": ""
454
+ },
455
+ {
456
+ "dropin": "storefront-checkout",
457
+ "function": ""
458
+ }
459
+ ]
460
+ },
461
+ {
462
+ "name": "cart/updated",
463
+ "payloadType": "CartModel | null",
464
+ "description": "",
465
+ "emittedBy": [
466
+ {
467
+ "dropin": "storefront-cart",
468
+ "function": ""
469
+ },
470
+ {
471
+ "dropin": "storefront-cart",
472
+ "function": ""
473
+ },
474
+ {
475
+ "dropin": "storefront-cart",
476
+ "function": ""
477
+ },
478
+ {
479
+ "dropin": "storefront-cart",
480
+ "function": ""
481
+ },
482
+ {
483
+ "dropin": "storefront-cart",
484
+ "function": ""
485
+ },
486
+ {
487
+ "dropin": "storefront-cart",
488
+ "function": ""
489
+ }
490
+ ],
491
+ "consumedBy": [
492
+ {
493
+ "dropin": "storefront-cart",
494
+ "function": ""
495
+ },
496
+ {
497
+ "dropin": "storefront-personalization",
498
+ "function": ""
499
+ }
500
+ ]
501
+ },
502
+ {
503
+ "name": "checkout/addresses/billing",
504
+ "payloadType": "",
505
+ "description": "",
506
+ "emittedBy": [
507
+ {
508
+ "dropin": "boilerplate/commerce-checkout",
509
+ "file": "blocks/commerce-checkout/containers.js",
510
+ "function": ""
511
+ }
512
+ ],
513
+ "consumedBy": [
514
+ {
515
+ "dropin": "boilerplate/commerce-checkout",
516
+ "file": "blocks/commerce-checkout/containers.js",
517
+ "function": ""
518
+ }
519
+ ]
520
+ },
521
+ {
522
+ "name": "checkout/addresses/shipping",
523
+ "payloadType": "",
524
+ "description": "",
525
+ "emittedBy": [
526
+ {
527
+ "dropin": "boilerplate/commerce-checkout",
528
+ "file": "blocks/commerce-checkout/containers.js",
529
+ "function": ""
530
+ }
531
+ ],
532
+ "consumedBy": []
533
+ },
534
+ {
535
+ "name": "checkout/error",
536
+ "payloadType": "CheckoutError",
537
+ "description": "",
538
+ "emittedBy": [
539
+ {
540
+ "dropin": "storefront-checkout",
541
+ "function": ""
542
+ },
543
+ {
544
+ "dropin": "storefront-checkout",
545
+ "function": ""
546
+ }
547
+ ],
548
+ "consumedBy": [
549
+ {
550
+ "dropin": "storefront-checkout",
551
+ "function": ""
552
+ }
553
+ ]
554
+ },
555
+ {
556
+ "name": "checkout/initialized",
557
+ "payloadType": "any",
558
+ "description": "",
559
+ "emittedBy": [
560
+ {
561
+ "dropin": "storefront-checkout",
562
+ "function": ""
563
+ }
564
+ ],
565
+ "consumedBy": [
566
+ {
567
+ "dropin": "storefront-cart",
568
+ "function": ""
569
+ },
570
+ {
571
+ "dropin": "storefront-checkout",
572
+ "function": ""
573
+ },
574
+ {
575
+ "dropin": "storefront-checkout",
576
+ "function": ""
577
+ },
578
+ {
579
+ "dropin": "storefront-checkout",
580
+ "function": ""
581
+ },
582
+ {
583
+ "dropin": "storefront-checkout",
584
+ "function": ""
585
+ },
586
+ {
587
+ "dropin": "storefront-checkout",
588
+ "function": ""
589
+ },
590
+ {
591
+ "dropin": "storefront-checkout",
592
+ "function": ""
593
+ },
594
+ {
595
+ "dropin": "storefront-checkout",
596
+ "function": ""
597
+ },
598
+ {
599
+ "dropin": "storefront-checkout",
600
+ "function": ""
601
+ },
602
+ {
603
+ "dropin": "storefront-checkout",
604
+ "function": ""
605
+ },
606
+ {
607
+ "dropin": "storefront-company-switcher",
608
+ "function": ""
609
+ },
610
+ {
611
+ "dropin": "boilerplate/commerce-checkout",
612
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
613
+ "function": ""
614
+ }
615
+ ]
616
+ },
617
+ {
618
+ "name": "checkout/updated",
619
+ "payloadType": "any",
620
+ "description": "",
621
+ "emittedBy": [
622
+ {
623
+ "dropin": "storefront-checkout",
624
+ "function": ""
625
+ },
626
+ {
627
+ "dropin": "storefront-checkout",
628
+ "function": ""
629
+ },
630
+ {
631
+ "dropin": "storefront-checkout",
632
+ "function": ""
633
+ }
634
+ ],
635
+ "consumedBy": [
636
+ {
637
+ "dropin": "storefront-cart",
638
+ "function": ""
639
+ },
640
+ {
641
+ "dropin": "storefront-checkout",
642
+ "function": ""
643
+ },
644
+ {
645
+ "dropin": "storefront-checkout",
646
+ "function": ""
647
+ },
648
+ {
649
+ "dropin": "storefront-checkout",
650
+ "function": ""
651
+ },
652
+ {
653
+ "dropin": "storefront-checkout",
654
+ "function": ""
655
+ },
656
+ {
657
+ "dropin": "storefront-checkout",
658
+ "function": ""
659
+ },
660
+ {
661
+ "dropin": "storefront-checkout",
662
+ "function": ""
663
+ },
664
+ {
665
+ "dropin": "storefront-checkout",
666
+ "function": ""
667
+ },
668
+ {
669
+ "dropin": "storefront-checkout",
670
+ "function": ""
671
+ },
672
+ {
673
+ "dropin": "storefront-company-switcher",
674
+ "function": ""
675
+ },
676
+ {
677
+ "dropin": "storefront-quote-management",
678
+ "function": ""
679
+ },
680
+ {
681
+ "dropin": "boilerplate/commerce-checkout",
682
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
683
+ "function": ""
684
+ }
685
+ ]
686
+ },
687
+ {
688
+ "name": "checkout/values",
689
+ "payloadType": "ValuesModel",
690
+ "description": "",
691
+ "emittedBy": [
692
+ {
693
+ "dropin": "storefront-checkout",
694
+ "function": ""
695
+ }
696
+ ],
697
+ "consumedBy": [
698
+ {
699
+ "dropin": "storefront-checkout",
700
+ "function": ""
701
+ },
702
+ {
703
+ "dropin": "boilerplate/commerce-checkout",
704
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
705
+ "function": ""
706
+ }
707
+ ]
708
+ },
709
+ {
710
+ "name": "company/updated",
711
+ "payloadType": "{\n company: {\n id: string;\n name: string;\n email: string;\n legalAddress: {\n street: string[];\n city: string;\n region: {\n region: string;\n regionCode: string;\n regionId: number;\n };\n countryCode: string;\n postcode: string;\n telephone: string;\n };\n companyAdmin: {\n id: string;\n firstname: string;\n lastname: string;\n email: string;\n };\n salesRepresentative: {\n firstname: string;\n lastname: string;\n email: string;\n };\n availablePaymentMethods: Array<{\n code: string;\n title: string;\n }>;\n availableShippingMethods: Array<{\n code: string;\n title: string;\n }>;\n canEditAccount: boolean;\n canEditAddress: boolean;\n permissionsFlags: {\n canViewAccount: boolean;\n canEditAccount: boolean;\n canViewAddress: boolean;\n canEditAddress: boolean;\n canViewContacts: boolean;\n canViewPaymentInformation: boolean;\n canViewShippingInformation: boolean;\n };\n customerRole: {\n id: string;\n name: string;\n permissions: any[];\n };\n customerStatus: string;\n };\n }",
712
+ "description": "",
713
+ "emittedBy": [
714
+ {
715
+ "dropin": "storefront-company-management",
716
+ "function": ""
717
+ }
718
+ ],
719
+ "consumedBy": [
720
+ {
721
+ "dropin": "storefront-company-switcher",
722
+ "function": ""
723
+ }
724
+ ]
725
+ },
726
+ {
727
+ "name": "companyContext/changed",
728
+ "payloadType": "string | null",
729
+ "description": "",
730
+ "emittedBy": [
731
+ {
732
+ "dropin": "storefront-company-switcher",
733
+ "function": ""
734
+ },
735
+ {
736
+ "dropin": "storefront-company-switcher",
737
+ "function": ""
738
+ }
739
+ ],
740
+ "consumedBy": [
741
+ {
742
+ "dropin": "storefront-account",
743
+ "function": ""
744
+ },
745
+ {
746
+ "dropin": "storefront-company-management",
747
+ "function": ""
748
+ },
749
+ {
750
+ "dropin": "storefront-company-management",
751
+ "function": ""
752
+ },
753
+ {
754
+ "dropin": "storefront-company-management",
755
+ "function": ""
756
+ },
757
+ {
758
+ "dropin": "storefront-company-management",
759
+ "function": ""
760
+ },
761
+ {
762
+ "dropin": "storefront-company-switcher",
763
+ "function": ""
764
+ },
765
+ {
766
+ "dropin": "storefront-order",
767
+ "function": ""
768
+ }
769
+ ]
770
+ },
771
+ {
772
+ "name": "companyStructure/updated",
773
+ "payloadType": "",
774
+ "description": "",
775
+ "emittedBy": [
776
+ {
777
+ "dropin": "storefront-company-management",
778
+ "function": ""
779
+ }
780
+ ],
781
+ "consumedBy": []
782
+ },
783
+ {
784
+ "name": "error",
785
+ "payloadType": "",
786
+ "description": "",
787
+ "emittedBy": [
788
+ {
789
+ "dropin": "storefront-account",
790
+ "function": ""
791
+ },
792
+ {
793
+ "dropin": "storefront-company-management",
794
+ "function": ""
795
+ }
796
+ ],
797
+ "consumedBy": []
798
+ },
799
+ {
800
+ "name": "locale",
801
+ "payloadType": "",
802
+ "description": "",
803
+ "emittedBy": [],
804
+ "consumedBy": [
805
+ {
806
+ "dropin": "storefront-account",
807
+ "function": ""
808
+ },
809
+ {
810
+ "dropin": "storefront-auth",
811
+ "function": ""
812
+ },
813
+ {
814
+ "dropin": "storefront-cart",
815
+ "function": ""
816
+ },
817
+ {
818
+ "dropin": "storefront-cart",
819
+ "function": ""
820
+ },
821
+ {
822
+ "dropin": "storefront-checkout",
823
+ "function": ""
824
+ },
825
+ {
826
+ "dropin": "storefront-company-management",
827
+ "function": ""
828
+ },
829
+ {
830
+ "dropin": "storefront-company-switcher",
831
+ "function": ""
832
+ },
833
+ {
834
+ "dropin": "storefront-order",
835
+ "function": ""
836
+ },
837
+ {
838
+ "dropin": "storefront-payment-services",
839
+ "function": ""
840
+ },
841
+ {
842
+ "dropin": "storefront-payment-services",
843
+ "function": ""
844
+ },
845
+ {
846
+ "dropin": "storefront-payment-services",
847
+ "function": ""
848
+ },
849
+ {
850
+ "dropin": "storefront-pdp",
851
+ "function": ""
852
+ },
853
+ {
854
+ "dropin": "storefront-pdp",
855
+ "function": ""
856
+ },
857
+ {
858
+ "dropin": "storefront-pdp",
859
+ "function": ""
860
+ },
861
+ {
862
+ "dropin": "storefront-pdp",
863
+ "function": ""
864
+ },
865
+ {
866
+ "dropin": "storefront-pdp",
867
+ "function": ""
868
+ },
869
+ {
870
+ "dropin": "storefront-personalization",
871
+ "function": ""
872
+ },
873
+ {
874
+ "dropin": "storefront-purchase-order",
875
+ "function": ""
876
+ },
877
+ {
878
+ "dropin": "storefront-quick-order",
879
+ "function": ""
880
+ },
881
+ {
882
+ "dropin": "storefront-quote-management",
883
+ "function": ""
884
+ },
885
+ {
886
+ "dropin": "storefront-recommendations",
887
+ "function": ""
888
+ },
889
+ {
890
+ "dropin": "storefront-requisition-list",
891
+ "function": ""
892
+ },
893
+ {
894
+ "dropin": "storefront-product-discovery",
895
+ "function": ""
896
+ },
897
+ {
898
+ "dropin": "storefront-wishlist",
899
+ "function": ""
900
+ }
901
+ ]
902
+ },
903
+ {
904
+ "name": "order/data",
905
+ "payloadType": "OrderDataModel",
906
+ "description": "",
907
+ "emittedBy": [
908
+ {
909
+ "dropin": "storefront-order",
910
+ "function": ""
911
+ },
912
+ {
913
+ "dropin": "storefront-order",
914
+ "function": ""
915
+ },
916
+ {
917
+ "dropin": "storefront-order",
918
+ "function": ""
919
+ },
920
+ {
921
+ "dropin": "storefront-order",
922
+ "function": ""
923
+ },
924
+ {
925
+ "dropin": "storefront-order",
926
+ "function": ""
927
+ },
928
+ {
929
+ "dropin": "storefront-purchase-order",
930
+ "function": ""
931
+ }
932
+ ],
933
+ "consumedBy": [
934
+ {
935
+ "dropin": "storefront-order",
936
+ "function": ""
937
+ },
938
+ {
939
+ "dropin": "storefront-order",
940
+ "function": ""
941
+ },
942
+ {
943
+ "dropin": "storefront-order",
944
+ "function": ""
945
+ },
946
+ {
947
+ "dropin": "storefront-order",
948
+ "function": ""
949
+ },
950
+ {
951
+ "dropin": "storefront-order",
952
+ "function": ""
953
+ },
954
+ {
955
+ "dropin": "storefront-order",
956
+ "function": ""
957
+ },
958
+ {
959
+ "dropin": "storefront-order",
960
+ "function": ""
961
+ },
962
+ {
963
+ "dropin": "storefront-order",
964
+ "function": ""
965
+ },
966
+ {
967
+ "dropin": "storefront-order",
968
+ "function": ""
969
+ },
970
+ {
971
+ "dropin": "storefront-order",
972
+ "function": ""
973
+ },
974
+ {
975
+ "dropin": "storefront-order",
976
+ "function": ""
977
+ },
978
+ {
979
+ "dropin": "storefront-order",
980
+ "function": ""
981
+ },
982
+ {
983
+ "dropin": "boilerplate/commerce-order-header",
984
+ "file": "blocks/commerce-order-header/commerce-order-header.js",
985
+ "function": ""
986
+ },
987
+ {
988
+ "dropin": "boilerplate/commerce-return-header",
989
+ "file": "blocks/commerce-return-header/commerce-return-header.js",
990
+ "function": ""
991
+ },
992
+ {
993
+ "dropin": "boilerplate/commerce-search-order",
994
+ "file": "blocks/commerce-search-order/commerce-search-order.js",
995
+ "function": ""
996
+ }
997
+ ]
998
+ },
999
+ {
1000
+ "name": "order/error",
1001
+ "payloadType": "{ source: string; type: string; error: Error | string }",
1002
+ "description": "",
1003
+ "emittedBy": [
1004
+ {
1005
+ "dropin": "storefront-order",
1006
+ "function": ""
1007
+ },
1008
+ {
1009
+ "dropin": "storefront-order",
1010
+ "function": ""
1011
+ }
1012
+ ],
1013
+ "consumedBy": [
1014
+ {
1015
+ "dropin": "storefront-order",
1016
+ "function": ""
1017
+ }
1018
+ ]
1019
+ },
1020
+ {
1021
+ "name": "order/placed",
1022
+ "payloadType": "OrderDataModel",
1023
+ "description": "",
1024
+ "emittedBy": [
1025
+ {
1026
+ "dropin": "storefront-order",
1027
+ "function": ""
1028
+ },
1029
+ {
1030
+ "dropin": "storefront-order",
1031
+ "function": ""
1032
+ },
1033
+ {
1034
+ "dropin": "storefront-order",
1035
+ "function": ""
1036
+ }
1037
+ ],
1038
+ "consumedBy": [
1039
+ {
1040
+ "dropin": "storefront-personalization",
1041
+ "function": ""
1042
+ },
1043
+ {
1044
+ "dropin": "boilerplate/commerce-checkout",
1045
+ "file": "blocks/commerce-checkout/commerce-checkout.js",
1046
+ "function": ""
1047
+ }
1048
+ ]
1049
+ },
1050
+ {
1051
+ "name": "pdp/data",
1052
+ "payloadType": "ProductModel | null",
1053
+ "description": "",
1054
+ "emittedBy": [
1055
+ {
1056
+ "dropin": "storefront-pdp",
1057
+ "function": ""
1058
+ },
1059
+ {
1060
+ "dropin": "storefront-pdp",
1061
+ "function": ""
1062
+ }
1063
+ ],
1064
+ "consumedBy": [
1065
+ {
1066
+ "dropin": "storefront-pdp",
1067
+ "function": ""
1068
+ },
1069
+ {
1070
+ "dropin": "storefront-pdp",
1071
+ "function": ""
1072
+ },
1073
+ {
1074
+ "dropin": "storefront-pdp",
1075
+ "function": ""
1076
+ },
1077
+ {
1078
+ "dropin": "storefront-pdp",
1079
+ "function": ""
1080
+ },
1081
+ {
1082
+ "dropin": "storefront-pdp",
1083
+ "function": ""
1084
+ },
1085
+ {
1086
+ "dropin": "storefront-pdp",
1087
+ "function": ""
1088
+ },
1089
+ {
1090
+ "dropin": "storefront-pdp",
1091
+ "function": ""
1092
+ },
1093
+ {
1094
+ "dropin": "storefront-pdp",
1095
+ "function": ""
1096
+ },
1097
+ {
1098
+ "dropin": "storefront-pdp",
1099
+ "function": ""
1100
+ },
1101
+ {
1102
+ "dropin": "storefront-pdp",
1103
+ "function": ""
1104
+ },
1105
+ {
1106
+ "dropin": "storefront-pdp",
1107
+ "function": ""
1108
+ },
1109
+ {
1110
+ "dropin": "boilerplate/product-details",
1111
+ "file": "blocks/product-details/product-details.js",
1112
+ "function": ""
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "name": "pdp/setValues",
1118
+ "payloadType": "",
1119
+ "description": "",
1120
+ "emittedBy": [],
1121
+ "consumedBy": [
1122
+ {
1123
+ "dropin": "storefront-pdp",
1124
+ "function": ""
1125
+ }
1126
+ ]
1127
+ },
1128
+ {
1129
+ "name": "pdp/valid",
1130
+ "payloadType": "boolean",
1131
+ "description": "",
1132
+ "emittedBy": [
1133
+ {
1134
+ "dropin": "storefront-pdp",
1135
+ "function": ""
1136
+ }
1137
+ ],
1138
+ "consumedBy": [
1139
+ {
1140
+ "dropin": "storefront-pdp",
1141
+ "function": ""
1142
+ },
1143
+ {
1144
+ "dropin": "boilerplate/product-details",
1145
+ "file": "blocks/product-details/product-details.js",
1146
+ "function": ""
1147
+ }
1148
+ ]
1149
+ },
1150
+ {
1151
+ "name": "pdp/values",
1152
+ "payloadType": "ValuesModel",
1153
+ "description": "",
1154
+ "emittedBy": [
1155
+ {
1156
+ "dropin": "storefront-pdp",
1157
+ "function": ""
1158
+ },
1159
+ {
1160
+ "dropin": "storefront-pdp",
1161
+ "function": ""
1162
+ }
1163
+ ],
1164
+ "consumedBy": [
1165
+ {
1166
+ "dropin": "storefront-pdp",
1167
+ "function": ""
1168
+ },
1169
+ {
1170
+ "dropin": "storefront-pdp",
1171
+ "function": ""
1172
+ },
1173
+ {
1174
+ "dropin": "storefront-pdp",
1175
+ "function": ""
1176
+ },
1177
+ {
1178
+ "dropin": "storefront-pdp",
1179
+ "function": ""
1180
+ },
1181
+ {
1182
+ "dropin": "boilerplate/product-details",
1183
+ "file": "blocks/product-details/product-details.js",
1184
+ "function": ""
1185
+ }
1186
+ ]
1187
+ },
1188
+ {
1189
+ "name": "personalization/updated",
1190
+ "payloadType": "PersonalizationData",
1191
+ "description": "",
1192
+ "emittedBy": [
1193
+ {
1194
+ "dropin": "storefront-personalization",
1195
+ "function": ""
1196
+ }
1197
+ ],
1198
+ "consumedBy": [
1199
+ {
1200
+ "dropin": "storefront-personalization",
1201
+ "function": ""
1202
+ }
1203
+ ]
1204
+ },
1205
+ {
1206
+ "name": "purchase-order/data",
1207
+ "payloadType": "PurchaseOrderModel",
1208
+ "description": "",
1209
+ "emittedBy": [
1210
+ {
1211
+ "dropin": "storefront-purchase-order",
1212
+ "function": ""
1213
+ }
1214
+ ],
1215
+ "consumedBy": [
1216
+ {
1217
+ "dropin": "storefront-purchase-order",
1218
+ "function": ""
1219
+ }
1220
+ ]
1221
+ },
1222
+ {
1223
+ "name": "purchase-order/error",
1224
+ "payloadType": "",
1225
+ "description": "",
1226
+ "emittedBy": [
1227
+ {
1228
+ "dropin": "storefront-purchase-order",
1229
+ "function": ""
1230
+ }
1231
+ ],
1232
+ "consumedBy": []
1233
+ },
1234
+ {
1235
+ "name": "purchase-order/placed",
1236
+ "payloadType": "PurchaseOrderModel",
1237
+ "description": "",
1238
+ "emittedBy": [
1239
+ {
1240
+ "dropin": "storefront-purchase-order",
1241
+ "function": ""
1242
+ }
1243
+ ],
1244
+ "consumedBy": []
1245
+ },
1246
+ {
1247
+ "name": "purchase-order/refresh",
1248
+ "payloadType": "Boolean",
1249
+ "description": "",
1250
+ "emittedBy": [
1251
+ {
1252
+ "dropin": "storefront-purchase-order",
1253
+ "function": ""
1254
+ },
1255
+ {
1256
+ "dropin": "storefront-purchase-order",
1257
+ "function": ""
1258
+ },
1259
+ {
1260
+ "dropin": "storefront-purchase-order",
1261
+ "function": ""
1262
+ },
1263
+ {
1264
+ "dropin": "storefront-purchase-order",
1265
+ "function": ""
1266
+ }
1267
+ ],
1268
+ "consumedBy": [
1269
+ {
1270
+ "dropin": "storefront-purchase-order",
1271
+ "function": ""
1272
+ },
1273
+ {
1274
+ "dropin": "storefront-purchase-order",
1275
+ "function": ""
1276
+ },
1277
+ {
1278
+ "dropin": "storefront-purchase-order",
1279
+ "function": ""
1280
+ }
1281
+ ]
1282
+ },
1283
+ {
1284
+ "name": "quick-order/add-items",
1285
+ "payloadType": "SubmitSkuValue",
1286
+ "description": "",
1287
+ "emittedBy": [
1288
+ {
1289
+ "dropin": "storefront-quick-order",
1290
+ "function": ""
1291
+ },
1292
+ {
1293
+ "dropin": "storefront-quick-order",
1294
+ "function": ""
1295
+ },
1296
+ {
1297
+ "dropin": "storefront-quick-order",
1298
+ "function": ""
1299
+ }
1300
+ ],
1301
+ "consumedBy": [
1302
+ {
1303
+ "dropin": "storefront-quick-order",
1304
+ "function": ""
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "name": "quick-order/add-to-cart",
1310
+ "payloadType": "any[]",
1311
+ "description": "",
1312
+ "emittedBy": [
1313
+ {
1314
+ "dropin": "storefront-quick-order",
1315
+ "function": ""
1316
+ }
1317
+ ],
1318
+ "consumedBy": []
1319
+ },
1320
+ {
1321
+ "name": "quick-order/add-to-cart-error",
1322
+ "payloadType": "{ message: string }",
1323
+ "description": "",
1324
+ "emittedBy": [],
1325
+ "consumedBy": [
1326
+ {
1327
+ "dropin": "storefront-quick-order",
1328
+ "function": ""
1329
+ }
1330
+ ]
1331
+ },
1332
+ {
1333
+ "name": "quick-order/grid-ordering-reset-selected-variants",
1334
+ "payloadType": "void",
1335
+ "description": "",
1336
+ "emittedBy": [],
1337
+ "consumedBy": [
1338
+ {
1339
+ "dropin": "storefront-quick-order",
1340
+ "function": ""
1341
+ }
1342
+ ]
1343
+ },
1344
+ {
1345
+ "name": "quick-order/grid-ordering-selected-variants",
1346
+ "payloadType": "VariantTableData[]",
1347
+ "description": "",
1348
+ "emittedBy": [
1349
+ {
1350
+ "dropin": "storefront-quick-order",
1351
+ "function": ""
1352
+ }
1353
+ ],
1354
+ "consumedBy": []
1355
+ },
1356
+ {
1357
+ "name": "quick-order/grid-ordering-variants",
1358
+ "payloadType": "ProductVariant[]",
1359
+ "description": "",
1360
+ "emittedBy": [
1361
+ {
1362
+ "dropin": "storefront-quick-order",
1363
+ "function": ""
1364
+ }
1365
+ ],
1366
+ "consumedBy": [
1367
+ {
1368
+ "dropin": "storefront-quick-order",
1369
+ "function": ""
1370
+ }
1371
+ ]
1372
+ },
1373
+ {
1374
+ "name": "quick-order/loading",
1375
+ "payloadType": "boolean",
1376
+ "description": "",
1377
+ "emittedBy": [
1378
+ {
1379
+ "dropin": "storefront-quick-order",
1380
+ "function": ""
1381
+ }
1382
+ ],
1383
+ "consumedBy": [
1384
+ {
1385
+ "dropin": "storefront-quick-order",
1386
+ "function": ""
1387
+ },
1388
+ {
1389
+ "dropin": "storefront-quick-order",
1390
+ "function": ""
1391
+ }
1392
+ ]
1393
+ },
1394
+ {
1395
+ "name": "quote-management/file-upload-error",
1396
+ "payloadType": "{\n error: string;\n fileName?: string;\n }",
1397
+ "description": "",
1398
+ "emittedBy": [
1399
+ {
1400
+ "dropin": "storefront-quote-management",
1401
+ "function": ""
1402
+ }
1403
+ ],
1404
+ "consumedBy": []
1405
+ },
1406
+ {
1407
+ "name": "quote-management/initialized",
1408
+ "payloadType": "{\n config: StoreConfigModel;\n }",
1409
+ "description": "",
1410
+ "emittedBy": [
1411
+ {
1412
+ "dropin": "storefront-quote-management",
1413
+ "function": ""
1414
+ }
1415
+ ],
1416
+ "consumedBy": [
1417
+ {
1418
+ "dropin": "storefront-quote-management",
1419
+ "function": ""
1420
+ }
1421
+ ]
1422
+ },
1423
+ {
1424
+ "name": "quote-management/line-item-note-set",
1425
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n itemUid: string;\n note: string;\n quantity?: number;\n };\n }",
1426
+ "description": "",
1427
+ "emittedBy": [
1428
+ {
1429
+ "dropin": "storefront-quote-management",
1430
+ "function": ""
1431
+ }
1432
+ ],
1433
+ "consumedBy": []
1434
+ },
1435
+ {
1436
+ "name": "quote-management/negotiable-quote-close-error",
1437
+ "payloadType": "{\n error: Error;\n attemptedQuoteUids: string[];\n }",
1438
+ "description": "",
1439
+ "emittedBy": [
1440
+ {
1441
+ "dropin": "storefront-quote-management",
1442
+ "function": ""
1443
+ }
1444
+ ],
1445
+ "consumedBy": [
1446
+ {
1447
+ "dropin": "storefront-quote-management",
1448
+ "function": ""
1449
+ }
1450
+ ]
1451
+ },
1452
+ {
1453
+ "name": "quote-management/negotiable-quote-closed",
1454
+ "payloadType": "{\n closedQuoteUids: string[];\n resultStatus: string;\n }",
1455
+ "description": "",
1456
+ "emittedBy": [
1457
+ {
1458
+ "dropin": "storefront-quote-management",
1459
+ "function": ""
1460
+ }
1461
+ ],
1462
+ "consumedBy": [
1463
+ {
1464
+ "dropin": "storefront-quote-management",
1465
+ "function": ""
1466
+ }
1467
+ ]
1468
+ },
1469
+ {
1470
+ "name": "quote-management/negotiable-quote-delete-error",
1471
+ "payloadType": "{\n error: Error;\n attemptedQuoteUids: string[];\n }",
1472
+ "description": "",
1473
+ "emittedBy": [
1474
+ {
1475
+ "dropin": "storefront-quote-management",
1476
+ "function": ""
1477
+ }
1478
+ ],
1479
+ "consumedBy": []
1480
+ },
1481
+ {
1482
+ "name": "quote-management/negotiable-quote-deleted",
1483
+ "payloadType": "{\n deletedQuoteUids: string[];\n resultStatus: string;\n }",
1484
+ "description": "",
1485
+ "emittedBy": [
1486
+ {
1487
+ "dropin": "storefront-quote-management",
1488
+ "function": ""
1489
+ }
1490
+ ],
1491
+ "consumedBy": []
1492
+ },
1493
+ {
1494
+ "name": "quote-management/negotiable-quote-requested",
1495
+ "payloadType": "{\n quote: NegotiableQuoteModel | null;\n input: {\n cartId: string;\n quoteName: string;\n comment?: string;\n attachments?: { key: string }[];\n isDraft?: boolean;\n };\n }",
1496
+ "description": "",
1497
+ "emittedBy": [
1498
+ {
1499
+ "dropin": "storefront-quote-management",
1500
+ "function": ""
1501
+ }
1502
+ ],
1503
+ "consumedBy": []
1504
+ },
1505
+ {
1506
+ "name": "quote-management/permissions",
1507
+ "payloadType": "typeof state.permissions",
1508
+ "description": "",
1509
+ "emittedBy": [
1510
+ {
1511
+ "dropin": "storefront-quote-management",
1512
+ "function": ""
1513
+ }
1514
+ ],
1515
+ "consumedBy": [
1516
+ {
1517
+ "dropin": "storefront-quote-management",
1518
+ "function": ""
1519
+ },
1520
+ {
1521
+ "dropin": "storefront-quote-management",
1522
+ "function": ""
1523
+ }
1524
+ ]
1525
+ },
1526
+ {
1527
+ "name": "quote-management/quantities-updated",
1528
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n items: Array<{ quoteItemUid: string; quantity: number }>;\n };\n }",
1529
+ "description": "",
1530
+ "emittedBy": [
1531
+ {
1532
+ "dropin": "storefront-quote-management",
1533
+ "function": ""
1534
+ }
1535
+ ],
1536
+ "consumedBy": [
1537
+ {
1538
+ "dropin": "storefront-quote-management",
1539
+ "function": ""
1540
+ }
1541
+ ]
1542
+ },
1543
+ {
1544
+ "name": "quote-management/quote-data",
1545
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n permissions: {\n requestQuote: boolean;\n editQuote: boolean;\n deleteQuote: boolean;\n checkoutQuote: boolean;\n };\n }",
1546
+ "description": "",
1547
+ "emittedBy": [
1548
+ {
1549
+ "dropin": "storefront-quote-management",
1550
+ "function": ""
1551
+ },
1552
+ {
1553
+ "dropin": "storefront-quote-management",
1554
+ "function": ""
1555
+ }
1556
+ ],
1557
+ "consumedBy": [
1558
+ {
1559
+ "dropin": "storefront-checkout",
1560
+ "function": ""
1561
+ },
1562
+ {
1563
+ "dropin": "storefront-quote-management",
1564
+ "function": ""
1565
+ },
1566
+ {
1567
+ "dropin": "storefront-quote-management",
1568
+ "function": ""
1569
+ },
1570
+ {
1571
+ "dropin": "storefront-quote-management",
1572
+ "function": ""
1573
+ },
1574
+ {
1575
+ "dropin": "storefront-quote-management",
1576
+ "function": ""
1577
+ },
1578
+ {
1579
+ "dropin": "storefront-quote-management",
1580
+ "function": ""
1581
+ },
1582
+ {
1583
+ "dropin": "storefront-quote-management",
1584
+ "function": ""
1585
+ },
1586
+ {
1587
+ "dropin": "storefront-quote-management",
1588
+ "function": ""
1589
+ }
1590
+ ]
1591
+ },
1592
+ {
1593
+ "name": "quote-management/quote-data/error",
1594
+ "payloadType": "{\n error: Error;\n }",
1595
+ "description": "",
1596
+ "emittedBy": [
1597
+ {
1598
+ "dropin": "storefront-quote-management",
1599
+ "function": ""
1600
+ }
1601
+ ],
1602
+ "consumedBy": []
1603
+ },
1604
+ {
1605
+ "name": "quote-management/quote-data/initialized",
1606
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n permissions: typeof state.permissions;\n }",
1607
+ "description": "",
1608
+ "emittedBy": [
1609
+ {
1610
+ "dropin": "storefront-quote-management",
1611
+ "function": ""
1612
+ }
1613
+ ],
1614
+ "consumedBy": []
1615
+ },
1616
+ {
1617
+ "name": "quote-management/quote-duplicated",
1618
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n duplicatedQuoteUid: string;\n };\n hasOutOfStockItems?: boolean;\n }",
1619
+ "description": "",
1620
+ "emittedBy": [
1621
+ {
1622
+ "dropin": "storefront-quote-management",
1623
+ "function": ""
1624
+ }
1625
+ ],
1626
+ "consumedBy": [
1627
+ {
1628
+ "dropin": "storefront-quote-management",
1629
+ "function": ""
1630
+ }
1631
+ ]
1632
+ },
1633
+ {
1634
+ "name": "quote-management/quote-items-removed",
1635
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n removedItemUids: string[];\n input: RemoveNegotiableQuoteItemsInput;\n }",
1636
+ "description": "",
1637
+ "emittedBy": [
1638
+ {
1639
+ "dropin": "storefront-quote-management",
1640
+ "function": ""
1641
+ }
1642
+ ],
1643
+ "consumedBy": [
1644
+ {
1645
+ "dropin": "storefront-quote-management",
1646
+ "function": ""
1647
+ },
1648
+ {
1649
+ "dropin": "storefront-quote-management",
1650
+ "function": ""
1651
+ }
1652
+ ]
1653
+ },
1654
+ {
1655
+ "name": "quote-management/quote-renamed",
1656
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n quoteName: string;\n quoteComment?: string;\n };\n }",
1657
+ "description": "",
1658
+ "emittedBy": [
1659
+ {
1660
+ "dropin": "storefront-quote-management",
1661
+ "function": ""
1662
+ }
1663
+ ],
1664
+ "consumedBy": [
1665
+ {
1666
+ "dropin": "storefront-quote-management",
1667
+ "function": ""
1668
+ },
1669
+ {
1670
+ "dropin": "storefront-quote-management",
1671
+ "function": ""
1672
+ }
1673
+ ]
1674
+ },
1675
+ {
1676
+ "name": "quote-management/quote-sent-for-review",
1677
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n comment?: string;\n attachments?: { key: string }[];\n };\n }",
1678
+ "description": "",
1679
+ "emittedBy": [
1680
+ {
1681
+ "dropin": "storefront-quote-management",
1682
+ "function": ""
1683
+ }
1684
+ ],
1685
+ "consumedBy": [
1686
+ {
1687
+ "dropin": "storefront-quote-management",
1688
+ "function": ""
1689
+ }
1690
+ ]
1691
+ },
1692
+ {
1693
+ "name": "quote-management/quote-template-data",
1694
+ "payloadType": "{\n quoteTemplate: NegotiableQuoteTemplateModel;\n permissions: typeof state.permissions;\n }",
1695
+ "description": "",
1696
+ "emittedBy": [
1697
+ {
1698
+ "dropin": "storefront-quote-management",
1699
+ "function": ""
1700
+ },
1701
+ {
1702
+ "dropin": "storefront-quote-management",
1703
+ "function": ""
1704
+ },
1705
+ {
1706
+ "dropin": "storefront-quote-management",
1707
+ "function": ""
1708
+ },
1709
+ {
1710
+ "dropin": "storefront-quote-management",
1711
+ "function": ""
1712
+ },
1713
+ {
1714
+ "dropin": "storefront-quote-management",
1715
+ "function": ""
1716
+ },
1717
+ {
1718
+ "dropin": "storefront-quote-management",
1719
+ "function": ""
1720
+ },
1721
+ {
1722
+ "dropin": "storefront-quote-management",
1723
+ "function": ""
1724
+ },
1725
+ {
1726
+ "dropin": "storefront-quote-management",
1727
+ "function": ""
1728
+ },
1729
+ {
1730
+ "dropin": "storefront-quote-management",
1731
+ "function": ""
1732
+ },
1733
+ {
1734
+ "dropin": "storefront-quote-management",
1735
+ "function": ""
1736
+ },
1737
+ {
1738
+ "dropin": "storefront-quote-management",
1739
+ "function": ""
1740
+ }
1741
+ ],
1742
+ "consumedBy": [
1743
+ {
1744
+ "dropin": "storefront-quote-management",
1745
+ "function": ""
1746
+ },
1747
+ {
1748
+ "dropin": "storefront-quote-management",
1749
+ "function": ""
1750
+ },
1751
+ {
1752
+ "dropin": "storefront-quote-management",
1753
+ "function": ""
1754
+ },
1755
+ {
1756
+ "dropin": "storefront-quote-management",
1757
+ "function": ""
1758
+ },
1759
+ {
1760
+ "dropin": "storefront-quote-management",
1761
+ "function": ""
1762
+ },
1763
+ {
1764
+ "dropin": "storefront-quote-management",
1765
+ "function": ""
1766
+ },
1767
+ {
1768
+ "dropin": "storefront-quote-management",
1769
+ "function": ""
1770
+ }
1771
+ ]
1772
+ },
1773
+ {
1774
+ "name": "quote-management/quote-template-data/error",
1775
+ "payloadType": "{\n error: Error;\n }",
1776
+ "description": "",
1777
+ "emittedBy": [
1778
+ {
1779
+ "dropin": "storefront-quote-management",
1780
+ "function": ""
1781
+ }
1782
+ ],
1783
+ "consumedBy": []
1784
+ },
1785
+ {
1786
+ "name": "quote-management/quote-template-deleted",
1787
+ "payloadType": "{\n templateId: string;\n }",
1788
+ "description": "",
1789
+ "emittedBy": [
1790
+ {
1791
+ "dropin": "storefront-quote-management",
1792
+ "function": ""
1793
+ }
1794
+ ],
1795
+ "consumedBy": []
1796
+ },
1797
+ {
1798
+ "name": "quote-management/quote-template-generated",
1799
+ "payloadType": "{\n quoteId: string;\n }",
1800
+ "description": "",
1801
+ "emittedBy": [
1802
+ {
1803
+ "dropin": "storefront-quote-management",
1804
+ "function": ""
1805
+ }
1806
+ ],
1807
+ "consumedBy": []
1808
+ },
1809
+ {
1810
+ "name": "quote-management/quote-templates-data",
1811
+ "payloadType": "{\n quoteTemplates: NegotiableQuoteTemplatesListModel;\n permissions: typeof state.permissions;\n }",
1812
+ "description": "",
1813
+ "emittedBy": [
1814
+ {
1815
+ "dropin": "storefront-quote-management",
1816
+ "function": ""
1817
+ }
1818
+ ],
1819
+ "consumedBy": []
1820
+ },
1821
+ {
1822
+ "name": "quote-management/shipping-address-set",
1823
+ "payloadType": "{\n quote: NegotiableQuoteModel;\n input: {\n quoteUid: string;\n addressId?: number;\n addressData?: AddressInput;\n };\n }",
1824
+ "description": "",
1825
+ "emittedBy": [
1826
+ {
1827
+ "dropin": "storefront-quote-management",
1828
+ "function": ""
1829
+ }
1830
+ ],
1831
+ "consumedBy": [
1832
+ {
1833
+ "dropin": "storefront-quote-management",
1834
+ "function": ""
1835
+ },
1836
+ {
1837
+ "dropin": "storefront-quote-management",
1838
+ "function": ""
1839
+ }
1840
+ ]
1841
+ },
1842
+ {
1843
+ "name": "recommendations/data",
1844
+ "payloadType": "RecommendationUnitModel[] | null",
1845
+ "description": "",
1846
+ "emittedBy": [
1847
+ {
1848
+ "dropin": "storefront-recommendations",
1849
+ "function": ""
1850
+ }
1851
+ ],
1852
+ "consumedBy": [
1853
+ {
1854
+ "dropin": "storefront-recommendations",
1855
+ "function": ""
1856
+ },
1857
+ {
1858
+ "dropin": "boilerplate/product-recommendations",
1859
+ "file": "blocks/product-recommendations/product-recommendations.js",
1860
+ "function": ""
1861
+ }
1862
+ ]
1863
+ },
1864
+ {
1865
+ "name": "requisitionList/alert",
1866
+ "payloadType": "RequisitionListActionPayload",
1867
+ "description": "",
1868
+ "emittedBy": [
1869
+ {
1870
+ "dropin": "storefront-requisition-list",
1871
+ "function": ""
1872
+ },
1873
+ {
1874
+ "dropin": "storefront-requisition-list",
1875
+ "function": ""
1876
+ }
1877
+ ],
1878
+ "consumedBy": [
1879
+ {
1880
+ "dropin": "storefront-cart",
1881
+ "function": ""
1882
+ },
1883
+ {
1884
+ "dropin": "storefront-requisition-list",
1885
+ "function": ""
1886
+ },
1887
+ {
1888
+ "dropin": "storefront-requisition-list",
1889
+ "function": ""
1890
+ }
1891
+ ]
1892
+ },
1893
+ {
1894
+ "name": "requisitionList/data",
1895
+ "payloadType": "RequisitionList | null",
1896
+ "description": "",
1897
+ "emittedBy": [
1898
+ {
1899
+ "dropin": "storefront-requisition-list",
1900
+ "function": ""
1901
+ },
1902
+ {
1903
+ "dropin": "storefront-requisition-list",
1904
+ "function": ""
1905
+ },
1906
+ {
1907
+ "dropin": "storefront-requisition-list",
1908
+ "function": ""
1909
+ },
1910
+ {
1911
+ "dropin": "storefront-requisition-list",
1912
+ "function": ""
1913
+ },
1914
+ {
1915
+ "dropin": "storefront-requisition-list",
1916
+ "function": ""
1917
+ },
1918
+ {
1919
+ "dropin": "storefront-requisition-list",
1920
+ "function": ""
1921
+ },
1922
+ {
1923
+ "dropin": "storefront-requisition-list",
1924
+ "function": ""
1925
+ }
1926
+ ],
1927
+ "consumedBy": [
1928
+ {
1929
+ "dropin": "storefront-requisition-list",
1930
+ "function": ""
1931
+ },
1932
+ {
1933
+ "dropin": "storefront-requisition-list",
1934
+ "function": ""
1935
+ },
1936
+ {
1937
+ "dropin": "storefront-requisition-list",
1938
+ "function": ""
1939
+ }
1940
+ ]
1941
+ },
1942
+ {
1943
+ "name": "requisitionList/initialized",
1944
+ "payloadType": "any",
1945
+ "description": "",
1946
+ "emittedBy": [
1947
+ {
1948
+ "dropin": "storefront-requisition-list",
1949
+ "function": ""
1950
+ }
1951
+ ],
1952
+ "consumedBy": [
1953
+ {
1954
+ "dropin": "storefront-requisition-list",
1955
+ "function": ""
1956
+ }
1957
+ ]
1958
+ },
1959
+ {
1960
+ "name": "requisitionLists/data",
1961
+ "payloadType": "RequisitionList[] | null",
1962
+ "description": "",
1963
+ "emittedBy": [
1964
+ {
1965
+ "dropin": "storefront-requisition-list",
1966
+ "function": ""
1967
+ },
1968
+ {
1969
+ "dropin": "storefront-requisition-list",
1970
+ "function": ""
1971
+ }
1972
+ ],
1973
+ "consumedBy": [
1974
+ {
1975
+ "dropin": "storefront-requisition-list",
1976
+ "function": ""
1977
+ },
1978
+ {
1979
+ "dropin": "storefront-requisition-list",
1980
+ "function": ""
1981
+ },
1982
+ {
1983
+ "dropin": "storefront-requisition-list",
1984
+ "function": ""
1985
+ }
1986
+ ]
1987
+ },
1988
+ {
1989
+ "name": "search/error",
1990
+ "payloadType": "string",
1991
+ "description": "",
1992
+ "emittedBy": [
1993
+ {
1994
+ "dropin": "storefront-product-discovery",
1995
+ "function": ""
1996
+ }
1997
+ ],
1998
+ "consumedBy": [
1999
+ {
2000
+ "dropin": "storefront-product-discovery",
2001
+ "function": ""
2002
+ }
2003
+ ]
2004
+ },
2005
+ {
2006
+ "name": "search/loading",
2007
+ "payloadType": "boolean",
2008
+ "description": "",
2009
+ "emittedBy": [
2010
+ {
2011
+ "dropin": "storefront-product-discovery",
2012
+ "function": ""
2013
+ }
2014
+ ],
2015
+ "consumedBy": [
2016
+ {
2017
+ "dropin": "storefront-product-discovery",
2018
+ "function": ""
2019
+ }
2020
+ ]
2021
+ },
2022
+ {
2023
+ "name": "search/result",
2024
+ "payloadType": "{\n result: ProductSearchResult;\n request: SearchVariables;\n }",
2025
+ "description": "",
2026
+ "emittedBy": [
2027
+ {
2028
+ "dropin": "storefront-product-discovery",
2029
+ "function": ""
2030
+ }
2031
+ ],
2032
+ "consumedBy": [
2033
+ {
2034
+ "dropin": "storefront-product-discovery",
2035
+ "function": ""
2036
+ },
2037
+ {
2038
+ "dropin": "storefront-product-discovery",
2039
+ "function": ""
2040
+ },
2041
+ {
2042
+ "dropin": "storefront-product-discovery",
2043
+ "function": ""
2044
+ },
2045
+ {
2046
+ "dropin": "storefront-product-discovery",
2047
+ "function": ""
2048
+ },
2049
+ {
2050
+ "dropin": "boilerplate/product-list-page",
2051
+ "file": "blocks/product-list-page/product-list-page.js",
2052
+ "function": ""
2053
+ }
2054
+ ]
2055
+ },
2056
+ {
2057
+ "name": "shipping/estimate",
2058
+ "payloadType": "{\n address: PartialAddress;\n shippingMethod: ShippingMethod | null;\n }",
2059
+ "description": "",
2060
+ "emittedBy": [
2061
+ {
2062
+ "dropin": "storefront-cart",
2063
+ "function": ""
2064
+ },
2065
+ {
2066
+ "dropin": "storefront-checkout",
2067
+ "function": ""
2068
+ },
2069
+ {
2070
+ "dropin": "storefront-checkout",
2071
+ "function": ""
2072
+ }
2073
+ ],
2074
+ "consumedBy": [
2075
+ {
2076
+ "dropin": "storefront-cart",
2077
+ "function": ""
2078
+ },
2079
+ {
2080
+ "dropin": "storefront-cart",
2081
+ "function": ""
2082
+ },
2083
+ {
2084
+ "dropin": "storefront-checkout",
2085
+ "function": ""
2086
+ },
2087
+ {
2088
+ "dropin": "storefront-checkout",
2089
+ "function": ""
2090
+ }
2091
+ ]
2092
+ },
2093
+ {
2094
+ "name": "wishlist/alert",
2095
+ "payloadType": "WishlistActionPayload | null",
2096
+ "description": "",
2097
+ "emittedBy": [
2098
+ {
2099
+ "dropin": "storefront-wishlist",
2100
+ "function": ""
2101
+ },
2102
+ {
2103
+ "dropin": "storefront-wishlist",
2104
+ "function": ""
2105
+ }
2106
+ ],
2107
+ "consumedBy": [
2108
+ {
2109
+ "dropin": "storefront-wishlist",
2110
+ "function": ""
2111
+ },
2112
+ {
2113
+ "dropin": "boilerplate/commerce-cart",
2114
+ "file": "blocks/commerce-cart/commerce-cart.js",
2115
+ "function": ""
2116
+ },
2117
+ {
2118
+ "dropin": "boilerplate/commerce-wishlist",
2119
+ "file": "blocks/commerce-wishlist/commerce-wishlist.js",
2120
+ "function": ""
2121
+ },
2122
+ {
2123
+ "dropin": "boilerplate/product-details",
2124
+ "file": "blocks/product-details/product-details.js",
2125
+ "function": ""
2126
+ }
2127
+ ]
2128
+ },
2129
+ {
2130
+ "name": "wishlist/data",
2131
+ "payloadType": "Wishlist | null",
2132
+ "description": "",
2133
+ "emittedBy": [
2134
+ {
2135
+ "dropin": "storefront-wishlist",
2136
+ "function": ""
2137
+ },
2138
+ {
2139
+ "dropin": "storefront-wishlist",
2140
+ "function": ""
2141
+ },
2142
+ {
2143
+ "dropin": "storefront-wishlist",
2144
+ "function": ""
2145
+ },
2146
+ {
2147
+ "dropin": "storefront-wishlist",
2148
+ "function": ""
2149
+ },
2150
+ {
2151
+ "dropin": "storefront-wishlist",
2152
+ "function": ""
2153
+ }
2154
+ ],
2155
+ "consumedBy": [
2156
+ {
2157
+ "dropin": "storefront-wishlist",
2158
+ "function": ""
2159
+ },
2160
+ {
2161
+ "dropin": "storefront-wishlist",
2162
+ "function": ""
2163
+ },
2164
+ {
2165
+ "dropin": "storefront-wishlist",
2166
+ "function": ""
2167
+ }
2168
+ ]
2169
+ },
2170
+ {
2171
+ "name": "wishlist/initialized",
2172
+ "payloadType": "Wishlist | null",
2173
+ "description": "",
2174
+ "emittedBy": [
2175
+ {
2176
+ "dropin": "storefront-wishlist",
2177
+ "function": ""
2178
+ }
2179
+ ],
2180
+ "consumedBy": []
2181
+ },
2182
+ {
2183
+ "name": "wishlist/reset",
2184
+ "payloadType": "void",
2185
+ "description": "",
2186
+ "emittedBy": [
2187
+ {
2188
+ "dropin": "storefront-wishlist",
2189
+ "function": ""
2190
+ }
2191
+ ],
2192
+ "consumedBy": [
2193
+ {
2194
+ "dropin": "storefront-wishlist",
2195
+ "function": ""
2196
+ }
2197
+ ]
2198
+ }
2199
+ ]
2200
+ }