@pdc/sdk 0.20.3 → 0.21.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,9 +2,9 @@ import { Permission } from './Permission';
2
2
  import { Writable } from './Writable';
3
3
  export interface UserGroupChangemakerPermission {
4
4
  readonly permission?: Permission;
5
- readonly changemakerId?: number;
6
- readonly keycloakOrganizationId?: string;
7
- readonly createdBy?: string;
5
+ readonly changemakerId: number;
6
+ readonly keycloakOrganizationId: string;
7
+ readonly createdBy: string;
8
8
  readonly createdAt: string;
9
9
  }
10
10
  export type WritableUserGroupChangemakerPermission = Writable<UserGroupChangemakerPermission>;
@@ -3,7 +3,7 @@ import { Writable } from './Writable';
3
3
  export interface UserGroupDataProviderPermission {
4
4
  readonly permission?: Permission;
5
5
  dataProviderShortCode: string;
6
- readonly keycloakOrganizationId?: string;
6
+ readonly keycloakOrganizationId: string;
7
7
  readonly createdBy: string;
8
8
  readonly createdAt: string;
9
9
  }
@@ -3,7 +3,7 @@ import { Writable } from './Writable';
3
3
  export interface UserGroupFunderPermission {
4
4
  readonly permission: Permission;
5
5
  funderShortCode: string;
6
- readonly keycloakOrganizationId?: string;
6
+ readonly keycloakOrganizationId: string;
7
7
  readonly createdBy: string;
8
8
  readonly createdAt: string;
9
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pdc/sdk",
3
- "version": "0.20.3",
3
+ "version": "0.21.1",
4
4
  "description": "A swagger client for the Philanthropy Data Commons (PDC)",
5
5
  "author": "Open Tech Strategies",
6
6
  "keywords": [
@@ -5,9 +5,9 @@ import { Writable } from './Writable';
5
5
 
6
6
  export interface UserGroupChangemakerPermission {
7
7
  readonly permission?: Permission;
8
- readonly changemakerId?: number;
9
- readonly keycloakOrganizationId?: string;
10
- readonly createdBy?: string;
8
+ readonly changemakerId: number;
9
+ readonly keycloakOrganizationId: string;
10
+ readonly createdBy: string;
11
11
  readonly createdAt: string;
12
12
  }
13
13
 
@@ -6,7 +6,7 @@ import { Writable } from './Writable';
6
6
  export interface UserGroupDataProviderPermission {
7
7
  readonly permission?: Permission;
8
8
  dataProviderShortCode: string;
9
- readonly keycloakOrganizationId?: string;
9
+ readonly keycloakOrganizationId: string;
10
10
  readonly createdBy: string;
11
11
  readonly createdAt: string;
12
12
  }
@@ -6,7 +6,7 @@ import { Writable } from './Writable';
6
6
  export interface UserGroupFunderPermission {
7
7
  readonly permission: Permission;
8
8
  funderShortCode: string;
9
- readonly keycloakOrganizationId?: string;
9
+ readonly keycloakOrganizationId: string;
10
10
  readonly createdBy: string;
11
11
  readonly createdAt: string;
12
12
  }