UNPKG

@prismatic-io/spectral

Version:

Utility library for building Prismatic connectors and code-native integrations

12 lines (11 loc) 340 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PerformSafety = void 0; /** * Whether a perform is safe to invoke inline (to populate reference data in the Prismatic UI): * `safe` to run as-is, `notAllowed` to opt out. */ exports.PerformSafety = { SAFE: "safe", NOT_ALLOWED: "notAllowed", };