@erp-galoper/types 1.0.31 → 1.0.33
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 +11 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26115,7 +26115,7 @@ export interface components {
|
|
|
26115
26115
|
/**
|
|
26116
26116
|
* Id
|
|
26117
26117
|
* Format: uuid
|
|
26118
|
-
* @example
|
|
26118
|
+
* @example e3434492-39c2-4f5e-a643-bc5b6714c776
|
|
26119
26119
|
*/
|
|
26120
26120
|
id: string;
|
|
26121
26121
|
/**
|
|
@@ -33970,6 +33970,10 @@ export interface components {
|
|
|
33970
33970
|
* @default []
|
|
33971
33971
|
*/
|
|
33972
33972
|
banks: components["schemas"]["BankAccountsSharedSchema"][];
|
|
33973
|
+
/** Isactive */
|
|
33974
|
+
isActive: boolean;
|
|
33975
|
+
/** Candelete */
|
|
33976
|
+
canDelete: boolean;
|
|
33973
33977
|
};
|
|
33974
33978
|
/** EmployeePositionSummaryInfo */
|
|
33975
33979
|
EmployeePositionSummaryInfo: {
|
|
@@ -34109,6 +34113,8 @@ export interface components {
|
|
|
34109
34113
|
currencies: number[];
|
|
34110
34114
|
/** Banks */
|
|
34111
34115
|
banks?: components["schemas"]["UpdateBankAccountsSchema"][];
|
|
34116
|
+
/** Isactive */
|
|
34117
|
+
isActive: boolean;
|
|
34112
34118
|
};
|
|
34113
34119
|
/** ListPaidPartiallyPaidClosedCommissionResponseSchema */
|
|
34114
34120
|
ListPaidPartiallyPaidClosedCommissionResponseSchema: {
|
|
@@ -35371,6 +35377,8 @@ export interface components {
|
|
|
35371
35377
|
description: string | null;
|
|
35372
35378
|
/** Notes */
|
|
35373
35379
|
notes: string | null;
|
|
35380
|
+
/** Candelete */
|
|
35381
|
+
canDelete: boolean;
|
|
35374
35382
|
/** Items */
|
|
35375
35383
|
items: components["schemas"]["SalesPriceListItemSchema"][];
|
|
35376
35384
|
};
|
|
@@ -35579,6 +35587,8 @@ export interface components {
|
|
|
35579
35587
|
description: string | null;
|
|
35580
35588
|
/** Notes */
|
|
35581
35589
|
notes: string | null;
|
|
35590
|
+
/** Candelete */
|
|
35591
|
+
canDelete: boolean;
|
|
35582
35592
|
};
|
|
35583
35593
|
/** ListPackageTypeSchema */
|
|
35584
35594
|
ListPackageTypeSchema: {
|