@erp-galoper/types 1.0.101 → 1.0.103
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 +15 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -16425,6 +16425,7 @@ export interface paths {
|
|
|
16425
16425
|
* Responses:
|
|
16426
16426
|
* - 200: SalesReturnOrderTotalCalculationResponse
|
|
16427
16427
|
* - 400: - "salesInvoiceItemDoesNotExist"
|
|
16428
|
+
* - customerDoesNotExist
|
|
16428
16429
|
* - "calculationError"
|
|
16429
16430
|
* - 500: "internalServerError"
|
|
16430
16431
|
*/
|
|
@@ -16659,6 +16660,7 @@ export interface paths {
|
|
|
16659
16660
|
* Responses:
|
|
16660
16661
|
* - 200: SalesReturnInvoiceTotalCalculationResponse
|
|
16661
16662
|
* - 400: - "salesInvoiceItemDoesNotExist"
|
|
16663
|
+
* - customerDoesNotExist
|
|
16662
16664
|
* - "calculationError"
|
|
16663
16665
|
* - 500: "internalServerError"
|
|
16664
16666
|
*/
|
|
@@ -26481,7 +26483,7 @@ export interface components {
|
|
|
26481
26483
|
/**
|
|
26482
26484
|
* Id
|
|
26483
26485
|
* Format: uuid
|
|
26484
|
-
* @example
|
|
26486
|
+
* @example cace6a38-012f-46a0-8abc-278e730c25c2
|
|
26485
26487
|
*/
|
|
26486
26488
|
id: string;
|
|
26487
26489
|
/**
|
|
@@ -40769,6 +40771,8 @@ export interface components {
|
|
|
40769
40771
|
canDelete: boolean;
|
|
40770
40772
|
/** Canconvert */
|
|
40771
40773
|
canConvert: boolean;
|
|
40774
|
+
/** @description visible when customer is not resident */
|
|
40775
|
+
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
40772
40776
|
/**
|
|
40773
40777
|
* Items
|
|
40774
40778
|
* @default []
|
|
@@ -40928,6 +40932,8 @@ export interface components {
|
|
|
40928
40932
|
canDelete: boolean;
|
|
40929
40933
|
/** Canconvert */
|
|
40930
40934
|
canConvert: boolean;
|
|
40935
|
+
/** @description visible when customer is not resident */
|
|
40936
|
+
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
40931
40937
|
};
|
|
40932
40938
|
/** SalesReturnOrderItemTotalCalculated */
|
|
40933
40939
|
SalesReturnOrderItemTotalCalculated: {
|
|
@@ -40960,6 +40966,8 @@ export interface components {
|
|
|
40960
40966
|
secondaryTotal: string;
|
|
40961
40967
|
/** Companytotal */
|
|
40962
40968
|
companyTotal?: string | null;
|
|
40969
|
+
/** @description visible when customer is not resident */
|
|
40970
|
+
tax?: components["schemas"]["TaxSharedSchema"];
|
|
40963
40971
|
/** Items */
|
|
40964
40972
|
items: components["schemas"]["SalesReturnOrderItemTotalCalculated"][];
|
|
40965
40973
|
};
|
|
@@ -41129,6 +41137,8 @@ export interface components {
|
|
|
41129
41137
|
companyTotal: string;
|
|
41130
41138
|
/** Candelete */
|
|
41131
41139
|
canDelete: boolean;
|
|
41140
|
+
/** @description visible when customer is not resident */
|
|
41141
|
+
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
41132
41142
|
/**
|
|
41133
41143
|
* Items
|
|
41134
41144
|
* @default []
|
|
@@ -41286,6 +41296,8 @@ export interface components {
|
|
|
41286
41296
|
companyTotal: string;
|
|
41287
41297
|
/** Candelete */
|
|
41288
41298
|
canDelete: boolean;
|
|
41299
|
+
/** @description visible when customer is not resident */
|
|
41300
|
+
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
41289
41301
|
};
|
|
41290
41302
|
/** SalesReturnInvoiceItemTotalCalculated */
|
|
41291
41303
|
SalesReturnInvoiceItemTotalCalculated: {
|
|
@@ -41318,6 +41330,8 @@ export interface components {
|
|
|
41318
41330
|
secondaryTotal: string;
|
|
41319
41331
|
/** Companytotal */
|
|
41320
41332
|
companyTotal?: string | null;
|
|
41333
|
+
/** @description visible when customer is not resident */
|
|
41334
|
+
tax?: components["schemas"]["TaxSharedSchema"];
|
|
41321
41335
|
/** Items */
|
|
41322
41336
|
items: components["schemas"]["SalesReturnInvoiceItemTotalCalculated"][];
|
|
41323
41337
|
};
|