@better-giving/endowment 4.0.3 → 4.0.4

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.
@@ -19,7 +19,7 @@ export interface INpoReferredBy extends Ensure<INpo, "referrer" | "referrer_expi
19
19
  }
20
20
  export interface INpoWithRid extends Ensure<INpo, "referral_id"> {
21
21
  }
22
- export interface INpoWithRegNum extends Pick<INpo, "claimed" | "name" | "hq_country" | "id"> {
22
+ export interface INpoWithRegNum extends Pick<INpo, "registration_number" | "env" | "claimed" | "name" | "hq_country" | "id"> {
23
23
  }
24
24
  export interface IMedia extends Required<IMediaUpdate> {
25
25
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@better-giving/endowment",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "dependencies": {
5
5
  "ksuid": "3.0.0"
6
6
  },
@@ -48,7 +48,10 @@ export interface INpoReferredBy
48
48
  export interface INpoWithRid extends Ensure<INpo, "referral_id"> {}
49
49
 
50
50
  export interface INpoWithRegNum
51
- extends Pick<INpo, "claimed" | "name" | "hq_country" | "id"> {}
51
+ extends Pick<
52
+ INpo,
53
+ "registration_number" | "env" | "claimed" | "name" | "hq_country" | "id"
54
+ > {}
52
55
 
53
56
  export interface IMedia extends Required<IMediaUpdate> {
54
57
  id: string;