@connect-plus-online/ogabai-integrations 0.0.69 → 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.d.ts CHANGED
@@ -445,23 +445,35 @@ interface SubscriptionPlanFeatureBehaviour {
445
445
  description: string;
446
446
  createdAt: string;
447
447
  }
448
+ interface SubscriptionPlanFeatureDefinition {
449
+ id: string;
450
+ subscriptionPlanFeatureKey: SubscriptionPlanFeatureKey;
451
+ title: string;
452
+ description: string;
453
+ featureDefnitionStatus: "active" | "inactive";
454
+ limitDefinition: string;
455
+ accessDefinition: string;
456
+ behaviourDefinition: string;
457
+ createdAt: string;
458
+ }
448
459
  type SubscriptionPlanFeatureStatus = "active" | "inactive";
449
460
  type SubscriptionPlanFeatureKey = "product" | "stock" | "sale" | "store" | "expense" | "scanAdd" | "report" | "order" | "export" | "offline" | "tax" | "loyalty" | "staff" | "scanSell" | "stockAlert";
450
461
  declare const SubscriptionPlanFeatureKeyLabels: Partial<Record<SubscriptionPlanFeatureKey, string>>;
451
462
  type SubscriptionPlanFeatureAccess = "yes" | "no";
452
463
  type SubscriptionPlanFeature = {
453
- id: string;
454
- title: string;
455
- description: string;
456
464
  subscriptionPlanFeatureKey: SubscriptionPlanFeatureKey;
457
- planId: string;
458
- meta?: Record<string, string>;
459
- featureStatus: SubscriptionPlanFeatureStatus;
460
- createdAt: string;
461
465
  limitValue: number;
462
466
  accessValue: SubscriptionPlanFeatureAccess;
463
467
  behaviourIds: string[];
464
468
  };
469
+ interface SubscriptionTrial {
470
+ id: string;
471
+ userId: string;
472
+ planId: string;
473
+ storeId: string;
474
+ createdAt: string;
475
+ endedAt: string;
476
+ }
465
477
  interface SubscriptionPlan {
466
478
  id: string;
467
479
  code: string;
@@ -1860,113 +1872,64 @@ type SubscriptionPlanFeatureFields = (keyof SubscriptionPlanFeature)[];
1860
1872
  type SubscriptionPlanFields = (keyof SubscriptionPlan)[];
1861
1873
  type SubscriptionFields = (keyof Subscription)[];
1862
1874
  type SubscriptionPlanFeatureBehaviourFields = (keyof SubscriptionPlanFeatureBehaviour)[];
1875
+ type SubscriptionPlanFeatureDefinitionFields = (keyof SubscriptionPlanFeatureDefinition)[];
1876
+ type SubscriptionTrialFields = (keyof SubscriptionTrial)[];
1863
1877
 
1864
- interface GetSubscriptionPlanFeatureRequest {
1865
- subscriptionPlanFeature: Partial<SubscriptionPlanFeature>;
1866
- }
1867
- interface GetSubscriptionPlanFeatureResponse {
1868
- subscriptionPlanFeature: SubscriptionPlanFeature;
1869
- }
1870
- declare const getSubscriptionPlanFeatureResponse: (keyof GetSubscriptionPlanFeatureResponse)[];
1871
- interface GetSubscriptionPlanFeatureResponseNestedFields {
1872
- subscriptionPlanFeature: SubscriptionPlanFeatureFields;
1873
- }
1874
- declare const _getSubscriptionPlanFeatureResponseNestedFields: Omit<GetSubscriptionPlanFeatureResponseNestedFields, "subscriptionPlanFeature">;
1875
- declare const getSubscriptionPlanFeatureResponseNestedFields: GetSubscriptionPlanFeatureResponseNestedFields;
1876
- interface GetSubscriptionPlanFeaturesRequest {
1877
- subscriptionPlanFeature?: Partial<SubscriptionPlanFeature>;
1878
- subscriptionPlanFeatureIds?: string[];
1879
- search?: string;
1880
- limit: number;
1881
- skip: number;
1882
- }
1883
- interface GetSubscriptionPlanFeaturesResponse {
1884
- subscriptionPlanFeatures: SubscriptionPlanFeature[];
1885
- total: number;
1886
- }
1887
- declare const getSubscriptionPlanFeaturesResponse: (keyof GetSubscriptionPlanFeaturesResponse)[];
1888
- interface GetSubscriptionPlanFeaturesResponseNestedFields extends Omit<GetSubscriptionPlanFeatureResponseNestedFields, "subscriptionPlanFeature"> {
1889
- subscriptionPlanFeatures: SubscriptionPlanFeatureFields;
1890
- }
1891
- declare const getSubscriptionPlanFeaturesResponseNestedFields: GetSubscriptionPlanFeaturesResponseNestedFields;
1892
- interface AddSubscriptionPlanFeatureRequest {
1893
- subscriptionPlanFeature: Partial<SubscriptionPlanFeature>;
1894
- }
1895
- interface AddSubscriptionPlanFeatureResponse {
1896
- subscriptionPlanFeature: SubscriptionPlanFeature;
1897
- }
1898
- declare const addSubscriptionPlanFeatureResponse: (keyof AddSubscriptionPlanFeatureResponse)[];
1899
- type AddSubscriptionPlanFeatureResponseNestedFields = GetSubscriptionPlanFeatureResponseNestedFields;
1900
- declare const addSubscriptionPlanFeatureResponseNestedFields: AddSubscriptionPlanFeatureResponseNestedFields;
1901
- interface UpdateSubscriptionPlanFeatureRequest {
1902
- subscriptionPlanFeatureId: string;
1903
- subscriptionPlanFeature: Partial<SubscriptionPlanFeature>;
1904
- }
1905
- type UpdateSubscriptionPlanFeatureResponse = GetSubscriptionPlanFeatureResponse;
1906
- declare const updateSubscriptionPlanFeatureResponse: (keyof UpdateSubscriptionPlanFeatureResponse)[];
1907
- type UpdateSubscriptionPlanFeatureResponseNestedFields = GetSubscriptionPlanFeatureResponseNestedFields;
1908
- declare const updateSubscriptionPlanFeatureResponseNestedFields: UpdateSubscriptionPlanFeatureResponseNestedFields;
1909
- interface RemoveSubscriptionPlanFeatureRequest {
1910
- subscriptionPlanFeatureId: string;
1911
- }
1912
- interface RemoveSubscriptionPlanFeatureResponse {
1913
- subscriptionPlanFeatureId: string;
1914
- }
1915
- declare const removeSubscriptionPlanFeatureResponse: (keyof RemoveSubscriptionPlanFeatureResponse)[];
1878
+ declare const ENTITY$3: "subscriptionPlanFeatureDefinition";
1879
+ type SubscriptionPlanFeatureDefinitionCRUD = EntityCRUD<SubscriptionPlanFeatureDefinition, typeof ENTITY$3>;
1880
+ declare const subscriptionPlanFeatureDefinitionIntegration: {
1881
+ get: {
1882
+ responseFields: ["subscriptionPlanFeatureDefinition"];
1883
+ nestedFields: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields>;
1884
+ };
1885
+ create: {
1886
+ responseFields: ["subscriptionPlanFeatureDefinition"];
1887
+ nestedFields: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields>;
1888
+ };
1889
+ update: {
1890
+ responseFields: ["subscriptionPlanFeatureDefinition"];
1891
+ nestedFields: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields>;
1892
+ };
1893
+ };
1894
+ declare const subscriptionPlanFeatureDefinitionListIntegration: {
1895
+ responseFields: readonly ["subscriptionPlanFeatureDefinitions", "total"];
1896
+ nestedFields: Record<"subscriptionPlanFeatureDefinitions", SubscriptionPlanFeatureDefinitionFields>;
1897
+ };
1898
+ declare const subscriptionPlanFeatureDefinitionDeleteIntegration: {
1899
+ responseFields: ["subscriptionPlanFeatureDefinitionId"];
1900
+ };
1916
1901
 
1917
- interface GetSubscriptionPlanRequest {
1918
- subscriptionPlan: Partial<SubscriptionPlan>;
1919
- }
1920
- interface GetSubscriptionPlanResponse {
1921
- subscriptionPlan: SubscriptionPlan;
1922
- }
1923
- declare const getSubscriptionPlanResponse: (keyof GetSubscriptionPlanResponse)[];
1924
- interface GetSubscriptionPlanResponseNestedFields {
1925
- subscriptionPlan: SubscriptionPlanFields;
1926
- features: SubscriptionPlanFeatureFields;
1927
- }
1928
- declare const _getSubscriptionPlanResponseNestedFields: Omit<GetSubscriptionPlanResponseNestedFields, "subscriptionPlan">;
1929
- declare const getSubscriptionPlanResponseNestedFields: GetSubscriptionPlanResponseNestedFields;
1930
- interface GetSubscriptionPlansRequest {
1931
- subscriptionPlan?: Partial<SubscriptionPlan>;
1932
- subscriptionPlanIds?: string[];
1933
- search?: string;
1934
- limit: number;
1935
- skip: number;
1936
- }
1937
- interface GetSubscriptionPlansResponse {
1938
- subscriptionPlans: SubscriptionPlan[];
1939
- total: number;
1940
- }
1941
- declare const getSubscriptionPlansResponse: (keyof GetSubscriptionPlansResponse)[];
1942
- interface GetSubscriptionPlansResponseNestedFields extends Omit<GetSubscriptionPlanResponseNestedFields, "subscriptionPlan"> {
1943
- subscriptionPlans: SubscriptionPlanFields;
1944
- }
1945
- declare const getSubscriptionPlansResponseNestedFields: GetSubscriptionPlansResponseNestedFields;
1946
- interface AddSubscriptionPlanRequest {
1947
- subscriptionPlan: Partial<SubscriptionPlan>;
1948
- }
1949
- interface AddSubscriptionPlanResponse {
1950
- subscriptionPlan: SubscriptionPlan;
1951
- }
1952
- declare const addSubscriptionPlanResponse: (keyof AddSubscriptionPlanResponse)[];
1953
- type AddSubscriptionPlanResponseNestedFields = GetSubscriptionPlanResponseNestedFields;
1954
- declare const addSubscriptionPlanResponseNestedFields: AddSubscriptionPlanResponseNestedFields;
1955
- interface UpdateSubscriptionPlanRequest {
1956
- subscriptionPlanId: string;
1957
- subscriptionPlan: Partial<SubscriptionPlan>;
1958
- }
1959
- type UpdateSubscriptionPlanResponse = GetSubscriptionPlanResponse;
1960
- declare const updateSubscriptionPlanResponse: (keyof UpdateSubscriptionPlanResponse)[];
1961
- type UpdateSubscriptionPlanResponseNestedFields = GetSubscriptionPlanResponseNestedFields;
1962
- declare const updateSubscriptionPlanResponseNestedFields: UpdateSubscriptionPlanResponseNestedFields;
1963
- interface RemoveSubscriptionPlanRequest {
1964
- subscriptionPlanId: string;
1965
- }
1966
- interface RemoveSubscriptionPlanResponse {
1967
- subscriptionPlanId: string;
1968
- }
1969
- declare const removeSubscriptionPlanResponse: (keyof RemoveSubscriptionPlanResponse)[];
1902
+ declare const ENTITY$2: "subscriptionPlan";
1903
+ type SubscriptionPlanCRUD = EntityCRUD<SubscriptionPlan, typeof ENTITY$2>;
1904
+ declare const subscriptionPlanIntegration: {
1905
+ get: {
1906
+ responseFields: ["subscriptionPlan"];
1907
+ nestedFields: Record<"subscriptionPlan", SubscriptionPlanFields> & {
1908
+ features: SubscriptionPlanFeatureFields;
1909
+ };
1910
+ };
1911
+ create: {
1912
+ responseFields: ["subscriptionPlan"];
1913
+ nestedFields: Record<"subscriptionPlan", SubscriptionPlanFields> & {
1914
+ features: SubscriptionPlanFeatureFields;
1915
+ };
1916
+ };
1917
+ update: {
1918
+ responseFields: ["subscriptionPlan"];
1919
+ nestedFields: Record<"subscriptionPlan", SubscriptionPlanFields> & {
1920
+ features: SubscriptionPlanFeatureFields;
1921
+ };
1922
+ };
1923
+ };
1924
+ declare const subscriptionPlanListIntegration: {
1925
+ responseFields: readonly ["subscriptionPlans", "total"];
1926
+ nestedFields: Record<"subscriptionPlans", SubscriptionPlanFields> & {
1927
+ features: SubscriptionPlanFeatureFields;
1928
+ };
1929
+ };
1930
+ declare const subscriptionPlanDeleteIntegration: {
1931
+ responseFields: ["subscriptionPlanId"];
1932
+ };
1970
1933
 
1971
1934
  interface GetSubscriptionRequest {
1972
1935
  subscription: Partial<Subscription>;
@@ -2021,8 +1984,8 @@ interface RemoveSubscriptionResponse {
2021
1984
  }
2022
1985
  declare const removeSubscriptionResponse: (keyof RemoveSubscriptionResponse)[];
2023
1986
 
2024
- declare const ENTITY: "subscriptionPlanFeatureBehaviour";
2025
- type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY>;
1987
+ declare const ENTITY$1: "subscriptionPlanFeatureBehaviour";
1988
+ type SubscriptionPlanFeatureBehaviourCRUD = EntityCRUD<SubscriptionPlanFeatureBehaviour, typeof ENTITY$1>;
2026
1989
  declare const subscriptionPlanFeatureBehaviourIntegration: {
2027
1990
  get: {
2028
1991
  responseFields: ["subscriptionPlanFeatureBehaviour"];
@@ -2045,6 +2008,30 @@ declare const subscriptionPlanFeatureBehaviourDeleteIntegration: {
2045
2008
  responseFields: ["subscriptionPlanFeatureBehaviourId"];
2046
2009
  };
2047
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
+
2048
2035
  declare const createPaystackService: (client: GraphQLClient) => {
2049
2036
  paystackInitializeSubscription(input: PaystackInitializeSubscriptionRequest, fetchFields?: {
2050
2037
  root?: (keyof PaystackInitializeSubscriptionResponse)[];
@@ -2055,48 +2042,59 @@ declare const createPaystackService: (client: GraphQLClient) => {
2055
2042
  };
2056
2043
  type PaystackService = ReturnType<typeof createPaystackService>;
2057
2044
 
2058
- declare const createSubscriptionPlanFeatureService: (client: GraphQLClient) => {
2059
- removeSubscriptionPlanFeature(input: RemoveSubscriptionPlanFeatureRequest, fetchFields?: {
2060
- root?: (keyof RemoveSubscriptionPlanFeatureResponse)[];
2061
- }, option?: RequestOption): Promise<RemoveSubscriptionPlanFeatureResponse | null>;
2062
- updateSubscriptionPlanFeature(input: UpdateSubscriptionPlanFeatureRequest, fetchFields?: {
2063
- root?: (keyof UpdateSubscriptionPlanFeatureResponse)[];
2064
- nestedFields?: UpdateSubscriptionPlanFeatureResponseNestedFields;
2065
- }, option?: RequestOption): Promise<UpdateSubscriptionPlanFeatureResponse | null>;
2066
- addSubscriptionPlanFeature(input: AddSubscriptionPlanFeatureRequest, fetchFields?: {
2067
- root?: (keyof AddSubscriptionPlanFeatureResponse)[];
2068
- nestedFields?: AddSubscriptionPlanFeatureResponseNestedFields;
2069
- }, option?: RequestOption): Promise<AddSubscriptionPlanFeatureResponse | null>;
2070
- getSubscriptionPlanFeature(input: GetSubscriptionPlanFeatureRequest, fetchFields?: {
2071
- root?: (keyof GetSubscriptionPlanFeatureResponse)[];
2072
- nestedFields?: GetSubscriptionPlanFeatureResponseNestedFields;
2073
- }, option?: RequestOption): Promise<GetSubscriptionPlanFeatureResponse | null>;
2074
- getSubscriptionPlanFeatures(input: GetSubscriptionPlanFeaturesRequest, fetchFields?: {
2075
- root?: (keyof GetSubscriptionPlanFeaturesResponse)[];
2076
- nestedFields?: GetSubscriptionPlanFeaturesResponseNestedFields;
2077
- }, option?: RequestOption): Promise<GetSubscriptionPlanFeaturesResponse | null>;
2045
+ declare const createSubscriptionPlanFeatureDefinitionService: (client: GraphQLClient) => {
2046
+ createSubscriptionPlanFeatureDefinition: (input: CreateEntityRequest<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition">, fetchFields?: {
2047
+ root?: "subscriptionPlanFeatureDefinition"[] | undefined;
2048
+ nestedFields?: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields> | undefined;
2049
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition"> | undefined>;
2050
+ updateSubscriptionPlanFeatureDefinition: (input: UpdateEntityRequest<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition">, fetchFields?: {
2051
+ root?: "subscriptionPlanFeatureDefinition"[] | undefined;
2052
+ nestedFields?: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields> | undefined;
2053
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition"> | undefined>;
2054
+ getSubscriptionPlanFeatureDefinition: (input: GetEntityRequest<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition">, fetchFields?: {
2055
+ root?: "subscriptionPlanFeatureDefinition"[] | undefined;
2056
+ nestedFields?: Record<"subscriptionPlanFeatureDefinition", SubscriptionPlanFeatureDefinitionFields> | undefined;
2057
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition"> | undefined>;
2058
+ removeSubscriptionPlanFeatureDefinition: (input: DeleteEntityRequest<"subscriptionPlanFeatureDefinition">, fetchFields?: {
2059
+ root?: "subscriptionPlanFeatureDefinitionId"[] | undefined;
2060
+ nestedFields?: {} | undefined;
2061
+ } | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"subscriptionPlanFeatureDefinition"> | undefined>;
2062
+ getSubscriptionPlanFeatureDefinitions: (input: ListEntityRequest<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition">, fetchFields?: {
2063
+ root?: ("total" | "subscriptionPlanFeatureDefinitions")[] | undefined;
2064
+ nestedFields?: Record<"subscriptionPlanFeatureDefinitions", SubscriptionPlanFeatureDefinitionFields> | undefined;
2065
+ } | undefined, option?: RequestOption) => Promise<ListEntityResponse<SubscriptionPlanFeatureDefinition, "subscriptionPlanFeatureDefinition"> | undefined>;
2078
2066
  };
2067
+ type SubscriptionPlanFeatureDefinitionService = ReturnType<typeof createSubscriptionPlanFeatureDefinitionService>;
2079
2068
 
2080
2069
  declare const createSubscriptionPlanService: (client: GraphQLClient) => {
2081
- removeSubscriptionPlan(input: RemoveSubscriptionPlanRequest, fetchFields?: {
2082
- root?: (keyof RemoveSubscriptionPlanResponse)[];
2083
- }, option?: RequestOption): Promise<RemoveSubscriptionPlanResponse | null>;
2084
- updateSubscriptionPlan(input: UpdateSubscriptionPlanRequest, fetchFields?: {
2085
- root?: (keyof UpdateSubscriptionPlanResponse)[];
2086
- nestedFields?: UpdateSubscriptionPlanResponseNestedFields;
2087
- }, option?: RequestOption): Promise<UpdateSubscriptionPlanResponse | null>;
2088
- addSubscriptionPlan(input: AddSubscriptionPlanRequest, fetchFields?: {
2089
- root?: (keyof AddSubscriptionPlanResponse)[];
2090
- nestedFields?: AddSubscriptionPlanResponseNestedFields;
2091
- }, option?: RequestOption): Promise<AddSubscriptionPlanResponse | null>;
2092
- getSubscriptionPlan(input: GetSubscriptionPlanRequest, fetchFields?: {
2093
- root?: (keyof GetSubscriptionPlanResponse)[];
2094
- nestedFields?: GetSubscriptionPlanResponseNestedFields;
2095
- }, option?: RequestOption): Promise<GetSubscriptionPlanResponse | null>;
2096
- getSubscriptionPlans(input: GetSubscriptionPlansRequest, fetchFields?: {
2097
- root?: (keyof GetSubscriptionPlansResponse)[];
2098
- nestedFields?: GetSubscriptionPlansResponseNestedFields;
2099
- }, option?: RequestOption): Promise<GetSubscriptionPlansResponse | null>;
2070
+ createSubscriptionPlan: (input: CreateEntityRequest<SubscriptionPlan, "subscriptionPlan">, fetchFields?: {
2071
+ root?: "subscriptionPlan"[] | undefined;
2072
+ nestedFields?: (Record<"subscriptionPlan", SubscriptionPlanFields> & {
2073
+ features: SubscriptionPlanFeatureFields;
2074
+ }) | undefined;
2075
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlan, "subscriptionPlan"> | undefined>;
2076
+ updateSubscriptionPlan: (input: UpdateEntityRequest<SubscriptionPlan, "subscriptionPlan">, fetchFields?: {
2077
+ root?: "subscriptionPlan"[] | undefined;
2078
+ nestedFields?: (Record<"subscriptionPlan", SubscriptionPlanFields> & {
2079
+ features: SubscriptionPlanFeatureFields;
2080
+ }) | undefined;
2081
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlan, "subscriptionPlan"> | undefined>;
2082
+ getSubscriptionPlan: (input: GetEntityRequest<SubscriptionPlan, "subscriptionPlan">, fetchFields?: {
2083
+ root?: "subscriptionPlan"[] | undefined;
2084
+ nestedFields?: (Record<"subscriptionPlan", SubscriptionPlanFields> & {
2085
+ features: SubscriptionPlanFeatureFields;
2086
+ }) | undefined;
2087
+ } | undefined, option?: RequestOption) => Promise<EntityResponse<SubscriptionPlan, "subscriptionPlan"> | undefined>;
2088
+ removeSubscriptionPlan: (input: DeleteEntityRequest<"subscriptionPlan">, fetchFields?: {
2089
+ root?: "subscriptionPlanId"[] | undefined;
2090
+ nestedFields?: {} | undefined;
2091
+ } | undefined, option?: RequestOption) => Promise<DeleteEntityResponse<"subscriptionPlan"> | undefined>;
2092
+ getSubscriptionPlans: (input: ListEntityRequest<SubscriptionPlan, "subscriptionPlan">, fetchFields?: {
2093
+ root?: ("total" | "subscriptionPlans")[] | undefined;
2094
+ nestedFields?: (Record<"subscriptionPlans", SubscriptionPlanFields> & {
2095
+ features: SubscriptionPlanFeatureFields;
2096
+ }) | undefined;
2097
+ } | undefined, option?: RequestOption) => Promise<ListEntityResponse<SubscriptionPlan, "subscriptionPlan"> | undefined>;
2100
2098
  };
2101
2099
  type SubscriptionPlanService = ReturnType<typeof createSubscriptionPlanService>;
2102
2100
 
@@ -2146,4 +2144,28 @@ declare const createSubscriptionPlanFeatureBehaviourService: (client: GraphQLCli
2146
2144
  };
2147
2145
  type SubscriptionPlanFeatureBehaviourService = ReturnType<typeof createSubscriptionPlanFeatureBehaviourService>;
2148
2146
 
2149
- 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 AddSubscriptionPlanFeatureRequest, type AddSubscriptionPlanFeatureResponse, type AddSubscriptionPlanFeatureResponseNestedFields, type AddSubscriptionPlanRequest, type AddSubscriptionPlanResponse, type AddSubscriptionPlanResponseNestedFields, 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 GetSubscriptionPlanFeatureRequest, type GetSubscriptionPlanFeatureResponse, type GetSubscriptionPlanFeatureResponseNestedFields, type GetSubscriptionPlanFeaturesRequest, type GetSubscriptionPlanFeaturesResponse, type GetSubscriptionPlanFeaturesResponseNestedFields, type GetSubscriptionPlanRequest, type GetSubscriptionPlanResponse, type GetSubscriptionPlanResponseNestedFields, type GetSubscriptionPlansRequest, type GetSubscriptionPlansResponse, type GetSubscriptionPlansResponseNestedFields, 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 RemoveSubscriptionPlanFeatureRequest, type RemoveSubscriptionPlanFeatureResponse, type RemoveSubscriptionPlanRequest, type RemoveSubscriptionPlanResponse, 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 SubscriptionPlanFeature, type SubscriptionPlanFeatureAccess, type SubscriptionPlanFeatureAccessValue, type SubscriptionPlanFeatureBehaviour, type SubscriptionPlanFeatureBehaviourCRUD, type SubscriptionPlanFeatureBehaviourService, type SubscriptionPlanFeatureBehaviourValue, 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 UpdateSubscriptionPlanFeatureRequest, type UpdateSubscriptionPlanFeatureResponse, type UpdateSubscriptionPlanFeatureResponseNestedFields, type UpdateSubscriptionPlanRequest, type UpdateSubscriptionPlanResponse, type UpdateSubscriptionPlanResponseNestedFields, 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, _getSubscriptionPlanFeatureResponseNestedFields, _getSubscriptionPlanResponseNestedFields, _getSubscriptionResponseNestedFields, _getTransactionResponseNestedFields, _getTransactionsResponseNestedFields, addPackageResponseFields, addPackageResponseNestedFields, addPackagesResponseFields, addPackagesResponseNestedFields, addPriceResponseFields, addPriceResponseNestedFields, addProductResponseFields, addProductResponseNestedFields, addStockResponse, addStockResponseNestedFields, addStoreResponse, addStoreResponseNestedFields, addSubscriptionPlanFeatureResponse, addSubscriptionPlanFeatureResponseNestedFields, addSubscriptionPlanResponse, addSubscriptionPlanResponseNestedFields, addSubscriptionResponse, addSubscriptionResponseNestedFields, addTransactionResponse, addTransactionResponseNestedFields, compose, createApplicationFeatureService, createAuthService, createOrderService, createPackageService, createPaystackService, createPriceService, createProductService, createSaleService, createStockService, createStoreCategoryProductResponseFields, createStoreCategoryProductResponseNestedFields, createStoreCategoryProductService, createStoreCategoryResponseFields, createStoreCategoryResponseNestedFields, createStoreCategoryService, createStoreService, createSubscriptionPlanFeatureBehaviourService, createSubscriptionPlanFeatureService, 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, getSubscriptionPlanFeatureResponse, getSubscriptionPlanFeatureResponseNestedFields, getSubscriptionPlanFeaturesResponse, getSubscriptionPlanFeaturesResponseNestedFields, getSubscriptionPlanResponse, getSubscriptionPlanResponseNestedFields, getSubscriptionPlansResponse, getSubscriptionPlansResponseNestedFields, getSubscriptionResponse, getSubscriptionResponseNestedFields, getSubscriptionsResponse, getSubscriptionsResponseNestedFields, getTransactionResponse, getTransactionResponseNestedFields, getTransactionsResponse, getTransactionsResponseNestedFields, orderQuery, paystackInitializePaymentResponse, paystackInitializeSubscriptionResponse, removePackageResponseFields, removePriceResponseFields, removeProductResponseFields, removeStockResponse, removeStoreCategoryProductResponseFields, removeStoreCategoryResponseFields, removeStoreResponse, removeSubscriptionPlanFeatureResponse, removeSubscriptionPlanResponse, removeSubscriptionResponse, saleQuery, searchCategoriesAndTemplateResponse, searchCategoriesAndTemplateResponseNestedFields, searchProductNamesResponse, searchProductNamesResponseNestedFields, subscriptionPlanFeatureBehaviourDeleteIntegration, subscriptionPlanFeatureBehaviourIntegration, subscriptionPlanFeatureBehaviourListIntegration, toAsyncHeadersFactory, toAsyncTokenProvider, transactionQuery, updatePackageResponseFields, updatePackageResponseNestedFields, updatePriceResponseFields, updatePriceResponseNestedFields, updateProductResponseFields, updateProductResponseNestedFields, updateSaleResponseNestedFields, updateStockResponse, updateStockResponseNestedFields, updateStoreCategoryProductResponseFields, updateStoreCategoryProductResponseNestedFields, updateStoreCategoryResponseFields, updateStoreCategoryResponseNestedFields, updateStoreResponse, updateStoreResponseNestedFields, updateSubscriptionPlanFeatureResponse, updateSubscriptionPlanFeatureResponseNestedFields, updateSubscriptionPlanResponse, updateSubscriptionPlanResponseNestedFields, 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 };