@quesmed/types-rn 2.6.154 → 2.6.155

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.154",
3
+ "version": "2.6.155",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -40,6 +40,8 @@ export type IEarningsVar = {
40
40
  countryName: string | null;
41
41
  useNetEarning: boolean;
42
42
  productIds?: EProductType[];
43
+ graduationYear?: number;
44
+ classYear?: string;
43
45
  };
44
46
  export type IEarningsData = AdminData<IRevenue[], 'earnings'>;
45
47
  export declare const USER_STATUS: import("@apollo/client").DocumentNode;
@@ -27,6 +27,8 @@ exports.EARNINGS = (0, client_1.gql) `
27
27
  $useNetEarning: Boolean
28
28
  $productIds: [Int]
29
29
  $countryName: String
30
+ $graduationYear: Int
31
+ $classYear: String
30
32
  ) {
31
33
  admin {
32
34
  earnings(
@@ -40,6 +42,8 @@ exports.EARNINGS = (0, client_1.gql) `
40
42
  useNetEarning: $useNetEarning
41
43
  productIds: $productIds
42
44
  countryName: $countryName
45
+ graduationYear: $graduationYear
46
+ classYear: $classYear
43
47
  ) {
44
48
  entitlement {
45
49
  id