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

@types/jira-client

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jira-client - npm Package Compare versions

Comparing version 6.21.0 to 6.21.1

62

jira-client/index.d.ts

@@ -21,3 +21,3 @@ // Type definitions for jira-client 6.21

private base: string;
private intermediatePath?: string;
private intermediatePath?: string | undefined;
private strictSSL: boolean;

@@ -970,18 +970,18 @@ private webhookVersion: string;

interface JiraApiOptions {
protocol?: string;
protocol?: string | undefined;
host: string;
port?: string;
username?: string;
password?: string;
apiVersion?: string;
base?: string;
intermediatePath?: string;
strictSSL?: boolean;
port?: string | undefined;
username?: string | undefined;
password?: string | undefined;
apiVersion?: string | undefined;
base?: string | undefined;
intermediatePath?: string | undefined;
strictSSL?: boolean | undefined;
request?: any;
timeout?: number;
webhookVersion?: string;
greenhopperVersion?: string;
bearer?: string;
oauth?: OAuth;
ca?: string;
timeout?: number | undefined;
webhookVersion?: string | undefined;
greenhopperVersion?: string | undefined;
bearer?: string | undefined;
oauth?: OAuth | undefined;
ca?: string | undefined;
}

@@ -994,3 +994,3 @@

access_token_secret: string;
signature_method?: string;
signature_method?: string | undefined;
}

@@ -1085,11 +1085,11 @@

/** [optional] Array of project ids to return metadata for */
projectIds?: string[];
projectIds?: string[] | undefined;
/** [optional] Array of project keys to return metadata for */
projectKeys?: string[];
projectKeys?: string[] | undefined;
/** [optional] Array of issuetype ids to return metadata for */
issuetypeIds?: string[];
issuetypeIds?: string[] | undefined;
/** [optional] Array of issuetype names to return metadata for */
issuetypeNames?: string[];
issuetypeNames?: string[] | undefined;
/** [optional] Include additional information about issue metadata. Valid value is 'projects.issuetypes.fields' */
expand?: string;
expand?: string | undefined;
}

@@ -1109,9 +1109,9 @@

/** [optional - default = 0] The index of the first user to return (0-based) */
startAt?: number;
startAt?: number | undefined;
/** [optional - default = 50] The maximum number of users to return */
maxResults?: number;
maxResults?: number | undefined;
/** [optional - default = true] If true, then active users are included in the results */
includeActive?: boolean;
includeActive?: boolean | undefined;
/** [optional - default = true] If true, then inactive users are included in the results */
includeInactive?: boolean;
includeInactive?: boolean | undefined;
}

@@ -1121,3 +1121,3 @@

/** [optional - default = 0] starting index number */
startAt?: number;
startAt?: number | undefined;
/**

@@ -1128,7 +1128,7 @@ * [optional - default = 50] The maximum number of items to

*/
maxResults?: number;
maxResults?: number | undefined;
/** [optional] array of string names of desired fields */
fields?: string[];
fields?: string[] | undefined;
/** [optional] array of string names of desired expand nodes */
expand?: string[];
expand?: string[] | undefined;
}

@@ -1138,6 +1138,6 @@

pathname: string;
query?: Query;
intermediatePath?: string;
query?: Query | undefined;
intermediatePath?: string | undefined;
}
}
export = JiraApi;
{
"name": "@types/jira-client",
"version": "6.21.0",
"version": "6.21.1",
"description": "TypeScript definitions for jira-client",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jira-client",
"license": "MIT",

@@ -40,4 +41,4 @@ "contributors": [

},
"typesPublisherContentHash": "a0bebd9bb01754d6d306a0e7c11b195cb7ae5cf775b4378799862dbf564ebf3b",
"typeScriptVersion": "3.4"
"typesPublisherContentHash": "a0bc455c8d77746df3b0eec8c9971a9cbff67eb8d8d62a59ff1dbb985b13bbd8",
"typeScriptVersion": "3.6"
}

@@ -11,3 +11,3 @@ # Installation

### Additional Details
* Last updated: Wed, 24 Feb 2021 04:50:23 GMT
* Last updated: Thu, 08 Jul 2021 14:23:35 GMT
* Dependencies: [@types/request](https://npmjs.com/package/@types/request), [@types/node](https://npmjs.com/package/@types/node)

@@ -14,0 +14,0 @@ * Global values: none

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