@pdc/sdk 0.12.3 → 0.12.5
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.
|
@@ -4,11 +4,12 @@ import { Writable } from './Writable';
|
|
|
4
4
|
export interface ProposalVersion {
|
|
5
5
|
readonly id: number;
|
|
6
6
|
proposalId: number;
|
|
7
|
-
|
|
7
|
+
sourceId: number;
|
|
8
8
|
readonly source?: Source;
|
|
9
9
|
applicationFormId: number;
|
|
10
10
|
readonly version: number;
|
|
11
11
|
fieldValues: Array<ProposalFieldValue>;
|
|
12
12
|
readonly createdAt: string;
|
|
13
|
+
readonly createdBy?: number;
|
|
13
14
|
}
|
|
14
15
|
export type WritableProposalVersion = Writable<ProposalVersion>;
|
package/package.json
CHANGED
package/src/types/BulkUpload.ts
CHANGED
|
@@ -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,12 +9,13 @@ import { Writable } from './Writable';
|
|
|
9
9
|
export interface ProposalVersion {
|
|
10
10
|
readonly id: number;
|
|
11
11
|
proposalId: number;
|
|
12
|
-
|
|
12
|
+
sourceId: number;
|
|
13
13
|
readonly source?: Source;
|
|
14
14
|
applicationFormId: number;
|
|
15
15
|
readonly version: number;
|
|
16
16
|
fieldValues: Array<ProposalFieldValue>;
|
|
17
17
|
readonly createdAt: string;
|
|
18
|
+
readonly createdBy?: number;
|
|
18
19
|
}
|
|
19
20
|
|
|
20
21
|
export type WritableProposalVersion = Writable<ProposalVersion>
|