Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lucid-extension-sdk

Package Overview
Dependencies
Maintainers
2
Versions
320
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lucid-extension-sdk - npm Package Compare versions

Comparing version 0.0.237 to 0.0.238

core/data/datasource/semanticcollection.d.ts

7

dataconnector/datasourceupdatetypes.d.ts

@@ -0,1 +1,2 @@

import { SemanticCollection } from '../core/data/datasource/semanticcollection';
import { UpstreamPatchType } from '../core/data/datasource/upstreampatchtype';

@@ -43,5 +44,9 @@ import { SerializedFieldTypeDefinition } from '../core/data/fieldtypedefinition/fieldtypedefinition';

};
type serializedPropertiesForApi = {
'Represents': SemanticCollection[];
};
export interface SerializedCollectionPatch {
'schema'?: SerializedSchemaForApi;
'itemsPatch': SerializedItemsPatch;
'properties'?: serializedPropertiesForApi;
}

@@ -109,2 +114,4 @@ export declare class ItemsPatchInexhaustive {

patch: ItemsPatch;
/** What the collection implicitly represents **/
represents?: SemanticCollection[];
}

@@ -111,0 +118,0 @@ /** @ignore */

@@ -71,2 +71,7 @@ "use strict";

}
function serializeRepresentsAsPropertyForApi(represents) {
return {
'Represents': represents, // key needs to match 'Represents' key in cake/app/webroot/ts/property/collection/collectionproperties.ts
};
}
function serializeCollectionPatch(patch) {

@@ -76,2 +81,3 @@ return {

'itemsPatch': serializeItemsPatch(patch.patch),
'properties': patch.represents && serializeRepresentsAsPropertyForApi(patch.represents),
};

@@ -78,0 +84,0 @@ }

2

package.json
{
"name": "lucid-extension-sdk",
"version": "0.0.237",
"version": "0.0.238",
"description": "Utility classes for writing Lucid Software editor extensions",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc