@erp-galoper/types 1.0.55 → 1.0.57
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 +86 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -13607,6 +13607,33 @@ export interface paths {
|
|
|
13607
13607
|
patch?: never;
|
|
13608
13608
|
trace?: never;
|
|
13609
13609
|
};
|
|
13610
|
+
"/api/v1/sales/price-list/{id}/export-pdf/": {
|
|
13611
|
+
parameters: {
|
|
13612
|
+
query?: never;
|
|
13613
|
+
header?: never;
|
|
13614
|
+
path?: never;
|
|
13615
|
+
cookie?: never;
|
|
13616
|
+
};
|
|
13617
|
+
/**
|
|
13618
|
+
* Export Sales Price List Pdf
|
|
13619
|
+
* @description Endpoint for exporting a sales price list to PDF
|
|
13620
|
+
* Responses:
|
|
13621
|
+
* - 200: salesPriceListExported
|
|
13622
|
+
* - 403: permissionDenied
|
|
13623
|
+
* - 404: salesPriceListDoesNotExist
|
|
13624
|
+
* - 500: internalServerError
|
|
13625
|
+
* - Permission Key :
|
|
13626
|
+
* - salespricelist : [export]
|
|
13627
|
+
*/
|
|
13628
|
+
get: operations["sales_price_list_views_export_sales_price_list_pdf"];
|
|
13629
|
+
put?: never;
|
|
13630
|
+
post?: never;
|
|
13631
|
+
delete?: never;
|
|
13632
|
+
options?: never;
|
|
13633
|
+
head?: never;
|
|
13634
|
+
patch?: never;
|
|
13635
|
+
trace?: never;
|
|
13636
|
+
};
|
|
13610
13637
|
"/api/v1/inventory/package-types/": {
|
|
13611
13638
|
parameters: {
|
|
13612
13639
|
query?: never;
|
|
@@ -26389,7 +26416,7 @@ export interface components {
|
|
|
26389
26416
|
/**
|
|
26390
26417
|
* Id
|
|
26391
26418
|
* Format: uuid
|
|
26392
|
-
* @example
|
|
26419
|
+
* @example 5722da21-80bf-4da4-8a5d-b394b3c499dc
|
|
26393
26420
|
*/
|
|
26394
26421
|
id: string;
|
|
26395
26422
|
/**
|
|
@@ -70902,6 +70929,64 @@ export interface operations {
|
|
|
70902
70929
|
};
|
|
70903
70930
|
};
|
|
70904
70931
|
};
|
|
70932
|
+
sales_price_list_views_export_sales_price_list_pdf: {
|
|
70933
|
+
parameters: {
|
|
70934
|
+
query?: never;
|
|
70935
|
+
header?: never;
|
|
70936
|
+
path: {
|
|
70937
|
+
id: string;
|
|
70938
|
+
};
|
|
70939
|
+
cookie?: never;
|
|
70940
|
+
};
|
|
70941
|
+
requestBody?: never;
|
|
70942
|
+
responses: {
|
|
70943
|
+
/** @description OK */
|
|
70944
|
+
200: {
|
|
70945
|
+
headers: {
|
|
70946
|
+
[name: string]: unknown;
|
|
70947
|
+
};
|
|
70948
|
+
content: {
|
|
70949
|
+
"application/json": string;
|
|
70950
|
+
};
|
|
70951
|
+
};
|
|
70952
|
+
/** @description Bad Request */
|
|
70953
|
+
400: {
|
|
70954
|
+
headers: {
|
|
70955
|
+
[name: string]: unknown;
|
|
70956
|
+
};
|
|
70957
|
+
content: {
|
|
70958
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
70959
|
+
};
|
|
70960
|
+
};
|
|
70961
|
+
/** @description Forbidden */
|
|
70962
|
+
403: {
|
|
70963
|
+
headers: {
|
|
70964
|
+
[name: string]: unknown;
|
|
70965
|
+
};
|
|
70966
|
+
content: {
|
|
70967
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70968
|
+
};
|
|
70969
|
+
};
|
|
70970
|
+
/** @description Not Found */
|
|
70971
|
+
404: {
|
|
70972
|
+
headers: {
|
|
70973
|
+
[name: string]: unknown;
|
|
70974
|
+
};
|
|
70975
|
+
content: {
|
|
70976
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70977
|
+
};
|
|
70978
|
+
};
|
|
70979
|
+
/** @description Internal Server Error */
|
|
70980
|
+
500: {
|
|
70981
|
+
headers: {
|
|
70982
|
+
[name: string]: unknown;
|
|
70983
|
+
};
|
|
70984
|
+
content: {
|
|
70985
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
70986
|
+
};
|
|
70987
|
+
};
|
|
70988
|
+
};
|
|
70989
|
+
};
|
|
70905
70990
|
inventory_package_views_list_package_types: {
|
|
70906
70991
|
parameters: {
|
|
70907
70992
|
query?: {
|