@pdc/sdk 0.13.1 → 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.
@@ -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: number;
11
+ readonly createdBy: string;
12
12
  readonly createdAt: string;
13
13
  }
14
14
  export type WritableBulkUpload = Writable<BulkUpload>;
@@ -6,6 +6,6 @@ export interface Proposal {
6
6
  externalId: string;
7
7
  versions: Array<ProposalVersion>;
8
8
  readonly createdAt: string;
9
- readonly createdBy: number;
9
+ readonly createdBy: string;
10
10
  }
11
11
  export type WritableProposal = Writable<Proposal>;
@@ -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?: number;
13
+ readonly createdBy?: string;
14
14
  }
15
15
  export type WritableProposalVersion = Writable<ProposalVersion>;
@@ -1,6 +1,5 @@
1
1
  import { Writable } from './Writable';
2
2
  export interface User {
3
- readonly id: number;
4
3
  keycloakUserId: string;
5
4
  readonly createdAt: string;
6
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.13.1",
3
+ "version": "0.14.1",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -11,7 +11,7 @@ export interface BulkUpload {
11
11
  readonly fileSize?: number;
12
12
  sourceKey: string;
13
13
  readonly status: BulkUpload.StatusEnum;
14
- readonly createdBy: number;
14
+ readonly createdBy: string;
15
15
  readonly createdAt: string;
16
16
  }
17
17
 
@@ -9,7 +9,7 @@ export interface Proposal {
9
9
  externalId: string;
10
10
  versions: Array<ProposalVersion>;
11
11
  readonly createdAt: string;
12
- readonly createdBy: number;
12
+ readonly createdBy: string;
13
13
  }
14
14
 
15
15
  export type WritableProposal = Writable<Proposal>
@@ -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?: number;
18
+ readonly createdBy?: string;
19
19
  }
20
20
 
21
21
  export type WritableProposalVersion = Writable<ProposalVersion>
package/src/types/User.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import { Writable } from './Writable';
2
2
 
3
3
  export interface User {
4
- readonly id: number;
5
4
  keycloakUserId: string;
6
5
  readonly createdAt: string;
7
6
  }