@shopify/ui-extensions 2026.4.1 → 2026.4.3

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 (799) hide show
  1. package/build/cjs/surfaces/checkout/preact/localized-fields.js +2 -0
  2. package/build/esm/surfaces/checkout/preact/localized-fields.mjs +2 -0
  3. package/build/esnext/surfaces/checkout/preact/localized-fields.esnext +2 -0
  4. package/build/ts/surfaces/admin/api/discount-function-settings/launch-options.d.ts +20 -0
  5. package/build/ts/surfaces/admin/api/discount-function-settings/launch-options.d.ts.map +1 -1
  6. package/build/ts/surfaces/admin/api/generated/generated.d.ts +1 -1
  7. package/build/ts/surfaces/admin/api/generated/generated.d.ts.map +1 -1
  8. package/build/ts/surfaces/checkout/api/address-autocomplete/standard.d.ts +1 -1
  9. package/build/ts/surfaces/checkout/api/address-autocomplete/suggest.d.ts +2 -2
  10. package/build/ts/surfaces/checkout/api/cart-line/cart-line-item.d.ts +4 -0
  11. package/build/ts/surfaces/checkout/api/cart-line/cart-line-item.d.ts.map +1 -1
  12. package/build/ts/surfaces/checkout/api/checkout/checkout.d.ts +30 -12
  13. package/build/ts/surfaces/checkout/api/checkout/checkout.d.ts.map +1 -1
  14. package/build/ts/surfaces/checkout/api/order-confirmation/order-confirmation.d.ts +2 -0
  15. package/build/ts/surfaces/checkout/api/order-confirmation/order-confirmation.d.ts.map +1 -1
  16. package/build/ts/surfaces/checkout/api/pickup/pickup-location-item.d.ts +8 -0
  17. package/build/ts/surfaces/checkout/api/pickup/pickup-location-item.d.ts.map +1 -1
  18. package/build/ts/surfaces/checkout/api/pickup/pickup-point-list.d.ts +3 -3
  19. package/build/ts/surfaces/checkout/api/shared.d.ts +3 -0
  20. package/build/ts/surfaces/checkout/api/shared.d.ts.map +1 -1
  21. package/build/ts/surfaces/checkout/api/shipping/shipping-option-item.d.ts +8 -0
  22. package/build/ts/surfaces/checkout/api/shipping/shipping-option-item.d.ts.map +1 -1
  23. package/build/ts/surfaces/checkout/api/standard/standard.d.ts +94 -29
  24. package/build/ts/surfaces/checkout/api/standard/standard.d.ts.map +1 -1
  25. package/build/ts/surfaces/checkout/components/Announcement.d.ts +3 -3
  26. package/build/ts/surfaces/checkout/components/Button.d.ts +10 -0
  27. package/build/ts/surfaces/checkout/components/Checkbox.d.ts +32 -3
  28. package/build/ts/surfaces/checkout/components/Clickable.d.ts +10 -0
  29. package/build/ts/surfaces/checkout/components/Paragraph.d.ts +9 -10
  30. package/build/ts/surfaces/checkout/components/components-shared.d.ts +32 -3
  31. package/build/ts/surfaces/checkout/components/components.d.ts +9 -13
  32. package/build/ts/surfaces/checkout/preact/localized-fields.d.ts +2 -0
  33. package/build/ts/surfaces/checkout/preact/localized-fields.d.ts.map +1 -1
  34. package/build/ts/surfaces/customer-account/api/cart-line/cart-line-item.d.ts +1 -1
  35. package/build/ts/surfaces/customer-account/api/docs.d.ts +2 -3
  36. package/build/ts/surfaces/customer-account/api/docs.d.ts.map +1 -1
  37. package/build/ts/surfaces/customer-account/api/order-status/order-status.d.ts +27 -2
  38. package/build/ts/surfaces/customer-account/api/order-status/order-status.d.ts.map +1 -1
  39. package/build/ts/surfaces/customer-account/api/shared.d.ts +10 -8
  40. package/build/ts/surfaces/customer-account/api/shared.d.ts.map +1 -1
  41. package/build/ts/surfaces/customer-account/api/standard-api/standard-api.d.ts +2 -2
  42. package/build/ts/surfaces/customer-account/components/Announcement.d.ts +3 -3
  43. package/build/ts/surfaces/customer-account/components/Avatar.d.ts +2 -0
  44. package/build/ts/surfaces/customer-account/components/Button.d.ts +10 -0
  45. package/build/ts/surfaces/customer-account/components/Checkbox.d.ts +32 -3
  46. package/build/ts/surfaces/customer-account/components/Clickable.d.ts +10 -0
  47. package/build/ts/surfaces/customer-account/components/Paragraph.d.ts +9 -10
  48. package/build/ts/surfaces/customer-account/components/components-shared.d.ts +32 -3
  49. package/build/ts/surfaces/customer-account/components/components.d.ts +9 -13
  50. package/build/ts/surfaces/point-of-sale/components/components-shared.d.ts +8 -14
  51. package/build/tsconfig.tsbuildinfo +1 -1
  52. package/package.json +2 -4
  53. package/src/surfaces/admin/api/discount-function-settings/launch-options.ts +21 -0
  54. package/src/surfaces/admin/api/generated/generated.ts +1 -1
  55. package/src/surfaces/checkout/api/address-autocomplete/standard.ts +1 -1
  56. package/src/surfaces/checkout/api/address-autocomplete/suggest.ts +2 -2
  57. package/src/surfaces/checkout/api/cart-line/cart-line-item.ts +4 -0
  58. package/src/surfaces/checkout/api/checkout/checkout.ts +30 -12
  59. package/src/surfaces/checkout/api/order-confirmation/order-confirmation.ts +2 -0
  60. package/src/surfaces/checkout/api/pickup/pickup-location-item.ts +8 -0
  61. package/src/surfaces/checkout/api/pickup/pickup-point-list.ts +3 -3
  62. package/src/surfaces/checkout/api/shared.ts +3 -0
  63. package/src/surfaces/checkout/api/shipping/shipping-option-item.ts +8 -0
  64. package/src/surfaces/checkout/api/standard/standard.ts +94 -29
  65. package/src/surfaces/checkout/components/Announcement.d.ts +3 -3
  66. package/src/surfaces/checkout/components/Button.d.ts +10 -0
  67. package/src/surfaces/checkout/components/Checkbox.d.ts +32 -3
  68. package/src/surfaces/checkout/components/Clickable.d.ts +10 -0
  69. package/src/surfaces/checkout/components/Paragraph.d.ts +9 -10
  70. package/src/surfaces/checkout/components/components-shared.d.ts +32 -3
  71. package/src/surfaces/checkout/components/components.d.ts +9 -13
  72. package/src/surfaces/checkout/preact/localized-fields.ts +2 -0
  73. package/src/surfaces/customer-account/api/cart-line/cart-line-item.ts +1 -1
  74. package/src/surfaces/customer-account/api/docs.ts +2 -3
  75. package/src/surfaces/customer-account/api/order-status/order-status.ts +27 -2
  76. package/src/surfaces/customer-account/api/shared.ts +10 -8
  77. package/src/surfaces/customer-account/api/standard-api/standard-api.ts +2 -2
  78. package/src/surfaces/customer-account/components/Avatar.d.ts +2 -0
  79. package/src/surfaces/point-of-sale/components/components-shared.d.ts +8 -14
  80. package/src/surfaces/point-of-sale/components.d.ts +2 -2
  81. package/build/ts/docs/shared/component-definitions.d.ts +0 -31
  82. package/build/ts/docs/shared/component-definitions.d.ts.map +0 -1
  83. package/build/ts/docs/shared/components/Abbreviation.d.ts +0 -4
  84. package/build/ts/docs/shared/components/Abbreviation.d.ts.map +0 -1
  85. package/build/ts/docs/shared/components/Announcement.d.ts +0 -4
  86. package/build/ts/docs/shared/components/Announcement.d.ts.map +0 -1
  87. package/build/ts/docs/shared/components/Avatar.d.ts +0 -4
  88. package/build/ts/docs/shared/components/Avatar.d.ts.map +0 -1
  89. package/build/ts/docs/shared/components/Badge.d.ts +0 -4
  90. package/build/ts/docs/shared/components/Badge.d.ts.map +0 -1
  91. package/build/ts/docs/shared/components/Banner.d.ts +0 -4
  92. package/build/ts/docs/shared/components/Banner.d.ts.map +0 -1
  93. package/build/ts/docs/shared/components/Box.d.ts +0 -4
  94. package/build/ts/docs/shared/components/Box.d.ts.map +0 -1
  95. package/build/ts/docs/shared/components/Button.d.ts +0 -4
  96. package/build/ts/docs/shared/components/Button.d.ts.map +0 -1
  97. package/build/ts/docs/shared/components/ButtonGroup.d.ts +0 -4
  98. package/build/ts/docs/shared/components/ButtonGroup.d.ts.map +0 -1
  99. package/build/ts/docs/shared/components/Checkbox.d.ts +0 -4
  100. package/build/ts/docs/shared/components/Checkbox.d.ts.map +0 -1
  101. package/build/ts/docs/shared/components/Chip.d.ts +0 -4
  102. package/build/ts/docs/shared/components/Chip.d.ts.map +0 -1
  103. package/build/ts/docs/shared/components/Choice.d.ts +0 -4
  104. package/build/ts/docs/shared/components/Choice.d.ts.map +0 -1
  105. package/build/ts/docs/shared/components/ChoiceList.d.ts +0 -4
  106. package/build/ts/docs/shared/components/ChoiceList.d.ts.map +0 -1
  107. package/build/ts/docs/shared/components/Clickable.d.ts +0 -4
  108. package/build/ts/docs/shared/components/Clickable.d.ts.map +0 -1
  109. package/build/ts/docs/shared/components/ClickableChip.d.ts +0 -4
  110. package/build/ts/docs/shared/components/ClickableChip.d.ts.map +0 -1
  111. package/build/ts/docs/shared/components/ClipboardItem.d.ts +0 -4
  112. package/build/ts/docs/shared/components/ClipboardItem.d.ts.map +0 -1
  113. package/build/ts/docs/shared/components/ColorField.d.ts +0 -4
  114. package/build/ts/docs/shared/components/ColorField.d.ts.map +0 -1
  115. package/build/ts/docs/shared/components/ColorPicker.d.ts +0 -4
  116. package/build/ts/docs/shared/components/ColorPicker.d.ts.map +0 -1
  117. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts +0 -4
  118. package/build/ts/docs/shared/components/ConsentCheckbox.d.ts.map +0 -1
  119. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts +0 -4
  120. package/build/ts/docs/shared/components/ConsentPhoneField.d.ts.map +0 -1
  121. package/build/ts/docs/shared/components/DateField.d.ts +0 -4
  122. package/build/ts/docs/shared/components/DateField.d.ts.map +0 -1
  123. package/build/ts/docs/shared/components/DatePicker.d.ts +0 -4
  124. package/build/ts/docs/shared/components/DatePicker.d.ts.map +0 -1
  125. package/build/ts/docs/shared/components/Details.d.ts +0 -4
  126. package/build/ts/docs/shared/components/Details.d.ts.map +0 -1
  127. package/build/ts/docs/shared/components/Divider.d.ts +0 -4
  128. package/build/ts/docs/shared/components/Divider.d.ts.map +0 -1
  129. package/build/ts/docs/shared/components/DropZone.d.ts +0 -4
  130. package/build/ts/docs/shared/components/DropZone.d.ts.map +0 -1
  131. package/build/ts/docs/shared/components/EmailField.d.ts +0 -4
  132. package/build/ts/docs/shared/components/EmailField.d.ts.map +0 -1
  133. package/build/ts/docs/shared/components/Form.d.ts +0 -4
  134. package/build/ts/docs/shared/components/Form.d.ts.map +0 -1
  135. package/build/ts/docs/shared/components/FunctionSettings.d.ts +0 -4
  136. package/build/ts/docs/shared/components/FunctionSettings.d.ts.map +0 -1
  137. package/build/ts/docs/shared/components/Grid.d.ts +0 -4
  138. package/build/ts/docs/shared/components/Grid.d.ts.map +0 -1
  139. package/build/ts/docs/shared/components/GridItem.d.ts +0 -4
  140. package/build/ts/docs/shared/components/GridItem.d.ts.map +0 -1
  141. package/build/ts/docs/shared/components/Heading.d.ts +0 -4
  142. package/build/ts/docs/shared/components/Heading.d.ts.map +0 -1
  143. package/build/ts/docs/shared/components/Icon.d.ts +0 -4
  144. package/build/ts/docs/shared/components/Icon.d.ts.map +0 -1
  145. package/build/ts/docs/shared/components/Image.d.ts +0 -4
  146. package/build/ts/docs/shared/components/Image.d.ts.map +0 -1
  147. package/build/ts/docs/shared/components/Link.d.ts +0 -4
  148. package/build/ts/docs/shared/components/Link.d.ts.map +0 -1
  149. package/build/ts/docs/shared/components/ListItem.d.ts +0 -4
  150. package/build/ts/docs/shared/components/ListItem.d.ts.map +0 -1
  151. package/build/ts/docs/shared/components/Map.d.ts +0 -4
  152. package/build/ts/docs/shared/components/Map.d.ts.map +0 -1
  153. package/build/ts/docs/shared/components/MapMarker.d.ts +0 -4
  154. package/build/ts/docs/shared/components/MapMarker.d.ts.map +0 -1
  155. package/build/ts/docs/shared/components/Menu.d.ts +0 -4
  156. package/build/ts/docs/shared/components/Menu.d.ts.map +0 -1
  157. package/build/ts/docs/shared/components/Modal.d.ts +0 -4
  158. package/build/ts/docs/shared/components/Modal.d.ts.map +0 -1
  159. package/build/ts/docs/shared/components/MoneyField.d.ts +0 -4
  160. package/build/ts/docs/shared/components/MoneyField.d.ts.map +0 -1
  161. package/build/ts/docs/shared/components/NumberField.d.ts +0 -4
  162. package/build/ts/docs/shared/components/NumberField.d.ts.map +0 -1
  163. package/build/ts/docs/shared/components/Option.d.ts +0 -4
  164. package/build/ts/docs/shared/components/Option.d.ts.map +0 -1
  165. package/build/ts/docs/shared/components/OptionGroup.d.ts +0 -4
  166. package/build/ts/docs/shared/components/OptionGroup.d.ts.map +0 -1
  167. package/build/ts/docs/shared/components/OrderedList.d.ts +0 -4
  168. package/build/ts/docs/shared/components/OrderedList.d.ts.map +0 -1
  169. package/build/ts/docs/shared/components/Page.d.ts +0 -4
  170. package/build/ts/docs/shared/components/Page.d.ts.map +0 -1
  171. package/build/ts/docs/shared/components/Paragraph.d.ts +0 -4
  172. package/build/ts/docs/shared/components/Paragraph.d.ts.map +0 -1
  173. package/build/ts/docs/shared/components/PasswordField.d.ts +0 -4
  174. package/build/ts/docs/shared/components/PasswordField.d.ts.map +0 -1
  175. package/build/ts/docs/shared/components/PaymentIcon.d.ts +0 -4
  176. package/build/ts/docs/shared/components/PaymentIcon.d.ts.map +0 -1
  177. package/build/ts/docs/shared/components/PhoneField.d.ts +0 -4
  178. package/build/ts/docs/shared/components/PhoneField.d.ts.map +0 -1
  179. package/build/ts/docs/shared/components/Popover.d.ts +0 -4
  180. package/build/ts/docs/shared/components/Popover.d.ts.map +0 -1
  181. package/build/ts/docs/shared/components/PressButton.d.ts +0 -4
  182. package/build/ts/docs/shared/components/PressButton.d.ts.map +0 -1
  183. package/build/ts/docs/shared/components/ProductThumbnail.d.ts +0 -4
  184. package/build/ts/docs/shared/components/ProductThumbnail.d.ts.map +0 -1
  185. package/build/ts/docs/shared/components/Progress.d.ts +0 -4
  186. package/build/ts/docs/shared/components/Progress.d.ts.map +0 -1
  187. package/build/ts/docs/shared/components/QRCode.d.ts +0 -4
  188. package/build/ts/docs/shared/components/QRCode.d.ts.map +0 -1
  189. package/build/ts/docs/shared/components/QueryContainer.d.ts +0 -4
  190. package/build/ts/docs/shared/components/QueryContainer.d.ts.map +0 -1
  191. package/build/ts/docs/shared/components/ScrollBox.d.ts +0 -4
  192. package/build/ts/docs/shared/components/ScrollBox.d.ts.map +0 -1
  193. package/build/ts/docs/shared/components/SearchField.d.ts +0 -4
  194. package/build/ts/docs/shared/components/SearchField.d.ts.map +0 -1
  195. package/build/ts/docs/shared/components/Section.d.ts +0 -4
  196. package/build/ts/docs/shared/components/Section.d.ts.map +0 -1
  197. package/build/ts/docs/shared/components/Select.d.ts +0 -4
  198. package/build/ts/docs/shared/components/Select.d.ts.map +0 -1
  199. package/build/ts/docs/shared/components/Sheet.d.ts +0 -4
  200. package/build/ts/docs/shared/components/Sheet.d.ts.map +0 -1
  201. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts +0 -4
  202. package/build/ts/docs/shared/components/SkeletonParagraph.d.ts.map +0 -1
  203. package/build/ts/docs/shared/components/Spinner.d.ts +0 -4
  204. package/build/ts/docs/shared/components/Spinner.d.ts.map +0 -1
  205. package/build/ts/docs/shared/components/Stack.d.ts +0 -4
  206. package/build/ts/docs/shared/components/Stack.d.ts.map +0 -1
  207. package/build/ts/docs/shared/components/Summary.d.ts +0 -4
  208. package/build/ts/docs/shared/components/Summary.d.ts.map +0 -1
  209. package/build/ts/docs/shared/components/Switch.d.ts +0 -4
  210. package/build/ts/docs/shared/components/Switch.d.ts.map +0 -1
  211. package/build/ts/docs/shared/components/Table.d.ts +0 -4
  212. package/build/ts/docs/shared/components/Table.d.ts.map +0 -1
  213. package/build/ts/docs/shared/components/TableBody.d.ts +0 -4
  214. package/build/ts/docs/shared/components/TableBody.d.ts.map +0 -1
  215. package/build/ts/docs/shared/components/TableCell.d.ts +0 -4
  216. package/build/ts/docs/shared/components/TableCell.d.ts.map +0 -1
  217. package/build/ts/docs/shared/components/TableHeader.d.ts +0 -4
  218. package/build/ts/docs/shared/components/TableHeader.d.ts.map +0 -1
  219. package/build/ts/docs/shared/components/TableHeaderRow.d.ts +0 -4
  220. package/build/ts/docs/shared/components/TableHeaderRow.d.ts.map +0 -1
  221. package/build/ts/docs/shared/components/TableRow.d.ts +0 -4
  222. package/build/ts/docs/shared/components/TableRow.d.ts.map +0 -1
  223. package/build/ts/docs/shared/components/Text.d.ts +0 -4
  224. package/build/ts/docs/shared/components/Text.d.ts.map +0 -1
  225. package/build/ts/docs/shared/components/TextArea.d.ts +0 -4
  226. package/build/ts/docs/shared/components/TextArea.d.ts.map +0 -1
  227. package/build/ts/docs/shared/components/TextField.d.ts +0 -4
  228. package/build/ts/docs/shared/components/TextField.d.ts.map +0 -1
  229. package/build/ts/docs/shared/components/Thumbnail.d.ts +0 -4
  230. package/build/ts/docs/shared/components/Thumbnail.d.ts.map +0 -1
  231. package/build/ts/docs/shared/components/Time.d.ts +0 -4
  232. package/build/ts/docs/shared/components/Time.d.ts.map +0 -1
  233. package/build/ts/docs/shared/components/Tooltip.d.ts +0 -4
  234. package/build/ts/docs/shared/components/Tooltip.d.ts.map +0 -1
  235. package/build/ts/docs/shared/components/URLField.d.ts +0 -4
  236. package/build/ts/docs/shared/components/URLField.d.ts.map +0 -1
  237. package/build/ts/docs/shared/components/UnorderedList.d.ts +0 -4
  238. package/build/ts/docs/shared/components/UnorderedList.d.ts.map +0 -1
  239. package/build/ts/docs/shared/components/index.d.ts +0 -53
  240. package/build/ts/docs/shared/components/index.d.ts.map +0 -1
  241. package/build/ts/docs/shared/docs-type.d.ts +0 -4
  242. package/build/ts/docs/shared/docs-type.d.ts.map +0 -1
  243. package/build/ts/surfaces/admin/api/action/action.doc.d.ts +0 -4
  244. package/build/ts/surfaces/admin/api/action/action.doc.d.ts.map +0 -1
  245. package/build/ts/surfaces/admin/api/block/block.doc.d.ts +0 -4
  246. package/build/ts/surfaces/admin/api/block/block.doc.d.ts.map +0 -1
  247. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts +0 -4
  248. package/build/ts/surfaces/admin/api/checkout-rules/validation-settings.doc.d.ts.map +0 -1
  249. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts +0 -4
  250. package/build/ts/surfaces/admin/api/customer-segment-template/customer-segment-template.doc.d.ts.map +0 -1
  251. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts +0 -4
  252. package/build/ts/surfaces/admin/api/discount-function-settings/discount-function-settings.doc.d.ts.map +0 -1
  253. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts +0 -4
  254. package/build/ts/surfaces/admin/api/intents/intents.doc.d.ts.map +0 -1
  255. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts +0 -4
  256. package/build/ts/surfaces/admin/api/order-routing-rule/order-routing-rule.doc.d.ts.map +0 -1
  257. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts +0 -4
  258. package/build/ts/surfaces/admin/api/picker/picker.doc.d.ts.map +0 -1
  259. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts +0 -4
  260. package/build/ts/surfaces/admin/api/print-action/print-action.doc.d.ts.map +0 -1
  261. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts +0 -4
  262. package/build/ts/surfaces/admin/api/product-configuration/product-details-configuration.doc.d.ts.map +0 -1
  263. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts +0 -4
  264. package/build/ts/surfaces/admin/api/product-configuration/product-variant-details-configuration.doc.d.ts.map +0 -1
  265. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts +0 -4
  266. package/build/ts/surfaces/admin/api/purchase-options-card-action.doc.d.ts.map +0 -1
  267. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts +0 -4
  268. package/build/ts/surfaces/admin/api/resource-picker/resource-picker.doc.d.ts.map +0 -1
  269. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts +0 -4
  270. package/build/ts/surfaces/admin/api/should-render/should-render.doc.d.ts.map +0 -1
  271. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts +0 -4
  272. package/build/ts/surfaces/admin/api/standard/standard.doc.d.ts.map +0 -1
  273. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts +0 -4
  274. package/build/ts/surfaces/admin/components/AdminAction/AdminAction.ext.doc.d.ts.map +0 -1
  275. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts +0 -4
  276. package/build/ts/surfaces/admin/components/AdminBlock/AdminBlock.ext.doc.d.ts.map +0 -1
  277. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts +0 -4
  278. package/build/ts/surfaces/admin/components/AdminPrintAction/AdminPrintAction.ext.doc.d.ts.map +0 -1
  279. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts +0 -4
  280. package/build/ts/surfaces/admin/components/Avatar/Avatar.doc.d.ts.map +0 -1
  281. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts +0 -4
  282. package/build/ts/surfaces/admin/components/Badge/Badge.doc.d.ts.map +0 -1
  283. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts +0 -4
  284. package/build/ts/surfaces/admin/components/Banner/Banner.doc.d.ts.map +0 -1
  285. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts +0 -4
  286. package/build/ts/surfaces/admin/components/Box/Box.doc.d.ts.map +0 -1
  287. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts +0 -4
  288. package/build/ts/surfaces/admin/components/Button/Button.doc.d.ts.map +0 -1
  289. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  290. package/build/ts/surfaces/admin/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  291. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts +0 -4
  292. package/build/ts/surfaces/admin/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  293. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts +0 -4
  294. package/build/ts/surfaces/admin/components/Chip/Chip.doc.d.ts.map +0 -1
  295. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  296. package/build/ts/surfaces/admin/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  297. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts +0 -4
  298. package/build/ts/surfaces/admin/components/Clickable/Clickable.doc.d.ts.map +0 -1
  299. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  300. package/build/ts/surfaces/admin/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  301. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts +0 -4
  302. package/build/ts/surfaces/admin/components/ColorField/ColorField.doc.d.ts.map +0 -1
  303. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts +0 -4
  304. package/build/ts/surfaces/admin/components/ColorPicker/ColorPicker.doc.d.ts.map +0 -1
  305. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts +0 -4
  306. package/build/ts/surfaces/admin/components/DateField/DateField.doc.d.ts.map +0 -1
  307. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts +0 -4
  308. package/build/ts/surfaces/admin/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  309. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts +0 -4
  310. package/build/ts/surfaces/admin/components/Divider/Divider.doc.d.ts.map +0 -1
  311. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts +0 -4
  312. package/build/ts/surfaces/admin/components/DropZone/DropZone.doc.d.ts.map +0 -1
  313. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts +0 -4
  314. package/build/ts/surfaces/admin/components/EmailField/EmailField.doc.d.ts.map +0 -1
  315. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts +0 -4
  316. package/build/ts/surfaces/admin/components/Form/Form.ext.doc.d.ts.map +0 -1
  317. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts +0 -4
  318. package/build/ts/surfaces/admin/components/FunctionSettings/FunctionSettings.ext.doc.d.ts.map +0 -1
  319. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts +0 -4
  320. package/build/ts/surfaces/admin/components/Grid/Grid.doc.d.ts.map +0 -1
  321. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts +0 -4
  322. package/build/ts/surfaces/admin/components/Heading/Heading.doc.d.ts.map +0 -1
  323. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts +0 -4
  324. package/build/ts/surfaces/admin/components/Icon/Icon.doc.d.ts.map +0 -1
  325. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts +0 -4
  326. package/build/ts/surfaces/admin/components/Image/Image.doc.d.ts.map +0 -1
  327. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts +0 -4
  328. package/build/ts/surfaces/admin/components/Link/Link.doc.d.ts.map +0 -1
  329. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts +0 -4
  330. package/build/ts/surfaces/admin/components/Menu/Menu.doc.d.ts.map +0 -1
  331. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts +0 -4
  332. package/build/ts/surfaces/admin/components/Modal/Modal.ab.doc.d.ts.map +0 -1
  333. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts +0 -4
  334. package/build/ts/surfaces/admin/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  335. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts +0 -4
  336. package/build/ts/surfaces/admin/components/NumberField/NumberField.doc.d.ts.map +0 -1
  337. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts +0 -4
  338. package/build/ts/surfaces/admin/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  339. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts +0 -4
  340. package/build/ts/surfaces/admin/components/Page/Page.ab.doc.d.ts.map +0 -1
  341. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts +0 -4
  342. package/build/ts/surfaces/admin/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  343. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts +0 -4
  344. package/build/ts/surfaces/admin/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  345. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts +0 -4
  346. package/build/ts/surfaces/admin/components/Popover/Popover.ab.doc.d.ts.map +0 -1
  347. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  348. package/build/ts/surfaces/admin/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  349. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts +0 -4
  350. package/build/ts/surfaces/admin/components/SearchField/SearchField.doc.d.ts.map +0 -1
  351. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts +0 -4
  352. package/build/ts/surfaces/admin/components/Section/Section.doc.d.ts.map +0 -1
  353. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts +0 -4
  354. package/build/ts/surfaces/admin/components/Select/Select.doc.d.ts.map +0 -1
  355. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts +0 -4
  356. package/build/ts/surfaces/admin/components/Spinner/Spinner.doc.d.ts.map +0 -1
  357. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts +0 -4
  358. package/build/ts/surfaces/admin/components/Stack/Stack.doc.d.ts.map +0 -1
  359. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts +0 -4
  360. package/build/ts/surfaces/admin/components/Switch/Switch.doc.d.ts.map +0 -1
  361. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts +0 -4
  362. package/build/ts/surfaces/admin/components/Table/Table.doc.d.ts.map +0 -1
  363. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts +0 -4
  364. package/build/ts/surfaces/admin/components/Text/Text.doc.d.ts.map +0 -1
  365. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts +0 -4
  366. package/build/ts/surfaces/admin/components/TextArea/TextArea.doc.d.ts.map +0 -1
  367. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts +0 -4
  368. package/build/ts/surfaces/admin/components/TextField/TextField.doc.d.ts.map +0 -1
  369. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts +0 -4
  370. package/build/ts/surfaces/admin/components/Thumbnail/Thumbnail.doc.d.ts.map +0 -1
  371. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts +0 -4
  372. package/build/ts/surfaces/admin/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  373. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts +0 -4
  374. package/build/ts/surfaces/admin/components/URLField/URLField.doc.d.ts.map +0 -1
  375. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  376. package/build/ts/surfaces/admin/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  377. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts +0 -4
  378. package/build/ts/surfaces/admin/components/patterns/accountConnection.ab.doc.d.ts.map +0 -1
  379. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts +0 -4
  380. package/build/ts/surfaces/admin/components/patterns/appCard.ab.doc.d.ts.map +0 -1
  381. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts +0 -4
  382. package/build/ts/surfaces/admin/components/patterns/calloutCard.ab.doc.d.ts.map +0 -1
  383. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts +0 -4
  384. package/build/ts/surfaces/admin/components/patterns/details.ab.doc.d.ts.map +0 -1
  385. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts +0 -4
  386. package/build/ts/surfaces/admin/components/patterns/emptyState.ab.doc.d.ts.map +0 -1
  387. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts +0 -4
  388. package/build/ts/surfaces/admin/components/patterns/footerHelp.ab.doc.d.ts.map +0 -1
  389. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts +0 -4
  390. package/build/ts/surfaces/admin/components/patterns/homepage.ab.doc.d.ts.map +0 -1
  391. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts +0 -4
  392. package/build/ts/surfaces/admin/components/patterns/index.ab.doc.d.ts.map +0 -1
  393. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts +0 -4
  394. package/build/ts/surfaces/admin/components/patterns/indexTable.ab.doc.d.ts.map +0 -1
  395. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts +0 -4
  396. package/build/ts/surfaces/admin/components/patterns/interstitialNav.ab.doc.d.ts.map +0 -1
  397. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts +0 -4
  398. package/build/ts/surfaces/admin/components/patterns/mediaCard.ab.doc.d.ts.map +0 -1
  399. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts +0 -4
  400. package/build/ts/surfaces/admin/components/patterns/metricsCard.ab.doc.d.ts.map +0 -1
  401. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts +0 -4
  402. package/build/ts/surfaces/admin/components/patterns/resourceList.ab.doc.d.ts.map +0 -1
  403. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts +0 -4
  404. package/build/ts/surfaces/admin/components/patterns/settings.ab.doc.d.ts.map +0 -1
  405. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts +0 -4
  406. package/build/ts/surfaces/admin/components/patterns/setupGuide.ab.doc.d.ts.map +0 -1
  407. package/build/ts/surfaces/admin/docs-types.d.ts +0 -32
  408. package/build/ts/surfaces/admin/docs-types.d.ts.map +0 -1
  409. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  410. package/build/ts/surfaces/checkout/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  411. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts +0 -4
  412. package/build/ts/surfaces/checkout/components/Announcement/Announcement.doc.d.ts.map +0 -1
  413. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts +0 -4
  414. package/build/ts/surfaces/checkout/components/Badge/Badge.doc.d.ts.map +0 -1
  415. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts +0 -4
  416. package/build/ts/surfaces/checkout/components/Banner/Banner.doc.d.ts.map +0 -1
  417. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts +0 -4
  418. package/build/ts/surfaces/checkout/components/Box/Box.doc.d.ts.map +0 -1
  419. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts +0 -4
  420. package/build/ts/surfaces/checkout/components/Button/Button.doc.d.ts.map +0 -1
  421. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts +0 -4
  422. package/build/ts/surfaces/checkout/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  423. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts +0 -4
  424. package/build/ts/surfaces/checkout/components/Chip/Chip.doc.d.ts.map +0 -1
  425. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  426. package/build/ts/surfaces/checkout/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  427. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts +0 -4
  428. package/build/ts/surfaces/checkout/components/Clickable/Clickable.doc.d.ts.map +0 -1
  429. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  430. package/build/ts/surfaces/checkout/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  431. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  432. package/build/ts/surfaces/checkout/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  433. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  434. package/build/ts/surfaces/checkout/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  435. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  436. package/build/ts/surfaces/checkout/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  437. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts +0 -4
  438. package/build/ts/surfaces/checkout/components/DateField/DateField.doc.d.ts.map +0 -1
  439. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts +0 -4
  440. package/build/ts/surfaces/checkout/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  441. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts +0 -4
  442. package/build/ts/surfaces/checkout/components/Details/Details.doc.d.ts.map +0 -1
  443. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts +0 -4
  444. package/build/ts/surfaces/checkout/components/Divider/Divider.doc.d.ts.map +0 -1
  445. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts +0 -4
  446. package/build/ts/surfaces/checkout/components/DropZone/DropZone.doc.d.ts.map +0 -1
  447. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts +0 -4
  448. package/build/ts/surfaces/checkout/components/EmailField/EmailField.doc.d.ts.map +0 -1
  449. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts +0 -4
  450. package/build/ts/surfaces/checkout/components/Form/Form.doc.d.ts.map +0 -1
  451. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts +0 -4
  452. package/build/ts/surfaces/checkout/components/Grid/Grid.doc.d.ts.map +0 -1
  453. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts +0 -4
  454. package/build/ts/surfaces/checkout/components/Heading/Heading.doc.d.ts.map +0 -1
  455. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts +0 -4
  456. package/build/ts/surfaces/checkout/components/Icon/Icon.doc.d.ts.map +0 -1
  457. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts +0 -4
  458. package/build/ts/surfaces/checkout/components/Image/Image.doc.d.ts.map +0 -1
  459. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts +0 -4
  460. package/build/ts/surfaces/checkout/components/Link/Link.doc.d.ts.map +0 -1
  461. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts +0 -4
  462. package/build/ts/surfaces/checkout/components/Map/Map.doc.d.ts.map +0 -1
  463. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts +0 -4
  464. package/build/ts/surfaces/checkout/components/Modal/Modal.doc.d.ts.map +0 -1
  465. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts +0 -4
  466. package/build/ts/surfaces/checkout/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  467. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts +0 -4
  468. package/build/ts/surfaces/checkout/components/NumberField/NumberField.doc.d.ts.map +0 -1
  469. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts +0 -4
  470. package/build/ts/surfaces/checkout/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  471. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts +0 -4
  472. package/build/ts/surfaces/checkout/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  473. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts +0 -4
  474. package/build/ts/surfaces/checkout/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  475. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  476. package/build/ts/surfaces/checkout/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  477. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts +0 -4
  478. package/build/ts/surfaces/checkout/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  479. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts +0 -4
  480. package/build/ts/surfaces/checkout/components/Popover/Popover.doc.d.ts.map +0 -1
  481. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts +0 -4
  482. package/build/ts/surfaces/checkout/components/PressButton/PressButton.doc.d.ts.map +0 -1
  483. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  484. package/build/ts/surfaces/checkout/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  485. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts +0 -4
  486. package/build/ts/surfaces/checkout/components/Progress/Progress.doc.d.ts.map +0 -1
  487. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts +0 -4
  488. package/build/ts/surfaces/checkout/components/QRCode/QRCode.doc.d.ts.map +0 -1
  489. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  490. package/build/ts/surfaces/checkout/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  491. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  492. package/build/ts/surfaces/checkout/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  493. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts +0 -4
  494. package/build/ts/surfaces/checkout/components/Section/Section.doc.d.ts.map +0 -1
  495. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts +0 -4
  496. package/build/ts/surfaces/checkout/components/Select/Select.doc.d.ts.map +0 -1
  497. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts +0 -4
  498. package/build/ts/surfaces/checkout/components/Sheet/Sheet.doc.d.ts.map +0 -1
  499. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  500. package/build/ts/surfaces/checkout/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  501. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts +0 -4
  502. package/build/ts/surfaces/checkout/components/Spinner/Spinner.doc.d.ts.map +0 -1
  503. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts +0 -4
  504. package/build/ts/surfaces/checkout/components/Stack/Stack.doc.d.ts.map +0 -1
  505. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts +0 -4
  506. package/build/ts/surfaces/checkout/components/Switch/Switch.doc.d.ts.map +0 -1
  507. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts +0 -4
  508. package/build/ts/surfaces/checkout/components/Text/Text.doc.d.ts.map +0 -1
  509. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts +0 -4
  510. package/build/ts/surfaces/checkout/components/TextArea/TextArea.doc.d.ts.map +0 -1
  511. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts +0 -4
  512. package/build/ts/surfaces/checkout/components/TextField/TextField.doc.d.ts.map +0 -1
  513. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts +0 -4
  514. package/build/ts/surfaces/checkout/components/Time/Time.doc.d.ts.map +0 -1
  515. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts +0 -4
  516. package/build/ts/surfaces/checkout/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  517. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  518. package/build/ts/surfaces/checkout/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  519. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts +0 -4
  520. package/build/ts/surfaces/checkout/components/UrlField/UrlField.doc.d.ts.map +0 -1
  521. package/build/ts/surfaces/checkout/helper.docs.d.ts +0 -15
  522. package/build/ts/surfaces/checkout/helper.docs.d.ts.map +0 -1
  523. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts +0 -4
  524. package/build/ts/surfaces/customer-account/components/Abbreviation/Abbreviation.doc.d.ts.map +0 -1
  525. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts +0 -4
  526. package/build/ts/surfaces/customer-account/components/Announcement/Announcement.doc.d.ts.map +0 -1
  527. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts +0 -4
  528. package/build/ts/surfaces/customer-account/components/Avatar/Avatar.doc.d.ts.map +0 -1
  529. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts +0 -4
  530. package/build/ts/surfaces/customer-account/components/Badge/Badge.doc.d.ts.map +0 -1
  531. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts +0 -4
  532. package/build/ts/surfaces/customer-account/components/Banner/Banner.doc.d.ts.map +0 -1
  533. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts +0 -4
  534. package/build/ts/surfaces/customer-account/components/Box/Box.doc.d.ts.map +0 -1
  535. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts +0 -4
  536. package/build/ts/surfaces/customer-account/components/Button/Button.doc.d.ts.map +0 -1
  537. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts +0 -4
  538. package/build/ts/surfaces/customer-account/components/ButtonGroup/ButtonGroup.doc.d.ts.map +0 -1
  539. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts +0 -4
  540. package/build/ts/surfaces/customer-account/components/Checkbox/Checkbox.doc.d.ts.map +0 -1
  541. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts +0 -4
  542. package/build/ts/surfaces/customer-account/components/Chip/Chip.doc.d.ts.map +0 -1
  543. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  544. package/build/ts/surfaces/customer-account/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  545. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts +0 -4
  546. package/build/ts/surfaces/customer-account/components/Clickable/Clickable.doc.d.ts.map +0 -1
  547. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts +0 -4
  548. package/build/ts/surfaces/customer-account/components/ClickableChip/ClickableChip.doc.d.ts.map +0 -1
  549. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts +0 -4
  550. package/build/ts/surfaces/customer-account/components/ClipboardItem/ClipboardItem.doc.d.ts.map +0 -1
  551. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts +0 -4
  552. package/build/ts/surfaces/customer-account/components/ConsentCheckbox/ConsentCheckbox.doc.d.ts.map +0 -1
  553. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts +0 -4
  554. package/build/ts/surfaces/customer-account/components/ConsentPhoneField/ConsentPhoneField.doc.d.ts.map +0 -1
  555. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts +0 -4
  556. package/build/ts/surfaces/customer-account/components/CustomerAccountAction/CustomerAccountAction.doc.d.ts.map +0 -1
  557. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts +0 -4
  558. package/build/ts/surfaces/customer-account/components/DateField/DateField.doc.d.ts.map +0 -1
  559. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts +0 -4
  560. package/build/ts/surfaces/customer-account/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  561. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts +0 -4
  562. package/build/ts/surfaces/customer-account/components/Details/Details.doc.d.ts.map +0 -1
  563. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts +0 -4
  564. package/build/ts/surfaces/customer-account/components/Divider/Divider.doc.d.ts.map +0 -1
  565. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts +0 -4
  566. package/build/ts/surfaces/customer-account/components/DropZone/DropZone.doc.d.ts.map +0 -1
  567. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts +0 -4
  568. package/build/ts/surfaces/customer-account/components/EmailField/EmailField.doc.d.ts.map +0 -1
  569. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts +0 -4
  570. package/build/ts/surfaces/customer-account/components/Form/Form.doc.d.ts.map +0 -1
  571. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts +0 -4
  572. package/build/ts/surfaces/customer-account/components/Grid/Grid.doc.d.ts.map +0 -1
  573. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts +0 -4
  574. package/build/ts/surfaces/customer-account/components/Heading/Heading.doc.d.ts.map +0 -1
  575. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts +0 -4
  576. package/build/ts/surfaces/customer-account/components/Icon/Icon.doc.d.ts.map +0 -1
  577. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts +0 -4
  578. package/build/ts/surfaces/customer-account/components/Image/Image.doc.d.ts.map +0 -1
  579. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts +0 -4
  580. package/build/ts/surfaces/customer-account/components/ImageGroup/ImageGroup.doc.d.ts.map +0 -1
  581. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts +0 -4
  582. package/build/ts/surfaces/customer-account/components/Link/Link.doc.d.ts.map +0 -1
  583. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts +0 -4
  584. package/build/ts/surfaces/customer-account/components/Map/Map.doc.d.ts.map +0 -1
  585. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts +0 -4
  586. package/build/ts/surfaces/customer-account/components/Menu/Menu.doc.d.ts.map +0 -1
  587. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts +0 -4
  588. package/build/ts/surfaces/customer-account/components/Modal/Modal.doc.d.ts.map +0 -1
  589. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts +0 -4
  590. package/build/ts/surfaces/customer-account/components/MoneyField/MoneyField.doc.d.ts.map +0 -1
  591. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts +0 -4
  592. package/build/ts/surfaces/customer-account/components/NumberField/NumberField.doc.d.ts.map +0 -1
  593. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts +0 -4
  594. package/build/ts/surfaces/customer-account/components/OrderedList/OrderedList.doc.d.ts.map +0 -1
  595. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts +0 -4
  596. package/build/ts/surfaces/customer-account/components/Page/Page.doc.d.ts.map +0 -1
  597. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts +0 -4
  598. package/build/ts/surfaces/customer-account/components/Paragraph/Paragraph.doc.d.ts.map +0 -1
  599. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts +0 -4
  600. package/build/ts/surfaces/customer-account/components/PasswordField/PasswordField.doc.d.ts.map +0 -1
  601. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts +0 -4
  602. package/build/ts/surfaces/customer-account/components/PaymentIcon/PaymentIcon.doc.d.ts.map +0 -1
  603. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts +0 -4
  604. package/build/ts/surfaces/customer-account/components/PhoneField/PhoneField.doc.d.ts.map +0 -1
  605. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts +0 -4
  606. package/build/ts/surfaces/customer-account/components/Popover/Popover.doc.d.ts.map +0 -1
  607. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts +0 -4
  608. package/build/ts/surfaces/customer-account/components/PressButton/PressButton.doc.d.ts.map +0 -1
  609. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts +0 -4
  610. package/build/ts/surfaces/customer-account/components/ProductThumbnail/ProductThumbnail.doc.d.ts.map +0 -1
  611. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts +0 -4
  612. package/build/ts/surfaces/customer-account/components/Progress/Progress.doc.d.ts.map +0 -1
  613. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts +0 -4
  614. package/build/ts/surfaces/customer-account/components/QRCode/QRCode.doc.d.ts.map +0 -1
  615. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts +0 -4
  616. package/build/ts/surfaces/customer-account/components/QueryContainer/QueryContainer.doc.d.ts.map +0 -1
  617. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  618. package/build/ts/surfaces/customer-account/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  619. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts +0 -4
  620. package/build/ts/surfaces/customer-account/components/Section/Section.doc.d.ts.map +0 -1
  621. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts +0 -4
  622. package/build/ts/surfaces/customer-account/components/Select/Select.doc.d.ts.map +0 -1
  623. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts +0 -4
  624. package/build/ts/surfaces/customer-account/components/Sheet/Sheet.doc.d.ts.map +0 -1
  625. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts +0 -4
  626. package/build/ts/surfaces/customer-account/components/SkeletonParagraph/SkeletonParagraph.doc.d.ts.map +0 -1
  627. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts +0 -4
  628. package/build/ts/surfaces/customer-account/components/Spinner/Spinner.doc.d.ts.map +0 -1
  629. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts +0 -4
  630. package/build/ts/surfaces/customer-account/components/Stack/Stack.doc.d.ts.map +0 -1
  631. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts +0 -4
  632. package/build/ts/surfaces/customer-account/components/Switch/Switch.doc.d.ts.map +0 -1
  633. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts +0 -4
  634. package/build/ts/surfaces/customer-account/components/Text/Text.doc.d.ts.map +0 -1
  635. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts +0 -4
  636. package/build/ts/surfaces/customer-account/components/TextArea/TextArea.doc.d.ts.map +0 -1
  637. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts +0 -4
  638. package/build/ts/surfaces/customer-account/components/TextField/TextField.doc.d.ts.map +0 -1
  639. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts +0 -4
  640. package/build/ts/surfaces/customer-account/components/Time/Time.doc.d.ts.map +0 -1
  641. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts +0 -4
  642. package/build/ts/surfaces/customer-account/components/Tooltip/Tooltip.doc.d.ts.map +0 -1
  643. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts +0 -4
  644. package/build/ts/surfaces/customer-account/components/URLField/URLField.doc.d.ts.map +0 -1
  645. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts +0 -4
  646. package/build/ts/surfaces/customer-account/components/UnorderedList/UnorderedList.doc.d.ts.map +0 -1
  647. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts +0 -4
  648. package/build/ts/surfaces/point-of-sale/components/Badge/Badge.doc.d.ts.map +0 -1
  649. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts +0 -4
  650. package/build/ts/surfaces/point-of-sale/components/Banner/Banner.doc.d.ts.map +0 -1
  651. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts +0 -4
  652. package/build/ts/surfaces/point-of-sale/components/Box/Box.doc.d.ts.map +0 -1
  653. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts +0 -4
  654. package/build/ts/surfaces/point-of-sale/components/Button/Button.doc.d.ts.map +0 -1
  655. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts +0 -4
  656. package/build/ts/surfaces/point-of-sale/components/ChoiceList/ChoiceList.doc.d.ts.map +0 -1
  657. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts +0 -4
  658. package/build/ts/surfaces/point-of-sale/components/Clickable/Clickable.doc.d.ts.map +0 -1
  659. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts +0 -4
  660. package/build/ts/surfaces/point-of-sale/components/DateField/DateField.doc.d.ts.map +0 -1
  661. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts +0 -4
  662. package/build/ts/surfaces/point-of-sale/components/DatePicker/DatePicker.doc.d.ts.map +0 -1
  663. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts +0 -4
  664. package/build/ts/surfaces/point-of-sale/components/DateSpinner/DateSpinner.doc.d.ts.map +0 -1
  665. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts +0 -4
  666. package/build/ts/surfaces/point-of-sale/components/Divider/Divider.doc.d.ts.map +0 -1
  667. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts +0 -4
  668. package/build/ts/surfaces/point-of-sale/components/EmailField/EmailField.doc.d.ts.map +0 -1
  669. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts +0 -4
  670. package/build/ts/surfaces/point-of-sale/components/Embed/Embed.doc.d.ts.map +0 -1
  671. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts +0 -4
  672. package/build/ts/surfaces/point-of-sale/components/EmptyState/EmptyState.doc.d.ts.map +0 -1
  673. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts +0 -4
  674. package/build/ts/surfaces/point-of-sale/components/Heading/Heading.doc.d.ts.map +0 -1
  675. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts +0 -4
  676. package/build/ts/surfaces/point-of-sale/components/Icon/Icon.doc.d.ts.map +0 -1
  677. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts +0 -4
  678. package/build/ts/surfaces/point-of-sale/components/Image/Image.doc.d.ts.map +0 -1
  679. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts +0 -4
  680. package/build/ts/surfaces/point-of-sale/components/Link/Link.doc.d.ts.map +0 -1
  681. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts +0 -4
  682. package/build/ts/surfaces/point-of-sale/components/Modal/Modal.doc.d.ts.map +0 -1
  683. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts +0 -4
  684. package/build/ts/surfaces/point-of-sale/components/NumberField/NumberField.doc.d.ts.map +0 -1
  685. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts +0 -4
  686. package/build/ts/surfaces/point-of-sale/components/Page/Page.doc.d.ts.map +0 -1
  687. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts +0 -4
  688. package/build/ts/surfaces/point-of-sale/components/PosBlock/PosBlock.doc.d.ts.map +0 -1
  689. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts +0 -4
  690. package/build/ts/surfaces/point-of-sale/components/ScrollBox/ScrollBox.doc.d.ts.map +0 -1
  691. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts +0 -4
  692. package/build/ts/surfaces/point-of-sale/components/SearchField/SearchField.doc.d.ts.map +0 -1
  693. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts +0 -4
  694. package/build/ts/surfaces/point-of-sale/components/Section/Section.doc.d.ts.map +0 -1
  695. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts +0 -4
  696. package/build/ts/surfaces/point-of-sale/components/Spinner/Spinner.doc.d.ts.map +0 -1
  697. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts +0 -4
  698. package/build/ts/surfaces/point-of-sale/components/Stack/Stack.doc.d.ts.map +0 -1
  699. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts +0 -4
  700. package/build/ts/surfaces/point-of-sale/components/Switch/Switch.doc.d.ts.map +0 -1
  701. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts +0 -4
  702. package/build/ts/surfaces/point-of-sale/components/Tabs/Tabs.doc.d.ts.map +0 -1
  703. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts +0 -4
  704. package/build/ts/surfaces/point-of-sale/components/Text/Text.doc.d.ts.map +0 -1
  705. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts +0 -4
  706. package/build/ts/surfaces/point-of-sale/components/TextArea/TextArea.doc.d.ts.map +0 -1
  707. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts +0 -4
  708. package/build/ts/surfaces/point-of-sale/components/TextField/TextField.doc.d.ts.map +0 -1
  709. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts +0 -4
  710. package/build/ts/surfaces/point-of-sale/components/Tile/Tile.doc.d.ts.map +0 -1
  711. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts +0 -4
  712. package/build/ts/surfaces/point-of-sale/components/TimeField/TimeField.doc.d.ts.map +0 -1
  713. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts +0 -4
  714. package/build/ts/surfaces/point-of-sale/components/TimePicker/TimePicker.doc.d.ts.map +0 -1
  715. package/src/docs/shared/component-definitions.ts +0 -190
  716. package/src/docs/shared/components/Abbreviation.ts +0 -12
  717. package/src/docs/shared/components/Announcement.ts +0 -12
  718. package/src/docs/shared/components/Avatar.ts +0 -13
  719. package/src/docs/shared/components/Badge.ts +0 -13
  720. package/src/docs/shared/components/Banner.ts +0 -13
  721. package/src/docs/shared/components/Box.ts +0 -13
  722. package/src/docs/shared/components/Button.ts +0 -13
  723. package/src/docs/shared/components/ButtonGroup.ts +0 -13
  724. package/src/docs/shared/components/Checkbox.ts +0 -13
  725. package/src/docs/shared/components/Chip.ts +0 -13
  726. package/src/docs/shared/components/Choice.ts +0 -13
  727. package/src/docs/shared/components/ChoiceList.ts +0 -13
  728. package/src/docs/shared/components/Clickable.ts +0 -13
  729. package/src/docs/shared/components/ClickableChip.ts +0 -13
  730. package/src/docs/shared/components/ClipboardItem.ts +0 -12
  731. package/src/docs/shared/components/ColorField.ts +0 -13
  732. package/src/docs/shared/components/ColorPicker.ts +0 -13
  733. package/src/docs/shared/components/ConsentCheckbox.ts +0 -12
  734. package/src/docs/shared/components/ConsentPhoneField.ts +0 -12
  735. package/src/docs/shared/components/DateField.ts +0 -13
  736. package/src/docs/shared/components/DatePicker.ts +0 -13
  737. package/src/docs/shared/components/Details.ts +0 -12
  738. package/src/docs/shared/components/Divider.ts +0 -13
  739. package/src/docs/shared/components/DropZone.ts +0 -12
  740. package/src/docs/shared/components/EmailField.ts +0 -13
  741. package/src/docs/shared/components/Form.ts +0 -13
  742. package/src/docs/shared/components/FunctionSettings.ts +0 -13
  743. package/src/docs/shared/components/Grid.ts +0 -13
  744. package/src/docs/shared/components/GridItem.ts +0 -13
  745. package/src/docs/shared/components/Heading.ts +0 -13
  746. package/src/docs/shared/components/Icon.ts +0 -13
  747. package/src/docs/shared/components/Image.ts +0 -13
  748. package/src/docs/shared/components/Link.ts +0 -13
  749. package/src/docs/shared/components/ListItem.ts +0 -13
  750. package/src/docs/shared/components/Map.ts +0 -12
  751. package/src/docs/shared/components/MapMarker.ts +0 -12
  752. package/src/docs/shared/components/Menu.ts +0 -13
  753. package/src/docs/shared/components/Modal.ts +0 -12
  754. package/src/docs/shared/components/MoneyField.ts +0 -13
  755. package/src/docs/shared/components/NumberField.ts +0 -13
  756. package/src/docs/shared/components/Option.ts +0 -12
  757. package/src/docs/shared/components/OptionGroup.ts +0 -12
  758. package/src/docs/shared/components/OrderedList.ts +0 -13
  759. package/src/docs/shared/components/Page.ts +0 -12
  760. package/src/docs/shared/components/Paragraph.ts +0 -13
  761. package/src/docs/shared/components/PasswordField.ts +0 -13
  762. package/src/docs/shared/components/PaymentIcon.ts +0 -12
  763. package/src/docs/shared/components/PhoneField.ts +0 -11
  764. package/src/docs/shared/components/Popover.ts +0 -12
  765. package/src/docs/shared/components/PressButton.ts +0 -12
  766. package/src/docs/shared/components/ProductThumbnail.ts +0 -11
  767. package/src/docs/shared/components/Progress.ts +0 -12
  768. package/src/docs/shared/components/QRCode.ts +0 -12
  769. package/src/docs/shared/components/QueryContainer.ts +0 -13
  770. package/src/docs/shared/components/ScrollBox.ts +0 -12
  771. package/src/docs/shared/components/SearchField.ts +0 -12
  772. package/src/docs/shared/components/Section.ts +0 -13
  773. package/src/docs/shared/components/Select.ts +0 -13
  774. package/src/docs/shared/components/Sheet.ts +0 -14
  775. package/src/docs/shared/components/SkeletonParagraph.ts +0 -12
  776. package/src/docs/shared/components/Spinner.ts +0 -13
  777. package/src/docs/shared/components/Stack.ts +0 -13
  778. package/src/docs/shared/components/Summary.ts +0 -12
  779. package/src/docs/shared/components/Switch.ts +0 -13
  780. package/src/docs/shared/components/Table.ts +0 -13
  781. package/src/docs/shared/components/TableBody.ts +0 -13
  782. package/src/docs/shared/components/TableCell.ts +0 -13
  783. package/src/docs/shared/components/TableHeader.ts +0 -13
  784. package/src/docs/shared/components/TableHeaderRow.ts +0 -13
  785. package/src/docs/shared/components/TableRow.ts +0 -13
  786. package/src/docs/shared/components/Text.ts +0 -13
  787. package/src/docs/shared/components/TextArea.ts +0 -13
  788. package/src/docs/shared/components/TextField.ts +0 -13
  789. package/src/docs/shared/components/Thumbnail.ts +0 -13
  790. package/src/docs/shared/components/Time.ts +0 -12
  791. package/src/docs/shared/components/Tooltip.ts +0 -13
  792. package/src/docs/shared/components/URLField.ts +0 -13
  793. package/src/docs/shared/components/UnorderedList.ts +0 -13
  794. package/src/docs/shared/components/index.ts +0 -52
  795. package/src/docs/shared/docs-type.ts +0 -7
  796. package/src/surfaces/admin/components/Icon/icon-data.json +0 -9
  797. package/src/surfaces/admin/components/patterns/index.ab.doc.ts +0 -80
  798. package/src/surfaces/admin/docs-types.ts +0 -45
  799. package/src/surfaces/checkout/helper.docs.ts +0 -166
package/package.json CHANGED
@@ -1,11 +1,9 @@
1
1
  {
2
2
  "name": "@shopify/ui-extensions",
3
- "version": "2026.4.1",
3
+ "version": "2026.4.3",
4
4
  "scripts": {
5
5
  "docs:admin": "node ./docs/surfaces/admin/build-docs.mjs",
6
6
  "docs:checkout": "bash ./docs/surfaces/checkout/build-docs.sh",
7
- "docs:checkout:fast": "bash ./docs/surfaces/checkout/build-docs-fast.sh",
8
- "docs:checkout:dev": "bash ./docs/surfaces/checkout/build-docs-watch.sh",
9
7
  "docs:point-of-sale": "node ./docs/surfaces/point-of-sale/build-docs.mjs",
10
8
  "docs:customer-account": "node ./docs/surfaces/customer-account/build-docs.mjs"
11
9
  },
@@ -129,7 +127,7 @@
129
127
  ],
130
128
  "devDependencies": {
131
129
  "@remote-ui/async-subscription": "^2.1.16",
132
- "@shopify/generate-docs": "https://registry.npmjs.org/@shopify/generate-docs/-/generate-docs-1.1.0.tgz",
130
+ "@shopify/generate-docs": "1.2.2",
133
131
  "@quilted/react-testing": "^0.6.11",
134
132
  "typescript": "^4.9.0",
135
133
  "@faker-js/faker": "^8.4.1",
@@ -34,6 +34,11 @@ export type DiscountClass = 'product' | 'order' | 'shipping';
34
34
  */
35
35
  export type DiscountMethod = 'automatic' | 'code';
36
36
 
37
+ /**
38
+ * The purchase type that determines which purchases the discount applies to. Use `'one_time_purchase'` for one-time purchases only, `'subscription'` for subscription purchases only, or `'both'` for both.
39
+ */
40
+ export type PurchaseType = 'one_time_purchase' | 'subscription' | 'both';
41
+
37
42
  /**
38
43
  * The `data` object exposed to discount function settings extensions in the `admin.discount-details.function-settings.render` target. Use this to access the current discount configuration and populate your settings interface with existing values.
39
44
  * @publicDocs
@@ -62,4 +67,20 @@ export interface DiscountsApi {
62
67
  * A signal that contains the discount method (`'automatic'` or `'code'`). Read this to determine whether the discount applies automatically at checkout or requires a customer-entered code.
63
68
  */
64
69
  discountMethod: ReadonlySignalLike<DiscountMethod>;
70
+ /**
71
+ * A signal that contains the purchase type. Read this to determine whether the discount applies to one-time purchases, subscriptions, or both.
72
+ */
73
+ purchaseType: ReadonlySignalLike<PurchaseType>;
74
+ /**
75
+ * A function that updates the purchase type to change which types of purchases the discount applies to. Call this with a `PurchaseType` value (`'one_time_purchase'`, `'subscription'`, or `'both'`).
76
+ */
77
+ updatePurchaseType: UpdateSignalFunction<PurchaseType>;
78
+ /**
79
+ * A signal that contains the recurring cycle limit for subscription purchases. A positive integer limits how many billing cycles the discount applies for. Both `0` and `null` mean unlimited (no limit). `null` is the default when no value has been explicitly set.
80
+ */
81
+ recurringCycleLimit: ReadonlySignalLike<number | null>;
82
+ /**
83
+ * A function that updates the recurring cycle limit for subscription purchases. Pass a positive integer to limit the number of billing cycles, `0` or `null` to remove the limit.
84
+ */
85
+ updateRecurringCycleLimit: UpdateSignalFunction<number | null>;
65
86
  }
@@ -37,7 +37,7 @@ type MergeGeneratedIntentResponse<BaseIntents, Variants> =
37
37
  callback: (value: GeneratedRequest | null) => void,
38
38
  ) => () => void;
39
39
  };
40
- } & (Variant extends {response: infer GeneratedResponse}
40
+ } & (Variant extends {response?: infer GeneratedResponse}
41
41
  ? BaseIntents extends {response: infer BaseResponse}
42
42
  ? {
43
43
  response: Omit<NonNullable<BaseResponse>, 'ok'> &
@@ -88,7 +88,7 @@ export interface AddressAutocompleteStandardApi<
88
88
  /**
89
89
  * The details about the location, language, and currency of the customer. For utilities to easily
90
90
  * format and translate content based on these details, you can use the
91
- * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/apis/localization#standardapi-propertydetail-i18n)
91
+ * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/apis/localization#properties-propertydetail-i18n)
92
92
  * object instead.
93
93
  */
94
94
  localization: Localization;
@@ -56,8 +56,8 @@ interface Target {
56
56
  export interface AddressAutocompleteSuggestOutput {
57
57
  /**
58
58
  * An array of address autocomplete suggestions to show to the buyer.
59
- *
60
- * > Note: Only the first five suggestions will be displayed to the buyer.
59
+ * Checkout displays up to five address suggestions. Return no more
60
+ * than five. Additional suggestions are ignored.
61
61
  */
62
62
  suggestions: AddressAutocompleteSuggestion[];
63
63
  }
@@ -7,6 +7,10 @@ export interface CartLineItemApi {
7
7
  * The cart line that this extension is attached to. Use this to read the
8
8
  * line item's merchandise, quantity, cost, and attributes.
9
9
  *
10
+ * Available only on the corresponding item target. Shipping option item
11
+ * targets expose shipping option properties; pickup location item targets
12
+ * expose pickup location properties.
13
+ *
10
14
  * > Note: Until version `2023-04`, this property was a `ReadonlySignalLike<PresentmentCartLine>`.
11
15
  */
12
16
  target: SubscribableSignalLike<CartLine>;
@@ -61,6 +61,9 @@ export interface NoteChangeResultError {
61
61
  /**
62
62
  * A message that explains the error. This message is useful for debugging.
63
63
  * It isn't localized and shouldn't be displayed to the buyer.
64
+ *
65
+ * Render your own localized error text rather than displaying this message
66
+ * to the buyer.
64
67
  */
65
68
  message: string;
66
69
  }
@@ -176,6 +179,9 @@ export interface CartLineChangeResultError {
176
179
  /**
177
180
  * A message that explains the error. This message is useful for debugging.
178
181
  * It isn't localized and shouldn't be displayed to the buyer.
182
+ *
183
+ * Render your own localized error text rather than displaying this message
184
+ * to the buyer.
179
185
  */
180
186
  message: string;
181
187
  }
@@ -450,6 +456,9 @@ export interface GiftCardChangeResultError {
450
456
  /**
451
457
  * A message that explains the error. This message is useful for debugging.
452
458
  * It isn't localized and shouldn't be displayed to the buyer.
459
+ *
460
+ * Render your own localized error text rather than displaying this message
461
+ * to the buyer.
453
462
  */
454
463
  message: string;
455
464
  }
@@ -541,6 +550,9 @@ export interface MetafieldChangeResultError {
541
550
  /**
542
551
  * A message that explains the error. This message is useful for debugging.
543
552
  * It isn't localized and shouldn't be displayed to the buyer.
553
+ *
554
+ * Render your own localized error text rather than displaying this message
555
+ * to the buyer.
544
556
  */
545
557
  message: string;
546
558
  }
@@ -642,35 +654,41 @@ export type ShippingAddressChangeResult =
642
654
  export interface CheckoutApi {
643
655
  /**
644
656
  * Updates or removes an attribute on the cart and checkout. On success, the
645
- * [`attributes`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/attributes#standardapi-propertydetail-attributes) property updates to reflect the change.
657
+ * [`attributes`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/attributes#properties-propertydetail-attributes) property updates to reflect the change.
646
658
  *
647
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `attributes.canUpdateAttributes` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
659
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `attributes.canUpdateAttributes` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
648
660
  *
649
661
  * @deprecated Use cart metafields instead.
650
662
  */
651
663
  applyAttributeChange(change: AttributeChange): Promise<AttributeChangeResult>;
652
664
 
653
665
  /**
654
- * Adds, removes, or updates line items in the cart. The returned promise resolves when the change has been applied by the server, and the [`lines`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-lines#standardapi-propertydetail-lines) property updates with the new state.
666
+ * Adds, removes, or updates line items in the cart. The returned promise resolves when the change has been applied by the server, and the [`lines`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-lines#properties-propertydetail-lines) property updates with the new state.
667
+ *
668
+ * Accepts a single change per call. To make multiple changes, call this
669
+ * method separately for each one.
655
670
  *
656
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `lines.canAddCartLine` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
671
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `lines.canAddCartLine` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
657
672
  */
658
673
  applyCartLinesChange(change: CartLineChange): Promise<CartLineChangeResult>;
659
674
 
660
675
  /**
661
- * Adds or removes a discount code on the checkout. The returned promise resolves when the change has been applied by the server, and the [`discountCodes`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/discounts#standardapi-propertydetail-discountcodes) property updates with the new state.
676
+ * Adds or removes a discount code on the checkout. The returned promise resolves when the change has been applied by the server, and the [`discountCodes`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/discounts#properties-propertydetail-discountcodes) property updates with the new state.
662
677
  *
663
678
  * > Caution:
664
679
  * > See [security considerations](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#network-access) if your extension retrieves discount codes through a network call.
665
680
  *
666
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `discounts.canUpdateDiscountCodes` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
681
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `discounts.canUpdateDiscountCodes` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
667
682
  */
668
683
  applyDiscountCodeChange(
669
684
  change: DiscountCodeChange,
670
685
  ): Promise<DiscountCodeChangeResult>;
671
686
 
672
687
  /**
673
- * Adds or removes a gift card from the checkout. The returned promise resolves when the change has been applied by the server, and the [`appliedGiftCards`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/gift-cards#standardapi-propertydetail-appliedgiftcards) property updates with the new state.
688
+ * Adds or removes a gift card from the checkout. The returned promise resolves when the change has been applied by the server, and the [`appliedGiftCards`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/gift-cards#properties-propertydetail-appliedgiftcards) property updates with the new state.
689
+ *
690
+ * Unlike other write operations, gift card changes aren't gated by a cart
691
+ * instruction flag.
674
692
  *
675
693
  * > Caution:
676
694
  * > See [security considerations](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#network-access) if your extension retrieves gift card codes through a network call.
@@ -681,20 +699,20 @@ export interface CheckoutApi {
681
699
 
682
700
  /**
683
701
  * Creates, updates, or removes a cart metafield on the checkout. On success, the
684
- * [`metafields`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/metafields#standardapi-propertydetail-metafields) property updates to reflect the change.
702
+ * [`metafields`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/metafields#properties-propertydetail-metafields) property updates to reflect the change.
685
703
  *
686
704
  * Cart metafields are copied to order metafields at order creation time if there's a matching order metafield definition with the [`cart to order copyable`](https://shopify.dev/docs/apps/build/metafields/use-metafield-capabilities#cart-to-order-copyable) capability enabled.
687
705
  *
688
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `metafields.canSetCartMetafields` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
706
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `metafields.canSetCartMetafields` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
689
707
  */
690
708
  applyMetafieldChange(change: MetafieldChange): Promise<MetafieldChangeResult>;
691
709
 
692
710
  /**
693
711
  * Sets or removes the buyer's note on the checkout. On success, the
694
- * [`note`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/note#standardapi-propertydetail-note)
712
+ * [`note`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/note#properties-propertydetail-note)
695
713
  * property updates to reflect the change.
696
714
  *
697
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `notes.canUpdateNote` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
715
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `notes.canUpdateNote` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
698
716
  */
699
717
  applyNoteChange(change: NoteChange): Promise<NoteChangeResult>;
700
718
 
@@ -708,7 +726,7 @@ export interface CheckoutApi {
708
726
  * are merged into the existing address without prompting the buyer. On success,
709
727
  * the `shippingAddress` property updates to reflect the change.
710
728
  *
711
- * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#standardapi-propertydetail-instructions) `delivery.canSelectCustomAddress` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
729
+ * > Note: This method returns an error if the [cart instruction](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#properties-propertydetail-instructions) `delivery.canSelectCustomAddress` is false, or the buyer is using an accelerated checkout method, such as Apple Pay or Google Pay.
712
730
  *
713
731
  * {% include /apps/checkout/privacy-icon.md %} Requires access to [protected customer data](https://shopify.dev/docs/apps/store/data-protection/protected-customer-data).
714
732
  */
@@ -16,6 +16,8 @@ export interface OrderConfirmation {
16
16
  * A randomly generated alpha-numeric identifier for the order, distinct
17
17
  * from `order.id`. The value is `undefined` for orders that were created
18
18
  * before this field was introduced. All recent orders have a number.
19
+ *
20
+ * Optional. Might not be present for orders created before 2024.
19
21
  */
20
22
  number?: string;
21
23
 
@@ -5,11 +5,19 @@ import type {PickupLocationOption} from '../standard/standard';
5
5
  export interface PickupLocationItemApi {
6
6
  /**
7
7
  * The pickup location that this extension is attached to. Use this to read the location's name, address, and other details.
8
+ *
9
+ * Available only on the corresponding item target. Shipping option item
10
+ * targets expose shipping option properties; pickup location item targets
11
+ * expose pickup location properties.
8
12
  */
9
13
  target: SubscribableSignalLike<PickupLocationOption>;
10
14
 
11
15
  /**
12
16
  * Whether the buyer has selected the target pickup location. When `true`, the target location is the buyer's active choice. When `false`, the buyer has chosen a different pickup location.
17
+ *
18
+ * Available only on the corresponding item target. Shipping option item
19
+ * targets expose shipping option properties; pickup location item targets
20
+ * expose pickup location properties.
13
21
  */
14
22
  isTargetSelected: SubscribableSignalLike<boolean>;
15
23
  }
@@ -3,9 +3,9 @@ import type {SubscribableSignalLike} from '../../shared';
3
3
  /** @publicDocs */
4
4
  export interface PickupPointListApi {
5
5
  /**
6
- * Whether the location search form is currently visible to the buyer.
7
- * Use this to conditionally render UI that depends on the buyer actively
8
- * searching for pickup points.
6
+ * Reflects which view was active when the extension loaded. When the
7
+ * buyer moves to the next view, the extension restarts with the
8
+ * current value rather than updating in place.
9
9
  */
10
10
  isLocationFormVisible: SubscribableSignalLike<boolean>;
11
11
  }
@@ -59,6 +59,9 @@ export interface Attribute {
59
59
  * The value associated with the attribute key. This is a freeform string
60
60
  * that can store any information the buyer or app provides.
61
61
  *
62
+ * Attribute values are always strings. To store structured data, serialize
63
+ * it to JSON and parse it when reading.
64
+ *
62
65
  * @example 'Please use red wrapping paper'
63
66
  */
64
67
  value: string;
@@ -5,11 +5,19 @@ import type {ShippingOption} from '../standard/standard';
5
5
  export interface ShippingOptionItemApi {
6
6
  /**
7
7
  * The shipping option that this extension is attached to. Use this to read the option's cost, carrier, delivery estimate, and other details.
8
+ *
9
+ * Available only on the corresponding item target. Shipping option item
10
+ * targets expose shipping option properties; pickup location item targets
11
+ * expose pickup location properties.
8
12
  */
9
13
  target: SubscribableSignalLike<ShippingOption>;
10
14
 
11
15
  /**
12
16
  * Whether the buyer has selected the target shipping option. When `true`, the target option is the buyer's active choice. When `false`, the buyer has chosen a different shipping option.
17
+ *
18
+ * Available only on the corresponding item target. Shipping option item
19
+ * targets expose shipping option properties; pickup location item targets
20
+ * expose pickup location properties.
13
21
  */
14
22
  isTargetSelected: SubscribableSignalLike<boolean>;
15
23
 
@@ -35,7 +35,8 @@ export interface Storage {
35
35
  * The stored data is deserialized from JSON and returned as
36
36
  * its original type.
37
37
  *
38
- * Returns `null` if no stored data exists.
38
+ * Returns the stored value for the given key, or `null` when no value
39
+ * exists. Doesn't throw on a missing key.
39
40
  */
40
41
  read<T = unknown>(key: string): Promise<T | null>;
41
42
 
@@ -66,20 +67,8 @@ export interface Extension<Target extends ExtensionTarget = ExtensionTarget> {
66
67
  apiVersion: ApiVersion;
67
68
 
68
69
  /**
69
- * The allowed capabilities of the extension, defined
70
- * in your [shopify.extension.toml](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration) file.
71
- *
72
- * * [`api_access`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#api-access): the extension can access the Storefront API.
73
- *
74
- * * [`network_access`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#network-access): the extension can make external network calls.
75
- *
76
- * * [`block_progress`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#block-progress): the extension can block a customer's progress and the merchant has allowed this blocking behavior.
77
- *
78
- * * [`collect_buyer_consent.sms_marketing`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent): the extension can collect customer consent for SMS marketing.
79
- *
80
- * * [`collect_buyer_consent.customer_privacy`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent): the extension can register customer consent decisions that are honored on Shopify-managed services.
81
- *
82
- * * [`iframe.sources`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#iframe): the extension can embed an external URL in an iframe.
70
+ * The allowed capabilities of the extension, defined in your
71
+ * [`shopify.extension.toml`](/docs/api/checkout-ui-extensions/{API_VERSION}/configuration) file.
83
72
  */
84
73
  capabilities: SubscribableSignalLike<Capability[]>;
85
74
 
@@ -124,6 +113,9 @@ export interface Extension<Target extends ExtensionTarget = ExtensionTarget> {
124
113
  *
125
114
  * For unpublished extensions, the value is `undefined`.
126
115
  *
116
+ * Don't use this property as a stable identifier in development environments.
117
+ * It becomes available only after the extension is published.
118
+ *
127
119
  * @example 3.0.10
128
120
  */
129
121
  version?: string;
@@ -435,15 +427,21 @@ export interface Localization {
435
427
 
436
428
  /**
437
429
  * The country context of the checkout, carried over from the cart. It updates when the buyer changes their shipping address country. Use this value to display region-specific content such as local support information or regional policies. The value is `undefined` if the buyer's country is unknown.
430
+ *
431
+ * Derived from the buyer's shipping address. Returns `undefined` until the
432
+ * buyer enters a shipping address.
438
433
  */
439
434
  country: SubscribableSignalLike<Country | undefined>;
440
435
 
441
436
  /**
442
- * The [market](https://shopify.dev/docs/apps/build/markets) context of the checkout, carried over from the cart context. Markets group countries and regions with shared pricing, languages, and domains. It updates when the buyer changes the country of their shipping address. The value is `undefined` if the market is unknown.
443
- *
444
- * > Caution: Deprecated as of version `2025-04`. Merchants now manage which extensions load for each market, so extensions no longer need to check this value.
437
+ * The [market](/docs/apps/build/markets) context of the checkout,
438
+ * carried over from the cart context. Markets group countries and
439
+ * regions with shared pricing, languages, and domains. The market
440
+ * context updates when the buyer changes the country of their
441
+ * shipping address. The value is `undefined` if the market is unknown.
445
442
  *
446
- * @deprecated Deprecated as of version `2025-04`
443
+ * @deprecated Merchants now manage which extensions load for each
444
+ * market, so extensions no longer need to check this value.
447
445
  */
448
446
  market: SubscribableSignalLike<Market | undefined>;
449
447
  }
@@ -587,8 +585,10 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
587
585
  * For example, if you intend to add a discount code via the `applyDiscountCodeChange` method,
588
586
  * check `discounts.canUpdateDiscountCodes` to ensure it's supported in this checkout.
589
587
  *
590
- * > Caution: As of version `2024-07`, UI extension code must check for instructions before calling select APIs in case those APIs aren't available.
591
- * See the [update guide](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#examples) for more information.
588
+ * > Caution: Check cart instructions before calling select APIs, as
589
+ * > some may not be available. See the
590
+ * > [Cart Instructions API](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/cart-instructions#examples)
591
+ * > for more information.
592
592
  *
593
593
  */
594
594
  instructions: SubscribableSignalLike<CartInstructions>;
@@ -611,7 +611,14 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
611
611
  attributes: SubscribableSignalLike<Attribute[]>;
612
612
 
613
613
  /**
614
- * All payment options available to the buyer for this checkout, such as credit cards, wallets, and local payment methods. The list depends on the shop's payment configuration and the buyer's region.
614
+ * All payment options available to the buyer for this checkout, such as
615
+ * credit cards, wallets, and local payment methods. The list depends on
616
+ * the shop's payment configuration and the buyer's region.
617
+ *
618
+ * The set of payment options can change when the buyer updates their
619
+ * address or cart, so subscribe to changes rather than reading once
620
+ * during initialization. Each option exposes `handle` and `type` only.
621
+ * Provider names, logos, fees, and installment terms aren't available.
615
622
  */
616
623
  availablePaymentOptions: SubscribableSignalLike<PaymentOption[]>;
617
624
 
@@ -644,6 +651,8 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
644
651
  *
645
652
  * This matches the `data.checkout.token` field in a [checkout-related WebPixel event](https://shopify.dev/docs/api/web-pixels-api/standard-events/checkout_started#properties-propertydetail-data)
646
653
  * and the `checkout_token` field in the [REST Admin API `Order` resource](https://shopify.dev/docs/api/admin-rest/unstable/resources/order#resource-object).
654
+ *
655
+ * Can be `undefined`. Handle the `undefined` state before using the value.
647
656
  */
648
657
  checkoutToken: SubscribableSignalLike<CheckoutToken | undefined>;
649
658
 
@@ -654,6 +663,9 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
654
663
 
655
664
  /**
656
665
  * The delivery groups for this checkout. Each group contains one or more cart lines and the available delivery options (shipping, pickup point, or pickup location) for those items.
666
+ *
667
+ * Empty until the buyer enters enough address information for Shopify to
668
+ * calculate shipping rates.
657
669
  */
658
670
  deliveryGroups: SubscribableSignalLike<DeliveryGroup[]>;
659
671
 
@@ -683,7 +695,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
683
695
  * @see https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/extension-targets-overview
684
696
  * @see https://shopify.dev/docs/apps/app-extensions/configuration#targets
685
697
  *
686
- * @deprecated Deprecated as of version `2023-07`, use `extension.target` instead.
698
+ * @deprecated Use `extension.target` instead.
687
699
  */
688
700
  extensionPoint: Target;
689
701
 
@@ -703,7 +715,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
703
715
  /**
704
716
  * The buyer's language, country, currency, and timezone context. For
705
717
  * formatting and translation helpers, use the
706
- * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/localization#standardapi-propertydetail-i18n)
718
+ * [`i18n`](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/localization#properties-propertydetail-i18n)
707
719
  * object instead.
708
720
  */
709
721
  localization: Localization;
@@ -718,7 +730,6 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
718
730
  /**
719
731
  * The method used to query the Storefront GraphQL API with a prefetched token.
720
732
  *
721
- * Refer to [Storefront API access examples](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/apis/storefront-api) for more information.
722
733
  */
723
734
  query: <Data = unknown, Variables = Record<string, unknown>>(
724
735
  query: string,
@@ -726,7 +737,13 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
726
737
  ) => Promise<{data?: Data; errors?: GraphQLError[]}>;
727
738
 
728
739
  /**
729
- * The payment options the buyer has currently selected. This updates as the buyer changes their payment method. The array can contain multiple entries when the buyer splits payment across methods (for example, a gift card and a credit card).
740
+ * The payment options the buyer has currently selected. This updates as
741
+ * the buyer changes their payment method. The array can contain multiple
742
+ * entries when the buyer splits payment across methods (for example, a
743
+ * gift card and a credit card).
744
+ *
745
+ * Each option exposes `handle` and `type` only. Provider names, logos,
746
+ * fees, and installment terms aren't available.
730
747
  */
731
748
  selectedPaymentOptions: SubscribableSignalLike<SelectedPaymentOption[]>;
732
749
 
@@ -780,8 +797,8 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
780
797
 
781
798
  /**
782
799
  * Key-value storage that persists across page loads within the current checkout
783
- * session. Data is shared across all activated extension targets of this
784
- * extension.
800
+ * session. Data is shared across all activated targets associated with
801
+ * this extension.
785
802
  *
786
803
  * > Caution: Data persistence isn't guaranteed and storage is cleared when the
787
804
  * buyer starts a new checkout.
@@ -803,7 +820,7 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
803
820
  /**
804
821
  * Enables setting and updating customer privacy consent settings and tracking consent metafields.
805
822
  *
806
- * > Note: Requires the [`customer_privacy` capability](https://shopify.dev/docs/api/checkout-ui-extensions/{API_VERSION}/configuration#collect-buyer-consent) to be set to `true`.
823
+ * > Note: Requires the [`collect_buyer_consent` capability](/docs/apps/build/customer-accounts/capabilities#collect-buyer-consent) to be set to `true`.
807
824
  *
808
825
  * {% include /apps/checkout/privacy-icon.md %} Requires access to [protected customer data](https://shopify.dev/docs/apps/store/data-protection/protected-customer-data).
809
826
  */
@@ -820,6 +837,10 @@ export interface StandardApi<Target extends ExtensionTarget = ExtensionTarget> {
820
837
  * Use session tokens to verify the identity of the buyer and the shop
821
838
  * context when making server-side API calls. The token is a signed JWT
822
839
  * that contains claims such as the customer ID, shop domain, and expiration.
840
+ *
841
+ * The `sub` claim in the decoded token is present only when the buyer is
842
+ * logged in and the app has permission to read customer accounts. Absent for
843
+ * anonymous buyers.
823
844
  */
824
845
  export interface SessionToken {
825
846
  /**
@@ -987,11 +1008,17 @@ export interface CartCost {
987
1008
 
988
1009
  /**
989
1010
  * The total shipping cost after shipping discounts have been applied. The value is `undefined` if shipping hasn't been calculated yet, such as when the buyer is still on the information step.
1011
+ *
1012
+ * `undefined` until the buyer selects a shipping method (typically after the
1013
+ * information step).
990
1014
  */
991
1015
  totalShippingAmount: SubscribableSignalLike<Money | undefined>;
992
1016
 
993
1017
  /**
994
1018
  * The total tax the buyer can expect to pay, or the total tax already included in product and shipping prices (for tax-inclusive regions). The value is `undefined` if taxes haven't been calculated yet.
1019
+ *
1020
+ * `undefined` when taxes haven't been calculated or aren't available for the
1021
+ * buyer's region.
995
1022
  */
996
1023
  totalTaxAmount: SubscribableSignalLike<Money | undefined>;
997
1024
 
@@ -1396,6 +1423,11 @@ interface InterceptorRequestAllow {
1396
1423
  * This callback is called when all interceptors finish. We recommend
1397
1424
  * setting errors or reasons for blocking at this stage, so that all the errors in
1398
1425
  * the UI show up at once.
1426
+ *
1427
+ * Runs after all intercept results are collected. Use it for local state
1428
+ * updates such as setting an error flag. By the time it runs, the navigation
1429
+ * decision is final, so blocking logic belongs in the intercept handler
1430
+ * itself, not here.
1399
1431
  * @param result InterceptorResult with behavior as either 'allow' or 'block'
1400
1432
  */
1401
1433
  perform?(result: InterceptorResult): void | Promise<void>;
@@ -1423,6 +1455,11 @@ interface InterceptorRequestBlock {
1423
1455
  * This callback is called when all interceptors finish. We recommend
1424
1456
  * setting errors or reasons for blocking at this stage, so that all the errors in
1425
1457
  * the UI show up at once.
1458
+ *
1459
+ * Runs after all intercept results are collected. Use it for local state
1460
+ * updates such as setting an error flag. By the time it runs, the navigation
1461
+ * decision is final, so blocking logic belongs in the intercept handler
1462
+ * itself, not here.
1426
1463
  * @param result InterceptorResult with behavior as either 'allow' or 'block'
1427
1464
  */
1428
1465
  perform?(result: InterceptorResult): void | Promise<void>;
@@ -1630,6 +1667,10 @@ export interface Analytics {
1630
1667
  /**
1631
1668
  * Publishes a custom event to [Web Pixels](https://shopify.dev/docs/apps/marketing).
1632
1669
  * Returns `true` when the event is successfully dispatched.
1670
+ *
1671
+ * The Promise resolves to `true` when the event was dispatched. The boolean
1672
+ * indicates dispatch confirmation only. It doesn't indicate whether any
1673
+ * specific web pixel processed the event.
1633
1674
  */
1634
1675
  publish(name: string, data: Record<string, unknown>): Promise<boolean>;
1635
1676
 
@@ -1959,24 +2000,45 @@ export interface AllowedProcessing {
1959
2000
  * Whether analytics data can be collected based on the visitor's consent,
1960
2001
  * the merchant's privacy configuration, and the visitor's region. Analytics
1961
2002
  * data includes how the shop was used and what interactions occurred.
2003
+ *
2004
+ * Whether analytics data can be collected right now. Combines the buyer's
2005
+ * consent, the merchant's privacy configuration, and the buyer's region into
2006
+ * a single boolean. Check this flag, not `visitorConsent.analytics`, before
2007
+ * calling `shopify.analytics.publish()`.
1962
2008
  */
1963
2009
  analytics: boolean;
1964
2010
  /**
1965
2011
  * Whether marketing data can be collected based on the visitor's consent,
1966
2012
  * the merchant's privacy configuration, and the visitor's region. Marketing
1967
2013
  * data includes attribution and targeted advertising preferences.
2014
+ *
2015
+ * Whether marketing data can be collected right now. Combines the buyer's
2016
+ * consent, the merchant's privacy configuration, and the buyer's region into
2017
+ * a single boolean. Check this flag, not `visitorConsent.marketing`, before
2018
+ * performing marketing-related data collection.
1968
2019
  */
1969
2020
  marketing: boolean;
1970
2021
  /**
1971
2022
  * Whether preference data can be collected based on the visitor's consent,
1972
2023
  * the merchant's privacy configuration, and the visitor's region. Preference
1973
2024
  * data includes language, currency, and sizing choices.
2025
+ *
2026
+ * Whether preference data can be collected right now. Combines the buyer's
2027
+ * consent, the merchant's privacy configuration, and the buyer's region into
2028
+ * a single boolean. Check this flag, not `visitorConsent.preferences`,
2029
+ * before storing or reading buyer preference data.
1974
2030
  */
1975
2031
  preferences: boolean;
1976
2032
  /**
1977
2033
  * Whether data can be shared with third parties based on the visitor's
1978
2034
  * consent, the merchant's privacy configuration, and the visitor's region.
1979
2035
  * This typically applies to behavioral advertising data.
2036
+ *
2037
+ * Whether buyer data can be shared with or sold to third parties right now.
2038
+ * Combines the buyer's consent, the merchant's privacy configuration, and
2039
+ * the buyer's region into a single boolean. Check this flag, not
2040
+ * `visitorConsent.saleOfData`, before sharing or selling buyer data with
2041
+ * third parties.
1980
2042
  */
1981
2043
  saleOfData: boolean;
1982
2044
  }
@@ -2029,6 +2091,9 @@ export interface TrackingConsentMetafieldChange {
2029
2091
  key: string;
2030
2092
  /**
2031
2093
  * The new value to store in the metafield. Set to `null` to delete the metafield.
2094
+ *
2095
+ * Consent metafield values are strings, not booleans. Pass `null` to delete
2096
+ * a tracking consent metafield.
2032
2097
  */
2033
2098
  value: string | null;
2034
2099
  }
@@ -70,7 +70,7 @@ export interface AnnouncementElementEvents {
70
70
  * - If the element transitioned from showing to hidden, the `oldState` property will be set to `open` and the
71
71
  * `newState` will be `closed`.
72
72
  *
73
- * Learn more about [ToggleEvent.newState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState) and [ToggleEvent.oldState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
73
+ * Learn more about [`newState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState) and [`oldState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
74
74
  */
75
75
  aftertoggle?: CallbackEventListener<typeof tagName, ToggleArgumentsEvent>;
76
76
  /**
@@ -82,10 +82,10 @@ export interface AnnouncementElementEvents {
82
82
  *
83
83
  * - If the element is transitioning from hidden to showing, the `oldState` property will be set to `closed` and the
84
84
  * `newState` property will be set to `open`.
85
- * - If the element is transitioning from showing to hidden, then `oldState` property will be set to `open` and the
85
+ * - If the element is transitioning from showing to hidden, then the `oldState` property will be set to `open` and the
86
86
  * `newState` will be `closed`.
87
87
  *
88
- * Learn more about the [toggle event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event), [ToggleEvent.newState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState), and [ToggleEvent.oldState](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
88
+ * Learn more about the [`toggle` event](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/toggle_event), [`newState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/newState), and [`oldState` property](https://developer.mozilla.org/en-US/docs/Web/API/ToggleEvent/oldState).
89
89
  */
90
90
  toggle?: CallbackEventListener<typeof tagName, ToggleArgumentsEvent>;
91
91
  }
@@ -42,6 +42,16 @@ declare const tagName = "s-button";
42
42
  export interface ButtonElementProps extends Pick<ButtonProps$1, 'accessibilityLabel' | 'command' | 'commandFor' | 'disabled' | 'href' | 'id' | 'inlineSize' | 'interestFor' | 'loading' | 'target' | 'tone' | 'type' | 'variant'> {
43
43
  target?: Extract<ButtonProps$1['target'], 'auto' | '_blank'>;
44
44
  tone?: Extract<ButtonProps$1['tone'], 'auto' | 'neutral' | 'critical'>;
45
+ /**
46
+ * The behavioral type of the button component, which determines what action it performs when activated.
47
+ *
48
+ * - `submit`: Submits the nearest containing form.
49
+ * - `button`: Performs no default action, relying on the `click` event handler for behavior.
50
+ *
51
+ * This property is ignored if `href` or `commandFor`/`command` is set.
52
+ *
53
+ * @default 'button'
54
+ */
45
55
  type?: Extract<ButtonProps$1['type'], 'submit' | 'button'>;
46
56
  variant?: Extract<ButtonProps$1['variant'], 'auto' | 'primary' | 'secondary'>;
47
57
  }