@erp-galoper/types 1.0.621 → 1.0.622
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 +12 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16574,6 +16574,7 @@ export interface paths {
|
|
|
16574
16574
|
* - "salesInvoiceItemDoesNotExist"
|
|
16575
16575
|
* - "salesReturnOrderShouldBeDraft"
|
|
16576
16576
|
* - cannotReturnDeferredInvoice
|
|
16577
|
+
* - projectDoesNotExist
|
|
16577
16578
|
* - 403: - "permissionDenied"
|
|
16578
16579
|
* - "noModuleAccess"
|
|
16579
16580
|
* - "noBranchAccess"
|
|
@@ -27575,7 +27576,7 @@ export interface components {
|
|
|
27575
27576
|
/**
|
|
27576
27577
|
* Id
|
|
27577
27578
|
* Format: uuid
|
|
27578
|
-
* @example
|
|
27579
|
+
* @example a41247db-8d51-400f-a844-55ad5a2b3601
|
|
27579
27580
|
*/
|
|
27580
27581
|
id: string;
|
|
27581
27582
|
/**
|
|
@@ -44141,8 +44142,6 @@ export interface components {
|
|
|
44141
44142
|
* @default 0
|
|
44142
44143
|
*/
|
|
44143
44144
|
companyTotal: string;
|
|
44144
|
-
/** @description visible when project module is active */
|
|
44145
|
-
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
44146
44145
|
};
|
|
44147
44146
|
/** SalesReturnOrderSchema */
|
|
44148
44147
|
SalesReturnOrderSchema: {
|
|
@@ -44216,6 +44215,8 @@ export interface components {
|
|
|
44216
44215
|
canConvert: boolean;
|
|
44217
44216
|
/** @description visible when customer is not resident */
|
|
44218
44217
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
44218
|
+
/** @description visible when project module is active */
|
|
44219
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
44219
44220
|
/**
|
|
44220
44221
|
* Items
|
|
44221
44222
|
* @default []
|
|
@@ -44257,6 +44258,11 @@ export interface components {
|
|
|
44257
44258
|
customer?: number;
|
|
44258
44259
|
/** Password */
|
|
44259
44260
|
password: string | null;
|
|
44261
|
+
/**
|
|
44262
|
+
* Project
|
|
44263
|
+
* @description project id, visible when project module is active, get projects from /api/v1/projects/?branchId={branch-id}/
|
|
44264
|
+
*/
|
|
44265
|
+
project?: number;
|
|
44260
44266
|
/**
|
|
44261
44267
|
* Date
|
|
44262
44268
|
* Format: date
|
|
@@ -44401,6 +44407,8 @@ export interface components {
|
|
|
44401
44407
|
canConvert: boolean;
|
|
44402
44408
|
/** @description visible when customer is not resident */
|
|
44403
44409
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
44410
|
+
/** @description visible when project module is active */
|
|
44411
|
+
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
44404
44412
|
};
|
|
44405
44413
|
/** SalesReturnOrderItemTotalCalculated */
|
|
44406
44414
|
SalesReturnOrderItemTotalCalculated: {
|
|
@@ -44448,6 +44456,7 @@ export interface components {
|
|
|
44448
44456
|
};
|
|
44449
44457
|
/** CalculateSalesReturnOrderItemsSchema */
|
|
44450
44458
|
CalculateSalesReturnOrderItemsSchema: {
|
|
44459
|
+
/** @description sales invoices should be filtered by selected project */
|
|
44451
44460
|
salesInvoice: components["schemas"]["SalesInvoiceForReturnOrderCreateSchema"];
|
|
44452
44461
|
/**
|
|
44453
44462
|
* Quantity
|