22 lines
1.7 KiB
TypeScript

import * as SalesforceMapper from "./salesforce/mapper";
import * as SalesforceRaw from "./salesforce/raw.types";
import * as WhmcsRaw from "./whmcs/raw.types";
export declare const Salesforce: {
mapper: typeof SalesforceMapper;
raw: typeof SalesforceRaw;
mapInternetPlan(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").InternetPlanCatalogItem;
mapInternetInstallation(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").InternetInstallationCatalogItem;
mapInternetAddon(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").InternetAddonCatalogItem;
mapSimProduct(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").SimCatalogProduct;
mapSimActivationFee(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").SimActivationFeeCatalogItem;
mapVpnProduct(product: SalesforceRaw.SalesforceProduct2WithPricebookEntries, pricebookEntry?: SalesforceRaw.SalesforcePricebookEntryRecord): import("..").VpnCatalogProduct;
extractPricebookEntry(record: SalesforceRaw.SalesforceProduct2WithPricebookEntries): SalesforceRaw.SalesforcePricebookEntryRecord | undefined;
};
export declare const Whmcs: {
raw: typeof WhmcsRaw;
};
export { SalesforceMapper, SalesforceRaw, WhmcsRaw };
export * from "./salesforce/mapper";
export * from "./salesforce/raw.types";
export * from "./whmcs/raw.types";