@erp-galoper/types 1.0.66 → 1.0.67
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 +23 -5
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26450,7 +26450,7 @@ export interface components {
|
|
|
26450
26450
|
/**
|
|
26451
26451
|
* Id
|
|
26452
26452
|
* Format: uuid
|
|
26453
|
-
* @example
|
|
26453
|
+
* @example 85aa07b8-8edb-4577-934b-655b87bed1c5
|
|
26454
26454
|
*/
|
|
26455
26455
|
id: string;
|
|
26456
26456
|
/**
|
|
@@ -31826,9 +31826,9 @@ export interface components {
|
|
|
31826
31826
|
/** Supplier */
|
|
31827
31827
|
supplier: number;
|
|
31828
31828
|
/** Companyrate */
|
|
31829
|
-
companyRate
|
|
31829
|
+
companyRate?: number;
|
|
31830
31830
|
/** Usdrate */
|
|
31831
|
-
usdRate
|
|
31831
|
+
usdRate?: number;
|
|
31832
31832
|
/** Items */
|
|
31833
31833
|
items: components["schemas"]["CalculatePurchaseReturnOrderItemsSchema"][];
|
|
31834
31834
|
};
|
|
@@ -33267,9 +33267,9 @@ export interface components {
|
|
|
33267
33267
|
/** Supplier */
|
|
33268
33268
|
supplier: number;
|
|
33269
33269
|
/** Companyrate */
|
|
33270
|
-
companyRate
|
|
33270
|
+
companyRate?: number;
|
|
33271
33271
|
/** Usdrate */
|
|
33272
|
-
usdRate
|
|
33272
|
+
usdRate?: number;
|
|
33273
33273
|
/** Items */
|
|
33274
33274
|
items: components["schemas"]["CalculatePurchaseReturnInvoiceItemsSchema"][];
|
|
33275
33275
|
};
|
|
@@ -64876,6 +64876,15 @@ export interface operations {
|
|
|
64876
64876
|
"application/json": components["schemas"]["ReturnPurchaseOrderTotalCalculationResponse"];
|
|
64877
64877
|
};
|
|
64878
64878
|
};
|
|
64879
|
+
/** @description Bad Request */
|
|
64880
|
+
400: {
|
|
64881
|
+
headers: {
|
|
64882
|
+
[name: string]: unknown;
|
|
64883
|
+
};
|
|
64884
|
+
content: {
|
|
64885
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
64886
|
+
};
|
|
64887
|
+
};
|
|
64879
64888
|
/** @description Internal Server Error */
|
|
64880
64889
|
500: {
|
|
64881
64890
|
headers: {
|
|
@@ -66834,6 +66843,15 @@ export interface operations {
|
|
|
66834
66843
|
"application/json": components["schemas"]["ReturnPurchaseInvoiceTotalCalculationResponse"];
|
|
66835
66844
|
};
|
|
66836
66845
|
};
|
|
66846
|
+
/** @description Bad Request */
|
|
66847
|
+
400: {
|
|
66848
|
+
headers: {
|
|
66849
|
+
[name: string]: unknown;
|
|
66850
|
+
};
|
|
66851
|
+
content: {
|
|
66852
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
66853
|
+
};
|
|
66854
|
+
};
|
|
66837
66855
|
/** @description Internal Server Error */
|
|
66838
66856
|
500: {
|
|
66839
66857
|
headers: {
|