@visa-check-r/integrations 0.0.22 → 0.0.23
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.map +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- 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,11 @@ interface GetVisaApplicationResponseNestedFields {
|
|
|
1164
1164
|
}
|
|
1165
1165
|
declare const getVisaApplicationResponseNestedFields: GetVisaApplicationResponseNestedFields;
|
|
1166
1166
|
interface ListVisaApplicationsRequest {
|
|
1167
|
+
limit: number;
|
|
1168
|
+
skip: number;
|
|
1167
1169
|
search?: string;
|
|
1168
1170
|
visaApplicationIds?: string[];
|
|
1169
1171
|
visaApplication?: Partial<VisaApplication>;
|
|
1170
|
-
limit: number;
|
|
1171
|
-
skip: number;
|
|
1172
1172
|
}
|
|
1173
1173
|
interface ListVisaApplicationsResponse {
|
|
1174
1174
|
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,11 @@ interface GetVisaApplicationResponseNestedFields {
|
|
|
1164
1164
|
}
|
|
1165
1165
|
declare const getVisaApplicationResponseNestedFields: GetVisaApplicationResponseNestedFields;
|
|
1166
1166
|
interface ListVisaApplicationsRequest {
|
|
1167
|
+
limit: number;
|
|
1168
|
+
skip: number;
|
|
1167
1169
|
search?: string;
|
|
1168
1170
|
visaApplicationIds?: string[];
|
|
1169
1171
|
visaApplication?: Partial<VisaApplication>;
|
|
1170
|
-
limit: number;
|
|
1171
|
-
skip: number;
|
|
1172
1172
|
}
|
|
1173
1173
|
interface ListVisaApplicationsResponse {
|
|
1174
1174
|
visaApplications: VisaApplication[];
|