@erp-galoper/types 1.0.279 → 1.0.280
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/openapi.ts +22 -4
- 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
|
|
26648
|
+
* @example ef93c70f-fe25-4625-88a5-e6e9fafffa59
|
|
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
|
-
/**
|
|
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
|
-
/**
|
|
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
|
/**
|