@erp-galoper/main-package 1.0.266 → 1.0.268
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 +40 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -9100,6 +9100,11 @@ export interface components {
|
|
|
9100
9100
|
* @default []
|
|
9101
9101
|
*/
|
|
9102
9102
|
accounting: components["schemas"]["BasePermissionsSchema_Report_Accounting"];
|
|
9103
|
+
/**
|
|
9104
|
+
* @description inventory actions
|
|
9105
|
+
* @default []
|
|
9106
|
+
*/
|
|
9107
|
+
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
|
9103
9108
|
/**
|
|
9104
9109
|
* @description supplier actions
|
|
9105
9110
|
* @default []
|
|
@@ -9120,11 +9125,6 @@ export interface components {
|
|
|
9120
9125
|
* @default []
|
|
9121
9126
|
*/
|
|
9122
9127
|
project: components["schemas"]["BasePermissionsSchema_Report_Project"];
|
|
9123
|
-
/**
|
|
9124
|
-
* @description inventory actions
|
|
9125
|
-
* @default []
|
|
9126
|
-
*/
|
|
9127
|
-
inventory: components["schemas"]["BasePermissionsSchema_Report_Inventory"];
|
|
9128
9128
|
};
|
|
9129
9129
|
/** BasePermissionsSchema_Report_Accounting */
|
|
9130
9130
|
BasePermissionsSchema_Report_Accounting: {
|
|
@@ -9236,8 +9236,13 @@ export interface components {
|
|
|
9236
9236
|
* @description stockreport actions
|
|
9237
9237
|
* @default []
|
|
9238
9238
|
*/
|
|
9239
|
-
stockreport:
|
|
9239
|
+
stockreport: components["schemas"]["BasePermissionsSchema_Report_Inventory_StockreportEnum"][];
|
|
9240
9240
|
};
|
|
9241
|
+
/**
|
|
9242
|
+
* BasePermissionsSchema_Report_Inventory_StockreportEnum
|
|
9243
|
+
* @constant
|
|
9244
|
+
*/
|
|
9245
|
+
BasePermissionsSchema_Report_Inventory_StockreportEnum: "view";
|
|
9241
9246
|
/** BasePermissionsSchema_Report_Project */
|
|
9242
9247
|
BasePermissionsSchema_Report_Project: {
|
|
9243
9248
|
/**
|
|
@@ -15141,6 +15146,7 @@ export interface components {
|
|
|
15141
15146
|
info: components["schemas"]["PageInfoSchema"];
|
|
15142
15147
|
/** Results */
|
|
15143
15148
|
results: components["schemas"]["GeneralLedgerSchema"][];
|
|
15149
|
+
totals: components["schemas"]["GeneralLedgerTotals"];
|
|
15144
15150
|
};
|
|
15145
15151
|
/** GeneralLedgerSchema */
|
|
15146
15152
|
GeneralLedgerSchema: {
|
|
@@ -15172,6 +15178,33 @@ export interface components {
|
|
|
15172
15178
|
/** Transactions */
|
|
15173
15179
|
transactions: components["schemas"]["TransactionsSchema"][];
|
|
15174
15180
|
};
|
|
15181
|
+
/** GeneralLedgerTotals */
|
|
15182
|
+
GeneralLedgerTotals: {
|
|
15183
|
+
/** Totaldebit */
|
|
15184
|
+
totalDebit: number;
|
|
15185
|
+
/** Totalcredit */
|
|
15186
|
+
totalCredit: number;
|
|
15187
|
+
/** Totalbalance */
|
|
15188
|
+
totalBalance: number;
|
|
15189
|
+
/** Totalcompanydebit */
|
|
15190
|
+
totalCompanyDebit: number;
|
|
15191
|
+
/** Totalcompanycredit */
|
|
15192
|
+
totalCompanyCredit: number;
|
|
15193
|
+
/** Totalcompanybalance */
|
|
15194
|
+
totalCompanyBalance: number;
|
|
15195
|
+
/** Totalusddebit */
|
|
15196
|
+
totalUsdDebit: number;
|
|
15197
|
+
/** Totalusdcredit */
|
|
15198
|
+
totalUsdCredit: number;
|
|
15199
|
+
/** Totalusdbalance */
|
|
15200
|
+
totalUsdBalance: number;
|
|
15201
|
+
/** Initialbalance */
|
|
15202
|
+
initialBalance: number;
|
|
15203
|
+
/** Initialbalancecompany */
|
|
15204
|
+
initialBalanceCompany: number;
|
|
15205
|
+
/** Initialbalanceusd */
|
|
15206
|
+
initialBalanceUsd: number;
|
|
15207
|
+
};
|
|
15175
15208
|
/** TransactionsSchema */
|
|
15176
15209
|
TransactionsSchema: {
|
|
15177
15210
|
/**
|
|
@@ -15930,7 +15963,7 @@ export interface components {
|
|
|
15930
15963
|
/**
|
|
15931
15964
|
* Id
|
|
15932
15965
|
* Format: uuid
|
|
15933
|
-
* @example
|
|
15966
|
+
* @example 3e32551a-53a5-4b4b-a68a-54b4f52871b7
|
|
15934
15967
|
*/
|
|
15935
15968
|
id: string;
|
|
15936
15969
|
/**
|
package/package.json
CHANGED