@visa-check-r/integrations 0.0.100 → 0.0.102
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 +128 -22
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +49 -15
- package/dist/index.d.ts +49 -15
- package/dist/index.esm.js +128 -23
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -26,6 +26,15 @@ interface Pagination {
|
|
|
26
26
|
skip: number;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
interface AppConfig {
|
|
30
|
+
id: string;
|
|
31
|
+
shortname: string;
|
|
32
|
+
title: string;
|
|
33
|
+
status: "active" | "inactive";
|
|
34
|
+
value: string;
|
|
35
|
+
valueDefinition: string;
|
|
36
|
+
createdAt: string;
|
|
37
|
+
}
|
|
29
38
|
type SettingNotificationChannelKey = "push" | "sms" | "email";
|
|
30
39
|
type UserNotificationSettingKey = "userSettingApplicationStatus" | "userSettingDocReviewFeedback" | "userSettingSubmissionConfirmation" | "userSettingChecklistIncompleteReminder" | "userSettingNewMessageFromConsultant";
|
|
31
40
|
type ConsultantNotificationSettingKey = "userSettingClientUpdate" | "userSettingDocReviewFeedback" | "userSettingNewMessageFromClient";
|
|
@@ -589,21 +598,8 @@ type UserCountFields = (keyof UserCount)[];
|
|
|
589
598
|
type UserTypeStatusCountFields = (keyof UserTypeStatusCount)[];
|
|
590
599
|
type PartnerMatricesFields = (keyof PartnerMatrices)[];
|
|
591
600
|
type NotificationFields = (keyof Notification)[];
|
|
601
|
+
type AppConfigFields = (keyof AppConfig)[];
|
|
592
602
|
|
|
593
|
-
interface ListPartnerClientsRequest {
|
|
594
|
-
referenceCode: string;
|
|
595
|
-
limit: number;
|
|
596
|
-
skip: number;
|
|
597
|
-
}
|
|
598
|
-
interface ListPartnerClientsResponse {
|
|
599
|
-
total: number;
|
|
600
|
-
clients: User[];
|
|
601
|
-
}
|
|
602
|
-
declare const listPartnerClientsResponseFields: (keyof ListPartnerClientsResponse)[];
|
|
603
|
-
interface ListPartnerClientsResponseNestedFields {
|
|
604
|
-
clients: UserFields;
|
|
605
|
-
}
|
|
606
|
-
declare const listPartnerClientsResponseNestedFields: ListPartnerClientsResponseNestedFields;
|
|
607
603
|
interface GetPartnerMatricesRequest {
|
|
608
604
|
partnerId: string;
|
|
609
605
|
referenceCode: string;
|
|
@@ -696,6 +692,20 @@ interface DeleteUserRequest {
|
|
|
696
692
|
}
|
|
697
693
|
type DeleteUserResponse = DeleteUserRequest;
|
|
698
694
|
declare const deleteUserResponseFields: (keyof DeleteUserResponse)[];
|
|
695
|
+
interface ListPartnerClientsRequest {
|
|
696
|
+
referenceCode: string;
|
|
697
|
+
limit: number;
|
|
698
|
+
skip: number;
|
|
699
|
+
}
|
|
700
|
+
interface ListPartnerClientsResponse {
|
|
701
|
+
total: number;
|
|
702
|
+
clients: User[];
|
|
703
|
+
}
|
|
704
|
+
declare const listPartnerClientsResponseFields: (keyof ListPartnerClientsResponse)[];
|
|
705
|
+
interface ListPartnerClientsResponseNestedFields {
|
|
706
|
+
clients: UserFields;
|
|
707
|
+
}
|
|
708
|
+
declare const listPartnerClientsResponseNestedFields: ListPartnerClientsResponseNestedFields;
|
|
699
709
|
|
|
700
710
|
declare const createUserService: (client: GraphQLClient) => {
|
|
701
711
|
listPartnerClients(input: ListPartnerClientsRequest, fetchFields?: {
|
|
@@ -1206,6 +1216,30 @@ declare const createNotificationService: (client: GraphQLClient) => {
|
|
|
1206
1216
|
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"notification"> | undefined>;
|
|
1207
1217
|
};
|
|
1208
1218
|
|
|
1219
|
+
declare const createAppConfigService: (client: GraphQLClient) => {
|
|
1220
|
+
createAppConfig: (input: CreateEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1221
|
+
root?: "appConfig"[] | undefined;
|
|
1222
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1223
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1224
|
+
updateAppConfig: (input: UpdateEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1225
|
+
root?: "appConfig"[] | undefined;
|
|
1226
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1227
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1228
|
+
getAppConfig: (input: GetEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1229
|
+
root?: "appConfig"[] | undefined;
|
|
1230
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1231
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1232
|
+
deleteAppConfig: (input: DeleteEntityRequest<"appConfig">, fetchFields?: {
|
|
1233
|
+
root?: "appConfigId"[] | undefined;
|
|
1234
|
+
nestedFields?: {} | undefined;
|
|
1235
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"appConfig"> | undefined>;
|
|
1236
|
+
listAppConfigs: (input: ListEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1237
|
+
root?: ("total" | "appConfigs")[] | undefined;
|
|
1238
|
+
nestedFields?: Record<"appConfigs", AppConfigFields> | undefined;
|
|
1239
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1240
|
+
};
|
|
1241
|
+
type AppConfigService = ReturnType<typeof createAppConfigService>;
|
|
1242
|
+
|
|
1209
1243
|
type ChecklistItemFields = (keyof ChecklistItem)[];
|
|
1210
1244
|
type VisaProfileChecklistItemFields = (keyof VisaProfileChecklistItem)[];
|
|
1211
1245
|
type FileInfoFields = (keyof VisaProfileChecklistItem["fileInfo"])[];
|
|
@@ -2321,4 +2355,4 @@ declare const createAIServerService: (client: GraphQLClient) => {
|
|
|
2321
2355
|
};
|
|
2322
2356
|
type AIServerService = ReturnType<typeof createAIServerService>;
|
|
2323
2357
|
|
|
2324
|
-
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 GetChecklistItemCountRequest, type GetChecklistItemCountResponse, 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 GetPartnerMatricesRequest, type GetPartnerMatricesResponse, type GetPartnerMatricesResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserAverageReadinessScoreRequest, type GetUserAverageReadinessScoreResponse, 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 GetVisaApplicationStatsRequest, type GetVisaApplicationStatsResponse, type GetVisaApplicationStatsResponseNestedFields, 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 ListPartnerClientsRequest, type ListPartnerClientsResponse, type ListPartnerClientsResponseNestedFields, 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 PartnerMatrices, 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 VisaApplicationStats, 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, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
|
2358
|
+
export { type AIServerAuth, type AIServerService, type AdminDashboardMatrix, type AdminDashboardMatrixKey, type AllUserNotificationSettingKey, type AppConfig, type AppConfigService, 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 GetChecklistItemCountRequest, type GetChecklistItemCountResponse, 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 GetPartnerMatricesRequest, type GetPartnerMatricesResponse, type GetPartnerMatricesResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserAverageReadinessScoreRequest, type GetUserAverageReadinessScoreResponse, 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 GetVisaApplicationStatsRequest, type GetVisaApplicationStatsResponse, type GetVisaApplicationStatsResponseNestedFields, 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 ListPartnerClientsRequest, type ListPartnerClientsResponse, type ListPartnerClientsResponseNestedFields, 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 PartnerMatrices, 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 VisaApplicationStats, 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, createAppConfigService, createAuthService, createCardObjectResponse, createChecklistItemResponse, createChecklistItemResponseNestedFields, createChecklistItemService, createConsultantAssignmentResponseFields, createConsultantAssignmentResponseNestedFields, createConsultantAssignmentService, createConsultantInviteService, createCouponRedemptionService, createCouponService, createCreditPlanService, createCreditTransactionService, createCustomerObjectResponse, createFlutterwaveService, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,15 @@ interface Pagination {
|
|
|
26
26
|
skip: number;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
interface AppConfig {
|
|
30
|
+
id: string;
|
|
31
|
+
shortname: string;
|
|
32
|
+
title: string;
|
|
33
|
+
status: "active" | "inactive";
|
|
34
|
+
value: string;
|
|
35
|
+
valueDefinition: string;
|
|
36
|
+
createdAt: string;
|
|
37
|
+
}
|
|
29
38
|
type SettingNotificationChannelKey = "push" | "sms" | "email";
|
|
30
39
|
type UserNotificationSettingKey = "userSettingApplicationStatus" | "userSettingDocReviewFeedback" | "userSettingSubmissionConfirmation" | "userSettingChecklistIncompleteReminder" | "userSettingNewMessageFromConsultant";
|
|
31
40
|
type ConsultantNotificationSettingKey = "userSettingClientUpdate" | "userSettingDocReviewFeedback" | "userSettingNewMessageFromClient";
|
|
@@ -589,21 +598,8 @@ type UserCountFields = (keyof UserCount)[];
|
|
|
589
598
|
type UserTypeStatusCountFields = (keyof UserTypeStatusCount)[];
|
|
590
599
|
type PartnerMatricesFields = (keyof PartnerMatrices)[];
|
|
591
600
|
type NotificationFields = (keyof Notification)[];
|
|
601
|
+
type AppConfigFields = (keyof AppConfig)[];
|
|
592
602
|
|
|
593
|
-
interface ListPartnerClientsRequest {
|
|
594
|
-
referenceCode: string;
|
|
595
|
-
limit: number;
|
|
596
|
-
skip: number;
|
|
597
|
-
}
|
|
598
|
-
interface ListPartnerClientsResponse {
|
|
599
|
-
total: number;
|
|
600
|
-
clients: User[];
|
|
601
|
-
}
|
|
602
|
-
declare const listPartnerClientsResponseFields: (keyof ListPartnerClientsResponse)[];
|
|
603
|
-
interface ListPartnerClientsResponseNestedFields {
|
|
604
|
-
clients: UserFields;
|
|
605
|
-
}
|
|
606
|
-
declare const listPartnerClientsResponseNestedFields: ListPartnerClientsResponseNestedFields;
|
|
607
603
|
interface GetPartnerMatricesRequest {
|
|
608
604
|
partnerId: string;
|
|
609
605
|
referenceCode: string;
|
|
@@ -696,6 +692,20 @@ interface DeleteUserRequest {
|
|
|
696
692
|
}
|
|
697
693
|
type DeleteUserResponse = DeleteUserRequest;
|
|
698
694
|
declare const deleteUserResponseFields: (keyof DeleteUserResponse)[];
|
|
695
|
+
interface ListPartnerClientsRequest {
|
|
696
|
+
referenceCode: string;
|
|
697
|
+
limit: number;
|
|
698
|
+
skip: number;
|
|
699
|
+
}
|
|
700
|
+
interface ListPartnerClientsResponse {
|
|
701
|
+
total: number;
|
|
702
|
+
clients: User[];
|
|
703
|
+
}
|
|
704
|
+
declare const listPartnerClientsResponseFields: (keyof ListPartnerClientsResponse)[];
|
|
705
|
+
interface ListPartnerClientsResponseNestedFields {
|
|
706
|
+
clients: UserFields;
|
|
707
|
+
}
|
|
708
|
+
declare const listPartnerClientsResponseNestedFields: ListPartnerClientsResponseNestedFields;
|
|
699
709
|
|
|
700
710
|
declare const createUserService: (client: GraphQLClient) => {
|
|
701
711
|
listPartnerClients(input: ListPartnerClientsRequest, fetchFields?: {
|
|
@@ -1206,6 +1216,30 @@ declare const createNotificationService: (client: GraphQLClient) => {
|
|
|
1206
1216
|
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"notification"> | undefined>;
|
|
1207
1217
|
};
|
|
1208
1218
|
|
|
1219
|
+
declare const createAppConfigService: (client: GraphQLClient) => {
|
|
1220
|
+
createAppConfig: (input: CreateEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1221
|
+
root?: "appConfig"[] | undefined;
|
|
1222
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1223
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1224
|
+
updateAppConfig: (input: UpdateEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1225
|
+
root?: "appConfig"[] | undefined;
|
|
1226
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1227
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1228
|
+
getAppConfig: (input: GetEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1229
|
+
root?: "appConfig"[] | undefined;
|
|
1230
|
+
nestedFields?: Record<"appConfig", AppConfigFields> | undefined;
|
|
1231
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1232
|
+
deleteAppConfig: (input: DeleteEntityRequest<"appConfig">, fetchFields?: {
|
|
1233
|
+
root?: "appConfigId"[] | undefined;
|
|
1234
|
+
nestedFields?: {} | undefined;
|
|
1235
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"appConfig"> | undefined>;
|
|
1236
|
+
listAppConfigs: (input: ListEntityRequest<AppConfig, "appConfig">, fetchFields?: {
|
|
1237
|
+
root?: ("total" | "appConfigs")[] | undefined;
|
|
1238
|
+
nestedFields?: Record<"appConfigs", AppConfigFields> | undefined;
|
|
1239
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<AppConfig, "appConfig"> | undefined>;
|
|
1240
|
+
};
|
|
1241
|
+
type AppConfigService = ReturnType<typeof createAppConfigService>;
|
|
1242
|
+
|
|
1209
1243
|
type ChecklistItemFields = (keyof ChecklistItem)[];
|
|
1210
1244
|
type VisaProfileChecklistItemFields = (keyof VisaProfileChecklistItem)[];
|
|
1211
1245
|
type FileInfoFields = (keyof VisaProfileChecklistItem["fileInfo"])[];
|
|
@@ -2321,4 +2355,4 @@ declare const createAIServerService: (client: GraphQLClient) => {
|
|
|
2321
2355
|
};
|
|
2322
2356
|
type AIServerService = ReturnType<typeof createAIServerService>;
|
|
2323
2357
|
|
|
2324
|
-
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 GetChecklistItemCountRequest, type GetChecklistItemCountResponse, 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 GetPartnerMatricesRequest, type GetPartnerMatricesResponse, type GetPartnerMatricesResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserAverageReadinessScoreRequest, type GetUserAverageReadinessScoreResponse, 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 GetVisaApplicationStatsRequest, type GetVisaApplicationStatsResponse, type GetVisaApplicationStatsResponseNestedFields, 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 ListPartnerClientsRequest, type ListPartnerClientsResponse, type ListPartnerClientsResponseNestedFields, 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 PartnerMatrices, 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 VisaApplicationStats, 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, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
|
2358
|
+
export { type AIServerAuth, type AIServerService, type AdminDashboardMatrix, type AdminDashboardMatrixKey, type AllUserNotificationSettingKey, type AppConfig, type AppConfigService, 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 GetChecklistItemCountRequest, type GetChecklistItemCountResponse, 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 GetPartnerMatricesRequest, type GetPartnerMatricesResponse, type GetPartnerMatricesResponseNestedFields, type GetReadinessScoreReviewRequest, type GetReadinessScoreReviewResponse, type GetReadinessScoreReviewResponseNestedFields, type GetSOPReviewRequest, type GetSOPReviewResponse, type GetSOPReviewResponseNestedFields, type GetUserAverageReadinessScoreRequest, type GetUserAverageReadinessScoreResponse, 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 GetVisaApplicationStatsRequest, type GetVisaApplicationStatsResponse, type GetVisaApplicationStatsResponseNestedFields, 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 ListPartnerClientsRequest, type ListPartnerClientsResponse, type ListPartnerClientsResponseNestedFields, 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 PartnerMatrices, 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 VisaApplicationStats, 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, createAppConfigService, createAuthService, createCardObjectResponse, createChecklistItemResponse, createChecklistItemResponseNestedFields, createChecklistItemService, createConsultantAssignmentResponseFields, createConsultantAssignmentResponseNestedFields, createConsultantAssignmentService, createConsultantInviteService, createCouponRedemptionService, createCouponService, createCreditPlanService, createCreditTransactionService, createCustomerObjectResponse, createFlutterwaveService, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
package/dist/index.esm.js
CHANGED
|
@@ -255,6 +255,15 @@ var userSchema = {
|
|
|
255
255
|
};
|
|
256
256
|
|
|
257
257
|
// src/services/user/user.entity.ts
|
|
258
|
+
var appConfigQuery = [
|
|
259
|
+
"createdAt",
|
|
260
|
+
"id",
|
|
261
|
+
"shortname",
|
|
262
|
+
"status",
|
|
263
|
+
"title",
|
|
264
|
+
"value",
|
|
265
|
+
"valueDefinition"
|
|
266
|
+
];
|
|
258
267
|
var notificationQuery = [
|
|
259
268
|
"id",
|
|
260
269
|
"userId",
|
|
@@ -359,13 +368,6 @@ var userQuery = [
|
|
|
359
368
|
];
|
|
360
369
|
|
|
361
370
|
// src/services/user/types/user.type.ts
|
|
362
|
-
var listPartnerClientsResponseFields = [
|
|
363
|
-
"clients",
|
|
364
|
-
"total"
|
|
365
|
-
];
|
|
366
|
-
var listPartnerClientsResponseNestedFields = {
|
|
367
|
-
clients: userQuery
|
|
368
|
-
};
|
|
369
371
|
var getPartnerMatricesResponseFields = ["partnerMatrices"];
|
|
370
372
|
var getPartnerMatricesResponseNestedFields = {
|
|
371
373
|
partnerMatrices: partnerMatricesQuery
|
|
@@ -406,6 +408,14 @@ var createUserResponseNestedFields = getUserResponseNestedFields;
|
|
|
406
408
|
var updateUserResponseFields = getUserResponseFields;
|
|
407
409
|
var updateUserResponseNestedFields = getUserResponseNestedFields;
|
|
408
410
|
var deleteUserResponseFields = ["userId"];
|
|
411
|
+
var listPartnerClientsResponseFields = [
|
|
412
|
+
"clients",
|
|
413
|
+
"total"
|
|
414
|
+
];
|
|
415
|
+
var listPartnerClientsResponseNestedFields = {
|
|
416
|
+
..._getUserResponseNestedFields,
|
|
417
|
+
clients: userQuery
|
|
418
|
+
};
|
|
409
419
|
|
|
410
420
|
// src/services/user/user.service.ts
|
|
411
421
|
var createUserService = (client) => ({
|
|
@@ -1505,6 +1515,101 @@ var createNotificationService = (client) => ({
|
|
|
1505
1515
|
)
|
|
1506
1516
|
});
|
|
1507
1517
|
|
|
1518
|
+
// src/services/user/types/app-config.type.ts
|
|
1519
|
+
var ENTITY3 = "appConfig";
|
|
1520
|
+
var appConfigIntegration = createStandardEntityIntegration({
|
|
1521
|
+
key: ENTITY3,
|
|
1522
|
+
fields: appConfigQuery
|
|
1523
|
+
});
|
|
1524
|
+
var appConfigListIntegration = createListIntegration({
|
|
1525
|
+
key: "appConfigs",
|
|
1526
|
+
fields: appConfigQuery
|
|
1527
|
+
});
|
|
1528
|
+
var appConfigDeleteIntegration = createDeleteIntegration(ENTITY3);
|
|
1529
|
+
|
|
1530
|
+
// src/services/user/schemas/app-config.schema.ts
|
|
1531
|
+
var appConfigSchema = {
|
|
1532
|
+
get: {
|
|
1533
|
+
operation: "query",
|
|
1534
|
+
name: "getAppConfig",
|
|
1535
|
+
variables: "($coupon: AppConfigInput!)",
|
|
1536
|
+
field: "(coupon: $coupon)"
|
|
1537
|
+
},
|
|
1538
|
+
list: {
|
|
1539
|
+
operation: "query",
|
|
1540
|
+
name: "listAppConfigs",
|
|
1541
|
+
variables: "($limit: Int!, $skip: Int!, $search: String, $coupon: AppConfigInput, $couponIds: [String])",
|
|
1542
|
+
field: "(limit: $limit, skip: $skip, search: $search, coupon: $coupon, couponIds: $couponIds)"
|
|
1543
|
+
},
|
|
1544
|
+
create: {
|
|
1545
|
+
operation: "mutation",
|
|
1546
|
+
name: "createAppConfig",
|
|
1547
|
+
variables: "($coupon: AppConfigInput!)",
|
|
1548
|
+
field: "(coupon: $coupon)"
|
|
1549
|
+
},
|
|
1550
|
+
update: {
|
|
1551
|
+
operation: "mutation",
|
|
1552
|
+
name: "updateAppConfig",
|
|
1553
|
+
variables: "($couponId: String!, $coupon: AppConfigInput!)",
|
|
1554
|
+
field: "(couponId: $couponId, coupon: $coupon)"
|
|
1555
|
+
},
|
|
1556
|
+
delete: {
|
|
1557
|
+
operation: "mutation",
|
|
1558
|
+
name: "deleteAppConfig",
|
|
1559
|
+
variables: "($couponId: String!)",
|
|
1560
|
+
field: "(couponId: $couponId)"
|
|
1561
|
+
}
|
|
1562
|
+
};
|
|
1563
|
+
|
|
1564
|
+
// src/services/user/app-config.service.ts
|
|
1565
|
+
var createAppConfigService = (client) => ({
|
|
1566
|
+
createAppConfig: createOperationExecutor(
|
|
1567
|
+
client,
|
|
1568
|
+
"createAppConfig",
|
|
1569
|
+
{
|
|
1570
|
+
schema: buildSchema(appConfigSchema.create),
|
|
1571
|
+
defaultRootFields: appConfigIntegration.create.responseFields,
|
|
1572
|
+
defaultNestedFields: appConfigIntegration.create.nestedFields
|
|
1573
|
+
}
|
|
1574
|
+
),
|
|
1575
|
+
updateAppConfig: createOperationExecutor(
|
|
1576
|
+
client,
|
|
1577
|
+
"updateAppConfig",
|
|
1578
|
+
{
|
|
1579
|
+
schema: buildSchema(appConfigSchema.update),
|
|
1580
|
+
defaultRootFields: appConfigIntegration.update.responseFields,
|
|
1581
|
+
defaultNestedFields: appConfigIntegration.update.nestedFields
|
|
1582
|
+
}
|
|
1583
|
+
),
|
|
1584
|
+
getAppConfig: createOperationExecutor(
|
|
1585
|
+
client,
|
|
1586
|
+
"getAppConfig",
|
|
1587
|
+
{
|
|
1588
|
+
schema: buildSchema(appConfigSchema.get),
|
|
1589
|
+
defaultRootFields: appConfigIntegration.get.responseFields,
|
|
1590
|
+
defaultNestedFields: appConfigIntegration.get.nestedFields
|
|
1591
|
+
}
|
|
1592
|
+
),
|
|
1593
|
+
deleteAppConfig: createOperationExecutor(
|
|
1594
|
+
client,
|
|
1595
|
+
"deleteAppConfig",
|
|
1596
|
+
{
|
|
1597
|
+
schema: buildSchema(appConfigSchema.delete),
|
|
1598
|
+
defaultRootFields: appConfigDeleteIntegration.responseFields,
|
|
1599
|
+
defaultNestedFields: {}
|
|
1600
|
+
}
|
|
1601
|
+
),
|
|
1602
|
+
listAppConfigs: createOperationExecutor(
|
|
1603
|
+
client,
|
|
1604
|
+
"listAppConfigs",
|
|
1605
|
+
{
|
|
1606
|
+
schema: buildSchema(appConfigSchema.list),
|
|
1607
|
+
defaultRootFields: [...appConfigListIntegration.responseFields],
|
|
1608
|
+
defaultNestedFields: appConfigListIntegration.nestedFields
|
|
1609
|
+
}
|
|
1610
|
+
)
|
|
1611
|
+
});
|
|
1612
|
+
|
|
1508
1613
|
// src/services/checklist/schemas/checklist-item.schema.ts
|
|
1509
1614
|
var checklistItemSchema = {
|
|
1510
1615
|
getChecklistItemCount: (query) => `
|
|
@@ -3096,21 +3201,21 @@ var serviceCreditCostQuery = [
|
|
|
3096
3201
|
];
|
|
3097
3202
|
|
|
3098
3203
|
// src/services/subscription/types/coupon.type.ts
|
|
3099
|
-
var
|
|
3204
|
+
var ENTITY4 = "coupon";
|
|
3100
3205
|
var couponIntegration = createStandardEntityIntegration({
|
|
3101
|
-
key:
|
|
3206
|
+
key: ENTITY4,
|
|
3102
3207
|
fields: couponQuery
|
|
3103
3208
|
});
|
|
3104
3209
|
var couponListIntegration = createListIntegration({
|
|
3105
3210
|
key: "coupons",
|
|
3106
3211
|
fields: couponQuery
|
|
3107
3212
|
});
|
|
3108
|
-
var couponDeleteIntegration = createDeleteIntegration(
|
|
3213
|
+
var couponDeleteIntegration = createDeleteIntegration(ENTITY4);
|
|
3109
3214
|
|
|
3110
3215
|
// src/services/subscription/types/coupon-redemption.type.ts
|
|
3111
|
-
var
|
|
3216
|
+
var ENTITY5 = "couponRedemption";
|
|
3112
3217
|
var couponRedemptionIntegration = createStandardEntityIntegration({
|
|
3113
|
-
key:
|
|
3218
|
+
key: ENTITY5,
|
|
3114
3219
|
fields: couponRedemptionQuery,
|
|
3115
3220
|
nested: {
|
|
3116
3221
|
...couponIntegration.get.nestedFields
|
|
@@ -3123,24 +3228,24 @@ var couponRedemptionListIntegration = createListIntegration({
|
|
|
3123
3228
|
...couponIntegration.get.nestedFields
|
|
3124
3229
|
}
|
|
3125
3230
|
});
|
|
3126
|
-
var couponRedemptionDeleteIntegration = createDeleteIntegration(
|
|
3231
|
+
var couponRedemptionDeleteIntegration = createDeleteIntegration(ENTITY5);
|
|
3127
3232
|
|
|
3128
3233
|
// src/services/subscription/types/credit-plan.type.ts
|
|
3129
|
-
var
|
|
3234
|
+
var ENTITY6 = "creditPlan";
|
|
3130
3235
|
var creditPlanIntegration = createStandardEntityIntegration({
|
|
3131
|
-
key:
|
|
3236
|
+
key: ENTITY6,
|
|
3132
3237
|
fields: creditPlanQuery
|
|
3133
3238
|
});
|
|
3134
3239
|
var creditPlanListIntegration = createListIntegration({
|
|
3135
3240
|
key: "creditPlans",
|
|
3136
3241
|
fields: creditPlanQuery
|
|
3137
3242
|
});
|
|
3138
|
-
var creditPlanDeleteIntegration = createDeleteIntegration(
|
|
3243
|
+
var creditPlanDeleteIntegration = createDeleteIntegration(ENTITY6);
|
|
3139
3244
|
|
|
3140
3245
|
// src/services/subscription/types/credit-transaction.type.ts
|
|
3141
|
-
var
|
|
3246
|
+
var ENTITY7 = "creditTransaction";
|
|
3142
3247
|
var creditTransactionIntegration = createStandardEntityIntegration({
|
|
3143
|
-
key:
|
|
3248
|
+
key: ENTITY7,
|
|
3144
3249
|
fields: creditTransactionQuery,
|
|
3145
3250
|
nested: {
|
|
3146
3251
|
...getUserResponseNestedFields
|
|
@@ -3153,19 +3258,19 @@ var creditTransactionListIntegration = createListIntegration({
|
|
|
3153
3258
|
...getUserResponseNestedFields
|
|
3154
3259
|
}
|
|
3155
3260
|
});
|
|
3156
|
-
var creditTransactionDeleteIntegration = createDeleteIntegration(
|
|
3261
|
+
var creditTransactionDeleteIntegration = createDeleteIntegration(ENTITY7);
|
|
3157
3262
|
|
|
3158
3263
|
// src/services/subscription/types/service-credit-cost.type.ts
|
|
3159
|
-
var
|
|
3264
|
+
var ENTITY8 = "serviceCreditCost";
|
|
3160
3265
|
var serviceCreditCostIntegration = createStandardEntityIntegration({
|
|
3161
|
-
key:
|
|
3266
|
+
key: ENTITY8,
|
|
3162
3267
|
fields: serviceCreditCostQuery
|
|
3163
3268
|
});
|
|
3164
3269
|
var serviceCreditCostListIntegration = createListIntegration({
|
|
3165
3270
|
key: "serviceCreditCosts",
|
|
3166
3271
|
fields: serviceCreditCostQuery
|
|
3167
3272
|
});
|
|
3168
|
-
var serviceCreditCostDeleteIntegration = createDeleteIntegration(
|
|
3273
|
+
var serviceCreditCostDeleteIntegration = createDeleteIntegration(ENTITY8);
|
|
3169
3274
|
|
|
3170
3275
|
// src/services/subscription/schemas/flutter-customer.schema.ts
|
|
3171
3276
|
var flutterSchema = {
|
|
@@ -3770,6 +3875,6 @@ var createAIServerService = (client) => {
|
|
|
3770
3875
|
};
|
|
3771
3876
|
};
|
|
3772
3877
|
|
|
3773
|
-
export { AuthenticationError, GraphQLClient, NetworkError, SdkError, _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, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
|
3878
|
+
export { AuthenticationError, GraphQLClient, NetworkError, SdkError, _generateSOPResponseNestedFields, _getConsultantAssignmentResponseNestedFields, _getSOPReviewResponseNestedFields, _getUserResponseNestedFields, _getVisaProfileChecklistItemResponseNestedFields, _getVisaProfileResponseNestedFields, _getVisaProfileReviewCommentResponseNestedFields, compose, contactUsResponseFields, couponDeleteIntegration, couponIntegration, couponListIntegration, couponRedemptionDeleteIntegration, couponRedemptionIntegration, couponRedemptionListIntegration, createAIServerService, createActivityLogService, createAppConfigService, createAuthService, createCardObjectResponse, createChecklistItemResponse, createChecklistItemResponseNestedFields, createChecklistItemService, createConsultantAssignmentResponseFields, createConsultantAssignmentResponseNestedFields, createConsultantAssignmentService, createConsultantInviteService, createCouponRedemptionService, createCouponService, createCreditPlanService, createCreditTransactionService, createCustomerObjectResponse, createFlutterwaveService, createNotificationService, 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, getChecklistItemCountResponse, getChecklistItemResponse, getChecklistItemResponseNestedFields, getConsultantAssignmentCountResponseFields, getConsultantAssignmentResponseFields, getConsultantAssignmentResponseNestedFields, getConsultantClientStatsResponseFields, getConsultantClientStatsResponseNestedFields, getFlutterAccessTokenResponse, getGeneratedSOPResponse, getGeneratedSOPResponseNestedFields, getJobResponse, getJobResponseNestedFields, getPartnerMatricesResponseFields, getPartnerMatricesResponseNestedFields, getReadinessScoreReviewResponseFields, getReadinessScoreReviewResponseNestedFields, getSOPReviewResponseFields, getSOPReviewResponseNestedFields, getUserAverageReadinessScoreResponseFields, getUserCountResponse, getUserCountResponseNestedFields, getUserResponseFields, getUserResponseNestedFields, getUserSettingResponseFields, getUserSettingResponseNestedFields, getUserTypeStatusCountResponse, getUserTypeStatusCountResponseNestedFields, getVisaApplicationCountResponseFields, getVisaApplicationResponseFields, getVisaApplicationResponseNestedFields, getVisaApplicationStatsResponseFields, getVisaApplicationStatsResponseNestedFields, getVisaProfileChecklistItemResponse, getVisaProfileChecklistItemResponseNestedFields, getVisaProfileChecklistItemsByChecklistResponse, getVisaProfileChecklistItemsByChecklistResponseNestedFields, getVisaProfileCountByFilterResponse, getVisaProfileCountResponse, getVisaProfileCountResponseNestedFields, getVisaProfileResponse, getVisaProfileResponseNestedFields, getVisaProfileReviewCommentResponseFields, getVisaProfileReviewCommentResponseNestedFields, listActivityLogsResponseFields, listActivityLogsResponseNestedFields, listChecklistItemResponse, listChecklistItemResponseNestedFields, listConsultantAssignmentsResponseFields, listConsultantAssignmentsResponseNestedFields, listPartnerClientsResponseFields, listPartnerClientsResponseNestedFields, 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 };
|
|
3774
3879
|
//# sourceMappingURL=index.esm.js.map
|
|
3775
3880
|
//# sourceMappingURL=index.esm.js.map
|