@pdc/sdk 0.3.2 → 0.4.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.
@@ -2,7 +2,6 @@ import { ProposalVersion } from './ProposalVersion';
2
2
  import { Writable } from './Writable';
3
3
  export interface Proposal {
4
4
  readonly id: number;
5
- applicantId: number;
6
5
  opportunityId: number;
7
6
  externalId: string;
8
7
  readonly versions?: Array<ProposalVersion>;
@@ -1,4 +1,3 @@
1
- export * from './Applicant';
2
1
  export * from './ApplicationForm';
3
2
  export * from './ApplicationFormField';
4
3
  export * from './BaseField';
@@ -14,7 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./Applicant"), exports);
18
17
  __exportStar(require("./ApplicationForm"), exports);
19
18
  __exportStar(require("./ApplicationFormField"), exports);
20
19
  __exportStar(require("./BaseField"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.3.2",
3
+ "version": "0.4.1",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -5,7 +5,6 @@ import { Writable } from './Writable';
5
5
 
6
6
  export interface Proposal {
7
7
  readonly id: number;
8
- applicantId: number;
9
8
  opportunityId: number;
10
9
  externalId: string;
11
10
  readonly versions?: Array<ProposalVersion>;
@@ -1,4 +1,3 @@
1
- export * from './Applicant';
2
1
  export * from './ApplicationForm';
3
2
  export * from './ApplicationFormField';
4
3
  export * from './BaseField';
@@ -1,8 +0,0 @@
1
- import { Writable } from './Writable';
2
- export interface Applicant {
3
- readonly id: number;
4
- externalId: string;
5
- optedIn: boolean;
6
- readonly createdAt: Date;
7
- }
8
- export type WritableApplicant = Writable<Applicant>;
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,12 +0,0 @@
1
- import { Writable } from './Writable';
2
-
3
- export interface Applicant {
4
- readonly id: number;
5
- externalId: string;
6
- optedIn: boolean;
7
- readonly createdAt: Date;
8
- }
9
-
10
- export type WritableApplicant = Writable<Applicant>
11
-
12
-