
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
washday-sdk
Advanced tools
Official JavaScript/TypeScript SDK for the Washday API. Provides easy-to-use methods for integrating Washday's laundry management platform into your applications.
npm install washday-sdk
import { WashdayClient } from 'washday-sdk';
// Initialize the client
const client = new WashdayClient('your-api-token');
// Example: Clock in an employee
await client.attendance.clockIn({
storeId: 'store-id',
notes: 'Starting shift'
});
// Example: Get orders
const orders = await client.orders.getList({
storeId: 'store-id',
status: 'pending'
});
// Example: Create a customer
const customer = await client.customers.create({
name: 'John Doe',
email: 'john@example.com',
phone: '+1234567890'
});
For complete documentation, examples, and API reference, visit:
The documentation includes:
washday-sdk/
βββ src/
β βββ api/ # API endpoint modules
β βββ interfaces/ # TypeScript interfaces
β βββ utils/ # Utility functions
βββ docs/ # π Complete documentation
β βββ modules/ # Module-specific guides
β βββ examples/ # Code examples
βββ dist/ # Compiled JavaScript
// Using API token (recommended)
const client = new WashdayClient('your-api-token');
// The token will be automatically included in all requests
# Install dependencies
npm install
# Build the SDK
npm run build
# Run tests
npm test
Module | Description | Documentation |
---|---|---|
attendance | Employee time tracking | π Guide |
orders | Order management | π Guide |
customers | Customer data | π Guide |
products | Product catalog | π Guide |
stores | Store settings | π Guide |
staff | Staff management | π Guide |
inventory | Stock management | π Guide |
reports | Analytics & reports | π Guide |
cashups | Cash register | π Guide |
userId
in getHistory/getStatus, storeId
in clockOut)ISC License - see LICENSE file for details.
FAQs
Washday utilities functions and API
The npm package washday-sdk receives a total of 158 weekly downloads. As such, washday-sdk popularity was classified as not popular.
We found that washday-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.