passkit-generator
Advanced tools
Comparing version 2.0.7 to 2.0.8
/// <reference types="node" /> | ||
export * from "./barcode"; | ||
export * from "./beacon"; | ||
export * from "./location"; | ||
export * from "./field"; | ||
export * from "./nfc"; | ||
export * from "./semantics"; | ||
export * from "./passFields"; | ||
export * from "./personalization"; | ||
export * from "./Barcodes"; | ||
export * from "./Beacons"; | ||
export * from "./Location"; | ||
export * from "./PassFieldContent"; | ||
export * from "./NFC"; | ||
export * from "./SemanticTags"; | ||
export * from "./PassFields"; | ||
export * from "./Personalize"; | ||
import Joi from "joi"; | ||
import { Barcode } from "./barcode"; | ||
import { Location } from "./location"; | ||
import { Beacon } from "./beacon"; | ||
import { NFC } from "./nfc"; | ||
import { Field } from "./field"; | ||
import { PassFields, TransitType } from "./passFields"; | ||
import { Personalization } from "./personalization"; | ||
import { Barcode } from "./Barcodes"; | ||
import { Location } from "./Location"; | ||
import { Beacon } from "./Beacons"; | ||
import { NFC } from "./NFC"; | ||
import { Field } from "./PassFieldContent"; | ||
import { PassFields, TransitType } from "./PassFields"; | ||
import { Personalization } from "./Personalize"; | ||
import { Semantics } from "./SemanticTags"; | ||
export interface Manifest { | ||
@@ -76,2 +77,3 @@ [key: string]: string; | ||
maxDistance?: number; | ||
semantics?: Semantics; | ||
} | ||
@@ -78,0 +80,0 @@ export declare const OverridesSupportedOptions: Joi.ObjectSchema<OverridesSupportedOptions>; |
@@ -5,12 +5,13 @@ "use strict"; | ||
const tslib_1 = require("tslib"); | ||
tslib_1.__exportStar(require("./barcode"), exports); | ||
tslib_1.__exportStar(require("./beacon"), exports); | ||
tslib_1.__exportStar(require("./location"), exports); | ||
tslib_1.__exportStar(require("./field"), exports); | ||
tslib_1.__exportStar(require("./nfc"), exports); | ||
tslib_1.__exportStar(require("./semantics"), exports); | ||
tslib_1.__exportStar(require("./passFields"), exports); | ||
tslib_1.__exportStar(require("./personalization"), exports); | ||
tslib_1.__exportStar(require("./Barcodes"), exports); | ||
tslib_1.__exportStar(require("./Beacons"), exports); | ||
tslib_1.__exportStar(require("./Location"), exports); | ||
tslib_1.__exportStar(require("./PassFieldContent"), exports); | ||
tslib_1.__exportStar(require("./NFC"), exports); | ||
tslib_1.__exportStar(require("./SemanticTags"), exports); | ||
tslib_1.__exportStar(require("./PassFields"), exports); | ||
tslib_1.__exportStar(require("./Personalize"), exports); | ||
const joi_1 = tslib_1.__importDefault(require("joi")); | ||
const debug_1 = tslib_1.__importDefault(require("debug")); | ||
const SemanticTags_1 = require("./SemanticTags"); | ||
const schemaDebug = debug_1.default("Schema"); | ||
@@ -55,2 +56,3 @@ exports.CertificatesSchema = joi_1.default.object() | ||
maxDistance: joi_1.default.number().positive(), | ||
semantics: SemanticTags_1.Semantics, | ||
}) | ||
@@ -57,0 +59,0 @@ .with("webServiceURL", "authenticationToken"); |
{ | ||
"name": "passkit-generator", | ||
"version": "2.0.7", | ||
"version": "2.0.8", | ||
"description": "The easiest way to generate custom Apple Wallet passes in Node.js", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101998
2084