@visa-check-r/integrations 0.0.23 → 0.0.25
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 +1 -1
- package/dist/index.d.ts +1 -1
- 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
|
@@ -983,6 +983,7 @@ interface ListVisaProfilesRequest {
|
|
|
983
983
|
limit: number;
|
|
984
984
|
skip: number;
|
|
985
985
|
visaApplicationStatus?: VisaApplicationStatus[];
|
|
986
|
+
VisaApplication?: Partial<VisaApplication>;
|
|
986
987
|
}
|
|
987
988
|
interface ListVisaProfilesResponse {
|
|
988
989
|
visaProfiles: VisaProfile[];
|
|
@@ -1168,7 +1169,6 @@ interface ListVisaApplicationsRequest {
|
|
|
1168
1169
|
skip: number;
|
|
1169
1170
|
search?: string;
|
|
1170
1171
|
visaApplicationIds?: string[];
|
|
1171
|
-
visaApplication?: Partial<VisaApplication>;
|
|
1172
1172
|
}
|
|
1173
1173
|
interface ListVisaApplicationsResponse {
|
|
1174
1174
|
visaApplications: VisaApplication[];
|
package/dist/index.d.ts
CHANGED
|
@@ -983,6 +983,7 @@ interface ListVisaProfilesRequest {
|
|
|
983
983
|
limit: number;
|
|
984
984
|
skip: number;
|
|
985
985
|
visaApplicationStatus?: VisaApplicationStatus[];
|
|
986
|
+
VisaApplication?: Partial<VisaApplication>;
|
|
986
987
|
}
|
|
987
988
|
interface ListVisaProfilesResponse {
|
|
988
989
|
visaProfiles: VisaProfile[];
|
|
@@ -1168,7 +1169,6 @@ interface ListVisaApplicationsRequest {
|
|
|
1168
1169
|
skip: number;
|
|
1169
1170
|
search?: string;
|
|
1170
1171
|
visaApplicationIds?: string[];
|
|
1171
|
-
visaApplication?: Partial<VisaApplication>;
|
|
1172
1172
|
}
|
|
1173
1173
|
interface ListVisaApplicationsResponse {
|
|
1174
1174
|
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
|
}
|