@erp-galoper/types 1.0.220 → 1.0.221
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 +10 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26504,7 +26504,7 @@ export interface components {
|
|
|
26504
26504
|
/**
|
|
26505
26505
|
* Id
|
|
26506
26506
|
* Format: uuid
|
|
26507
|
-
* @example
|
|
26507
|
+
* @example 6640fd8b-706a-4265-8c2d-aad076cb7be6
|
|
26508
26508
|
*/
|
|
26509
26509
|
id: string;
|
|
26510
26510
|
/**
|
|
@@ -40877,7 +40877,7 @@ export interface components {
|
|
|
40877
40877
|
*/
|
|
40878
40878
|
companyTotal: string;
|
|
40879
40879
|
/** Quantityreturned */
|
|
40880
|
-
quantityReturned
|
|
40880
|
+
quantityReturned?: number;
|
|
40881
40881
|
/**
|
|
40882
40882
|
* Quantitydelivered
|
|
40883
40883
|
* @description Only show in case of delivery note source is sales invoice
|
|
@@ -41342,6 +41342,11 @@ export interface components {
|
|
|
41342
41342
|
/** Results */
|
|
41343
41343
|
results: components["schemas"]["SalesInvoiceSchema"][];
|
|
41344
41344
|
};
|
|
41345
|
+
/**
|
|
41346
|
+
* SalesInvoiceItemTypeSchema
|
|
41347
|
+
* @enum {string}
|
|
41348
|
+
*/
|
|
41349
|
+
SalesInvoiceItemTypeSchema: "default" | "salesCreditNote";
|
|
41345
41350
|
/** SalesInvoiceForReturnOrderSchema */
|
|
41346
41351
|
SalesInvoiceForReturnOrderSchema: {
|
|
41347
41352
|
/**
|
|
@@ -76901,7 +76906,9 @@ export interface operations {
|
|
|
76901
76906
|
};
|
|
76902
76907
|
sales_invoice_views_get_sales_invoice: {
|
|
76903
76908
|
parameters: {
|
|
76904
|
-
query?:
|
|
76909
|
+
query?: {
|
|
76910
|
+
type?: "default" | "salesCreditNote";
|
|
76911
|
+
};
|
|
76905
76912
|
header?: never;
|
|
76906
76913
|
path: {
|
|
76907
76914
|
id: string;
|