lucid-extension-sdk
Advanced tools
Comparing version 0.0.285 to 0.0.286
import { isString } from '../../checks'; | ||
import { SerializedUpstreamConfig } from './serializedupstreamconfig'; | ||
export type DirectionType = 'inward' | 'outward' | null | undefined; | ||
export declare enum Direction { | ||
Inward = "inward", | ||
Outward = "outward" | ||
} | ||
export type DirectionType = Direction | null | undefined; | ||
export type SerializedSourceForeignKey = { | ||
@@ -5,0 +9,0 @@ 'Id': string; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.isSerializedDataSourceProperties = exports.isSerializedSourceForeignKey = void 0; | ||
exports.isSerializedDataSourceProperties = exports.isSerializedSourceForeignKey = exports.Direction = void 0; | ||
const checks_1 = require("../../checks"); | ||
const validators_1 = require("../../validators/validators"); | ||
const serializedupstreamconfig_1 = require("./serializedupstreamconfig"); | ||
var Direction; | ||
(function (Direction) { | ||
Direction["Inward"] = "inward"; | ||
Direction["Outward"] = "outward"; | ||
})(Direction || (exports.Direction = Direction = {})); | ||
exports.isSerializedSourceForeignKey = (0, validators_1.objectValidator)({ | ||
@@ -8,0 +13,0 @@ 'Id': checks_1.isString, |
@@ -59,2 +59,3 @@ import { isObject, isString } from '../../checks'; | ||
SourceForeignKeys: (x: unknown) => x is import("../../guards").DestructureGuardedTypeObj<{ | ||
/** @ignore until spreadsheet integration is ready for launch (CHART-51946) */ | ||
Id: typeof isString; | ||
@@ -96,2 +97,3 @@ SourceFields: (p1: unknown) => p1 is string[]; | ||
SourceForeignKeys: (x: unknown) => x is import("../../guards").DestructureGuardedTypeObj<{ | ||
/** @ignore until spreadsheet integration is ready for launch (CHART-51946) */ | ||
Id: typeof isString; | ||
@@ -98,0 +100,0 @@ SourceFields: (p1: unknown) => p1 is string[]; |
{ | ||
"name": "lucid-extension-sdk", | ||
"version": "0.0.285", | ||
"version": "0.0.286", | ||
"description": "Utility classes for writing Lucid Software editor extensions", | ||
@@ -5,0 +5,0 @@ "main": "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
785134
18117