@quesmed/types-rn 2.6.105 → 2.6.107
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
|
@@ -33,6 +33,7 @@ export interface IMockOptions extends IContentArgs {
|
|
|
33
33
|
productId: EProductType;
|
|
34
34
|
title: string;
|
|
35
35
|
passingMark: number;
|
|
36
|
+
intro?: string | null;
|
|
36
37
|
}
|
|
37
38
|
export interface IValidateMockTestVar {
|
|
38
39
|
input: IMockOptions;
|
|
@@ -108,7 +109,13 @@ export interface IProductTransactionsVar {
|
|
|
108
109
|
duration: EProductDuration;
|
|
109
110
|
startDate: Date | number;
|
|
110
111
|
endDate: Date | number;
|
|
112
|
+
subBreakdown: boolean;
|
|
111
113
|
};
|
|
112
114
|
}
|
|
113
115
|
export type IProductTransactionsData = AdminData<Omit<IResultData, 'logFile' | 'batchId' | 'recordIds'>, 'getProductTransactions'>;
|
|
114
116
|
export declare const GET_PRODUCT_TRANSACTIONS: import("@apollo/client").DocumentNode;
|
|
117
|
+
export interface IRedisCallVar {
|
|
118
|
+
input: string;
|
|
119
|
+
}
|
|
120
|
+
export type IRedisCallData = AdminData<string, 'redisCall'>;
|
|
121
|
+
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
|
+
`;
|