@erp-galoper/types 1.0.1648 → 1.0.1649

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.
Files changed (2) hide show
  1. package/openapi.ts +10 -0
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -19055,6 +19055,7 @@ export interface paths {
19055
19055
  * - prepaidExpenseDoesNotExist
19056
19056
  * - deferredExpenseShouldBeInCompanyCurrency
19057
19057
  * - prepaidExpenseShouldBeInCompanyCurrency
19058
+ * - onlinePaymentsAccountDoesNotExist
19058
19059
  */
19059
19060
  post: operations["erp_settings_accountingsetting_views_create_default_subsidiary_account"];
19060
19061
  delete?: never;
@@ -55622,6 +55623,8 @@ export interface components {
55622
55623
  negativeEarningAccount: components["schemas"]["AccountSummaryInfo"] | null;
55623
55624
  positiveCumulativeEarningAccount: components["schemas"]["AccountSummaryInfo"] | null;
55624
55625
  negativeCumulativeEarningAccount: components["schemas"]["AccountSummaryInfo"] | null;
55626
+ /** @description visible when online store is enabled in galoper settings */
55627
+ onlinePaymentsAccount: components["schemas"]["AccountSummaryInfo"] | null;
55625
55628
  };
55626
55629
  /** DefaultSubsidiaryAccountResponse */
55627
55630
  DefaultSubsidiaryAccountResponse: {
@@ -55683,6 +55686,13 @@ export interface components {
55683
55686
  * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=defaultSubsidiaryAccounts&isActive=True
55684
55687
  */
55685
55688
  negativeCumulativeEarningAccount?: number;
55689
+ /**
55690
+ * Onlinepaymentsaccount
55691
+ * @description - online payments account id
55692
+ * - visible when online store is enabled in galoper settings
55693
+ * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=detail&isActive=True
55694
+ */
55695
+ onlinePaymentsAccount?: number;
55686
55696
  };
55687
55697
  /**
55688
55698
  * SalesCreditNoteAppliesOn
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1648",
3
+ "version": "1.0.1649",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],