New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

adonis-passkit-webservice

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-passkit-webservice

AdonisJS integration for Apple Wallet web services

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Adonis Passkit WebService

Integrate Apple Wallet Web services in your current AdonisJS integration.

Architecture

Adonis Passkit Webservice, as the name says, wraps Apple Wallet specifications into an Adonis js integration.

It exposes a set of routing groups that will let yourself to dedicate exclusively to the integration of the business logic.

Each plugin represents a subscription to an endpoint defined in Apple Wallet Developer Documentation.

Everything is designed to provide a good developer experience. It is fully compatible with Typescript.

This package is an integration of passkit-webservice-toolkit. Visit it for other integrations.

Installation

$ npm install adonis-passkit-webservice

API Documentation

All the details are available in the project wiki.

Usage example

All the exposed routes work like this:

/** src/start/routes.ts */
import router from "@adonisjs/core/services/router";

router.group(
	(await import("adonis-passkit-webservice/v1/registration.js")).default({
		async onRegister(
			deviceLibraryIdentifier,
			passTypeIdentifier,
			serialNumber,
			pushToken,
		) {
			/** Your implementation */
		},
		async onUnregister(
			deviceLibraryIdentifier,
			passTypeIdentifier,
			serialNumber,
		) {
			/** Your implementation */
		},
		async tokenVerifier(token) {
			/** Your implementation */
			return true;
		},
	}),
);

Keywords

Apple

FAQs

Package last updated on 25 Mar 2026

Did you know?

Socket

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.

Install

Related posts