@goweekdays/core 2.12.3 → 2.13.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @goweekdays/core
2
2
 
3
+ ## 2.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e083e11: Initial implementation and integration of finance module
8
+
3
9
  ## 2.12.3
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -226,8 +226,15 @@ declare function useCounterModel(db: Db): {
226
226
 
227
227
  declare function useCounterRepo(): {
228
228
  createIndexes: () => Promise<void>;
229
- add: (type: string) => Promise<void>;
230
- getByType: (type: string) => Promise<any>;
229
+ add: (type: string, session?: ClientSession) => Promise<void>;
230
+ getByType: (type: string) => Promise<{
231
+ type: string;
232
+ createdAt: Date;
233
+ count: number;
234
+ deletedAt?: Date | undefined;
235
+ _id?: bson.ObjectId | undefined;
236
+ updatedAt?: Date | undefined;
237
+ } | null>;
231
238
  incrementByType: (type: string, session?: ClientSession) => Promise<void>;
232
239
  };
233
240
 
@@ -422,6 +429,7 @@ declare function useOrgService(): {
422
429
  };
423
430
 
424
431
  declare function useOrgController(): {
432
+ validOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;
425
433
  add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
426
434
  getOrgsByUserId: (req: Request, res: Response, next: NextFunction) => Promise<void>;
427
435
  getByName: (req: Request, res: Response, next: NextFunction) => Promise<void>;
@@ -1689,6 +1697,227 @@ declare function useJobSummaryCtrl(): {
1689
1697
  getByOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1690
1698
  };
1691
1699
 
1700
+ type TTax = {
1701
+ _id?: ObjectId;
1702
+ org: ObjectId;
1703
+ name: string;
1704
+ rate: number;
1705
+ direction: string;
1706
+ status?: string;
1707
+ createdAt?: Date | string;
1708
+ updatedAt?: Date | string;
1709
+ };
1710
+ declare const taxDirections: string[];
1711
+ declare const schemaTax: Joi.ObjectSchema<any>;
1712
+ declare const schemaTaxUpdate: Joi.ObjectSchema<any>;
1713
+ declare function modelTax(data: TTax): TTax;
1714
+
1715
+ declare function useTaxRepo(): {
1716
+ createIndexes: () => Promise<void>;
1717
+ add: (value: TTax, session?: ClientSession) => Promise<ObjectId>;
1718
+ getAll: (options: {
1719
+ org: ObjectId | string;
1720
+ search?: string;
1721
+ page?: number;
1722
+ limit?: number;
1723
+ status?: string;
1724
+ }) => Promise<Record<string, any>>;
1725
+ getTaxesByOrg: ({ search, page, limit, org, status }?: {
1726
+ org: string | ObjectId;
1727
+ page: number;
1728
+ limit?: number | undefined;
1729
+ search?: string | undefined;
1730
+ status?: string | undefined;
1731
+ }) => Promise<{
1732
+ items: any[];
1733
+ pages: number;
1734
+ pageRange: string;
1735
+ } | {
1736
+ _id: ObjectId;
1737
+ name: string;
1738
+ }[]>;
1739
+ getById: (_id: string | ObjectId) => Promise<TTax>;
1740
+ updateById: (_id: string | ObjectId, options: Pick<TTax, "name" | "rate" | "direction">) => Promise<string>;
1741
+ deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
1742
+ updateStatusById: (_id: string | ObjectId, status: string) => Promise<string>;
1743
+ };
1744
+
1745
+ declare function useTaxController(): {
1746
+ add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1747
+ getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1748
+ getTaxesByOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1749
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1750
+ updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1751
+ deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1752
+ updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1753
+ };
1754
+
1755
+ type TChartOfAccountType = "asset" | "liability" | "equity" | "income" | "expense";
1756
+ type TChartOfAccountStatus = "active" | "inactive" | "archived";
1757
+ type TChartOfAccountNormalBalance = "debit" | "credit";
1758
+ type TChartOfAccount = {
1759
+ _id?: ObjectId;
1760
+ org: ObjectId;
1761
+ type: TChartOfAccountType;
1762
+ normalBalance: TChartOfAccountNormalBalance;
1763
+ parent?: ObjectId | string;
1764
+ parentName?: string;
1765
+ path: string;
1766
+ name: string;
1767
+ code: string;
1768
+ tax?: ObjectId;
1769
+ isContra: boolean;
1770
+ status?: TChartOfAccountStatus;
1771
+ createdAt?: Date | string;
1772
+ updatedAt?: Date | string;
1773
+ };
1774
+ declare const chartOfAccountTypes: TChartOfAccountType[];
1775
+ declare const chartOfAccountNormalBalances: TChartOfAccountNormalBalance[];
1776
+ declare const schemaChartOfAccountBase: Joi.ObjectSchema<any>;
1777
+ declare const schemaChartOfAccountStd: Joi.ObjectSchema<any>;
1778
+ declare const schemaChartOfAccountUpdate: Joi.ObjectSchema<any>;
1779
+ declare function modelChartOfAccount(data: TChartOfAccount): TChartOfAccount;
1780
+
1781
+ declare function useChartOfAccountRepo(): {
1782
+ createIndexes: () => Promise<void>;
1783
+ add: (value: TChartOfAccount, session?: ClientSession) => Promise<ObjectId>;
1784
+ getAll: (options: {
1785
+ org: ObjectId | string;
1786
+ search?: string;
1787
+ page?: number;
1788
+ limit?: number;
1789
+ status?: string;
1790
+ }) => Promise<Record<string, any>>;
1791
+ getByOrg: ({ search, page, limit, org, status }?: {
1792
+ org: string | ObjectId;
1793
+ page: number;
1794
+ limit?: number | undefined;
1795
+ search?: string | undefined;
1796
+ status?: string | undefined;
1797
+ }) => Promise<{
1798
+ items: any[];
1799
+ pages: number;
1800
+ pageRange: string;
1801
+ } | {
1802
+ _id: ObjectId;
1803
+ name: string;
1804
+ }[]>;
1805
+ getById: (_id: string | ObjectId) => Promise<TChartOfAccount>;
1806
+ updateById: (_id: string | ObjectId, options: Partial<Omit<TChartOfAccount, "_id" | "org">>, session?: ClientSession) => Promise<string>;
1807
+ deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
1808
+ updateStatusById: (_id: string | ObjectId, status: string) => Promise<string>;
1809
+ countByPath: (path: string) => Promise<number>;
1810
+ };
1811
+
1812
+ declare function useChartOfAccountController(): {
1813
+ add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1814
+ getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1815
+ getByOrg: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1816
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1817
+ updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1818
+ deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1819
+ updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1820
+ };
1821
+
1822
+ type TJournalEntryStatus = "draft" | "posted" | "voided";
1823
+ declare const journalEntryStatuses: TJournalEntryStatus[];
1824
+ type TJournalEntryType = "general" | "sales" | "purchases" | "cash-receipts" | "cash-disbursements";
1825
+ declare const journalEntryTypes: TJournalEntryType[];
1826
+ type TJournalEntryMetadata = {
1827
+ customerId: ObjectId | string;
1828
+ supplierId: ObjectId | string;
1829
+ itemId: ObjectId | string;
1830
+ assetId: ObjectId | string;
1831
+ purchaseOrderId: ObjectId | string;
1832
+ salesOrderId: ObjectId | string;
1833
+ };
1834
+ type TJournalEntry = {
1835
+ _id?: ObjectId;
1836
+ id: string;
1837
+ org: ObjectId;
1838
+ type: string;
1839
+ book: TJournalEntryType;
1840
+ date: Date | string;
1841
+ description: string;
1842
+ createdBy: ObjectId;
1843
+ createdByName: string;
1844
+ metadata: TJournalEntryMetadata;
1845
+ status: TJournalEntryStatus;
1846
+ postedAt?: Date | string;
1847
+ createdAt?: Date | string;
1848
+ updatedAt?: Date | string;
1849
+ };
1850
+ declare const schemaJournalEntryCtrl: Joi.ObjectSchema<any>;
1851
+ declare const schemaJournalEntryRepo: Joi.ObjectSchema<any>;
1852
+ declare const schemaJournalEntryGetAll: Joi.ObjectSchema<any>;
1853
+ declare function modelJournalEntry(data: TJournalEntry): TJournalEntry;
1854
+
1855
+ declare function useJournalEntryRepo(): {
1856
+ add: (value: TJournalEntry, session?: ClientSession) => Promise<ObjectId>;
1857
+ getAll: (options: {
1858
+ org: ObjectId | string;
1859
+ search?: string;
1860
+ page?: number;
1861
+ limit?: number;
1862
+ book: string;
1863
+ type: string;
1864
+ status?: string;
1865
+ }) => Promise<Record<string, any>>;
1866
+ getById: (_id: string | ObjectId) => Promise<TJournalEntry>;
1867
+ updateById: (_id: string | ObjectId, options: Partial<TJournalEntry>) => Promise<string>;
1868
+ deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
1869
+ updateStatusById: (_id: string | ObjectId, status: string) => Promise<string>;
1870
+ };
1871
+
1872
+ type TJournalLine = {
1873
+ _id?: ObjectId;
1874
+ org: ObjectId;
1875
+ journalEntry: ObjectId | string;
1876
+ account: ObjectId;
1877
+ accountName: string;
1878
+ debit: number;
1879
+ credit: number;
1880
+ postReference?: string;
1881
+ createdAt?: Date | string;
1882
+ updatedAt?: Date | string;
1883
+ };
1884
+ declare const schemaJournalLineCtrl: Joi.ObjectSchema<any>;
1885
+ declare const schemaJournalLineRepo: Joi.ObjectSchema<any>;
1886
+ declare function modelJournalLine(data: TJournalLine): TJournalLine;
1887
+
1888
+ declare function useJournalEntryService(): {
1889
+ add: (entry: TJournalEntry, lines: TJournalLine[]) => Promise<string>;
1890
+ };
1891
+
1892
+ declare function useJournalEntryController(): {
1893
+ add: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1894
+ getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1895
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1896
+ updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1897
+ deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1898
+ updateStatusById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1899
+ };
1900
+
1901
+ declare function useJournalLineRepo(): {
1902
+ add: (value: TJournalLine, session?: ClientSession) => Promise<ObjectId>;
1903
+ getAll: (options: {
1904
+ org: ObjectId | string;
1905
+ journalEntry?: ObjectId | string;
1906
+ page?: number;
1907
+ limit?: number;
1908
+ }) => Promise<Record<string, any>>;
1909
+ getById: (_id: string | ObjectId) => Promise<TJournalLine>;
1910
+ updateById: (_id: string | ObjectId, options: Partial<TJournalLine>) => Promise<string>;
1911
+ deleteById: (_id: string | ObjectId, session?: ClientSession) => Promise<string>;
1912
+ };
1913
+
1914
+ declare function useJournalLineController(): {
1915
+ getAll: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1916
+ getById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1917
+ updateById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1918
+ deleteById: (req: Request, res: Response, next: NextFunction) => Promise<void>;
1919
+ };
1920
+
1692
1921
  declare const MONGO_URI: string;
1693
1922
  declare const MONGO_DB: string;
1694
1923
  declare const PORT: number;
@@ -1728,4 +1957,4 @@ declare const XENDIT_BASE_URL: string;
1728
1957
  declare const DOMAIN: string;
1729
1958
  declare const APP_ORG: string;
1730
1959
 
1731
- export { ACCESS_TOKEN_EXPIRY, ACCESS_TOKEN_SECRET, APP_ACCOUNT, APP_MAIN, APP_ORG, DEFAULT_JOB_STATUS_SETUP, DEFAULT_USER_EMAIL, DEFAULT_USER_FIRST_NAME, DEFAULT_USER_LAST_NAME, DEFAULT_USER_PASSWORD, DOMAIN, MAILER_EMAIL, MAILER_PASSWORD, MAILER_TRANSPORT_HOST, MAILER_TRANSPORT_PORT, MAILER_TRANSPORT_SECURE, MBuilding, MBuildingUnit, MFile, MONGO_DB, MONGO_URI, PAYPAL_API_URL, PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET, PAYPAL_WEBHOOK_ID, PORT, PaypalWebhookHeaders, REDIS_HOST, REDIS_PASSWORD, REDIS_PORT, REFRESH_TOKEN_EXPIRY, REFRESH_TOKEN_SECRET, SECRET_KEY, SPACES_ACCESS_KEY, SPACES_BUCKET, SPACES_ENDPOINT, SPACES_REGION, SPACES_SECRET_KEY, TApp, TBuilding, TBuildingUnit, TCounter, TFile, TJobApplication, TJobApplicationMetadata, TJobPost, TJobProfile, TJobProfileAward, TJobProfileCert, TJobProfileEdu, TJobProfileGroup, TJobProfileLang, TJobProfileMilitaryExp, TJobProfilePatent, TJobProfilePublication, TJobProfileSkill, TJobProfileWorkExp, TJobStatusSetup, TJobStatusTrans, TJobSummary, TJobSummaryMetadata, TLedgerBill, TMember, TOption, TOrg, TPermission, TPermissionGroup, TPlan, TPromo, TRole, TSubscribe, TSubscription, TSubscriptionTransaction, TUser, TVerification, TVerificationMetadata, VERIFICATION_FORGET_PASSWORD_DURATION, VERIFICATION_USER_INVITE_DURATION, XENDIT_BASE_URL, XENDIT_SECRET_KEY, currencies, isDev, jobApplicationStatuses, ledgerBillStatuses, ledgerBillTypes, modelApp, modelJobApplication, modelJobPost, modelJobProfile, modelJobProfileCert, modelJobProfileEdu, modelJobProfileLang, modelJobProfileSkill, modelJobProfileWorkExp, modelJobStatusSetup, modelJobStatusTrans, modelJobSummary, modelLedgerBill, modelMember, modelOption, modelOrg, modelPermission, modelPermissionGroup, modelPlan, modelPromo, modelRole, modelSubscription, modelSubscriptionTransaction, modelUser, modelVerification, schemaApp, schemaAppUpdate, schemaAward, schemaBuilding, schemaBuildingUnit, schemaCertification, schemaEducation, schemaGroup, schemaInviteMember, schemaJobApplication, schemaJobPost, schemaJobPostUpdate, schemaJobProfile, schemaJobProfileAdditionalInfo, schemaJobProfileCert, schemaJobProfileCertDel, schemaJobProfileContactInfo, schemaJobProfileEdu, schemaJobProfileEduDel, schemaJobProfileLang, schemaJobProfileLangDel, schemaJobProfilePersonalInfo, schemaJobProfileSkill, schemaJobProfileSkillDel, schemaJobProfileSummary, schemaJobProfileWorkExp, schemaJobProfileWorkExpDel, schemaJobStatusSetup, schemaJobStatusSetupUpdate, schemaJobStatusTrans, schemaJobSummary, schemaJobSummaryInc, schemaLanguage, schemaLedgerBill, schemaLedgerBillingSummary, schemaMember, schemaMemberRole, schemaMemberStatus, schemaMilitaryExp, schemaOption, schemaOrg, schemaOrgAdd, schemaOrgPilot, schemaOrgUpdate, schemaPatent, schemaPermission, schemaPermissionGroup, schemaPermissionGroupUpdate, schemaPermissionUpdate, schemaPlan, schemaPromo, schemaPublication, schemaRole, schemaRoleUpdate, schemaSkill, schemaSubscribe, schemaSubscription, schemaSubscriptionCompute, schemaSubscriptionPromoCode, schemaSubscriptionSeats, schemaSubscriptionTransaction, schemaSubscriptionUpdate, schemaUpdateOptions, schemaUser, schemaVerification, schemaVerificationOrgInvite, schemaWorkExp, transactionSchema, useAppController, useAppRepo, useAppService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useCounterModel, useCounterRepo, useFileController, useFileRepo, useFileService, useGitHubService, useJobApplicationController, useJobApplicationRepo, useJobPostController, useJobPostRepo, useJobPostService, useJobProfileCtrl, useJobProfileRepo, useJobStatusConfigController, useJobStatusConfigRepo, useJobSummaryCtrl, useJobSummaryRepo, useJobSummarySvc, useLedgerBillingController, useLedgerBillingRepo, useMemberController, useMemberRepo, useOptionCtrl, useOptionRepo, useOrgController, useOrgRepo, useOrgService, usePaypalService, usePermissionController, usePermissionGroupController, usePermissionGroupRepo, usePermissionGroupService, usePermissionRepo, usePermissionService, usePlanController, usePlanRepo, usePlanService, usePromoController, usePromoRepo, usePromoUsageRepo, useRoleController, useRoleRepo, useRoleService, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useSubscriptionTransactionController, useSubscriptionTransactionRepo, useUserController, useUserRepo, useUserService, useUtilController, useVerificationController, useVerificationRepo, useVerificationService };
1960
+ export { ACCESS_TOKEN_EXPIRY, ACCESS_TOKEN_SECRET, APP_ACCOUNT, APP_MAIN, APP_ORG, DEFAULT_JOB_STATUS_SETUP, DEFAULT_USER_EMAIL, DEFAULT_USER_FIRST_NAME, DEFAULT_USER_LAST_NAME, DEFAULT_USER_PASSWORD, DOMAIN, MAILER_EMAIL, MAILER_PASSWORD, MAILER_TRANSPORT_HOST, MAILER_TRANSPORT_PORT, MAILER_TRANSPORT_SECURE, MBuilding, MBuildingUnit, MFile, MONGO_DB, MONGO_URI, PAYPAL_API_URL, PAYPAL_CLIENT_ID, PAYPAL_CLIENT_SECRET, PAYPAL_WEBHOOK_ID, PORT, PaypalWebhookHeaders, REDIS_HOST, REDIS_PASSWORD, REDIS_PORT, REFRESH_TOKEN_EXPIRY, REFRESH_TOKEN_SECRET, SECRET_KEY, SPACES_ACCESS_KEY, SPACES_BUCKET, SPACES_ENDPOINT, SPACES_REGION, SPACES_SECRET_KEY, TApp, TBuilding, TBuildingUnit, TChartOfAccount, TChartOfAccountNormalBalance, TChartOfAccountStatus, TChartOfAccountType, TCounter, TFile, TJobApplication, TJobApplicationMetadata, TJobPost, TJobProfile, TJobProfileAward, TJobProfileCert, TJobProfileEdu, TJobProfileGroup, TJobProfileLang, TJobProfileMilitaryExp, TJobProfilePatent, TJobProfilePublication, TJobProfileSkill, TJobProfileWorkExp, TJobStatusSetup, TJobStatusTrans, TJobSummary, TJobSummaryMetadata, TJournalEntry, TJournalEntryMetadata, TJournalEntryStatus, TJournalEntryType, TJournalLine, TLedgerBill, TMember, TOption, TOrg, TPermission, TPermissionGroup, TPlan, TPromo, TRole, TSubscribe, TSubscription, TSubscriptionTransaction, TTax, TUser, TVerification, TVerificationMetadata, VERIFICATION_FORGET_PASSWORD_DURATION, VERIFICATION_USER_INVITE_DURATION, XENDIT_BASE_URL, XENDIT_SECRET_KEY, chartOfAccountNormalBalances, chartOfAccountTypes, currencies, isDev, jobApplicationStatuses, journalEntryStatuses, journalEntryTypes, ledgerBillStatuses, ledgerBillTypes, modelApp, modelChartOfAccount, modelJobApplication, modelJobPost, modelJobProfile, modelJobProfileCert, modelJobProfileEdu, modelJobProfileLang, modelJobProfileSkill, modelJobProfileWorkExp, modelJobStatusSetup, modelJobStatusTrans, modelJobSummary, modelJournalEntry, modelJournalLine, modelLedgerBill, modelMember, modelOption, modelOrg, modelPermission, modelPermissionGroup, modelPlan, modelPromo, modelRole, modelSubscription, modelSubscriptionTransaction, modelTax, modelUser, modelVerification, schemaApp, schemaAppUpdate, schemaAward, schemaBuilding, schemaBuildingUnit, schemaCertification, schemaChartOfAccountBase, schemaChartOfAccountStd, schemaChartOfAccountUpdate, schemaEducation, schemaGroup, schemaInviteMember, schemaJobApplication, schemaJobPost, schemaJobPostUpdate, schemaJobProfile, schemaJobProfileAdditionalInfo, schemaJobProfileCert, schemaJobProfileCertDel, schemaJobProfileContactInfo, schemaJobProfileEdu, schemaJobProfileEduDel, schemaJobProfileLang, schemaJobProfileLangDel, schemaJobProfilePersonalInfo, schemaJobProfileSkill, schemaJobProfileSkillDel, schemaJobProfileSummary, schemaJobProfileWorkExp, schemaJobProfileWorkExpDel, schemaJobStatusSetup, schemaJobStatusSetupUpdate, schemaJobStatusTrans, schemaJobSummary, schemaJobSummaryInc, schemaJournalEntryCtrl, schemaJournalEntryGetAll, schemaJournalEntryRepo, schemaJournalLineCtrl, schemaJournalLineRepo, schemaLanguage, schemaLedgerBill, schemaLedgerBillingSummary, schemaMember, schemaMemberRole, schemaMemberStatus, schemaMilitaryExp, schemaOption, schemaOrg, schemaOrgAdd, schemaOrgPilot, schemaOrgUpdate, schemaPatent, schemaPermission, schemaPermissionGroup, schemaPermissionGroupUpdate, schemaPermissionUpdate, schemaPlan, schemaPromo, schemaPublication, schemaRole, schemaRoleUpdate, schemaSkill, schemaSubscribe, schemaSubscription, schemaSubscriptionCompute, schemaSubscriptionPromoCode, schemaSubscriptionSeats, schemaSubscriptionTransaction, schemaSubscriptionUpdate, schemaTax, schemaTaxUpdate, schemaUpdateOptions, schemaUser, schemaVerification, schemaVerificationOrgInvite, schemaWorkExp, taxDirections, transactionSchema, useAppController, useAppRepo, useAppService, useAuthController, useAuthService, useBuildingController, useBuildingRepo, useBuildingService, useBuildingUnitController, useBuildingUnitRepo, useBuildingUnitService, useChartOfAccountController, useChartOfAccountRepo, useCounterModel, useCounterRepo, useFileController, useFileRepo, useFileService, useGitHubService, useJobApplicationController, useJobApplicationRepo, useJobPostController, useJobPostRepo, useJobPostService, useJobProfileCtrl, useJobProfileRepo, useJobStatusConfigController, useJobStatusConfigRepo, useJobSummaryCtrl, useJobSummaryRepo, useJobSummarySvc, useJournalEntryController, useJournalEntryRepo, useJournalEntryService, useJournalLineController, useJournalLineRepo, useLedgerBillingController, useLedgerBillingRepo, useMemberController, useMemberRepo, useOptionCtrl, useOptionRepo, useOrgController, useOrgRepo, useOrgService, usePaypalService, usePermissionController, usePermissionGroupController, usePermissionGroupRepo, usePermissionGroupService, usePermissionRepo, usePermissionService, usePlanController, usePlanRepo, usePlanService, usePromoController, usePromoRepo, usePromoUsageRepo, useRoleController, useRoleRepo, useRoleService, useSubscriptionController, useSubscriptionRepo, useSubscriptionService, useSubscriptionTransactionController, useSubscriptionTransactionRepo, useTaxController, useTaxRepo, useUserController, useUserRepo, useUserService, useUtilController, useVerificationController, useVerificationRepo, useVerificationService };