@erp-galoper/types 1.0.50 → 1.0.51
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
|
@@ -11652,6 +11652,33 @@ export interface paths {
|
|
|
11652
11652
|
patch?: never;
|
|
11653
11653
|
trace?: never;
|
|
11654
11654
|
};
|
|
11655
|
+
"/api/v1/purchase/return-invoices/{id}/export-pdf/": {
|
|
11656
|
+
parameters: {
|
|
11657
|
+
query?: never;
|
|
11658
|
+
header?: never;
|
|
11659
|
+
path?: never;
|
|
11660
|
+
cookie?: never;
|
|
11661
|
+
};
|
|
11662
|
+
/**
|
|
11663
|
+
* Export Purchase Return Invoice Pdf
|
|
11664
|
+
* @description Endpoint for exporting a purchase return invoice to PDF
|
|
11665
|
+
* Responses:
|
|
11666
|
+
* - 200: purchaseReturnInvoiceExported
|
|
11667
|
+
* - 403: permissionDenied
|
|
11668
|
+
* - 404: purchaseReturnInvoiceDoesNotExist
|
|
11669
|
+
* - 500: internalServerError
|
|
11670
|
+
* - Permission Key :
|
|
11671
|
+
* - purchasereturninvoice : [export]
|
|
11672
|
+
*/
|
|
11673
|
+
get: operations["purchase_return_invoice_views_export_purchase_return_invoice_pdf"];
|
|
11674
|
+
put?: never;
|
|
11675
|
+
post?: never;
|
|
11676
|
+
delete?: never;
|
|
11677
|
+
options?: never;
|
|
11678
|
+
head?: never;
|
|
11679
|
+
patch?: never;
|
|
11680
|
+
trace?: never;
|
|
11681
|
+
};
|
|
11655
11682
|
"/api/v1/inventory/goods-receipt-note/": {
|
|
11656
11683
|
parameters: {
|
|
11657
11684
|
query?: never;
|
|
@@ -26254,7 +26281,7 @@ export interface components {
|
|
|
26254
26281
|
/**
|
|
26255
26282
|
* Id
|
|
26256
26283
|
* Format: uuid
|
|
26257
|
-
* @example
|
|
26284
|
+
* @example 7cd34bda-0022-497b-9b3e-f3a76bc89cca
|
|
26258
26285
|
*/
|
|
26259
26286
|
id: string;
|
|
26260
26287
|
/**
|
|
@@ -67078,6 +67105,64 @@ export interface operations {
|
|
|
67078
67105
|
};
|
|
67079
67106
|
};
|
|
67080
67107
|
};
|
|
67108
|
+
purchase_return_invoice_views_export_purchase_return_invoice_pdf: {
|
|
67109
|
+
parameters: {
|
|
67110
|
+
query?: never;
|
|
67111
|
+
header?: never;
|
|
67112
|
+
path: {
|
|
67113
|
+
id: string;
|
|
67114
|
+
};
|
|
67115
|
+
cookie?: never;
|
|
67116
|
+
};
|
|
67117
|
+
requestBody?: never;
|
|
67118
|
+
responses: {
|
|
67119
|
+
/** @description OK */
|
|
67120
|
+
200: {
|
|
67121
|
+
headers: {
|
|
67122
|
+
[name: string]: unknown;
|
|
67123
|
+
};
|
|
67124
|
+
content: {
|
|
67125
|
+
"application/json": string;
|
|
67126
|
+
};
|
|
67127
|
+
};
|
|
67128
|
+
/** @description Bad Request */
|
|
67129
|
+
400: {
|
|
67130
|
+
headers: {
|
|
67131
|
+
[name: string]: unknown;
|
|
67132
|
+
};
|
|
67133
|
+
content: {
|
|
67134
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
67135
|
+
};
|
|
67136
|
+
};
|
|
67137
|
+
/** @description Forbidden */
|
|
67138
|
+
403: {
|
|
67139
|
+
headers: {
|
|
67140
|
+
[name: string]: unknown;
|
|
67141
|
+
};
|
|
67142
|
+
content: {
|
|
67143
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67144
|
+
};
|
|
67145
|
+
};
|
|
67146
|
+
/** @description Not Found */
|
|
67147
|
+
404: {
|
|
67148
|
+
headers: {
|
|
67149
|
+
[name: string]: unknown;
|
|
67150
|
+
};
|
|
67151
|
+
content: {
|
|
67152
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67153
|
+
};
|
|
67154
|
+
};
|
|
67155
|
+
/** @description Internal Server Error */
|
|
67156
|
+
500: {
|
|
67157
|
+
headers: {
|
|
67158
|
+
[name: string]: unknown;
|
|
67159
|
+
};
|
|
67160
|
+
content: {
|
|
67161
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
67162
|
+
};
|
|
67163
|
+
};
|
|
67164
|
+
};
|
|
67165
|
+
};
|
|
67081
67166
|
inventory_receipt_note_views_list_goods_receipt_notes: {
|
|
67082
67167
|
parameters: {
|
|
67083
67168
|
query: {
|