@quesmed/types-rn 2.6.35 → 2.6.36

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.
@@ -1,3 +1,4 @@
1
+ import { IEntitlement } from './Product';
1
2
  import { Id } from './Type';
2
3
  export interface IFeedback {
3
4
  id: Id;
@@ -6,4 +7,5 @@ export interface IFeedback {
6
7
  name: string;
7
8
  feedback: string;
8
9
  university: string;
10
+ product: IEntitlement;
9
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.35",
3
+ "version": "2.6.36",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -9,6 +9,10 @@ exports.FEEDBACK = (0, client_1.gql) `
9
9
  name
10
10
  feedback
11
11
  university
12
+ product {
13
+ id
14
+ name
15
+ }
12
16
  }
13
17
  }
14
18
  `;