@things-factory/accounting 10.0.0-beta.2 → 10.0.0-beta.21

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.
@@ -1 +1,2 @@
1
- export declare function initMiddlewares(app: any): void;
1
+ import Koa from 'koa';
2
+ export declare function initMiddlewares(_app: Koa): void;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.initMiddlewares = initMiddlewares;
4
- function initMiddlewares(app) {
4
+ function initMiddlewares(_app) {
5
5
  /* can add middlewares into app */
6
6
  }
7
7
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/middlewares/index.ts"],"names":[],"mappings":";;AAAA,0CAEC;AAFD,SAAgB,eAAe,CAAC,GAAG;IACjC,kCAAkC;AACpC,CAAC","sourcesContent":["export function initMiddlewares(app) {\n /* can add middlewares into app */\n}\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/middlewares/index.ts"],"names":[],"mappings":";;AAEA,0CAEC;AAFD,SAAgB,eAAe,CAAC,IAAS;IACvC,kCAAkC;AACpC,CAAC","sourcesContent":["import Koa from 'koa'\n\nexport function initMiddlewares(_app: Koa) {\n /* can add middlewares into app */\n}\n"]}
@@ -3,6 +3,6 @@ import { FinancialStatementLineItem } from './financial-statement-line-item';
3
3
  import { FinancialStatementQuery } from './financial-statement-query';
4
4
  import { FinancialStatementMutation } from './financial-statement-mutation';
5
5
  import { FinancialStatementHistoryEntitySubscriber } from './event-subscriber';
6
- export declare const entities: (typeof FinancialStatement | typeof FinancialStatementLineItem)[];
6
+ export declare const entities: (typeof FinancialStatementLineItem | typeof FinancialStatement)[];
7
7
  export declare const resolvers: (typeof FinancialStatementQuery | typeof FinancialStatementMutation)[];
8
8
  export declare const subscribers: (typeof FinancialStatementHistoryEntitySubscriber)[];
@@ -3,6 +3,6 @@ import { IncomeStatementLineItem } from './income-statement-line-item';
3
3
  import { IncomeStatementQuery } from './income-statement-query';
4
4
  import { IncomeStatementMutation } from './income-statement-mutation';
5
5
  import { IncomeStatementHistoryEntitySubscriber } from './event-subscriber';
6
- export declare const entities: (typeof IncomeStatement | typeof IncomeStatementLineItem)[];
6
+ export declare const entities: (typeof IncomeStatementLineItem | typeof IncomeStatement)[];
7
7
  export declare const resolvers: (typeof IncomeStatementQuery | typeof IncomeStatementMutation)[];
8
8
  export declare const subscribers: (typeof IncomeStatementHistoryEntitySubscriber)[];
@@ -9,7 +9,7 @@ export * from './accounting-document/accounting-document';
9
9
  export * from './fiscal-month/fiscal-month';
10
10
  export * from './fiscal-quarter/fiscal-quarter';
11
11
  export * from './fiscal-year/fiscal-year';
12
- export declare const entities: (typeof import("./accounting-document/accounting-document").AccountingDocument | typeof import("./account/account").Account | typeof import("./payment/payment").Payment | typeof import("./bank-account/bank-account").BankAccount | typeof import("./transaction/transaction").Transaction | typeof import("./transaction/transaction-history").TransactionHistory | typeof import("./accounting-category/accounting-category").AccountingCategory | typeof import("./financial-statement/financial-statement").FinancialStatement | typeof import("./income-statement/income-statement").IncomeStatement | typeof import("./financial-statement/financial-statement-line-item").FinancialStatementLineItem | typeof import("./income-statement/income-statement-line-item").IncomeStatementLineItem | typeof import("./fiscal-year/fiscal-year").FiscalYear)[];
12
+ export declare const entities: (typeof import("./accounting-category/accounting-category").AccountingCategory | typeof import("./account/account").Account | typeof import("./financial-statement/financial-statement-line-item").FinancialStatementLineItem | typeof import("./financial-statement/financial-statement").FinancialStatement | typeof import("./income-statement/income-statement-line-item").IncomeStatementLineItem | typeof import("./income-statement/income-statement").IncomeStatement | typeof import("./bank-account/bank-account").BankAccount | typeof import("./payment/payment").Payment | typeof import("./transaction/transaction").Transaction | typeof import("./accounting-document/accounting-document").AccountingDocument | typeof import("./fiscal-year/fiscal-year").FiscalYear | typeof import("./transaction/transaction-history").TransactionHistory)[];
13
13
  export declare const subscribers: any[];
14
14
  export declare const schema: {
15
15
  resolverClasses: (typeof import("./income-statement/income-statement-query").IncomeStatementQuery | typeof import("./income-statement/income-statement-mutation").IncomeStatementMutation | typeof import("./financial-statement/financial-statement-query").FinancialStatementQuery | typeof import("./financial-statement/financial-statement-mutation").FinancialStatementMutation | typeof import("./accounting-category/accounting-category-query").AccountingCategoryQuery | typeof import("./accounting-category/accounting-category-mutation").AccountingCategoryMutation | typeof import("./transaction/transaction-query").TransactionQuery | typeof import("./transaction/transaction-mutation").TransactionMutation | typeof import("./bank-account/bank-account-query").BankAccountQuery | typeof import("./bank-account/bank-account-mutation").BankAccountMutation | typeof import("./payment/payment-query").PaymentQuery | typeof import("./payment/payment-mutation").PaymentMutation | typeof import("./account/account-query").AccountQuery | typeof import("./account/account-mutation").AccountMutation | typeof import("./accounting-document/accounting-document-query").AccountingDocumentQuery | typeof import("./accounting-document/accounting-document-mutation").AccountingDocumentMutation | typeof import("./fiscal-month/fiscal-month-query").FiscalMonthQuery | typeof import("./fiscal-month/fiscal-month-mutation").FiscalMonthMutation | typeof import("./fiscal-quarter/fiscal-quarter-query").FiscalQuarterQuery | typeof import("./fiscal-quarter/fiscal-quarter-mutation").FiscalQuarterMutation | typeof import("./fiscal-year/fiscal-year-query").FiscalYearQuery | typeof import("./fiscal-year/fiscal-year-mutation").FiscalYearMutation)[];