@bigcommerce/checkout-sdk 1.271.2 → 1.272.1

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 (351) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/dist/checkout-button.d.ts +671 -651
  3. package/dist/checkout-button.js +1 -1
  4. package/dist/checkout-button.umd.js +1 -1
  5. package/dist/checkout-sdk.d.ts +7275 -763
  6. package/dist/checkout-sdk.js +1 -1
  7. package/dist/checkout-sdk.js.map +1 -1
  8. package/dist/checkout-sdk.umd.js +1 -1
  9. package/dist/checkout-sdk.umd.js.map +1 -1
  10. package/dist/embedded-checkout.d.ts +242 -218
  11. package/dist/internal-mappers.d.ts +762 -763
  12. package/dist/tsdoc-metadata.json +11 -11
  13. package/docs/README.md +756 -126
  14. package/docs/classes/CartChangedError.md +76 -0
  15. package/docs/classes/CheckoutButtonErrorSelector.md +52 -0
  16. package/docs/classes/CheckoutButtonInitializer.md +177 -0
  17. package/docs/classes/CheckoutButtonStatusSelector.md +52 -0
  18. package/docs/classes/CheckoutService.md +1645 -0
  19. package/docs/classes/CurrencyService.md +54 -0
  20. package/docs/classes/EmbeddedCheckout.md +40 -0
  21. package/docs/classes/LanguageService.md +101 -0
  22. package/docs/classes/RequestError.md +106 -0
  23. package/docs/classes/StandardError.md +71 -0
  24. package/docs/enums/AmazonPayV2CheckoutLanguage.md +57 -0
  25. package/docs/enums/AmazonPayV2LedgerCurrency.md +36 -0
  26. package/docs/enums/AmazonPayV2PayOptions.md +26 -0
  27. package/docs/enums/AmazonPayV2Placement.md +53 -0
  28. package/docs/enums/BraintreeFormFieldType.md +50 -0
  29. package/docs/enums/ButtonColor.md +29 -0
  30. package/docs/enums/ButtonType.md +22 -0
  31. package/docs/enums/CheckoutButtonMethodType.md +141 -0
  32. package/docs/enums/CheckoutIncludes.md +29 -0
  33. package/docs/enums/EmbeddedCheckoutEventType.md +50 -0
  34. package/docs/enums/HostedFieldType.md +50 -0
  35. package/docs/enums/HostedInputEventType.md +85 -0
  36. package/docs/enums/IconStyle.md +22 -0
  37. package/docs/enums/PaypalButtonStyleColorOption.md +36 -0
  38. package/docs/enums/PaypalButtonStyleLabelOption.md +43 -0
  39. package/docs/enums/PaypalButtonStyleLayoutOption.md +22 -0
  40. package/docs/enums/PaypalButtonStyleShapeOption.md +22 -0
  41. package/docs/enums/PaypalButtonStyleSizeOption.md +36 -0
  42. package/docs/enums/PaypalCommerceFormFieldType.md +50 -0
  43. package/docs/enums/RadiusUnit.md +22 -0
  44. package/docs/enums/StyleButtonColor.md +43 -0
  45. package/docs/enums/StyleButtonLabel.md +43 -0
  46. package/docs/enums/StyleButtonLayout.md +22 -0
  47. package/docs/enums/StyleButtonShape.md +22 -0
  48. package/docs/interfaces/Address.md +164 -0
  49. package/docs/interfaces/AddressRequestBody.md +100 -0
  50. package/docs/interfaces/AdyenAdditionalActionCallbacks.md +68 -0
  51. package/docs/interfaces/AdyenAdditionalActionCallbacks_2.md +66 -0
  52. package/docs/interfaces/AdyenAdditionalActionOptions.md +106 -0
  53. package/docs/interfaces/AdyenAdditionalActionOptions_2.md +106 -0
  54. package/docs/interfaces/AdyenBaseCardComponentOptions.md +33 -0
  55. package/docs/interfaces/AdyenBaseCardComponentOptions_2.md +33 -0
  56. package/docs/interfaces/AdyenComponent.md +72 -0
  57. package/docs/interfaces/AdyenComponentEvents.md +74 -0
  58. package/docs/interfaces/AdyenComponentEvents_2.md +74 -0
  59. package/docs/interfaces/AdyenComponent_2.md +72 -0
  60. package/docs/interfaces/AdyenCreditCardComponentOptions.md +185 -0
  61. package/docs/interfaces/AdyenIdealComponentOptions.md +17 -0
  62. package/docs/interfaces/AdyenPaymentMethodState.md +21 -0
  63. package/docs/interfaces/AdyenPaymentMethodState_2.md +15 -0
  64. package/docs/interfaces/AdyenPlaceholderData.md +33 -0
  65. package/docs/interfaces/AdyenPlaceholderData_2.md +33 -0
  66. package/docs/interfaces/AdyenThreeDS2Options.md +97 -0
  67. package/docs/interfaces/AdyenV2PaymentInitializeOptions.md +161 -0
  68. package/docs/interfaces/AdyenV3CreditCardComponentOptions.md +185 -0
  69. package/docs/interfaces/AdyenV3PaymentInitializeOptions.md +135 -0
  70. package/docs/interfaces/AmazonPayCustomerInitializeOptions.md +65 -0
  71. package/docs/interfaces/AmazonPayOrderReference.md +30 -0
  72. package/docs/interfaces/AmazonPayPaymentInitializeOptions.md +100 -0
  73. package/docs/interfaces/AmazonPayShippingInitializeOptions.md +85 -0
  74. package/docs/interfaces/AmazonPayV2ButtonParams.md +71 -0
  75. package/docs/interfaces/AmazonPayV2CheckoutSession.md +35 -0
  76. package/docs/interfaces/AmazonPayV2CustomerInitializeOptions.md +24 -0
  77. package/docs/interfaces/AmazonPayV2PaymentInitializeOptions.md +39 -0
  78. package/docs/interfaces/AmazonPayV2ShippingInitializeOptions.md +26 -0
  79. package/docs/interfaces/AmazonPayWidgetError.md +25 -0
  80. package/docs/interfaces/ApplePayButtonInitializeOptions.md +38 -0
  81. package/docs/interfaces/ApplePayCustomerInitializeOptions.md +77 -0
  82. package/docs/interfaces/ApplePayPaymentInitializeOptions.md +40 -0
  83. package/docs/interfaces/BankInstrument.md +112 -0
  84. package/docs/interfaces/Banner.md +22 -0
  85. package/docs/interfaces/BaseAccountInstrument.md +91 -0
  86. package/docs/interfaces/BaseElementOptions.md +17 -0
  87. package/docs/interfaces/BaseElementOptions_2.md +48 -0
  88. package/docs/interfaces/BaseIndividualElementOptions.md +67 -0
  89. package/docs/interfaces/BaseInstrument.md +58 -0
  90. package/docs/interfaces/BillingAddress.md +182 -0
  91. package/docs/interfaces/BillingAddressRequestBody.md +153 -0
  92. package/docs/interfaces/BlockElementStyles.md +105 -0
  93. package/docs/interfaces/BlueSnapV2PaymentInitializeOptions.md +72 -0
  94. package/docs/interfaces/BlueSnapV2StyleProps.md +29 -0
  95. package/docs/interfaces/BodyStyles.md +15 -0
  96. package/docs/interfaces/BoltCustomerInitializeOptions.md +30 -0
  97. package/docs/interfaces/BoltPaymentInitializeOptions.md +94 -0
  98. package/docs/interfaces/BraintreeError.md +35 -0
  99. package/docs/interfaces/BraintreeFormFieldCardTypeChangeEventData.md +15 -0
  100. package/docs/interfaces/BraintreeFormFieldKeyboardEventData.md +15 -0
  101. package/docs/interfaces/BraintreeFormFieldOptions.md +35 -0
  102. package/docs/interfaces/BraintreeFormFieldStylesMap.md +29 -0
  103. package/docs/interfaces/BraintreeFormFieldValidateErrorData.md +29 -0
  104. package/docs/interfaces/BraintreeFormFieldValidateEventData.md +33 -0
  105. package/docs/interfaces/BraintreeFormFieldsMap.md +36 -0
  106. package/docs/interfaces/BraintreeFormOptions.md +110 -0
  107. package/docs/interfaces/BraintreePaymentInitializeOptions.md +101 -0
  108. package/docs/interfaces/BraintreePaypalButtonInitializeOptions.md +96 -0
  109. package/docs/interfaces/BraintreePaypalCreditButtonInitializeOptions.md +87 -0
  110. package/docs/interfaces/BraintreeStoredCardFieldOptions.md +54 -0
  111. package/docs/interfaces/BraintreeStoredCardFieldsMap.md +22 -0
  112. package/docs/interfaces/BraintreeThreeDSecureOptions.md +51 -0
  113. package/docs/interfaces/BraintreeVenmoButtonInitializeOptions.md +27 -0
  114. package/docs/interfaces/BraintreeVerifyPayload.md +51 -0
  115. package/docs/interfaces/BraintreeVisaCheckoutCustomerInitializeOptions.md +35 -0
  116. package/docs/interfaces/BraintreeVisaCheckoutPaymentInitializeOptions.md +70 -0
  117. package/docs/interfaces/BrowserInfo.md +50 -0
  118. package/docs/interfaces/ButtonResponse.md +19 -0
  119. package/docs/interfaces/ButtonStyles.md +141 -0
  120. package/docs/interfaces/CardCvcElementOptions.md +72 -0
  121. package/docs/interfaces/CardDataPaymentMethodState.md +15 -0
  122. package/docs/interfaces/CardDataPaymentMethodState_2.md +15 -0
  123. package/docs/interfaces/CardElementOptions.md +91 -0
  124. package/docs/interfaces/CardExpiryElementOptions.md +72 -0
  125. package/docs/interfaces/CardInstrument.md +115 -0
  126. package/docs/interfaces/CardNumberElementOptions.md +88 -0
  127. package/docs/interfaces/CardPaymentMethodState.md +60 -0
  128. package/docs/interfaces/CardPaymentMethodState_2.md +43 -0
  129. package/docs/interfaces/CardState.md +40 -0
  130. package/docs/interfaces/CardStateErrors.md +7 -0
  131. package/docs/interfaces/CardStateErrors_2.md +7 -0
  132. package/docs/interfaces/CardState_2.md +40 -0
  133. package/docs/interfaces/Cart.md +99 -0
  134. package/docs/interfaces/ChasePayCustomerInitializeOptions.md +15 -0
  135. package/docs/interfaces/ChasePayInitializeOptions.md +98 -0
  136. package/docs/interfaces/CheckableInputStyles.md +175 -0
  137. package/docs/interfaces/ChecklistStyles.md +127 -0
  138. package/docs/interfaces/Checkout.md +195 -0
  139. package/docs/interfaces/CheckoutButtonInitializeOptions.md +244 -0
  140. package/docs/interfaces/CheckoutButtonInitializerOptions.md +22 -0
  141. package/docs/interfaces/CheckoutButtonOptions.md +55 -0
  142. package/docs/interfaces/CheckoutButtonSelectors.md +22 -0
  143. package/docs/interfaces/CheckoutParams.md +15 -0
  144. package/docs/interfaces/CheckoutPayment.md +42 -0
  145. package/docs/interfaces/CheckoutRequestBody.md +15 -0
  146. package/docs/interfaces/CheckoutSelectors.md +29 -0
  147. package/docs/interfaces/CheckoutServiceOptions.md +36 -0
  148. package/docs/interfaces/CheckoutSettings.md +201 -0
  149. package/docs/interfaces/CheckoutStoreErrorSelector.md +636 -0
  150. package/docs/interfaces/CheckoutStoreSelector.md +501 -0
  151. package/docs/interfaces/CheckoutStoreStatusSelector.md +758 -0
  152. package/docs/interfaces/Consignment.md +71 -0
  153. package/docs/interfaces/ConsignmentAssignmentBaseRequestBodyWithAddress.md +29 -0
  154. package/docs/interfaces/ConsignmentAssignmentBaseRequestBodyWithShippingAddress.md +29 -0
  155. package/docs/interfaces/ConsignmentCreateRequestBody.md +36 -0
  156. package/docs/interfaces/ConsignmentLineItem.md +22 -0
  157. package/docs/interfaces/ConsignmentPickupOption.md +15 -0
  158. package/docs/interfaces/ConsignmentUpdateRequestBody.md +43 -0
  159. package/docs/interfaces/Coordinates.md +22 -0
  160. package/docs/interfaces/Country.md +43 -0
  161. package/docs/interfaces/Coupon.md +43 -0
  162. package/docs/interfaces/CreditCardInstrument.md +85 -0
  163. package/docs/interfaces/CreditCardPaymentInitializeOptions.md +91 -0
  164. package/docs/interfaces/CreditCardPlaceHolder.md +29 -0
  165. package/docs/interfaces/CreditCardPlaceHolder_2.md +29 -0
  166. package/docs/interfaces/CssProperties.md +211 -0
  167. package/docs/interfaces/CssProperties_2.md +211 -0
  168. package/docs/interfaces/Currency.md +36 -0
  169. package/docs/interfaces/CustomError.md +43 -0
  170. package/docs/interfaces/CustomItem.md +50 -0
  171. package/docs/interfaces/Customer.md +84 -0
  172. package/docs/interfaces/CustomerAccountRequestBody.md +50 -0
  173. package/docs/interfaces/CustomerAddress.md +182 -0
  174. package/docs/interfaces/CustomerCredentials.md +22 -0
  175. package/docs/interfaces/CustomerGroup.md +22 -0
  176. package/docs/interfaces/CustomerInitializeOptions.md +221 -0
  177. package/docs/interfaces/CustomerPasswordRequirements.md +36 -0
  178. package/docs/interfaces/CustomerRequestOptions.md +60 -0
  179. package/docs/interfaces/DigitalItem.md +310 -0
  180. package/docs/interfaces/DigitalRiverElementClasses.md +67 -0
  181. package/docs/interfaces/DigitalRiverPaymentInitializeOptions.md +146 -0
  182. package/docs/interfaces/Discount.md +22 -0
  183. package/docs/interfaces/EmbeddedCheckoutCompleteEvent.md +15 -0
  184. package/docs/interfaces/EmbeddedCheckoutError.md +29 -0
  185. package/docs/interfaces/EmbeddedCheckoutErrorEvent.md +22 -0
  186. package/docs/interfaces/EmbeddedCheckoutFrameErrorEvent.md +22 -0
  187. package/docs/interfaces/EmbeddedCheckoutFrameLoadedEvent.md +22 -0
  188. package/docs/interfaces/EmbeddedCheckoutLoadedEvent.md +15 -0
  189. package/docs/interfaces/EmbeddedCheckoutMessenger.md +109 -0
  190. package/docs/interfaces/EmbeddedCheckoutMessengerOptions.md +22 -0
  191. package/docs/interfaces/EmbeddedCheckoutOptions.md +134 -0
  192. package/docs/interfaces/EmbeddedCheckoutSignedOutEvent.md +15 -0
  193. package/docs/interfaces/EmbeddedCheckoutStyles.md +141 -0
  194. package/docs/interfaces/EmbeddedContentOptions.md +15 -0
  195. package/docs/interfaces/ExecutePaymentMethodCheckoutOptions.md +76 -0
  196. package/docs/interfaces/FlashMessage.md +29 -0
  197. package/docs/interfaces/FormField.md +113 -0
  198. package/docs/interfaces/FormFieldItem.md +22 -0
  199. package/docs/interfaces/FormFieldOptions.md +29 -0
  200. package/docs/interfaces/FormFields.md +29 -0
  201. package/docs/interfaces/GatewayOrderPayment.md +108 -0
  202. package/docs/interfaces/GiftCertificate.md +43 -0
  203. package/docs/interfaces/GiftCertificateItem.md +78 -0
  204. package/docs/interfaces/GiftCertificateOrderPayment.md +94 -0
  205. package/docs/interfaces/GooglePayButtonInitializeOptions.md +31 -0
  206. package/docs/interfaces/GooglePayCustomerInitializeOptions.md +42 -0
  207. package/docs/interfaces/GooglePayPaymentInitializeOptions.md +93 -0
  208. package/docs/interfaces/HostedCardFieldOptions.md +35 -0
  209. package/docs/interfaces/HostedCardFieldOptionsMap.md +36 -0
  210. package/docs/interfaces/HostedFieldStylesMap.md +29 -0
  211. package/docs/interfaces/HostedFormOptions.md +114 -0
  212. package/docs/interfaces/HostedInputBlurEvent.md +28 -0
  213. package/docs/interfaces/HostedInputCardTypeChangeEvent.md +28 -0
  214. package/docs/interfaces/HostedInputEnterEvent.md +28 -0
  215. package/docs/interfaces/HostedInputFocusEvent.md +28 -0
  216. package/docs/interfaces/HostedInputValidateErrorData.md +29 -0
  217. package/docs/interfaces/HostedInputValidateErrorDataMap.md +50 -0
  218. package/docs/interfaces/HostedInputValidateEvent.md +22 -0
  219. package/docs/interfaces/HostedInputValidateResults.md +22 -0
  220. package/docs/interfaces/HostedInstrument.md +22 -0
  221. package/docs/interfaces/HostedStoredCardFieldOptions.md +54 -0
  222. package/docs/interfaces/HostedStoredCardFieldOptionsMap.md +22 -0
  223. package/docs/interfaces/IbanElementOptions.md +82 -0
  224. package/docs/interfaces/IdealElementOptions.md +70 -0
  225. package/docs/interfaces/IndividualCardElementOptions.md +36 -0
  226. package/docs/interfaces/InitializationStrategy.md +21 -0
  227. package/docs/interfaces/InlineElementStyles.md +53 -0
  228. package/docs/interfaces/InputDetail.md +80 -0
  229. package/docs/interfaces/InputDetail_2.md +80 -0
  230. package/docs/interfaces/InputStyles.md +152 -0
  231. package/docs/interfaces/Item.md +22 -0
  232. package/docs/interfaces/Item_2.md +26 -0
  233. package/docs/interfaces/Item_3.md +26 -0
  234. package/docs/interfaces/KlarnaLoadResponse.md +28 -0
  235. package/docs/interfaces/KlarnaLoadResponse_2.md +28 -0
  236. package/docs/interfaces/KlarnaPaymentInitializeOptions.md +73 -0
  237. package/docs/interfaces/KlarnaV2PaymentInitializeOptions.md +73 -0
  238. package/docs/interfaces/LabelStyles.md +76 -0
  239. package/docs/interfaces/LanguageConfig.md +57 -0
  240. package/docs/interfaces/LineItem.md +191 -0
  241. package/docs/interfaces/LineItemCategory.md +15 -0
  242. package/docs/interfaces/LineItemMap.md +36 -0
  243. package/docs/interfaces/LineItemOption.md +36 -0
  244. package/docs/interfaces/LineItemSocialData.md +36 -0
  245. package/docs/interfaces/LinkStyles.md +90 -0
  246. package/docs/interfaces/LoadingIndicatorStyles.md +29 -0
  247. package/docs/interfaces/Locales.md +7 -0
  248. package/docs/interfaces/MasterpassCustomerInitializeOptions.md +17 -0
  249. package/docs/interfaces/MasterpassPaymentInitializeOptions.md +35 -0
  250. package/docs/interfaces/MolliePaymentInitializeOptions.md +96 -0
  251. package/docs/interfaces/MonerisPaymentInitializeOptions.md +57 -0
  252. package/docs/interfaces/MonerisStylingProps.md +80 -0
  253. package/docs/interfaces/NonceGenerationError.md +29 -0
  254. package/docs/interfaces/NonceInstrument.md +36 -0
  255. package/docs/interfaces/Option.md +22 -0
  256. package/docs/interfaces/OptionsResponse.md +77 -0
  257. package/docs/interfaces/OpyPaymentInitializeOptions.md +40 -0
  258. package/docs/interfaces/Order.md +190 -0
  259. package/docs/interfaces/OrderConsignment.md +15 -0
  260. package/docs/interfaces/OrderPayment.md +58 -0
  261. package/docs/interfaces/OrderPaymentRequestBody.md +39 -0
  262. package/docs/interfaces/OrderRequestBody.md +33 -0
  263. package/docs/interfaces/OrderShippingConsignment.md +218 -0
  264. package/docs/interfaces/PasswordRequirements.md +36 -0
  265. package/docs/interfaces/PayPalInstrument.md +91 -0
  266. package/docs/interfaces/PaymentInitializeOptions.md +406 -0
  267. package/docs/interfaces/PaymentMethod.md +98 -0
  268. package/docs/interfaces/PaymentMethodConfig.md +120 -0
  269. package/docs/interfaces/PaymentRequestOptions.md +67 -0
  270. package/docs/interfaces/PaymentSettings.md +22 -0
  271. package/docs/interfaces/PaypalButtonInitializeOptions.md +76 -0
  272. package/docs/interfaces/PaypalButtonStyleOptions.md +64 -0
  273. package/docs/interfaces/PaypalButtonStyleOptions_2.md +50 -0
  274. package/docs/interfaces/PaypalCommerceAlternativeMethodsButtonOptions.md +35 -0
  275. package/docs/interfaces/PaypalCommerceButtonInitializeOptions.md +26 -0
  276. package/docs/interfaces/PaypalCommerceCreditCardPaymentInitializeOptions.md +90 -0
  277. package/docs/interfaces/PaypalCommerceFormFieldCardTypeChangeEventData.md +15 -0
  278. package/docs/interfaces/PaypalCommerceFormFieldKeyboardEventData.md +15 -0
  279. package/docs/interfaces/PaypalCommerceFormFieldOptions.md +28 -0
  280. package/docs/interfaces/PaypalCommerceFormFieldStylesMap.md +29 -0
  281. package/docs/interfaces/PaypalCommerceFormFieldValidateErrorData.md +29 -0
  282. package/docs/interfaces/PaypalCommerceFormFieldValidateEventData.md +33 -0
  283. package/docs/interfaces/PaypalCommerceFormFieldsMap.md +36 -0
  284. package/docs/interfaces/PaypalCommerceFormOptions.md +148 -0
  285. package/docs/interfaces/PaypalCommercePaymentInitializeOptions.md +186 -0
  286. package/docs/interfaces/PaypalCommerceStoredCardFieldOptions.md +43 -0
  287. package/docs/interfaces/PaypalCommerceStoredCardFieldsMap.md +22 -0
  288. package/docs/interfaces/PaypalCommerceVenmoButtonInitializeOptions.md +26 -0
  289. package/docs/interfaces/PaypalExpressPaymentInitializeOptions.md +36 -0
  290. package/docs/interfaces/PaypalFieldsStyleOptions.md +46 -0
  291. package/docs/interfaces/PhysicalItem.md +311 -0
  292. package/docs/interfaces/PickupMethod.md +43 -0
  293. package/docs/interfaces/PickupOptionRequestBody.md +22 -0
  294. package/docs/interfaces/PickupOptionResult.md +15 -0
  295. package/docs/interfaces/Promotion.md +15 -0
  296. package/docs/interfaces/Radius.md +22 -0
  297. package/docs/interfaces/Region.md +22 -0
  298. package/docs/interfaces/RequestOptions.md +48 -0
  299. package/docs/interfaces/SearchArea.md +22 -0
  300. package/docs/interfaces/SepaPlaceHolder.md +22 -0
  301. package/docs/interfaces/SepaPlaceHolder_2.md +22 -0
  302. package/docs/interfaces/ShippingInitializeOptions.md +88 -0
  303. package/docs/interfaces/ShippingOption.md +64 -0
  304. package/docs/interfaces/ShippingRequestOptions.md +65 -0
  305. package/docs/interfaces/ShopperConfig.md +29 -0
  306. package/docs/interfaces/ShopperCurrency.md +94 -0
  307. package/docs/interfaces/SignInEmail.md +22 -0
  308. package/docs/interfaces/SignInEmailRequestBody.md +22 -0
  309. package/docs/interfaces/SpamProtectionOptions.md +25 -0
  310. package/docs/interfaces/SquareFormElement.md +28 -0
  311. package/docs/interfaces/SquarePaymentInitializeOptions.md +131 -0
  312. package/docs/interfaces/StepStyles.md +120 -0
  313. package/docs/interfaces/StepTracker.md +64 -0
  314. package/docs/interfaces/StepTrackerConfig.md +15 -0
  315. package/docs/interfaces/StoreConfig.md +109 -0
  316. package/docs/interfaces/StoreCurrency.md +56 -0
  317. package/docs/interfaces/StoreLinks.md +57 -0
  318. package/docs/interfaces/StoreProfile.md +71 -0
  319. package/docs/interfaces/StripeElementCSSProperties.md +170 -0
  320. package/docs/interfaces/StripeElementClasses.md +63 -0
  321. package/docs/interfaces/StripeElementStyle.md +44 -0
  322. package/docs/interfaces/StripeElementStyleVariant.md +285 -0
  323. package/docs/interfaces/StripeUPEPaymentInitializeOptions.md +70 -0
  324. package/docs/interfaces/StripeV3PaymentInitializeOptions.md +76 -0
  325. package/docs/interfaces/StyleOptions.md +44 -0
  326. package/docs/interfaces/StyleOptions_2.md +44 -0
  327. package/docs/interfaces/SubInputDetail.md +62 -0
  328. package/docs/interfaces/SubInputDetail_2.md +62 -0
  329. package/docs/interfaces/Subscriptions.md +29 -0
  330. package/docs/interfaces/Tax.md +22 -0
  331. package/docs/interfaces/TextInputStyles.md +175 -0
  332. package/docs/interfaces/ThreeDSecure.md +50 -0
  333. package/docs/interfaces/ThreeDSecureToken.md +15 -0
  334. package/docs/interfaces/TranslationData.md +7 -0
  335. package/docs/interfaces/Translations.md +7 -0
  336. package/docs/interfaces/UnknownObject.md +7 -0
  337. package/docs/interfaces/VaultedInstrument.md +29 -0
  338. package/docs/interfaces/WechatDataPaymentMethodState.md +15 -0
  339. package/docs/interfaces/WechatDataPaymentMethodState_2.md +15 -0
  340. package/docs/interfaces/WechatState.md +15 -0
  341. package/docs/interfaces/WechatState_2.md +15 -0
  342. package/docs/interfaces/WithAccountCreation.md +15 -0
  343. package/docs/interfaces/WithCheckoutcomFawryInstrument.md +22 -0
  344. package/docs/interfaces/WithCheckoutcomSEPAInstrument.md +22 -0
  345. package/docs/interfaces/WithCheckoutcomiDealInstrument.md +15 -0
  346. package/docs/interfaces/WithDocumentInstrument.md +15 -0
  347. package/docs/interfaces/WithMollieIssuerInstrument.md +22 -0
  348. package/docs/interfaces/WorldpayPaymentInitializeOptions.md +30 -0
  349. package/docs/interfaces/ZipCodeElementOptions.md +15 -0
  350. package/package.json +2 -2
  351. package/docs/classes/CacheKeyResolver.md +0 -58
@@ -0,0 +1,186 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalCommercePaymentInitializeOptions
2
+
3
+ # Interface: PaypalCommercePaymentInitializeOptions
4
+
5
+ A set of options that are required to initialize the PayPal Commerce payment
6
+ method for presenting its PayPal button.
7
+
8
+ Please note that the minimum version of checkout-sdk is 1.100
9
+
10
+ Also, PayPal (also known as PayPal Commerce Platform) requires specific options to initialize the PayPal Smart Payment Button on checkout page that substitutes a standard submit button
11
+ ```html
12
+ <!-- This is where the PayPal button will be inserted -->
13
+ <div id="container"></div>
14
+ <!-- This is where the PayPal alternative payment methods fields will be inserted. -->
15
+ <div id="apm-fields-container"></div>
16
+ ```
17
+
18
+ ```js
19
+ service.initializePayment({
20
+ methodId: 'paypalcommerce',
21
+ paypalcommerce: {
22
+ container: '#container',
23
+ apmFieldsContainer: '#apm-fields-container',
24
+ apmFieldsStyles: {
25
+ base: {
26
+ backgroundColor: 'transparent',
27
+ },
28
+ input: {
29
+ backgroundColor: 'white',
30
+ fontSize: '1rem',
31
+ color: '#333',
32
+ borderColor: '#d9d9d9',
33
+ borderRadius: '4px',
34
+ borderWidth: '1px',
35
+ padding: '1rem',
36
+ },
37
+ invalid: {
38
+ color: '#ed6a6a',
39
+ },
40
+ active: {
41
+ color: '#4496f6',
42
+ },
43
+ },
44
+ clientId: 'YOUR_CLIENT_ID',
45
+ // Callback for submitting payment form that gets called when a buyer approves PayPal payment
46
+ submitForm: () => {
47
+ // Example function
48
+ this.submitOrder(
49
+ {
50
+ payment: { methodId: 'paypalcommerce', }
51
+ }
52
+ );
53
+ },
54
+ // Callback is used to define the state of the payment form, validate if it is applicable for submit.
55
+ onValidate: (resolve, reject) => {
56
+ // Example function
57
+ const isValid = this.validatePaymentForm();
58
+ if (isValid) {
59
+ return resolve();
60
+ }
61
+ return reject();
62
+ },
63
+ // Callback that is called right before render of a Smart Payment Button. It gets called when a buyer is eligible for use of the particular PayPal method. This callback can be used to hide the standard submit button.
64
+ onRenderButton: () => {
65
+ // Example function
66
+ this.hidePaymentSubmitButton();
67
+ }
68
+ },
69
+ });
70
+ ```
71
+
72
+ ## Table of contents
73
+
74
+ ### Properties
75
+
76
+ - [apmFieldsContainer](PaypalCommercePaymentInitializeOptions.md#apmfieldscontainer)
77
+ - [apmFieldsStyles](PaypalCommercePaymentInitializeOptions.md#apmfieldsstyles)
78
+ - [clientId](PaypalCommercePaymentInitializeOptions.md#clientid)
79
+ - [container](PaypalCommercePaymentInitializeOptions.md#container)
80
+
81
+ ### Methods
82
+
83
+ - [onError](PaypalCommercePaymentInitializeOptions.md#onerror)
84
+ - [onRenderButton](PaypalCommercePaymentInitializeOptions.md#onrenderbutton)
85
+ - [onValidate](PaypalCommercePaymentInitializeOptions.md#onvalidate)
86
+ - [submitForm](PaypalCommercePaymentInitializeOptions.md#submitform)
87
+
88
+ ## Properties
89
+
90
+ ### apmFieldsContainer
91
+
92
+ • `Optional` **apmFieldsContainer**: `string`
93
+
94
+ The CSS selector of a container where the alternative payment methods fields widget should be inserted into.
95
+ It's necessary to specify this parameter when using Alternative Payment Methods.
96
+ Without it alternative payment methods will not work.
97
+
98
+ ___
99
+
100
+ ### apmFieldsStyles
101
+
102
+ • `Optional` **apmFieldsStyles**: [`PaypalFieldsStyleOptions`](PaypalFieldsStyleOptions.md)
103
+
104
+ Object with styles to customize alternative payment methods fields.
105
+
106
+ ___
107
+
108
+ ### clientId
109
+
110
+ • **clientId**: `string`
111
+
112
+ The Client ID of the Paypal App
113
+
114
+ ___
115
+
116
+ ### container
117
+
118
+ • **container**: `string`
119
+
120
+ The CSS selector of a container where the payment widget should be inserted into.
121
+
122
+ ## Methods
123
+
124
+ ### onError
125
+
126
+ ▸ `Optional` **onError**(`error`): `void`
127
+
128
+ A callback for displaying error popup. This callback requires error object as parameter.
129
+
130
+ #### Parameters
131
+
132
+ | Name | Type |
133
+ | :------ | :------ |
134
+ | `error` | `Error` |
135
+
136
+ #### Returns
137
+
138
+ `void`
139
+
140
+ ___
141
+
142
+ ### onRenderButton
143
+
144
+ ▸ `Optional` **onRenderButton**(): `void`
145
+
146
+ A callback right before render Smart Payment Button that gets called when
147
+ Smart Payment Button is eligible. This callback can be used to hide the standard submit button.
148
+
149
+ #### Returns
150
+
151
+ `void`
152
+
153
+ ___
154
+
155
+ ### onValidate
156
+
157
+ ▸ **onValidate**(`resolve`, `reject`): `Promise`<`void`\>
158
+
159
+ A callback that gets called when a buyer click on Smart Payment Button
160
+ and should validate payment form.
161
+
162
+ #### Parameters
163
+
164
+ | Name | Type | Description |
165
+ | :------ | :------ | :------ |
166
+ | `resolve` | () => `void` | A function, that gets called if form is valid. |
167
+ | `reject` | () => `void` | A function, that gets called if form is not valid. |
168
+
169
+ #### Returns
170
+
171
+ `Promise`<`void`\>
172
+
173
+ reject() or resolve()
174
+
175
+ ___
176
+
177
+ ### submitForm
178
+
179
+ ▸ **submitForm**(): `void`
180
+
181
+ A callback for submitting payment form that gets called
182
+ when buyer approved PayPal account.
183
+
184
+ #### Returns
185
+
186
+ `void`
@@ -0,0 +1,43 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalCommerceStoredCardFieldOptions
2
+
3
+ # Interface: PaypalCommerceStoredCardFieldOptions
4
+
5
+ ## Hierarchy
6
+
7
+ - [`PaypalCommerceFormFieldOptions`](PaypalCommerceFormFieldOptions.md)
8
+
9
+ ↳ **`PaypalCommerceStoredCardFieldOptions`**
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [containerId](PaypalCommerceStoredCardFieldOptions.md#containerid)
16
+ - [instrumentId](PaypalCommerceStoredCardFieldOptions.md#instrumentid)
17
+ - [placeholder](PaypalCommerceStoredCardFieldOptions.md#placeholder)
18
+
19
+ ## Properties
20
+
21
+ ### containerId
22
+
23
+ • **containerId**: `string`
24
+
25
+ #### Inherited from
26
+
27
+ [PaypalCommerceFormFieldOptions](PaypalCommerceFormFieldOptions.md).[containerId](PaypalCommerceFormFieldOptions.md#containerid)
28
+
29
+ ___
30
+
31
+ ### instrumentId
32
+
33
+ • **instrumentId**: `string`
34
+
35
+ ___
36
+
37
+ ### placeholder
38
+
39
+ • `Optional` **placeholder**: `string`
40
+
41
+ #### Inherited from
42
+
43
+ [PaypalCommerceFormFieldOptions](PaypalCommerceFormFieldOptions.md).[placeholder](PaypalCommerceFormFieldOptions.md#placeholder)
@@ -0,0 +1,22 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalCommerceStoredCardFieldsMap
2
+
3
+ # Interface: PaypalCommerceStoredCardFieldsMap
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [cardCodeVerification](PaypalCommerceStoredCardFieldsMap.md#cardcodeverification)
10
+ - [cardNumberVerification](PaypalCommerceStoredCardFieldsMap.md#cardnumberverification)
11
+
12
+ ## Properties
13
+
14
+ ### cardCodeVerification
15
+
16
+ • `Optional` **cardCodeVerification**: [`PaypalCommerceStoredCardFieldOptions`](PaypalCommerceStoredCardFieldOptions.md)
17
+
18
+ ___
19
+
20
+ ### cardNumberVerification
21
+
22
+ • `Optional` **cardNumberVerification**: [`PaypalCommerceStoredCardFieldOptions`](PaypalCommerceStoredCardFieldOptions.md)
@@ -0,0 +1,26 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalCommerceVenmoButtonInitializeOptions
2
+
3
+ # Interface: PaypalCommerceVenmoButtonInitializeOptions
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [initializesOnCheckoutPage](PaypalCommerceVenmoButtonInitializeOptions.md#initializesoncheckoutpage)
10
+ - [style](PaypalCommerceVenmoButtonInitializeOptions.md#style)
11
+
12
+ ## Properties
13
+
14
+ ### initializesOnCheckoutPage
15
+
16
+ • `Optional` **initializesOnCheckoutPage**: `boolean`
17
+
18
+ Flag which helps to detect that the strategy initializes on Checkout page
19
+
20
+ ___
21
+
22
+ ### style
23
+
24
+ • `Optional` **style**: [`PaypalButtonStyleOptions_2`](PaypalButtonStyleOptions_2.md)
25
+
26
+ A set of styling options for the checkout button.
@@ -0,0 +1,36 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalExpressPaymentInitializeOptions
2
+
3
+ # Interface: PaypalExpressPaymentInitializeOptions
4
+
5
+ A set of options that are required to initialize the PayPal Express payment
6
+ method.
7
+
8
+ ```js
9
+ service.initializePayment({
10
+ methodId: 'paypalexpress',
11
+ });
12
+ ```
13
+
14
+ An additional flag can be passed in to always start the payment flow through
15
+ a redirect rather than a popup.
16
+
17
+ ```js
18
+ service.initializePayment({
19
+ methodId: 'paypalexpress',
20
+ paypalexpress: {
21
+ useRedirectFlow: true,
22
+ },
23
+ });
24
+ ```
25
+
26
+ ## Table of contents
27
+
28
+ ### Properties
29
+
30
+ - [useRedirectFlow](PaypalExpressPaymentInitializeOptions.md#useredirectflow)
31
+
32
+ ## Properties
33
+
34
+ ### useRedirectFlow
35
+
36
+ • `Optional` **useRedirectFlow**: `boolean`
@@ -0,0 +1,46 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PaypalFieldsStyleOptions
2
+
3
+ # Interface: PaypalFieldsStyleOptions
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [rules](PaypalFieldsStyleOptions.md#rules)
10
+ - [variables](PaypalFieldsStyleOptions.md#variables)
11
+
12
+ ## Properties
13
+
14
+ ### rules
15
+
16
+ • `Optional` **rules**: `Object`
17
+
18
+ #### Index signature
19
+
20
+ ▪ [key: `string`]: `any`
21
+
22
+ ___
23
+
24
+ ### variables
25
+
26
+ • `Optional` **variables**: `Object`
27
+
28
+ #### Type declaration
29
+
30
+ | Name | Type |
31
+ | :------ | :------ |
32
+ | `borderColor?` | `string` |
33
+ | `borderFocusColor?` | `string` |
34
+ | `borderRadius?` | `string` |
35
+ | `borderWidth?` | `string` |
36
+ | `colorBackground?` | `string` |
37
+ | `colorDanger?` | `string` |
38
+ | `colorInfo?` | `string` |
39
+ | `colorTextPlaceholder?` | `string` |
40
+ | `fontFamily?` | `string` |
41
+ | `fontSizeBase?` | `string` |
42
+ | `fontSizeLg?` | `string` |
43
+ | `fontSizeM?` | `string` |
44
+ | `fontSizeSm?` | `string` |
45
+ | `spacingUnit?` | `string` |
46
+ | `textColor?` | `string` |
@@ -0,0 +1,311 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PhysicalItem
2
+
3
+ # Interface: PhysicalItem
4
+
5
+ ## Hierarchy
6
+
7
+ - [`LineItem`](LineItem.md)
8
+
9
+ ↳ **`PhysicalItem`**
10
+
11
+ ## Table of contents
12
+
13
+ ### Properties
14
+
15
+ - [addedByPromotion](PhysicalItem.md#addedbypromotion)
16
+ - [brand](PhysicalItem.md#brand)
17
+ - [categories](PhysicalItem.md#categories)
18
+ - [categoryNames](PhysicalItem.md#categorynames)
19
+ - [comparisonPrice](PhysicalItem.md#comparisonprice)
20
+ - [couponAmount](PhysicalItem.md#couponamount)
21
+ - [discountAmount](PhysicalItem.md#discountamount)
22
+ - [discounts](PhysicalItem.md#discounts)
23
+ - [extendedComparisonPrice](PhysicalItem.md#extendedcomparisonprice)
24
+ - [extendedListPrice](PhysicalItem.md#extendedlistprice)
25
+ - [extendedSalePrice](PhysicalItem.md#extendedsaleprice)
26
+ - [giftWrapping](PhysicalItem.md#giftwrapping)
27
+ - [id](PhysicalItem.md#id)
28
+ - [imageUrl](PhysicalItem.md#imageurl)
29
+ - [isShippingRequired](PhysicalItem.md#isshippingrequired)
30
+ - [isTaxable](PhysicalItem.md#istaxable)
31
+ - [listPrice](PhysicalItem.md#listprice)
32
+ - [name](PhysicalItem.md#name)
33
+ - [options](PhysicalItem.md#options)
34
+ - [parentId](PhysicalItem.md#parentid)
35
+ - [productId](PhysicalItem.md#productid)
36
+ - [quantity](PhysicalItem.md#quantity)
37
+ - [salePrice](PhysicalItem.md#saleprice)
38
+ - [sku](PhysicalItem.md#sku)
39
+ - [socialMedia](PhysicalItem.md#socialmedia)
40
+ - [url](PhysicalItem.md#url)
41
+ - [variantId](PhysicalItem.md#variantid)
42
+
43
+ ## Properties
44
+
45
+ ### addedByPromotion
46
+
47
+ • **addedByPromotion**: `boolean`
48
+
49
+ #### Inherited from
50
+
51
+ [LineItem](LineItem.md).[addedByPromotion](LineItem.md#addedbypromotion)
52
+
53
+ ___
54
+
55
+ ### brand
56
+
57
+ • **brand**: `string`
58
+
59
+ #### Inherited from
60
+
61
+ [LineItem](LineItem.md).[brand](LineItem.md#brand)
62
+
63
+ ___
64
+
65
+ ### categories
66
+
67
+ • `Optional` **categories**: [`LineItemCategory`](LineItemCategory.md)[][]
68
+
69
+ #### Inherited from
70
+
71
+ [LineItem](LineItem.md).[categories](LineItem.md#categories)
72
+
73
+ ___
74
+
75
+ ### categoryNames
76
+
77
+ • `Optional` **categoryNames**: `string`[]
78
+
79
+ #### Inherited from
80
+
81
+ [LineItem](LineItem.md).[categoryNames](LineItem.md#categorynames)
82
+
83
+ ___
84
+
85
+ ### comparisonPrice
86
+
87
+ • **comparisonPrice**: `number`
88
+
89
+ #### Inherited from
90
+
91
+ [LineItem](LineItem.md).[comparisonPrice](LineItem.md#comparisonprice)
92
+
93
+ ___
94
+
95
+ ### couponAmount
96
+
97
+ • **couponAmount**: `number`
98
+
99
+ #### Inherited from
100
+
101
+ [LineItem](LineItem.md).[couponAmount](LineItem.md#couponamount)
102
+
103
+ ___
104
+
105
+ ### discountAmount
106
+
107
+ • **discountAmount**: `number`
108
+
109
+ #### Inherited from
110
+
111
+ [LineItem](LineItem.md).[discountAmount](LineItem.md#discountamount)
112
+
113
+ ___
114
+
115
+ ### discounts
116
+
117
+ • **discounts**: { `discountedAmount`: `number` ; `name`: `string` }[]
118
+
119
+ #### Inherited from
120
+
121
+ [LineItem](LineItem.md).[discounts](LineItem.md#discounts)
122
+
123
+ ___
124
+
125
+ ### extendedComparisonPrice
126
+
127
+ • **extendedComparisonPrice**: `number`
128
+
129
+ #### Inherited from
130
+
131
+ [LineItem](LineItem.md).[extendedComparisonPrice](LineItem.md#extendedcomparisonprice)
132
+
133
+ ___
134
+
135
+ ### extendedListPrice
136
+
137
+ • **extendedListPrice**: `number`
138
+
139
+ #### Inherited from
140
+
141
+ [LineItem](LineItem.md).[extendedListPrice](LineItem.md#extendedlistprice)
142
+
143
+ ___
144
+
145
+ ### extendedSalePrice
146
+
147
+ • **extendedSalePrice**: `number`
148
+
149
+ #### Inherited from
150
+
151
+ [LineItem](LineItem.md).[extendedSalePrice](LineItem.md#extendedsaleprice)
152
+
153
+ ___
154
+
155
+ ### giftWrapping
156
+
157
+ • `Optional` **giftWrapping**: `Object`
158
+
159
+ #### Type declaration
160
+
161
+ | Name | Type |
162
+ | :------ | :------ |
163
+ | `amount` | `number` |
164
+ | `message` | `string` |
165
+ | `name` | `string` |
166
+
167
+ ___
168
+
169
+ ### id
170
+
171
+ • **id**: `string` \| `number`
172
+
173
+ #### Inherited from
174
+
175
+ [LineItem](LineItem.md).[id](LineItem.md#id)
176
+
177
+ ___
178
+
179
+ ### imageUrl
180
+
181
+ • **imageUrl**: `string`
182
+
183
+ #### Inherited from
184
+
185
+ [LineItem](LineItem.md).[imageUrl](LineItem.md#imageurl)
186
+
187
+ ___
188
+
189
+ ### isShippingRequired
190
+
191
+ • **isShippingRequired**: `boolean`
192
+
193
+ ___
194
+
195
+ ### isTaxable
196
+
197
+ • **isTaxable**: `boolean`
198
+
199
+ #### Inherited from
200
+
201
+ [LineItem](LineItem.md).[isTaxable](LineItem.md#istaxable)
202
+
203
+ ___
204
+
205
+ ### listPrice
206
+
207
+ • **listPrice**: `number`
208
+
209
+ #### Inherited from
210
+
211
+ [LineItem](LineItem.md).[listPrice](LineItem.md#listprice)
212
+
213
+ ___
214
+
215
+ ### name
216
+
217
+ • **name**: `string`
218
+
219
+ #### Inherited from
220
+
221
+ [LineItem](LineItem.md).[name](LineItem.md#name)
222
+
223
+ ___
224
+
225
+ ### options
226
+
227
+ • `Optional` **options**: [`LineItemOption`](LineItemOption.md)[]
228
+
229
+ #### Inherited from
230
+
231
+ [LineItem](LineItem.md).[options](LineItem.md#options)
232
+
233
+ ___
234
+
235
+ ### parentId
236
+
237
+ • `Optional` **parentId**: ``null`` \| `string`
238
+
239
+ #### Inherited from
240
+
241
+ [LineItem](LineItem.md).[parentId](LineItem.md#parentid)
242
+
243
+ ___
244
+
245
+ ### productId
246
+
247
+ • **productId**: `number`
248
+
249
+ #### Inherited from
250
+
251
+ [LineItem](LineItem.md).[productId](LineItem.md#productid)
252
+
253
+ ___
254
+
255
+ ### quantity
256
+
257
+ • **quantity**: `number`
258
+
259
+ #### Inherited from
260
+
261
+ [LineItem](LineItem.md).[quantity](LineItem.md#quantity)
262
+
263
+ ___
264
+
265
+ ### salePrice
266
+
267
+ • **salePrice**: `number`
268
+
269
+ #### Inherited from
270
+
271
+ [LineItem](LineItem.md).[salePrice](LineItem.md#saleprice)
272
+
273
+ ___
274
+
275
+ ### sku
276
+
277
+ • **sku**: `string`
278
+
279
+ #### Inherited from
280
+
281
+ [LineItem](LineItem.md).[sku](LineItem.md#sku)
282
+
283
+ ___
284
+
285
+ ### socialMedia
286
+
287
+ • `Optional` **socialMedia**: [`LineItemSocialData`](LineItemSocialData.md)[]
288
+
289
+ #### Inherited from
290
+
291
+ [LineItem](LineItem.md).[socialMedia](LineItem.md#socialmedia)
292
+
293
+ ___
294
+
295
+ ### url
296
+
297
+ • **url**: `string`
298
+
299
+ #### Inherited from
300
+
301
+ [LineItem](LineItem.md).[url](LineItem.md#url)
302
+
303
+ ___
304
+
305
+ ### variantId
306
+
307
+ • **variantId**: `number`
308
+
309
+ #### Inherited from
310
+
311
+ [LineItem](LineItem.md).[variantId](LineItem.md#variantid)
@@ -0,0 +1,43 @@
1
+ [@bigcommerce/checkout-sdk](../README.md) / PickupMethod
2
+
3
+ # Interface: PickupMethod
4
+
5
+ ## Table of contents
6
+
7
+ ### Properties
8
+
9
+ - [collectionInstructions](PickupMethod.md#collectioninstructions)
10
+ - [collectionTimeDescription](PickupMethod.md#collectiontimedescription)
11
+ - [displayName](PickupMethod.md#displayname)
12
+ - [id](PickupMethod.md#id)
13
+ - [locationId](PickupMethod.md#locationid)
14
+
15
+ ## Properties
16
+
17
+ ### collectionInstructions
18
+
19
+ • **collectionInstructions**: `string`
20
+
21
+ ___
22
+
23
+ ### collectionTimeDescription
24
+
25
+ • **collectionTimeDescription**: `string`
26
+
27
+ ___
28
+
29
+ ### displayName
30
+
31
+ • **displayName**: `string`
32
+
33
+ ___
34
+
35
+ ### id
36
+
37
+ • **id**: `number`
38
+
39
+ ___
40
+
41
+ ### locationId
42
+
43
+ • **locationId**: `number`