@pdc/sdk 0.12.5 → 0.14.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.
- package/.openapi-generator/VERSION +1 -1
- package/dist/types/BulkUpload.d.ts +1 -1
- package/dist/types/Proposal.d.ts +1 -1
- package/dist/types/ProposalVersion.d.ts +1 -1
- package/dist/types/User.d.ts +1 -2
- package/package.json +1 -1
- package/src/types/BulkUpload.ts +1 -1
- package/src/types/Proposal.ts +1 -1
- package/src/types/ProposalVersion.ts +1 -1
- package/src/types/User.ts +1 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.8.0
|
|
@@ -8,7 +8,7 @@ export interface BulkUpload {
|
|
|
8
8
|
readonly fileSize?: number;
|
|
9
9
|
sourceKey: string;
|
|
10
10
|
readonly status: BulkUpload.StatusEnum;
|
|
11
|
-
readonly createdBy:
|
|
11
|
+
readonly createdBy: string;
|
|
12
12
|
readonly createdAt: string;
|
|
13
13
|
}
|
|
14
14
|
export type WritableBulkUpload = Writable<BulkUpload>;
|
package/dist/types/Proposal.d.ts
CHANGED
|
@@ -10,6 +10,6 @@ export interface ProposalVersion {
|
|
|
10
10
|
readonly version: number;
|
|
11
11
|
fieldValues: Array<ProposalFieldValue>;
|
|
12
12
|
readonly createdAt: string;
|
|
13
|
-
readonly createdBy?:
|
|
13
|
+
readonly createdBy?: string;
|
|
14
14
|
}
|
|
15
15
|
export type WritableProposalVersion = Writable<ProposalVersion>;
|
package/dist/types/User.d.ts
CHANGED
package/package.json
CHANGED
package/src/types/BulkUpload.ts
CHANGED
package/src/types/Proposal.ts
CHANGED
|
@@ -15,7 +15,7 @@ export interface ProposalVersion {
|
|
|
15
15
|
readonly version: number;
|
|
16
16
|
fieldValues: Array<ProposalFieldValue>;
|
|
17
17
|
readonly createdAt: string;
|
|
18
|
-
readonly createdBy?:
|
|
18
|
+
readonly createdBy?: string;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
export type WritableProposalVersion = Writable<ProposalVersion>
|