@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,2003 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "description": "Auto-generated container registry",
4
+ "dropins": {
5
+ "storefront-cart": {
6
+ "version": "3.2.0",
7
+ "renderImport": "@dropins/storefront-cart/render.js",
8
+ "apiImport": "@dropins/storefront-cart/api.js",
9
+ "containers": [
10
+ {
11
+ "name": "EstimateShipping",
12
+ "importPath": "@dropins/storefront-cart/containers/EstimateShipping.js",
13
+ "description": "",
14
+ "props": {
15
+ "showDefaultEstimatedShippingCost": "boolean"
16
+ },
17
+ "slotNames": [],
18
+ "extendsHTMLAttributes": true
19
+ },
20
+ {
21
+ "name": "MiniCart",
22
+ "importPath": "@dropins/storefront-cart/containers/MiniCart.js",
23
+ "description": "",
24
+ "props": {
25
+ "routeProduct": "(item: CartModel['items'][0]) => string (optional)",
26
+ "routeCart": "() => string (optional)",
27
+ "routeCheckout": "() => string (optional)",
28
+ "routeEmptyCartCTA": "() => string (optional)",
29
+ "hideFooter": "boolean (optional)",
30
+ "displayAllItems": "boolean (optional)",
31
+ "showDiscount": "boolean (optional)",
32
+ "showSavings": "boolean (optional)",
33
+ "enableItemRemoval": "boolean (optional)",
34
+ "enableQuantityUpdate": "boolean (optional)",
35
+ "hideHeading": "boolean (optional)",
36
+ "undo": "boolean (optional)"
37
+ },
38
+ "slotNames": [
39
+ "ProductList",
40
+ "ProductListFooter",
41
+ "PreCheckoutSection",
42
+ "Thumbnail",
43
+ "Heading",
44
+ "EmptyCart",
45
+ "Footer",
46
+ "RowTotalFooter",
47
+ "ProductAttributes",
48
+ "CartSummaryFooter",
49
+ "CartItem",
50
+ "UndoBanner",
51
+ "ItemTitle",
52
+ "ItemPrice",
53
+ "ItemQuantity",
54
+ "ItemTotal",
55
+ "ItemSku",
56
+ "ItemRemoveAction"
57
+ ],
58
+ "extendsHTMLAttributes": true
59
+ },
60
+ {
61
+ "name": "CartSummaryGrid",
62
+ "importPath": "@dropins/storefront-cart/containers/CartSummaryGrid.js",
63
+ "description": "",
64
+ "props": {
65
+ "routeProduct": "(item: CartModel['items'][0]) => string (optional)",
66
+ "routeEmptyCartCTA": "() => string (optional)"
67
+ },
68
+ "slotNames": [
69
+ "Thumbnail"
70
+ ],
71
+ "extendsHTMLAttributes": true
72
+ },
73
+ {
74
+ "name": "CartSummaryList",
75
+ "importPath": "@dropins/storefront-cart/containers/CartSummaryList.js",
76
+ "description": "",
77
+ "props": {
78
+ "hideHeading": "boolean (optional)",
79
+ "hideFooter": "boolean (optional)",
80
+ "routeProduct": "(item: CartModel['items'][0]) => string (optional)",
81
+ "routeEmptyCartCTA": "() => string (optional)",
82
+ "routeCart": "() => string (optional)",
83
+ "onItemUpdate": "({ item }: { item: CartModel['items'][0] }) => void (optional)",
84
+ "onItemRemove": "({ item }: { item: CartModel['items'][0] }) => void (optional)",
85
+ "maxItems": "number (optional)",
86
+ "showMaxItems": "boolean (optional)",
87
+ "attributesToHide": "SwitchableAttributes[] (optional)",
88
+ "enableRemoveItem": "boolean (optional)",
89
+ "enableUpdateItemQuantity": "boolean (optional)",
90
+ "onItemsErrorsChange": "(errors: Map<string, string>) => void (optional)",
91
+ "accordion": "boolean (optional)",
92
+ "variant": "'primary' | 'secondary' (optional)",
93
+ "isLoading": "boolean (optional)",
94
+ "showDiscount": "boolean (optional)",
95
+ "showSavings": "boolean (optional)",
96
+ "quantityType": "'stepper' | 'dropdown' (optional)",
97
+ "dropdownOptions": "{ value: string; text: string }[] (optional)",
98
+ "undo": "boolean (optional)",
99
+ "includeOutOfStockItems": "boolean (optional)",
100
+ "__testRecentlyRemovedItems": "Array<{\n item: CartModel['items'][0];\n index: number;\n loading: boolean;\n error?: string;\n beingRemoved?: boolean;\n }> (optional)"
101
+ },
102
+ "slotNames": [
103
+ "Heading",
104
+ "EmptyCart",
105
+ "Footer",
106
+ "RowTotalFooter",
107
+ "Thumbnail",
108
+ "ProductAttributes",
109
+ "CartSummaryFooter",
110
+ "CartItem",
111
+ "UndoBanner",
112
+ "ItemTitle",
113
+ "ItemPrice",
114
+ "ItemQuantity",
115
+ "ItemTotal",
116
+ "ItemSku",
117
+ "ItemRemoveAction"
118
+ ],
119
+ "extendsHTMLAttributes": true
120
+ },
121
+ {
122
+ "name": "OrderSummary",
123
+ "importPath": "@dropins/storefront-cart/containers/OrderSummary.js",
124
+ "description": "",
125
+ "props": {
126
+ "routeCheckout": "(context: CheckoutRouteContext) => string (optional)",
127
+ "enableCoupons": "boolean (optional)",
128
+ "enableGiftCards": "boolean (optional)",
129
+ "errors": "boolean",
130
+ "showTotalSaved": "boolean (optional)",
131
+ "updateLineItems": "(\n lineItems: Array<OrderSummaryLineItem>\n ) => Array<OrderSummaryLineItem> (optional)"
132
+ },
133
+ "slotNames": [
134
+ "EstimateShipping",
135
+ "Coupons",
136
+ "GiftCards"
137
+ ],
138
+ "extendsHTMLAttributes": true
139
+ },
140
+ {
141
+ "name": "EmptyCart",
142
+ "importPath": "@dropins/storefront-cart/containers/EmptyCart.js",
143
+ "description": "",
144
+ "props": {
145
+ "routeCTA": "() => string (optional)"
146
+ },
147
+ "slotNames": [],
148
+ "extendsHTMLAttributes": true
149
+ },
150
+ {
151
+ "name": "Coupons",
152
+ "importPath": "@dropins/storefront-cart/containers/Coupons.js",
153
+ "description": "",
154
+ "props": {},
155
+ "slotNames": [],
156
+ "extendsHTMLAttributes": true
157
+ },
158
+ {
159
+ "name": "OrderSummaryLine",
160
+ "importPath": "@dropins/storefront-cart/containers/OrderSummaryLine.js",
161
+ "description": "",
162
+ "props": {
163
+ "label": "VNode | string",
164
+ "price": "VNode<HTMLAttributes<HTMLSpanElement>>",
165
+ "classSuffixes": "Array<string> (optional)",
166
+ "labelClassSuffix": "string (optional)",
167
+ "testId": "string (optional)",
168
+ "children": "any (optional)"
169
+ },
170
+ "slotNames": []
171
+ },
172
+ {
173
+ "name": "GiftCards",
174
+ "importPath": "@dropins/storefront-cart/containers/GiftCards.js",
175
+ "description": "",
176
+ "props": {},
177
+ "slotNames": [],
178
+ "extendsHTMLAttributes": true
179
+ },
180
+ {
181
+ "name": "GiftOptions",
182
+ "importPath": "@dropins/storefront-cart/containers/GiftOptions.js",
183
+ "description": "",
184
+ "props": {
185
+ "item": "Item | ProductGiftOptionsConfig",
186
+ "view": "GiftOptionsViewProps (optional)",
187
+ "readOnlyFormOrderView": "GiftOptionsReadOnlyViewProps",
188
+ "dataSource": "GiftOptionsDataSourcesProps (optional)",
189
+ "isEditable": "boolean (optional)",
190
+ "initialLoading": "boolean (optional)",
191
+ "handleItemsLoading": "(uid: string, state: boolean) => void (optional)",
192
+ "handleItemsError": "(uid: string, message?: string) => void (optional)",
193
+ "onItemUpdate": "({ item }: { item: Item }) => void (optional)",
194
+ "onGiftOptionsChange": "(data: GiftFormDataType) => void (optional)"
195
+ },
196
+ "slotNames": [
197
+ "SwatchImage"
198
+ ]
199
+ },
200
+ {
201
+ "name": "CartSummaryTable",
202
+ "importPath": "@dropins/storefront-cart/containers/CartSummaryTable.js",
203
+ "description": "",
204
+ "props": {
205
+ "initialData": "CartModel | null (optional)",
206
+ "className": "string (optional)",
207
+ "routeProduct": "(item: CartModel['items'][number]) => string (optional)",
208
+ "routeEmptyCartCTA": "() => string (optional)",
209
+ "allowQuantityUpdates": "boolean (optional)",
210
+ "allowRemoveItems": "boolean (optional)",
211
+ "onQuantityUpdate": "(\n item: CartModel['items'][number],\n quantity: number\n ) => void (optional)",
212
+ "onItemRemove": "(item: CartModel['items'][number]) => void (optional)",
213
+ "undo": "boolean (optional)"
214
+ },
215
+ "slotNames": [
216
+ "Item",
217
+ "Price",
218
+ "Quantity",
219
+ "Subtotal",
220
+ "Thumbnail",
221
+ "ProductTitle",
222
+ "Sku",
223
+ "Configurations",
224
+ "ItemAlert",
225
+ "ItemWarning",
226
+ "Actions",
227
+ "UndoBanner",
228
+ "EmptyCart"
229
+ ],
230
+ "extendsHTMLAttributes": true
231
+ }
232
+ ]
233
+ },
234
+ "storefront-checkout": {
235
+ "version": "3.2.1",
236
+ "renderImport": "@dropins/storefront-checkout/render.js",
237
+ "apiImport": "@dropins/storefront-checkout/api.js",
238
+ "containers": [
239
+ {
240
+ "name": "AddressValidation",
241
+ "importPath": "@dropins/storefront-checkout/containers/AddressValidation.js",
242
+ "description": "",
243
+ "props": {
244
+ "suggestedAddress": "Partial<AddressInput> | null",
245
+ "handleSelectedAddress": "(payload: {\n selection: 'suggested' | 'original';\n address: AddressInput | null | undefined;\n }) => void (optional)"
246
+ },
247
+ "slotNames": []
248
+ },
249
+ {
250
+ "name": "BillToShippingAddress",
251
+ "importPath": "@dropins/storefront-checkout/containers/BillToShippingAddress.js",
252
+ "description": "",
253
+ "props": {
254
+ "active": "boolean (optional)",
255
+ "autoSync": "boolean (optional)",
256
+ "onCartSyncError": "(error: CartSyncError) => void (optional)",
257
+ "onChange": "(checked: boolean) => void (optional)"
258
+ },
259
+ "slotNames": []
260
+ },
261
+ {
262
+ "name": "EstimateShipping",
263
+ "importPath": "@dropins/storefront-checkout/containers/EstimateShipping.js",
264
+ "description": "",
265
+ "props": {
266
+ "active": "boolean (optional)"
267
+ },
268
+ "slotNames": []
269
+ },
270
+ {
271
+ "name": "LoginForm",
272
+ "importPath": "@dropins/storefront-checkout/containers/LoginForm.js",
273
+ "description": "",
274
+ "props": {
275
+ "active": "boolean (optional)",
276
+ "autoSync": "boolean (optional)",
277
+ "displayHeadingContent": "boolean (optional)",
278
+ "onSignInClick": "(email: string) => void (optional)",
279
+ "onSignOutClick": "() => void (optional)",
280
+ "onCartSyncError": "(error: CartSyncError) => void (optional)",
281
+ "onValidationError": "(error: ValidationError) => void (optional)"
282
+ },
283
+ "slotNames": [
284
+ "Heading",
285
+ "Preferences",
286
+ "Title"
287
+ ],
288
+ "extendsHTMLAttributes": true
289
+ },
290
+ {
291
+ "name": "MergedCartBanner",
292
+ "importPath": "@dropins/storefront-checkout/containers/MergedCartBanner.js",
293
+ "description": "",
294
+ "props": {
295
+ "active": "boolean (optional)"
296
+ },
297
+ "slotNames": []
298
+ },
299
+ {
300
+ "name": "OutOfStock",
301
+ "importPath": "@dropins/storefront-checkout/containers/OutOfStock.js",
302
+ "description": "",
303
+ "props": {
304
+ "onCartProductsUpdate": "(items: UpdateProductsFromCart) => void (optional)",
305
+ "routeCart": "() => string (optional)",
306
+ "active": "boolean (optional)"
307
+ },
308
+ "slotNames": []
309
+ },
310
+ {
311
+ "name": "PaymentMethods",
312
+ "importPath": "@dropins/storefront-checkout/containers/PaymentMethods.js",
313
+ "description": "",
314
+ "props": {
315
+ "UIComponentType": "UIComponentType (optional)",
316
+ "active": "boolean (optional)",
317
+ "autoSync": "boolean (optional)",
318
+ "onCartSyncError": "(error: CartSyncError) => void (optional)",
319
+ "onSelectionChange": "(method: PaymentMethod) => void (optional)"
320
+ },
321
+ "slotNames": [
322
+ "Methods",
323
+ "Title"
324
+ ],
325
+ "extendsHTMLAttributes": true
326
+ },
327
+ {
328
+ "name": "PlaceOrder",
329
+ "importPath": "@dropins/storefront-checkout/containers/PlaceOrder.js",
330
+ "description": "",
331
+ "props": {
332
+ "disabled": "boolean (optional)",
333
+ "active": "boolean (optional)",
334
+ "handleValidation": "() => boolean | Promise<boolean> (optional)",
335
+ "handlePlaceOrder": "(ctx: HandlePlaceOrderContext) => Promise<void>"
336
+ },
337
+ "slotNames": [
338
+ "Content"
339
+ ],
340
+ "extendsHTMLAttributes": true
341
+ },
342
+ {
343
+ "name": "PurchaseOrder",
344
+ "importPath": "@dropins/storefront-checkout/containers/PurchaseOrder.js",
345
+ "description": "",
346
+ "props": {
347
+ "initialReferenceNumber": "string (optional)",
348
+ "onReferenceNumberChange": "(referenceNumber: string) => void (optional)",
349
+ "onReferenceNumberBlur": "(referenceNumber: string) => void (optional)"
350
+ },
351
+ "slotNames": [],
352
+ "extendsHTMLAttributes": true
353
+ },
354
+ {
355
+ "name": "ServerError",
356
+ "importPath": "@dropins/storefront-checkout/containers/ServerError.js",
357
+ "description": "",
358
+ "props": {
359
+ "autoScroll": "boolean (optional)",
360
+ "onRetry": "(error: CheckoutError | null) => void (optional)",
361
+ "onServerError": "(error: string) => void (optional)",
362
+ "active": "boolean (optional)"
363
+ },
364
+ "slotNames": []
365
+ },
366
+ {
367
+ "name": "ShippingMethods",
368
+ "importPath": "@dropins/storefront-checkout/containers/ShippingMethods.js",
369
+ "description": "",
370
+ "props": {
371
+ "UIComponentType": "UIComponentType (optional)",
372
+ "active": "boolean (optional)",
373
+ "autoSync": "boolean (optional)",
374
+ "onCartSyncError": "(error: CartSyncError) => void (optional)",
375
+ "onSelectionChange": "(method: ShippingMethod) => void (optional)"
376
+ },
377
+ "slotNames": [
378
+ "ShippingMethodItem",
379
+ "Title"
380
+ ],
381
+ "extendsHTMLAttributes": true
382
+ },
383
+ {
384
+ "name": "TermsAndConditions",
385
+ "importPath": "@dropins/storefront-checkout/containers/TermsAndConditions.js",
386
+ "description": "",
387
+ "props": {
388
+ "active": "boolean (optional)"
389
+ },
390
+ "slotNames": [
391
+ "Agreements"
392
+ ]
393
+ },
394
+ {
395
+ "name": "PaymentOnAccount",
396
+ "importPath": "@dropins/storefront-checkout/containers/PaymentOnAccount.js",
397
+ "description": "",
398
+ "props": {
399
+ "initialReferenceNumber": "string (optional)",
400
+ "onReferenceNumberChange": "(referenceNumber: string) => void (optional)",
401
+ "onReferenceNumberBlur": "(referenceNumber: string) => void (optional)"
402
+ },
403
+ "slotNames": [],
404
+ "extendsHTMLAttributes": true
405
+ }
406
+ ]
407
+ },
408
+ "storefront-order": {
409
+ "version": "3.3.0",
410
+ "renderImport": "@dropins/storefront-order/render.js",
411
+ "apiImport": "@dropins/storefront-order/api.js",
412
+ "containers": [
413
+ {
414
+ "name": "CreateReturn",
415
+ "importPath": "@dropins/storefront-order/containers/CreateReturn.js",
416
+ "description": "",
417
+ "props": {
418
+ "orderData": "OrderDataModel (optional)",
419
+ "className": "string",
420
+ "onSuccess": "(response: onSuccessTypes | {}) => void (optional)",
421
+ "onError": "(message: string) => void (optional)",
422
+ "routeReturnSuccess": "() => string (optional)",
423
+ "showConfigurableOptions": "(options: options | {}) => options (optional)"
424
+ },
425
+ "slotNames": [
426
+ "Footer",
427
+ "ReturnOrderItem",
428
+ "ReturnFormActions",
429
+ "ReturnReasonFormImage",
430
+ "CartSummaryItemImage"
431
+ ]
432
+ },
433
+ {
434
+ "name": "CustomerDetails",
435
+ "importPath": "@dropins/storefront-order/containers/CustomerDetails.js",
436
+ "description": "",
437
+ "props": {
438
+ "className": "string (optional)",
439
+ "paymentIconsMap": "Record<string, IconType | IconNode> (optional)",
440
+ "orderData": "OrderDataModel (optional)",
441
+ "withHeader": "boolean (optional)",
442
+ "title": "string (optional)"
443
+ },
444
+ "slotNames": [
445
+ "OrderReturnInformation",
446
+ "PaymentMethodIcon"
447
+ ]
448
+ },
449
+ {
450
+ "name": "OrderCancelForm",
451
+ "importPath": "@dropins/storefront-order/containers/OrderCancelForm.js",
452
+ "description": "",
453
+ "props": {
454
+ "orderRef": "string",
455
+ "pickerProps": "PickerProps (optional)",
456
+ "submitButtonProps": "ButtonProps (optional)",
457
+ "cancelReasons": "PickerOption[]"
458
+ },
459
+ "slotNames": []
460
+ },
461
+ {
462
+ "name": "OrderCostSummary",
463
+ "importPath": "@dropins/storefront-order/containers/OrderCostSummary.js",
464
+ "description": "",
465
+ "props": {
466
+ "orderData": "OrderDataModel (optional)",
467
+ "withHeader": "boolean (optional)"
468
+ },
469
+ "slotNames": [],
470
+ "extendsHTMLAttributes": true
471
+ },
472
+ {
473
+ "name": "OrderHeader",
474
+ "importPath": "@dropins/storefront-order/containers/OrderHeader.js",
475
+ "description": "",
476
+ "props": {
477
+ "handleEmailAvailability": "(email: string) => Promise<boolean> (optional)",
478
+ "handleSignUpClick": "(ctx: SignUpContext) => void (optional)",
479
+ "orderData": "OrderDataModel (optional)"
480
+ },
481
+ "slotNames": []
482
+ },
483
+ {
484
+ "name": "OrderProductList",
485
+ "importPath": "@dropins/storefront-order/containers/OrderProductList.js",
486
+ "description": "",
487
+ "props": {
488
+ "orderData": "OrderDataModel (optional)",
489
+ "className": "string (optional)",
490
+ "withHeader": "boolean (optional)",
491
+ "showConfigurableOptions": "(options: options | {}) => options (optional)",
492
+ "routeProductDetails": "(product: any) => string (optional)"
493
+ },
494
+ "slotNames": [
495
+ "Footer",
496
+ "CartSummaryItemImage"
497
+ ]
498
+ },
499
+ {
500
+ "name": "OrderReturns",
501
+ "importPath": "@dropins/storefront-order/containers/OrderReturns.js",
502
+ "description": "",
503
+ "props": {
504
+ "withThumbnails": "boolean (optional)",
505
+ "withHeader": "boolean (optional)",
506
+ "className": "string (optional)",
507
+ "orderData": "OrderDataModel (optional)",
508
+ "routeReturnDetails": "({\n token,\n orderNumber,\n }: {\n token: string;\n orderNumber: string;\n }) => string (optional)",
509
+ "routeProductDetails": "(product: any) => string (optional)",
510
+ "routeTracking": "(track: routeTrackingProps) => string (optional)"
511
+ },
512
+ "slotNames": [
513
+ "ReturnItemsDetails",
514
+ "DetailsActionParams",
515
+ "ReturnListImage"
516
+ ]
517
+ },
518
+ {
519
+ "name": "OrderSearch",
520
+ "importPath": "@dropins/storefront-order/containers/OrderSearch.js",
521
+ "description": "",
522
+ "props": {
523
+ "className": "string (optional)",
524
+ "onError": "(errorInformation: errorInformationProps) => void (optional)",
525
+ "isAuth": "boolean",
526
+ "renderSignIn": "({\n render,\n formValues,\n }: RouteSignInProps) => boolean | undefined (optional)",
527
+ "routeCustomerOrder": "() => string (optional)",
528
+ "routeGuestOrder": "() => string (optional)"
529
+ },
530
+ "slotNames": []
531
+ },
532
+ {
533
+ "name": "OrderStatus",
534
+ "importPath": "@dropins/storefront-order/containers/OrderStatus.js",
535
+ "description": "",
536
+ "props": {
537
+ "className": "string (optional)",
538
+ "orderData": "OrderDataModel (optional)",
539
+ "statusTitle": "string (optional)",
540
+ "status": "StatusEnumProps (optional)",
541
+ "routeCreateReturn": "(orderReturn: OrdersReturnPropsModel) => string (optional)",
542
+ "routeOnSuccess": "() => string (optional)",
543
+ "onError": "(errorInformation: UserInputErrorProps[] | string) => void (optional)"
544
+ },
545
+ "slotNames": [
546
+ "OrderActions"
547
+ ]
548
+ },
549
+ {
550
+ "name": "ReturnsList",
551
+ "importPath": "@dropins/storefront-order/containers/ReturnsList.js",
552
+ "description": "",
553
+ "props": {
554
+ "returnPageSize": "number (optional)",
555
+ "withReturnsListButton": "boolean (optional)",
556
+ "returnsInMinifiedView": "number (optional)",
557
+ "className": "string (optional)",
558
+ "minifiedView": "boolean (optional)",
559
+ "withHeader": "boolean (optional)",
560
+ "routeReturnDetails": "({\n returnNumber,\n token,\n orderNumber,\n }: {\n returnNumber: string;\n token: string;\n orderNumber: string;\n }) => string (optional)",
561
+ "routeOrderDetails": "({\n token,\n orderNumber,\n }: {\n token: string;\n orderNumber: string;\n }) => string (optional)",
562
+ "routeTracking": "(track: routeTrackingProps) => string (optional)",
563
+ "routeReturnsList": "() => string (optional)",
564
+ "routeProductDetails": "(orderItem?: OrderItemModel) => string (optional)",
565
+ "withThumbnails": "boolean (optional)"
566
+ },
567
+ "slotNames": [
568
+ "ReturnItemsDetails",
569
+ "DetailsActionParams",
570
+ "ReturnListImage"
571
+ ]
572
+ },
573
+ {
574
+ "name": "ShippingStatus",
575
+ "importPath": "@dropins/storefront-order/containers/ShippingStatus.js",
576
+ "description": "",
577
+ "props": {
578
+ "orderData": "OrderDataModel (optional)",
579
+ "collapseThreshold": "number (optional)",
580
+ "routeOrderDetails": "({\n returnNumber,\n token,\n orderNumber,\n }: routeOrderDetailsTypes) => string (optional)",
581
+ "routeTracking": "(track: routeTrackingProps) => string (optional)",
582
+ "routeProductDetails": "(product: any) => string (optional)"
583
+ },
584
+ "slotNames": [
585
+ "DeliveryTimeLine",
586
+ "DeliveryTrackActions",
587
+ "ReturnItemsDetails",
588
+ "ShippingStatusCardImage",
589
+ "NotYetShippedProductImage",
590
+ "ShippingStatusReturnCardImage"
591
+ ],
592
+ "extendsHTMLAttributes": true
593
+ },
594
+ {
595
+ "name": "OrderComments",
596
+ "importPath": "@dropins/storefront-order/containers/OrderComments.js",
597
+ "description": "",
598
+ "props": {
599
+ "className": "string (optional)",
600
+ "orderData": "OrderDataModel (optional)"
601
+ },
602
+ "slotNames": []
603
+ }
604
+ ]
605
+ },
606
+ "storefront-auth": {
607
+ "version": "3.2.0",
608
+ "renderImport": "@dropins/storefront-auth/render.js",
609
+ "apiImport": "@dropins/storefront-auth/api.js",
610
+ "containers": [
611
+ {
612
+ "name": "UpdatePassword",
613
+ "importPath": "@dropins/storefront-auth/containers/UpdatePassword.js",
614
+ "description": "",
615
+ "props": {
616
+ "signInOnSuccess": "boolean (optional)",
617
+ "formSize": "'default' | 'small' (optional)",
618
+ "routeRedirectOnPasswordUpdate": "() => string (optional)",
619
+ "routeRedirectOnSignIn": "() => string (optional)",
620
+ "routeSignInPage": "() => string (optional)",
621
+ "routeWrongUrlRedirect": "() => string (optional)",
622
+ "onErrorCallback": "(value: unknown) => void (optional)",
623
+ "onSuccessCallback": "(value?: string) => void (optional)"
624
+ },
625
+ "slotNames": [
626
+ "Title",
627
+ "Form",
628
+ "Buttons",
629
+ "SuccessNotification"
630
+ ]
631
+ },
632
+ {
633
+ "name": "SuccessNotification",
634
+ "importPath": "@dropins/storefront-auth/containers/SuccessNotification.js",
635
+ "description": "",
636
+ "props": {
637
+ "formSize": "'default' | 'small' (optional)",
638
+ "className": "string (optional)",
639
+ "labels": "{\n headingText: string;\n messageText: string;\n } (optional)"
640
+ },
641
+ "slotNames": [
642
+ "SuccessNotificationActions"
643
+ ]
644
+ },
645
+ {
646
+ "name": "SignUp",
647
+ "importPath": "@dropins/storefront-auth/containers/SignUp.js",
648
+ "description": "",
649
+ "props": {
650
+ "requireRetypePassword": "boolean (optional)",
651
+ "addressesData": "AddressFormProps[] (optional)",
652
+ "inputsDefaultValueSet": "inputsDefaultValueSetProps[] (optional)",
653
+ "fieldsConfigForApiVersion1": "any (optional)",
654
+ "apiVersion2": "boolean (optional)",
655
+ "isAutoSignInEnabled": "boolean (optional)",
656
+ "formSize": "'default' | 'small' (optional)",
657
+ "hideCloseBtnOnEmailConfirmation": "boolean (optional)",
658
+ "routeRedirectOnEmailConfirmationClose": "() => string (optional)",
659
+ "routeSignIn": "() => string (optional)",
660
+ "routeRedirectOnSignIn": "() => string (optional)",
661
+ "onErrorCallback": "(value?: unknown) => void (optional)",
662
+ "onSuccessCallback": "(value?: {\n userName: string;\n userEmail: string;\n status: boolean;\n }) => Promise<void> (optional)"
663
+ },
664
+ "slotNames": [
665
+ "Title",
666
+ "Form",
667
+ "Buttons",
668
+ "SuccessNotification",
669
+ "PrivacyPolicyConsent"
670
+ ]
671
+ },
672
+ {
673
+ "name": "SignIn",
674
+ "importPath": "@dropins/storefront-auth/containers/SignIn.js",
675
+ "description": "",
676
+ "props": {
677
+ "labels": "Record<string, string> (optional)",
678
+ "formSize": "'default' | 'small' (optional)",
679
+ "renderSignUpLink": "boolean (optional)",
680
+ "initialEmailValue": "string (optional)",
681
+ "enableEmailConfirmation": "boolean (optional)",
682
+ "hideCloseBtnOnEmailConfirmation": "boolean (optional)",
683
+ "routeRedirectOnEmailConfirmationClose": "() => string (optional)",
684
+ "routeForgotPassword": "() => string (optional)",
685
+ "routeSignUp": "() => string (optional)",
686
+ "routeRedirectOnSignIn": "() => string (optional)",
687
+ "onSuccessCallback": "(value?: {\n userName: string;\n status: boolean;\n }) => Promise<void> (optional)",
688
+ "onErrorCallback": "(error?: unknown) => void (optional)",
689
+ "onSignUpLinkClick": "() => void (optional)",
690
+ "apiErrorMessageOverride": "string (optional)"
691
+ },
692
+ "slotNames": [
693
+ "Form",
694
+ "Title",
695
+ "SuccessNotification",
696
+ "Buttons"
697
+ ]
698
+ },
699
+ {
700
+ "name": "ResetPassword",
701
+ "importPath": "@dropins/storefront-auth/containers/ResetPassword.js",
702
+ "description": "",
703
+ "props": {
704
+ "formSize": "'default' | 'small' (optional)",
705
+ "routeSignIn": "() => string (optional)",
706
+ "onErrorCallback": "(value?: unknown) => void (optional)",
707
+ "onSuccessCallback": "() => void | Promise<void> (optional)"
708
+ },
709
+ "slotNames": [
710
+ "Title",
711
+ "Form",
712
+ "Buttons"
713
+ ]
714
+ },
715
+ {
716
+ "name": "AuthCombine",
717
+ "importPath": "@dropins/storefront-auth/containers/AuthCombine.js",
718
+ "description": "",
719
+ "props": {
720
+ "defaultView": "activeComponentType (optional)",
721
+ "signInFormConfig": "SignInFormProps (optional)",
722
+ "signUpFormConfig": "SignUpFormProps (optional)",
723
+ "resetPasswordFormConfig": "ResetPasswordFormProps (optional)"
724
+ },
725
+ "slotNames": []
726
+ }
727
+ ]
728
+ },
729
+ "storefront-account": {
730
+ "version": "3.3.0",
731
+ "renderImport": "@dropins/storefront-account/render.js",
732
+ "apiImport": "@dropins/storefront-account/api.js",
733
+ "containers": [
734
+ {
735
+ "name": "AddressForm",
736
+ "importPath": "@dropins/storefront-account/containers/AddressForm.js",
737
+ "description": "",
738
+ "props": {
739
+ "hideActionFormButtons": "boolean (optional)",
740
+ "formName": "string (optional)",
741
+ "showFormLoader": "boolean (optional)",
742
+ "showSaveCheckBox": "boolean (optional)",
743
+ "saveCheckBoxValue": "boolean (optional)",
744
+ "forwardFormRef": "HTMLInputElement (optional)",
745
+ "addressFormId": "string (optional)",
746
+ "className": "string (optional)",
747
+ "addressesFormTitle": "string (optional)",
748
+ "inputsDefaultValueSet": "CustomerAddressesModel (optional)",
749
+ "shippingCheckBoxValue": "boolean (optional)",
750
+ "billingCheckBoxValue": "boolean (optional)",
751
+ "showShippingCheckBox": "boolean (optional)",
752
+ "showBillingCheckBox": "boolean (optional)",
753
+ "isOpen": "boolean (optional)",
754
+ "fieldIdPrefix": "string (optional)",
755
+ "onSubmit": "(\n event: SubmitEvent,\n isValid: boolean\n ) => Promise<void | null | undefined> (optional)",
756
+ "onCloseBtnClick": "() => void (optional)",
757
+ "onSuccess": "() => void (optional)",
758
+ "onError": "(error: string) => void (optional)",
759
+ "handleRenderForm": "() => void (optional)",
760
+ "onChange": "(\n // eslint-disable-next-line no-undef\n values: Record<string, FormDataEntryValue>,\n inputValue: Record<string, string>,\n event: Event\n ) => void (optional)"
761
+ },
762
+ "slotNames": [
763
+ "AddressFormActions",
764
+ "AddressFormInputs"
765
+ ]
766
+ },
767
+ {
768
+ "name": "Addresses",
769
+ "importPath": "@dropins/storefront-account/containers/Addresses.js",
770
+ "description": "",
771
+ "props": {
772
+ "hideActionFormButtons": "boolean (optional)",
773
+ "fieldIdPrefix": "string (optional)",
774
+ "formName": "string (optional)",
775
+ "title": "string (optional)",
776
+ "addressFormTitle": "string (optional)",
777
+ "defaultSelectAddressId": "number | string (optional)",
778
+ "showFormLoader": "boolean (optional)",
779
+ "forwardFormRef": "HTMLInputElement (optional)",
780
+ "selectShipping": "boolean (optional)",
781
+ "selectBilling": "boolean (optional)",
782
+ "showSaveCheckBox": "boolean (optional)",
783
+ "saveCheckBoxValue": "boolean (optional)",
784
+ "selectable": "boolean (optional)",
785
+ "className": "string (optional)",
786
+ "withHeader": "boolean (optional)",
787
+ "minifiedView": "boolean",
788
+ "withActionsInMinifiedView": "boolean (optional)",
789
+ "withActionsInFullSizeView": "boolean (optional)",
790
+ "inputsDefaultValueSet": "CustomerAddressesModel (optional)",
791
+ "addressesFormTitle": "string (optional)",
792
+ "showShippingCheckBox": "boolean (optional)",
793
+ "showBillingCheckBox": "boolean (optional)",
794
+ "shippingCheckBoxValue": "boolean (optional)",
795
+ "billingCheckBoxValue": "boolean (optional)",
796
+ "routeAddressesPage": "() => string (optional)",
797
+ "onSuccess": "() => void (optional)",
798
+ "onError": "(error: string) => void (optional)",
799
+ "onSubmit": "(event: Event, formValid: boolean) => Promise<void> (optional)",
800
+ "onAddressData": "(values: {} | CustomerAddressesModel | undefined) => void (optional)"
801
+ },
802
+ "slotNames": []
803
+ },
804
+ {
805
+ "name": "OrdersList",
806
+ "importPath": "@dropins/storefront-account/containers/OrdersList.js",
807
+ "description": "",
808
+ "props": {
809
+ "minifiedView": "boolean (optional)",
810
+ "withHeader": "boolean (optional)",
811
+ "withThumbnails": "boolean (optional)",
812
+ "routeOrdersList": "() => string (optional)",
813
+ "routeOrderDetails": "() => string (optional)",
814
+ "routeReturnDetails": "(params: {\n orderNumber: string;\n orderToken: string;\n returnNumber: string;\n }) => string (optional)",
815
+ "withFilter": "boolean (optional)",
816
+ "ordersInMinifiedView": "1 | 2 | 3 (optional)",
817
+ "pageSize": "number",
818
+ "routeTracking": "(shipping: ShipmentsTracingModel) => string (optional)",
819
+ "routeOrderProduct": "(product: OrderItem) => string (optional)"
820
+ },
821
+ "slotNames": [
822
+ "OrdersListAction",
823
+ "OrdersListCard",
824
+ "OrderItemImage"
825
+ ],
826
+ "extendsHTMLAttributes": true
827
+ },
828
+ {
829
+ "name": "CustomerInformation",
830
+ "importPath": "@dropins/storefront-account/containers/CustomerInformation.js",
831
+ "description": "",
832
+ "props": {
833
+ "className": "string",
834
+ "withHeader": "boolean"
835
+ },
836
+ "slotNames": [
837
+ "CustomerData"
838
+ ]
839
+ },
840
+ {
841
+ "name": "PaymentMethods",
842
+ "importPath": "@dropins/storefront-account/containers/PaymentMethods.js",
843
+ "description": "",
844
+ "props": {
845
+ "withHeader": "boolean (optional)",
846
+ "minifiedView": "boolean (optional)",
847
+ "filterPaymentMethodCodes": "string[] (optional)"
848
+ },
849
+ "slotNames": [],
850
+ "extendsHTMLAttributes": true
851
+ },
852
+ {
853
+ "name": "AddressValidation",
854
+ "importPath": "@dropins/storefront-account/containers/AddressValidation.js",
855
+ "description": "",
856
+ "props": {
857
+ "selectedAddress": "'suggested' | 'original' | null (optional)",
858
+ "suggestedAddress": "Partial<CustomerAddressesModel> | null",
859
+ "originalAddress": "CustomerAddressesModel | null",
860
+ "handleSelectedAddress": "(payload: {\n selection: 'suggested' | 'original';\n address: CustomerAddressesModel | null | undefined;\n }) => void (optional)"
861
+ },
862
+ "slotNames": []
863
+ }
864
+ ]
865
+ },
866
+ "storefront-pdp": {
867
+ "version": "3.1.0",
868
+ "renderImport": "@dropins/storefront-pdp/render.js",
869
+ "apiImport": "@dropins/storefront-pdp/api.js",
870
+ "containers": [
871
+ {
872
+ "name": "ProductDetails",
873
+ "importPath": "@dropins/storefront-pdp/containers/ProductDetails.js",
874
+ "description": "",
875
+ "props": {
876
+ "sku": "string",
877
+ "productData": "ProductModel (optional)",
878
+ "hideSku": "boolean (optional)",
879
+ "hideQuantity": "boolean (optional)",
880
+ "hideShortDescription": "boolean (optional)",
881
+ "hideDescription": "boolean (optional)",
882
+ "hideAttributes": "boolean (optional)",
883
+ "hideSelectedOptionValue": "boolean (optional)",
884
+ "hideURLParams": "boolean (optional)",
885
+ "carousel": "CarouselConfig (optional)",
886
+ "optionsConfig": "OptionsConfig (optional)",
887
+ "useACDL": "boolean (optional)",
888
+ "onAddToCart": "(values: Values) => void (optional)",
889
+ "zoomType": "'zoom' | 'overlay' (optional)",
890
+ "closeButton": "boolean (optional)",
891
+ "disableDropdownPreselection": "boolean (optional)"
892
+ },
893
+ "slotNames": [
894
+ "Title",
895
+ "SKU",
896
+ "RegularPrice",
897
+ "SpecialPrice",
898
+ "Options",
899
+ "Quantity",
900
+ "Actions",
901
+ "ShortDescription",
902
+ "Description",
903
+ "Attributes",
904
+ "Breadcrumbs",
905
+ "GalleryContent",
906
+ "InfoContent",
907
+ "Content"
908
+ ],
909
+ "extendsHTMLAttributes": true
910
+ },
911
+ {
912
+ "name": "ProductPrice",
913
+ "importPath": "@dropins/storefront-pdp/containers/ProductPrice.js",
914
+ "description": "",
915
+ "props": {
916
+ "scope": "string (optional)"
917
+ },
918
+ "slotNames": [],
919
+ "extendsHTMLAttributes": true
920
+ },
921
+ {
922
+ "name": "ProductOptions",
923
+ "importPath": "@dropins/storefront-pdp/containers/ProductOptions.js",
924
+ "description": "",
925
+ "props": {
926
+ "scope": "string (optional)",
927
+ "hideSelectedValue": "boolean (optional)",
928
+ "onValues": "(optionsUIDs: string[]) => void (optional)",
929
+ "onErrors": "(errors: { [id: string]: string }) => void (optional)",
930
+ "transformer": "ProductOptionsTransformer (optional)"
931
+ },
932
+ "slotNames": [
933
+ "Swatches",
934
+ "SwatchImage"
935
+ ],
936
+ "extendsHTMLAttributes": true
937
+ },
938
+ {
939
+ "name": "ProductQuantity",
940
+ "importPath": "@dropins/storefront-pdp/containers/ProductQuantity.js",
941
+ "description": "",
942
+ "props": {
943
+ "scope": "string (optional)",
944
+ "onValue": "(quantity: number) => void (optional)"
945
+ },
946
+ "slotNames": [],
947
+ "extendsHTMLAttributes": true
948
+ },
949
+ {
950
+ "name": "ProductShortDescription",
951
+ "importPath": "@dropins/storefront-pdp/containers/ProductShortDescription.js",
952
+ "description": "",
953
+ "props": {
954
+ "scope": "string (optional)"
955
+ },
956
+ "slotNames": [],
957
+ "extendsHTMLAttributes": true
958
+ },
959
+ {
960
+ "name": "ProductDescription",
961
+ "importPath": "@dropins/storefront-pdp/containers/ProductDescription.js",
962
+ "description": "",
963
+ "props": {
964
+ "scope": "string (optional)"
965
+ },
966
+ "slotNames": [],
967
+ "extendsHTMLAttributes": true
968
+ },
969
+ {
970
+ "name": "ProductAttributes",
971
+ "importPath": "@dropins/storefront-pdp/containers/ProductAttributes.js",
972
+ "description": "",
973
+ "props": {
974
+ "scope": "string (optional)",
975
+ "formatValue": "(value: string, id: string, label: string) => string (optional)"
976
+ },
977
+ "slotNames": [
978
+ "Attributes"
979
+ ],
980
+ "extendsHTMLAttributes": true
981
+ },
982
+ {
983
+ "name": "ProductGiftCardOptions",
984
+ "importPath": "@dropins/storefront-pdp/containers/ProductGiftCardOptions.js",
985
+ "description": "",
986
+ "props": {
987
+ "scope": "string (optional)"
988
+ },
989
+ "slotNames": [],
990
+ "extendsHTMLAttributes": true
991
+ },
992
+ {
993
+ "name": "ProductDownloadableOptions",
994
+ "importPath": "@dropins/storefront-pdp/containers/ProductDownloadableOptions.js",
995
+ "description": "",
996
+ "props": {
997
+ "scope": "string (optional)"
998
+ },
999
+ "slotNames": [],
1000
+ "extendsHTMLAttributes": true
1001
+ },
1002
+ {
1003
+ "name": "ProductGallery",
1004
+ "importPath": "@dropins/storefront-pdp/containers/ProductGallery.js",
1005
+ "description": "",
1006
+ "props": {
1007
+ "scope": "string (optional)",
1008
+ "controls": "'thumbnailsRow' | 'thumbnailsColumn' | 'dots' | null (optional)",
1009
+ "loop": "boolean (optional)",
1010
+ "peak": "boolean (optional)",
1011
+ "gap": "'small' | 'medium' | 'large' | null (optional)",
1012
+ "arrows": "boolean (optional)",
1013
+ "arrowsOnMainImage": "boolean (optional)",
1014
+ "imageParams": "ResolveImageUrlOptions (optional)",
1015
+ "thumbnailParams": "ResolveImageUrlOptions (optional)",
1016
+ "zoom": "{ closeButton: boolean } | boolean (optional)",
1017
+ "videos": "VideosProp (optional)"
1018
+ },
1019
+ "slotNames": [
1020
+ "CarouselThumbnail",
1021
+ "CarouselMainImage"
1022
+ ]
1023
+ },
1024
+ {
1025
+ "name": "ProductHeader",
1026
+ "importPath": "@dropins/storefront-pdp/containers/ProductHeader.js",
1027
+ "description": "",
1028
+ "props": {
1029
+ "scope": "string (optional)",
1030
+ "hideSku": "boolean (optional)",
1031
+ "showVariantSku": "boolean (optional)",
1032
+ "showVariantName": "boolean (optional)"
1033
+ },
1034
+ "slotNames": [],
1035
+ "extendsHTMLAttributes": true
1036
+ }
1037
+ ]
1038
+ },
1039
+ "storefront-quote-management": {
1040
+ "version": "1.1.2",
1041
+ "renderImport": "@dropins/storefront-quote-management/render.js",
1042
+ "apiImport": "@dropins/storefront-quote-management/api.js",
1043
+ "containers": [
1044
+ {
1045
+ "name": "RequestNegotiableQuoteForm",
1046
+ "importPath": "@dropins/storefront-quote-management/containers/RequestNegotiableQuoteForm.js",
1047
+ "description": "",
1048
+ "props": {
1049
+ "cartId": "string",
1050
+ "maxFiles": "number (optional)",
1051
+ "maxFileSize": "number (optional)",
1052
+ "acceptedFileTypes": "string[] (optional)"
1053
+ },
1054
+ "slotNames": [
1055
+ "ErrorBanner",
1056
+ "SuccessBanner",
1057
+ "Title",
1058
+ "CommentField",
1059
+ "QuoteNameField",
1060
+ "AttachFileField",
1061
+ "AttachedFilesList",
1062
+ "RequestButton",
1063
+ "SaveDraftButton"
1064
+ ]
1065
+ },
1066
+ {
1067
+ "name": "ManageNegotiableQuote",
1068
+ "importPath": "@dropins/storefront-quote-management/containers/ManageNegotiableQuote.js",
1069
+ "description": "",
1070
+ "props": {
1071
+ "onActionsDropdownChange": "(event: Event) => void (optional)",
1072
+ "onActionsButtonClick": "(action: string) => void (optional)",
1073
+ "onSendForReview": "(params: {\n quoteData: NegotiableQuoteModel;\n comment?: string;\n attachments?: AttachedFile[];\n }) => void (optional)",
1074
+ "maxFiles": "number (optional)",
1075
+ "maxFileSize": "number (optional)",
1076
+ "acceptedFileTypes": "string[] (optional)",
1077
+ "onDuplicateQuote": "(params: {\n quoteData: NegotiableQuoteModel;\n newQuote: NegotiableQuoteModel;\n }) => void (optional)"
1078
+ },
1079
+ "slotNames": [
1080
+ "QuoteName",
1081
+ "QuoteStatus",
1082
+ "Banner",
1083
+ "DuplicateQuoteWarningBanner",
1084
+ "Details",
1085
+ "ActionBar",
1086
+ "QuoteContent",
1087
+ "ItemsQuotedTab",
1088
+ "CommentsTab",
1089
+ "HistoryLogTab",
1090
+ "ShippingInformationTitle",
1091
+ "ShippingInformation",
1092
+ "QuoteCommentsTitle",
1093
+ "QuoteComments",
1094
+ "AttachFilesField",
1095
+ "AttachedFilesList",
1096
+ "Footer"
1097
+ ],
1098
+ "extendsHTMLAttributes": true
1099
+ },
1100
+ {
1101
+ "name": "ItemsQuoted",
1102
+ "importPath": "@dropins/storefront-quote-management/containers/ItemsQuoted.js",
1103
+ "description": "",
1104
+ "props": {
1105
+ "quoteData": "NegotiableQuoteModel (optional)",
1106
+ "onItemCheckboxChange": "(\n item: CartItemModel,\n isSelected: boolean\n ) => void (optional)",
1107
+ "onItemDropdownChange": "(\n item: CartItemModel,\n action: string\n ) => void (optional)",
1108
+ "onUpdate": "(e: SubmitEvent) => void (optional)",
1109
+ "onRemoveItemsRef": "(\n handler: (items: CartItemModel[]) => void\n ) => void (optional)",
1110
+ "onRemoveModalStateChange": "(isOpen: boolean) => void (optional)"
1111
+ },
1112
+ "slotNames": [
1113
+ "ProductListTable",
1114
+ "QuotePricesSummary"
1115
+ ],
1116
+ "extendsHTMLAttributes": true
1117
+ },
1118
+ {
1119
+ "name": "OrderSummary",
1120
+ "importPath": "@dropins/storefront-quote-management/containers/OrderSummary.js",
1121
+ "description": "",
1122
+ "props": {
1123
+ "showTotalSaved": "boolean (optional)",
1124
+ "updateLineItems": "(\n lineItems: Array<OrderSummaryLineItem>\n ) => Array<OrderSummaryLineItem> (optional)"
1125
+ },
1126
+ "slotNames": [],
1127
+ "extendsHTMLAttributes": true
1128
+ },
1129
+ {
1130
+ "name": "OrderSummaryLine",
1131
+ "importPath": "@dropins/storefront-quote-management/containers/OrderSummaryLine.js",
1132
+ "description": "",
1133
+ "props": {
1134
+ "label": "VNode | string",
1135
+ "price": "VNode<HTMLAttributes<HTMLSpanElement>>",
1136
+ "classSuffixes": "Array<string> (optional)",
1137
+ "labelClassSuffix": "string (optional)",
1138
+ "testId": "string (optional)",
1139
+ "children": "any (optional)"
1140
+ },
1141
+ "slotNames": []
1142
+ },
1143
+ {
1144
+ "name": "QuoteCommentsList",
1145
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteCommentsList.js",
1146
+ "description": "",
1147
+ "props": {
1148
+ "quoteData": "NegotiableQuoteModel (optional)"
1149
+ },
1150
+ "slotNames": [],
1151
+ "extendsHTMLAttributes": true
1152
+ },
1153
+ {
1154
+ "name": "QuoteHistoryLog",
1155
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteHistoryLog.js",
1156
+ "description": "",
1157
+ "props": {
1158
+ "quoteData": "NegotiableQuoteModel (optional)"
1159
+ },
1160
+ "slotNames": [],
1161
+ "extendsHTMLAttributes": true
1162
+ },
1163
+ {
1164
+ "name": "QuoteSummaryList",
1165
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteSummaryList.js",
1166
+ "description": "",
1167
+ "props": {
1168
+ "hideHeading": "boolean (optional)",
1169
+ "hideFooter": "boolean (optional)",
1170
+ "routeProduct": "(item: NegotiableQuoteItemModel) => string (optional)",
1171
+ "showMaxItems": "boolean (optional)",
1172
+ "attributesToHide": "SwitchableAttributes[] (optional)",
1173
+ "accordion": "boolean (optional)",
1174
+ "variant": "'primary' | 'secondary' (optional)",
1175
+ "showDiscount": "boolean (optional)",
1176
+ "showSavings": "boolean (optional)"
1177
+ },
1178
+ "slotNames": [
1179
+ "Heading",
1180
+ "Footer",
1181
+ "Thumbnail",
1182
+ "ProductAttributes",
1183
+ "QuoteSummaryFooter",
1184
+ "QuoteItem",
1185
+ "ItemTitle",
1186
+ "ItemPrice",
1187
+ "ItemTotal",
1188
+ "ItemSku"
1189
+ ],
1190
+ "extendsHTMLAttributes": true
1191
+ },
1192
+ {
1193
+ "name": "QuotesListTable",
1194
+ "importPath": "@dropins/storefront-quote-management/containers/QuotesListTable.js",
1195
+ "description": "",
1196
+ "props": {
1197
+ "pageSize": "number (optional)",
1198
+ "showItemRange": "boolean (optional)",
1199
+ "showPageSizePicker": "boolean (optional)",
1200
+ "showPagination": "boolean (optional)",
1201
+ "onViewQuote": "(quoteId: string, quoteName: string, status: string) => void (optional)",
1202
+ "onPageSizeChange": "(pageSize: number) => void (optional)",
1203
+ "onPageChange": "(page: number) => void (optional)"
1204
+ },
1205
+ "slotNames": [
1206
+ "QuoteName",
1207
+ "Created",
1208
+ "CreatedBy",
1209
+ "Status",
1210
+ "LastUpdated",
1211
+ "QuoteTemplate",
1212
+ "QuoteTotal",
1213
+ "Actions",
1214
+ "EmptyQuotes",
1215
+ "ItemRange",
1216
+ "PageSizePicker",
1217
+ "Pagination"
1218
+ ],
1219
+ "extendsHTMLAttributes": true
1220
+ },
1221
+ {
1222
+ "name": "ShippingAddressDisplay",
1223
+ "importPath": "@dropins/storefront-quote-management/containers/ShippingAddressDisplay.js",
1224
+ "description": "",
1225
+ "props": {
1226
+ "shippingAddress": "ShippingAddress (optional)",
1227
+ "loading": "boolean (optional)"
1228
+ },
1229
+ "slotNames": []
1230
+ },
1231
+ {
1232
+ "name": "ManageNegotiableQuoteTemplate",
1233
+ "importPath": "@dropins/storefront-quote-management/containers/ManageNegotiableQuoteTemplate.js",
1234
+ "description": "",
1235
+ "props": {
1236
+ "onActionsButtonClick": "(action: string) => void (optional)",
1237
+ "onSendForReview": "(params: {\n templateData?: NegotiableQuoteTemplateModel;\n name?: string;\n comment?: string;\n referenceDocumentLinks?: ReferenceDocumentLinkInput[];\n attachments?: AttachedFile[];\n }) => void (optional)",
1238
+ "maxFiles": "number (optional)",
1239
+ "maxFileSize": "number (optional)",
1240
+ "acceptedFileTypes": "string[] (optional)"
1241
+ },
1242
+ "slotNames": [
1243
+ "TemplateName",
1244
+ "TemplateStatus",
1245
+ "Banner",
1246
+ "Details",
1247
+ "ActionBar",
1248
+ "ReferenceDocuments",
1249
+ "ItemsTable",
1250
+ "ItemsQuotedTab",
1251
+ "CommentsTab",
1252
+ "HistoryLogTab",
1253
+ "CommentsTitle",
1254
+ "Comments",
1255
+ "AttachFilesField",
1256
+ "AttachedFilesList",
1257
+ "HistoryLogTitle",
1258
+ "HistoryLog",
1259
+ "Footer",
1260
+ "ShippingInformationTitle",
1261
+ "ShippingInformation"
1262
+ ],
1263
+ "extendsHTMLAttributes": true
1264
+ },
1265
+ {
1266
+ "name": "ItemsQuotedTemplate",
1267
+ "importPath": "@dropins/storefront-quote-management/containers/ItemsQuotedTemplate.js",
1268
+ "description": "",
1269
+ "props": {
1270
+ "templateData": "NegotiableQuoteTemplateModel (optional)"
1271
+ },
1272
+ "slotNames": [
1273
+ "ProductListTable",
1274
+ "QuotePricesSummary"
1275
+ ],
1276
+ "extendsHTMLAttributes": true
1277
+ },
1278
+ {
1279
+ "name": "QuoteTemplateCommentsList",
1280
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteTemplateCommentsList.js",
1281
+ "description": "",
1282
+ "props": {
1283
+ "templateData": "NegotiableQuoteTemplateModel (optional)"
1284
+ },
1285
+ "slotNames": [],
1286
+ "extendsHTMLAttributes": true
1287
+ },
1288
+ {
1289
+ "name": "QuoteTemplateHistoryLog",
1290
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteTemplateHistoryLog.js",
1291
+ "description": "",
1292
+ "props": {
1293
+ "templateData": "NegotiableQuoteTemplateModel (optional)"
1294
+ },
1295
+ "slotNames": [],
1296
+ "extendsHTMLAttributes": true
1297
+ },
1298
+ {
1299
+ "name": "QuoteTemplatesListTable",
1300
+ "importPath": "@dropins/storefront-quote-management/containers/QuoteTemplatesListTable.js",
1301
+ "description": "",
1302
+ "props": {
1303
+ "pageSize": "number (optional)",
1304
+ "showItemRange": "boolean (optional)",
1305
+ "showPageSizePicker": "boolean (optional)",
1306
+ "showPagination": "boolean (optional)",
1307
+ "onViewQuoteTemplate": "(templateId: string, templateName: string, status: string) => void (optional)",
1308
+ "onGenerateQuoteFromTemplate": "(templateId: string, templateName: string, quoteId: string) => void (optional)",
1309
+ "onPageSizeChange": "(pageSize: number) => void (optional)",
1310
+ "onPageChange": "(page: number) => void (optional)"
1311
+ },
1312
+ "slotNames": [
1313
+ "Name",
1314
+ "State",
1315
+ "Status",
1316
+ "ValidUntil",
1317
+ "MinQuoteTotal",
1318
+ "OrdersPlaced",
1319
+ "LastOrdered",
1320
+ "Actions",
1321
+ "EmptyTemplates",
1322
+ "ItemRange",
1323
+ "PageSizePicker",
1324
+ "Pagination"
1325
+ ],
1326
+ "extendsHTMLAttributes": true
1327
+ }
1328
+ ]
1329
+ },
1330
+ "storefront-requisition-list": {
1331
+ "version": "1.3.0",
1332
+ "renderImport": "@dropins/storefront-requisition-list/render.js",
1333
+ "apiImport": "@dropins/storefront-requisition-list/api.js",
1334
+ "containers": [
1335
+ {
1336
+ "name": "RequisitionListForm",
1337
+ "importPath": "@dropins/storefront-requisition-list/containers/RequisitionListForm.js",
1338
+ "description": "",
1339
+ "props": {
1340
+ "mode": "RequisitionListFormMode",
1341
+ "requisitionListUid": "string (optional)",
1342
+ "defaultValues": "RequisitionListFormValues (optional)",
1343
+ "onSuccess": "(newList: RequisitionList) => void (optional)",
1344
+ "onError": "(message: string) => void (optional)",
1345
+ "onCancel": "() => void"
1346
+ },
1347
+ "slotNames": []
1348
+ },
1349
+ {
1350
+ "name": "RequisitionListGrid",
1351
+ "importPath": "@dropins/storefront-requisition-list/containers/RequisitionListGrid.js",
1352
+ "description": "",
1353
+ "props": {
1354
+ "routeRequisitionListDetails": "(uid: string) => string | void (optional)",
1355
+ "fallbackRoute": "string (optional)"
1356
+ },
1357
+ "slotNames": [
1358
+ "Header"
1359
+ ],
1360
+ "extendsHTMLAttributes": true
1361
+ },
1362
+ {
1363
+ "name": "RequisitionListView",
1364
+ "importPath": "@dropins/storefront-requisition-list/containers/RequisitionListView.js",
1365
+ "description": "",
1366
+ "props": {
1367
+ "requisitionListUid": "string",
1368
+ "skipProductLoading": "boolean (optional)",
1369
+ "pageSize": "number (optional)",
1370
+ "selectedItems": "Set<string>",
1371
+ "routeRequisitionListGrid": "() => string | void (optional)",
1372
+ "fallbackRoute": "string (optional)",
1373
+ "getProductData": "(skus: string[]) => Promise<Product[] | null>",
1374
+ "enrichConfigurableProducts": "(items: Item[]) => Promise<Item[]>"
1375
+ },
1376
+ "slotNames": [],
1377
+ "extendsHTMLAttributes": true
1378
+ },
1379
+ {
1380
+ "name": "RequisitionListSelector",
1381
+ "importPath": "@dropins/storefront-requisition-list/containers/RequisitionListSelector.js",
1382
+ "description": "",
1383
+ "props": {
1384
+ "canCreate": "boolean (optional)",
1385
+ "sku": "string",
1386
+ "selectedOptions": "string[] (optional)",
1387
+ "quantity": "number (optional)",
1388
+ "matchBySKU": "boolean (optional)",
1389
+ "beforeAddProdToReqList": "() => Promise<void> | void (optional)"
1390
+ },
1391
+ "slotNames": [],
1392
+ "extendsHTMLAttributes": true
1393
+ },
1394
+ {
1395
+ "name": "RequisitionListHeader",
1396
+ "importPath": "@dropins/storefront-requisition-list/containers/RequisitionListHeader.js",
1397
+ "description": "",
1398
+ "props": {
1399
+ "requisitionList": "RequisitionList",
1400
+ "routeRequisitionListGrid": "() => string | void (optional)",
1401
+ "onUpdate": "(updatedList: RequisitionList) => void | Promise<void> (optional)",
1402
+ "onAlert": "(payload: {\n action: string;\n type: string;\n context: string;\n }) => void (optional)",
1403
+ "enrichConfigurableProducts": "(items: Item[]) => Promise<Item[]> (optional)"
1404
+ },
1405
+ "slotNames": []
1406
+ }
1407
+ ]
1408
+ },
1409
+ "storefront-wishlist": {
1410
+ "version": "3.2.0",
1411
+ "renderImport": "@dropins/storefront-wishlist/render.js",
1412
+ "apiImport": "@dropins/storefront-wishlist/api.js",
1413
+ "containers": [
1414
+ {
1415
+ "name": "WishlistItem",
1416
+ "importPath": "@dropins/storefront-wishlist/containers/WishlistItem.js",
1417
+ "description": "",
1418
+ "props": {
1419
+ "item": "Item",
1420
+ "getProductData": "(sku: string) => Promise<Product | null> (optional)",
1421
+ "getRefinedProduct": "(\n sku: string,\n optionUIDs: string[],\n anchorOptions?: string[],\n raw?: boolean\n ) => Promise<Product | null> (optional)",
1422
+ "moveProdToCart": "(\n products: {\n sku: string;\n quantity: number;\n optionsUIDs?: [];\n enteredOptions?: [];\n }[]\n ) => Promise<any>",
1423
+ "routeProdDetailPage": "(product: Product) => string",
1424
+ "imageNode": "(props: {\n defaultImageProps: ImageNodeRenderProps;\n }) => JSX.Element (optional)"
1425
+ },
1426
+ "slotNames": [],
1427
+ "extendsHTMLAttributes": true
1428
+ },
1429
+ {
1430
+ "name": "Wishlist",
1431
+ "importPath": "@dropins/storefront-wishlist/containers/Wishlist.js",
1432
+ "description": "",
1433
+ "props": {
1434
+ "routeEmptyWishlistCTA": "() => string (optional)",
1435
+ "routeToWishlist": "string (optional)",
1436
+ "moveProdToCart": "(\n products: { sku: string; quantity: number }[]\n ) => Promise<any>",
1437
+ "routeProdDetailPage": "(product: Product) => string",
1438
+ "getProductData": "(sku: string) => Promise<Product | null> (optional)",
1439
+ "getRefinedProduct": "(\n sku: string,\n optionUIDs: string[],\n anchorOptions?: string[],\n raw?: boolean\n ) => Promise<Product | null> (optional)"
1440
+ },
1441
+ "slotNames": [
1442
+ "image"
1443
+ ],
1444
+ "extendsHTMLAttributes": true
1445
+ },
1446
+ {
1447
+ "name": "WishlistToggle",
1448
+ "importPath": "@dropins/storefront-wishlist/containers/WishlistToggle.js",
1449
+ "description": "",
1450
+ "props": {
1451
+ "product": "Product",
1452
+ "iconWishlisted": "VNode<HTMLAttributes<SVGSVGElement>> (optional)",
1453
+ "iconToWishlist": "VNode<HTMLAttributes<SVGSVGElement>> (optional)",
1454
+ "size": "'medium' | 'large' (optional)",
1455
+ "variant": "'primary' | 'secondary' | 'tertiary' (optional)",
1456
+ "disabled": "boolean (optional)",
1457
+ "labelToWishlist": "string (optional)",
1458
+ "labelWishlisted": "string (optional)",
1459
+ "onClick": "() => void (optional)",
1460
+ "removeProdFromCart": "(\n product: { uid: string; quantity: number }[]\n ) => Promise<any> (optional)"
1461
+ },
1462
+ "slotNames": [],
1463
+ "extendsHTMLAttributes": true
1464
+ },
1465
+ {
1466
+ "name": "WishlistAlert",
1467
+ "importPath": "@dropins/storefront-wishlist/containers/WishlistAlert.js",
1468
+ "description": "",
1469
+ "props": {
1470
+ "action": "'add' | 'remove' | 'move' | 'addError' | 'removeError'",
1471
+ "item": "{ product: { name: string } } (optional)",
1472
+ "routeToWishlist": "string (optional)"
1473
+ },
1474
+ "slotNames": [],
1475
+ "extendsHTMLAttributes": true
1476
+ }
1477
+ ]
1478
+ },
1479
+ "storefront-recommendations": {
1480
+ "version": "4.0.0",
1481
+ "renderImport": "@dropins/storefront-recommendations/render.js",
1482
+ "apiImport": "@dropins/storefront-recommendations/api.js",
1483
+ "containers": [
1484
+ {
1485
+ "name": "AcdlTestContainer",
1486
+ "importPath": "@dropins/storefront-recommendations/containers/AcdlTestContainer.js",
1487
+ "description": "",
1488
+ "props": {},
1489
+ "slotNames": []
1490
+ },
1491
+ {
1492
+ "name": "ProductList",
1493
+ "importPath": "@dropins/storefront-recommendations/containers/ProductList.js",
1494
+ "description": "",
1495
+ "props": {
1496
+ "recId": "string",
1497
+ "initialData": "{\n recommendations?: {\n results: RecommendationUnitModel[];\n totalProducts: number;\n };\n } (optional)",
1498
+ "hideHeading": "boolean (optional)",
1499
+ "routeProduct": "(item: Item) => string (optional)",
1500
+ "currentSku": "string (optional)",
1501
+ "currentProduct": "CurrentProduct (optional)",
1502
+ "cartSkus": "string[] (optional)",
1503
+ "userPurchaseHistory": "any[] (optional)",
1504
+ "userViewHistory": "any[] (optional)",
1505
+ "pagePlacement": "string | '' (optional)"
1506
+ },
1507
+ "slotNames": [
1508
+ "Heading",
1509
+ "Footer",
1510
+ "Title",
1511
+ "Sku",
1512
+ "Price",
1513
+ "Thumbnail"
1514
+ ],
1515
+ "extendsHTMLAttributes": true
1516
+ }
1517
+ ]
1518
+ },
1519
+ "storefront-payment-services": {
1520
+ "version": "3.0.1",
1521
+ "renderImport": "@dropins/storefront-payment-services/render.js",
1522
+ "apiImport": "@dropins/storefront-payment-services/api.js",
1523
+ "containers": [
1524
+ {
1525
+ "name": "CreditCard",
1526
+ "importPath": "@dropins/storefront-payment-services/containers/CreditCard.js",
1527
+ "description": "",
1528
+ "props": {
1529
+ "getCartId": "() => Promise<string>",
1530
+ "creditCardFormRef": "RefObject<CreditCardFormRef>",
1531
+ "onSuccess": "(result: { cartId: string }) => void",
1532
+ "onError": "(localizedError: LocalizedError) => void"
1533
+ },
1534
+ "slotNames": []
1535
+ },
1536
+ {
1537
+ "name": "ApplePay",
1538
+ "importPath": "@dropins/storefront-payment-services/containers/ApplePay.js",
1539
+ "description": "",
1540
+ "props": {
1541
+ "location": "PaymentLocation",
1542
+ "getCartId": "() => Promise<string> (optional)",
1543
+ "createCart": "{\n /**\n * Should return a list with the cart items to purchase.\n *\n * The list must contain at least one cart item.\n */\n getCartItems: () => CartItem[];\n } (optional)",
1544
+ "onButtonClick": "(showPaymentSheet: () => void) => void (optional)",
1545
+ "onSuccess": "(result: { cartId: string }) => void (optional)",
1546
+ "onError": "(localizedError: LocalizedError) => void (optional)",
1547
+ "hidden": "boolean (optional)",
1548
+ "disabled": "boolean (optional)"
1549
+ },
1550
+ "slotNames": []
1551
+ }
1552
+ ]
1553
+ },
1554
+ "storefront-company-management": {
1555
+ "version": "1.2.0",
1556
+ "renderImport": "@dropins/storefront-company-management/render.js",
1557
+ "apiImport": "@dropins/storefront-company-management/api.js",
1558
+ "containers": [
1559
+ {
1560
+ "name": "AcceptInvitation",
1561
+ "importPath": "@dropins/storefront-company-management/containers/AcceptInvitation.js",
1562
+ "description": "",
1563
+ "props": {
1564
+ "routeMyAccount": "() => string (optional)",
1565
+ "routeLogin": "() => string (optional)",
1566
+ "isAuthenticated": "boolean (optional)",
1567
+ "labels": "{\n /** Title text displayed at the top of the invitation acceptance page */\n title?: string;\n /** Loading message shown while processing the invitation */\n loadingText?: string;\n /** Title for the success state */\n successTitle?: string;\n /** Success message displayed after accepting invitation */\n successMessage?: string;\n /** Title for error states */\n errorTitle?: string;\n /** Button text for navigating to My Account (authenticated users) */\n myAccountButton?: string;\n /** Button text for navigating to Login (unauthenticated users) */\n loginButton?: string;\n } (optional)",
1568
+ "className": "string (optional)"
1569
+ },
1570
+ "slotNames": []
1571
+ },
1572
+ {
1573
+ "name": "CompanyProfile",
1574
+ "importPath": "@dropins/storefront-company-management/containers/CompanyProfile.js",
1575
+ "description": "",
1576
+ "props": {
1577
+ "className": "string (optional)"
1578
+ },
1579
+ "slotNames": [
1580
+ "CompanyData"
1581
+ ]
1582
+ },
1583
+ {
1584
+ "name": "CompanyStructure",
1585
+ "importPath": "@dropins/storefront-company-management/containers/CompanyStructure.js",
1586
+ "description": "",
1587
+ "props": {
1588
+ "className": "string (optional)",
1589
+ "withHeader": "boolean (optional)",
1590
+ "isAuthenticated": "boolean (optional)",
1591
+ "onRedirectLogin": "() => void (optional)",
1592
+ "onRedirectAccount": "() => void (optional)"
1593
+ },
1594
+ "slotNames": [
1595
+ "StructureData"
1596
+ ]
1597
+ },
1598
+ {
1599
+ "name": "CompanyUsers",
1600
+ "importPath": "@dropins/storefront-company-management/containers/CompanyUsers.js",
1601
+ "description": "",
1602
+ "props": {},
1603
+ "slotNames": [],
1604
+ "extendsHTMLAttributes": true
1605
+ },
1606
+ {
1607
+ "name": "CustomerCompanyInfo",
1608
+ "importPath": "@dropins/storefront-company-management/containers/CustomerCompanyInfo.js",
1609
+ "description": "",
1610
+ "props": {
1611
+ "className": "string (optional)"
1612
+ },
1613
+ "slotNames": []
1614
+ },
1615
+ {
1616
+ "name": "CompanyRegistration",
1617
+ "importPath": "@dropins/storefront-company-management/containers/CompanyRegistration.js",
1618
+ "description": "",
1619
+ "props": {
1620
+ "isAuthenticated": "boolean (optional)",
1621
+ "onRedirectLogin": "() => void (optional)",
1622
+ "onRedirectAccount": "() => void (optional)",
1623
+ "onSuccess": "(company: Company) => void (optional)",
1624
+ "onError": "(errors: string[]) => void (optional)",
1625
+ "className": "string (optional)"
1626
+ },
1627
+ "slotNames": []
1628
+ },
1629
+ {
1630
+ "name": "CompanyCredit",
1631
+ "importPath": "@dropins/storefront-company-management/containers/CompanyCredit.js",
1632
+ "description": "",
1633
+ "props": {
1634
+ "creditHistoryParams": "GetCompanyCreditHistoryParams (optional)",
1635
+ "showCreditHistory": "boolean (optional)"
1636
+ },
1637
+ "slotNames": [],
1638
+ "extendsHTMLAttributes": true
1639
+ },
1640
+ {
1641
+ "name": "RolesAndPermissions",
1642
+ "importPath": "@dropins/storefront-company-management/containers/RolesAndPermissions.js",
1643
+ "description": "",
1644
+ "props": {
1645
+ "className": "string (optional)",
1646
+ "withHeader": "boolean (optional)"
1647
+ },
1648
+ "slotNames": []
1649
+ }
1650
+ ]
1651
+ },
1652
+ "storefront-company-switcher": {
1653
+ "version": "1.1.1",
1654
+ "renderImport": "@dropins/storefront-company-switcher/render.js",
1655
+ "apiImport": "@dropins/storefront-company-switcher/api.js",
1656
+ "containers": [
1657
+ {
1658
+ "name": "CompanySwitcher",
1659
+ "importPath": "@dropins/storefront-company-switcher/containers/CompanySwitcher.js",
1660
+ "description": "",
1661
+ "props": {
1662
+ "ariaLabel": "string (optional)",
1663
+ "onCompanyChange": "(company: Company) => void (optional)"
1664
+ },
1665
+ "slotNames": [],
1666
+ "extendsHTMLAttributes": true
1667
+ }
1668
+ ]
1669
+ },
1670
+ "storefront-purchase-order": {
1671
+ "version": "1.1.1",
1672
+ "renderImport": "@dropins/storefront-purchase-order/render.js",
1673
+ "apiImport": "@dropins/storefront-purchase-order/api.js",
1674
+ "containers": [
1675
+ {
1676
+ "name": "CustomerPurchaseOrders",
1677
+ "importPath": "@dropins/storefront-purchase-order/containers/CustomerPurchaseOrders.js",
1678
+ "description": "",
1679
+ "props": {
1680
+ "initialPageSize": "PageSizeListProps[]",
1681
+ "routePurchaseOrderDetails": "(poId: string) => string (optional)",
1682
+ "setColumns": "(defaultColumns: Column[]) => Column[] (optional)",
1683
+ "setRowsData": "(defaultRows: Row[]) => Row[] (optional)",
1684
+ "className": "string (optional)",
1685
+ "withHeader": "boolean (optional)",
1686
+ "withWrapper": "boolean (optional)",
1687
+ "skeletonRowCount": "number (optional)"
1688
+ },
1689
+ "slotNames": []
1690
+ },
1691
+ {
1692
+ "name": "CompanyPurchaseOrders",
1693
+ "importPath": "@dropins/storefront-purchase-order/containers/CompanyPurchaseOrders.js",
1694
+ "description": "",
1695
+ "props": {
1696
+ "initialPageSize": "PageSizeListProps[]",
1697
+ "routePurchaseOrderDetails": "(poId: string) => string (optional)",
1698
+ "setColumns": "(defaultColumns: Column[]) => Column[] (optional)",
1699
+ "setRowsData": "(defaultRows: Row[]) => Row[] (optional)",
1700
+ "className": "string (optional)",
1701
+ "withHeader": "boolean (optional)",
1702
+ "withWrapper": "boolean (optional)",
1703
+ "skeletonRowCount": "number (optional)"
1704
+ },
1705
+ "slotNames": []
1706
+ },
1707
+ {
1708
+ "name": "RequireApprovalPurchaseOrders",
1709
+ "importPath": "@dropins/storefront-purchase-order/containers/RequireApprovalPurchaseOrders.js",
1710
+ "description": "",
1711
+ "props": {
1712
+ "initialPageSize": "PageSizeListProps[]",
1713
+ "routePurchaseOrderDetails": "(poId: string) => string (optional)",
1714
+ "setColumns": "(defaultColumns: Column[]) => Column[] (optional)",
1715
+ "setRowsData": "(defaultRows: Row[]) => Row[] (optional)",
1716
+ "className": "string (optional)",
1717
+ "withHeader": "boolean (optional)",
1718
+ "withWrapper": "boolean (optional)",
1719
+ "skeletonRowCount": "number (optional)"
1720
+ },
1721
+ "slotNames": []
1722
+ },
1723
+ {
1724
+ "name": "ApprovalRuleForm",
1725
+ "importPath": "@dropins/storefront-purchase-order/containers/ApprovalRuleForm.js",
1726
+ "description": "",
1727
+ "props": {
1728
+ "withHeader": "boolean (optional)",
1729
+ "withWrapper": "boolean (optional)",
1730
+ "className": "string (optional)",
1731
+ "approvalRuleID": "string (optional)",
1732
+ "routeApprovalRulesList": "() => string",
1733
+ "onSubmit": "(formValues: FormValuesParams) => Promise<void> (optional)",
1734
+ "onChange": "(formValues: FormValuesParams) => void (optional)"
1735
+ },
1736
+ "slotNames": []
1737
+ },
1738
+ {
1739
+ "name": "ApprovalRulesList",
1740
+ "importPath": "@dropins/storefront-purchase-order/containers/ApprovalRulesList.js",
1741
+ "description": "",
1742
+ "props": {
1743
+ "initialPageSize": "PageSizeListProps[] (optional)",
1744
+ "routeCreateApprovalRule": "(id: string) => string (optional)",
1745
+ "routeEditApprovalRule": "(id: string) => string (optional)",
1746
+ "routeApprovalRuleDetails": "(id: string) => string (optional)",
1747
+ "setColumns": "(defaultColumns: Column[]) => Column[] (optional)",
1748
+ "setRowsData": "(defaultRows: Row[]) => Row[] (optional)",
1749
+ "className": "string (optional)",
1750
+ "withHeader": "boolean (optional)",
1751
+ "withWrapper": "boolean (optional)",
1752
+ "skeletonRowCount": "number (optional)"
1753
+ },
1754
+ "slotNames": []
1755
+ },
1756
+ {
1757
+ "name": "PurchaseOrderConfirmation",
1758
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderConfirmation.js",
1759
+ "description": "",
1760
+ "props": {
1761
+ "purchaseOrderNumber": "string | number",
1762
+ "routePurchaseOrderDetails": "() => string"
1763
+ },
1764
+ "slotNames": [],
1765
+ "extendsHTMLAttributes": true
1766
+ },
1767
+ {
1768
+ "name": "PurchaseOrderStatus",
1769
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderStatus.js",
1770
+ "description": "",
1771
+ "props": {
1772
+ "className": "string (optional)",
1773
+ "withHeader": "boolean (optional)",
1774
+ "withWrapper": "boolean (optional)"
1775
+ },
1776
+ "slotNames": [
1777
+ "PurchaseOrderActions"
1778
+ ]
1779
+ },
1780
+ {
1781
+ "name": "ApprovalRuleDetails",
1782
+ "importPath": "@dropins/storefront-purchase-order/containers/ApprovalRuleDetails.js",
1783
+ "description": "",
1784
+ "props": {
1785
+ "withHeader": "boolean (optional)",
1786
+ "withWrapper": "boolean (optional)",
1787
+ "className": "string (optional)",
1788
+ "approvalRuleID": "string (optional)",
1789
+ "routeApprovalRulesList": "() => string"
1790
+ },
1791
+ "slotNames": []
1792
+ },
1793
+ {
1794
+ "name": "PurchaseOrderCommentsList",
1795
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderCommentsList.js",
1796
+ "description": "",
1797
+ "props": {
1798
+ "withHeader": "boolean (optional)",
1799
+ "withWrapper": "boolean (optional)",
1800
+ "visibleRecordsLimit": "number (optional)",
1801
+ "className": "string (optional)"
1802
+ },
1803
+ "slotNames": []
1804
+ },
1805
+ {
1806
+ "name": "PurchaseOrderCommentForm",
1807
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderCommentForm.js",
1808
+ "description": "",
1809
+ "props": {
1810
+ "withHeader": "boolean (optional)",
1811
+ "withWrapper": "boolean (optional)",
1812
+ "className": "string (optional)"
1813
+ },
1814
+ "slotNames": []
1815
+ },
1816
+ {
1817
+ "name": "PurchaseOrderApprovalFlow",
1818
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderApprovalFlow.js",
1819
+ "description": "",
1820
+ "props": {
1821
+ "className": "string (optional)",
1822
+ "withHeader": "boolean (optional)",
1823
+ "withWrapper": "boolean (optional)"
1824
+ },
1825
+ "slotNames": []
1826
+ },
1827
+ {
1828
+ "name": "PurchaseOrderHistoryLog",
1829
+ "importPath": "@dropins/storefront-purchase-order/containers/PurchaseOrderHistoryLog.js",
1830
+ "description": "",
1831
+ "props": {
1832
+ "visibleRecordsLimit": "number (optional)",
1833
+ "withHeader": "boolean (optional)",
1834
+ "withWrapper": "boolean (optional)",
1835
+ "className": "string (optional)"
1836
+ },
1837
+ "slotNames": []
1838
+ }
1839
+ ]
1840
+ },
1841
+ "storefront-quick-order": {
1842
+ "version": "1.0.0-beta.3",
1843
+ "renderImport": "@dropins/storefront-quick-order/render.js",
1844
+ "apiImport": "@dropins/storefront-quick-order/api.js",
1845
+ "containers": [
1846
+ {
1847
+ "name": "QuickOrderMultipleSku",
1848
+ "importPath": "@dropins/storefront-quick-order/containers/QuickOrderMultipleSku.js",
1849
+ "description": "",
1850
+ "props": {
1851
+ "className": "string (optional)",
1852
+ "onChange": "(skus: string[]) => void (optional)"
1853
+ },
1854
+ "slotNames": [
1855
+ "AddToListButton"
1856
+ ]
1857
+ },
1858
+ {
1859
+ "name": "QuickOrderCsvUpload",
1860
+ "importPath": "@dropins/storefront-quick-order/containers/QuickOrderCsvUpload.js",
1861
+ "description": "",
1862
+ "props": {
1863
+ "className": "string (optional)",
1864
+ "routeSampleCSV": "() => string (optional)",
1865
+ "onFileUpload": "(values: SubmitSkuValue) => void (optional)"
1866
+ },
1867
+ "slotNames": []
1868
+ },
1869
+ {
1870
+ "name": "QuickOrderItems",
1871
+ "importPath": "@dropins/storefront-quick-order/containers/QuickOrderItems.js",
1872
+ "description": "",
1873
+ "props": {
1874
+ "className": "string (optional)",
1875
+ "getProductsData": "(items: OrderItemInput[]) => Promise<OrderItem[]> (optional)",
1876
+ "productsSearch": "(params: {\n phrase: string;\n filter: Array<{\n attribute: string;\n in: string[];\n }>;\n }) => Promise<{ items: OrderItem[] }> (optional)",
1877
+ "handleAddToCart": "(\n items: any[],\n clearItems: () => void\n ) => void | string | Promise<void | string> (optional)",
1878
+ "searchFilter": "Array<{\n attribute: string;\n in: string[];\n }> (optional)"
1879
+ },
1880
+ "slotNames": [
1881
+ "AddAllToCartButton",
1882
+ "ProductPrice",
1883
+ "ProductOptions",
1884
+ "QuickOrderItemSearch",
1885
+ "QuickOrderSearchAutocompleteItem"
1886
+ ]
1887
+ },
1888
+ {
1889
+ "name": "QuickOrderVariantsGrid",
1890
+ "importPath": "@dropins/storefront-quick-order/containers/QuickOrderVariantsGrid.js",
1891
+ "description": "",
1892
+ "props": {
1893
+ "className": "string (optional)",
1894
+ "initialVariants": "ProductVariant[] (optional)",
1895
+ "onVariantsLoaded": "(variants: VariantWithQuantity[]) => void (optional)",
1896
+ "onSelectedVariantsChange": "(data: VariantTableData[]) => void (optional)",
1897
+ "debounceMs": "number (optional)",
1898
+ "initialLoading": "boolean (optional)",
1899
+ "visibleVariantsLimit": "number (optional)",
1900
+ "columns": "Array<{\n key: string;\n label: string;\n sortBy?: 'asc' | 'desc' | true;\n }> (optional)"
1901
+ },
1902
+ "slotNames": [
1903
+ "Actions",
1904
+ "ImageCell",
1905
+ "SKUCell",
1906
+ "AvailabilityCell",
1907
+ "PriceCell",
1908
+ "QuantityCell",
1909
+ "SubtotalCell"
1910
+ ]
1911
+ }
1912
+ ]
1913
+ },
1914
+ "storefront-product-discovery": {
1915
+ "version": "3.1.0",
1916
+ "renderImport": "@dropins/storefront-product-discovery/render.js",
1917
+ "apiImport": "@dropins/storefront-product-discovery/api.js",
1918
+ "containers": [
1919
+ {
1920
+ "name": "Facets",
1921
+ "importPath": "@dropins/storefront-product-discovery/containers/Facets.js",
1922
+ "description": "",
1923
+ "props": {
1924
+ "scope": "Scope (optional)"
1925
+ },
1926
+ "slotNames": [
1927
+ "Facet",
1928
+ "SelectedFacets",
1929
+ "Facets",
1930
+ "FacetBucket",
1931
+ "FacetBucketLabel"
1932
+ ],
1933
+ "extendsHTMLAttributes": true
1934
+ },
1935
+ {
1936
+ "name": "Pagination",
1937
+ "importPath": "@dropins/storefront-product-discovery/containers/Pagination.js",
1938
+ "description": "",
1939
+ "props": {
1940
+ "scope": "Scope (optional)",
1941
+ "onPageChange": "(page: number) => void (optional)"
1942
+ },
1943
+ "slotNames": [],
1944
+ "extendsHTMLAttributes": true
1945
+ },
1946
+ {
1947
+ "name": "SearchResults",
1948
+ "importPath": "@dropins/storefront-product-discovery/containers/SearchResults.js",
1949
+ "description": "",
1950
+ "props": {
1951
+ "routeProduct": "(product: Product) => string (optional)",
1952
+ "scope": "Scope (optional)",
1953
+ "imageWidth": "number (optional)",
1954
+ "imageHeight": "number (optional)",
1955
+ "skeletonCount": "number (optional)",
1956
+ "onSearchResult": "(payload: Product[]) => void (optional)"
1957
+ },
1958
+ "slotNames": [
1959
+ "ProductActions",
1960
+ "ProductPrice",
1961
+ "ProductName",
1962
+ "ProductImage",
1963
+ "NoResults",
1964
+ "Header",
1965
+ "Footer"
1966
+ ],
1967
+ "extendsHTMLAttributes": true
1968
+ },
1969
+ {
1970
+ "name": "SortBy",
1971
+ "importPath": "@dropins/storefront-product-discovery/containers/SortBy.js",
1972
+ "description": "",
1973
+ "props": {
1974
+ "scope": "Scope (optional)",
1975
+ "onSortChange": "(value: SortOrder | null) => void (optional)"
1976
+ },
1977
+ "slotNames": [],
1978
+ "extendsHTMLAttributes": true
1979
+ }
1980
+ ]
1981
+ },
1982
+ "storefront-personalization": {
1983
+ "version": "3.1.1",
1984
+ "renderImport": "@dropins/storefront-personalization/render.js",
1985
+ "apiImport": "@dropins/storefront-personalization/api.js",
1986
+ "containers": [
1987
+ {
1988
+ "name": "TargetedBlock",
1989
+ "importPath": "@dropins/storefront-personalization/containers/TargetedBlock.js",
1990
+ "description": "",
1991
+ "props": {
1992
+ "personalizationData": "PersonalizationData",
1993
+ "type": "string (optional)"
1994
+ },
1995
+ "slotNames": [
1996
+ "Content"
1997
+ ],
1998
+ "extendsHTMLAttributes": true
1999
+ }
2000
+ ]
2001
+ }
2002
+ }
2003
+ }