🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

@osmonauts/types

Package Overview
Dependencies
Maintainers
2
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@osmonauts/types - npm Package Compare versions

Comparing version

to
0.34.0

4

package.json
{
"name": "@osmonauts/types",
"version": "0.33.1",
"version": "0.34.0",
"description": "Telescope types",

@@ -81,3 +81,3 @@ "author": "Dan Lynch <pyramation@gmail.com>",

},
"gitHead": "96be875f3d933ae5c4a0a534823c2bc74df6bce8"
"gitHead": "a60b1949a3536d4fa7474f8cf31fbf252646a940"
}

@@ -133,7 +133,7 @@ export interface ProtoEnum {

}
export declare type TraverseImportNames = Record<string, Record<string, string>>;
export declare type TraverseImport = Record<string, string[]>;
export declare type TraverseAccept = Record<string, string[]>;
export declare type TraverseImplement = Record<string, string[]>;
export declare type TraverseExport = Record<string, boolean>;
export type TraverseImportNames = Record<string, Record<string, string>>;
export type TraverseImport = Record<string, string[]>;
export type TraverseAccept = Record<string, string[]>;
export type TraverseImplement = Record<string, string[]>;
export type TraverseExport = Record<string, boolean>;
export interface TypeUrlRef {

@@ -150,3 +150,3 @@ typeUrl: string;

}
export declare type TraversedProtoRoot = ProtoRoot & {
export type TraversedProtoRoot = ProtoRoot & {
parsedImports: TraverseImport;

@@ -159,5 +159,5 @@ parsedExports: TraverseExport;

};
export declare type InterfaceTypeUrlMap = Record<string, TraverseTypeUrlRef[]>;
export declare type TraversalSymbol = TraverseLocalSymbol & {
export type InterfaceTypeUrlMap = Record<string, TraverseTypeUrlRef[]>;
export type TraversalSymbol = TraverseLocalSymbol & {
ref: string;
};

@@ -135,2 +135,5 @@ import { TSBuilderInput } from '@cosmwasm/ts-codegen';

include?: {
/**
* @deprecated in favor of packages and protos supporting minimatch
*/
patterns?: string[];

@@ -144,2 +147,5 @@ packages?: string[];

include?: {
/**
* @deprecated in favor of packages and protos supporting minimatch
*/
patterns?: string[];

@@ -153,2 +159,5 @@ packages?: string[];

include?: {
/**
* @deprecated in favor of packages and protos supporting minimatch
*/
patterns?: string[];

@@ -163,5 +172,5 @@ packages?: string[];

}
export declare type TelescopeOptions = TelescopeOpts & TelescopePackageOpts;
export declare type TelescopeOption = keyof TelescopeOpts;
export type TelescopeOptions = TelescopeOpts & TelescopePackageOpts;
export type TelescopeOption = keyof TelescopeOpts;
export declare const defaultTelescopeOptions: TelescopeOptions;
export {};