@quesmed/types-rn 2.6.144 → 2.6.145
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
|
@@ -36,6 +36,7 @@ export type IEarningsVar = {
|
|
|
36
36
|
subType: ESubType;
|
|
37
37
|
source: ESubSource;
|
|
38
38
|
universityId: number | null;
|
|
39
|
+
countryName: string | null;
|
|
39
40
|
useNetEarning: boolean;
|
|
40
41
|
productIds?: EProductType[];
|
|
41
42
|
};
|
|
@@ -191,6 +192,6 @@ export type IDropdownOptionsVar = {
|
|
|
191
192
|
};
|
|
192
193
|
export type IDropdownOptionsData = AdminData<Array<{
|
|
193
194
|
key: string;
|
|
194
|
-
value: number;
|
|
195
|
+
value: string | number;
|
|
195
196
|
}>, 'dropdownOptions'>;
|
|
196
197
|
export declare const DROPDOWN_OPTIONS: import("@apollo/client").DocumentNode;
|
|
@@ -26,6 +26,7 @@ exports.EARNINGS = (0, client_1.gql) `
|
|
|
26
26
|
$universityId: Int
|
|
27
27
|
$useNetEarning: Boolean
|
|
28
28
|
$productIds: [Int]
|
|
29
|
+
$countryName: String
|
|
29
30
|
) {
|
|
30
31
|
admin {
|
|
31
32
|
earnings(
|
|
@@ -38,6 +39,7 @@ exports.EARNINGS = (0, client_1.gql) `
|
|
|
38
39
|
source: $source
|
|
39
40
|
useNetEarning: $useNetEarning
|
|
40
41
|
productIds: $productIds
|
|
42
|
+
countryName: $countryName
|
|
41
43
|
) {
|
|
42
44
|
entitlement {
|
|
43
45
|
id
|