@quesmed/types-rn 2.6.105 → 2.6.106

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.105",
3
+ "version": "2.6.106",
4
4
  "description": "Typescript types for Quesmed",
5
5
  "keywords": [
6
6
  "quesmed",
@@ -108,7 +108,13 @@ export interface IProductTransactionsVar {
108
108
  duration: EProductDuration;
109
109
  startDate: Date | number;
110
110
  endDate: Date | number;
111
+ subBreakdown: boolean;
111
112
  };
112
113
  }
113
114
  export type IProductTransactionsData = AdminData<Omit<IResultData, 'logFile' | 'batchId' | 'recordIds'>, 'getProductTransactions'>;
114
115
  export declare const GET_PRODUCT_TRANSACTIONS: import("@apollo/client").DocumentNode;
116
+ export interface IRedisCallVar {
117
+ input: string;
118
+ }
119
+ export type IRedisCallData = AdminData<string, 'redisCall'>;
120
+ export declare const REDIS_CALL: import("@apollo/client").DocumentNode;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GET_PRODUCT_TRANSACTIONS = exports.CONTACT_SYNC_STATUS = exports.CONTACT_SYNC = exports.CLONE_CONTENT = exports.DELETE_IMAGES = exports.QUEUE_STATUS = exports.DELETE_RECORDS = exports.DOWNLOAD_IMAGES = exports.UPLOAD_IMAGES = exports.PUBLIC_BATCH = exports.UPDATE_BATCH = exports.IMPORT_BATCH = exports.VALIDATE_MOCKTEST = exports.VALIDATE_QUESTIONS = exports.VALIDATE_STATIONS = exports.VALIDATE_BOOK = void 0;
3
+ exports.REDIS_CALL = exports.GET_PRODUCT_TRANSACTIONS = exports.CONTACT_SYNC_STATUS = exports.CONTACT_SYNC = exports.CLONE_CONTENT = exports.DELETE_IMAGES = exports.QUEUE_STATUS = exports.DELETE_RECORDS = exports.DOWNLOAD_IMAGES = exports.UPLOAD_IMAGES = exports.PUBLIC_BATCH = exports.UPDATE_BATCH = exports.IMPORT_BATCH = exports.VALIDATE_MOCKTEST = exports.VALIDATE_QUESTIONS = exports.VALIDATE_STATIONS = exports.VALIDATE_BOOK = void 0;
4
4
  const client_1 = require("@apollo/client");
5
5
  exports.VALIDATE_BOOK = (0, client_1.gql) `
6
6
  mutation ValidateBook($input: ValidateBookInput!) {
@@ -227,3 +227,10 @@ exports.GET_PRODUCT_TRANSACTIONS = (0, client_1.gql) `
227
227
  }
228
228
  }
229
229
  `;
230
+ exports.REDIS_CALL = (0, client_1.gql) `
231
+ mutation RedisCall($input: String!) {
232
+ admin {
233
+ redisCall(input: $input)
234
+ }
235
+ }
236
+ `;