Gathering detailed insights and metrics for @rye-api/rye-pay
Gathering detailed insights and metrics for @rye-api/rye-pay
Gathering detailed insights and metrics for @rye-api/rye-pay
Gathering detailed insights and metrics for @rye-api/rye-pay
TypeScript library containing the Rye payment client required to perform checkout using the Rye API.
npm install @rye-api/rye-pay
Typescript
Module System
rye-pay-0.9.5
Updated on Apr 06, 2024
[Apple Pay] Default to cheapest shipping method
Updated on Mar 14, 2024
[Apple Pay] Allow support for pre-created carts
Updated on Mar 13, 2024
[Apple Pay] Additional enhancements
Updated on Mar 12, 2024
Apple Pay - Allow optional selection of shipping address
Updated on Mar 11, 2024
Apple Pay support for Rye Sync API
Updated on Mar 11, 2024
TypeScript (100%)
Total Downloads
32,440
Last Day
88
Last Week
415
Last Month
1,607
Last Year
22,958
5 Stars
103 Commits
1 Forks
2 Watchers
2 Branches
6 Contributors
Updated on Jan 30, 2025
Minified
Minified + Gzipped
Latest Version
0.9.0
Package Id
@rye-api/rye-pay@0.9.0
Unpacked Size
134.76 kB
Size
32.03 kB
File Count
23
Published on
Apr 06, 2024
Cumulative downloads
Total Downloads
Last Day
54.4%
88
Compared to previous day
Last Week
6.7%
415
Compared to previous week
Last Month
7.7%
1,607
Compared to previous month
Last Year
158.3%
22,958
Compared to previous year
1
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.
1import { RyePay } from '@rye-api/rye-pay'; 2 3const ryePay = new RyePay(); 4ryePay.init(initParams); 5//... 6ryePay.submit(paymentDetails);
initParams
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.
paymentDetails
: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
1export interface SelectedShippingOption { 2 store: string; 3 shippingId: string; 4}
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.
1export interface StorePromoCodes { 2 store: string; 3 promoCodes: string[]; 4}
onCartSubmitted
callback takes an argument of SubmitCartResult
type that provides detail information about the cart submission status.
1interface SubmitCartResult { 2 cart: { 3 // Cart identifier 4 id: string; 5 // Submission result per each store in the cart 6 stores: SubmitStoreResult[]; 7 }; 8 // Common submit errors 9 errors: SubmitCartResultError[]; 10} 11 12interface SubmitStoreResult { 13 // Store information 14 store: Store; 15 // Submission status for this store 16 status: SubmitStoreStatus; 17 // Identifier of the request to track order status 18 requestId?: string; 19 // Store specific errors 20 errors: SubmitStoreResultError[]; 21} 22 23interface SubmitCartResultError { 24 code: SubmitCartResultErrorCode; 25 message: string; 26} 27 28interface SubmitStoreResultError { 29 code: SubmitStoreResultErrorCode; 30 message: string; 31} 32 33enum SubmitStoreResultErrorCode { 34 SUBMIT_STORE_FAILED = 'SUBMIT_STORE_FAILED', 35 PAYMENT_FAILED = 'PAYMENT_FAILED', 36} 37 38enum SubmitCartResultErrorCode { 39 SUBMIT_CART_FAILED = 'SUBMIT_CART_FAILED', 40 BUYER_IDENTITY_MISSING = 'BUYER_IDENTITY_MISSING', 41 BUYER_IDENTITY_INVALID_FIRST_NAME = 'BUYER_IDENTITY_INVALID_FIRST_NAME', 42 BUYER_IDENTITY_INVALID_LAST_NAME = 'BUYER_IDENTITY_INVALID_LAST_NAME', 43 BUYER_IDENTITY_INVALID_ADDRESS = 'BUYER_IDENTITY_INVALID_ADDRESS', 44 BUYER_IDENTITY_INVALID_CITY = 'BUYER_IDENTITY_INVALID_CITY', 45 BUYER_IDENTITY_INVALID_PROVINCE = 'BUYER_IDENTITY_INVALID_PROVINCE', 46 BUYER_IDENTITY_INVALID_COUNTRY = 'BUYER_IDENTITY_INVALID_COUNTRY', 47 BUYER_IDENTITY_INVALID_POSTAL_CODE = 'BUYER_IDENTITY_INVALID_POSTAL_CODE', 48 BUYER_IDENTITY_INVALID_PHONE = 'BUYER_IDENTITY_INVALID_PHONE', 49 BUYER_IDENTITY_INVALID_EMAIL = 'BUYER_IDENTITY_INVALID_EMAIL', 50 BILLING_ADDRESS_INVALID_FIRST_NAME = 'BILLING_ADDRESS_INVALID_FIRST_NAME', 51 BILLING_ADDRESS_INVALID_LAST_NAME = 'BILLING_ADDRESS_INVALID_LAST_NAME', 52 BILLING_ADDRESS_INVALID_ADDRESS = 'BILLING_ADDRESS_INVALID_ADDRESS', 53 BILLING_ADDRESS_INVALID_CITY = 'BILLING_ADDRESS_INVALID_CITY', 54 BILLING_ADDRESS_INVALID_PROVINCE = 'BILLING_ADDRESS_INVALID_PROVINCE', 55 BILLING_ADDRESS_INVALID_COUNTRY = 'BILLING_ADDRESS_INVALID_COUNTRY', 56 BILLING_ADDRESS_INVALID_PHONE = 'BILLING_ADDRESS_INVALID_PHONE', 57 BILLING_ADDRESS_INVALID_POSTAL_CODE = 'BILLING_ADDRESS_INVALID_POSTAL_CODE', 58} 59 60type Store = AmazonStore | ShopifyStore; 61 62interface AmazonStore { 63 store: string; 64 cartLines: AmazonCartLine[]; 65} 66 67interface ShopifyStore { 68 store: string; 69 cartLines: ShopifyCartLine[]; 70} 71 72export interface AmazonCartLine { 73 quantity: number; 74 product: { 75 id: string; 76 }; 77} 78 79export interface ShopifyCartLine { 80 quantity: number; 81 variant: { 82 id: string; 83 }; 84} 85 86enum SubmitStoreStatus { 87 // Submission completed without any issues 88 COMPLETED = 'COMPLETED', 89 // Payment issues occurred during the submission 90 PAYMENT_FAILED = 'PAYMENT_FAILED', 91 // Other issues occurred during the submission 92 FAILED = 'FAILED', 93}
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()
No vulnerabilities found.
No security vulnerabilities found.