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.
- package/CHANGELOG.md +10 -0
- package/dist/backlog.js +284 -176
- package/dist/backlog.min.js +1 -1
- package/dist/types/backlog.d.ts +0 -55
- package/dist/types/entity.d.ts +0 -16
- package/dist/types/option.d.ts +1 -30
- package/package.json +1 -1
package/dist/types/entity.d.ts
CHANGED
|
@@ -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;
|
package/dist/types/option.d.ts
CHANGED
|
@@ -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;
|