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

@giteeteam/apps-api

Package Overview
Dependencies
Maintainers
5
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@giteeteam/apps-api - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

6

dist/axios/index.d.ts
/// <reference types="node" />
/// <reference types="node" />
import type { AxiosRequestConfig } from 'axios';
import type { AxiosRequestConfig, AxiosRequestHeaders } from 'axios';
import type http from 'http';

@@ -18,3 +18,3 @@ import type https from 'https';

export declare const axios: (config: AxiosConfig) => Promise<any>;
export { AxiosRequestHeaders } from 'axios';
export { AxiosRequestHeaders };
export declare const requestAppsApi: ({ method, url: _url, data, headers, }: {

@@ -24,3 +24,3 @@ method?: string | undefined;

data?: Record<string, any> | undefined;
headers?: Record<string, any> | undefined;
headers?: AxiosRequestHeaders | undefined;
}) => Promise<any>;

@@ -12,3 +12,3 @@ export type CacheValueType = string | number;

get(key: string): Promise<CacheValueType>;
del(key: string): Promise<void>;
del(...keys: string[]): Promise<void>;
}

@@ -13,5 +13,5 @@ export class Cache {

}
del(key) {
return global.cache.del(key);
del(...keys) {
return global.cache.del(...keys);
}
}

@@ -41,3 +41,3 @@ /* eslint-disable no-var */

get: (key: string) => Promise<CacheValueType>;
del: (key: string) => Promise<void>;
del: (...keys: string[]) => Promise<void>;
};

@@ -44,0 +44,0 @@ var i18n: {

{
"name": "@giteeteam/apps-api",
"version": "0.4.0",
"version": "0.4.1",
"description": "Giteeteam Apps API",

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

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