backlog-js 0.13.6 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -83,13 +83,6 @@ export declare namespace Project {
83
83
  project: Project;
84
84
  updated: string;
85
85
  }
86
- /**
87
- * @deprecated
88
- */
89
- interface Status {
90
- id: number;
91
- name: string;
92
- }
93
86
  interface ProjectStatus {
94
87
  id: number;
95
88
  projectId: number;
@@ -453,15 +446,6 @@ export declare namespace WatchingList {
453
446
  count: number;
454
447
  }
455
448
  }
456
- /**
457
- * @deprecated
458
- */
459
- export declare namespace Group {
460
- /**
461
- * @deprecated
462
- */
463
- type Group = Team.Team;
464
- }
465
449
  export declare namespace Team {
466
450
  interface Team {
467
451
  id: number;
@@ -89,36 +89,6 @@ export declare namespace WatchingList {
89
89
  note: string;
90
90
  }
91
91
  }
92
- export declare namespace Group {
93
- /**
94
- * @deprecated
95
- */
96
- interface GetGroupsParams {
97
- order?: Order;
98
- offset?: number;
99
- count?: number;
100
- }
101
- /**
102
- * @deprecated
103
- */
104
- interface PostGroupsParams {
105
- name: string;
106
- members?: string[];
107
- }
108
- /**
109
- * @deprecated
110
- */
111
- interface PatchGroupParams {
112
- name?: string;
113
- members?: string[];
114
- }
115
- /**
116
- * @deprecated
117
- */
118
- interface PostProjectGroupParams {
119
- groupId: number;
120
- }
121
- }
122
92
  export declare namespace Team {
123
93
  interface GetTeamsParams {
124
94
  order?: Order;
@@ -348,6 +318,7 @@ export declare namespace Issue {
348
318
  startDateUntil?: string;
349
319
  dueDateSince?: string;
350
320
  dueDateUntil?: string;
321
+ hasDueDate?: boolean;
351
322
  id?: number[];
352
323
  parentIssueId?: number[];
353
324
  keyword?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog-js",
3
- "version": "0.13.6",
3
+ "version": "0.14.0",
4
4
  "description": "Backlog API v2 client for browser and node",
5
5
  "main": "dist/backlog.min.js",
6
6
  "types": "dist/types/index.d.ts",