Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ns-loyalty-web
Advanced tools
The description that will amaze and astound your audience when they read it
This library handles the interaction with the service layer for retrieving information about the loyalty program and the user's loyalty information.
All that is needed for adding this to your project is including the library in your package.json like so:
npm i @nuskin/ns-loyalty-web
or
yarn add @nuskin/ns-loyalty-web
Once you have imported the library into your project, you can use it like you see here:
import webLoyalty from '@nuskin/ns-loyalty-web'
webLoyalty.getAllLoyaltyInfo().then(response => {
.
.
.
});
Now you have a loyalty object which can be used for making one of the following requests:
Gets the loyalty rewards points.
Returns a Loyalty data in the following form:
{
"buckets": {
"withinSeven": [],
"withinThirty": 0,
"longTerm": 0
},
"optInStatus": true,
"soonestExpiring": {
"pointsToExpire": 0,
"expirationDate": ""
},
"user": {
"adrParticipant": "NO",
"entityType": "DIST",
"titleParticipant": "NO"
},
"userTier": {
"name": "T1",
"purchaseIncrement": 2500,
"minSpend": 2500,
"purchaseRatio": 0.05,
"redemptionLimit": 0.6,
"daysToExpire": 90,
"spendWithinPeriod": null,
"tierThreshold": null
},
"wallet": {
"available": 0,
"spent": 0,
"spentInPeriod": 0,
"expired": 0,
"lifetimePointsEarned": 0
}
}
Check if the user is eligible to opt-in.
Accepts an optional object value with the following optional property:
Returns a true/false value indicating if the user can opt-in to the Loyalty program.
Opt in the user.
Returns an object with the following properties:
Opt out the user.
Returns an object with the following properties:
Check if user has viewed the terms and conditions.
Returns an object with the following properties:
Sets that the user has viewed the terms and conditions.
Returns an object with the following properties:
We use SemVer for versioning. For the versions available, see the tags on this repository.
FAQs
The description that will amaze and astound your audience when they read it
The npm package ns-loyalty-web receives a total of 1 weekly downloads. As such, ns-loyalty-web popularity was classified as not popular.
We found that ns-loyalty-web demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.