@visa-check-r/integrations 0.0.97 → 0.0.99
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/dist/index.cjs.js +4 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -3
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2682,8 +2682,8 @@ var createConsultantAssignmentService = (client) => ({
|
|
|
2682
2682
|
// src/services/profile/schemas/visa-application.schema.ts
|
|
2683
2683
|
var visaApplicationSchema = {
|
|
2684
2684
|
getVisaApplicationStats: (query) => `
|
|
2685
|
-
query getVisaApplicationStats($userId: String!, $
|
|
2686
|
-
getVisaApplicationStats(userId: $userId,
|
|
2685
|
+
query getVisaApplicationStats($userId: String!, $referralCode: String) {
|
|
2686
|
+
getVisaApplicationStats(userId: $userId, referralCode: $referralCode) {
|
|
2687
2687
|
${query}
|
|
2688
2688
|
}
|
|
2689
2689
|
}
|
|
@@ -3065,7 +3065,8 @@ var serviceCreditCostQuery = [
|
|
|
3065
3065
|
"createdAt",
|
|
3066
3066
|
"credits",
|
|
3067
3067
|
"id",
|
|
3068
|
-
"serviceName"
|
|
3068
|
+
"serviceName",
|
|
3069
|
+
"code"
|
|
3069
3070
|
];
|
|
3070
3071
|
|
|
3071
3072
|
// src/services/subscription/types/coupon.type.ts
|