@shopify/checkout-sheet-kit
Version:
A React Native library for Shopify's Checkout Kit.
63 lines (55 loc) • 2.25 kB
JavaScript
/*
MIT License
Copyright 2023 - Present, Shopify Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/**
* Configuration options for checkout sheet kit features
*/
export let ColorScheme = /*#__PURE__*/function (ColorScheme) {
ColorScheme["automatic"] = "automatic";
ColorScheme["light"] = "light";
ColorScheme["dark"] = "dark";
ColorScheme["web"] = "web_default";
return ColorScheme;
}({});
/**
* Log level for the checkout sheet kit.
* Controls the verbosity of logs emitted by the native SDK.
* @defaults to error
*/
export let LogLevel = /*#__PURE__*/function (LogLevel) {
LogLevel["debug"] = "debug";
LogLevel["error"] = "error";
return LogLevel;
}({});
/**
* Available wallet types for accelerated checkout
*/
export let AcceleratedCheckoutWallet = /*#__PURE__*/function (AcceleratedCheckoutWallet) {
AcceleratedCheckoutWallet["shopPay"] = "shopPay";
AcceleratedCheckoutWallet["applePay"] = "applePay";
return AcceleratedCheckoutWallet;
}({});
export let ApplePayContactField = /*#__PURE__*/function (ApplePayContactField) {
ApplePayContactField["email"] = "email";
ApplePayContactField["phone"] = "phone";
return ApplePayContactField;
}({});
/**
* Configuration for AcceleratedCheckouts
*/
//# sourceMappingURL=index.d.js.map