@pdc/sdk 0.16.3 → 0.16.7

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,8 +1,11 @@
1
+ import { ProposalFieldValue } from './ProposalFieldValue';
1
2
  import { Writable } from './Writable';
2
3
  export interface Changemaker {
3
4
  readonly id: number;
4
5
  taxId: string;
5
6
  name: string;
7
+ keycloakOrganizationId?: string;
6
8
  readonly createdAt: string;
9
+ fields: Array<ProposalFieldValue>;
7
10
  }
8
11
  export type WritableChangemaker = Writable<Changemaker>;
@@ -2,6 +2,7 @@ import { Writable } from './Writable';
2
2
  export interface DataProvider {
3
3
  shortCode?: string;
4
4
  name: string;
5
+ keycloakOrganizationId?: string;
5
6
  readonly createdAt: string;
6
7
  }
7
8
  export type WritableDataProvider = Writable<DataProvider>;
@@ -2,6 +2,7 @@ import { Writable } from './Writable';
2
2
  export interface Funder {
3
3
  shortCode?: string;
4
4
  name: string;
5
+ keycloakOrganizationId?: string;
5
6
  readonly createdAt: string;
6
7
  }
7
8
  export type WritableFunder = Writable<Funder>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.16.3",
3
+ "version": "0.16.7",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -1,10 +1,15 @@
1
+ import {
2
+ ProposalFieldValue,
3
+ } from './ProposalFieldValue';
1
4
  import { Writable } from './Writable';
2
5
 
3
6
  export interface Changemaker {
4
7
  readonly id: number;
5
8
  taxId: string;
6
9
  name: string;
10
+ keycloakOrganizationId?: string;
7
11
  readonly createdAt: string;
12
+ fields: Array<ProposalFieldValue>;
8
13
  }
9
14
 
10
15
  export type WritableChangemaker = Writable<Changemaker>
@@ -3,6 +3,7 @@ import { Writable } from './Writable';
3
3
  export interface DataProvider {
4
4
  shortCode?: string;
5
5
  name: string;
6
+ keycloakOrganizationId?: string;
6
7
  readonly createdAt: string;
7
8
  }
8
9
 
@@ -3,6 +3,7 @@ import { Writable } from './Writable';
3
3
  export interface Funder {
4
4
  shortCode?: string;
5
5
  name: string;
6
+ keycloakOrganizationId?: string;
6
7
  readonly createdAt: string;
7
8
  }
8
9