@visa-check-r/integrations 0.0.76 → 0.0.77
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 +309 -64
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +216 -7
- package/dist/index.d.ts +216 -7
- package/dist/index.esm.js +293 -65
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -362,6 +362,29 @@ interface Job<T = any> {
|
|
|
362
362
|
updatedAt: string;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
|
+
interface CouponRedemption {
|
|
366
|
+
id: string;
|
|
367
|
+
couponId: string;
|
|
368
|
+
userId: string;
|
|
369
|
+
usedAt: string;
|
|
370
|
+
valueUsed: number;
|
|
371
|
+
transactionAmount: number;
|
|
372
|
+
createdAt: string;
|
|
373
|
+
planId: string;
|
|
374
|
+
coupon?: Coupon;
|
|
375
|
+
}
|
|
376
|
+
interface Coupon {
|
|
377
|
+
id: string;
|
|
378
|
+
code: string;
|
|
379
|
+
couponType: "freeCredit" | "percentageDiscount" | "fixedDiscount";
|
|
380
|
+
value: number;
|
|
381
|
+
maxUses: number;
|
|
382
|
+
usedCount: number;
|
|
383
|
+
perUseLimit: number;
|
|
384
|
+
couponStatus: "active" | "inactive";
|
|
385
|
+
createdAt: string;
|
|
386
|
+
expiredAt: string;
|
|
387
|
+
}
|
|
365
388
|
interface ServiceCreditCost {
|
|
366
389
|
id: string;
|
|
367
390
|
serviceName: string;
|
|
@@ -380,6 +403,8 @@ interface CreditTransaction {
|
|
|
380
403
|
metaJson: string;
|
|
381
404
|
createdAt: string;
|
|
382
405
|
creditTransactionType: "credit" | "debit";
|
|
406
|
+
CouponId: string;
|
|
407
|
+
CouponAmount: number;
|
|
383
408
|
creditPlan?: CreditPlan;
|
|
384
409
|
user?: User;
|
|
385
410
|
}
|
|
@@ -862,8 +887,8 @@ type EntityCRUD<T, K extends string> = {
|
|
|
862
887
|
ListResponse: ListEntityResponse<T, K>;
|
|
863
888
|
};
|
|
864
889
|
|
|
865
|
-
declare const ENTITY: "userCredit";
|
|
866
|
-
type UserCreditCRUD = EntityCRUD<UserCredit, typeof ENTITY>;
|
|
890
|
+
declare const ENTITY$5: "userCredit";
|
|
891
|
+
type UserCreditCRUD = EntityCRUD<UserCredit, typeof ENTITY$5>;
|
|
867
892
|
declare const userCreditIntegration: {
|
|
868
893
|
get: {
|
|
869
894
|
responseFields: ["userCredit"];
|
|
@@ -1830,6 +1855,142 @@ interface PaystackInitializePaymentResponse {
|
|
|
1830
1855
|
}
|
|
1831
1856
|
declare const paystackInitializePaymentResponse: (keyof PaystackInitializePaymentResponse)[];
|
|
1832
1857
|
|
|
1858
|
+
type CreditPlanFields = (keyof CreditPlan)[];
|
|
1859
|
+
type CreditTransactionFields = (keyof CreditTransaction)[];
|
|
1860
|
+
type ServiceCreditCostFields = (keyof ServiceCreditCost)[];
|
|
1861
|
+
type CouponFields = (keyof Coupon)[];
|
|
1862
|
+
type CouponRedemptionFields = (keyof CouponRedemption)[];
|
|
1863
|
+
|
|
1864
|
+
declare const ENTITY$4: "couponRedemption";
|
|
1865
|
+
type CouponRedemptionCRUD = EntityCRUD<CouponRedemption, typeof ENTITY$4>;
|
|
1866
|
+
declare const couponRedemptionIntegration: {
|
|
1867
|
+
get: {
|
|
1868
|
+
responseFields: ["couponRedemption"];
|
|
1869
|
+
nestedFields: Record<"couponRedemption", CouponRedemptionFields>;
|
|
1870
|
+
};
|
|
1871
|
+
create: {
|
|
1872
|
+
responseFields: ["couponRedemption"];
|
|
1873
|
+
nestedFields: Record<"couponRedemption", CouponRedemptionFields>;
|
|
1874
|
+
};
|
|
1875
|
+
update: {
|
|
1876
|
+
responseFields: ["couponRedemption"];
|
|
1877
|
+
nestedFields: Record<"couponRedemption", CouponRedemptionFields>;
|
|
1878
|
+
};
|
|
1879
|
+
};
|
|
1880
|
+
declare const couponRedemptionListIntegration: {
|
|
1881
|
+
responseFields: readonly ["couponRedemptions", "total"];
|
|
1882
|
+
nestedFields: Record<"couponRedemptions", CouponRedemptionFields>;
|
|
1883
|
+
};
|
|
1884
|
+
declare const couponRedemptionDeleteIntegration: {
|
|
1885
|
+
responseFields: ["couponRedemptionId"];
|
|
1886
|
+
};
|
|
1887
|
+
interface ValidateCouponRedemptionRequest {
|
|
1888
|
+
userId: string;
|
|
1889
|
+
code: string;
|
|
1890
|
+
}
|
|
1891
|
+
type ValidateCouponRedemptionResponse = CouponRedemptionCRUD["GetResponse"];
|
|
1892
|
+
|
|
1893
|
+
declare const ENTITY$3: "coupon";
|
|
1894
|
+
type CouponCRUD = EntityCRUD<Coupon, typeof ENTITY$3>;
|
|
1895
|
+
declare const couponIntegration: {
|
|
1896
|
+
get: {
|
|
1897
|
+
responseFields: ["coupon"];
|
|
1898
|
+
nestedFields: Record<"coupon", CouponFields>;
|
|
1899
|
+
};
|
|
1900
|
+
create: {
|
|
1901
|
+
responseFields: ["coupon"];
|
|
1902
|
+
nestedFields: Record<"coupon", CouponFields>;
|
|
1903
|
+
};
|
|
1904
|
+
update: {
|
|
1905
|
+
responseFields: ["coupon"];
|
|
1906
|
+
nestedFields: Record<"coupon", CouponFields>;
|
|
1907
|
+
};
|
|
1908
|
+
};
|
|
1909
|
+
declare const couponListIntegration: {
|
|
1910
|
+
responseFields: readonly ["coupons", "total"];
|
|
1911
|
+
nestedFields: Record<"coupons", CouponFields>;
|
|
1912
|
+
};
|
|
1913
|
+
declare const couponDeleteIntegration: {
|
|
1914
|
+
responseFields: ["couponId"];
|
|
1915
|
+
};
|
|
1916
|
+
interface ValidateCouponRequest {
|
|
1917
|
+
userId: string;
|
|
1918
|
+
code: string;
|
|
1919
|
+
}
|
|
1920
|
+
type ValidateCouponResponse = CouponCRUD["GetResponse"];
|
|
1921
|
+
|
|
1922
|
+
declare const ENTITY$2: "creditPlan";
|
|
1923
|
+
type CreditPlanCRUD = EntityCRUD<CreditPlan, typeof ENTITY$2>;
|
|
1924
|
+
declare const creditPlanIntegration: {
|
|
1925
|
+
get: {
|
|
1926
|
+
responseFields: ["creditPlan"];
|
|
1927
|
+
nestedFields: Record<"creditPlan", CreditPlanFields>;
|
|
1928
|
+
};
|
|
1929
|
+
create: {
|
|
1930
|
+
responseFields: ["creditPlan"];
|
|
1931
|
+
nestedFields: Record<"creditPlan", CreditPlanFields>;
|
|
1932
|
+
};
|
|
1933
|
+
update: {
|
|
1934
|
+
responseFields: ["creditPlan"];
|
|
1935
|
+
nestedFields: Record<"creditPlan", CreditPlanFields>;
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
declare const creditPlanListIntegration: {
|
|
1939
|
+
responseFields: readonly ["creditPlans", "total"];
|
|
1940
|
+
nestedFields: Record<"creditPlans", CreditPlanFields>;
|
|
1941
|
+
};
|
|
1942
|
+
declare const creditPlanDeleteIntegration: {
|
|
1943
|
+
responseFields: ["creditPlanId"];
|
|
1944
|
+
};
|
|
1945
|
+
|
|
1946
|
+
declare const ENTITY$1: "creditTransaction";
|
|
1947
|
+
type CreditTransactionCRUD = EntityCRUD<CreditTransaction, typeof ENTITY$1>;
|
|
1948
|
+
declare const creditTransactionIntegration: {
|
|
1949
|
+
get: {
|
|
1950
|
+
responseFields: ["creditTransaction"];
|
|
1951
|
+
nestedFields: Record<"creditTransaction", CreditTransactionFields>;
|
|
1952
|
+
};
|
|
1953
|
+
create: {
|
|
1954
|
+
responseFields: ["creditTransaction"];
|
|
1955
|
+
nestedFields: Record<"creditTransaction", CreditTransactionFields>;
|
|
1956
|
+
};
|
|
1957
|
+
update: {
|
|
1958
|
+
responseFields: ["creditTransaction"];
|
|
1959
|
+
nestedFields: Record<"creditTransaction", CreditTransactionFields>;
|
|
1960
|
+
};
|
|
1961
|
+
};
|
|
1962
|
+
declare const creditTransactionListIntegration: {
|
|
1963
|
+
responseFields: readonly ["creditTransactions", "total"];
|
|
1964
|
+
nestedFields: Record<"creditTransactions", CreditTransactionFields>;
|
|
1965
|
+
};
|
|
1966
|
+
declare const creditTransactionDeleteIntegration: {
|
|
1967
|
+
responseFields: ["creditTransactionId"];
|
|
1968
|
+
};
|
|
1969
|
+
|
|
1970
|
+
declare const ENTITY: "serviceCreditCost";
|
|
1971
|
+
type ServiceCreditCostCRUD = EntityCRUD<ServiceCreditCost, typeof ENTITY>;
|
|
1972
|
+
declare const serviceCreditCostIntegration: {
|
|
1973
|
+
get: {
|
|
1974
|
+
responseFields: ["serviceCreditCost"];
|
|
1975
|
+
nestedFields: Record<"serviceCreditCost", ServiceCreditCostFields>;
|
|
1976
|
+
};
|
|
1977
|
+
create: {
|
|
1978
|
+
responseFields: ["serviceCreditCost"];
|
|
1979
|
+
nestedFields: Record<"serviceCreditCost", ServiceCreditCostFields>;
|
|
1980
|
+
};
|
|
1981
|
+
update: {
|
|
1982
|
+
responseFields: ["serviceCreditCost"];
|
|
1983
|
+
nestedFields: Record<"serviceCreditCost", ServiceCreditCostFields>;
|
|
1984
|
+
};
|
|
1985
|
+
};
|
|
1986
|
+
declare const serviceCreditCostListIntegration: {
|
|
1987
|
+
responseFields: readonly ["serviceCreditCosts", "total"];
|
|
1988
|
+
nestedFields: Record<"serviceCreditCosts", ServiceCreditCostFields>;
|
|
1989
|
+
};
|
|
1990
|
+
declare const serviceCreditCostDeleteIntegration: {
|
|
1991
|
+
responseFields: ["serviceCreditCostId"];
|
|
1992
|
+
};
|
|
1993
|
+
|
|
1833
1994
|
declare const createFlutterwaveService: (client: GraphQLClient) => {
|
|
1834
1995
|
getFlutterAccessToken(input: GetFlutterAccessTokenRequest, fetchFields?: {
|
|
1835
1996
|
root?: (keyof GetFlutterAccessTokenResponse)[];
|
|
@@ -1852,10 +2013,6 @@ declare const createPaystackService: (client: GraphQLClient) => {
|
|
|
1852
2013
|
};
|
|
1853
2014
|
type PaystackService = ReturnType<typeof createPaystackService>;
|
|
1854
2015
|
|
|
1855
|
-
type CreditPlanFields = (keyof CreditPlan)[];
|
|
1856
|
-
type CreditTransactionFields = (keyof CreditTransaction)[];
|
|
1857
|
-
type ServiceCreditCostFields = (keyof ServiceCreditCost)[];
|
|
1858
|
-
|
|
1859
2016
|
declare const createCreditPlanService: (client: GraphQLClient) => {
|
|
1860
2017
|
createCreditPlan: (input: CreateEntityRequest<CreditPlan, "creditPlan">, fetchFields?: {
|
|
1861
2018
|
root?: "creditPlan"[] | undefined;
|
|
@@ -1928,6 +2085,58 @@ declare const createServiceCreditCostService: (client: GraphQLClient) => {
|
|
|
1928
2085
|
};
|
|
1929
2086
|
type ServiceCreditCostService = ReturnType<typeof createServiceCreditCostService>;
|
|
1930
2087
|
|
|
2088
|
+
declare const createCouponRedemptionService: (client: GraphQLClient) => {
|
|
2089
|
+
createCouponRedemption: (input: CreateEntityRequest<CouponRedemption, "couponRedemption">, fetchFields?: {
|
|
2090
|
+
root?: "couponRedemption"[] | undefined;
|
|
2091
|
+
nestedFields?: Record<"couponRedemption", CouponRedemptionFields> | undefined;
|
|
2092
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<CouponRedemption, "couponRedemption"> | undefined>;
|
|
2093
|
+
updateCouponRedemption: (input: UpdateEntityRequest<CouponRedemption, "couponRedemption">, fetchFields?: {
|
|
2094
|
+
root?: "couponRedemption"[] | undefined;
|
|
2095
|
+
nestedFields?: Record<"couponRedemption", CouponRedemptionFields> | undefined;
|
|
2096
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<CouponRedemption, "couponRedemption"> | undefined>;
|
|
2097
|
+
getCouponRedemption: (input: GetEntityRequest<CouponRedemption, "couponRedemption">, fetchFields?: {
|
|
2098
|
+
root?: "couponRedemption"[] | undefined;
|
|
2099
|
+
nestedFields?: Record<"couponRedemption", CouponRedemptionFields> | undefined;
|
|
2100
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<CouponRedemption, "couponRedemption"> | undefined>;
|
|
2101
|
+
deleteCouponRedemption: (input: DeleteEntityRequest<"couponRedemption">, fetchFields?: {
|
|
2102
|
+
root?: "couponRedemptionId"[] | undefined;
|
|
2103
|
+
nestedFields?: {} | undefined;
|
|
2104
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"couponRedemption"> | undefined>;
|
|
2105
|
+
listCouponRedemptions: (input: ListEntityRequest<CouponRedemption, "couponRedemption">, fetchFields?: {
|
|
2106
|
+
root?: ("total" | "couponRedemptions")[] | undefined;
|
|
2107
|
+
nestedFields?: Record<"couponRedemptions", CouponRedemptionFields> | undefined;
|
|
2108
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<CouponRedemption, "couponRedemption"> | undefined>;
|
|
2109
|
+
};
|
|
2110
|
+
type CouponRedemptionService = ReturnType<typeof createCouponRedemptionService>;
|
|
2111
|
+
|
|
2112
|
+
declare const createCouponService: (client: GraphQLClient) => {
|
|
2113
|
+
createCoupon: (input: CreateEntityRequest<Coupon, "coupon">, fetchFields?: {
|
|
2114
|
+
root?: "coupon"[] | undefined;
|
|
2115
|
+
nestedFields?: Record<"coupon", CouponFields> | undefined;
|
|
2116
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<Coupon, "coupon"> | undefined>;
|
|
2117
|
+
updateCoupon: (input: UpdateEntityRequest<Coupon, "coupon">, fetchFields?: {
|
|
2118
|
+
root?: "coupon"[] | undefined;
|
|
2119
|
+
nestedFields?: Record<"coupon", CouponFields> | undefined;
|
|
2120
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<Coupon, "coupon"> | undefined>;
|
|
2121
|
+
getCoupon: (input: GetEntityRequest<Coupon, "coupon">, fetchFields?: {
|
|
2122
|
+
root?: "coupon"[] | undefined;
|
|
2123
|
+
nestedFields?: Record<"coupon", CouponFields> | undefined;
|
|
2124
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<Coupon, "coupon"> | undefined>;
|
|
2125
|
+
deleteCoupon: (input: DeleteEntityRequest<"coupon">, fetchFields?: {
|
|
2126
|
+
root?: "couponId"[] | undefined;
|
|
2127
|
+
nestedFields?: {} | undefined;
|
|
2128
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"coupon"> | undefined>;
|
|
2129
|
+
listCoupons: (input: ListEntityRequest<Coupon, "coupon">, fetchFields?: {
|
|
2130
|
+
root?: ("total" | "coupons")[] | undefined;
|
|
2131
|
+
nestedFields?: Record<"coupons", CouponFields> | undefined;
|
|
2132
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<Coupon, "coupon"> | undefined>;
|
|
2133
|
+
validateCoupon: (input: ValidateCouponRequest, fetchFields?: {
|
|
2134
|
+
root?: "coupon"[] | undefined;
|
|
2135
|
+
nestedFields?: Record<"coupon", CouponFields> | undefined;
|
|
2136
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<Coupon, "coupon"> | undefined>;
|
|
2137
|
+
};
|
|
2138
|
+
type CouponService = ReturnType<typeof createCouponService>;
|
|
2139
|
+
|
|
1931
2140
|
type AIServerAuthFields = (keyof AIServerAuth)[];
|
|
1932
2141
|
|
|
1933
2142
|
interface GetAIServerAuthRequest {
|
|
@@ -1951,4 +2160,4 @@ declare const createAIServerService: (client: GraphQLClient) => {
|
|
|
1951
2160
|
};
|
|
1952
2161
|
type AIServerService = ReturnType<typeof createAIServerService>;
|
|
1953
2162
|
|
|
1954
|
-
export { type AIServerAuth, type AIServerService, type AdminDashboardMatrix, type AdminDashboardMatrixKey, type AllUserNotificationSettingKey, type AuthService, type AuthTokenProvider, AuthenticationError, type BooleanLiteral, type Card, type CardObject, type CardProcessed, type ChecklistItem, type ChecklistItemService, type ClientOptions, type ConsultantAssignment, type ConsultantAssignmentService, type ConsultantClientStats, type ConsultantDashboardMetricCount, type ConsultantDashboardMetricCountKey, type ConsultantInvite, type ConsultantInviteService, type ConsultantNotificationSettingKey, type ConsultantRequest, type ContactMessage, type ContactUsRequest, type ContactUsResponse, type CreateCardObjectRequest, type CreateCardObjectResponse, type CreateChecklistItemRequest, type CreateChecklistItemResponse, type CreateChecklistItemResponseNestedFields, type CreateConsultantAssignmentRequest, type CreateConsultantAssignmentResponse, type CreateConsultantAssignmentResponseNestedFields, type CreateCustomerObjectRequest, type CreateCustomerObjectResponse, type CreateReadinessScoreReviewRequest, type CreateReadinessScoreReviewResponse, type CreateReadinessScoreReviewResponseNestedFields, type CreateSOPReviewRequest, type CreateSOPReviewResponse, type CreateSOPReviewResponseNestedFields, type CreateUserRequest, type CreateUserResponse, type CreateUserResponseNestedFields, type CreateUserSettingRequest, type CreateUserSettingResponse, type CreateUserSettingResponseNestedFields, type CreateVisaApplicationRequest, type CreateVisaApplicationResponse, type CreateVisaApplicationResponseNestedFields, type CreateVisaProfileChecklistItemRequest, type CreateVisaProfileChecklistItemResponse, type CreateVisaProfileChecklistItemResponseNestedFields, type CreateVisaProfileChecklistItemsRequest, type CreateVisaProfileChecklistItemsResponse, type CreateVisaProfileChecklistItemsResponseNestedFields, type CreateVisaProfileRequest, type CreateVisaProfileResponse, type CreateVisaProfileResponseNestedFields, type CreateVisaProfileReviewCommentRequest, type CreateVisaProfileReviewCommentResponse, type CreateVisaProfileReviewCommentResponseNestedFields, type CreditPlan, type CreditPlanService, type CreditTransaction, type CreditTransactionService, type DeleteChecklistItemRequest, type DeleteChecklistItemResponse, type DeleteConsultantAssignmentRequest, type DeleteConsultantAssignmentResponse, type DeleteReadinessScoreReviewRequest, type DeleteReadinessScoreReviewResponse, type DeleteUserRequest, type DeleteUserResponse, type DeleteUserSettingRequest, type DeleteUserSettingResponse, type DeleteVisaApplicationRequest, type DeleteVisaApplicationResponse, type DeleteVisaProfileChecklistItemRequest, type DeleteVisaProfileChecklistItemResponse, type DeleteVisaProfileRequest, type DeleteVisaProfileResponse, type DeleteVisaProfileReviewCommentRequest, type DeleteVisaProfileReviewCommentResponse, type DocumentReview, type EducationalBackground, type FileInfo, type FlutterApiResponse, type FlutterCustomerAddress, type FlutterCustomerName, type FlutterCustomerPhone, type FlutterwaveCustomer, type FlutterwaveService, type GenerateSOPRequest, type GenerateSOPResponse, type GenerateSOPResponseNestedFields, type GetAIServerAuthRequest, type GetAIServerAuthResponse, type GetAIServerAuthResponseNestedFields, type GetActivityLogRequest, type GetActivityLogResponse, type GetActivityLogResponseNestedFields, type GetChecklistItemRequest, type GetChecklistItemResponse, type GetChecklistItemResponseNestedFields, type GetConsultantAssignmentCountRequest, type GetConsultantAssignmentCountResponse, type GetConsultantAssignmentRequest, type GetConsultantAssignmentResponse, type GetConsultantAssignmentResponseNestedFields, type GetConsultantClientStatsRequest, type GetConsultantClientStatsResponse, type GetConsultantClientStatsResponseNestedFields, type GetFlutterAccessTokenRequest, type GetFlutterAccessTokenResponse, type GetGeneratedSOPRequest, type GetGeneratedSOPResponse, type GetGeneratedSOPResponseNestedFields, type GetJobRequest, type GetJobResponse, type GetJobResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserCountResponse, type GetUserCountResponseNestedFields, type GetUserRequest, type GetUserResponse, type GetUserResponseNestedFields, type GetUserSettingRequest, type GetUserSettingResponse, type GetUserSettingResponseNestedFields, type GetUserTypeStatusCountRequest, type GetUserTypeStatusCountResponse, type GetUserTypeStatusCountResponseNestedFields, type GetVisaApplicationCountRequest, type GetVisaApplicationCountResponse, type GetVisaApplicationRequest, type GetVisaApplicationResponse, type GetVisaApplicationResponseNestedFields, type GetVisaProfileChecklistItemRequest, type GetVisaProfileChecklistItemResponse, type GetVisaProfileChecklistItemResponseNestedFields, type GetVisaProfileChecklistItemsByChecklistRequest, type GetVisaProfileChecklistItemsByChecklistResponse, type GetVisaProfileChecklistItemsByChecklistResponseNestedFields, type GetVisaProfileCountByFilterRequest, type GetVisaProfileCountByFilterResponse, type GetVisaProfileCountRequest, type GetVisaProfileCountResponse, type GetVisaProfileCountResponseNestedFields, type GetVisaProfileRequest, type GetVisaProfileResponse, type GetVisaProfileResponseNestedFields, type GetVisaProfileReviewCommentRequest, type GetVisaProfileReviewCommentResponse, type GetVisaProfileReviewCommentResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Help, type HtmlString, type Job, type ListActivityLogsRequest, type ListActivityLogsResponse, type ListActivityLogsResponseNestedFields, type ListChecklistItemsRequest, type ListChecklistItemsResponse, type ListChecklistItemsResponseNestedFields, type ListConsultantAssignmentsRequest, type ListConsultantAssignmentsResponse, type ListConsultantAssignmentsResponseNestedFields, type ListReadinessScoreReviewsRequest, type ListReadinessScoreReviewsResponse, type ListReadinessScoreReviewsResponseNestedFields, type ListUsersRequest, type ListUsersResponse, type ListUsersResponseNestedFields, type ListVisaApplicationsRequest, type ListVisaApplicationsResponse, type ListVisaApplicationsResponseNestedFields, type ListVisaProfileChecklistItemsRequest, type ListVisaProfileChecklistItemsResponse, type ListVisaProfileChecklistItemsResponseNestedFields, type ListVisaProfileReviewCommentsRequest, type ListVisaProfileReviewCommentsResponse, type ListVisaProfileReviewCommentsResponseNestedFields, type ListVisaProfilesRequest, type ListVisaProfilesResponse, type ListVisaProfilesResponseNestedFields, type LoginRequest, type LoginResponse, type MeRequest, type MeResponse, type MeResponseNestedFields, type Middleware, NetworkError, type Next, type Notification, type Pagination, type PartnerDashboardMatrix, type PartnerDashboardMatrixKey, type PaymentMethod, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackService, type Plan, type ReadinessScore, type ReadinessScoreReview, type ReadinessScoreReviewService, type RegisterForm, type RequestContext, type RequestOption, type ResetPasswordRequest, type ResetPasswordResponse, type ResponseContext, type SOPAnswer, type SOPReview, type SOPReviewService, SdkError, type SendOTPRequest, type SendOTPResponse, type ServiceCreditCost, type ServiceCreditCostService, type SettingNotificationChannelKey, type SignUpRequest, type SignUpResponse, type Subscription, type SubscriptionPackage, type SubscriptionService, type TransportOptions, type UpdateChecklistItemRequest, type UpdateChecklistItemResponse, type UpdateChecklistItemResponseNestedFields, type UpdateConsultantAssignmentRequest, type UpdateConsultantAssignmentResponse, type UpdateConsultantAssignmentResponseNestedFields, type UpdatePasswordRequest, type UpdatePasswordResponse, type UpdateReadinessScoreReviewRequest, type UpdateReadinessScoreReviewResponse, type UpdateReadinessScoreReviewResponseNestedFields, type UpdateSOPReviewRequest, type UpdateSOPReviewResponse, type UpdateSOPReviewResponseNestedFields, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponseNestedFields, type UpdateUserSettingRequest, type UpdateUserSettingResponse, type UpdateUserSettingResponseNestedFields, type UpdateVisaApplicationRequest, type UpdateVisaApplicationResponse, type UpdateVisaApplicationResponseNestedFields, type UpdateVisaProfileChecklistItemRequest, type UpdateVisaProfileChecklistItemResponse, type UpdateVisaProfileChecklistItemResponseNestedFields, type UpdateVisaProfileRequest, type UpdateVisaProfileResponse, type UpdateVisaProfileResponseNestedFields, type UpdateVisaProfileReviewCommentRequest, type UpdateVisaProfileReviewCommentResponse, type UpdateVisaProfileReviewCommentResponseNestedFields, type User, type UserActivityLog, type UserApplicationMetric, type UserCount, type UserCredit, type UserCreditCRUD, type UserNotificationSettingKey, type UserService, type UserSetting, type UserSettingService, type UserStatus, type UserSubscription, type UserSubscriptionService, type UserType, type UserTypeStatusCount, type VerifyOTPRequest, type VerifyOTPResponse, type VisaApplication, type VisaApplicationMetricKey, type VisaApplicationService, type VisaApplicationStatus, type VisaProfile, type VisaProfileActivityLog, type VisaProfileChecklistItem, type VisaProfileChecklistItemService, type VisaProfileCount, type VisaProfileDetails, type VisaProfileProgram, type VisaProfileReviewComment, type VisaProfileReviewCommentService, type VisaProfileService, type VisaType, _generateSOPResponseNestedFields, _getConsultantAssignmentResponseNestedFields, _getSOPReviewResponseNestedFields, _getUserResponseNestedFields, _getVisaProfileChecklistItemResponseNestedFields, _getVisaProfileResponseNestedFields, _getVisaProfileReviewCommentResponseNestedFields, compose, contactUsResponseFields, createAIServerService, createActivityLogService, createAuthService, createCardObjectResponse, createChecklistItemResponse, createChecklistItemResponseNestedFields, createChecklistItemService, createConsultantAssignmentResponseFields, createConsultantAssignmentResponseNestedFields, createConsultantAssignmentService, createConsultantInviteService, createCreditPlanService, createCreditTransactionService, createCustomerObjectResponse, createFlutterwaveService, createPaystackService, createReadinessScoreReviewResponseFields, createReadinessScoreReviewResponseNestedFields, createReadinessScoreReviewService, createSOPReviewResponseFields, createSOPReviewResponseNestedFields, createSOPReviewService, createServiceCreditCostService, createSubscriptionService, createTransport, createUserCreditService, createUserResponseFields, createUserResponseNestedFields, createUserService, createUserSettingResponseFields, createUserSettingResponseNestedFields, createUserSettingService, createUserSubscriptionService, createVisaApplicationResponseFields, createVisaApplicationResponseNestedFields, createVisaApplicationService, createVisaProfileChecklistItemResponse, createVisaProfileChecklistItemResponseNestedFields, createVisaProfileChecklistItemService, createVisaProfileChecklistItemsResponse, createVisaProfileChecklistItemsResponseNestedFields, createVisaProfileResponse, createVisaProfileResponseNestedFields, createVisaProfileReviewCommentResponseFields, createVisaProfileReviewCommentResponseNestedFields, createVisaProfileReviewCommentService, createVisaProfileService, deleteChecklistItemResponse, deleteConsultantAssignmentResponseFields, deleteReadinessScoreReviewResponseFields, deleteUserResponseFields, deleteUserSettingResponseFields, deleteVisaApplicationResponseFields, deleteVisaProfileChecklistItemResponse, deleteVisaProfileResponse, deleteVisaProfileReviewCommentResponseFields, encryptAES, generateSOPResponse, generateSOPResponseNestedFields, getAIServerAuthResponse, getAIServerAuthResponseNestedFields, getActivityLogResponseFields, getActivityLogResponseNestedFields, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listReadinessScoreReviewsResponseFields, listReadinessScoreReviewsResponseNestedFields, listUsersResponseFields, listUsersResponseNestedFields, listVisaApplicationsResponseFields, listVisaApplicationsResponseNestedFields, listVisaProfileChecklistItemResponse, listVisaProfileChecklistItemResponseNestedFields, listVisaProfileReviewCommentsResponseFields, listVisaProfileReviewCommentsResponseNestedFields, listVisaProfilesResponse, listVisaProfilesResponseNestedFields, loginResponseFields, meResponseFields, meResponseNestedFields, paystackInitializePaymentResponse, resetPasswordResponseFields, sendOTPResponseFields, signUpResponseFields, toAsyncHeadersFactory, toAsyncTokenProvider, updateChecklistItemResponse, updateChecklistItemResponseNestedFields, updateConsultantAssignmentResponseFields, updateConsultantAssignmentResponseNestedFields, updatePasswordResponseFields, updateReadinessScoreReviewResponseFields, updateReadinessScoreReviewResponseNestedFields, updateSOPReviewResponseFields, updateSOPReviewResponseNestedFields, updateUserResponseFields, updateUserResponseNestedFields, updateUserSettingResponseFields, updateUserSettingResponseNestedFields, updateVisaApplicationResponseFields, updateVisaApplicationResponseNestedFields, updateVisaProfileChecklistItemResponse, updateVisaProfileChecklistItemResponseNestedFields, updateVisaProfileResponseFields, updateVisaProfileResponseNestedFields, updateVisaProfileReviewCommentResponseFields, updateVisaProfileReviewCommentResponseNestedFields, userCreditDeleteIntegration, userCreditIntegration, userCreditListIntegration, verifyOTPResponseFields };
|
|
2163
|
+
export { type AIServerAuth, type AIServerService, type AdminDashboardMatrix, type AdminDashboardMatrixKey, type AllUserNotificationSettingKey, type AuthService, type AuthTokenProvider, AuthenticationError, type BooleanLiteral, type Card, type CardObject, type CardProcessed, type ChecklistItem, type ChecklistItemService, type ClientOptions, type ConsultantAssignment, type ConsultantAssignmentService, type ConsultantClientStats, type ConsultantDashboardMetricCount, type ConsultantDashboardMetricCountKey, type ConsultantInvite, type ConsultantInviteService, type ConsultantNotificationSettingKey, type ConsultantRequest, type ContactMessage, type ContactUsRequest, type ContactUsResponse, type Coupon, type CouponCRUD, type CouponRedemption, type CouponRedemptionCRUD, type CouponRedemptionService, type CouponService, type CreateCardObjectRequest, type CreateCardObjectResponse, type CreateChecklistItemRequest, type CreateChecklistItemResponse, type CreateChecklistItemResponseNestedFields, type CreateConsultantAssignmentRequest, type CreateConsultantAssignmentResponse, type CreateConsultantAssignmentResponseNestedFields, type CreateCustomerObjectRequest, type CreateCustomerObjectResponse, type CreateReadinessScoreReviewRequest, type CreateReadinessScoreReviewResponse, type CreateReadinessScoreReviewResponseNestedFields, type CreateSOPReviewRequest, type CreateSOPReviewResponse, type CreateSOPReviewResponseNestedFields, type CreateUserRequest, type CreateUserResponse, type CreateUserResponseNestedFields, type CreateUserSettingRequest, type CreateUserSettingResponse, type CreateUserSettingResponseNestedFields, type CreateVisaApplicationRequest, type CreateVisaApplicationResponse, type CreateVisaApplicationResponseNestedFields, type CreateVisaProfileChecklistItemRequest, type CreateVisaProfileChecklistItemResponse, type CreateVisaProfileChecklistItemResponseNestedFields, type CreateVisaProfileChecklistItemsRequest, type CreateVisaProfileChecklistItemsResponse, type CreateVisaProfileChecklistItemsResponseNestedFields, type CreateVisaProfileRequest, type CreateVisaProfileResponse, type CreateVisaProfileResponseNestedFields, type CreateVisaProfileReviewCommentRequest, type CreateVisaProfileReviewCommentResponse, type CreateVisaProfileReviewCommentResponseNestedFields, type CreditPlan, type CreditPlanCRUD, type CreditPlanService, type CreditTransaction, type CreditTransactionCRUD, type CreditTransactionService, type DeleteChecklistItemRequest, type DeleteChecklistItemResponse, type DeleteConsultantAssignmentRequest, type DeleteConsultantAssignmentResponse, type DeleteReadinessScoreReviewRequest, type DeleteReadinessScoreReviewResponse, type DeleteUserRequest, type DeleteUserResponse, type DeleteUserSettingRequest, type DeleteUserSettingResponse, type DeleteVisaApplicationRequest, type DeleteVisaApplicationResponse, type DeleteVisaProfileChecklistItemRequest, type DeleteVisaProfileChecklistItemResponse, type DeleteVisaProfileRequest, type DeleteVisaProfileResponse, type DeleteVisaProfileReviewCommentRequest, type DeleteVisaProfileReviewCommentResponse, type DocumentReview, type EducationalBackground, type FileInfo, type FlutterApiResponse, type FlutterCustomerAddress, type FlutterCustomerName, type FlutterCustomerPhone, type FlutterwaveCustomer, type FlutterwaveService, type GenerateSOPRequest, type GenerateSOPResponse, type GenerateSOPResponseNestedFields, type GetAIServerAuthRequest, type GetAIServerAuthResponse, type GetAIServerAuthResponseNestedFields, type GetActivityLogRequest, type GetActivityLogResponse, type GetActivityLogResponseNestedFields, type GetChecklistItemRequest, type GetChecklistItemResponse, type GetChecklistItemResponseNestedFields, type GetConsultantAssignmentCountRequest, type GetConsultantAssignmentCountResponse, type GetConsultantAssignmentRequest, type GetConsultantAssignmentResponse, type GetConsultantAssignmentResponseNestedFields, type GetConsultantClientStatsRequest, type GetConsultantClientStatsResponse, type GetConsultantClientStatsResponseNestedFields, type GetFlutterAccessTokenRequest, type GetFlutterAccessTokenResponse, type GetGeneratedSOPRequest, type GetGeneratedSOPResponse, type GetGeneratedSOPResponseNestedFields, type GetJobRequest, type GetJobResponse, type GetJobResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserCountResponse, type GetUserCountResponseNestedFields, type GetUserRequest, type GetUserResponse, type GetUserResponseNestedFields, type GetUserSettingRequest, type GetUserSettingResponse, type GetUserSettingResponseNestedFields, type GetUserTypeStatusCountRequest, type GetUserTypeStatusCountResponse, type GetUserTypeStatusCountResponseNestedFields, type GetVisaApplicationCountRequest, type GetVisaApplicationCountResponse, type GetVisaApplicationRequest, type GetVisaApplicationResponse, type GetVisaApplicationResponseNestedFields, type GetVisaProfileChecklistItemRequest, type GetVisaProfileChecklistItemResponse, type GetVisaProfileChecklistItemResponseNestedFields, type GetVisaProfileChecklistItemsByChecklistRequest, type GetVisaProfileChecklistItemsByChecklistResponse, type GetVisaProfileChecklistItemsByChecklistResponseNestedFields, type GetVisaProfileCountByFilterRequest, type GetVisaProfileCountByFilterResponse, type GetVisaProfileCountRequest, type GetVisaProfileCountResponse, type GetVisaProfileCountResponseNestedFields, type GetVisaProfileRequest, type GetVisaProfileResponse, type GetVisaProfileResponseNestedFields, type GetVisaProfileReviewCommentRequest, type GetVisaProfileReviewCommentResponse, type GetVisaProfileReviewCommentResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Help, type HtmlString, type Job, type ListActivityLogsRequest, type ListActivityLogsResponse, type ListActivityLogsResponseNestedFields, type ListChecklistItemsRequest, type ListChecklistItemsResponse, type ListChecklistItemsResponseNestedFields, type ListConsultantAssignmentsRequest, type ListConsultantAssignmentsResponse, type ListConsultantAssignmentsResponseNestedFields, type ListReadinessScoreReviewsRequest, type ListReadinessScoreReviewsResponse, type ListReadinessScoreReviewsResponseNestedFields, type ListUsersRequest, type ListUsersResponse, type ListUsersResponseNestedFields, type ListVisaApplicationsRequest, type ListVisaApplicationsResponse, type ListVisaApplicationsResponseNestedFields, type ListVisaProfileChecklistItemsRequest, type ListVisaProfileChecklistItemsResponse, type ListVisaProfileChecklistItemsResponseNestedFields, type ListVisaProfileReviewCommentsRequest, type ListVisaProfileReviewCommentsResponse, type ListVisaProfileReviewCommentsResponseNestedFields, type ListVisaProfilesRequest, type ListVisaProfilesResponse, type ListVisaProfilesResponseNestedFields, type LoginRequest, type LoginResponse, type MeRequest, type MeResponse, type MeResponseNestedFields, type Middleware, NetworkError, type Next, type Notification, type Pagination, type PartnerDashboardMatrix, type PartnerDashboardMatrixKey, type PaymentMethod, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackService, type Plan, type ReadinessScore, type ReadinessScoreReview, type ReadinessScoreReviewService, type RegisterForm, type RequestContext, type RequestOption, type ResetPasswordRequest, type ResetPasswordResponse, type ResponseContext, type SOPAnswer, type SOPReview, type SOPReviewService, SdkError, type SendOTPRequest, type SendOTPResponse, type ServiceCreditCost, type ServiceCreditCostCRUD, type ServiceCreditCostService, type SettingNotificationChannelKey, type SignUpRequest, type SignUpResponse, type Subscription, type SubscriptionPackage, type SubscriptionService, type TransportOptions, type UpdateChecklistItemRequest, type UpdateChecklistItemResponse, type UpdateChecklistItemResponseNestedFields, type UpdateConsultantAssignmentRequest, type UpdateConsultantAssignmentResponse, type UpdateConsultantAssignmentResponseNestedFields, type UpdatePasswordRequest, type UpdatePasswordResponse, type UpdateReadinessScoreReviewRequest, type UpdateReadinessScoreReviewResponse, type UpdateReadinessScoreReviewResponseNestedFields, type UpdateSOPReviewRequest, type UpdateSOPReviewResponse, type UpdateSOPReviewResponseNestedFields, type UpdateUserRequest, type UpdateUserResponse, type UpdateUserResponseNestedFields, type UpdateUserSettingRequest, type UpdateUserSettingResponse, type UpdateUserSettingResponseNestedFields, type UpdateVisaApplicationRequest, type UpdateVisaApplicationResponse, type UpdateVisaApplicationResponseNestedFields, type UpdateVisaProfileChecklistItemRequest, type UpdateVisaProfileChecklistItemResponse, type UpdateVisaProfileChecklistItemResponseNestedFields, type UpdateVisaProfileRequest, type UpdateVisaProfileResponse, type UpdateVisaProfileResponseNestedFields, type UpdateVisaProfileReviewCommentRequest, type UpdateVisaProfileReviewCommentResponse, type UpdateVisaProfileReviewCommentResponseNestedFields, type User, type UserActivityLog, type UserApplicationMetric, type UserCount, type UserCredit, type UserCreditCRUD, type UserNotificationSettingKey, type UserService, type UserSetting, type UserSettingService, type UserStatus, type UserSubscription, type UserSubscriptionService, type UserType, type UserTypeStatusCount, type ValidateCouponRedemptionRequest, type ValidateCouponRedemptionResponse, type ValidateCouponRequest, type ValidateCouponResponse, type VerifyOTPRequest, type VerifyOTPResponse, type VisaApplication, type VisaApplicationMetricKey, type VisaApplicationService, type VisaApplicationStatus, type VisaProfile, type VisaProfileActivityLog, type VisaProfileChecklistItem, type VisaProfileChecklistItemService, type VisaProfileCount, type VisaProfileDetails, type VisaProfileProgram, type VisaProfileReviewComment, type VisaProfileReviewCommentService, type VisaProfileService, type VisaType, _generateSOPResponseNestedFields, _getConsultantAssignmentResponseNestedFields, _getSOPReviewResponseNestedFields, _getUserResponseNestedFields, _getVisaProfileChecklistItemResponseNestedFields, _getVisaProfileResponseNestedFields, _getVisaProfileReviewCommentResponseNestedFields, compose, contactUsResponseFields, couponDeleteIntegration, couponIntegration, couponListIntegration, couponRedemptionDeleteIntegration, couponRedemptionIntegration, couponRedemptionListIntegration, createAIServerService, createActivityLogService, createAuthService, createCardObjectResponse, createChecklistItemResponse, createChecklistItemResponseNestedFields, createChecklistItemService, createConsultantAssignmentResponseFields, createConsultantAssignmentResponseNestedFields, createConsultantAssignmentService, createConsultantInviteService, createCouponRedemptionService, createCouponService, createCreditPlanService, createCreditTransactionService, createCustomerObjectResponse, createFlutterwaveService, createPaystackService, createReadinessScoreReviewResponseFields, createReadinessScoreReviewResponseNestedFields, createReadinessScoreReviewService, createSOPReviewResponseFields, createSOPReviewResponseNestedFields, createSOPReviewService, createServiceCreditCostService, createSubscriptionService, createTransport, createUserCreditService, createUserResponseFields, createUserResponseNestedFields, createUserService, createUserSettingResponseFields, createUserSettingResponseNestedFields, createUserSettingService, createUserSubscriptionService, createVisaApplicationResponseFields, createVisaApplicationResponseNestedFields, createVisaApplicationService, createVisaProfileChecklistItemResponse, createVisaProfileChecklistItemResponseNestedFields, createVisaProfileChecklistItemService, createVisaProfileChecklistItemsResponse, createVisaProfileChecklistItemsResponseNestedFields, createVisaProfileResponse, createVisaProfileResponseNestedFields, createVisaProfileReviewCommentResponseFields, createVisaProfileReviewCommentResponseNestedFields, createVisaProfileReviewCommentService, createVisaProfileService, creditPlanDeleteIntegration, creditPlanIntegration, creditPlanListIntegration, creditTransactionDeleteIntegration, creditTransactionIntegration, creditTransactionListIntegration, deleteChecklistItemResponse, deleteConsultantAssignmentResponseFields, deleteReadinessScoreReviewResponseFields, deleteUserResponseFields, deleteUserSettingResponseFields, deleteVisaApplicationResponseFields, deleteVisaProfileChecklistItemResponse, deleteVisaProfileResponse, deleteVisaProfileReviewCommentResponseFields, encryptAES, generateSOPResponse, generateSOPResponseNestedFields, getAIServerAuthResponse, getAIServerAuthResponseNestedFields, getActivityLogResponseFields, getActivityLogResponseNestedFields, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listReadinessScoreReviewsResponseFields, listReadinessScoreReviewsResponseNestedFields, listUsersResponseFields, listUsersResponseNestedFields, listVisaApplicationsResponseFields, listVisaApplicationsResponseNestedFields, listVisaProfileChecklistItemResponse, listVisaProfileChecklistItemResponseNestedFields, listVisaProfileReviewCommentsResponseFields, listVisaProfileReviewCommentsResponseNestedFields, listVisaProfilesResponse, listVisaProfilesResponseNestedFields, loginResponseFields, meResponseFields, meResponseNestedFields, paystackInitializePaymentResponse, resetPasswordResponseFields, sendOTPResponseFields, serviceCreditCostDeleteIntegration, serviceCreditCostIntegration, serviceCreditCostListIntegration, signUpResponseFields, toAsyncHeadersFactory, toAsyncTokenProvider, updateChecklistItemResponse, updateChecklistItemResponseNestedFields, updateConsultantAssignmentResponseFields, updateConsultantAssignmentResponseNestedFields, updatePasswordResponseFields, updateReadinessScoreReviewResponseFields, updateReadinessScoreReviewResponseNestedFields, updateSOPReviewResponseFields, updateSOPReviewResponseNestedFields, updateUserResponseFields, updateUserResponseNestedFields, updateUserSettingResponseFields, updateUserSettingResponseNestedFields, updateVisaApplicationResponseFields, updateVisaApplicationResponseNestedFields, updateVisaProfileChecklistItemResponse, updateVisaProfileChecklistItemResponseNestedFields, updateVisaProfileResponseFields, updateVisaProfileResponseNestedFields, updateVisaProfileReviewCommentResponseFields, updateVisaProfileReviewCommentResponseNestedFields, userCreditDeleteIntegration, userCreditIntegration, userCreditListIntegration, verifyOTPResponseFields };
|