@pdc/sdk 0.21.1 → 0.22.2

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.
Files changed (47) hide show
  1. package/.openapi-generator/FILES +8 -0
  2. package/dist/types/BaseFieldLocalization.d.ts +1 -1
  3. package/dist/types/DataProvider.d.ts +2 -2
  4. package/dist/types/Funder.d.ts +2 -1
  5. package/dist/types/FunderCollaborativeInvitation.d.ts +16 -0
  6. package/dist/types/FunderCollaborativeInvitation.js +12 -0
  7. package/dist/types/FunderCollaborativeInvitationBundle.d.ts +7 -0
  8. package/dist/types/FunderCollaborativeInvitationBundle.js +2 -0
  9. package/dist/types/FunderCollaborativeMember.d.ts +8 -0
  10. package/dist/types/FunderCollaborativeMember.js +2 -0
  11. package/dist/types/FunderCollaborativeMemberBundle.d.ts +7 -0
  12. package/dist/types/FunderCollaborativeMemberBundle.js +2 -0
  13. package/dist/types/OpportunityPermission.d.ts +4 -0
  14. package/dist/types/OpportunityPermission.js +2 -0
  15. package/dist/types/Organization.d.ts +9 -0
  16. package/dist/types/Organization.js +2 -0
  17. package/dist/types/Proposal.d.ts +2 -0
  18. package/dist/types/ProposalFieldValue.d.ts +1 -1
  19. package/dist/types/Source.d.ts +0 -1
  20. package/dist/types/UserDataProviderPermission.d.ts +1 -1
  21. package/dist/types/UserGroupChangemakerPermission.d.ts +1 -1
  22. package/dist/types/UserGroupDataProviderPermission.d.ts +1 -1
  23. package/dist/types/UserGroupOpportunityPermission.d.ts +12 -0
  24. package/dist/types/UserGroupOpportunityPermission.js +2 -0
  25. package/dist/types/UserOpportunityPermission.d.ts +12 -0
  26. package/dist/types/UserOpportunityPermission.js +2 -0
  27. package/dist/types/index.d.ts +8 -0
  28. package/dist/types/index.js +8 -0
  29. package/package.json +1 -1
  30. package/src/types/BaseFieldLocalization.ts +1 -1
  31. package/src/types/DataProvider.ts +2 -2
  32. package/src/types/Funder.ts +2 -1
  33. package/src/types/FunderCollaborativeInvitation.ts +19 -0
  34. package/src/types/FunderCollaborativeInvitationBundle.ts +13 -0
  35. package/src/types/FunderCollaborativeMember.ts +12 -0
  36. package/src/types/FunderCollaborativeMemberBundle.ts +13 -0
  37. package/src/types/OpportunityPermission.ts +8 -0
  38. package/src/types/Organization.ts +17 -0
  39. package/src/types/Proposal.ts +4 -0
  40. package/src/types/ProposalFieldValue.ts +1 -1
  41. package/src/types/Source.ts +0 -1
  42. package/src/types/UserDataProviderPermission.ts +1 -1
  43. package/src/types/UserGroupChangemakerPermission.ts +1 -1
  44. package/src/types/UserGroupDataProviderPermission.ts +1 -1
  45. package/src/types/UserGroupOpportunityPermission.ts +17 -0
  46. package/src/types/UserOpportunityPermission.ts +17 -0
  47. package/src/types/index.ts +8 -0
@@ -22,8 +22,14 @@ src/types/DataProvider.ts
22
22
  src/types/DataProviderBundle.ts
23
23
  src/types/Funder.ts
24
24
  src/types/FunderBundle.ts
25
+ src/types/FunderCollaborativeInvitation.ts
26
+ src/types/FunderCollaborativeInvitationBundle.ts
27
+ src/types/FunderCollaborativeMember.ts
28
+ src/types/FunderCollaborativeMemberBundle.ts
25
29
  src/types/Opportunity.ts
26
30
  src/types/OpportunityBundle.ts
31
+ src/types/OpportunityPermission.ts
32
+ src/types/Organization.ts
27
33
  src/types/PartialChangemaker.ts
28
34
  src/types/PdcError.ts
29
35
  src/types/Permission.ts
@@ -47,6 +53,8 @@ src/types/UserFunderPermission.ts
47
53
  src/types/UserGroupChangemakerPermission.ts
48
54
  src/types/UserGroupDataProviderPermission.ts
49
55
  src/types/UserGroupFunderPermission.ts
56
+ src/types/UserGroupOpportunityPermission.ts
57
+ src/types/UserOpportunityPermission.ts
50
58
  src/types/UserPermissions.ts
51
59
  src/types/Writable.ts
52
60
  src/types/index.ts
@@ -3,7 +3,7 @@ export interface BaseFieldLocalization {
3
3
  baseFieldShortCode: string;
4
4
  readonly language: string;
5
5
  label: string;
6
- description?: string;
6
+ description: string;
7
7
  createdAt?: string;
8
8
  }
9
9
  export type WritableBaseFieldLocalization = Writable<BaseFieldLocalization>;
@@ -1,8 +1,8 @@
1
1
  import { Writable } from './Writable';
2
2
  export interface DataProvider {
3
- shortCode?: string;
3
+ shortCode: string;
4
4
  name: string;
5
- keycloakOrganizationId?: string;
5
+ keycloakOrganizationId: string;
6
6
  readonly createdAt: string;
7
7
  }
8
8
  export type WritableDataProvider = Writable<DataProvider>;
@@ -1,8 +1,9 @@
1
1
  import { Writable } from './Writable';
2
2
  export interface Funder {
3
- shortCode?: string;
3
+ shortCode: string;
4
4
  name: string;
5
5
  keycloakOrganizationId?: string;
6
6
  readonly createdAt: string;
7
+ isCollaborative: boolean;
7
8
  }
8
9
  export type WritableFunder = Writable<Funder>;
@@ -0,0 +1,16 @@
1
+ import { Writable } from './Writable';
2
+ export interface FunderCollaborativeInvitation {
3
+ funderCollaborativeShortCode: string;
4
+ invitedFunderShortCode: string;
5
+ readonly createdAt: string;
6
+ invitationStatus?: FunderCollaborativeInvitation.InvitationStatusEnum;
7
+ readonly createdBy: string;
8
+ }
9
+ export type WritableFunderCollaborativeInvitation = Writable<FunderCollaborativeInvitation>;
10
+ export declare namespace FunderCollaborativeInvitation {
11
+ enum InvitationStatusEnum {
12
+ Pending = "pending",
13
+ Accepted = "accepted",
14
+ Rejected = "rejected"
15
+ }
16
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FunderCollaborativeInvitation = void 0;
4
+ var FunderCollaborativeInvitation;
5
+ (function (FunderCollaborativeInvitation) {
6
+ let InvitationStatusEnum;
7
+ (function (InvitationStatusEnum) {
8
+ InvitationStatusEnum["Pending"] = "pending";
9
+ InvitationStatusEnum["Accepted"] = "accepted";
10
+ InvitationStatusEnum["Rejected"] = "rejected";
11
+ })(InvitationStatusEnum = FunderCollaborativeInvitation.InvitationStatusEnum || (FunderCollaborativeInvitation.InvitationStatusEnum = {}));
12
+ })(FunderCollaborativeInvitation || (exports.FunderCollaborativeInvitation = FunderCollaborativeInvitation = {}));
@@ -0,0 +1,7 @@
1
+ import { FunderCollaborativeInvitation } from './FunderCollaborativeInvitation';
2
+ import { Writable } from './Writable';
3
+ export interface FunderCollaborativeInvitationBundle {
4
+ entries: Array<FunderCollaborativeInvitation>;
5
+ total: number;
6
+ }
7
+ export type WritableFunderCollaborativeInvitationBundle = Writable<FunderCollaborativeInvitationBundle>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ import { Writable } from './Writable';
2
+ export interface FunderCollaborativeMember {
3
+ funderCollaborativeShortCode: string;
4
+ memberFunderShortCode: string;
5
+ readonly createdAt: string;
6
+ readonly createdBy: string;
7
+ }
8
+ export type WritableFunderCollaborativeMember = Writable<FunderCollaborativeMember>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ import { FunderCollaborativeMember } from './FunderCollaborativeMember';
2
+ import { Writable } from './Writable';
3
+ export interface FunderCollaborativeMemberBundle {
4
+ entries: Array<FunderCollaborativeMember>;
5
+ total: number;
6
+ }
7
+ export type WritableFunderCollaborativeMemberBundle = Writable<FunderCollaborativeMemberBundle>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,4 @@
1
+ import { Writable } from './Writable';
2
+ export interface OpportunityPermission {
3
+ }
4
+ export type WritableOpportunityPermission = Writable<OpportunityPermission>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ import { DataProvider } from './DataProvider';
2
+ import { ShallowChangemaker } from './ShallowChangemaker';
3
+ import { Writable } from './Writable';
4
+ export interface Organization {
5
+ readonly changemaker: ShallowChangemaker;
6
+ readonly dataProvider: DataProvider;
7
+ readonly funder: DataProvider;
8
+ }
9
+ export type WritableOrganization = Writable<Organization>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,8 +1,10 @@
1
+ import { Opportunity } from './Opportunity';
1
2
  import { ProposalVersion } from './ProposalVersion';
2
3
  import { Writable } from './Writable';
3
4
  export interface Proposal {
4
5
  readonly id: number;
5
6
  opportunityId: number;
7
+ readonly opportunity?: Opportunity;
6
8
  externalId: string;
7
9
  versions: Array<ProposalVersion>;
8
10
  readonly createdAt: string;
@@ -7,7 +7,7 @@ export interface ProposalFieldValue {
7
7
  readonly applicationFormField: ApplicationFormField;
8
8
  position: number;
9
9
  value: string;
10
- goodAsOf?: string;
10
+ goodAsOf: string;
11
11
  readonly isValid: boolean;
12
12
  readonly createdAt: string;
13
13
  }
@@ -5,7 +5,6 @@ import { Writable } from './Writable';
5
5
  export interface Source {
6
6
  readonly id: number;
7
7
  label: string;
8
- relatedEntityId: number;
9
8
  readonly createdAt: string;
10
9
  dataProviderShortCode: string;
11
10
  readonly dataProvider: DataProvider;
@@ -1,7 +1,7 @@
1
1
  import { Permission } from './Permission';
2
2
  import { Writable } from './Writable';
3
3
  export interface UserDataProviderPermission {
4
- readonly permission?: Permission;
4
+ readonly permission: Permission;
5
5
  dataProviderShortCode: string;
6
6
  readonly userKeycloakUserId: string;
7
7
  readonly createdBy: string;
@@ -1,7 +1,7 @@
1
1
  import { Permission } from './Permission';
2
2
  import { Writable } from './Writable';
3
3
  export interface UserGroupChangemakerPermission {
4
- readonly permission?: Permission;
4
+ readonly permission: Permission;
5
5
  readonly changemakerId: number;
6
6
  readonly keycloakOrganizationId: string;
7
7
  readonly createdBy: string;
@@ -1,7 +1,7 @@
1
1
  import { Permission } from './Permission';
2
2
  import { Writable } from './Writable';
3
3
  export interface UserGroupDataProviderPermission {
4
- readonly permission?: Permission;
4
+ readonly permission: Permission;
5
5
  dataProviderShortCode: string;
6
6
  readonly keycloakOrganizationId: string;
7
7
  readonly createdBy: string;
@@ -0,0 +1,12 @@
1
+ import { OpportunityPermission } from './OpportunityPermission';
2
+ import { Writable } from './Writable';
3
+ export interface UserGroupOpportunityPermission {
4
+ readonly opportunityPermission: OpportunityPermission;
5
+ opportunityId: number;
6
+ readonly keycloakOrganizationId: string;
7
+ readonly createdBy: string;
8
+ readonly createdAt: string;
9
+ }
10
+ export type WritableUserGroupOpportunityPermission = Writable<UserGroupOpportunityPermission>;
11
+ export declare namespace UserGroupOpportunityPermission {
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,12 @@
1
+ import { OpportunityPermission } from './OpportunityPermission';
2
+ import { Writable } from './Writable';
3
+ export interface UserOpportunityPermission {
4
+ readonly opportunityPermission: OpportunityPermission;
5
+ opportunityId: number;
6
+ readonly userKeycloakUserId: string;
7
+ readonly createdBy: string;
8
+ readonly createdAt: string;
9
+ }
10
+ export type WritableUserOpportunityPermission = Writable<UserOpportunityPermission>;
11
+ export declare namespace UserOpportunityPermission {
12
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -17,8 +17,14 @@ export * from './DataProvider';
17
17
  export * from './DataProviderBundle';
18
18
  export * from './Funder';
19
19
  export * from './FunderBundle';
20
+ export * from './FunderCollaborativeInvitation';
21
+ export * from './FunderCollaborativeInvitationBundle';
22
+ export * from './FunderCollaborativeMember';
23
+ export * from './FunderCollaborativeMemberBundle';
20
24
  export * from './Opportunity';
21
25
  export * from './OpportunityBundle';
26
+ export * from './OpportunityPermission';
27
+ export * from './Organization';
22
28
  export * from './PartialChangemaker';
23
29
  export * from './PdcError';
24
30
  export * from './Permission';
@@ -42,4 +48,6 @@ export * from './UserFunderPermission';
42
48
  export * from './UserGroupChangemakerPermission';
43
49
  export * from './UserGroupDataProviderPermission';
44
50
  export * from './UserGroupFunderPermission';
51
+ export * from './UserGroupOpportunityPermission';
52
+ export * from './UserOpportunityPermission';
45
53
  export * from './UserPermissions';
@@ -33,8 +33,14 @@ __exportStar(require("./DataProvider"), exports);
33
33
  __exportStar(require("./DataProviderBundle"), exports);
34
34
  __exportStar(require("./Funder"), exports);
35
35
  __exportStar(require("./FunderBundle"), exports);
36
+ __exportStar(require("./FunderCollaborativeInvitation"), exports);
37
+ __exportStar(require("./FunderCollaborativeInvitationBundle"), exports);
38
+ __exportStar(require("./FunderCollaborativeMember"), exports);
39
+ __exportStar(require("./FunderCollaborativeMemberBundle"), exports);
36
40
  __exportStar(require("./Opportunity"), exports);
37
41
  __exportStar(require("./OpportunityBundle"), exports);
42
+ __exportStar(require("./OpportunityPermission"), exports);
43
+ __exportStar(require("./Organization"), exports);
38
44
  __exportStar(require("./PartialChangemaker"), exports);
39
45
  __exportStar(require("./PdcError"), exports);
40
46
  __exportStar(require("./Permission"), exports);
@@ -58,4 +64,6 @@ __exportStar(require("./UserFunderPermission"), exports);
58
64
  __exportStar(require("./UserGroupChangemakerPermission"), exports);
59
65
  __exportStar(require("./UserGroupDataProviderPermission"), exports);
60
66
  __exportStar(require("./UserGroupFunderPermission"), exports);
67
+ __exportStar(require("./UserGroupOpportunityPermission"), exports);
68
+ __exportStar(require("./UserOpportunityPermission"), exports);
61
69
  __exportStar(require("./UserPermissions"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.21.1",
3
+ "version": "0.22.2",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -4,7 +4,7 @@ export interface BaseFieldLocalization {
4
4
  baseFieldShortCode: string;
5
5
  readonly language: string;
6
6
  label: string;
7
- description?: string;
7
+ description: string;
8
8
  createdAt?: string;
9
9
  }
10
10
 
@@ -1,9 +1,9 @@
1
1
  import { Writable } from './Writable';
2
2
 
3
3
  export interface DataProvider {
4
- shortCode?: string;
4
+ shortCode: string;
5
5
  name: string;
6
- keycloakOrganizationId?: string;
6
+ keycloakOrganizationId: string;
7
7
  readonly createdAt: string;
8
8
  }
9
9
 
@@ -1,10 +1,11 @@
1
1
  import { Writable } from './Writable';
2
2
 
3
3
  export interface Funder {
4
- shortCode?: string;
4
+ shortCode: string;
5
5
  name: string;
6
6
  keycloakOrganizationId?: string;
7
7
  readonly createdAt: string;
8
+ isCollaborative: boolean;
8
9
  }
9
10
 
10
11
  export type WritableFunder = Writable<Funder>
@@ -0,0 +1,19 @@
1
+ import { Writable } from './Writable';
2
+
3
+ export interface FunderCollaborativeInvitation {
4
+ funderCollaborativeShortCode: string;
5
+ invitedFunderShortCode: string;
6
+ readonly createdAt: string;
7
+ invitationStatus?: FunderCollaborativeInvitation.InvitationStatusEnum;
8
+ readonly createdBy: string;
9
+ }
10
+
11
+ export type WritableFunderCollaborativeInvitation = Writable<FunderCollaborativeInvitation>
12
+
13
+ export namespace FunderCollaborativeInvitation {
14
+ export enum InvitationStatusEnum {
15
+ Pending = 'pending',
16
+ Accepted = 'accepted',
17
+ Rejected = 'rejected',
18
+ }
19
+ }
@@ -0,0 +1,13 @@
1
+ import {
2
+ FunderCollaborativeInvitation,
3
+ } from './FunderCollaborativeInvitation';
4
+ import { Writable } from './Writable';
5
+
6
+ export interface FunderCollaborativeInvitationBundle {
7
+ entries: Array<FunderCollaborativeInvitation>;
8
+ total: number;
9
+ }
10
+
11
+ export type WritableFunderCollaborativeInvitationBundle = Writable<FunderCollaborativeInvitationBundle>
12
+
13
+
@@ -0,0 +1,12 @@
1
+ import { Writable } from './Writable';
2
+
3
+ export interface FunderCollaborativeMember {
4
+ funderCollaborativeShortCode: string;
5
+ memberFunderShortCode: string;
6
+ readonly createdAt: string;
7
+ readonly createdBy: string;
8
+ }
9
+
10
+ export type WritableFunderCollaborativeMember = Writable<FunderCollaborativeMember>
11
+
12
+
@@ -0,0 +1,13 @@
1
+ import {
2
+ FunderCollaborativeMember,
3
+ } from './FunderCollaborativeMember';
4
+ import { Writable } from './Writable';
5
+
6
+ export interface FunderCollaborativeMemberBundle {
7
+ entries: Array<FunderCollaborativeMember>;
8
+ total: number;
9
+ }
10
+
11
+ export type WritableFunderCollaborativeMemberBundle = Writable<FunderCollaborativeMemberBundle>
12
+
13
+
@@ -0,0 +1,8 @@
1
+ import { Writable } from './Writable';
2
+
3
+ export interface OpportunityPermission {
4
+ }
5
+
6
+ export type WritableOpportunityPermission = Writable<OpportunityPermission>
7
+
8
+
@@ -0,0 +1,17 @@
1
+ import {
2
+ DataProvider,
3
+ } from './DataProvider';
4
+ import {
5
+ ShallowChangemaker,
6
+ } from './ShallowChangemaker';
7
+ import { Writable } from './Writable';
8
+
9
+ export interface Organization {
10
+ readonly changemaker: ShallowChangemaker;
11
+ readonly dataProvider: DataProvider;
12
+ readonly funder: DataProvider;
13
+ }
14
+
15
+ export type WritableOrganization = Writable<Organization>
16
+
17
+
@@ -1,3 +1,6 @@
1
+ import {
2
+ Opportunity,
3
+ } from './Opportunity';
1
4
  import {
2
5
  ProposalVersion,
3
6
  } from './ProposalVersion';
@@ -6,6 +9,7 @@ import { Writable } from './Writable';
6
9
  export interface Proposal {
7
10
  readonly id: number;
8
11
  opportunityId: number;
12
+ readonly opportunity?: Opportunity;
9
13
  externalId: string;
10
14
  versions: Array<ProposalVersion>;
11
15
  readonly createdAt: string;
@@ -10,7 +10,7 @@ export interface ProposalFieldValue {
10
10
  readonly applicationFormField: ApplicationFormField;
11
11
  position: number;
12
12
  value: string;
13
- goodAsOf?: string;
13
+ goodAsOf: string;
14
14
  readonly isValid: boolean;
15
15
  readonly createdAt: string;
16
16
  }
@@ -12,7 +12,6 @@ import { Writable } from './Writable';
12
12
  export interface Source {
13
13
  readonly id: number;
14
14
  label: string;
15
- relatedEntityId: number;
16
15
  readonly createdAt: string;
17
16
  dataProviderShortCode: string;
18
17
  readonly dataProvider: DataProvider;
@@ -4,7 +4,7 @@ import {
4
4
  import { Writable } from './Writable';
5
5
 
6
6
  export interface UserDataProviderPermission {
7
- readonly permission?: Permission;
7
+ readonly permission: Permission;
8
8
  dataProviderShortCode: string;
9
9
  readonly userKeycloakUserId: string;
10
10
  readonly createdBy: string;
@@ -4,7 +4,7 @@ import {
4
4
  import { Writable } from './Writable';
5
5
 
6
6
  export interface UserGroupChangemakerPermission {
7
- readonly permission?: Permission;
7
+ readonly permission: Permission;
8
8
  readonly changemakerId: number;
9
9
  readonly keycloakOrganizationId: string;
10
10
  readonly createdBy: string;
@@ -4,7 +4,7 @@ import {
4
4
  import { Writable } from './Writable';
5
5
 
6
6
  export interface UserGroupDataProviderPermission {
7
- readonly permission?: Permission;
7
+ readonly permission: Permission;
8
8
  dataProviderShortCode: string;
9
9
  readonly keycloakOrganizationId: string;
10
10
  readonly createdBy: string;
@@ -0,0 +1,17 @@
1
+ import {
2
+ OpportunityPermission,
3
+ } from './OpportunityPermission';
4
+ import { Writable } from './Writable';
5
+
6
+ export interface UserGroupOpportunityPermission {
7
+ readonly opportunityPermission: OpportunityPermission;
8
+ opportunityId: number;
9
+ readonly keycloakOrganizationId: string;
10
+ readonly createdBy: string;
11
+ readonly createdAt: string;
12
+ }
13
+
14
+ export type WritableUserGroupOpportunityPermission = Writable<UserGroupOpportunityPermission>
15
+
16
+ export namespace UserGroupOpportunityPermission {
17
+ }
@@ -0,0 +1,17 @@
1
+ import {
2
+ OpportunityPermission,
3
+ } from './OpportunityPermission';
4
+ import { Writable } from './Writable';
5
+
6
+ export interface UserOpportunityPermission {
7
+ readonly opportunityPermission: OpportunityPermission;
8
+ opportunityId: number;
9
+ readonly userKeycloakUserId: string;
10
+ readonly createdBy: string;
11
+ readonly createdAt: string;
12
+ }
13
+
14
+ export type WritableUserOpportunityPermission = Writable<UserOpportunityPermission>
15
+
16
+ export namespace UserOpportunityPermission {
17
+ }
@@ -17,8 +17,14 @@ export * from './DataProvider';
17
17
  export * from './DataProviderBundle';
18
18
  export * from './Funder';
19
19
  export * from './FunderBundle';
20
+ export * from './FunderCollaborativeInvitation';
21
+ export * from './FunderCollaborativeInvitationBundle';
22
+ export * from './FunderCollaborativeMember';
23
+ export * from './FunderCollaborativeMemberBundle';
20
24
  export * from './Opportunity';
21
25
  export * from './OpportunityBundle';
26
+ export * from './OpportunityPermission';
27
+ export * from './Organization';
22
28
  export * from './PartialChangemaker';
23
29
  export * from './PdcError';
24
30
  export * from './Permission';
@@ -42,4 +48,6 @@ export * from './UserFunderPermission';
42
48
  export * from './UserGroupChangemakerPermission';
43
49
  export * from './UserGroupDataProviderPermission';
44
50
  export * from './UserGroupFunderPermission';
51
+ export * from './UserGroupOpportunityPermission';
52
+ export * from './UserOpportunityPermission';
45
53
  export * from './UserPermissions';