@canvas-js/interfaces
Advanced tools
Comparing version 0.0.17 to 0.0.18
export declare type Chain = "eth" | "cosmos" | "solana" | "substrate"; | ||
export declare type ChainId = number; | ||
export declare type ChainId = number | string; | ||
export declare type ContractMetadata = { | ||
@@ -4,0 +4,0 @@ chain: Chain; |
@@ -6,1 +6,8 @@ export * from "./sessions.js"; | ||
export * from "./signers.js"; | ||
import type { Session } from "./sessions.js"; | ||
import type { Action } from "./actions.js"; | ||
export declare type Message = ({ | ||
type: "session"; | ||
} & Session) | ({ | ||
type: "action"; | ||
} & Action); |
export declare type ModelType = "boolean" | "string" | "integer" | "float" | "datetime"; | ||
export declare type IndexType = string[]; | ||
export declare type ModelValue = null | boolean | number | string; | ||
export declare type Model = Record<string, ModelType> & { | ||
export declare type Model = { | ||
id: "string"; | ||
updated_at: "datetime"; | ||
indexes?: IndexType; | ||
}; | ||
} & Record<string, ModelType>; |
{ | ||
"name": "@canvas-js/interfaces", | ||
"version": "0.0.17", | ||
"version": "0.0.18", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "author": "Canvas Technology Corporation (https://canvas.xyz)", |
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
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
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
5528
155