This package contains the Rye payment client required to perform checkout using Rye Cart-API. The package relays on Spreedly iFrame which takes care of handling secure payment data (credit card number and cvv).
Install with npm:
npm i @rye-api/rye-pay
Install with yarn:
yarn add @rye-api/rye-pay
Developers are responsible for creating a form that collects user credit card data. It is up to a developer how to style and layout the form.
In order to be PCI Complaint a developer should not use any input fields to collect a credit card number and cvv.
Instead, they should provide two HTML elements with id
attribute where the number and cvv Spreedly iFrame fields should be rendered.
import { RyePay } from '@rye-api/rye-pay';
const ryePay = new RyePay();
ryePay.init(initParams);
//...
ryePay.submit(paymentDetails);
initParams
is an object with the following fields:
apiKey: string
Scheduled for deprecation. Use
generateJWT
instead. Developer's key to access Rye API. Either apiKey or generateJWT function must be provided.
generateJWT: () => Promise<string>
Function that is used to generate JWT for authorization. Either generateJWT or apiKey must be provided. See https://docs.rye.com/jwt-authentication for additional details.
numberEl: string
requiredId of the HTML element where the number iFrame field should be rendered.
cvvEl: string
requiredId of the HTML element where the CVV iFrame field should be rendered.
onReady: (spreedly: Spreedly) => void
Triggered when the iFrame is initialized and ready for configuration. setStyle and other UI function calls should be made within this event listener. This event will only fire after init() has been called. Original Spreedly object is passed as a callback parameter.
onCartSubmitted(result: SubmitCartResult)
Triggered when the cart submission is completed and an attempt to make a payment and create orders is made.
onErrors: (errors) => void
Triggered when a payment method is not successfully tokenized. A description of the errors object can be found here
onIFrameError: (error) => void
Triggered when a javascript error occurs within the iFrame. This is useful for debugging runtime issues.
error
includes keysmsg
,url
,line
,col
onFieldChanged: (name, type, activeEl, inputProperties) => void
Triggered when an input event occurs in either iFrame field. This is useful to provide real-time feedback to the user. A description of params can be found here Note:
inputProperties
is only populated on theinput
event type.
onValidate: (inputProperties) => void
Triggered when validation of the iFrame is requested. This event will only fire after validate() has been called. A description of input properties can be found here
enableLogging: boolean
Indicates whether to log to the console the crucial steps of the script execution. Helpful for debugging.
As soon as the user filled the payment form and the cart is ready to be submitted, the developer should call ryePay.submit(paymentDetails)
. To handle the result the developer should provide onCartSubmitted
callback in the init
method. This method will submit the cart, make a payment transaction using specified credit card data and create an order per each store in the cart.
NOTE: Please pass in the billing address, not the shipping address.
The address that is stored in the Rye Cart, is the shipping address. The address that will be passed in the
paymentDetails
object, is the billing address.
paymentDetails
is an object with the following fields:
cartId: string
requiredcart identifier
shopperIp: string
requiredIP of the user of whose behalf the submit is made (end buyer IP), a valide IPV4 string
first_name: string
requireduser's first name. Should match the name on the credit card.
last_name: string
requireduser's last name. Should match the last name on the credit card.
phone_number
requireduser's phone number
month: string
requiredcredit card expiration month in MM format
year: string
requiredcredit card expiration year in YYYY format
address1: string
requiredbilling address.
address2: string
additional billing address
city: string
requiredbilling city
state: string
requiredbilling state/province
country: string
requiredbilling country
zip: string
requiredbilling zip/postal code
selectedShippingOptions: SelectedShippingOption[]
an array of objects that represent selected shipping option per store
export interface SelectedShippingOption { store: string; shippingId: string; }
experimentalPromoCodes: StorePromoCodes[]
an array of objects that represent promo codes applied for a store. This field is experimental and might be changed or removed in the future.
export interface StorePromoCodes { store: string; promoCodes: string[]; }
onCartSubmitted
callback takes an argument of SubmitCartResult
type that provides detail information about the cart submission status.
interface SubmitCartResult {
cart: {
// Cart identifier
id: string;
// Submission result per each store in the cart
stores: SubmitStoreResult[];
};
// Common submit errors
errors: SubmitCartResultError[];
}
interface SubmitStoreResult {
// Store information
store: Store;
// Submission status for this store
status: SubmitStoreStatus;
// Identifier of the request to track order status
requestId?: string;
// Store specific errors
errors: SubmitStoreResultError[];
}
interface SubmitCartResultError {
code: SubmitCartResultErrorCode;
message: string;
}
interface SubmitStoreResultError {
code: SubmitStoreResultErrorCode;
message: string;
}
enum SubmitStoreResultErrorCode {
SUBMIT_STORE_FAILED = 'SUBMIT_STORE_FAILED',
PAYMENT_FAILED = 'PAYMENT_FAILED',
}
enum SubmitCartResultErrorCode {
SUBMIT_CART_FAILED = 'SUBMIT_CART_FAILED',
BUYER_IDENTITY_MISSING = 'BUYER_IDENTITY_MISSING',
BUYER_IDENTITY_INVALID_FIRST_NAME = 'BUYER_IDENTITY_INVALID_FIRST_NAME',
BUYER_IDENTITY_INVALID_LAST_NAME = 'BUYER_IDENTITY_INVALID_LAST_NAME',
BUYER_IDENTITY_INVALID_ADDRESS = 'BUYER_IDENTITY_INVALID_ADDRESS',
BUYER_IDENTITY_INVALID_CITY = 'BUYER_IDENTITY_INVALID_CITY',
BUYER_IDENTITY_INVALID_PROVINCE = 'BUYER_IDENTITY_INVALID_PROVINCE',
BUYER_IDENTITY_INVALID_COUNTRY = 'BUYER_IDENTITY_INVALID_COUNTRY',
BUYER_IDENTITY_INVALID_POSTAL_CODE = 'BUYER_IDENTITY_INVALID_POSTAL_CODE',
BUYER_IDENTITY_INVALID_PHONE = 'BUYER_IDENTITY_INVALID_PHONE',
BUYER_IDENTITY_INVALID_EMAIL = 'BUYER_IDENTITY_INVALID_EMAIL',
BILLING_ADDRESS_INVALID_FIRST_NAME = 'BILLING_ADDRESS_INVALID_FIRST_NAME',
BILLING_ADDRESS_INVALID_LAST_NAME = 'BILLING_ADDRESS_INVALID_LAST_NAME',
BILLING_ADDRESS_INVALID_ADDRESS = 'BILLING_ADDRESS_INVALID_ADDRESS',
BILLING_ADDRESS_INVALID_CITY = 'BILLING_ADDRESS_INVALID_CITY',
BILLING_ADDRESS_INVALID_PROVINCE = 'BILLING_ADDRESS_INVALID_PROVINCE',
BILLING_ADDRESS_INVALID_COUNTRY = 'BILLING_ADDRESS_INVALID_COUNTRY',
BILLING_ADDRESS_INVALID_PHONE = 'BILLING_ADDRESS_INVALID_PHONE',
BILLING_ADDRESS_INVALID_POSTAL_CODE = 'BILLING_ADDRESS_INVALID_POSTAL_CODE',
}
type Store = AmazonStore | ShopifyStore;
interface AmazonStore {
store: string;
cartLines: AmazonCartLine[];
}
interface ShopifyStore {
store: string;
cartLines: ShopifyCartLine[];
}
export interface AmazonCartLine {
quantity: number;
product: {
id: string;
};
}
export interface ShopifyCartLine {
quantity: number;
variant: {
id: string;
};
}
enum SubmitStoreStatus {
// Submission completed without any issues
COMPLETED = 'COMPLETED',
// Payment issues occurred during the submission
PAYMENT_FAILED = 'PAYMENT_FAILED',
// Other issues occurred during the submission
FAILED = 'FAILED',
}
initialized: boolean
Indicates whether the RyePay has been initialized.
Methods described below are a direct mapping to the Spreedly object. A detailed description can be found here
reload()
validate()
setFieldType(field, type)
setLabel(field, label)
setTitle(field, title)
setNumberFormat(format)
setPlaceholder(field, placeholder)
setStyle(field, css)
transferFocus(field)
toggleAutoComplete()