@erp-galoper/types 1.0.1697 → 1.0.1699
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 +77 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -11031,6 +11031,23 @@ export interface paths {
|
|
|
11031
11031
|
patch?: never;
|
|
11032
11032
|
trace?: never;
|
|
11033
11033
|
};
|
|
11034
|
+
"/api/v1/purchase/orders/import-excel/": {
|
|
11035
|
+
parameters: {
|
|
11036
|
+
query?: never;
|
|
11037
|
+
header?: never;
|
|
11038
|
+
path?: never;
|
|
11039
|
+
cookie?: never;
|
|
11040
|
+
};
|
|
11041
|
+
get?: never;
|
|
11042
|
+
put?: never;
|
|
11043
|
+
/** Import Purchase Order Excel */
|
|
11044
|
+
post: operations["purchase_order_views_import_purchase_order_excel"];
|
|
11045
|
+
delete?: never;
|
|
11046
|
+
options?: never;
|
|
11047
|
+
head?: never;
|
|
11048
|
+
patch?: never;
|
|
11049
|
+
trace?: never;
|
|
11050
|
+
};
|
|
11034
11051
|
"/api/v1/purchase/orders/{id}/": {
|
|
11035
11052
|
parameters: {
|
|
11036
11053
|
query?: never;
|
|
@@ -82755,6 +82772,66 @@ export interface operations {
|
|
|
82755
82772
|
};
|
|
82756
82773
|
};
|
|
82757
82774
|
};
|
|
82775
|
+
purchase_order_views_import_purchase_order_excel: {
|
|
82776
|
+
parameters: {
|
|
82777
|
+
query?: {
|
|
82778
|
+
password?: string | null;
|
|
82779
|
+
};
|
|
82780
|
+
header?: never;
|
|
82781
|
+
path?: never;
|
|
82782
|
+
cookie?: never;
|
|
82783
|
+
};
|
|
82784
|
+
requestBody: {
|
|
82785
|
+
content: {
|
|
82786
|
+
"multipart/form-data": {
|
|
82787
|
+
/**
|
|
82788
|
+
* File
|
|
82789
|
+
* Format: binary
|
|
82790
|
+
* @description only excel files are allowed for import
|
|
82791
|
+
*/
|
|
82792
|
+
file: string;
|
|
82793
|
+
};
|
|
82794
|
+
};
|
|
82795
|
+
};
|
|
82796
|
+
responses: {
|
|
82797
|
+
/** @description OK */
|
|
82798
|
+
200: {
|
|
82799
|
+
headers: {
|
|
82800
|
+
[name: string]: unknown;
|
|
82801
|
+
};
|
|
82802
|
+
content: {
|
|
82803
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82804
|
+
};
|
|
82805
|
+
};
|
|
82806
|
+
/** @description Bad Request */
|
|
82807
|
+
400: {
|
|
82808
|
+
headers: {
|
|
82809
|
+
[name: string]: unknown;
|
|
82810
|
+
};
|
|
82811
|
+
content: {
|
|
82812
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
82813
|
+
};
|
|
82814
|
+
};
|
|
82815
|
+
/** @description Forbidden */
|
|
82816
|
+
403: {
|
|
82817
|
+
headers: {
|
|
82818
|
+
[name: string]: unknown;
|
|
82819
|
+
};
|
|
82820
|
+
content: {
|
|
82821
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82822
|
+
};
|
|
82823
|
+
};
|
|
82824
|
+
/** @description Internal Server Error */
|
|
82825
|
+
500: {
|
|
82826
|
+
headers: {
|
|
82827
|
+
[name: string]: unknown;
|
|
82828
|
+
};
|
|
82829
|
+
content: {
|
|
82830
|
+
"application/json": components["schemas"]["MessageResponse"];
|
|
82831
|
+
};
|
|
82832
|
+
};
|
|
82833
|
+
};
|
|
82834
|
+
};
|
|
82758
82835
|
purchase_order_views_get_purchase_order: {
|
|
82759
82836
|
parameters: {
|
|
82760
82837
|
query?: {
|