@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.esm.js
CHANGED
|
@@ -2680,8 +2680,8 @@ var createConsultantAssignmentService = (client) => ({
|
|
|
2680
2680
|
// src/services/profile/schemas/visa-application.schema.ts
|
|
2681
2681
|
var visaApplicationSchema = {
|
|
2682
2682
|
getVisaApplicationStats: (query) => `
|
|
2683
|
-
query getVisaApplicationStats($userId: String!, $
|
|
2684
|
-
getVisaApplicationStats(userId: $userId,
|
|
2683
|
+
query getVisaApplicationStats($userId: String!, $referralCode: String) {
|
|
2684
|
+
getVisaApplicationStats(userId: $userId, referralCode: $referralCode) {
|
|
2685
2685
|
${query}
|
|
2686
2686
|
}
|
|
2687
2687
|
}
|
|
@@ -3063,7 +3063,8 @@ var serviceCreditCostQuery = [
|
|
|
3063
3063
|
"createdAt",
|
|
3064
3064
|
"credits",
|
|
3065
3065
|
"id",
|
|
3066
|
-
"serviceName"
|
|
3066
|
+
"serviceName",
|
|
3067
|
+
"code"
|
|
3067
3068
|
];
|
|
3068
3069
|
|
|
3069
3070
|
// src/services/subscription/types/coupon.type.ts
|