Pass Js Versions Save

Apple Wallet Passes generating library for Node.JS

v6.6.3

4 years ago

Rebuld using Typescript 3.7 and new optional chaining feature. No functional changes.

v6.6.0

4 years ago

Fixed NFC datatype mismatch (#235)

6.5.1

4 years ago
  • [FIX 🐛 ] Wait for APN response before resolving #193

v6.5.0

4 years ago

[FEATURE] Added support for sharingProhibited flag [#148]. Thanks to @krivochenko !

v6.4.9

4 years ago

Do not normalize valid URL passed to webServiceURL as string. Closes #127

v6.4.8

4 years ago

Added CRC32 check while unzipping at Template.fromBuffer

v6.4.6

4 years ago

Fixes #108

v6.4.5

4 years ago

Re-parse dates specified as string to allow invalid dates in resulted pass.json. See #85

v6.4.4

4 years ago

Fixed bug with non-Unicode strings in pass.json. Thank you @Asp3ctus !

v6.4.0

4 years ago
  • [Feature 🎉 ] implemented Template.fromBuffer method that much like Template.load allows to load everything but from a Buffer with ZIP file content. For example:
    const s3 = new AWS.S3({ apiVersion: "2006-03-01", region: "us-west-2" });
    const s3file = await s3
    .getObject({
      Bucket: "bucket",
      Key: "pass-template.zip"
    })
    .promise();
    const template = await Template.fromBuffer(s3file.Body);
    
  • [Bug 🐛 ] Fixed creation of passes with localizations set in the Template
  • [Documentation 📚 ] Updated README, thank you @nickasd
  • [Dependencies 📦 ] Replaced color-string (install size) with color-name and custom function (install size)
  • [Dependencies 📦 ] Added event-iterator install size and yauzl install size for Template.fromBuffer implementation