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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog-js",
3
- "version": "0.13.5",
3
+ "version": "0.13.7",
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",