@erp-galoper/types 1.0.279 → 1.0.281

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 +22 -4
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -26645,7 +26645,7 @@ export interface components {
26645
26645
  /**
26646
26646
  * Id
26647
26647
  * Format: uuid
26648
- * @example d4886c63-e113-465d-be05-93f31c5cdd48
26648
+ * @example 9452bb4f-0d88-432d-bf4c-10c99035a174
26649
26649
  */
26650
26650
  id: string;
26651
26651
  /**
@@ -43357,7 +43357,9 @@ export interface components {
43357
43357
  DefaultSubsidiaryAccountDetailSchema: {
43358
43358
  differenceOfExchangeNegative: components["schemas"]["AccountSummaryInfo"];
43359
43359
  differenceOfExchangePositive: components["schemas"]["AccountSummaryInfo"];
43360
+ /** @description visible when commission module is on */
43360
43361
  salesCommissionExpense: components["schemas"]["AccountSummaryInfo"] | null;
43362
+ /** @description visible when commission module is on */
43361
43363
  salesCommissionAllowanceExpense: components["schemas"]["AccountSummaryInfo"] | null;
43362
43364
  };
43363
43365
  /** DefaultSubsidiaryAccountResponse */
@@ -43372,17 +43374,33 @@ export interface components {
43372
43374
  DefaultSubsidiaryAccountSchema: {
43373
43375
  /**
43374
43376
  * Differenceofexchangenegative
43375
- * @description Difference of exchange negative id
43377
+ * @description Difference of exchange negative id,
43378
+ * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=differenceOfExchangeNegative
43379
+ *
43376
43380
  */
43377
43381
  differenceOfExchangeNegative: number;
43378
43382
  /**
43379
43383
  * Differenceofexchangepositive
43380
43384
  * @description Difference of exchange positive id
43385
+ * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=differenceOfExchangePositive
43386
+ *
43381
43387
  */
43382
43388
  differenceOfExchangePositive: number;
43383
- /** Salescommissionexpense */
43389
+ /**
43390
+ * Salescommissionexpense
43391
+ * @description sales commission expense id
43392
+ * - visible when commission module is on
43393
+ * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=salesCommissionExpense
43394
+ *
43395
+ */
43384
43396
  salesCommissionExpense?: number;
43385
- /** Salescommissionallowanceexpense */
43397
+ /**
43398
+ * Salescommissionallowanceexpense
43399
+ * @description sales commission allowance expense id
43400
+ * - visible when commission module is on
43401
+ * - get accounts from route /api/v1/chart_of_account/?branchId={branch-id}&type=salesCommissionAllowanceExpense
43402
+ *
43403
+ */
43386
43404
  salesCommissionAllowanceExpense?: number;
43387
43405
  };
43388
43406
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.279",
3
+ "version": "1.0.281",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],