@quesmed/types-rn 2.6.146 → 2.6.148

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.
@@ -7,6 +7,7 @@ export interface IPicture {
7
7
  updatedAt: number | Date;
8
8
  deletedAt: number | Date;
9
9
  name: string;
10
+ sensitive: boolean;
10
11
  caption: string;
11
12
  path: string;
12
13
  path512: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quesmed/types-rn",
3
- "version": "2.6.146",
3
+ "version": "2.6.148",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -8,6 +8,7 @@ exports.PICTURE_FIELDS = (0, client_1.gql) `
8
8
  createdAt
9
9
  updatedAt
10
10
  name
11
+ sensitive
11
12
  caption
12
13
  path
13
14
  path256
@@ -5,7 +5,9 @@ export type IRefreshMtvVar = {
5
5
  };
6
6
  export type IRefreshMtvData = AdminData<boolean, 'refreshMtv'>;
7
7
  export declare const REFRESH_WIKI: import("@apollo/client").DocumentNode;
8
- export type IRefreshWikiVar = null;
8
+ export type IRefreshWikiVar = {
9
+ chapterIds?: number[];
10
+ };
9
11
  export type IRefreshWikiData = AdminData<boolean, 'refreshWiki'>;
10
12
  export declare const RESET_QUES_DIFFICULTY: import("@apollo/client").DocumentNode;
11
13
  export type IResetQueDifficultyVar = null;
@@ -10,9 +10,9 @@ exports.REFRESH_MTV = (0, client_1.gql) `
10
10
  }
11
11
  `;
12
12
  exports.REFRESH_WIKI = (0, client_1.gql) `
13
- mutation RefreshWiki {
13
+ mutation RefreshWiki($chapterIds: [Int]) {
14
14
  admin {
15
- refreshWiki
15
+ refreshWiki(chapterIds: $chapterIds)
16
16
  }
17
17
  }
18
18
  `;