@erp-galoper/types 1.0.49 → 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 +171 -1
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -10632,6 +10632,33 @@ export interface paths {
|
|
|
10632
10632
|
patch?: never;
|
|
10633
10633
|
trace?: never;
|
|
10634
10634
|
};
|
|
10635
|
+
"/api/v1/purchase/return-orders/{id}/export-pdf/": {
|
|
10636
|
+
parameters: {
|
|
10637
|
+
query?: never;
|
|
10638
|
+
header?: never;
|
|
10639
|
+
path?: never;
|
|
10640
|
+
cookie?: never;
|
|
10641
|
+
};
|
|
10642
|
+
/**
|
|
10643
|
+
* Export Purchase Return Order Pdf
|
|
10644
|
+
* @description Endpoint for exporting a purchase return order to PDF
|
|
10645
|
+
* Responses:
|
|
10646
|
+
* - 200: purchaseReturnOrderExported
|
|
10647
|
+
* - 403: permissionDenied
|
|
10648
|
+
* - 404: purchaseReturnOrderDoesNotExist
|
|
10649
|
+
* - 500: internalServerError
|
|
10650
|
+
* - Permission Key :
|
|
10651
|
+
* - purchasereturnorder : [export]
|
|
10652
|
+
*/
|
|
10653
|
+
get: operations["purchase_return_order_views_export_purchase_return_order_pdf"];
|
|
10654
|
+
put?: never;
|
|
10655
|
+
post?: never;
|
|
10656
|
+
delete?: never;
|
|
10657
|
+
options?: never;
|
|
10658
|
+
head?: never;
|
|
10659
|
+
patch?: never;
|
|
10660
|
+
trace?: never;
|
|
10661
|
+
};
|
|
10635
10662
|
"/api/v1/purchase/invoices/calculate-totals/": {
|
|
10636
10663
|
parameters: {
|
|
10637
10664
|
query?: never;
|
|
@@ -11625,6 +11652,33 @@ export interface paths {
|
|
|
11625
11652
|
patch?: never;
|
|
11626
11653
|
trace?: never;
|
|
11627
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
|
+
};
|
|
11628
11682
|
"/api/v1/inventory/goods-receipt-note/": {
|
|
11629
11683
|
parameters: {
|
|
11630
11684
|
query?: never;
|
|
@@ -26227,7 +26281,7 @@ export interface components {
|
|
|
26227
26281
|
/**
|
|
26228
26282
|
* Id
|
|
26229
26283
|
* Format: uuid
|
|
26230
|
-
* @example
|
|
26284
|
+
* @example 7cd34bda-0022-497b-9b3e-f3a76bc89cca
|
|
26231
26285
|
*/
|
|
26232
26286
|
id: string;
|
|
26233
26287
|
/**
|
|
@@ -65093,6 +65147,64 @@ export interface operations {
|
|
|
65093
65147
|
};
|
|
65094
65148
|
};
|
|
65095
65149
|
};
|
|
65150
|
+
purchase_return_order_views_export_purchase_return_order_pdf: {
|
|
65151
|
+
parameters: {
|
|
65152
|
+
query?: never;
|
|
65153
|
+
header?: never;
|
|
65154
|
+
path: {
|
|
65155
|
+
id: string;
|
|
65156
|
+
};
|
|
65157
|
+
cookie?: never;
|
|
65158
|
+
};
|
|
65159
|
+
requestBody?: never;
|
|
65160
|
+
responses: {
|
|
65161
|
+
/** @description OK */
|
|
65162
|
+
200: {
|
|
65163
|
+
headers: {
|
|
65164
|
+
[name: string]: unknown;
|
|
65165
|
+
};
|
|
65166
|
+
content: {
|
|
65167
|
+
"application/json": string;
|
|
65168
|
+
};
|
|
65169
|
+
};
|
|
65170
|
+
/** @description Bad Request */
|
|
65171
|
+
400: {
|
|
65172
|
+
headers: {
|
|
65173
|
+
[name: string]: unknown;
|
|
65174
|
+
};
|
|
65175
|
+
content: {
|
|
65176
|
+
"application/json": components["schemas"]["ErrorMessages"];
|
|
65177
|
+
};
|
|
65178
|
+
};
|
|
65179
|
+
/** @description Forbidden */
|
|
65180
|
+
403: {
|
|
65181
|
+
headers: {
|
|
65182
|
+
[name: string]: unknown;
|
|
65183
|
+
};
|
|
65184
|
+
content: {
|
|
65185
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65186
|
+
};
|
|
65187
|
+
};
|
|
65188
|
+
/** @description Not Found */
|
|
65189
|
+
404: {
|
|
65190
|
+
headers: {
|
|
65191
|
+
[name: string]: unknown;
|
|
65192
|
+
};
|
|
65193
|
+
content: {
|
|
65194
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65195
|
+
};
|
|
65196
|
+
};
|
|
65197
|
+
/** @description Internal Server Error */
|
|
65198
|
+
500: {
|
|
65199
|
+
headers: {
|
|
65200
|
+
[name: string]: unknown;
|
|
65201
|
+
};
|
|
65202
|
+
content: {
|
|
65203
|
+
"application/json": components["schemas"]["MessageWithCode"];
|
|
65204
|
+
};
|
|
65205
|
+
};
|
|
65206
|
+
};
|
|
65207
|
+
};
|
|
65096
65208
|
purchase_purchase_invoice_views_calculate_totals_endpoint: {
|
|
65097
65209
|
parameters: {
|
|
65098
65210
|
query?: never;
|
|
@@ -66993,6 +67105,64 @@ export interface operations {
|
|
|
66993
67105
|
};
|
|
66994
67106
|
};
|
|
66995
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
|
+
};
|
|
66996
67166
|
inventory_receipt_note_views_list_goods_receipt_notes: {
|
|
66997
67167
|
parameters: {
|
|
66998
67168
|
query: {
|