@tskmgr/common 0.0.2 → 0.0.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tskmgr/common",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "license": "MIT",
5
5
  "main": "./src/index.js",
6
6
  "typings": "./src/index.d.ts"
@@ -2,6 +2,7 @@ import { Run } from '../runs/run';
2
2
  export interface PullRequest {
3
3
  _id: string | any;
4
4
  name: string;
5
+ url: string;
5
6
  runs: Run[];
6
7
  createdAt: Date;
7
8
  updatedAt: Date;
@@ -1,7 +1,9 @@
1
1
  import { TaskPriority } from '../../tasks/task-priority';
2
2
  export declare class CreateRunRequestDto {
3
3
  readonly name: string;
4
- readonly pullRequestId: string;
4
+ readonly url?: string;
5
+ readonly pullRequestName: string;
6
+ readonly pullRequestUrl?: string;
5
7
  readonly type: string;
6
8
  readonly priority?: TaskPriority;
7
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"create-run-request.dto.js","sourceRoot":"","sources":["../../../../../../../libs/common/src/lib/runs/dto/create-run-request.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;CAK/B;AALD,kDAKC"}
1
+ {"version":3,"file":"create-run-request.dto.js","sourceRoot":"","sources":["../../../../../../../libs/common/src/lib/runs/dto/create-run-request.dto.ts"],"names":[],"mappings":";;;AAEA,MAAa,mBAAmB;CAO/B;AAPD,kDAOC"}
@@ -3,6 +3,7 @@ export interface Run {
3
3
  _id: string | any;
4
4
  pullRequest: PullRequest;
5
5
  name: string;
6
+ url: string;
6
7
  type: string;
7
8
  status: string;
8
9
  createdAt: Date;