@pdc/sdk 0.5.1 → 0.6.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.
@@ -0,0 +1,6 @@
1
+ import { ApplicationForm } from './ApplicationForm';
2
+ import { Writable } from './Writable';
3
+ export interface ApplicationFormBundle {
4
+ entries: Array<ApplicationForm>;
5
+ }
6
+ export type WritableApplicationFormBundle = Writable<ApplicationFormBundle>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,5 @@
1
1
  export * from './ApplicationForm';
2
+ export * from './ApplicationFormBundle';
2
3
  export * from './ApplicationFormField';
3
4
  export * from './BaseField';
4
5
  export * from './BulkUpload';
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ApplicationForm"), exports);
18
+ __exportStar(require("./ApplicationFormBundle"), exports);
18
19
  __exportStar(require("./ApplicationFormField"), exports);
19
20
  __exportStar(require("./BaseField"), exports);
20
21
  __exportStar(require("./BulkUpload"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.5.1",
3
+ "version": "0.6.1",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -0,0 +1,15 @@
1
+ import {
2
+ ApplicationForm,
3
+ } from './ApplicationForm';
4
+ import {
5
+ Bundle,
6
+ } from './Bundle';
7
+ import { Writable } from './Writable';
8
+
9
+ export interface ApplicationFormBundle {
10
+ entries: Array<ApplicationForm>;
11
+ }
12
+
13
+ export type WritableApplicationFormBundle = Writable<ApplicationFormBundle>
14
+
15
+
@@ -1,4 +1,5 @@
1
1
  export * from './ApplicationForm';
2
+ export * from './ApplicationFormBundle';
2
3
  export * from './ApplicationFormField';
3
4
  export * from './BaseField';
4
5
  export * from './BulkUpload';