@erp-galoper/types 1.0.1398 → 1.0.1400
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 +42 -8
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -1194,10 +1194,12 @@ export interface paths {
|
|
|
1194
1194
|
* - branchSettingsUpdated
|
|
1195
1195
|
* - 400:
|
|
1196
1196
|
* - branchConflict
|
|
1197
|
-
*
|
|
1198
|
-
*
|
|
1199
|
-
*
|
|
1200
|
-
*
|
|
1197
|
+
* For Fields storeSafeCash / cashShortageExpense / cashOverageIncome / overageSuspenseAccount / shortageSuspenseAccount / otherRevenueAccount
|
|
1198
|
+
* - IsRequiredWhenPOSEnabled
|
|
1199
|
+
* - ShouldBeInCompanyOrSecondaryCurrency
|
|
1200
|
+
* - ShouldBeSubsidiaryAccount
|
|
1201
|
+
* For Fields storeSafeCash
|
|
1202
|
+
* - ShouldBeCashAccount
|
|
1201
1203
|
* - 404:
|
|
1202
1204
|
* - branchSettingsDoesNotExist
|
|
1203
1205
|
* - 403:
|
|
@@ -1216,10 +1218,12 @@ export interface paths {
|
|
|
1216
1218
|
* - branchSettingsCreated
|
|
1217
1219
|
* - 400:
|
|
1218
1220
|
* - branchConflict
|
|
1219
|
-
*
|
|
1220
|
-
*
|
|
1221
|
-
*
|
|
1222
|
-
*
|
|
1221
|
+
* For Fields storeSafeCash / cashShortageExpense / cashOverageIncome / overageSuspenseAccount / shortageSuspenseAccount / otherRevenueAccount
|
|
1222
|
+
* - IsRequiredWhenPOSEnabled
|
|
1223
|
+
* - ShouldBeInCompanyOrSecondaryCurrency
|
|
1224
|
+
* - ShouldBeSubsidiaryAccount
|
|
1225
|
+
* For Fields storeSafeCash
|
|
1226
|
+
* - ShouldBeCashAccount
|
|
1223
1227
|
* - 403:
|
|
1224
1228
|
* - permissionDenied
|
|
1225
1229
|
* - 500:
|
|
@@ -27840,6 +27844,11 @@ export interface components {
|
|
|
27840
27844
|
id: number;
|
|
27841
27845
|
branch: components["schemas"]["BranchSummaryInfo"];
|
|
27842
27846
|
storeSafeCash: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27847
|
+
cashShortageExpense: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27848
|
+
cashOverageIncome: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27849
|
+
overageSuspenseAccount: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27850
|
+
shortageSuspenseAccount: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27851
|
+
otherRevenueAccount: components["schemas"]["AccountSummaryInfo"] | null;
|
|
27843
27852
|
};
|
|
27844
27853
|
/** BranchSettingsResponseSchema */
|
|
27845
27854
|
BranchSettingsResponseSchema: {
|
|
@@ -27856,6 +27865,31 @@ export interface components {
|
|
|
27856
27865
|
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=cash
|
|
27857
27866
|
*/
|
|
27858
27867
|
storeSafeCash?: number;
|
|
27868
|
+
/**
|
|
27869
|
+
* Cashshortageexpense
|
|
27870
|
+
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=cash
|
|
27871
|
+
*/
|
|
27872
|
+
cashShortageExpense?: number;
|
|
27873
|
+
/**
|
|
27874
|
+
* Cashoverageincome
|
|
27875
|
+
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=cash
|
|
27876
|
+
*/
|
|
27877
|
+
cashOverageIncome?: number;
|
|
27878
|
+
/**
|
|
27879
|
+
* Overagesuspenseaccount
|
|
27880
|
+
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=detail
|
|
27881
|
+
*/
|
|
27882
|
+
overageSuspenseAccount?: number;
|
|
27883
|
+
/**
|
|
27884
|
+
* Shortagesuspenseaccount
|
|
27885
|
+
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=detail
|
|
27886
|
+
*/
|
|
27887
|
+
shortageSuspenseAccount?: number;
|
|
27888
|
+
/**
|
|
27889
|
+
* Otherrevenueaccount
|
|
27890
|
+
* @description required when pos module is on, get accounts using /api/v1/chart_of_account/?branchId={branch-id}&type=detail
|
|
27891
|
+
*/
|
|
27892
|
+
otherRevenueAccount?: number;
|
|
27859
27893
|
};
|
|
27860
27894
|
/** WarehouseSchema */
|
|
27861
27895
|
WarehouseSchema: {
|