New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@blockprotocol/graph

Package Overview
Dependencies
Maintainers
4
Versions
112
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blockprotocol/graph - npm Package Compare versions

Comparing version 0.3.1-canary-20231207113055 to 0.3.1-canary-20240108132503

1

dist/cjs/non-temporal/graph-block-handler.d.ts

@@ -77,2 +77,3 @@ import { ModuleHandler } from "@blockprotocol/core";

}): Promise<import("@blockprotocol/core").MessageData<QueryDataTypesResult<Subgraph<import("../shared/types.js").DataTypeRootType>>, import("../shared/types.js").ReadOrModifyResourceError>>;
requestLinkedQuery(): Promise<import("@blockprotocol/core").MessageData<null, "NOT_IMPLEMENTED">>;
/** @todo - Reimplement linked queries */

@@ -79,0 +80,0 @@ uploadFile({ data }: {

@@ -50,2 +50,3 @@ import { MessageCallback, MessageReturn } from "@blockprotocol/core";

queryDataTypes: MessageCallback<QueryDataTypesData, null, MessageReturn<QueryDataTypesResult<Subgraph<Temporal, DataTypeRootType>>>, ReadOrModifyResourceError>;
requestLinkedQuery: MessageCallback<null, null, MessageReturn<null>, "NOT_IMPLEMENTED">;
/** @todo - Reimplement linked queries */

@@ -52,0 +53,0 @@ uploadFile: MessageCallback<UploadFileData, null, MessageReturn<UploadFileReturn<Temporal>>, CreateResourceError>;

@@ -77,2 +77,3 @@ import { ModuleHandler } from "@blockprotocol/core";

}): Promise<import("@blockprotocol/core").MessageData<QueryDataTypesResult<Subgraph<import("../shared/types.js").DataTypeRootType>>, import("../shared/types.js").ReadOrModifyResourceError>>;
requestLinkedQuery(): Promise<import("@blockprotocol/core").MessageData<null, "NOT_IMPLEMENTED">>;
/** @todo - Reimplement linked queries */

@@ -79,0 +80,0 @@ uploadFile({ data }: {

@@ -319,2 +319,6 @@ import * as path from 'node:path';

while (dependencyQueue.length > 0) {
// The dependencyQueue can have an undefined value for entity types with no properties
if (!dependencyQueue[0]) {
break;
}
const dependencies = mustBeDefined(dependencyQueue.pop());

@@ -321,0 +325,0 @@ if (flattenedDependencies.has(dependencies.typeId)) {

@@ -226,2 +226,11 @@ import { LitElement } from 'lit';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -228,0 +237,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -226,2 +226,11 @@ import { LitElement } from 'lit';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -228,0 +237,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -350,2 +350,11 @@ import { validateBaseUrl } from '@blockprotocol/type-system/slim';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -352,0 +361,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -350,2 +350,11 @@ import { validateBaseUrl } from '@blockprotocol/type-system/slim';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -352,0 +361,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -77,2 +77,3 @@ import { ModuleHandler } from "@blockprotocol/core";

}): Promise<import("@blockprotocol/core").MessageData<QueryDataTypesResult<Subgraph<import("../shared/types.js").DataTypeRootType>>, import("../shared/types.js").ReadOrModifyResourceError>>;
requestLinkedQuery(): Promise<import("@blockprotocol/core").MessageData<null, "NOT_IMPLEMENTED">>;
/** @todo - Reimplement linked queries */

@@ -79,0 +80,0 @@ uploadFile({ data }: {

@@ -227,2 +227,11 @@ import { useModuleConstructor } from '@blockprotocol/core/react';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -229,0 +238,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -227,2 +227,11 @@ import { useModuleConstructor } from '@blockprotocol/core/react';

}
requestLinkedQuery() {
return this.sendMessage({
message: {
messageName: "requestLinkedQuery",
data: null,
},
respondedToBy: "requestLinkedQueryResponse",
});
}
/** @todo - Reimplement linked queries */

@@ -229,0 +238,0 @@ // createLinkedQuery({ data }: { data?: CreateLinkedQueryData }) {

@@ -50,2 +50,3 @@ import { MessageCallback, MessageReturn } from "@blockprotocol/core";

queryDataTypes: MessageCallback<QueryDataTypesData, null, MessageReturn<QueryDataTypesResult<Subgraph<Temporal, DataTypeRootType>>>, ReadOrModifyResourceError>;
requestLinkedQuery: MessageCallback<null, null, MessageReturn<null>, "NOT_IMPLEMENTED">;
/** @todo - Reimplement linked queries */

@@ -52,0 +53,0 @@ uploadFile: MessageCallback<UploadFileData, null, MessageReturn<UploadFileReturn<Temporal>>, CreateResourceError>;

@@ -77,2 +77,3 @@ import { ModuleHandler } from "@blockprotocol/core";

}): Promise<import("@blockprotocol/core").MessageData<QueryDataTypesResult<Subgraph<import("../shared/types.js").DataTypeRootType>>, import("../shared/types.js").ReadOrModifyResourceError>>;
requestLinkedQuery(): Promise<import("@blockprotocol/core").MessageData<null, "NOT_IMPLEMENTED">>;
/** @todo - Reimplement linked queries */

@@ -79,0 +80,0 @@ uploadFile({ data }: {

2

package.json
{
"name": "@blockprotocol/graph",
"version": "0.3.1-canary-20231207113055",
"version": "0.3.1-canary-20240108132503",
"description": "Implementation of the Block Protocol Graph service specification for blocks and embedding applications",

@@ -5,0 +5,0 @@ "keywords": [

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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