Socket
Socket
Sign inDemoInstall

gitlab-fetch

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gitlab-fetch - npm Package Compare versions

Comparing version 0.3.1-dev.10493317 to 0.4.0-dev.13452404

lib/apis/groups.d.ts

2

CHANGELOG.md
# Changelog
## develop
* Fix name of `ListProjectParams#order_by` parameter (was `#orderBy`)
* Add pagination parameters to operations which return lists.
* Added `JiraServiceApi`.

@@ -6,0 +8,0 @@ ## 0.3.0

export * from './branches';
export * from './commit';
export * from './groups';
export * from './hooks';

@@ -4,0 +5,0 @@ export * from './labels';

@@ -8,2 +8,3 @@ "use strict";

__export(require("./commit"));
__export(require("./groups"));
__export(require("./hooks"));

@@ -10,0 +11,0 @@ __export(require("./labels"));

2

lib/apis/projects.d.ts

@@ -7,3 +7,3 @@ import { AbstractApi, Config } from '../common';

visibility?: Visibility;
orderBy?: 'id' | 'name' | 'path' | 'created_at' | 'updated_at' | 'last_activity_at';
order_by?: 'id' | 'name' | 'path' | 'created_at' | 'updated_at' | 'last_activity_at';
sort?: 'asc' | 'desc';

@@ -10,0 +10,0 @@ search?: string;

@@ -19,1 +19,12 @@ import { AbstractApi, Config } from '../common';

}
export interface EnableJiraServiceApi {
url: string;
api_url?: string;
username?: string;
password?: string;
jira_issue_transition_id?: number;
}
export declare class JiraServiceApi extends AbstractServiceApi<CustomIssueTracker, EnableJiraServiceApi> {
constructor(config: Config, id: number);
constructor(config: Config, namespace: string, projectName: string);
}

@@ -29,2 +29,8 @@ "use strict";

exports.CustomIssueTrackerServiceApi = CustomIssueTrackerServiceApi;
class JiraServiceApi extends AbstractServiceApi {
constructor(config, idOrNamespace, projectName) {
super('jira', config, idOrNamespace, projectName);
}
}
exports.JiraServiceApi = JiraServiceApi;
//# sourceMappingURL=services.js.map

@@ -7,2 +7,3 @@ export * from './branch';

export * from './event';
export * from './group';
export * from './hook';

@@ -9,0 +10,0 @@ export * from './issue';

@@ -34,1 +34,9 @@ export interface Service {

}
export interface JiraService extends ActiveService {
properties: {
url: string;
api_url?: string;
username?: string;
jira_issue_transition_id?: number;
};
}
{
"name": "gitlab-fetch",
"version": "0.3.1-dev.10493317",
"version": "0.4.0-dev.13452404",
"author": "Jay Anslow <jay@anslow.me.uk>",

@@ -5,0 +5,0 @@ "license": "MIT",

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