@pdc/sdk 0.25.5 → 0.26.1

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.
@@ -1,5 +1,6 @@
1
1
  import { Funder } from './Funder';
2
2
  import { Source } from './Source';
3
+ import { User } from './User';
3
4
  import { Writable } from './Writable';
4
5
  export interface BulkUploadTask {
5
6
  readonly id: number;
@@ -13,6 +14,7 @@ export interface BulkUploadTask {
13
14
  attachmentsArchiveFile?: any;
14
15
  readonly status: BulkUploadTask.StatusEnum;
15
16
  readonly createdBy: string;
17
+ readonly createdByUser: User;
16
18
  readonly createdAt: string;
17
19
  logs: Array<string>;
18
20
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.25.5",
3
+ "version": "0.26.1",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -4,6 +4,9 @@ import {
4
4
  import {
5
5
  Source,
6
6
  } from './Source';
7
+ import {
8
+ User,
9
+ } from './User';
7
10
  import { Writable } from './Writable';
8
11
 
9
12
  export interface BulkUploadTask {
@@ -18,6 +21,7 @@ export interface BulkUploadTask {
18
21
  attachmentsArchiveFile?: any;
19
22
  readonly status: BulkUploadTask.StatusEnum;
20
23
  readonly createdBy: string;
24
+ readonly createdByUser: User;
21
25
  readonly createdAt: string;
22
26
  logs: Array<string>;
23
27
  }