@visa-check-r/integrations 0.0.22 → 0.0.24
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 +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -434,8 +434,8 @@ declare const loginResponseFields: (keyof LoginResponse)[];
|
|
|
434
434
|
interface SignUpRequest {
|
|
435
435
|
user: Partial<User>;
|
|
436
436
|
password: string;
|
|
437
|
-
partnerReferenceCode
|
|
438
|
-
consultantCode
|
|
437
|
+
partnerReferenceCode?: string;
|
|
438
|
+
consultantCode?: string;
|
|
439
439
|
}
|
|
440
440
|
type SignUpResponse = LoginResponse;
|
|
441
441
|
declare const signUpResponseFields: (keyof LoginResponse)[];
|
|
@@ -1164,11 +1164,10 @@ interface GetVisaApplicationResponseNestedFields {
|
|
|
1164
1164
|
}
|
|
1165
1165
|
declare const getVisaApplicationResponseNestedFields: GetVisaApplicationResponseNestedFields;
|
|
1166
1166
|
interface ListVisaApplicationsRequest {
|
|
1167
|
-
search?: string;
|
|
1168
|
-
visaApplicationIds?: string[];
|
|
1169
|
-
visaApplication?: Partial<VisaApplication>;
|
|
1170
1167
|
limit: number;
|
|
1171
1168
|
skip: number;
|
|
1169
|
+
search?: string;
|
|
1170
|
+
visaApplicationIds?: string[];
|
|
1172
1171
|
}
|
|
1173
1172
|
interface ListVisaApplicationsResponse {
|
|
1174
1173
|
visaApplications: VisaApplication[];
|
package/dist/index.d.ts
CHANGED
|
@@ -434,8 +434,8 @@ declare const loginResponseFields: (keyof LoginResponse)[];
|
|
|
434
434
|
interface SignUpRequest {
|
|
435
435
|
user: Partial<User>;
|
|
436
436
|
password: string;
|
|
437
|
-
partnerReferenceCode
|
|
438
|
-
consultantCode
|
|
437
|
+
partnerReferenceCode?: string;
|
|
438
|
+
consultantCode?: string;
|
|
439
439
|
}
|
|
440
440
|
type SignUpResponse = LoginResponse;
|
|
441
441
|
declare const signUpResponseFields: (keyof LoginResponse)[];
|
|
@@ -1164,11 +1164,10 @@ interface GetVisaApplicationResponseNestedFields {
|
|
|
1164
1164
|
}
|
|
1165
1165
|
declare const getVisaApplicationResponseNestedFields: GetVisaApplicationResponseNestedFields;
|
|
1166
1166
|
interface ListVisaApplicationsRequest {
|
|
1167
|
-
search?: string;
|
|
1168
|
-
visaApplicationIds?: string[];
|
|
1169
|
-
visaApplication?: Partial<VisaApplication>;
|
|
1170
1167
|
limit: number;
|
|
1171
1168
|
skip: number;
|
|
1169
|
+
search?: string;
|
|
1170
|
+
visaApplicationIds?: string[];
|
|
1172
1171
|
}
|
|
1173
1172
|
interface ListVisaApplicationsResponse {
|
|
1174
1173
|
visaApplications: VisaApplication[];
|
package/dist/index.esm.js
CHANGED
|
@@ -1622,8 +1622,8 @@ var deleteVisaApplicationResponseFields = ["visaApplicationId"];
|
|
|
1622
1622
|
// src/services/profile/schemas/visa-profile.schema.ts
|
|
1623
1623
|
var visaProfileSchema = {
|
|
1624
1624
|
listVisaProfiles: (query) => `
|
|
1625
|
-
query listVisaProfiles($limit: Int!, $skip: Int!, $search: String, $visaProfileIds: [String], $visaProfile: VisaProfileInput, $visaApplicationStatus: [VisaApplicationStatusEnum]) {
|
|
1626
|
-
listVisaProfiles(limit: $limit, skip: $skip, search: $search, visaProfileIds: $visaProfileIds, visaProfile: $visaProfile, visaApplicationStatus: $visaApplicationStatus) {
|
|
1625
|
+
query listVisaProfiles($limit: Int!, $skip: Int!, $search: String, $visaProfileIds: [String], $visaProfile: VisaProfileInput, $visaApplicationStatus: [VisaApplicationStatusEnum], $visaApplication: VisaApplicationInput) {
|
|
1626
|
+
listVisaProfiles(limit: $limit, skip: $skip, search: $search, visaProfileIds: $visaProfileIds, visaProfile: $visaProfile, visaApplicationStatus: $visaApplicationStatus, visaApplication: $visaApplication) {
|
|
1627
1627
|
${query}
|
|
1628
1628
|
}
|
|
1629
1629
|
}
|