@connect-plus-online/ogabai-integrations 0.0.70 → 0.0.71
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 +113 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.mts +64 -7
- package/dist/index.d.ts +64 -7
- package/dist/index.esm.js +110 -7
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -466,6 +466,14 @@ type SubscriptionPlanFeature = {
|
|
|
466
466
|
accessValue: SubscriptionPlanFeatureAccess;
|
|
467
467
|
behaviourIds: string[];
|
|
468
468
|
};
|
|
469
|
+
interface SubscriptionTrial {
|
|
470
|
+
id: string;
|
|
471
|
+
userId: string;
|
|
472
|
+
planId: string;
|
|
473
|
+
storeId: string;
|
|
474
|
+
createdAt: string;
|
|
475
|
+
endedAt: string;
|
|
476
|
+
}
|
|
469
477
|
interface SubscriptionPlan {
|
|
470
478
|
id: string;
|
|
471
479
|
code: string;
|
|
@@ -1865,9 +1873,10 @@ type SubscriptionPlanFields = (keyof SubscriptionPlan)[];
|
|
|
1865
1873
|
type SubscriptionFields = (keyof Subscription)[];
|
|
1866
1874
|
type SubscriptionPlanFeatureBehaviourFields = (keyof SubscriptionPlanFeatureBehaviour)[];
|
|
1867
1875
|
type SubscriptionPlanFeatureDefinitionFields = (keyof SubscriptionPlanFeatureDefinition)[];
|
|
1876
|
+
type SubscriptionTrialFields = (keyof SubscriptionTrial)[];
|
|
1868
1877
|
|
|
1869
|
-
declare const ENTITY$
|
|
1870
|
-
type SubscriptionPlanFeatureDefinitionCRUD = EntityCRUD<SubscriptionPlanFeatureDefinition, typeof ENTITY$
|
|
1878
|
+
declare const ENTITY$3: "subscriptionPlanFeatureDefinition";
|
|
1879
|
+
type SubscriptionPlanFeatureDefinitionCRUD = EntityCRUD<SubscriptionPlanFeatureDefinition, typeof ENTITY$3>;
|
|
1871
1880
|
declare const subscriptionPlanFeatureDefinitionIntegration: {
|
|
1872
1881
|
get: {
|
|
1873
1882
|
responseFields: ["subscriptionPlanFeatureDefinition"];
|
|
@@ -1890,8 +1899,8 @@ declare const subscriptionPlanFeatureDefinitionDeleteIntegration: {
|
|
|
1890
1899
|
responseFields: ["subscriptionPlanFeatureDefinitionId"];
|
|
1891
1900
|
};
|
|
1892
1901
|
|
|
1893
|
-
declare const ENTITY$
|
|
1894
|
-
type SubscriptionPlanCRUD = EntityCRUD<SubscriptionPlan, typeof ENTITY$
|
|
1902
|
+
declare const ENTITY$2: "subscriptionPlan";
|
|
1903
|
+
type SubscriptionPlanCRUD = EntityCRUD<SubscriptionPlan, typeof ENTITY$2>;
|
|
1895
1904
|
declare const subscriptionPlanIntegration: {
|
|
1896
1905
|
get: {
|
|
1897
1906
|
responseFields: ["subscriptionPlan"];
|
|
@@ -1975,8 +1984,8 @@ interface RemoveSubscriptionResponse {
|
|
|
1975
1984
|
}
|
|
1976
1985
|
declare const removeSubscriptionResponse: (keyof RemoveSubscriptionResponse)[];
|
|
1977
1986
|
|
|
1978
|
-
declare const ENTITY: "subscriptionPlanFeatureBehaviour";
|
|
1979
|
-
type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY>;
|
|
1987
|
+
declare const ENTITY$1: "subscriptionPlanFeatureBehaviour";
|
|
1988
|
+
type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY$1>;
|
|
1980
1989
|
declare const subscriptionPlanFeatureBehaviourIntegration: {
|
|
1981
1990
|
get: {
|
|
1982
1991
|
responseFields: ["subscriptionPlanFeatureBehaviour"];
|
|
@@ -1999,6 +2008,30 @@ declare const subscriptionPlanFeatureBehaviourDeleteIntegration: {
|
|
|
1999
2008
|
responseFields: ["subscriptionPlanFeatureBehaviourId"];
|
|
2000
2009
|
};
|
|
2001
2010
|
|
|
2011
|
+
declare const ENTITY: "subscriptionTrial";
|
|
2012
|
+
type SubscriptionTrialCRUD = EntityCRUD<SubscriptionTrial, typeof ENTITY>;
|
|
2013
|
+
declare const subscriptionTrialIntegration: {
|
|
2014
|
+
get: {
|
|
2015
|
+
responseFields: ["subscriptionTrial"];
|
|
2016
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2017
|
+
};
|
|
2018
|
+
create: {
|
|
2019
|
+
responseFields: ["subscriptionTrial"];
|
|
2020
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2021
|
+
};
|
|
2022
|
+
update: {
|
|
2023
|
+
responseFields: ["subscriptionTrial"];
|
|
2024
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
declare const subscriptionTrialListIntegration: {
|
|
2028
|
+
responseFields: readonly ["subscriptionTrials", "total"];
|
|
2029
|
+
nestedFields: Record<"subscriptionTrials", SubscriptionTrialFields>;
|
|
2030
|
+
};
|
|
2031
|
+
declare const subscriptionTrialDeleteIntegration: {
|
|
2032
|
+
responseFields: ["subscriptionTrialId"];
|
|
2033
|
+
};
|
|
2034
|
+
|
|
2002
2035
|
declare const createPaystackService: (client: GraphQLClient) => {
|
|
2003
2036
|
paystackInitializeSubscription(input: PaystackInitializeSubscriptionRequest, fetchFields?: {
|
|
2004
2037
|
root?: (keyof PaystackInitializeSubscriptionResponse)[];
|
|
@@ -2111,4 +2144,28 @@ declare const createSubscriptionPlanFeatureBehaviourService: (client: GraphQLCli
|
|
|
2111
2144
|
};
|
|
2112
2145
|
type SubscriptionPlanFeatureBehaviourService = ReturnType<typeof createSubscriptionPlanFeatureBehaviourService>;
|
|
2113
2146
|
|
|
2114
|
-
export { 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 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 ApplicationFeatureService, 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 CustomersProductCount, type DateFilter, type Distributor, 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 Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, 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, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, 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, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields };
|
|
2147
|
+
declare const createSubscriptionTrialService: (client: GraphQLClient) => {
|
|
2148
|
+
createSubscriptionTrial: (input: CreateEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2149
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2150
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2151
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2152
|
+
updateSubscriptionTrial: (input: UpdateEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2153
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2154
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2155
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2156
|
+
getSubscriptionTrial: (input: GetEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2157
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2158
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2159
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2160
|
+
removeSubscriptionTrial: (input: DeleteEntityRequest<"subscriptionTrial">, fetchFields?: {
|
|
2161
|
+
root?: "subscriptionTrialId"[] | undefined;
|
|
2162
|
+
nestedFields?: {} | undefined;
|
|
2163
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"subscriptionTrial"> | undefined>;
|
|
2164
|
+
getSubscriptionTrials: (input: ListEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2165
|
+
root?: ("total" | "subscriptionTrials")[] | undefined;
|
|
2166
|
+
nestedFields?: Record<"subscriptionTrials", SubscriptionTrialFields> | undefined;
|
|
2167
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2168
|
+
};
|
|
2169
|
+
type SubscriptionTrialService = ReturnType<typeof createSubscriptionTrialService>;
|
|
2170
|
+
|
|
2171
|
+
export { 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 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 ApplicationFeatureService, 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 CustomersProductCount, type DateFilter, type Distributor, 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 SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, 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, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, 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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -466,6 +466,14 @@ type SubscriptionPlanFeature = {
|
|
|
466
466
|
accessValue: SubscriptionPlanFeatureAccess;
|
|
467
467
|
behaviourIds: string[];
|
|
468
468
|
};
|
|
469
|
+
interface SubscriptionTrial {
|
|
470
|
+
id: string;
|
|
471
|
+
userId: string;
|
|
472
|
+
planId: string;
|
|
473
|
+
storeId: string;
|
|
474
|
+
createdAt: string;
|
|
475
|
+
endedAt: string;
|
|
476
|
+
}
|
|
469
477
|
interface SubscriptionPlan {
|
|
470
478
|
id: string;
|
|
471
479
|
code: string;
|
|
@@ -1865,9 +1873,10 @@ type SubscriptionPlanFields = (keyof SubscriptionPlan)[];
|
|
|
1865
1873
|
type SubscriptionFields = (keyof Subscription)[];
|
|
1866
1874
|
type SubscriptionPlanFeatureBehaviourFields = (keyof SubscriptionPlanFeatureBehaviour)[];
|
|
1867
1875
|
type SubscriptionPlanFeatureDefinitionFields = (keyof SubscriptionPlanFeatureDefinition)[];
|
|
1876
|
+
type SubscriptionTrialFields = (keyof SubscriptionTrial)[];
|
|
1868
1877
|
|
|
1869
|
-
declare const ENTITY$
|
|
1870
|
-
type SubscriptionPlanFeatureDefinitionCRUD = EntityCRUD<SubscriptionPlanFeatureDefinition, typeof ENTITY$
|
|
1878
|
+
declare const ENTITY$3: "subscriptionPlanFeatureDefinition";
|
|
1879
|
+
type SubscriptionPlanFeatureDefinitionCRUD = EntityCRUD<SubscriptionPlanFeatureDefinition, typeof ENTITY$3>;
|
|
1871
1880
|
declare const subscriptionPlanFeatureDefinitionIntegration: {
|
|
1872
1881
|
get: {
|
|
1873
1882
|
responseFields: ["subscriptionPlanFeatureDefinition"];
|
|
@@ -1890,8 +1899,8 @@ declare const subscriptionPlanFeatureDefinitionDeleteIntegration: {
|
|
|
1890
1899
|
responseFields: ["subscriptionPlanFeatureDefinitionId"];
|
|
1891
1900
|
};
|
|
1892
1901
|
|
|
1893
|
-
declare const ENTITY$
|
|
1894
|
-
type SubscriptionPlanCRUD = EntityCRUD<SubscriptionPlan, typeof ENTITY$
|
|
1902
|
+
declare const ENTITY$2: "subscriptionPlan";
|
|
1903
|
+
type SubscriptionPlanCRUD = EntityCRUD<SubscriptionPlan, typeof ENTITY$2>;
|
|
1895
1904
|
declare const subscriptionPlanIntegration: {
|
|
1896
1905
|
get: {
|
|
1897
1906
|
responseFields: ["subscriptionPlan"];
|
|
@@ -1975,8 +1984,8 @@ interface RemoveSubscriptionResponse {
|
|
|
1975
1984
|
}
|
|
1976
1985
|
declare const removeSubscriptionResponse: (keyof RemoveSubscriptionResponse)[];
|
|
1977
1986
|
|
|
1978
|
-
declare const ENTITY: "subscriptionPlanFeatureBehaviour";
|
|
1979
|
-
type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY>;
|
|
1987
|
+
declare const ENTITY$1: "subscriptionPlanFeatureBehaviour";
|
|
1988
|
+
type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY$1>;
|
|
1980
1989
|
declare const subscriptionPlanFeatureBehaviourIntegration: {
|
|
1981
1990
|
get: {
|
|
1982
1991
|
responseFields: ["subscriptionPlanFeatureBehaviour"];
|
|
@@ -1999,6 +2008,30 @@ declare const subscriptionPlanFeatureBehaviourDeleteIntegration: {
|
|
|
1999
2008
|
responseFields: ["subscriptionPlanFeatureBehaviourId"];
|
|
2000
2009
|
};
|
|
2001
2010
|
|
|
2011
|
+
declare const ENTITY: "subscriptionTrial";
|
|
2012
|
+
type SubscriptionTrialCRUD = EntityCRUD<SubscriptionTrial, typeof ENTITY>;
|
|
2013
|
+
declare const subscriptionTrialIntegration: {
|
|
2014
|
+
get: {
|
|
2015
|
+
responseFields: ["subscriptionTrial"];
|
|
2016
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2017
|
+
};
|
|
2018
|
+
create: {
|
|
2019
|
+
responseFields: ["subscriptionTrial"];
|
|
2020
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2021
|
+
};
|
|
2022
|
+
update: {
|
|
2023
|
+
responseFields: ["subscriptionTrial"];
|
|
2024
|
+
nestedFields: Record<"subscriptionTrial", SubscriptionTrialFields>;
|
|
2025
|
+
};
|
|
2026
|
+
};
|
|
2027
|
+
declare const subscriptionTrialListIntegration: {
|
|
2028
|
+
responseFields: readonly ["subscriptionTrials", "total"];
|
|
2029
|
+
nestedFields: Record<"subscriptionTrials", SubscriptionTrialFields>;
|
|
2030
|
+
};
|
|
2031
|
+
declare const subscriptionTrialDeleteIntegration: {
|
|
2032
|
+
responseFields: ["subscriptionTrialId"];
|
|
2033
|
+
};
|
|
2034
|
+
|
|
2002
2035
|
declare const createPaystackService: (client: GraphQLClient) => {
|
|
2003
2036
|
paystackInitializeSubscription(input: PaystackInitializeSubscriptionRequest, fetchFields?: {
|
|
2004
2037
|
root?: (keyof PaystackInitializeSubscriptionResponse)[];
|
|
@@ -2111,4 +2144,28 @@ declare const createSubscriptionPlanFeatureBehaviourService: (client: GraphQLCli
|
|
|
2111
2144
|
};
|
|
2112
2145
|
type SubscriptionPlanFeatureBehaviourService = ReturnType<typeof createSubscriptionPlanFeatureBehaviourService>;
|
|
2113
2146
|
|
|
2114
|
-
export { 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 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 ApplicationFeatureService, 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 CustomersProductCount, type DateFilter, type Distributor, 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 Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, 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, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, 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, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields };
|
|
2147
|
+
declare const createSubscriptionTrialService: (client: GraphQLClient) => {
|
|
2148
|
+
createSubscriptionTrial: (input: CreateEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2149
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2150
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2151
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2152
|
+
updateSubscriptionTrial: (input: UpdateEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2153
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2154
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2155
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2156
|
+
getSubscriptionTrial: (input: GetEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2157
|
+
root?: "subscriptionTrial"[] | undefined;
|
|
2158
|
+
nestedFields?: Record<"subscriptionTrial", SubscriptionTrialFields> | undefined;
|
|
2159
|
+
} | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2160
|
+
removeSubscriptionTrial: (input: DeleteEntityRequest<"subscriptionTrial">, fetchFields?: {
|
|
2161
|
+
root?: "subscriptionTrialId"[] | undefined;
|
|
2162
|
+
nestedFields?: {} | undefined;
|
|
2163
|
+
} | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"subscriptionTrial"> | undefined>;
|
|
2164
|
+
getSubscriptionTrials: (input: ListEntityRequest<SubscriptionTrial, "subscriptionTrial">, fetchFields?: {
|
|
2165
|
+
root?: ("total" | "subscriptionTrials")[] | undefined;
|
|
2166
|
+
nestedFields?: Record<"subscriptionTrials", SubscriptionTrialFields> | undefined;
|
|
2167
|
+
} | undefined, option?: RequestOption) => Promise<ListEntityResponse<SubscriptionTrial, "subscriptionTrial"> | undefined>;
|
|
2168
|
+
};
|
|
2169
|
+
type SubscriptionTrialService = ReturnType<typeof createSubscriptionTrialService>;
|
|
2170
|
+
|
|
2171
|
+
export { 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 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 ApplicationFeatureService, 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 CustomersProductCount, type DateFilter, type Distributor, 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 SubscriptionTrial, type SubscriptionTrialCRUD, type SubscriptionTrialService, type Transaction, type TransactionCounts, type TransactionFields, type TransactionPin, type TransactionService, 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, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, 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, 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 };
|
package/dist/index.esm.js
CHANGED
|
@@ -612,6 +612,14 @@ var createPaystackService = (client) => ({
|
|
|
612
612
|
});
|
|
613
613
|
|
|
614
614
|
// src/services/subscription/subscription.entity.ts
|
|
615
|
+
var subscriptionTrialQuery = [
|
|
616
|
+
"createdAt",
|
|
617
|
+
"endedAt",
|
|
618
|
+
"id",
|
|
619
|
+
"planId",
|
|
620
|
+
"storeId",
|
|
621
|
+
"userId"
|
|
622
|
+
];
|
|
615
623
|
var subscriptionPlanFeatureDefinitionQuery = [
|
|
616
624
|
"id",
|
|
617
625
|
"title",
|
|
@@ -737,6 +745,18 @@ var subscriptionPlanFeatureBehaviourListIntegration = createListIntegration({
|
|
|
737
745
|
});
|
|
738
746
|
var subscriptionPlanFeatureBehaviourDeleteIntegration = createDeleteIntegration(ENTITY4);
|
|
739
747
|
|
|
748
|
+
// src/services/subscription/types/subscription-trial.type.ts
|
|
749
|
+
var ENTITY5 = "subscriptionTrial";
|
|
750
|
+
var subscriptionTrialIntegration = createStandardEntityIntegration({
|
|
751
|
+
key: ENTITY5,
|
|
752
|
+
fields: subscriptionTrialQuery
|
|
753
|
+
});
|
|
754
|
+
var subscriptionTrialListIntegration = createListIntegration({
|
|
755
|
+
key: "subscriptionTrials",
|
|
756
|
+
fields: subscriptionTrialQuery
|
|
757
|
+
});
|
|
758
|
+
var subscriptionTrialDeleteIntegration = createDeleteIntegration(ENTITY5);
|
|
759
|
+
|
|
740
760
|
// src/helpers/service.factory.ts
|
|
741
761
|
function createOperationExecutor(client, key, config) {
|
|
742
762
|
return async (input, fetchFields, option) => {
|
|
@@ -1133,6 +1153,89 @@ var createSubscriptionPlanFeatureBehaviourService = (client) => ({
|
|
|
1133
1153
|
)
|
|
1134
1154
|
});
|
|
1135
1155
|
|
|
1156
|
+
// src/services/subscription/schemas/subscription-trial.schema.ts
|
|
1157
|
+
var subscriptionTrialSchema = {
|
|
1158
|
+
get: {
|
|
1159
|
+
operation: "query",
|
|
1160
|
+
name: "getSubscriptionTrial",
|
|
1161
|
+
variables: "($subscriptionTrial: SubscriptionTrialInput!)",
|
|
1162
|
+
field: "(subscriptionTrial: $subscriptionTrial)"
|
|
1163
|
+
},
|
|
1164
|
+
list: {
|
|
1165
|
+
operation: "query",
|
|
1166
|
+
name: "getSubscriptionTrials",
|
|
1167
|
+
variables: "($limit: Int!, $skip: Int!, $search: String, $subscriptionTrial: SubscriptionTrialInput, $subscriptionTrialIds: [String])",
|
|
1168
|
+
field: "(limit: $limit, skip: $skip, search: $search, subscriptionTrial: $subscriptionTrial, subscriptionTrialIds: $subscriptionTrialIds)"
|
|
1169
|
+
},
|
|
1170
|
+
create: {
|
|
1171
|
+
operation: "mutation",
|
|
1172
|
+
name: "createSubscriptionTrial",
|
|
1173
|
+
variables: "($subscriptionTrial: SubscriptionTrialInput!)",
|
|
1174
|
+
field: "(subscriptionTrial: $subscriptionTrial)"
|
|
1175
|
+
},
|
|
1176
|
+
update: {
|
|
1177
|
+
operation: "mutation",
|
|
1178
|
+
name: "updateSubscriptionTrial",
|
|
1179
|
+
variables: "($subscriptionTrialId: String!, $subscriptionTrial: SubscriptionTrialInput!)",
|
|
1180
|
+
field: "(subscriptionTrialId: $subscriptionTrialId, subscriptionTrial: $subscriptionTrial)"
|
|
1181
|
+
},
|
|
1182
|
+
delete: {
|
|
1183
|
+
operation: "mutation",
|
|
1184
|
+
name: "removeSubscriptionTrial",
|
|
1185
|
+
variables: "($subscriptionTrialId: String!)",
|
|
1186
|
+
field: "(subscriptionTrialId: $subscriptionTrialId)"
|
|
1187
|
+
}
|
|
1188
|
+
};
|
|
1189
|
+
|
|
1190
|
+
// src/services/subscription/subscription-trial.service.ts
|
|
1191
|
+
var createSubscriptionTrialService = (client) => ({
|
|
1192
|
+
createSubscriptionTrial: createOperationExecutor(
|
|
1193
|
+
client,
|
|
1194
|
+
"createSubscriptionTrial",
|
|
1195
|
+
{
|
|
1196
|
+
schema: buildSchema(subscriptionTrialSchema.create),
|
|
1197
|
+
defaultRootFields: subscriptionTrialIntegration.create.responseFields,
|
|
1198
|
+
defaultNestedFields: subscriptionTrialIntegration.create.nestedFields
|
|
1199
|
+
}
|
|
1200
|
+
),
|
|
1201
|
+
updateSubscriptionTrial: createOperationExecutor(
|
|
1202
|
+
client,
|
|
1203
|
+
"updateSubscriptionTrial",
|
|
1204
|
+
{
|
|
1205
|
+
schema: buildSchema(subscriptionTrialSchema.update),
|
|
1206
|
+
defaultRootFields: subscriptionTrialIntegration.update.responseFields,
|
|
1207
|
+
defaultNestedFields: subscriptionTrialIntegration.update.nestedFields
|
|
1208
|
+
}
|
|
1209
|
+
),
|
|
1210
|
+
getSubscriptionTrial: createOperationExecutor(
|
|
1211
|
+
client,
|
|
1212
|
+
"getSubscriptionTrial",
|
|
1213
|
+
{
|
|
1214
|
+
schema: buildSchema(subscriptionTrialSchema.get),
|
|
1215
|
+
defaultRootFields: subscriptionTrialIntegration.get.responseFields,
|
|
1216
|
+
defaultNestedFields: subscriptionTrialIntegration.get.nestedFields
|
|
1217
|
+
}
|
|
1218
|
+
),
|
|
1219
|
+
removeSubscriptionTrial: createOperationExecutor(
|
|
1220
|
+
client,
|
|
1221
|
+
"removeSubscriptionTrial",
|
|
1222
|
+
{
|
|
1223
|
+
schema: buildSchema(subscriptionTrialSchema.delete),
|
|
1224
|
+
defaultRootFields: subscriptionTrialDeleteIntegration.responseFields,
|
|
1225
|
+
defaultNestedFields: {}
|
|
1226
|
+
}
|
|
1227
|
+
),
|
|
1228
|
+
getSubscriptionTrials: createOperationExecutor(
|
|
1229
|
+
client,
|
|
1230
|
+
"getSubscriptionTrials",
|
|
1231
|
+
{
|
|
1232
|
+
schema: buildSchema(subscriptionTrialSchema.list),
|
|
1233
|
+
defaultRootFields: [...subscriptionTrialListIntegration.responseFields],
|
|
1234
|
+
defaultNestedFields: subscriptionTrialListIntegration.nestedFields
|
|
1235
|
+
}
|
|
1236
|
+
)
|
|
1237
|
+
});
|
|
1238
|
+
|
|
1136
1239
|
// src/services/user/types/user.type.ts
|
|
1137
1240
|
var getUserTypeCountsResponse = [
|
|
1138
1241
|
"userTypeCounts"
|
|
@@ -1634,9 +1737,9 @@ var createUserAccountService = (client) => ({
|
|
|
1634
1737
|
});
|
|
1635
1738
|
|
|
1636
1739
|
// src/services/user/types/user-role.type.ts
|
|
1637
|
-
var
|
|
1740
|
+
var ENTITY6 = "userRole";
|
|
1638
1741
|
var userRoleIntegration = createStandardEntityIntegration({
|
|
1639
|
-
key:
|
|
1742
|
+
key: ENTITY6,
|
|
1640
1743
|
fields: userRoleQuery,
|
|
1641
1744
|
nested: {
|
|
1642
1745
|
privileges: privilegeQuery
|
|
@@ -1649,7 +1752,7 @@ var userRoleListIntegration = createListIntegration({
|
|
|
1649
1752
|
privileges: privilegeQuery
|
|
1650
1753
|
}
|
|
1651
1754
|
});
|
|
1652
|
-
var userRoleDeleteIntegration = createDeleteIntegration(
|
|
1755
|
+
var userRoleDeleteIntegration = createDeleteIntegration(ENTITY6);
|
|
1653
1756
|
|
|
1654
1757
|
// src/services/user/schemas/user-role.schema.ts
|
|
1655
1758
|
var userRoleSchema = {
|
|
@@ -1735,16 +1838,16 @@ var createUserRoleService = (client) => ({
|
|
|
1735
1838
|
});
|
|
1736
1839
|
|
|
1737
1840
|
// src/services/user/types/application-feature.type.ts
|
|
1738
|
-
var
|
|
1841
|
+
var ENTITY7 = "applicationFeature";
|
|
1739
1842
|
var applicationFeatureIntegration = createStandardEntityIntegration({
|
|
1740
|
-
key:
|
|
1843
|
+
key: ENTITY7,
|
|
1741
1844
|
fields: applicationFeatureQuery
|
|
1742
1845
|
});
|
|
1743
1846
|
var applicationFeatureListIntegration = createListIntegration({
|
|
1744
1847
|
key: "applicationFeatures",
|
|
1745
1848
|
fields: applicationFeatureQuery
|
|
1746
1849
|
});
|
|
1747
|
-
var applicationFeatureDeleteIntegration = createDeleteIntegration(
|
|
1850
|
+
var applicationFeatureDeleteIntegration = createDeleteIntegration(ENTITY7);
|
|
1748
1851
|
|
|
1749
1852
|
// src/services/user/schemas/application-feature.schema.ts
|
|
1750
1853
|
var applicationFeatureSchema = {
|
|
@@ -3261,6 +3364,6 @@ var createTransactionService = (client) => ({
|
|
|
3261
3364
|
}
|
|
3262
3365
|
});
|
|
3263
3366
|
|
|
3264
|
-
export { AuthenticationError, GraphQLClient, NetworkError, SdkError, SubscriptionPlanFeatureKeyLabels, UpdateSaleResponse, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureDefinitionService, createSubscriptionPlanService, createSubscriptionService, createTransactionService, createTransport, createUserAccountService, createUserNotificationService, createUserRoleService, createUserService, 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, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionResponse, updateSubscriptionResponseNestedFields, updateTransactionResponse, updateTransactionResponseNestedFields };
|
|
3367
|
+
export { AuthenticationError, GraphQLClient, NetworkError, SdkError, SubscriptionPlanFeatureKeyLabels, UpdateSaleResponse, _getPackageResponseNestedFields, _getProductResponseNestedFields, _getSaleResponseNestedFields, _getStoreResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, 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, 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 };
|
|
3265
3368
|
//# sourceMappingURL=index.esm.js.map
|
|
3266
3369
|
//# sourceMappingURL=index.esm.js.map
|