backlog-js 0.13.5 → 0.13.7
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 +308 -89
- package/dist/backlog.min.js +1 -1
- package/dist/types/backlog.d.ts +16 -0
- package/dist/types/entity.d.ts +43 -0
- package/dist/types/option.d.ts +11 -0
- package/package.json +1 -1
package/dist/types/option.d.ts
CHANGED
|
@@ -12,6 +12,16 @@ export declare namespace Notification {
|
|
|
12
12
|
resourceAlreadyRead: boolean;
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
+
export declare namespace Document {
|
|
16
|
+
interface GetDocumentsParams {
|
|
17
|
+
projectId?: number[];
|
|
18
|
+
keyword?: string;
|
|
19
|
+
sort?: "created" | "updated";
|
|
20
|
+
order?: Order;
|
|
21
|
+
offset: number;
|
|
22
|
+
count?: number;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
15
25
|
export declare namespace Space {
|
|
16
26
|
interface GetActivitiesParams {
|
|
17
27
|
activityTypeId?: Types.ActivityType[];
|
|
@@ -338,6 +348,7 @@ export declare namespace Issue {
|
|
|
338
348
|
startDateUntil?: string;
|
|
339
349
|
dueDateSince?: string;
|
|
340
350
|
dueDateUntil?: string;
|
|
351
|
+
hasDueDate?: boolean;
|
|
341
352
|
id?: number[];
|
|
342
353
|
parentIssueId?: number[];
|
|
343
354
|
keyword?: string;
|