
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
@stigg/bulk-import
Advanced tools
After creating your product catalog in Stigg, you can import your existing customers into Stigg.
This tool will manage the import process:
JSON
file.The CLI support import data of customers, subscriptions and feature usage into Stigg.
Create a file customers.json
that contains all the customers.
The file should be in the following schema:
{
"customers": [
{
"customerId": "lorem-ipsum",
"email": "lorem@ipsum.com", // optional
"name": "Lorem-ipsum", // optional
"billingId": "cus_MvdQq1bVD1BQHe", // optional - if an existing customer in Stripe
"paymentMethodId": "pm_1N04AHEdaKWoSZ0OgP78RflV", // required for paid customers
"updatedAt": "2022-01-01T00:00:00.000Z", // optional - indicates the last update of the customer. In case there's already existing customer that was updated after that date, it will skip import this customer
"metadata": {
// optional - set metadata for the customer
"isTest": "true",
},
},
// ...
],
}
Create a file subscriptions.json
that contains all the subscriptions.
{
"subscriptions": [
{
"customerId": "lorem-ipsum",
"planId": "plan-1",
"resourceId": "site-1", // optional - required for multiple subscriptions product
"billingPeriod": "MONTHLY", // optional - required for paid plan
"startDate": "2022-01-01T00:00:00.000Z", // optional - used for backdating
"endDate": "2022-01-01T00:00:00.000Z", // optional - end date for the subscription
"updatedAt": "2022-01-01T00:00:00.000Z", // optional - indicates the last update of the subscription. In case there's already existing subscription that was updated after that date, it will skip import this subscription
"unitQuantity": 5, // optional - required for per-unit paid plan (single chargeable feature)
"billableFeatures": [ // optional - required for per-unit paid plan (multiple chargeable features)
{ "featureId": "feature-seats", "quantity": 5 },
{ "featureId": "feature-projects", "quantity": 25 },
],
"addons": [ // optional - set subscription addons
{ "addonId": "addon-1", "quantity": 6 },
{ "addonId": "addon-2", "quantity": 3 },
],
"metadata": { // optional - set metadata for the subscription
"isTest": "true"
}
},
// ...
]
}
Create a file usage.json
that contains all the features' up-to-date usage.
{
"usages": [
{
"customerId": "lorem-ipsum",
"resourceId": "site-1", // optional - required for multiple subscriptions product
"featureId": "feature-seats",
"usage": 5
}
// ...
]
}
export STIGG_SERVER_API_KEY='<SERVER-API-KEY>'
npx @stigg/bulk-import --customers-file customers.json --subscriptions-file subscriptions.json --usage-file usage.json
FAQs
CLI tool to bulk import customers to Stigg
The npm package @stigg/bulk-import receives a total of 0 weekly downloads. As such, @stigg/bulk-import popularity was classified as not popular.
We found that @stigg/bulk-import demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.