@connect-plus-online/ogabai-integrations 0.0.100 → 0.0.104
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 +61 -110
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +16 -31
- package/dist/index.d.ts +16 -31
- package/dist/index.esm.js +61 -110
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -140,11 +140,9 @@ interface UserProductCounts {
|
|
|
140
140
|
totalProductToday: number;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
appFeatures: string[];
|
|
147
|
-
createdAt: string;
|
|
143
|
+
declare enum AppNewFeatures {
|
|
144
|
+
ExpenseTracker = "expenseTracker",
|
|
145
|
+
ProductImport = "productImport"
|
|
148
146
|
}
|
|
149
147
|
interface Customer {
|
|
150
148
|
id: string;
|
|
@@ -664,7 +662,6 @@ type UserAccountFields = (keyof UserAccount)[];
|
|
|
664
662
|
type PrivilegeFields = (keyof Privilege)[];
|
|
665
663
|
type CustomerFields = (keyof Customer)[];
|
|
666
664
|
type CustomerStoreBalanceFields = (keyof CustomerStoreBalance)[];
|
|
667
|
-
type FeatureUserWhitelistFields = (keyof FeatureUserWhitelist)[];
|
|
668
665
|
|
|
669
666
|
type CustomersProductCountFields = (keyof CustomersProductCount)[];
|
|
670
667
|
type StoreCategoryProductFields = (keyof StoreCategoryProduct)[];
|
|
@@ -679,6 +676,12 @@ type PackageFields = (keyof ProductPackage)[];
|
|
|
679
676
|
type ProductNamesFields = (keyof ProductName)[];
|
|
680
677
|
type ProductFields = (keyof Product)[];
|
|
681
678
|
|
|
679
|
+
interface GetAppTestFeatureEnabledResponse {
|
|
680
|
+
testFeatureEnabled: string[];
|
|
681
|
+
}
|
|
682
|
+
interface GetAppTestFeaturesResponse {
|
|
683
|
+
testFeatures: string[];
|
|
684
|
+
}
|
|
682
685
|
interface GetUserTypeCountsResponse {
|
|
683
686
|
userTypeCounts: UserTypeCounts;
|
|
684
687
|
}
|
|
@@ -767,6 +770,12 @@ interface MeResponseNestedFields extends GetUserResponseNestedFields {
|
|
|
767
770
|
}
|
|
768
771
|
|
|
769
772
|
declare const createUserService: (client: GraphQLClient) => {
|
|
773
|
+
getTestFeatureEnabled(fetchFields?: {
|
|
774
|
+
root?: (keyof GetAppTestFeatureEnabledResponse)[];
|
|
775
|
+
}, option?: RequestOption): Promise<GetAppTestFeatureEnabledResponse | undefined>;
|
|
776
|
+
getTestFeatures(fetchFields?: {
|
|
777
|
+
root?: (keyof GetAppTestFeaturesResponse)[];
|
|
778
|
+
}, option?: RequestOption): Promise<GetAppTestFeaturesResponse | undefined>;
|
|
770
779
|
getUserTypeCounts(fetchFields?: {
|
|
771
780
|
root?: (keyof GetUserTypeCountsResponse)[];
|
|
772
781
|
nestedFields?: GetUserTypeCountsResponseNestedFields;
|
|
@@ -1141,30 +1150,6 @@ declare const createCustomerService: (client: GraphQLClient) => {
|
|
|
1141
1150
|
};
|
|
1142
1151
|
type CustomerService = ReturnType<typeof createCustomerService>;
|
|
1143
1152
|
|
|
1144
|
-
declare const createFeatureUserWhitelistService: (client: GraphQLClient) => {
|
|
1145
|
-
createFeatureUserWhitelist: (input: CreateEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1146
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1147
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1148
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1149
|
-
updateFeatureUserWhitelist: (input: UpdateEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1150
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1151
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1152
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1153
|
-
getFeatureUserWhitelist: (input: GetEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1154
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1155
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1156
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1157
|
-
deleteFeatureUserWhitelist: (input: DeleteEntityRequest<"featureUserWhitelist">, fetchFields?: {
|
|
1158
|
-
root?: "featureUserWhitelistId"[] | undefined;
|
|
1159
|
-
nestedFields?: {} | undefined;
|
|
1160
|
-
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"featureUserWhitelist"> | undefined>;
|
|
1161
|
-
listFeatureUserWhitelists: (input: ListEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1162
|
-
root?: ("total" | "featureUserWhitelists")[] | undefined;
|
|
1163
|
-
nestedFields?: Record<"featureUserWhitelists", FeatureUserWhitelistFields> | undefined;
|
|
1164
|
-
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1165
|
-
};
|
|
1166
|
-
type FeatureUserWhitelistService = ReturnType<typeof createFeatureUserWhitelistService>;
|
|
1167
|
-
|
|
1168
1153
|
interface GetCustomerProductCountsByIdsRequest {
|
|
1169
1154
|
userIds: string[];
|
|
1170
1155
|
}
|
|
@@ -2486,4 +2471,4 @@ declare const createSubscriptionTrialService: (client: GraphQLClient) => {
|
|
|
2486
2471
|
};
|
|
2487
2472
|
type SubscriptionTrialService = ReturnType<typeof createSubscriptionTrialService>;
|
|
2488
2473
|
|
|
2489
|
-
export { APPLICATION_FEATURES, type Account, type AccountStatus, type AddPackageRequest, type AddPackageResponse, type AddPackageResponseFields, type AddPackagesRequest, type AddPackagesResponse, type AddPackagesResponseFields, type AddPriceRequest, type AddPriceResponse, type AddPriceResponseFields, type AddProductRequest, type AddProductResponse, type AddProductResponseNestedFields, type AddProductsRequest, type AddProductsResponse, type AddProductsResponseNestedFields, type AddStockRequest, type AddStockResponse, type AddStockResponseNestedFields, type AddStoreRequest, type AddStoreResponse, type AddStoreResponseNestedFields, type AddSubscriptionRequest, type AddSubscriptionResponse, type AddSubscriptionResponseNestedFields, type AddTransactionRequest, type AddTransactionResponse, type AddTransactionResponseNestedFields, type Address, type Admin, type ApplicationFeature, type Auth, type AuthService, type AuthTokenProvider, AuthenticationError, type Bank, type CategoryStatus, type ClientOptions, type CreateStockService, type CreateStoreCategoryProductRequest, type CreateStoreCategoryProductResponse, type CreateStoreCategoryProductResponseNestedFields, type CreateStoreCategoryRequest, type CreateStoreCategoryResponse, type CreateStoreCategoryResponseNestedFields, type Customer, type CustomerService, type CustomerStoreBalance, type CustomersProductCount, type DateFilter, type Distributor, type Expense, type ExpenseCRUD, type ExpenseCategory, type ExpenseCategoryCRUD, type ExpenseCategoryFields, type ExpenseCategoryService, type ExpenseDispenseService, type ExpenseFields, type ExpenseService, type FeatureUserWhitelist, type FeatureUserWhitelistService, type GetCustomerProductCountsByIdsRequest, type GetCustomerProductCountsByIdsResponse, type GetCustomerProductCountsByIdsResponseNestedFields, type GetOrderRequest, type GetOrderResponse, type GetOrderResponseNestedFields, type GetOrdersRequest, type GetOrdersResponse, type GetOrdersResponseNestedFields, type GetPackageRequest, type GetPackageResponse, type GetPackageResponseFields, type GetPackagesRequest, type GetPackagesResponse, type GetPackagesResponseFields, type GetPriceRequest, type GetPriceResponse, type GetPriceResponseFields, type GetPricesRequest, type GetPricesResponse, type GetPricesResponseFields, type GetProductByBarcodeRequest, type GetProductByBarcodeResponse, type GetProductByBarcodeResponseNestedFields, type GetProductRequest, type GetProductResponse, type GetProductResponseNestedFields, type GetProductsRequest, type GetProductsResponse, type GetProductsResponseNestedFields, type GetSaleResponseNestedFields, type GetSalesRequest, type GetSalesResponse, type GetSalesResponseNestedFields, type GetStockRequest, type GetStockResponse, type GetStockResponseNestedFields, type GetStocksRequest, type GetStocksResponse, type GetStocksResponseNestedFields, type GetStoreCategoriesRequest, type GetStoreCategoriesResponse, type GetStoreCategoriesResponseNestedFields, type GetStoreCategoryProductRequest, type GetStoreCategoryProductResponse, type GetStoreCategoryProductResponseNestedFields, type GetStoreCategoryProductsRequest, type GetStoreCategoryProductsResponse, type GetStoreCategoryProductsResponseNestedFields, type GetStoreCategoryRequest, type GetStoreCategoryResponse, type GetStoreCategoryResponseNestedFields, type GetStoreCountRequest, type GetStoreCountResponse, type GetStoreRequest, type GetStoreResponse, type GetStoreResponseNestedFields, type GetStoresRequest, type GetStoresResponse, type GetStoresResponseNestedFields, type GetSubscriptionRequest, type GetSubscriptionResponse, type GetSubscriptionResponseNestedFields, type GetSubscriptionsRequest, type GetSubscriptionsResponse, type GetSubscriptionsResponseNestedFields, type GetTransactionRequest, type GetTransactionResponse, type GetTransactionResponseNestedFields, type GetTransactionsRequest, type GetTransactionsResponse, type GetTransactionsResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Manufacturer, type Middleware, type MonthlyUserStat, NetworkError, type Next, type Notification, type NotificationChannels, type OTP, type Order, type OrderFields, type OrderStatus, type PackageService, type PaymentType, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackInitializeSubscriptionRequest, type PaystackInitializeSubscriptionResponse, type PaystackService, type Platform, type Price, type Privilege, type PrivilegeAction, type Product, type ProductAttribute, type ProductCategory, type ProductCounts, type ProductLight, type ProductName, type ProductPackage, type ProductPackageService, type ProductService, type RemovePackageRequest, type RemovePackageResponse, type RemovePriceRequest, type RemovePriceResponse, type RemoveProductRequest, type RemoveProductResponse, type RemoveStockRequest, type RemoveStockResponse, type RemoveStoreCategoryProductRequest, type RemoveStoreCategoryProductResponse, type RemoveStoreCategoryRequest, type RemoveStoreCategoryResponse, type RemoveStoreRequest, type RemoveStoreResponse, type RemoveSubscriptionRequest, type RemoveSubscriptionResponse, type RequestContext, type RequestOption, type ResponseContext, type RestockCounts, type Sale, type SaleCounts, type SaleFields, type SaleService, type SaleStatus, SdkError, type SearchCategoriesAndTemplateRequest, type SearchCategoriesAndTemplateResponse, type SearchCategoriesAndTemplateResponseNestedFields, type SearchProductNamesRequest, type SearchProductNamesResponse, type SearchProductNamesResponseNestedFields, type ServiceUpdate, type Stock, type Store, type StoreCategory, type StoreCategoryProduct, type StoreCategoryProductService, type StoreCategoryService, type StoreService, type StoreSetting, type Subscription, type SubscriptionPlan, type SubscriptionPlanCRUD, type SubscriptionPlanFeature, type SubscriptionPlanFeatureAccess, type SubscriptionPlanFeatureAccessValue, type SubscriptionPlanFeatureBehaviour, type SubscriptionPlanFeatureBehaviourCRUD, type SubscriptionPlanFeatureBehaviourService, type SubscriptionPlanFeatureBehaviourValue, type SubscriptionPlanFeatureDefinition, type SubscriptionPlanFeatureDefinitionCRUD, type SubscriptionPlanFeatureDefinitionService, type SubscriptionPlanFeatureKey, SubscriptionPlanFeatureKeyLabels, type SubscriptionPlanFeatureLimitValue, type SubscriptionPlanFeatureStatus, type SubscriptionPlanService, type SubscriptionService, type SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, type TransactionType, type TransportOptions, type TxStatus, type UpdatePackageRequest, type UpdatePackageResponse, type UpdatePackageResponseFields, type UpdatePackagesRequest, type UpdatePackagesResponse, type UpdatePriceRequest, type UpdatePriceResponse, type UpdatePriceResponseFields, type UpdateProductRequest, type UpdateProductResponse, type UpdateProductResponseNestedFields, type UpdateSaleRequest, UpdateSaleResponse, type UpdateSaleResponseNestedFields, type UpdateStockRequest, type UpdateStockResponse, type UpdateStockResponseNestedFields, type UpdateStoreCategoryProductRequest, type UpdateStoreCategoryProductResponse, type UpdateStoreCategoryProductResponseNestedFields, type UpdateStoreCategoryRequest, type UpdateStoreCategoryResponse, type UpdateStoreCategoryResponseNestedFields, type UpdateStoreRequest, type UpdateStoreResponse, type UpdateStoreResponseNestedFields, type UpdateSubscriptionRequest, type UpdateSubscriptionResponse, type UpdateSubscriptionResponseNestedFields, type UpdateTransactionRequest, type UpdateTransactionResponse, type UpdateTransactionResponseNestedFields, type UploadImageResponse, type User, type UserAccount, type UserAccountService, type UserDevice, type UserNotification, type UserNotificationService, type UserNotificationSettings, type UserProductCounts, type UserRole, type UserRoleService, type UserSaleCounts, type UserService, type UserSetting, type UserStatus, type UserTxAmounts, type UserType, type UserTypeCounts, type VirtualAccount, type Wallet, type WalletCurrency, type WalletStatus, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService, createFeatureUserWhitelistService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createSubscriptionTrialService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, expenseCategoryDeleteIntegration, expenseCategoryIntegration, expenseCategoryListIntegration, expenseCategoryQuery, expenseDeleteIntegration, expenseIntegration, expenseListIntegration, expenseQuery, getCustomerProductCountsByIdsResponse, getCustomerProductCountsByIdsResponseNestedFields, getOrderResponse, getOrderResponseNestedFields, getOrdersResponse, getOrdersResponseNestedFields, getPackageResponseFields, getPackageResponseNestedFields, getPackagesResponseFields, getPackagesResponseNestedFields, getPriceResponseFields, getPriceResponseNestedFields, getPricesResponseFields, getPricesResponseNestedFields, getProductByBarcodeResponse, getProductByBarcodeResponseNestedFields, getProductResponseFields, getProductResponseNestedFields, getProductsResponseFields, getProductsResponseNestedFields, getSaleResponse, getSaleResponseNestedFields, getSalesResponse, getSalesResponseNestedFields, getStockResponse, getStockResponseNestedFields, getStocksResponse, getStocksResponseNestedFields, getStoreCategoriesResponseFields, getStoreCategoriesResponseNestedFields, getStoreCategoryProductResponseFields, getStoreCategoryProductResponseNestedFields, getStoreCategoryProductsResponseFields, getStoreCategoryProductsResponseNestedFields, getStoreCategoryResponseFields, getStoreCategoryResponseNestedFields, getStoreCountResponse, getStoreResponse, getStoreResponseNestedFields, getStoresResponse, getStoresResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanDeleteIntegration, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, subscriptionPlanFeatureDefinitionDeleteIntegration, subscriptionPlanFeatureDefinitionIntegration, subscriptionPlanFeatureDefinitionListIntegration, subscriptionPlanIntegration, subscriptionPlanListIntegration, subscriptionTrialDeleteIntegration, subscriptionTrialIntegration, subscriptionTrialListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields, userRoleExample };
|
|
2474
|
+
export { APPLICATION_FEATURES, type Account, type AccountStatus, type AddPackageRequest, type AddPackageResponse, type AddPackageResponseFields, type AddPackagesRequest, type AddPackagesResponse, type AddPackagesResponseFields, type AddPriceRequest, type AddPriceResponse, type AddPriceResponseFields, type AddProductRequest, type AddProductResponse, type AddProductResponseNestedFields, type AddProductsRequest, type AddProductsResponse, type AddProductsResponseNestedFields, type AddStockRequest, type AddStockResponse, type AddStockResponseNestedFields, type AddStoreRequest, type AddStoreResponse, type AddStoreResponseNestedFields, type AddSubscriptionRequest, type AddSubscriptionResponse, type AddSubscriptionResponseNestedFields, type AddTransactionRequest, type AddTransactionResponse, type AddTransactionResponseNestedFields, type Address, type Admin, AppNewFeatures, type ApplicationFeature, type Auth, type AuthService, type AuthTokenProvider, AuthenticationError, type Bank, type CategoryStatus, type ClientOptions, type CreateStockService, type CreateStoreCategoryProductRequest, type CreateStoreCategoryProductResponse, type CreateStoreCategoryProductResponseNestedFields, type CreateStoreCategoryRequest, type CreateStoreCategoryResponse, type CreateStoreCategoryResponseNestedFields, type Customer, type CustomerService, type CustomerStoreBalance, type CustomersProductCount, type DateFilter, type Distributor, type Expense, type ExpenseCRUD, type ExpenseCategory, type ExpenseCategoryCRUD, type ExpenseCategoryFields, type ExpenseCategoryService, type ExpenseDispenseService, type ExpenseFields, type ExpenseService, type GetCustomerProductCountsByIdsRequest, type GetCustomerProductCountsByIdsResponse, type GetCustomerProductCountsByIdsResponseNestedFields, type GetOrderRequest, type GetOrderResponse, type GetOrderResponseNestedFields, type GetOrdersRequest, type GetOrdersResponse, type GetOrdersResponseNestedFields, type GetPackageRequest, type GetPackageResponse, type GetPackageResponseFields, type GetPackagesRequest, type GetPackagesResponse, type GetPackagesResponseFields, type GetPriceRequest, type GetPriceResponse, type GetPriceResponseFields, type GetPricesRequest, type GetPricesResponse, type GetPricesResponseFields, type GetProductByBarcodeRequest, type GetProductByBarcodeResponse, type GetProductByBarcodeResponseNestedFields, type GetProductRequest, type GetProductResponse, type GetProductResponseNestedFields, type GetProductsRequest, type GetProductsResponse, type GetProductsResponseNestedFields, type GetSaleResponseNestedFields, type GetSalesRequest, type GetSalesResponse, type GetSalesResponseNestedFields, type GetStockRequest, type GetStockResponse, type GetStockResponseNestedFields, type GetStocksRequest, type GetStocksResponse, type GetStocksResponseNestedFields, type GetStoreCategoriesRequest, type GetStoreCategoriesResponse, type GetStoreCategoriesResponseNestedFields, type GetStoreCategoryProductRequest, type GetStoreCategoryProductResponse, type GetStoreCategoryProductResponseNestedFields, type GetStoreCategoryProductsRequest, type GetStoreCategoryProductsResponse, type GetStoreCategoryProductsResponseNestedFields, type GetStoreCategoryRequest, type GetStoreCategoryResponse, type GetStoreCategoryResponseNestedFields, type GetStoreCountRequest, type GetStoreCountResponse, type GetStoreRequest, type GetStoreResponse, type GetStoreResponseNestedFields, type GetStoresRequest, type GetStoresResponse, type GetStoresResponseNestedFields, type GetSubscriptionRequest, type GetSubscriptionResponse, type GetSubscriptionResponseNestedFields, type GetSubscriptionsRequest, type GetSubscriptionsResponse, type GetSubscriptionsResponseNestedFields, type GetTransactionRequest, type GetTransactionResponse, type GetTransactionResponseNestedFields, type GetTransactionsRequest, type GetTransactionsResponse, type GetTransactionsResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Manufacturer, type Middleware, type MonthlyUserStat, NetworkError, type Next, type Notification, type NotificationChannels, type OTP, type Order, type OrderFields, type OrderStatus, type PackageService, type PaymentType, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackInitializeSubscriptionRequest, type PaystackInitializeSubscriptionResponse, type PaystackService, type Platform, type Price, type Privilege, type PrivilegeAction, type Product, type ProductAttribute, type ProductCategory, type ProductCounts, type ProductLight, type ProductName, type ProductPackage, type ProductPackageService, type ProductService, type RemovePackageRequest, type RemovePackageResponse, type RemovePriceRequest, type RemovePriceResponse, type RemoveProductRequest, type RemoveProductResponse, type RemoveStockRequest, type RemoveStockResponse, type RemoveStoreCategoryProductRequest, type RemoveStoreCategoryProductResponse, type RemoveStoreCategoryRequest, type RemoveStoreCategoryResponse, type RemoveStoreRequest, type RemoveStoreResponse, type RemoveSubscriptionRequest, type RemoveSubscriptionResponse, type RequestContext, type RequestOption, type ResponseContext, type RestockCounts, type Sale, type SaleCounts, type SaleFields, type SaleService, type SaleStatus, SdkError, type SearchCategoriesAndTemplateRequest, type SearchCategoriesAndTemplateResponse, type SearchCategoriesAndTemplateResponseNestedFields, type SearchProductNamesRequest, type SearchProductNamesResponse, type SearchProductNamesResponseNestedFields, type ServiceUpdate, type Stock, type Store, type StoreCategory, type StoreCategoryProduct, type StoreCategoryProductService, type StoreCategoryService, type StoreService, type StoreSetting, type Subscription, type SubscriptionPlan, type SubscriptionPlanCRUD, type SubscriptionPlanFeature, type SubscriptionPlanFeatureAccess, type SubscriptionPlanFeatureAccessValue, type SubscriptionPlanFeatureBehaviour, type SubscriptionPlanFeatureBehaviourCRUD, type SubscriptionPlanFeatureBehaviourService, type SubscriptionPlanFeatureBehaviourValue, type SubscriptionPlanFeatureDefinition, type SubscriptionPlanFeatureDefinitionCRUD, type SubscriptionPlanFeatureDefinitionService, type SubscriptionPlanFeatureKey, SubscriptionPlanFeatureKeyLabels, type SubscriptionPlanFeatureLimitValue, type SubscriptionPlanFeatureStatus, type SubscriptionPlanService, type SubscriptionService, type SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, type TransactionType, type TransportOptions, type TxStatus, type UpdatePackageRequest, type UpdatePackageResponse, type UpdatePackageResponseFields, type UpdatePackagesRequest, type UpdatePackagesResponse, type UpdatePriceRequest, type UpdatePriceResponse, type UpdatePriceResponseFields, type UpdateProductRequest, type UpdateProductResponse, type UpdateProductResponseNestedFields, type UpdateSaleRequest, UpdateSaleResponse, type UpdateSaleResponseNestedFields, type UpdateStockRequest, type UpdateStockResponse, type UpdateStockResponseNestedFields, type UpdateStoreCategoryProductRequest, type UpdateStoreCategoryProductResponse, type UpdateStoreCategoryProductResponseNestedFields, type UpdateStoreCategoryRequest, type UpdateStoreCategoryResponse, type UpdateStoreCategoryResponseNestedFields, type UpdateStoreRequest, type UpdateStoreResponse, type UpdateStoreResponseNestedFields, type UpdateSubscriptionRequest, type UpdateSubscriptionResponse, type UpdateSubscriptionResponseNestedFields, type UpdateTransactionRequest, type UpdateTransactionResponse, type UpdateTransactionResponseNestedFields, type UploadImageResponse, type User, type UserAccount, type UserAccountService, type UserDevice, type UserNotification, type UserNotificationService, type UserNotificationSettings, type UserProductCounts, type UserRole, type UserRoleService, type UserSaleCounts, type UserService, type UserSetting, type UserStatus, type UserTxAmounts, type UserType, type UserTypeCounts, type VirtualAccount, type Wallet, type WalletCurrency, type WalletStatus, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createSubscriptionTrialService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, expenseCategoryDeleteIntegration, expenseCategoryIntegration, expenseCategoryListIntegration, expenseCategoryQuery, expenseDeleteIntegration, expenseIntegration, expenseListIntegration, expenseQuery, getCustomerProductCountsByIdsResponse, getCustomerProductCountsByIdsResponseNestedFields, getOrderResponse, getOrderResponseNestedFields, getOrdersResponse, getOrdersResponseNestedFields, getPackageResponseFields, getPackageResponseNestedFields, getPackagesResponseFields, getPackagesResponseNestedFields, getPriceResponseFields, getPriceResponseNestedFields, getPricesResponseFields, getPricesResponseNestedFields, getProductByBarcodeResponse, getProductByBarcodeResponseNestedFields, getProductResponseFields, getProductResponseNestedFields, getProductsResponseFields, getProductsResponseNestedFields, getSaleResponse, getSaleResponseNestedFields, getSalesResponse, getSalesResponseNestedFields, getStockResponse, getStockResponseNestedFields, getStocksResponse, getStocksResponseNestedFields, getStoreCategoriesResponseFields, getStoreCategoriesResponseNestedFields, getStoreCategoryProductResponseFields, getStoreCategoryProductResponseNestedFields, getStoreCategoryProductsResponseFields, getStoreCategoryProductsResponseNestedFields, getStoreCategoryResponseFields, getStoreCategoryResponseNestedFields, getStoreCountResponse, getStoreResponse, getStoreResponseNestedFields, getStoresResponse, getStoresResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanDeleteIntegration, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, subscriptionPlanFeatureDefinitionDeleteIntegration, subscriptionPlanFeatureDefinitionIntegration, subscriptionPlanFeatureDefinitionListIntegration, subscriptionPlanIntegration, subscriptionPlanListIntegration, subscriptionTrialDeleteIntegration, subscriptionTrialIntegration, subscriptionTrialListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields, userRoleExample };
|
package/dist/index.d.ts
CHANGED
|
@@ -140,11 +140,9 @@ interface UserProductCounts {
|
|
|
140
140
|
totalProductToday: number;
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
appFeatures: string[];
|
|
147
|
-
createdAt: string;
|
|
143
|
+
declare enum AppNewFeatures {
|
|
144
|
+
ExpenseTracker = "expenseTracker",
|
|
145
|
+
ProductImport = "productImport"
|
|
148
146
|
}
|
|
149
147
|
interface Customer {
|
|
150
148
|
id: string;
|
|
@@ -664,7 +662,6 @@ type UserAccountFields = (keyof UserAccount)[];
|
|
|
664
662
|
type PrivilegeFields = (keyof Privilege)[];
|
|
665
663
|
type CustomerFields = (keyof Customer)[];
|
|
666
664
|
type CustomerStoreBalanceFields = (keyof CustomerStoreBalance)[];
|
|
667
|
-
type FeatureUserWhitelistFields = (keyof FeatureUserWhitelist)[];
|
|
668
665
|
|
|
669
666
|
type CustomersProductCountFields = (keyof CustomersProductCount)[];
|
|
670
667
|
type StoreCategoryProductFields = (keyof StoreCategoryProduct)[];
|
|
@@ -679,6 +676,12 @@ type PackageFields = (keyof ProductPackage)[];
|
|
|
679
676
|
type ProductNamesFields = (keyof ProductName)[];
|
|
680
677
|
type ProductFields = (keyof Product)[];
|
|
681
678
|
|
|
679
|
+
interface GetAppTestFeatureEnabledResponse {
|
|
680
|
+
testFeatureEnabled: string[];
|
|
681
|
+
}
|
|
682
|
+
interface GetAppTestFeaturesResponse {
|
|
683
|
+
testFeatures: string[];
|
|
684
|
+
}
|
|
682
685
|
interface GetUserTypeCountsResponse {
|
|
683
686
|
userTypeCounts: UserTypeCounts;
|
|
684
687
|
}
|
|
@@ -767,6 +770,12 @@ interface MeResponseNestedFields extends GetUserResponseNestedFields {
|
|
|
767
770
|
}
|
|
768
771
|
|
|
769
772
|
declare const createUserService: (client: GraphQLClient) => {
|
|
773
|
+
getTestFeatureEnabled(fetchFields?: {
|
|
774
|
+
root?: (keyof GetAppTestFeatureEnabledResponse)[];
|
|
775
|
+
}, option?: RequestOption): Promise<GetAppTestFeatureEnabledResponse | undefined>;
|
|
776
|
+
getTestFeatures(fetchFields?: {
|
|
777
|
+
root?: (keyof GetAppTestFeaturesResponse)[];
|
|
778
|
+
}, option?: RequestOption): Promise<GetAppTestFeaturesResponse | undefined>;
|
|
770
779
|
getUserTypeCounts(fetchFields?: {
|
|
771
780
|
root?: (keyof GetUserTypeCountsResponse)[];
|
|
772
781
|
nestedFields?: GetUserTypeCountsResponseNestedFields;
|
|
@@ -1141,30 +1150,6 @@ declare const createCustomerService: (client: GraphQLClient) => {
|
|
|
1141
1150
|
};
|
|
1142
1151
|
type CustomerService = ReturnType<typeof createCustomerService>;
|
|
1143
1152
|
|
|
1144
|
-
declare const createFeatureUserWhitelistService: (client: GraphQLClient) => {
|
|
1145
|
-
createFeatureUserWhitelist: (input: CreateEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1146
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1147
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1148
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1149
|
-
updateFeatureUserWhitelist: (input: UpdateEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1150
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1151
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1152
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1153
|
-
getFeatureUserWhitelist: (input: GetEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1154
|
-
root?: "featureUserWhitelist"[] | undefined;
|
|
1155
|
-
nestedFields?: Record<"featureUserWhitelist", FeatureUserWhitelistFields> | undefined;
|
|
1156
|
-
} | undefined, option?: RequestOption) => Promise<EntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1157
|
-
deleteFeatureUserWhitelist: (input: DeleteEntityRequest<"featureUserWhitelist">, fetchFields?: {
|
|
1158
|
-
root?: "featureUserWhitelistId"[] | undefined;
|
|
1159
|
-
nestedFields?: {} | undefined;
|
|
1160
|
-
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"featureUserWhitelist"> | undefined>;
|
|
1161
|
-
listFeatureUserWhitelists: (input: ListEntityRequest<FeatureUserWhitelist, "featureUserWhitelist">, fetchFields?: {
|
|
1162
|
-
root?: ("total" | "featureUserWhitelists")[] | undefined;
|
|
1163
|
-
nestedFields?: Record<"featureUserWhitelists", FeatureUserWhitelistFields> | undefined;
|
|
1164
|
-
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<FeatureUserWhitelist, "featureUserWhitelist"> | undefined>;
|
|
1165
|
-
};
|
|
1166
|
-
type FeatureUserWhitelistService = ReturnType<typeof createFeatureUserWhitelistService>;
|
|
1167
|
-
|
|
1168
1153
|
interface GetCustomerProductCountsByIdsRequest {
|
|
1169
1154
|
userIds: string[];
|
|
1170
1155
|
}
|
|
@@ -2486,4 +2471,4 @@ declare const createSubscriptionTrialService: (client: GraphQLClient) => {
|
|
|
2486
2471
|
};
|
|
2487
2472
|
type SubscriptionTrialService = ReturnType<typeof createSubscriptionTrialService>;
|
|
2488
2473
|
|
|
2489
|
-
export { APPLICATION_FEATURES, type Account, type AccountStatus, type AddPackageRequest, type AddPackageResponse, type AddPackageResponseFields, type AddPackagesRequest, type AddPackagesResponse, type AddPackagesResponseFields, type AddPriceRequest, type AddPriceResponse, type AddPriceResponseFields, type AddProductRequest, type AddProductResponse, type AddProductResponseNestedFields, type AddProductsRequest, type AddProductsResponse, type AddProductsResponseNestedFields, type AddStockRequest, type AddStockResponse, type AddStockResponseNestedFields, type AddStoreRequest, type AddStoreResponse, type AddStoreResponseNestedFields, type AddSubscriptionRequest, type AddSubscriptionResponse, type AddSubscriptionResponseNestedFields, type AddTransactionRequest, type AddTransactionResponse, type AddTransactionResponseNestedFields, type Address, type Admin, type ApplicationFeature, type Auth, type AuthService, type AuthTokenProvider, AuthenticationError, type Bank, type CategoryStatus, type ClientOptions, type CreateStockService, type CreateStoreCategoryProductRequest, type CreateStoreCategoryProductResponse, type CreateStoreCategoryProductResponseNestedFields, type CreateStoreCategoryRequest, type CreateStoreCategoryResponse, type CreateStoreCategoryResponseNestedFields, type Customer, type CustomerService, type CustomerStoreBalance, type CustomersProductCount, type DateFilter, type Distributor, type Expense, type ExpenseCRUD, type ExpenseCategory, type ExpenseCategoryCRUD, type ExpenseCategoryFields, type ExpenseCategoryService, type ExpenseDispenseService, type ExpenseFields, type ExpenseService, type FeatureUserWhitelist, type FeatureUserWhitelistService, type GetCustomerProductCountsByIdsRequest, type GetCustomerProductCountsByIdsResponse, type GetCustomerProductCountsByIdsResponseNestedFields, type GetOrderRequest, type GetOrderResponse, type GetOrderResponseNestedFields, type GetOrdersRequest, type GetOrdersResponse, type GetOrdersResponseNestedFields, type GetPackageRequest, type GetPackageResponse, type GetPackageResponseFields, type GetPackagesRequest, type GetPackagesResponse, type GetPackagesResponseFields, type GetPriceRequest, type GetPriceResponse, type GetPriceResponseFields, type GetPricesRequest, type GetPricesResponse, type GetPricesResponseFields, type GetProductByBarcodeRequest, type GetProductByBarcodeResponse, type GetProductByBarcodeResponseNestedFields, type GetProductRequest, type GetProductResponse, type GetProductResponseNestedFields, type GetProductsRequest, type GetProductsResponse, type GetProductsResponseNestedFields, type GetSaleResponseNestedFields, type GetSalesRequest, type GetSalesResponse, type GetSalesResponseNestedFields, type GetStockRequest, type GetStockResponse, type GetStockResponseNestedFields, type GetStocksRequest, type GetStocksResponse, type GetStocksResponseNestedFields, type GetStoreCategoriesRequest, type GetStoreCategoriesResponse, type GetStoreCategoriesResponseNestedFields, type GetStoreCategoryProductRequest, type GetStoreCategoryProductResponse, type GetStoreCategoryProductResponseNestedFields, type GetStoreCategoryProductsRequest, type GetStoreCategoryProductsResponse, type GetStoreCategoryProductsResponseNestedFields, type GetStoreCategoryRequest, type GetStoreCategoryResponse, type GetStoreCategoryResponseNestedFields, type GetStoreCountRequest, type GetStoreCountResponse, type GetStoreRequest, type GetStoreResponse, type GetStoreResponseNestedFields, type GetStoresRequest, type GetStoresResponse, type GetStoresResponseNestedFields, type GetSubscriptionRequest, type GetSubscriptionResponse, type GetSubscriptionResponseNestedFields, type GetSubscriptionsRequest, type GetSubscriptionsResponse, type GetSubscriptionsResponseNestedFields, type GetTransactionRequest, type GetTransactionResponse, type GetTransactionResponseNestedFields, type GetTransactionsRequest, type GetTransactionsResponse, type GetTransactionsResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Manufacturer, type Middleware, type MonthlyUserStat, NetworkError, type Next, type Notification, type NotificationChannels, type OTP, type Order, type OrderFields, type OrderStatus, type PackageService, type PaymentType, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackInitializeSubscriptionRequest, type PaystackInitializeSubscriptionResponse, type PaystackService, type Platform, type Price, type Privilege, type PrivilegeAction, type Product, type ProductAttribute, type ProductCategory, type ProductCounts, type ProductLight, type ProductName, type ProductPackage, type ProductPackageService, type ProductService, type RemovePackageRequest, type RemovePackageResponse, type RemovePriceRequest, type RemovePriceResponse, type RemoveProductRequest, type RemoveProductResponse, type RemoveStockRequest, type RemoveStockResponse, type RemoveStoreCategoryProductRequest, type RemoveStoreCategoryProductResponse, type RemoveStoreCategoryRequest, type RemoveStoreCategoryResponse, type RemoveStoreRequest, type RemoveStoreResponse, type RemoveSubscriptionRequest, type RemoveSubscriptionResponse, type RequestContext, type RequestOption, type ResponseContext, type RestockCounts, type Sale, type SaleCounts, type SaleFields, type SaleService, type SaleStatus, SdkError, type SearchCategoriesAndTemplateRequest, type SearchCategoriesAndTemplateResponse, type SearchCategoriesAndTemplateResponseNestedFields, type SearchProductNamesRequest, type SearchProductNamesResponse, type SearchProductNamesResponseNestedFields, type ServiceUpdate, type Stock, type Store, type StoreCategory, type StoreCategoryProduct, type StoreCategoryProductService, type StoreCategoryService, type StoreService, type StoreSetting, type Subscription, type SubscriptionPlan, type SubscriptionPlanCRUD, type SubscriptionPlanFeature, type SubscriptionPlanFeatureAccess, type SubscriptionPlanFeatureAccessValue, type SubscriptionPlanFeatureBehaviour, type SubscriptionPlanFeatureBehaviourCRUD, type SubscriptionPlanFeatureBehaviourService, type SubscriptionPlanFeatureBehaviourValue, type SubscriptionPlanFeatureDefinition, type SubscriptionPlanFeatureDefinitionCRUD, type SubscriptionPlanFeatureDefinitionService, type SubscriptionPlanFeatureKey, SubscriptionPlanFeatureKeyLabels, type SubscriptionPlanFeatureLimitValue, type SubscriptionPlanFeatureStatus, type SubscriptionPlanService, type SubscriptionService, type SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, type TransactionType, type TransportOptions, type TxStatus, type UpdatePackageRequest, type UpdatePackageResponse, type UpdatePackageResponseFields, type UpdatePackagesRequest, type UpdatePackagesResponse, type UpdatePriceRequest, type UpdatePriceResponse, type UpdatePriceResponseFields, type UpdateProductRequest, type UpdateProductResponse, type UpdateProductResponseNestedFields, type UpdateSaleRequest, UpdateSaleResponse, type UpdateSaleResponseNestedFields, type UpdateStockRequest, type UpdateStockResponse, type UpdateStockResponseNestedFields, type UpdateStoreCategoryProductRequest, type UpdateStoreCategoryProductResponse, type UpdateStoreCategoryProductResponseNestedFields, type UpdateStoreCategoryRequest, type UpdateStoreCategoryResponse, type UpdateStoreCategoryResponseNestedFields, type UpdateStoreRequest, type UpdateStoreResponse, type UpdateStoreResponseNestedFields, type UpdateSubscriptionRequest, type UpdateSubscriptionResponse, type UpdateSubscriptionResponseNestedFields, type UpdateTransactionRequest, type UpdateTransactionResponse, type UpdateTransactionResponseNestedFields, type UploadImageResponse, type User, type UserAccount, type UserAccountService, type UserDevice, type UserNotification, type UserNotificationService, type UserNotificationSettings, type UserProductCounts, type UserRole, type UserRoleService, type UserSaleCounts, type UserService, type UserSetting, type UserStatus, type UserTxAmounts, type UserType, type UserTypeCounts, type VirtualAccount, type Wallet, type WalletCurrency, type WalletStatus, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService, createFeatureUserWhitelistService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createSubscriptionTrialService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, expenseCategoryDeleteIntegration, expenseCategoryIntegration, expenseCategoryListIntegration, expenseCategoryQuery, expenseDeleteIntegration, expenseIntegration, expenseListIntegration, expenseQuery, getCustomerProductCountsByIdsResponse, getCustomerProductCountsByIdsResponseNestedFields, getOrderResponse, getOrderResponseNestedFields, getOrdersResponse, getOrdersResponseNestedFields, getPackageResponseFields, getPackageResponseNestedFields, getPackagesResponseFields, getPackagesResponseNestedFields, getPriceResponseFields, getPriceResponseNestedFields, getPricesResponseFields, getPricesResponseNestedFields, getProductByBarcodeResponse, getProductByBarcodeResponseNestedFields, getProductResponseFields, getProductResponseNestedFields, getProductsResponseFields, getProductsResponseNestedFields, getSaleResponse, getSaleResponseNestedFields, getSalesResponse, getSalesResponseNestedFields, getStockResponse, getStockResponseNestedFields, getStocksResponse, getStocksResponseNestedFields, getStoreCategoriesResponseFields, getStoreCategoriesResponseNestedFields, getStoreCategoryProductResponseFields, getStoreCategoryProductResponseNestedFields, getStoreCategoryProductsResponseFields, getStoreCategoryProductsResponseNestedFields, getStoreCategoryResponseFields, getStoreCategoryResponseNestedFields, getStoreCountResponse, getStoreResponse, getStoreResponseNestedFields, getStoresResponse, getStoresResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanDeleteIntegration, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, subscriptionPlanFeatureDefinitionDeleteIntegration, subscriptionPlanFeatureDefinitionIntegration, subscriptionPlanFeatureDefinitionListIntegration, subscriptionPlanIntegration, subscriptionPlanListIntegration, subscriptionTrialDeleteIntegration, subscriptionTrialIntegration, subscriptionTrialListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields, userRoleExample };
|
|
2474
|
+
export { APPLICATION_FEATURES, type Account, type AccountStatus, type AddPackageRequest, type AddPackageResponse, type AddPackageResponseFields, type AddPackagesRequest, type AddPackagesResponse, type AddPackagesResponseFields, type AddPriceRequest, type AddPriceResponse, type AddPriceResponseFields, type AddProductRequest, type AddProductResponse, type AddProductResponseNestedFields, type AddProductsRequest, type AddProductsResponse, type AddProductsResponseNestedFields, type AddStockRequest, type AddStockResponse, type AddStockResponseNestedFields, type AddStoreRequest, type AddStoreResponse, type AddStoreResponseNestedFields, type AddSubscriptionRequest, type AddSubscriptionResponse, type AddSubscriptionResponseNestedFields, type AddTransactionRequest, type AddTransactionResponse, type AddTransactionResponseNestedFields, type Address, type Admin, AppNewFeatures, type ApplicationFeature, type Auth, type AuthService, type AuthTokenProvider, AuthenticationError, type Bank, type CategoryStatus, type ClientOptions, type CreateStockService, type CreateStoreCategoryProductRequest, type CreateStoreCategoryProductResponse, type CreateStoreCategoryProductResponseNestedFields, type CreateStoreCategoryRequest, type CreateStoreCategoryResponse, type CreateStoreCategoryResponseNestedFields, type Customer, type CustomerService, type CustomerStoreBalance, type CustomersProductCount, type DateFilter, type Distributor, type Expense, type ExpenseCRUD, type ExpenseCategory, type ExpenseCategoryCRUD, type ExpenseCategoryFields, type ExpenseCategoryService, type ExpenseDispenseService, type ExpenseFields, type ExpenseService, type GetCustomerProductCountsByIdsRequest, type GetCustomerProductCountsByIdsResponse, type GetCustomerProductCountsByIdsResponseNestedFields, type GetOrderRequest, type GetOrderResponse, type GetOrderResponseNestedFields, type GetOrdersRequest, type GetOrdersResponse, type GetOrdersResponseNestedFields, type GetPackageRequest, type GetPackageResponse, type GetPackageResponseFields, type GetPackagesRequest, type GetPackagesResponse, type GetPackagesResponseFields, type GetPriceRequest, type GetPriceResponse, type GetPriceResponseFields, type GetPricesRequest, type GetPricesResponse, type GetPricesResponseFields, type GetProductByBarcodeRequest, type GetProductByBarcodeResponse, type GetProductByBarcodeResponseNestedFields, type GetProductRequest, type GetProductResponse, type GetProductResponseNestedFields, type GetProductsRequest, type GetProductsResponse, type GetProductsResponseNestedFields, type GetSaleResponseNestedFields, type GetSalesRequest, type GetSalesResponse, type GetSalesResponseNestedFields, type GetStockRequest, type GetStockResponse, type GetStockResponseNestedFields, type GetStocksRequest, type GetStocksResponse, type GetStocksResponseNestedFields, type GetStoreCategoriesRequest, type GetStoreCategoriesResponse, type GetStoreCategoriesResponseNestedFields, type GetStoreCategoryProductRequest, type GetStoreCategoryProductResponse, type GetStoreCategoryProductResponseNestedFields, type GetStoreCategoryProductsRequest, type GetStoreCategoryProductsResponse, type GetStoreCategoryProductsResponseNestedFields, type GetStoreCategoryRequest, type GetStoreCategoryResponse, type GetStoreCategoryResponseNestedFields, type GetStoreCountRequest, type GetStoreCountResponse, type GetStoreRequest, type GetStoreResponse, type GetStoreResponseNestedFields, type GetStoresRequest, type GetStoresResponse, type GetStoresResponseNestedFields, type GetSubscriptionRequest, type GetSubscriptionResponse, type GetSubscriptionResponseNestedFields, type GetSubscriptionsRequest, type GetSubscriptionsResponse, type GetSubscriptionsResponseNestedFields, type GetTransactionRequest, type GetTransactionResponse, type GetTransactionResponseNestedFields, type GetTransactionsRequest, type GetTransactionsResponse, type GetTransactionsResponseNestedFields, GraphQLClient, type GraphQLError, type GraphQLRequest, type GraphQLResponse, type GraphQLVariables, type HeadersFactory, type Manufacturer, type Middleware, type MonthlyUserStat, NetworkError, type Next, type Notification, type NotificationChannels, type OTP, type Order, type OrderFields, type OrderStatus, type PackageService, type PaymentType, type PaystackInitializePaymentRequest, type PaystackInitializePaymentResponse, type PaystackInitializeSubscriptionRequest, type PaystackInitializeSubscriptionResponse, type PaystackService, type Platform, type Price, type Privilege, type PrivilegeAction, type Product, type ProductAttribute, type ProductCategory, type ProductCounts, type ProductLight, type ProductName, type ProductPackage, type ProductPackageService, type ProductService, type RemovePackageRequest, type RemovePackageResponse, type RemovePriceRequest, type RemovePriceResponse, type RemoveProductRequest, type RemoveProductResponse, type RemoveStockRequest, type RemoveStockResponse, type RemoveStoreCategoryProductRequest, type RemoveStoreCategoryProductResponse, type RemoveStoreCategoryRequest, type RemoveStoreCategoryResponse, type RemoveStoreRequest, type RemoveStoreResponse, type RemoveSubscriptionRequest, type RemoveSubscriptionResponse, type RequestContext, type RequestOption, type ResponseContext, type RestockCounts, type Sale, type SaleCounts, type SaleFields, type SaleService, type SaleStatus, SdkError, type SearchCategoriesAndTemplateRequest, type SearchCategoriesAndTemplateResponse, type SearchCategoriesAndTemplateResponseNestedFields, type SearchProductNamesRequest, type SearchProductNamesResponse, type SearchProductNamesResponseNestedFields, type ServiceUpdate, type Stock, type Store, type StoreCategory, type StoreCategoryProduct, type StoreCategoryProductService, type StoreCategoryService, type StoreService, type StoreSetting, type Subscription, type SubscriptionPlan, type SubscriptionPlanCRUD, type SubscriptionPlanFeature, type SubscriptionPlanFeatureAccess, type SubscriptionPlanFeatureAccessValue, type SubscriptionPlanFeatureBehaviour, type SubscriptionPlanFeatureBehaviourCRUD, type SubscriptionPlanFeatureBehaviourService, type SubscriptionPlanFeatureBehaviourValue, type SubscriptionPlanFeatureDefinition, type SubscriptionPlanFeatureDefinitionCRUD, type SubscriptionPlanFeatureDefinitionService, type SubscriptionPlanFeatureKey, SubscriptionPlanFeatureKeyLabels, type SubscriptionPlanFeatureLimitValue, type SubscriptionPlanFeatureStatus, type SubscriptionPlanService, type SubscriptionService, type SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, type TransactionType, type TransportOptions, type TxStatus, type UpdatePackageRequest, type UpdatePackageResponse, type UpdatePackageResponseFields, type UpdatePackagesRequest, type UpdatePackagesResponse, type UpdatePriceRequest, type UpdatePriceResponse, type UpdatePriceResponseFields, type UpdateProductRequest, type UpdateProductResponse, type UpdateProductResponseNestedFields, type UpdateSaleRequest, UpdateSaleResponse, type UpdateSaleResponseNestedFields, type UpdateStockRequest, type UpdateStockResponse, type UpdateStockResponseNestedFields, type UpdateStoreCategoryProductRequest, type UpdateStoreCategoryProductResponse, type UpdateStoreCategoryProductResponseNestedFields, type UpdateStoreCategoryRequest, type UpdateStoreCategoryResponse, type UpdateStoreCategoryResponseNestedFields, type UpdateStoreRequest, type UpdateStoreResponse, type UpdateStoreResponseNestedFields, type UpdateSubscriptionRequest, type UpdateSubscriptionResponse, type UpdateSubscriptionResponseNestedFields, type UpdateTransactionRequest, type UpdateTransactionResponse, type UpdateTransactionResponseNestedFields, type UploadImageResponse, type User, type UserAccount, type UserAccountService, type UserDevice, type UserNotification, type UserNotificationService, type UserNotificationSettings, type UserProductCounts, type UserRole, type UserRoleService, type UserSaleCounts, type UserService, type UserSetting, type UserStatus, type UserTxAmounts, type UserType, type UserTypeCounts, type VirtualAccount, type Wallet, type WalletCurrency, type WalletStatus, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createSubscriptionTrialService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, expenseCategoryDeleteIntegration, expenseCategoryIntegration, expenseCategoryListIntegration, expenseCategoryQuery, expenseDeleteIntegration, expenseIntegration, expenseListIntegration, expenseQuery, getCustomerProductCountsByIdsResponse, getCustomerProductCountsByIdsResponseNestedFields, getOrderResponse, getOrderResponseNestedFields, getOrdersResponse, getOrdersResponseNestedFields, getPackageResponseFields, getPackageResponseNestedFields, getPackagesResponseFields, getPackagesResponseNestedFields, getPriceResponseFields, getPriceResponseNestedFields, getPricesResponseFields, getPricesResponseNestedFields, getProductByBarcodeResponse, getProductByBarcodeResponseNestedFields, getProductResponseFields, getProductResponseNestedFields, getProductsResponseFields, getProductsResponseNestedFields, getSaleResponse, getSaleResponseNestedFields, getSalesResponse, getSalesResponseNestedFields, getStockResponse, getStockResponseNestedFields, getStocksResponse, getStocksResponseNestedFields, getStoreCategoriesResponseFields, getStoreCategoriesResponseNestedFields, getStoreCategoryProductResponseFields, getStoreCategoryProductResponseNestedFields, getStoreCategoryProductsResponseFields, getStoreCategoryProductsResponseNestedFields, getStoreCategoryResponseFields, getStoreCategoryResponseNestedFields, getStoreCountResponse, getStoreResponse, getStoreResponseNestedFields, getStoresResponse, getStoresResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanDeleteIntegration, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, subscriptionPlanFeatureDefinitionDeleteIntegration, subscriptionPlanFeatureDefinitionIntegration, subscriptionPlanFeatureDefinitionListIntegration, subscriptionPlanIntegration, subscriptionPlanListIntegration, subscriptionTrialDeleteIntegration, subscriptionTrialIntegration, subscriptionTrialListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields, userRoleExample };
|
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
// src/types/user.ts
|
|
2
|
+
var AppNewFeatures = /* @__PURE__ */ ((AppNewFeatures2) => {
|
|
3
|
+
AppNewFeatures2["ExpenseTracker"] = "expenseTracker";
|
|
4
|
+
AppNewFeatures2["ProductImport"] = "productImport";
|
|
5
|
+
return AppNewFeatures2;
|
|
6
|
+
})(AppNewFeatures || {});
|
|
2
7
|
var userRoleExample = {
|
|
3
8
|
name: "Admin",
|
|
4
9
|
description: "Admin",
|
|
@@ -221,6 +226,21 @@ function gqlQueryStringBuilder(query, nestedValues) {
|
|
|
221
226
|
|
|
222
227
|
// src/services/user/schemas/user.schema.ts
|
|
223
228
|
var userSchema = {
|
|
229
|
+
// test features
|
|
230
|
+
getTestFeatureEnabled: (query) => `
|
|
231
|
+
query getTestFeatureEnabled {
|
|
232
|
+
getTestFeatureEnabled {
|
|
233
|
+
${query}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
`,
|
|
237
|
+
getTestFeatures: (query) => `
|
|
238
|
+
query getTestFeatures {
|
|
239
|
+
getTestFeatures {
|
|
240
|
+
${query}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
`,
|
|
224
244
|
// admin dashboard stats
|
|
225
245
|
getUserTypeCounts: (query) => `
|
|
226
246
|
query getUserTypeCounts {
|
|
@@ -276,12 +296,6 @@ var userSchema = {
|
|
|
276
296
|
var user_schema_default = userSchema;
|
|
277
297
|
|
|
278
298
|
// src/services/user/user.entity.ts
|
|
279
|
-
var featureUserWhitelistQuery = [
|
|
280
|
-
"appFeatures",
|
|
281
|
-
"createdAt",
|
|
282
|
-
"id",
|
|
283
|
-
"userId"
|
|
284
|
-
];
|
|
285
299
|
var customerQuery = [
|
|
286
300
|
"createdAt",
|
|
287
301
|
"email",
|
|
@@ -1287,6 +1301,12 @@ var createSubscriptionTrialService = (client) => ({
|
|
|
1287
1301
|
});
|
|
1288
1302
|
|
|
1289
1303
|
// src/services/user/types/user.type.ts
|
|
1304
|
+
var getAppTestFeatureEnabledResponse = [
|
|
1305
|
+
"testFeatureEnabled"
|
|
1306
|
+
];
|
|
1307
|
+
var getAppTestFeaturesResponse = [
|
|
1308
|
+
"testFeatures"
|
|
1309
|
+
];
|
|
1290
1310
|
var getUserTypeCountsResponse = [
|
|
1291
1311
|
"userTypeCounts"
|
|
1292
1312
|
];
|
|
@@ -1358,6 +1378,32 @@ var meResponseNestedFields = {
|
|
|
1358
1378
|
|
|
1359
1379
|
// src/services/user/user.service.ts
|
|
1360
1380
|
var createUserService = (client) => ({
|
|
1381
|
+
async getTestFeatureEnabled(fetchFields, option) {
|
|
1382
|
+
var _a, _b;
|
|
1383
|
+
const res = await client.request(
|
|
1384
|
+
user_schema_default.getTestFeatureEnabled(
|
|
1385
|
+
gqlQueryStringBuilder(
|
|
1386
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getAppTestFeatureEnabledResponse
|
|
1387
|
+
)
|
|
1388
|
+
),
|
|
1389
|
+
{},
|
|
1390
|
+
option
|
|
1391
|
+
);
|
|
1392
|
+
return (_b = res.data) == null ? void 0 : _b.getTestFeatureEnabled;
|
|
1393
|
+
},
|
|
1394
|
+
async getTestFeatures(fetchFields, option) {
|
|
1395
|
+
var _a, _b;
|
|
1396
|
+
const res = await client.request(
|
|
1397
|
+
user_schema_default.getTestFeatures(
|
|
1398
|
+
gqlQueryStringBuilder(
|
|
1399
|
+
(_a = fetchFields == null ? void 0 : fetchFields.root) != null ? _a : getAppTestFeaturesResponse
|
|
1400
|
+
)
|
|
1401
|
+
),
|
|
1402
|
+
{},
|
|
1403
|
+
option
|
|
1404
|
+
);
|
|
1405
|
+
return (_b = res.data) == null ? void 0 : _b.getTestFeatures;
|
|
1406
|
+
},
|
|
1361
1407
|
// admin dashboard stats
|
|
1362
1408
|
async getUserTypeCounts(fetchFields, option) {
|
|
1363
1409
|
var _a, _b, _c;
|
|
@@ -2021,101 +2067,6 @@ var createCustomerService = (client) => ({
|
|
|
2021
2067
|
)
|
|
2022
2068
|
});
|
|
2023
2069
|
|
|
2024
|
-
// src/services/user/schemas/feature-user-whitelist.schema.ts
|
|
2025
|
-
var featureUserWhitelistSchema = {
|
|
2026
|
-
get: {
|
|
2027
|
-
operation: "query",
|
|
2028
|
-
name: "getFeatureUserWhitelist",
|
|
2029
|
-
variables: "($featureUserWhitelist: FeatureUserWhitelistInput!)",
|
|
2030
|
-
field: "(featureUserWhitelist: $featureUserWhitelist)"
|
|
2031
|
-
},
|
|
2032
|
-
list: {
|
|
2033
|
-
operation: "query",
|
|
2034
|
-
name: "listFeatureUserWhitelists",
|
|
2035
|
-
variables: "($limit: Int!, $skip: Int!, $search: String, $featureUserWhitelist: FeatureUserWhitelistInput, $featureUserWhitelistIds: [String])",
|
|
2036
|
-
field: "(limit: $limit, skip: $skip, search: $search, featureUserWhitelist: $featureUserWhitelist, featureUserWhitelistIds: $featureUserWhitelistIds)"
|
|
2037
|
-
},
|
|
2038
|
-
create: {
|
|
2039
|
-
operation: "mutation",
|
|
2040
|
-
name: "createFeatureUserWhitelist",
|
|
2041
|
-
variables: "($featureUserWhitelist: FeatureUserWhitelistInput!)",
|
|
2042
|
-
field: "(featureUserWhitelist: $featureUserWhitelist)"
|
|
2043
|
-
},
|
|
2044
|
-
update: {
|
|
2045
|
-
operation: "mutation",
|
|
2046
|
-
name: "updateFeatureUserWhitelist",
|
|
2047
|
-
variables: "($featureUserWhitelistId: String!, $featureUserWhitelist: FeatureUserWhitelistInput!)",
|
|
2048
|
-
field: "(featureUserWhitelistId: $featureUserWhitelistId, featureUserWhitelist: $featureUserWhitelist)"
|
|
2049
|
-
},
|
|
2050
|
-
delete: {
|
|
2051
|
-
operation: "mutation",
|
|
2052
|
-
name: "deleteFeatureUserWhitelist",
|
|
2053
|
-
variables: "($featureUserWhitelistId: String!)",
|
|
2054
|
-
field: "(featureUserWhitelistId: $featureUserWhitelistId)"
|
|
2055
|
-
}
|
|
2056
|
-
};
|
|
2057
|
-
|
|
2058
|
-
// src/services/user/types/feature-user-whitelist.type.ts
|
|
2059
|
-
var ENTITY8 = "featureUserWhitelist";
|
|
2060
|
-
var featureUserWhitelistIntegration = createStandardEntityIntegration({
|
|
2061
|
-
key: ENTITY8,
|
|
2062
|
-
fields: featureUserWhitelistQuery
|
|
2063
|
-
});
|
|
2064
|
-
var featureUserWhitelistListIntegration = createListIntegration({
|
|
2065
|
-
key: ENTITY8,
|
|
2066
|
-
fields: featureUserWhitelistQuery
|
|
2067
|
-
});
|
|
2068
|
-
var featureUserWhitelistDeleteIntegration = createDeleteIntegration(ENTITY8);
|
|
2069
|
-
|
|
2070
|
-
// src/services/user/feature-user-whitelist.service.ts
|
|
2071
|
-
var createFeatureUserWhitelistService = (client) => ({
|
|
2072
|
-
createFeatureUserWhitelist: createOperationExecutor(
|
|
2073
|
-
client,
|
|
2074
|
-
"createFeatureUserWhitelist",
|
|
2075
|
-
{
|
|
2076
|
-
schema: buildSchema(featureUserWhitelistSchema.create),
|
|
2077
|
-
defaultRootFields: [...featureUserWhitelistIntegration.create.responseFields],
|
|
2078
|
-
defaultNestedFields: featureUserWhitelistIntegration.create.nestedFields
|
|
2079
|
-
}
|
|
2080
|
-
),
|
|
2081
|
-
updateFeatureUserWhitelist: createOperationExecutor(
|
|
2082
|
-
client,
|
|
2083
|
-
"updateFeatureUserWhitelist",
|
|
2084
|
-
{
|
|
2085
|
-
schema: buildSchema(featureUserWhitelistSchema.update),
|
|
2086
|
-
defaultRootFields: featureUserWhitelistIntegration.update.responseFields,
|
|
2087
|
-
defaultNestedFields: featureUserWhitelistIntegration.update.nestedFields
|
|
2088
|
-
}
|
|
2089
|
-
),
|
|
2090
|
-
getFeatureUserWhitelist: createOperationExecutor(
|
|
2091
|
-
client,
|
|
2092
|
-
"getFeatureUserWhitelist",
|
|
2093
|
-
{
|
|
2094
|
-
schema: buildSchema(featureUserWhitelistSchema.get),
|
|
2095
|
-
defaultRootFields: featureUserWhitelistIntegration.get.responseFields,
|
|
2096
|
-
defaultNestedFields: featureUserWhitelistIntegration.get.nestedFields
|
|
2097
|
-
}
|
|
2098
|
-
),
|
|
2099
|
-
deleteFeatureUserWhitelist: createOperationExecutor(
|
|
2100
|
-
client,
|
|
2101
|
-
"deleteFeatureUserWhitelist",
|
|
2102
|
-
{
|
|
2103
|
-
schema: buildSchema(featureUserWhitelistSchema.delete),
|
|
2104
|
-
defaultRootFields: featureUserWhitelistDeleteIntegration.responseFields,
|
|
2105
|
-
defaultNestedFields: {}
|
|
2106
|
-
}
|
|
2107
|
-
),
|
|
2108
|
-
listFeatureUserWhitelists: createOperationExecutor(
|
|
2109
|
-
client,
|
|
2110
|
-
"listFeatureUserWhitelists",
|
|
2111
|
-
{
|
|
2112
|
-
schema: buildSchema(featureUserWhitelistSchema.list),
|
|
2113
|
-
defaultRootFields: [...featureUserWhitelistListIntegration.responseFields],
|
|
2114
|
-
defaultNestedFields: featureUserWhitelistListIntegration.nestedFields
|
|
2115
|
-
}
|
|
2116
|
-
)
|
|
2117
|
-
});
|
|
2118
|
-
|
|
2119
2070
|
// src/services/inventory/types/product.type.ts
|
|
2120
2071
|
var getCustomerProductCountsByIdsResponse = [
|
|
2121
2072
|
"customersProductCounts"
|
|
@@ -3671,40 +3622,40 @@ var createTransactionService = (client) => ({
|
|
|
3671
3622
|
});
|
|
3672
3623
|
|
|
3673
3624
|
// src/services/sales/types/expense-category.type.ts
|
|
3674
|
-
var
|
|
3625
|
+
var ENTITY8 = "expenseCategory";
|
|
3675
3626
|
var expenseCategoryIntegration = createStandardEntityIntegration({
|
|
3676
|
-
key:
|
|
3627
|
+
key: ENTITY8,
|
|
3677
3628
|
fields: expenseCategoryQuery,
|
|
3678
3629
|
nested: {
|
|
3679
3630
|
features: expenseCategoryQuery
|
|
3680
3631
|
}
|
|
3681
3632
|
});
|
|
3682
3633
|
var expenseCategoryListIntegration = createListIntegration({
|
|
3683
|
-
key:
|
|
3634
|
+
key: ENTITY8,
|
|
3684
3635
|
fields: expenseCategoryQuery,
|
|
3685
3636
|
nested: {
|
|
3686
3637
|
features: expenseCategoryQuery
|
|
3687
3638
|
}
|
|
3688
3639
|
});
|
|
3689
|
-
var expenseCategoryDeleteIntegration = createDeleteIntegration(
|
|
3640
|
+
var expenseCategoryDeleteIntegration = createDeleteIntegration(ENTITY8);
|
|
3690
3641
|
|
|
3691
3642
|
// src/services/sales/types/expense.type.ts
|
|
3692
|
-
var
|
|
3643
|
+
var ENTITY9 = "expense";
|
|
3693
3644
|
var expenseIntegration = createStandardEntityIntegration({
|
|
3694
|
-
key:
|
|
3645
|
+
key: ENTITY9,
|
|
3695
3646
|
fields: expenseQuery,
|
|
3696
3647
|
nested: {
|
|
3697
3648
|
features: expenseQuery
|
|
3698
3649
|
}
|
|
3699
3650
|
});
|
|
3700
3651
|
var expenseListIntegration = createListIntegration({
|
|
3701
|
-
key:
|
|
3652
|
+
key: ENTITY9,
|
|
3702
3653
|
fields: expenseQuery,
|
|
3703
3654
|
nested: {
|
|
3704
3655
|
features: expenseQuery
|
|
3705
3656
|
}
|
|
3706
3657
|
});
|
|
3707
|
-
var expenseDeleteIntegration = createDeleteIntegration(
|
|
3658
|
+
var expenseDeleteIntegration = createDeleteIntegration(ENTITY9);
|
|
3708
3659
|
|
|
3709
3660
|
// src/services/sales/schemas/expense-category.schema.ts
|
|
3710
3661
|
var expenseCategorySchema = {
|
|
@@ -4001,6 +3952,6 @@ var createExpenseDispenseService = (client) => {
|
|
|
4001
3952
|
};
|
|
4002
3953
|
};
|
|
4003
3954
|
|
|
4004
|
-
export { APPLICATION_FEATURES, AuthenticationError, GraphQLClient, NetworkError, SdkError, SubscriptionPlanFeatureKeyLabels, UpdateSaleResponse, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService,
|
|
3955
|
+
export { APPLICATION_FEATURES, AppNewFeatures, AuthenticationError, GraphQLClient, NetworkError, SdkError, SubscriptionPlanFeatureKeyLabels, UpdateSaleResponse, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addProductsResponseFields, addProductsResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createAuthService, createCustomerService, createExpenseCategoryService, createExpenseDispenseService, createExpenseService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createSubscriptionTrialService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, expenseCategoryDeleteIntegration, expenseCategoryIntegration, expenseCategoryListIntegration, expenseCategoryQuery, expenseDeleteIntegration, expenseIntegration, expenseListIntegration, expenseQuery, getCustomerProductCountsByIdsResponse, getCustomerProductCountsByIdsResponseNestedFields, getOrderResponse, getOrderResponseNestedFields, getOrdersResponse, getOrdersResponseNestedFields, getPackageResponseFields, getPackageResponseNestedFields, getPackagesResponseFields, getPackagesResponseNestedFields, getPriceResponseFields, getPriceResponseNestedFields, getPricesResponseFields, getPricesResponseNestedFields, getProductByBarcodeResponse, getProductByBarcodeResponseNestedFields, getProductResponseFields, getProductResponseNestedFields, getProductsResponseFields, getProductsResponseNestedFields, getSaleResponse, getSaleResponseNestedFields, getSalesResponse, getSalesResponseNestedFields, getStockResponse, getStockResponseNestedFields, getStocksResponse, getStocksResponseNestedFields, getStoreCategoriesResponseFields, getStoreCategoriesResponseNestedFields, getStoreCategoryProductResponseFields, getStoreCategoryProductResponseNestedFields, getStoreCategoryProductsResponseFields, getStoreCategoryProductsResponseNestedFields, getStoreCategoryResponseFields, getStoreCategoryResponseNestedFields, getStoreCountResponse, getStoreResponse, getStoreResponseNestedFields, getStoresResponse, getStoresResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanDeleteIntegration, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, subscriptionPlanFeatureDefinitionDeleteIntegration, subscriptionPlanFeatureDefinitionIntegration, subscriptionPlanFeatureDefinitionListIntegration, subscriptionPlanIntegration, subscriptionPlanListIntegration, subscriptionTrialDeleteIntegration, subscriptionTrialIntegration, subscriptionTrialListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields, userRoleExample };
|
|
4005
3956
|
//# sourceMappingURL=index.esm.js.map
|
|
4006
3957
|
//# sourceMappingURL=index.esm.js.map
|