@quesmed/types-rn 2.2.51 → 2.2.52

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.2.51",
3
+ "version": "2.2.52",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -70,7 +70,7 @@ export declare type IAddFlaggedQuestionData = RestrictedData<graphqlNormalize &
70
70
  */
71
71
  export declare const REMOVE_FLAGGED_QUESTION: import("@apollo/client").DocumentNode;
72
72
  export interface IRemoveFlaggedQuestionVar {
73
- id: Id;
73
+ questionId: Id;
74
74
  }
75
75
  export declare type IRemoveFlaggedQuestionData = RestrictedData<graphqlNormalize & IUserFlaggedQuestion, 'removeFlaggedQuestion'>;
76
76
  /**
@@ -2423,9 +2423,9 @@ exports.ADD_FLAGGED_QUESTION = (0, client_1.gql) `
2423
2423
  * removeFlaggedQuestion
2424
2424
  */
2425
2425
  exports.REMOVE_FLAGGED_QUESTION = (0, client_1.gql) `
2426
- mutation RemoveFlaggedQuestion($id: Int!) {
2426
+ mutation RemoveFlaggedQuestion($questionId: Int!) {
2427
2427
  restricted {
2428
- removeFlaggedQuestion(id: $id) {
2428
+ removeFlaggedQuestion(questionId: $questionId) {
2429
2429
  id
2430
2430
  }
2431
2431
  }