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

@qiwi/substrate-types

Package Overview
Dependencies
Maintainers
5
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qiwi/substrate-types - npm Package Compare versions

Comparing version 1.51.0 to 1.52.0

4

buildstamp.json
{
"git": {
"commitId": "d824c39e5f7f51fe51ffd437964afe03d4f6ce69",
"commitId": "5162a858907d057000384f22992f933cc5980fba",
"repoUrl": "https://github.com/qiwi/substrate.git",
"repoName": "qiwi/substrate"
},
"date": "2021-04-21T14:49:53.057Z"
"date": "2021-05-13T09:56:16.212Z"
}

@@ -0,1 +1,8 @@

# @qiwi/substrate-types [1.52.0](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.51.0...@qiwi/substrate-types@1.52.0) (2021-05-13)
### Features
* export http request & response ([#450](https://github.com/qiwi/substrate/issues/450)) ([5162a85](https://github.com/qiwi/substrate/commit/5162a858907d057000384f22992f933cc5980fba))
# @qiwi/substrate-types [1.51.0](https://github.com/qiwi/substrate/compare/@qiwi/substrate-types@1.50.0...@qiwi/substrate-types@1.51.0) (2021-04-21)

@@ -2,0 +9,0 @@

@@ -96,2 +96,4 @@ /**

HttpMethod,
IHttpResponse,
IHttpRequest,
} from "@qiwi/substrate-types/target/es5/IHttpClient";

@@ -227,2 +229,4 @@

HttpMethod,
IHttpResponse as HttpResponse,
IHttpRequest as HttpRequest,
} from "@qiwi/substrate-types/target/es5/IHttpClient";

@@ -744,3 +748,3 @@

}
declare interface IHttpRequest {
declare export interface IHttpRequest {
url?: string;

@@ -788,3 +792,2 @@ method?: $Values<typeof HttpMethod>;

declare export type IHttpRequestProvider = IFetch<> | IHttpClient<>;
declare export {};
}

@@ -791,0 +794,0 @@

{
"name": "@qiwi/substrate-types",
"version": "1.51.0",
"version": "1.52.0",
"main": "target/es5/index.js",

@@ -44,9 +44,9 @@ "source": "target/ts/index.ts",

"@types/axios": "0.14.0",
"@types/bluebird": "3.5.33",
"@types/bluebird": "3.5.34",
"@types/config": "0.0.38",
"@types/jest": "26.0.22",
"@types/jest": "26.0.23",
"@types/lodash": "4.14.168",
"@types/node": "14.14.41",
"@types/node": "14.14.45",
"@types/parsimmon": "1.10.6",
"@types/underscore": "1.11.1",
"@types/underscore": "1.11.2",
"axios": "0.21.1",

@@ -53,0 +53,0 @@ "bluebird": "3.7.2",

@@ -23,3 +23,3 @@ export { IStringMap as StringMap } from './IStringMap';

export { IPool as Pool, IPooledObject as PooledObject, IPooledObjectFactory as PooledObjectFactory, IPooledObjectStatus as PooledObjectStatus, } from './IPool';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, } from './IHttpClient';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, IHttpResponse as HttpResponse, IHttpRequest as HttpRequest, } from './IHttpClient';
export { IClientEventDto as ClientEventDto, IClientEventMeta as ClientEventMeta, EnvironmentProfile, } from './IClientEventDto';

@@ -26,0 +26,0 @@ export { INormalValue as NormalValue, IIdentified as Identified, IMetaTyped as MetaTyped, IMetaTypedValue as MetaTypedValue, IWrappedValue as WrappedValue, ITyped as Typed, ITypedValue as TypedValue, IMeted as Meted, IMetedValue as MetedValue, } from './INormalValue';

@@ -23,3 +23,3 @@ export { IStringMap } from './IStringMap';

export { IPool, IPooledObject, IPooledObjectFactory, IPooledObjectStatus, } from './IPool';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, } from './IHttpClient';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, IHttpResponse, IHttpRequest, } from './IHttpClient';
export { IClientEventDto, IClientEventMeta, EnvironmentProfile, } from './IClientEventDto';

@@ -26,0 +26,0 @@ export { INormalValue, IIdentified, IMetaTyped, IMetaTypedValue, IWrappedValue, ITyped, ITypedValue, IMeted, IMetedValue, } from './INormalValue';

@@ -25,3 +25,3 @@ import { IPromise } from './IPromise';

}
interface IHttpRequest {
export interface IHttpRequest {
url?: string;

@@ -53,2 +53,1 @@ method?: HttpMethod;

export declare type IHttpRequestProvider = IFetch | IHttpClient;
export {};

@@ -23,3 +23,3 @@ export { IStringMap as StringMap } from './IStringMap';

export { IPool as Pool, IPooledObject as PooledObject, IPooledObjectFactory as PooledObjectFactory, IPooledObjectStatus as PooledObjectStatus, } from './IPool';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, } from './IHttpClient';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, IHttpResponse as HttpResponse, IHttpRequest as HttpRequest, } from './IHttpClient';
export { IClientEventDto as ClientEventDto, IClientEventMeta as ClientEventMeta, EnvironmentProfile, } from './IClientEventDto';

@@ -26,0 +26,0 @@ export { INormalValue as NormalValue, IIdentified as Identified, IMetaTyped as MetaTyped, IMetaTypedValue as MetaTypedValue, IWrappedValue as WrappedValue, ITyped as Typed, ITypedValue as TypedValue, IMeted as Meted, IMetedValue as MetedValue, } from './INormalValue';

@@ -23,3 +23,3 @@ export { IStringMap } from './IStringMap';

export { IPool, IPooledObject, IPooledObjectFactory, IPooledObjectStatus, } from './IPool';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, } from './IHttpClient';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, IHttpResponse, IHttpRequest, } from './IHttpClient';
export { IClientEventDto, IClientEventMeta, EnvironmentProfile, } from './IClientEventDto';

@@ -26,0 +26,0 @@ export { INormalValue, IIdentified, IMetaTyped, IMetaTypedValue, IWrappedValue, ITyped, ITypedValue, IMeted, IMetedValue, } from './INormalValue';

@@ -25,3 +25,3 @@ import { IPromise } from './IPromise';

}
interface IHttpRequest {
export interface IHttpRequest {
url?: string;

@@ -53,2 +53,1 @@ method?: HttpMethod;

export declare type IHttpRequestProvider = IFetch | IHttpClient;
export {};

@@ -41,2 +41,4 @@ export { IStringMap as StringMap } from './IStringMap'

HttpMethod,
IHttpResponse as HttpResponse,
IHttpRequest as HttpRequest,
} from './IHttpClient'

@@ -43,0 +45,0 @@ export {

@@ -41,2 +41,4 @@ export { IStringMap } from './IStringMap'

HttpMethod,
IHttpResponse,
IHttpRequest,
} from './IHttpClient'

@@ -43,0 +45,0 @@ export {

@@ -30,3 +30,3 @@ import { IPromise } from './IPromise'

interface IHttpRequest {
export interface IHttpRequest {
url?: string

@@ -33,0 +33,0 @@ method?: HttpMethod

@@ -8,2 +8,1 @@ export type INil = null | undefined

export type INilable<T = any> = T | INil

@@ -33,3 +33,3 @@ // Generated by dts-bundle v0.7.5

export { IPool, IPooledObject, IPooledObjectFactory, IPooledObjectStatus, } from '@qiwi/substrate-types/target/es5/IPool';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, } from '@qiwi/substrate-types/target/es5/IHttpClient';
export { IHttpClient, IFetch, IHttpRequestProvider, HttpMethod, IHttpResponse, IHttpRequest, } from '@qiwi/substrate-types/target/es5/IHttpClient';
export { IClientEventDto, IClientEventMeta, EnvironmentProfile, } from '@qiwi/substrate-types/target/es5/IClientEventDto';

@@ -70,3 +70,3 @@ export { INormalValue, IIdentified, IMetaTyped, IMetaTypedValue, IWrappedValue, ITyped, ITypedValue, IMeted, IMetedValue, } from '@qiwi/substrate-types/target/es5/INormalValue';

export { IPool as Pool, IPooledObject as PooledObject, IPooledObjectFactory as PooledObjectFactory, IPooledObjectStatus as PooledObjectStatus, } from '@qiwi/substrate-types/target/es5/IPool';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, } from '@qiwi/substrate-types/target/es5/IHttpClient';
export { IHttpClient as HttpClient, IFetch as Fetch, IHttpRequestProvider as HttpRequestProvider, HttpMethod, IHttpResponse as HttpResponse, IHttpRequest as HttpRequest, } from '@qiwi/substrate-types/target/es5/IHttpClient';
export { IClientEventDto as ClientEventDto, IClientEventMeta as ClientEventMeta, EnvironmentProfile, } from '@qiwi/substrate-types/target/es5/IClientEventDto';

@@ -395,3 +395,3 @@ export { INormalValue as NormalValue, IIdentified as Identified, IMetaTyped as MetaTyped, IMetaTypedValue as MetaTypedValue, IWrappedValue as WrappedValue, ITyped as Typed, ITypedValue as TypedValue, IMeted as Meted, IMetedValue as MetedValue, } from '@qiwi/substrate-types/target/es5/INormalValue';

}
interface IHttpRequest {
export interface IHttpRequest {
url?: string;

@@ -423,3 +423,2 @@ method?: HttpMethod;

export type IHttpRequestProvider = IFetch | IHttpClient;
export {};
}

@@ -426,0 +425,0 @@

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