@pdc/sdk 0.12.3 → 0.12.4

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,6 +1,9 @@
1
+ import { Source } from './Source';
1
2
  import { Writable } from './Writable';
2
3
  export interface BulkUpload {
3
4
  readonly id: number;
5
+ sourceId: number;
6
+ readonly source?: Source;
4
7
  fileName: string;
5
8
  readonly fileSize?: number;
6
9
  sourceKey: string;
@@ -4,7 +4,7 @@ import { Writable } from './Writable';
4
4
  export interface ProposalVersion {
5
5
  readonly id: number;
6
6
  proposalId: number;
7
- readonly sourceId?: number;
7
+ sourceId: number;
8
8
  readonly source?: Source;
9
9
  applicationFormId: number;
10
10
  readonly version: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -1,7 +1,12 @@
1
+ import {
2
+ Source,
3
+ } from './Source';
1
4
  import { Writable } from './Writable';
2
5
 
3
6
  export interface BulkUpload {
4
7
  readonly id: number;
8
+ sourceId: number;
9
+ readonly source?: Source;
5
10
  fileName: string;
6
11
  readonly fileSize?: number;
7
12
  sourceKey: string;
@@ -9,7 +9,7 @@ import { Writable } from './Writable';
9
9
  export interface ProposalVersion {
10
10
  readonly id: number;
11
11
  proposalId: number;
12
- readonly sourceId?: number;
12
+ sourceId: number;
13
13
  readonly source?: Source;
14
14
  applicationFormId: number;
15
15
  readonly version: number;