@pdc/sdk 0.25.2 → 0.25.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,3 +1,4 @@
1
+ import { PresignedPost } from './PresignedPost';
1
2
  import { S3Bucket } from './S3Bucket';
2
3
  import { Writable } from './Writable';
3
4
  export interface ModelFile {
@@ -8,6 +9,8 @@ export interface ModelFile {
8
9
  size: number;
9
10
  readonly s3BucketName: string;
10
11
  readonly s3Bucket: S3Bucket;
12
+ readonly presignedPost?: PresignedPost;
13
+ downloadUrl: string;
11
14
  readonly createdBy: string;
12
15
  readonly createdAt: string;
13
16
  }
@@ -7,6 +7,7 @@ export interface ProposalFieldValue {
7
7
  readonly applicationFormField: ApplicationFormField;
8
8
  position: number;
9
9
  value: string;
10
+ file?: any;
10
11
  goodAsOf: string;
11
12
  readonly isValid: boolean;
12
13
  readonly createdAt: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.25.2",
3
+ "version": "0.25.4",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -1,3 +1,6 @@
1
+ import {
2
+ PresignedPost,
3
+ } from './PresignedPost';
1
4
  import {
2
5
  S3Bucket,
3
6
  } from './S3Bucket';
@@ -11,6 +14,8 @@ export interface ModelFile {
11
14
  size: number;
12
15
  readonly s3BucketName: string;
13
16
  readonly s3Bucket: S3Bucket;
17
+ readonly presignedPost?: PresignedPost;
18
+ downloadUrl: string;
14
19
  readonly createdBy: string;
15
20
  readonly createdAt: string;
16
21
  }
@@ -10,6 +10,7 @@ export interface ProposalFieldValue {
10
10
  readonly applicationFormField: ApplicationFormField;
11
11
  position: number;
12
12
  value: string;
13
+ file?: any;
13
14
  goodAsOf: string;
14
15
  readonly isValid: boolean;
15
16
  readonly createdAt: string;